Idea¶
Number of Transfers for that Asset between 1 hour before and after the event (Maybe transfer list if possible)
Plot transfers (-> Use plot to answer question wheter or not wallet tracking is suitable / plattforms doing stacked transfers )
tbd
Exemplary perfrom on Raiden Event
Extend to X further Events
In [ ]:
import pandas as pd
import json
import pandas as pd
import matplotlib.pyplot as plt
from datetime import datetime
import os
from web3_helpers import (
get_contract_for_symbol,
get_file_from_alchemy_api,
get_block_number_for_unix_date,
)
import time
from datetime import datetime, timedelta
import json
import random
In [ ]:
lm_df = pd.read_csv("../data/la_morgia_data/pump_telegram.csv")
lm_df.sample(3)
Out[Â ]:
| symbol | group | date | hour | exchange | |
|---|---|---|---|---|---|
| 1064 | GRS | CPI | 2020-04-02 | 16:00 | binance |
| 621 | APPC | TWP | 2020-11-04 | 17:00 | binance |
| 1100 | BRD | CCS | 2020-01-20 | 16:00 | binance |
In [ ]:
# lm_df = lm_df[lm_df["symbol"] == "RDN"]
# lm_df = lm_df[lm_df["date"] == "2021-08-21"]
# lm_df = lm_df.sample(100, random_state=1)
In [ ]:
def download_alchemy_data(lm_df, save_path, categories):
i = 0
for index, row in lm_df.iterrows():
print(" ")
print(row)
symbol = row["symbol"]
contract = get_contract_for_symbol(symbol.lower())
print(f" Symbol: {symbol}, Contract: {contract}")
event_time = datetime.strptime(f"{row['date']} {row['hour']}", "%Y-%m-%d %H:%M")
start_date = event_time - timedelta(hours=12)
end_date = event_time + timedelta(hours=12)
print("Datetime timestamps: ", event_time, start_date, end_date)
unix_start_date = time.mktime(start_date.timetuple())
unix_end_date = time.mktime(end_date.timetuple())
print("Unix timestamps: ", unix_start_date, unix_end_date)
hex_block_number_start = get_block_number_for_unix_date(unix_start_date, True)
hex_block_number_end = get_block_number_for_unix_date(unix_end_date, True)
print("Hex Block Numbers: ", hex_block_number_start, hex_block_number_end)
params = {
"jsonrpc": "2.0",
"method": "alchemy_getAssetTransfers",
"params": [
{
"fromBlock": hex_block_number_start,
"toBlock": hex_block_number_end,
"contractAddresses": [contract],
"category": categories, # Decide Categories
"withMetadata": True,
"excludeZeroValue": False,
# "maxCount": "0x3e8" # maximum transactions possible
}
],
}
i = i + 1
answer_file = f"{save_path}/{i}_alchemy_answer_{symbol}.json"
get_file_from_alchemy_api(params, answer_file)
In [ ]:
def parse_timestamp(entry):
if "metadata" in entry and "blockTimestamp" in entry["metadata"]:
timestamp = entry["metadata"]["blockTimestamp"]
return datetime.fromisoformat(timestamp.replace("Z", "+00:00"))
return None
def process_transaction_data_with_year(file_path):
with open(file_path, "r") as file:
data = json.load(file)
filtered_data = [item for item in data if isinstance(item, dict)]
for i, item in enumerate(filtered_data):
if not isinstance(item, dict):
print(f"Non-dict item at index {i}: {item}")
df = pd.DataFrame(filtered_data)
print("HERE HERE HERE DONE DONE DONE")
df["timestamp"] = df.apply(lambda entry: parse_timestamp(entry), axis=1)
df.dropna(subset=["timestamp"], inplace=True)
df["timestamp"] = pd.to_datetime(df["timestamp"])
year = df["timestamp"].dt.year.mode()[0] if not df["timestamp"].empty else None
df["hour"] = df["timestamp"].dt.hour
hourly_transactions = df.groupby("hour").size()
return hourly_transactions, year
def plot_hourly_transactions_with_year_and_mean(file_paths):
plt.figure(figsize=(12, 6))
all_hourly_transactions = []
for file_path in file_paths:
print("File Path: ", file_path)
hourly_transactions, year = process_transaction_data_with_year(file_path)
hourly_transactions = hourly_transactions.reindex(range(24), fill_value=0)
color = (
"green"
if year == 2019
else "blue"
if year == 2020
else "yellow"
if year == 2021
else "black"
)
plt.plot(
hourly_transactions,
label=f"Transactions in {file_path} ({year})",
color=color,
alpha=0.4,
)
all_hourly_transactions.append(hourly_transactions)
if all_hourly_transactions:
mean_transactions = pd.concat(all_hourly_transactions, axis=1).mean(axis=1)
plt.plot(
mean_transactions,
label="Mean Transactions",
color="red",
linestyle="--",
marker="*",
)
med_transactions = pd.concat(all_hourly_transactions, axis=1).median(axis=1)
plt.plot(
med_transactions,
label="Median Transactions",
color="orange",
linestyle="--",
marker="*",
)
x_labels = [
f"+{i-12}" if i > 12 else "Event Time" if i == 12 else f"{i-12}"
for i in range(24)
]
plt.xticks(range(24), x_labels, rotation=45)
plt.ylim(0, 50)
plt.xlabel("Hour")
plt.ylabel("Number of Transactions")
plt.title("Hourly Transactions by Year with Mean")
# plt.legend()
plt.grid(True)
plt.show()
In [ ]:
# plot_hourly_transactions_with_year_and_mean(files)
files.remove("./alchemy_answers/alchemy_answer_BNT.json")¶
files.remove("./alchemy_answers/alchemy_answer_POWR.json")¶
files.remove("./alchemy_answers/alchemy_answer_SNT.json")¶
files.remove("./alchemy_answers/alchemy_answer_STORJ.json")¶
files.remove("./alchemy_answers/alchemy_answer_STPT.json")¶
files.remove("./alchemy_answers/alchemy_answer_WPR.json")¶
plot_hourly_transactions_with_year_and_mean(files)
In [ ]:
import json
import pandas as pd
import matplotlib.pyplot as plt
from datetime import datetime
def parse_timestamp(entry):
try:
if "metadata" in entry and "blockTimestamp" in entry["metadata"]:
timestamp = entry["metadata"]["blockTimestamp"]
return datetime.fromisoformat(timestamp.replace("Z", "+00:00"))
except Exception as e:
return None
return None
def process_transaction_data(file_path):
with open(file_path, "r") as file:
data = json.load(file)
filtered_data = [item for item in data if isinstance(item, dict)]
df = pd.DataFrame(filtered_data)
df["timestamp"] = df.apply(lambda entry: parse_timestamp(entry), axis=1)
df = df.dropna(subset=["timestamp"])
df["timestamp"] = pd.to_datetime(df["timestamp"])
df["year"] = df["timestamp"].dt.year
df["hour"] = df["timestamp"].dt.hour
# Filter out data from the year 2021
df = df[df["year"] != 2021]
return df.groupby(["year", "hour"]).size().reset_index(name="transaction_count")
def combine_yearly_data(file_paths):
all_data = pd.DataFrame()
for file_path in file_paths:
df = process_transaction_data(file_path)
all_data = pd.concat([all_data, df], ignore_index=True)
return all_data
def plot_hourly_quartile_areas_with_mean_median(file_paths):
combined_data = combine_yearly_data(file_paths)
plt.rcParams["font.size"] = 14
plt.rcParams["axes.titlesize"] = 16
plt.rcParams["axes.labelsize"] = 14
plt.rcParams["xtick.labelsize"] = 11
plt.rcParams["ytick.labelsize"] = 11
plt.figure(figsize=(10, 5.5))
# Plot quartile areas for each year
for year in combined_data["year"].unique():
year_data = combined_data[combined_data["year"] == year]
quartiles = (
year_data.groupby("hour")["transaction_count"]
.quantile([0.25, 0.75])
.unstack(level=-1)
)
plt.fill_between(
quartiles.index,
quartiles[0.25],
quartiles[0.75],
alpha=0.5,
label=f"{year} Quartile Range",
)
# Calculate and plot overall mean and median
overall_mean = combined_data.groupby("hour")["transaction_count"].mean()
overall_median = combined_data.groupby("hour")["transaction_count"].median()
plt.plot(
overall_mean.index,
overall_mean.values,
color="green",
label="Overall Mean",
linestyle="-",
marker="o",
)
plt.plot(
overall_median.index,
overall_median.values,
color="purple",
label="Overall Median",
linestyle="-",
marker="x",
)
x_labels = [
f"+{i-12}" if i > 12 else "Event Time" if i == 12 else f"{i-12}"
for i in range(24)
]
plt.xticks(range(24), x_labels, rotation=60)
event_time_index = x_labels.index("Event Time")
plt.axvline(
x=event_time_index, color="black", linestyle="--", linewidth=1.5, alpha=0.7
)
plt.xlabel("Hour")
plt.ylabel("Transaction Count")
plt.title("Hourly Transaction Analysis")
plt.legend(loc="upper left")
plt.grid(True)
plt.tight_layout()
plt.savefig("./transfers_overall.png")
plt.show()
In [ ]:
# Binance
lm_df = pd.read_csv("../data/la_morgia_data/pump_telegram.csv")
save_path = "./alchemy_answers/binance_erc20"
categories = ["erc20"]
lm_df = lm_df[lm_df["exchange"] == "binance"]
download_alchemy_data(lm_df, save_path, categories)
files = os.listdir(save_path)
files = [f"{save_path}/{x}" for x in files]
file_paths = files
plot_hourly_quartile_areas_with_mean_median(file_paths)
symbol BRD
group ATW
date 2018-12-22
hour 17:00
exchange binance
Name: 125, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps: 2018-12-22 17:00:00 2018-12-22 05:00:00 2018-12-23 05:00:00
Unix timestamps: 1545451200.0 1545537600.0
Hex Block Numbers: 0x69c000 0x69d6bd
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x69c050', 'uniqueId': '0x82929410c3f7250c7dcc9b9db9613ce3d6c03947bbbe52487d66b228b672f9c2:log:68', 'hash': '0x82929410c3f7250c7dcc9b9db9613ce3d6c03947bbbe52487d66b228b672f9c2', 'from': '0xf8586bb82f330f7851f3145b6baa930138d8e9be', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T04:22:10.000Z'}}, {'blockNum': '0x69c07f', 'uniqueId': '0x64cd15ad4b6844cba2858b8641094da156951344b74e4424f4c408c5f812e1c1:log:43', 'hash': '0x64cd15ad4b6844cba2858b8641094da156951344b74e4424f4c408c5f812e1c1', 'from': '0x9520d4f751907a93da69322c25741bb492b9a95e', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T04:35:48.000Z'}}, {'blockNum': '0x69c197', 'uniqueId': '0x079a911d13dc24fdfd1402bd28f2a93762717f311005edbabc2c5cc7d76aa6f6:log:129', 'hash': '0x079a911d13dc24fdfd1402bd28f2a93762717f311005edbabc2c5cc7d76aa6f6', 'from': '0x92cf669d17bab9fe050d9da703e05bb0e6854a8a', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T05:47:54.000Z'}}, {'blockNum': '0x69c1dd', 'uniqueId': '0xad3d9cf039d7604b10bfeafd04fab8e2a1188594d9ff59e7abf885f42847e00c:log:25', 'hash': '0xad3d9cf039d7604b10bfeafd04fab8e2a1188594d9ff59e7abf885f42847e00c', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x28c3df94b262363b820df41277ec31891295c108', 'value': 27.53774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x017e29b4a0f910c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T06:06:42.000Z'}}, {'blockNum': '0x69c1e5', 'uniqueId': '0x70c78bbb5ee459e9c2e91de0f0fa82fbab104955e97f102d3f68d3321acccdf8:log:76', 'hash': '0x70c78bbb5ee459e9c2e91de0f0fa82fbab104955e97f102d3f68d3321acccdf8', 'from': '0x363eac71431f14e3ec15df1b7e7bf22801cf56ab', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T06:08:36.000Z'}}, {'blockNum': '0x69c258', 'uniqueId': '0xfb497d1c152118c40925528be0432fab36fb1a8d3aff78d65c605d99ff82abd5:log:121', 'hash': '0xfb497d1c152118c40925528be0432fab36fb1a8d3aff78d65c605d99ff82abd5', 'from': '0x8958618332df62af93053cb9c535e26462c959b0', 'to': '0x79d9d733a11621b80978e00bdb17f13ecc98af0b', 'value': 23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x013f306a2409fc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T06:40:14.000Z'}}, {'blockNum': '0x69c281', 'uniqueId': '0x86f7d06af86cc12f992daee9c063d4dedf7dcc6bcda627512ddd23455f31bd3d:log:128', 'hash': '0x86f7d06af86cc12f992daee9c063d4dedf7dcc6bcda627512ddd23455f31bd3d', 'from': '0xaec5c9015f21ac5dd25df029255d358527756d4b', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T06:53:50.000Z'}}, {'blockNum': '0x69c2b1', 'uniqueId': '0x1be8b5d3277e57cb64fe0a2c04598d9f44de6152129fbc828df749fe5c73f6bb:log:154', 'hash': '0x1be8b5d3277e57cb64fe0a2c04598d9f44de6152129fbc828df749fe5c73f6bb', 'from': '0x131ec35ce94a773b2ec55f18f0e2b4f54ef25e35', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T07:05:15.000Z'}}, {'blockNum': '0x69c2bb', 'uniqueId': '0xaddde3fc8af31945a9ab87b75f262543256cfc01d159c32c7f86c365bc1a3585:log:160', 'hash': '0xaddde3fc8af31945a9ab87b75f262543256cfc01d159c32c7f86c365bc1a3585', 'from': '0xc4b38f26df3937be8d3fd1acd5b2ddd7c14bdca4', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T07:08:53.000Z'}}, {'blockNum': '0x69c2e4', 'uniqueId': '0x0db5ce43730f2680a31e21fa60e996ba6d587fd5f48517373e9258ae0f20447d:log:228', 'hash': '0x0db5ce43730f2680a31e21fa60e996ba6d587fd5f48517373e9258ae0f20447d', 'from': '0x331b6357de83d8653c9ee880fb90fffcaa34f993', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T07:17:13.000Z'}}, {'blockNum': '0x69c317', 'uniqueId': '0x5b5fdcdaf35e273543118d52b000c2967e24c4f2a1beaa70d9710d367b72df13:log:74', 'hash': '0x5b5fdcdaf35e273543118d52b000c2967e24c4f2a1beaa70d9710d367b72df13', 'from': '0x13c1af9a353acb8b288dd5fdeed57d9cb366b516', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T07:27:11.000Z'}}, {'blockNum': '0x69c33e', 'uniqueId': '0xc820de2a174b828be0960f26aa1cdd75e492c1baa794b544b877eb3da46fd242:log:22', 'hash': '0xc820de2a174b828be0960f26aa1cdd75e492c1baa794b544b877eb3da46fd242', 'from': '0x53f8c9a9e745e9562e3f680fa10596405d539985', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T07:38:59.000Z'}}, {'blockNum': '0x69c364', 'uniqueId': '0xf2cd7b2596d61646f4df8b8d86d1a6e0c84a7022072f65422e2bf0c5e5614b03:log:158', 'hash': '0xf2cd7b2596d61646f4df8b8d86d1a6e0c84a7022072f65422e2bf0c5e5614b03', 'from': '0x0f3f242eb394403e1175ab7313fca043c8c70544', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T07:47:42.000Z'}}, {'blockNum': '0x69c37b', 'uniqueId': '0xcf8df661e42e692a0521b602c1c9df81deb65ea94d2094e936ecd48a9d678cee:log:5', 'hash': '0xcf8df661e42e692a0521b602c1c9df81deb65ea94d2094e936ecd48a9d678cee', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x523c00131ef14dfe144137088fca435cc38a697f', 'value': 7890.1751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01abba2d0182bc33c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T07:55:07.000Z'}}, {'blockNum': '0x69c391', 'uniqueId': '0x165da081994d212b75868d3522e4a12a8747c445785cbc6382a2c66c27df2585:log:50', 'hash': '0x165da081994d212b75868d3522e4a12a8747c445785cbc6382a2c66c27df2585', 'from': '0xb810ec427a562ca7e00d1a9ed18bc9c793ad4927', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T07:59:53.000Z'}}, {'blockNum': '0x69c3a0', 'uniqueId': '0xce876edd588eb59e1c3e8d83e8e273733df0b709c6473a1702d03383a43eeb6c:log:23', 'hash': '0xce876edd588eb59e1c3e8d83e8e273733df0b709c6473a1702d03383a43eeb6c', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 9833.22002245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02150f5747c926e07400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T08:03:16.000Z'}}, {'blockNum': '0x69c3bc', 'uniqueId': '0x39270fa2237da9ea1326dd7674b0e3bd06b41e5f7418cc813783a38a5197aa61:log:88', 'hash': '0x39270fa2237da9ea1326dd7674b0e3bd06b41e5f7418cc813783a38a5197aa61', 'from': '0x2bae48ac8572e8c90608c6d40894095dcc280c30', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T08:10:56.000Z'}}, {'blockNum': '0x69c427', 'uniqueId': '0xf288801b40264c318e93f9ab0cf10ff8db2f22e9acdbffc75932e4b33ecefe5f:log:20', 'hash': '0xf288801b40264c318e93f9ab0cf10ff8db2f22e9acdbffc75932e4b33ecefe5f', 'from': '0x523c00131ef14dfe144137088fca435cc38a697f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7890.1751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01abba2d0182bc33c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T08:34:21.000Z'}}, {'blockNum': '0x69c477', 'uniqueId': '0xbddaf3911fe1fdb2b2507344a695d9cb0be1cf14b750b61cdb68cfb93c824022:log:31', 'hash': '0xbddaf3911fe1fdb2b2507344a695d9cb0be1cf14b750b61cdb68cfb93c824022', 'from': '0x517118a2bd3b3f3f0324f0d1c0af0485d9635772', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T08:53:28.000Z'}}, {'blockNum': '0x69c49b', 'uniqueId': '0x0463d4c33c65e6e266a83fd4176b5c65644a9930497eca2b6e7095e1c5851247:log:90', 'hash': '0x0463d4c33c65e6e266a83fd4176b5c65644a9930497eca2b6e7095e1c5851247', 'from': '0xa9e29fc358998886cfe061028ebfdaeedb3dc559', 'to': '0xeba43d831415e05388711bd5f75abafd88d6e427', 'value': 14591.84388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0317068359f52daa8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T09:00:00.000Z'}}, {'blockNum': '0x69c510', 'uniqueId': '0x4a85427395dbfebf832f41152963d45ee7c0e8ab17d685387b2d5722fa1a5002:log:35', 'hash': '0x4a85427395dbfebf832f41152963d45ee7c0e8ab17d685387b2d5722fa1a5002', 'from': '0x2a431ae261d4345338f655e9ae6ac3805adcab7d', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T09:24:10.000Z'}}, {'blockNum': '0x69c527', 'uniqueId': '0x774174a4b2aee9075bb28ac84d269318df2a78592413aa4989c6f11e3a6153cd:log:27', 'hash': '0x774174a4b2aee9075bb28ac84d269318df2a78592413aa4989c6f11e3a6153cd', 'from': '0x326dfcf057b64f5ad4829df0626807652348dd01', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T09:30:18.000Z'}}, {'blockNum': '0x69c605', 'uniqueId': '0x08fbeca4936e2cb6616e8d4f2003383151fd08718f3600f6643b6a6ce553c659:log:79', 'hash': '0x08fbeca4936e2cb6616e8d4f2003383151fd08718f3600f6643b6a6ce553c659', 'from': '0xb8e02aac7eaa74fdd7437d31e4eb22b4ab9045aa', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T10:23:46.000Z'}}, {'blockNum': '0x69c61f', 'uniqueId': '0x2031f3085dcad2ffb49e3bd2d82dbbe53287a2a2191c26a993a6fc235dc1c54c:log:7', 'hash': '0x2031f3085dcad2ffb49e3bd2d82dbbe53287a2a2191c26a993a6fc235dc1c54c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3f2acac58d4e34722760cd530974bdc3cf6974b2', 'value': 52.349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02d67d0224a2ec8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T10:30:57.000Z'}}, {'blockNum': '0x69c637', 'uniqueId': '0x3a4b8e0d6d59825b94b343648faa378eae2e8b21ae7b8f411020fcf9a7efeffb:log:50', 'hash': '0x3a4b8e0d6d59825b94b343648faa378eae2e8b21ae7b8f411020fcf9a7efeffb', 'from': '0x4a7738729e90b691e501d20c71c5a19f893ee014', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T10:37:58.000Z'}}, {'blockNum': '0x69c744', 'uniqueId': '0x6142392e01bd843e715638a26479776a6a13d4036fe55d82c0d3f7fcacc7627b:log:30', 'hash': '0x6142392e01bd843e715638a26479776a6a13d4036fe55d82c0d3f7fcacc7627b', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x5fd9b40d53aa9fced8a54d21904f8eae5842c174', 'value': 223.27144655408472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0c1a8385b2b7d56095', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T11:43:23.000Z'}}, {'blockNum': '0x69c796', 'uniqueId': '0xf22aea927f6ef26a912bc28a344a81da5db47ff04011e9fea1c1c9aceea32a6e:log:6', 'hash': '0xf22aea927f6ef26a912bc28a344a81da5db47ff04011e9fea1c1c9aceea32a6e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05970f6debbee3c23bcfc000021b29f2272348c8', 'value': 151.545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x08371bfe9486928000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T12:01:51.000Z'}}, {'blockNum': '0x69c924', 'uniqueId': '0xea70bd1ecaa0e4934aa102c749345e2f60768ecdc48c503cac09c02142a559eb:log:72', 'hash': '0xea70bd1ecaa0e4934aa102c749345e2f60768ecdc48c503cac09c02142a559eb', 'from': '0x673657f21346e14f52d4e64958f3b31eb256e5a3', 'to': '0x129f321cae16d689761bd90586e12b2e298e8a2c', 'value': 1013.1920933757007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x36ecdd68cdad0b68f5', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T13:41:27.000Z'}}, {'blockNum': '0x69c979', 'uniqueId': '0x23ed09817f3939c7b83822fc9d35b5be897a69fd5c49d0384bca0d6452bd9537:log:85', 'hash': '0x23ed09817f3939c7b83822fc9d35b5be897a69fd5c49d0384bca0d6452bd9537', 'from': '0x39099c2bbe6e4147cd950dc3dea809b4c243f4cd', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T14:02:17.000Z'}}, {'blockNum': '0x69c97f', 'uniqueId': '0xb1e579011dd83939db49957a4fabb7151a980e2c3081a227134d4dd6d4559d33:log:30', 'hash': '0xb1e579011dd83939db49957a4fabb7151a980e2c3081a227134d4dd6d4559d33', 'from': '0x129f321cae16d689761bd90586e12b2e298e8a2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1013.1920933757007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x36ecdd68cdad0b68f5', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T14:03:46.000Z'}}, {'blockNum': '0x69c998', 'uniqueId': '0x8327c43009699f6e7ef9b416f93386472348c22edfd55e8048950185b075a89b:log:136', 'hash': '0x8327c43009699f6e7ef9b416f93386472348c22edfd55e8048950185b075a89b', 'from': '0x6ef3eda24ab0f03e3067ed63c3abca6585d47d49', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T14:10:55.000Z'}}, {'blockNum': '0x69ca10', 'uniqueId': '0x9b726420ca5dc35c92804ab122a0255311915ed3928b37298c9130ffb5cc07cc:log:87', 'hash': '0x9b726420ca5dc35c92804ab122a0255311915ed3928b37298c9130ffb5cc07cc', 'from': '0xf1e1af04889d83abb0fa89ffa5f2c946d19525c8', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T14:38:39.000Z'}}, {'blockNum': '0x69ca34', 'uniqueId': '0xfa7ab5c0e9be35286e585becfd667118264204938add4ffdf70a076f12f9af7a:log:149', 'hash': '0xfa7ab5c0e9be35286e585becfd667118264204938add4ffdf70a076f12f9af7a', 'from': '0xcc51c22401c2a6f4bab2957c4b47ebb20a6737b3', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T14:47:42.000Z'}}, {'blockNum': '0x69ca4b', 'uniqueId': '0xddb58bb9c90c717bf31c6c4386a07f95c19edc2b62c8f9ba8fd84d8df691eff1:log:50', 'hash': '0xddb58bb9c90c717bf31c6c4386a07f95c19edc2b62c8f9ba8fd84d8df691eff1', 'from': '0xd93361089eaa3e95e07422007e038c4d7d8e50b9', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T14:52:18.000Z'}}, {'blockNum': '0x69ca63', 'uniqueId': '0xc6d7b8379797ec6c49a9b35285248fa0741d1d83bcdf797f7007e991a8957613:log:70', 'hash': '0xc6d7b8379797ec6c49a9b35285248fa0741d1d83bcdf797f7007e991a8957613', 'from': '0x6163cb7a048efd6d3e7c7b82ab0f3f6d10dc1bd4', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T14:58:24.000Z'}}, {'blockNum': '0x69ca77', 'uniqueId': '0xc2469d29bb3b47ea6a4ecfe4ba3ef71b17aa8433512eab36e380df65a094a0af:log:51', 'hash': '0xc2469d29bb3b47ea6a4ecfe4ba3ef71b17aa8433512eab36e380df65a094a0af', 'from': '0x7995a8e25134f1df4c15f6db85c795eeef68b9bc', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T15:04:34.000Z'}}, {'blockNum': '0x69caaf', 'uniqueId': '0xc976394618012e2b7cfeca4f653076f2bf433e7094410355e4e4b7b9a16df4f6:log:58', 'hash': '0xc976394618012e2b7cfeca4f653076f2bf433e7094410355e4e4b7b9a16df4f6', 'from': '0xada75da084186e21d9ebeff6952a896443a317ae', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T15:14:34.000Z'}}, {'blockNum': '0x69cb19', 'uniqueId': '0x2b88306af7479ece8bd5e5a4ff33e99b9b851147f1fb7c6dc7af03a366855647:log:140', 'hash': '0x2b88306af7479ece8bd5e5a4ff33e99b9b851147f1fb7c6dc7af03a366855647', 'from': '0xa89de186be529867993d11b5230b5081b67531f3', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T15:36:05.000Z'}}, {'blockNum': '0x69cbb5', 'uniqueId': '0x5c2d361270357f21d0db9027d885cced775d5f1de09969f8b4c861e641c6a984:log:45', 'hash': '0x5c2d361270357f21d0db9027d885cced775d5f1de09969f8b4c861e641c6a984', 'from': '0x06354852c4178876eff5d1d176600ac5b02367d7', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T16:18:40.000Z'}}, {'blockNum': '0x69cbc5', 'uniqueId': '0x2222f1abc80749a68167412fa73f147efce1aa1bdde88c66765af8b8c0691c3a:log:96', 'hash': '0x2222f1abc80749a68167412fa73f147efce1aa1bdde88c66765af8b8c0691c3a', 'from': '0x96a0fc97b54e92c6f72467442ab19193ef313212', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T16:22:38.000Z'}}, {'blockNum': '0x69cbf3', 'uniqueId': '0x8d25c2f515676f14a855d19535d1613e10e8887022b7ad4232ea520e85256bf6:log:92', 'hash': '0x8d25c2f515676f14a855d19535d1613e10e8887022b7ad4232ea520e85256bf6', 'from': '0xd8c42acba3a74eddf89fb4a7c7f70eaaa8985589', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T16:32:53.000Z'}}, {'blockNum': '0x69cc0b', 'uniqueId': '0x2d2fc9fef4bf69d709df67f421bd3c4d91de82e2f77e630f1c707a2710bf5d66:log:134', 'hash': '0x2d2fc9fef4bf69d709df67f421bd3c4d91de82e2f77e630f1c707a2710bf5d66', 'from': '0x3c64d7b42447eb622c39faa74f5bb1483a575b6b', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T16:37:37.000Z'}}, {'blockNum': '0x69cc18', 'uniqueId': '0x620f38e06d9a1ca2829c4dbf646d16cc300d5d64e825adcc288c630bf21dffbe:log:73', 'hash': '0x620f38e06d9a1ca2829c4dbf646d16cc300d5d64e825adcc288c630bf21dffbe', 'from': '0x738bdfd51909fc998a3df47657d499e7f0559667', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 90, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04e1003b28d9280000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T16:40:54.000Z'}}, {'blockNum': '0x69cc19', 'uniqueId': '0x2a0f228092535da7d6ecb6295a5ec38028f2cf0dbd4e9bbdcc63307dcff3f969:log:85', 'hash': '0x2a0f228092535da7d6ecb6295a5ec38028f2cf0dbd4e9bbdcc63307dcff3f969', 'from': '0xc91595ce2a0144da6b2fdee88abeded80bc8f6c7', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T16:41:14.000Z'}}, {'blockNum': '0x69cc3b', 'uniqueId': '0x29b4a7a0ad7fafec82793705b82d60a84ef2f8fefd34f75fef93b82c81de2e6e:log:46', 'hash': '0x29b4a7a0ad7fafec82793705b82d60a84ef2f8fefd34f75fef93b82c81de2e6e', 'from': '0x10a02aba49b9909c3402f5db5b299bc9af3991b2', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T16:50:37.000Z'}}, {'blockNum': '0x69cc57', 'uniqueId': '0x2c955bd5f6f9e4f7f2398b72e678c9a19237774c034bf457add6974d2a4ee289:log:4', 'hash': '0x2c955bd5f6f9e4f7f2398b72e678c9a19237774c034bf457add6974d2a4ee289', 'from': '0x80f1326229b970f7f9f259a6bc74ed9a0f380546', 'to': '0x72c4d247835f8f18489cb463394ee412db35c844', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T16:56:32.000Z'}}, {'blockNum': '0x69cc6d', 'uniqueId': '0xeaa4027c77df2dc9dce0940ac702678b14a237255cf169b5111394930da7fda0:log:87', 'hash': '0xeaa4027c77df2dc9dce0940ac702678b14a237255cf169b5111394930da7fda0', 'from': '0x63a644a7910cf9e71a9c21b6e082c6fd926f11c9', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T17:02:17.000Z'}}, {'blockNum': '0x69ccb0', 'uniqueId': '0xc9a98289d38e8a3e3725c6b6e36525655adb20b07118deb29bdd32088ba58a78:log:131', 'hash': '0xc9a98289d38e8a3e3725c6b6e36525655adb20b07118deb29bdd32088ba58a78', 'from': '0x17ba1c5f529c481d24a955fba6039c79007299f0', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T17:16:14.000Z'}}, {'blockNum': '0x69ccd8', 'uniqueId': '0xba90260d62a49ce0e50cdf2f5d830cb5cad9c395c99940ecfa843043bb3140c2:log:165', 'hash': '0xba90260d62a49ce0e50cdf2f5d830cb5cad9c395c99940ecfa843043bb3140c2', 'from': '0x163e197f9f1c60b96a2e04c1b6ad4d137534f21b', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T17:24:39.000Z'}}, {'blockNum': '0x69ccfb', 'uniqueId': '0xea48ca42b2515d00ca3b7adc36f1fc071f7e884d651a13831ad339c2b1c6e3a8:log:75', 'hash': '0xea48ca42b2515d00ca3b7adc36f1fc071f7e884d651a13831ad339c2b1c6e3a8', 'from': '0xf924a5f8e7306a527968c0e2ef5d43943dd56c45', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T17:32:10.000Z'}}, {'blockNum': '0x69cf29', 'uniqueId': '0x32be877dabfdb0a911569aa6c6ebda8fcf12807306d7a549b5685ad73896ffa3:log:45', 'hash': '0x32be877dabfdb0a911569aa6c6ebda8fcf12807306d7a549b5685ad73896ffa3', 'from': '0x506f3b599432e4f2bc6beaddf998ad04d3741aed', 'to': '0x3366ee19d83d09ce9632a195aeeb1f242994be74', 'value': 1138.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3db93fcb704bc40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T20:00:23.000Z'}}, {'blockNum': '0x69cfb2', 'uniqueId': '0x3992f320fa6c36e835d88a20c509a73acabef11ae7add41b5806a2b3ac207bcd:log:26', 'hash': '0x3992f320fa6c36e835d88a20c509a73acabef11ae7add41b5806a2b3ac207bcd', 'from': '0x3366ee19d83d09ce9632a195aeeb1f242994be74', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1138.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3db93fcb704bc40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T20:34:43.000Z'}}, {'blockNum': '0x69cfc2', 'uniqueId': '0x8d919c7c509bf85c0115fa076814483224bdfda6bae177a72251912108b2dbb4:log:0', 'hash': '0x8d919c7c509bf85c0115fa076814483224bdfda6bae177a72251912108b2dbb4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb96c207eeafc9f446c77279db3b560dc23de4a7a', 'value': 31.665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01b770adbb4cbe8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T20:38:00.000Z'}}, {'blockNum': '0x69d0be', 'uniqueId': '0xbf68a83fcf2de6e5e4078c45180c5a4d0bde1cd9dd6f84163239baaccd5d8bd6:log:0', 'hash': '0xbf68a83fcf2de6e5e4078c45180c5a4d0bde1cd9dd6f84163239baaccd5d8bd6', 'from': '0x77a15b1dd4ff1823e21f9ac4be7a9e95afd667c5', 'to': '0x5eed9a0c49c61d890b553d2fbb4768e6f0f64a52', 'value': 1466.9591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4f8625a92ae6bbc000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T21:37:38.000Z'}}, {'blockNum': '0x69d0fa', 'uniqueId': '0x428f26a54a84346d6a0137f153682b9c48e2db53cc84e3c3dc9387c115a70f3e:log:7', 'hash': '0x428f26a54a84346d6a0137f153682b9c48e2db53cc84e3c3dc9387c115a70f3e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xedfa17dcfacdaf931419d73dece5b9b5c4ca60dd', 'value': 6.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5cfb2e807b1e0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T21:51:50.000Z'}}, {'blockNum': '0x69d10e', 'uniqueId': '0x193d05dbb535d089c4bf74643188cf54a85a23472abddd2dac3168e0596780af:log:1', 'hash': '0x193d05dbb535d089c4bf74643188cf54a85a23472abddd2dac3168e0596780af', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xedfa17dcfacdaf931419d73dece5b9b5c4ca60dd', 'value': 1581.104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x55b639cef3b5380000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T21:57:10.000Z'}}, {'blockNum': '0x69d1f1', 'uniqueId': '0x6c41adb6f78f86c1c7cf0e1f485313246254eb0945d4dd38bc82a908ceb71257:log:1', 'hash': '0x6c41adb6f78f86c1c7cf0e1f485313246254eb0945d4dd38bc82a908ceb71257', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x7458150d3557f37e4207f7e1d414e26475ccceef', 'value': 74000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0fab8c4c3b325a400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T22:48:52.000Z'}}, {'blockNum': '0x69d208', 'uniqueId': '0x8e7f191ed5850c4d039bfca9c7477e7a16adad8c57202e724d0650286be32fa0:log:1', 'hash': '0x8e7f191ed5850c4d039bfca9c7477e7a16adad8c57202e724d0650286be32fa0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 291702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3dc53275889114180000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T22:54:56.000Z'}}, {'blockNum': '0x69d20e', 'uniqueId': '0xf7ee4cfe86ae92c33e7761b43099a48a0afcb9a6eb0f550c2f0d4546ad2990fc:log:1', 'hash': '0xf7ee4cfe86ae92c33e7761b43099a48a0afcb9a6eb0f550c2f0d4546ad2990fc', 'from': '0xa427c208447f77fa7b8f1e9b0f4d063223af48b8', 'to': '0x859ea256ccb4ce3bfb8f34fa1ad79a528c8c6838', 'value': 26005.902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0581c863c3d3749b0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T22:56:12.000Z'}}, {'blockNum': '0x69d3ab', 'uniqueId': '0x3bf346dafcdae008994a45836c6c63e252513a46d75df9373d52d8736da01f98:log:3', 'hash': '0x3bf346dafcdae008994a45836c6c63e252513a46d75df9373d52d8736da01f98', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6e200993bb0db496d0edbfa64be9721794f3ae9e', 'value': 2631.063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8ea1558287e1958000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-23T00:35:18.000Z'}}, {'blockNum': '0x69d4bc', 'uniqueId': '0x0fa104a8a9c29197ba1d743b07a8b012d67d0d2be4d43c8a1f7892b12e9ccacd:log:11', 'hash': '0x0fa104a8a9c29197ba1d743b07a8b012d67d0d2be4d43c8a1f7892b12e9ccacd', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xaa493fc50ecfd8197eedb1f5a486080dc081a8d8', 'value': 147.2540875167391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x07fb8f9c692f84398a', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-23T01:47:03.000Z'}}, {'blockNum': '0x69d5a5', 'uniqueId': '0x05f7dee46d0065ea11525c7756470ff1217d2a7e8d8fd6cd4f7d9d881c8b43f2:log:135', 'hash': '0x05f7dee46d0065ea11525c7756470ff1217d2a7e8d8fd6cd4f7d9d881c8b43f2', 'from': '0x9fdef85334f24bd107ee7404daef53a825f880fc', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-23T02:49:22.000Z'}}, {'blockNum': '0x69d5e1', 'uniqueId': '0x079ee12eca64a1d34977e9db56d86646fc4456a57037ba7601ae793772b0b4a2:log:115', 'hash': '0x079ee12eca64a1d34977e9db56d86646fc4456a57037ba7601ae793772b0b4a2', 'from': '0x6072d95ab4c666ab417b3f496b19dfeb2ce4249b', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-23T03:04:34.000Z'}}, {'blockNum': '0x69d6a7', 'uniqueId': '0x967dd1438c00165583e84f2acd5b4c6710397c3d319828184fb0237174926436:log:27', 'hash': '0x967dd1438c00165583e84f2acd5b4c6710397c3d319828184fb0237174926436', 'from': '0x5eed9a0c49c61d890b553d2fbb4768e6f0f64a52', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1466.9591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4f8625a92ae6bbc000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-23T03:54:22.000Z'}}, {'blockNum': '0x69d6b9', 'uniqueId': '0xf435731221056ae8e6ca494877aaefc8510fd4fe508c33b69ce94f1e70526f89:log:1', 'hash': '0xf435731221056ae8e6ca494877aaefc8510fd4fe508c33b69ce94f1e70526f89', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2bde5d7733a578c3ff1c79c25b990917b316d084', 'value': 105.591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05b95e970e0e458000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-23T03:59:02.000Z'}}]}}
Number of returned transfers: 65
Answer is complete
symbol BQX
group ATW
date 2019-02-24
hour 17:00
exchange binance
Name: 151, dtype: object
HERE
Symbol: BQX, Contract:
Datetime timestamps: 2019-02-24 17:00:00 2019-02-24 05:00:00 2019-02-25 05:00:00
Unix timestamps: 1550980800.0 1551067200.0
Hex Block Numbers: 0x6ec7e6 0x6ed8a2
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol SYS
group ATW
date 2019-02-27
hour 17:00
exchange binance
Name: 153, dtype: object
HERE
{}
No contract for ethereum specified
Symbol: SYS, Contract:
Datetime timestamps: 2019-02-27 17:00:00 2019-02-27 05:00:00 2019-02-28 05:00:00
Unix timestamps: 1551240000.0 1551326400.0
Hex Block Numbers: 0x6ef9cc 0x6f0a9d
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol HC
group ATW
date 2019-05-12
hour 17:00
exchange binance
Name: 190, dtype: object
HERE
{'stratis': ''}
No contract for ethereum specified
Symbol: HC, Contract:
Datetime timestamps: 2019-05-12 17:00:00 2019-05-12 05:00:00 2019-05-13 05:00:00
Unix timestamps: 1557630000.0 1557716400.0
Hex Block Numbers: 0x76266f 0x763f9a
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol BRD
group ATW
date 2019-05-25
hour 16:00
exchange binance
Name: 194, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps: 2019-05-25 16:00:00 2019-05-25 04:00:00 2019-05-26 04:00:00
Unix timestamps: 1558749600.0 1558836000.0
Hex Block Numbers: 0x776a51 0x7783ad
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x776af4', 'uniqueId': '0x2e39c9690071565e1ae4a9f11781685347963fc6749f39b0fd1e6f46b54c8405:log:73', 'hash': '0x2e39c9690071565e1ae4a9f11781685347963fc6749f39b0fd1e6f46b54c8405', 'from': '0xb434a5a29c7bda2e3c6ff0496f51a5fb36bbd2fb', 'to': '0x1a7e9b85da4dffdfcb4972f312c284ed145ad162', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T02:35:05.000Z'}}, {'blockNum': '0x776f8f', 'uniqueId': '0xdfd4bb96054c395207857536e56053b5f1971b7918b12d2878ae70e709a485bd:log:90', 'hash': '0xdfd4bb96054c395207857536e56053b5f1971b7918b12d2878ae70e709a485bd', 'from': '0x978277ffc11dcf2ecf4e99dc583d76c7ce583b79', 'to': '0x017760d5db096ae1aaa1341dd034cf3127f9ecad', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T07:05:22.000Z'}}, {'blockNum': '0x777017', 'uniqueId': '0x97a94d70b58e1079f5aabe877988ce793469d6fc152abf7d568394899b606499:log:40', 'hash': '0x97a94d70b58e1079f5aabe877988ce793469d6fc152abf7d568394899b606499', 'from': '0x8958618332df62af93053cb9c535e26462c959b0', 'to': '0xdb27fc9a34b5ca525a21ab78a230b51081cb1578', 'value': 10.22, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8dd4bbda247e0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T07:33:29.000Z'}}, {'blockNum': '0x77725a', 'uniqueId': '0xb740ea9edb3655e51c07a5b1f9ba84daf154a7d4bfb5d49098d4f7e7237469af:log:16', 'hash': '0xb740ea9edb3655e51c07a5b1f9ba84daf154a7d4bfb5d49098d4f7e7237469af', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xdc9dc3e9301ed6dc859ab15b6492ebae2dbf37a3', 'value': 35.30033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01e9e3f71b1810a000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T09:44:26.000Z'}}, {'blockNum': '0x7772f0', 'uniqueId': '0x95df88284d83a5191ad4155102e3024d230d3aaa93c2f56999aee63fe3bf0dbd:log:114', 'hash': '0x95df88284d83a5191ad4155102e3024d230d3aaa93c2f56999aee63fe3bf0dbd', 'from': '0xf86a7dad7ea6acf38a6abefc525c5635c63db2af', 'to': '0x52e42d053b36f946262cc14bdf46c7edbfd22387', 'value': 60, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0340aad21b3b700000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T10:17:24.000Z'}}, {'blockNum': '0x777337', 'uniqueId': '0x841d43343ad16a46fdf0be367a6f63727c12144eb41be61956b010c3cec47614:log:52', 'hash': '0x841d43343ad16a46fdf0be367a6f63727c12144eb41be61956b010c3cec47614', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x00d0bd6ca4b08a3da74b9f5aa36ee76afcf6278e', 'value': 46.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02897b000b00480000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T10:37:36.000Z'}}, {'blockNum': '0x7773ae', 'uniqueId': '0x623103e934e8cc52ceb3be35844734e278f3da9b91507a835e26308802d306fc:log:4', 'hash': '0x623103e934e8cc52ceb3be35844734e278f3da9b91507a835e26308802d306fc', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xd3735f7b020f98273558213141484a188e883e20', 'value': 27.45161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x017cf7b5d9a28fa000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T11:03:07.000Z'}}, {'blockNum': '0x7773de', 'uniqueId': '0xd953cef878b263e6547f7c5702dc4705b6f2824bcf3aad4ab5ca5a0a17882fe9:log:5', 'hash': '0xd953cef878b263e6547f7c5702dc4705b6f2824bcf3aad4ab5ca5a0a17882fe9', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x938ed056267ce954c267af5dd71bba0394811762', 'value': 82.40444128264089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04779762bfc6583379', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T11:15:08.000Z'}}, {'blockNum': '0x7773f4', 'uniqueId': '0x4ed403ff0be85308382bea185117e7b586fb3dbe22ddc29e4af5965f674731a8:log:23', 'hash': '0x4ed403ff0be85308382bea185117e7b586fb3dbe22ddc29e4af5965f674731a8', 'from': '0x2c1266ef400b58c7a582472479c5fe8f4738df50', 'to': '0x6bdee37daf991a224e63b13c52e761e5ab0460f4', 'value': 241.30564755689772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0d14c9dff5fc7ebd84', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T11:21:02.000Z'}}, {'blockNum': '0x777498', 'uniqueId': '0xae9b63762bd087c18be064fa8195727f8f70b87aa4a72747cd970bbb40c76e88:log:0', 'hash': '0xae9b63762bd087c18be064fa8195727f8f70b87aa4a72747cd970bbb40c76e88', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 996.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x360960feba2d600000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T11:56:26.000Z'}}, {'blockNum': '0x777522', 'uniqueId': '0xb9f6da559b9a72b11b0eda4f703421c9aeaa496e09d55481a350e6f3c17b55c4:log:26', 'hash': '0xb9f6da559b9a72b11b0eda4f703421c9aeaa496e09d55481a350e6f3c17b55c4', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x3addcebb60e6622450fa867b88069e5a42ab5e38', 'value': 161.86094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x08c645935a9ed0c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T12:27:39.000Z'}}, {'blockNum': '0x777522', 'uniqueId': '0xd09cd3f478f0c47cd13387d89991d16f65fa7c47101358ac3af32217c760a360:log:27', 'hash': '0xd09cd3f478f0c47cd13387d89991d16f65fa7c47101358ac3af32217c760a360', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x3addcebb60e6622450fa867b88069e5a42ab5e38', 'value': 161.86094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x08c645935a9ed0c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T12:27:39.000Z'}}, {'blockNum': '0x777557', 'uniqueId': '0x097f6564016265fb4f4feb632490bb6895c8027f26f1262edee8446cb444d15d:log:4', 'hash': '0x097f6564016265fb4f4feb632490bb6895c8027f26f1262edee8446cb444d15d', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x46b0a7844016033456383b5a5bce825531989a8b', 'value': 18.6218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01026dec6ffe5e8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T12:40:10.000Z'}}, {'blockNum': '0x777557', 'uniqueId': '0xf600d95a177397cb37ad165bbbde9a3880fc05d0764b88332ff002cb962947b5:log:5', 'hash': '0xf600d95a177397cb37ad165bbbde9a3880fc05d0764b88332ff002cb962947b5', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x46b0a7844016033456383b5a5bce825531989a8b', 'value': 18.6218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01026dec6ffe5e8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T12:40:10.000Z'}}, {'blockNum': '0x7775f1', 'uniqueId': '0xbd57b8bd505c834e38d69f418a637a7c47f06dad1927b751434e8009264480d6:log:15', 'hash': '0xbd57b8bd505c834e38d69f418a637a7c47f06dad1927b751434e8009264480d6', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xe26aec9cf9fb4991f1bd08e6322c6727fbb7265a', 'value': 22.54616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0138e40d10b91f0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T13:13:17.000Z'}}, {'blockNum': '0x7775f3', 'uniqueId': '0xf495b44f7bb318b9732b5a2380f4f2ea088ba27e27f9ed69c4640f8f694ba56d:log:95', 'hash': '0xf495b44f7bb318b9732b5a2380f4f2ea088ba27e27f9ed69c4640f8f694ba56d', 'from': '0xed5dab5f32c775e57d6834fe900a8ab556a174e9', 'to': '0x18dcf57d4540e51ca4b8a141a95d953b9162edba', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T13:14:33.000Z'}}, {'blockNum': '0x777650', 'uniqueId': '0xc48b8579921cf39841246403ab0c1bad47787ec95f740eeb0a14b69c92fe4fef:log:13', 'hash': '0xc48b8579921cf39841246403ab0c1bad47787ec95f740eeb0a14b69c92fe4fef', 'from': '0xa4602a6cad80cfaf85c8f2325121f54d8f3e3597', 'to': '0xa674ea657de352db1dc72e170a92daf7f8718453', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T13:34:01.000Z'}}, {'blockNum': '0x777770', 'uniqueId': '0x4f975ce5c4f2a38eaec8804349df2382f2fc57f5c56f877dd5f4be828b03499f:log:7', 'hash': '0x4f975ce5c4f2a38eaec8804349df2382f2fc57f5c56f877dd5f4be828b03499f', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x623baad50bda973d5de8567bd6787b6c1f23ed54', 'value': 35.30033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01e9e3f71b1810a000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T14:38:03.000Z'}}, {'blockNum': '0x777773', 'uniqueId': '0xbdca4697cd49c7fcc4071a53635153d8ec61b124903e9463c99ee4323b9d9a83:log:129', 'hash': '0xbdca4697cd49c7fcc4071a53635153d8ec61b124903e9463c99ee4323b9d9a83', 'from': '0xdfcc252863a347dd4a1eba8b924bc9030017a127', 'to': '0x5e776185730e4f2d9e121711f0e88e1fb3040e47', 'value': 829, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2cf0afa3c50ed40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T14:38:23.000Z'}}, {'blockNum': '0x77778a', 'uniqueId': '0xbb1ee0a7265efd51d4991834bf0db2b50bb3677d1acc51580188cd5e0627ab46:log:57', 'hash': '0xbb1ee0a7265efd51d4991834bf0db2b50bb3677d1acc51580188cd5e0627ab46', 'from': '0xc76ec7706a86e39fce52267085de7874dae8c120', 'to': '0x981e3963130fed5634b6d02f627a83e2a127003a', 'value': 10.76523502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x9565cc36cab1f800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T14:43:00.000Z'}}, {'blockNum': '0x77780a', 'uniqueId': '0x88bbddbe0f76a4e695c55902203532a4cdd7d78b7141ec00efaa75c28983b1f7:log:96', 'hash': '0x88bbddbe0f76a4e695c55902203532a4cdd7d78b7141ec00efaa75c28983b1f7', 'from': '0xacd390321981a422ba8a89bf647f2fcfdaa942f3', 'to': '0x532aa4ffc9e7c452c7dfbd452958166423dbfac7', 'value': 791.0998137529584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2ae2b7212e8ec447cc', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T15:12:36.000Z'}}, {'blockNum': '0x777884', 'uniqueId': '0x683dd70deb2a170da851d221180f3fe5b4b0f21558b65e4ddd1f8a94658b99bb:log:69', 'hash': '0x683dd70deb2a170da851d221180f3fe5b4b0f21558b65e4ddd1f8a94658b99bb', 'from': '0x532aa4ffc9e7c452c7dfbd452958166423dbfac7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 791.0998137529584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2ae2b7212e8ec447cc', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T15:33:44.000Z'}}, {'blockNum': '0x7778ae', 'uniqueId': '0xd1347728efb12aad00e4eb4d4e6261a8b4dd4c64bdb60d41547fe8d31be278c3:log:19', 'hash': '0xd1347728efb12aad00e4eb4d4e6261a8b4dd4c64bdb60d41547fe8d31be278c3', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x28d6cefaa50742d8d9f74927f205b4f6315ff1d7', 'value': 82.7158803303467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x047be9d6e9b6093374', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T15:44:32.000Z'}}, {'blockNum': '0x77798d', 'uniqueId': '0x15ff949f41baac650a8fa1868728102c26ffdf995d247c5e43bed91c30da5913:log:34', 'hash': '0x15ff949f41baac650a8fa1868728102c26ffdf995d247c5e43bed91c30da5913', 'from': '0x17d42f9f55573782a6edc80a2187436b82260283', 'to': '0x6a3ee8937a37c990c89697caf42f59ca8713d437', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T16:31:51.000Z'}}, {'blockNum': '0x777998', 'uniqueId': '0xaeb5d5dd0068801a8ff9799e3ced6ceefd44223d76bad3812965d6e23c318e9a:log:158', 'hash': '0xaeb5d5dd0068801a8ff9799e3ced6ceefd44223d76bad3812965d6e23c318e9a', 'from': '0x0306c2d1fa4794bf90c037867589b6bdadf0a9d0', 'to': '0xac0fe600f10cf3f93a431f3e22b92251dec75c72', 'value': 389.603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x151ed3e84b7a838000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T16:34:59.000Z'}}, {'blockNum': '0x7779cc', 'uniqueId': '0x46702e0fdfb513be0038016600528561ac214151c4763380e4a38506a6b22786:log:3', 'hash': '0x46702e0fdfb513be0038016600528561ac214151c4763380e4a38506a6b22786', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'value': 3104.07, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa8459ff2eeaac70000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T16:45:20.000Z'}}, {'blockNum': '0x777a71', 'uniqueId': '0x38eb0195d8b17dc27b56cb2a7287807c15fd1a6ca144911e4e63a85b07bb2788:log:2', 'hash': '0x38eb0195d8b17dc27b56cb2a7287807c15fd1a6ca144911e4e63a85b07bb2788', 'from': '0xab13434508eedcc2ff429091268279be536a13ad', 'to': '0x8a94b88f7f77a20fc960d190f7ea31d38d0dfe34', 'value': 993.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x35de5b9526d9aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T17:21:33.000Z'}}, {'blockNum': '0x777a8c', 'uniqueId': '0x98b70a2756a3ae5a26bca424adec75275752d3e9dde106b79a920184d83fbdc0:log:17', 'hash': '0x98b70a2756a3ae5a26bca424adec75275752d3e9dde106b79a920184d83fbdc0', 'from': '0xafa705c6c9b729c9864aca98525eec15be46ad95', 'to': '0x6a5f2d59794319c621c41df3142b603d18e0209c', 'value': 55.6167027511081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0303d6387b7249e8bb', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T17:27:27.000Z'}}, {'blockNum': '0x777aa3', 'uniqueId': '0x8df6a2bfe9754dd6e7050de4045223f742b4d81de4c8a114d0c9ade0e8bcbe63:log:42', 'hash': '0x8df6a2bfe9754dd6e7050de4045223f742b4d81de4c8a114d0c9ade0e8bcbe63', 'from': '0x8a94b88f7f77a20fc960d190f7ea31d38d0dfe34', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 993.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x35de5b9526d9aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T17:33:50.000Z'}}, {'blockNum': '0x777c5b', 'uniqueId': '0xde7ad1c7a5c1d308ad531725e8b007edb8d158129c6ddd0ae3e6db0b131da93d:log:27', 'hash': '0xde7ad1c7a5c1d308ad531725e8b007edb8d158129c6ddd0ae3e6db0b131da93d', 'from': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'to': '0x75295d50b9cbf608bdead57ebaef28d893831e10', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T19:08:12.000Z'}}, {'blockNum': '0x777cbd', 'uniqueId': '0x6a0f98b1b4e9c9a76144b0a59eb7dcc6e7abd97743666057c844e7827f3925cb:log:11', 'hash': '0x6a0f98b1b4e9c9a76144b0a59eb7dcc6e7abd97743666057c844e7827f3925cb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x539d4c06659bdacd36764767b7eaffeedb8d41e1', 'value': 46.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02897b000b00480000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T19:29:12.000Z'}}, {'blockNum': '0x777ce3', 'uniqueId': '0x7624bb016f3024a85d5cfc9302162921f95f534a2c42ad06f9157e9a08c3e81d:log:21', 'hash': '0x7624bb016f3024a85d5cfc9302162921f95f534a2c42ad06f9157e9a08c3e81d', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'value': 93.94556163994562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0517c1ae910d85e488', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T19:39:49.000Z'}}, {'blockNum': '0x777d1e', 'uniqueId': '0x86979b2575f79196c154468f0a51fc7c092e909003dd9ed3bd290d762a5de660:log:79', 'hash': '0x86979b2575f79196c154468f0a51fc7c092e909003dd9ed3bd290d762a5de660', 'from': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'to': '0x94daf0f200dbb272e908f9e352da3067b2954c04', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T19:53:33.000Z'}}, {'blockNum': '0x777d50', 'uniqueId': '0xed04aef03cbe7d9c09e6ab82d9b882d306c52d1a96f0f08467c9a1f2a8ef9f66:log:103', 'hash': '0xed04aef03cbe7d9c09e6ab82d9b882d306c52d1a96f0f08467c9a1f2a8ef9f66', 'from': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'to': '0x23a45de3ce73a11a11a9c6a543e4582debdf1e13', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T20:06:13.000Z'}}, {'blockNum': '0x777d80', 'uniqueId': '0x59e23beda7fa184de37cfde6eaa81de54329a6f1e46a4dbc34bfba21a8ab55eb:log:79', 'hash': '0x59e23beda7fa184de37cfde6eaa81de54329a6f1e46a4dbc34bfba21a8ab55eb', 'from': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'to': '0xb02900de3429cfac05181e69324be2d27d41547b', 'value': 897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x30a0602b7d85640000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T20:17:39.000Z'}}, {'blockNum': '0x777da0', 'uniqueId': '0xf331b4d204775155b3b91c6f084d08c001811dfa685dac714bfb2c8801504ad8:log:80', 'hash': '0xf331b4d204775155b3b91c6f084d08c001811dfa685dac714bfb2c8801504ad8', 'from': '0x0082fcf784380e0102fdd77457b0865978846152', 'to': '0xdf5e882e0c0446d73a81b35c1ca46f2ca476998b', 'value': 67.51882147624998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03a9030a6710e54bbc', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T20:25:07.000Z'}}, {'blockNum': '0x777dc1', 'uniqueId': '0x60da1628da41395052edd4912455a453e00627835050c93d9979c069e41211e0:log:105', 'hash': '0x60da1628da41395052edd4912455a453e00627835050c93d9979c069e41211e0', 'from': '0xb02900de3429cfac05181e69324be2d27d41547b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x30a0602b7d85640000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T20:34:43.000Z'}}, {'blockNum': '0x777dfa', 'uniqueId': '0x94f6c1b967203df1141074cb940350c24ae324a422ba1126d4ac52cc6a116d5a:log:93', 'hash': '0x94f6c1b967203df1141074cb940350c24ae324a422ba1126d4ac52cc6a116d5a', 'from': '0xb9bb734d277e6a23249fc26d8ee8a790703667bb', 'to': '0x26a848e5029e1d916c93dd461eb06868751c8fc8', 'value': 770.17868147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x29c060563726136c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T20:46:33.000Z'}}, {'blockNum': '0x777e2c', 'uniqueId': '0xf789a2a7ccf061e4b02c45834fde8b71f3dc35af4bd5b18327c0d7c23246e9d3:log:10', 'hash': '0xf789a2a7ccf061e4b02c45834fde8b71f3dc35af4bd5b18327c0d7c23246e9d3', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'value': 87.02244776199875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04b7add72cc2ec2130', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T20:58:13.000Z'}}, {'blockNum': '0x777e52', 'uniqueId': '0x44284c85da67930c8851eaa801992b028df1f1c9896f628f3554279ab085a6ff:log:125', 'hash': '0x44284c85da67930c8851eaa801992b028df1f1c9896f628f3554279ab085a6ff', 'from': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'to': '0xb02900de3429cfac05181e69324be2d27d41547b', 'value': 87, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04b75e170de2fc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T21:05:54.000Z'}}, {'blockNum': '0x777e85', 'uniqueId': '0x94f58503967eb08e715d10f44a309b86e2942278ad16d0e7adeb15a167d6e6e2:log:22', 'hash': '0x94f58503967eb08e715d10f44a309b86e2942278ad16d0e7adeb15a167d6e6e2', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x3bb1e57a6f0f4b9fe60a682769dbbd206ece38e5', 'value': 18.6218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01026dec6ffe5e8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T21:15:04.000Z'}}, {'blockNum': '0x777ef8', 'uniqueId': '0x59341cf2449d4302d23f205f833bf7b0b4c1b9debf58cb35f4aebde11a2a3fcb:log:165', 'hash': '0x59341cf2449d4302d23f205f833bf7b0b4c1b9debf58cb35f4aebde11a2a3fcb', 'from': '0x976f7f5b7d0698128a7eaba472a82da175fff52c', 'to': '0xe1003b56367cf3128baeac269dcf9cd3bcb05d92', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T21:39:01.000Z'}}, {'blockNum': '0x777fd1', 'uniqueId': '0xf0588c895776d90f87c28aff597d1af2c4feac4e010d65b811ce209150af01eb:log:22', 'hash': '0xf0588c895776d90f87c28aff597d1af2c4feac4e010d65b811ce209150af01eb', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'value': 101.85769176683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05858f36ff2b21e780', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T22:23:27.000Z'}}, {'blockNum': '0x777ff7', 'uniqueId': '0xff06a7adf7f2715c37b2e8441d5da704b679556c5aede1402568b14c8f88b3f0:log:3', 'hash': '0xff06a7adf7f2715c37b2e8441d5da704b679556c5aede1402568b14c8f88b3f0', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'value': 92.9096375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x050961570cc5cfd800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T22:32:09.000Z'}}, {'blockNum': '0x77809c', 'uniqueId': '0x297938ced7caf6f4cd482e3a5bfcaec355375a879e366513c70551c7b2a0e7f6:log:34', 'hash': '0x297938ced7caf6f4cd482e3a5bfcaec355375a879e366513c70551c7b2a0e7f6', 'from': '0xa674ea657de352db1dc72e170a92daf7f8718453', 'to': '0x458a729f0b0b8a68335a437783d91c315615920b', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T23:04:26.000Z'}}, {'blockNum': '0x7780c7', 'uniqueId': '0x0a8f53af8abd709ce9faf862d485a720c5fc6435bd46bbc3b20a4bbb45394886:log:9', 'hash': '0x0a8f53af8abd709ce9faf862d485a720c5fc6435bd46bbc3b20a4bbb45394886', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 1396.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4bb87e776fb9a00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T23:12:04.000Z'}}, {'blockNum': '0x7780d1', 'uniqueId': '0x0f110073294f6b3dc260775b37f6317789a99a1e183648ee455b4ad83f2e2dad:log:57', 'hash': '0x0f110073294f6b3dc260775b37f6317789a99a1e183648ee455b4ad83f2e2dad', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'value': 1033.5110152702325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3806d8b89cbb862720', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T23:14:14.000Z'}}, {'blockNum': '0x7780d1', 'uniqueId': '0xf7da19ba6b3f4c404f07bf0979122b0bd8577f66322cf3fddf5bdba6ae4779b2:log:58', 'hash': '0xf7da19ba6b3f4c404f07bf0979122b0bd8577f66322cf3fddf5bdba6ae4779b2', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x75438d34c9125839c8b08d21b7f3167281659e7c', 'value': 328.8108983099764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x11d32af9e5eb3b6a9f', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T23:14:14.000Z'}}, {'blockNum': '0x7780f0', 'uniqueId': '0x8ddf25be17c3ed21493470f4d89ffec4bbddfa0afdbd90d9063c52983d9e56f6:log:96', 'hash': '0x8ddf25be17c3ed21493470f4d89ffec4bbddfa0afdbd90d9063c52983d9e56f6', 'from': '0x0a62229e734f2c8c8880be7e9f023484fff22b8e', 'to': '0x78c7fd00c351dd732eb8f46c2ca47e422e72fbe3', 'value': 18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xf9ccd8a1c5080000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T23:22:11.000Z'}}, {'blockNum': '0x778145', 'uniqueId': '0x121b99baef470c59a590fa3521db48c56cb5c379e5f00a3163217a25ff616bd5:log:38', 'hash': '0x121b99baef470c59a590fa3521db48c56cb5c379e5f00a3163217a25ff616bd5', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'value': 100.8178175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x057720d6dc4da91800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T23:43:05.000Z'}}, {'blockNum': '0x778157', 'uniqueId': '0x53383cc621494c9e98a2f6b466ccdf58d479a65af179bc93579000635c3d12c1:log:9', 'hash': '0x53383cc621494c9e98a2f6b466ccdf58d479a65af179bc93579000635c3d12c1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 1996.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c3f2aac800c000000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T23:48:18.000Z'}}, {'blockNum': '0x77815c', 'uniqueId': '0x342c5c8be47bb6dbd460f8db8c1ea7a93117eb7eb1ee47a22e0f0cde0adfaf17:log:8', 'hash': '0x342c5c8be47bb6dbd460f8db8c1ea7a93117eb7eb1ee47a22e0f0cde0adfaf17', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'value': 1763.40502030793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5f9829230cc2a8aa80', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T23:49:17.000Z'}}, {'blockNum': '0x77816a', 'uniqueId': '0x445b14b3ab7171292aa0bb071c2f7f5f913150f65566384c3cd6426eb06ac3b4:log:119', 'hash': '0x445b14b3ab7171292aa0bb071c2f7f5f913150f65566384c3cd6426eb06ac3b4', 'from': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'to': '0xb02900de3429cfac05181e69324be2d27d41547b', 'value': 3092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa79e1eb1e1c3d00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T23:53:11.000Z'}}, {'blockNum': '0x7781a2', 'uniqueId': '0xccba34561051263071d895a5fc19fd2db5f4f33105abcb58153357e99f5bb2d0:log:34', 'hash': '0xccba34561051263071d895a5fc19fd2db5f4f33105abcb58153357e99f5bb2d0', 'from': '0xb02900de3429cfac05181e69324be2d27d41547b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xac557cc8efa6cc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-26T00:04:03.000Z'}}, {'blockNum': '0x77821a', 'uniqueId': '0x9910b68a86c4ae82aa74b3fe02079e972e13b934aaa33065e7cea9a9a0e1c4db:log:134', 'hash': '0x9910b68a86c4ae82aa74b3fe02079e972e13b934aaa33065e7cea9a9a0e1c4db', 'from': '0x458a729f0b0b8a68335a437783d91c315615920b', 'to': '0x986af1972f446be681e8ea5bcad7d8f590a99ef1', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-26T00:30:25.000Z'}}, {'blockNum': '0x778252', 'uniqueId': '0x48386b71bc75f4ce789efffdcbe8d086365a9c0a343d01c6f74dfc093b2f312e:log:17', 'hash': '0x48386b71bc75f4ce789efffdcbe8d086365a9c0a343d01c6f74dfc093b2f312e', 'from': '0xbc3b0c0cb6e1e316b0c73fca54d17fa38073272e', 'to': '0xbc76ea0c40d7a1488237747de846eb36a9d6f96d', 'value': 29.877166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x019ea1042e5560e000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-26T00:43:26.000Z'}}, {'blockNum': '0x778295', 'uniqueId': '0x4e5dde71d2985c2fc3d1567728f42047267cf5b286e4b790e524838f04037b8d:log:1', 'hash': '0x4e5dde71d2985c2fc3d1567728f42047267cf5b286e4b790e524838f04037b8d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2696.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x92330185361efa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-26T00:58:51.000Z'}}, {'blockNum': '0x778299', 'uniqueId': '0xb5df04c4e5aefda0ff9685c822b1bf464053161ec14c77e49a17f2324e2641f9:log:3', 'hash': '0xb5df04c4e5aefda0ff9685c822b1bf464053161ec14c77e49a17f2324e2641f9', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'value': 2543.7388549750826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x89e577d34b34ae03b4', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-26T00:59:25.000Z'}}, {'blockNum': '0x7782dc', 'uniqueId': '0x50d91d7073cb663f4a1da55eac66f94377daaa2d943698efca58b982a556b892:log:9', 'hash': '0x50d91d7073cb663f4a1da55eac66f94377daaa2d943698efca58b982a556b892', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2596.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8cc73a2708bbea0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-26T01:14:10.000Z'}}, {'blockNum': '0x7782e0', 'uniqueId': '0xabe19c318dcc7b0f81ca82a4a12006851cb2d3a0165ff1babe7bf065842d5700:log:13', 'hash': '0xabe19c318dcc7b0f81ca82a4a12006851cb2d3a0165ff1babe7bf065842d5700', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'value': 2541.760822444328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x89ca04712fe6e69365', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-26T01:15:05.000Z'}}, {'blockNum': '0x77834b', 'uniqueId': '0xbbace292fb1017a00ac586d95b127cbfadf733ab836de81c68e70a9b5dfc7b8f:log:136', 'hash': '0xbbace292fb1017a00ac586d95b127cbfadf733ab836de81c68e70a9b5dfc7b8f', 'from': '0xfcd5fbecc619d58c9ad448440a6fbe0a829d77b5', 'to': '0xb556482b7f88fe779cc30feba37c07e21271e68f', 'value': 750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x28a857425466f80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-26T01:39:58.000Z'}}, {'blockNum': '0x778390', 'uniqueId': '0x79b5e6d4ae4037dc55c11083be92123c6b19d8d8a94e68ca52a123fa588f10df:log:12', 'hash': '0x79b5e6d4ae4037dc55c11083be92123c6b19d8d8a94e68ca52a123fa588f10df', 'from': '0x986af1972f446be681e8ea5bcad7d8f590a99ef1', 'to': '0xc4b6ae4a833274bad9bb735b3f90364ba22a4004', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-26T01:54:03.000Z'}}]}}
Number of returned transfers: 62
Answer is complete
symbol STORJ
group ATW
date 2019-08-10
hour 20:00
exchange binance
Name: 217, dtype: object
HERE
Symbol: STORJ, Contract: 0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac
Datetime timestamps: 2019-08-10 20:00:00 2019-08-10 08:00:00 2019-08-11 08:00:00
Unix timestamps: 1565416800.0 1565503200.0
Hex Block Numbers: 0x7ef850 0x7f1186
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7ef909', 'uniqueId': '0xe757157a80dddea9a96a838e32cae8aba20aff935219335346e0b9ac98d34680:log:35', 'hash': '0xe757157a80dddea9a96a838e32cae8aba20aff935219335346e0b9ac98d34680', 'from': '0x26ef6cf6b1657667c6b57db88bb623592da51db0', 'to': '0xf0a6de92b477f267ee78f35eaa53dc89eace98cd', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T06:36:58.000Z'}}, {'blockNum': '0x7ef915', 'uniqueId': '0x7906d96185777642a314b1a9173ea19e0cf02c58c957385f01c0b7b16e22c058:log:32', 'hash': '0x7906d96185777642a314b1a9173ea19e0cf02c58c957385f01c0b7b16e22c058', 'from': '0xf0a6de92b477f267ee78f35eaa53dc89eace98cd', 'to': '0xfbf2173154f7625713be22e0504404ebfe021eae', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T06:39:26.000Z'}}, {'blockNum': '0x7ef91a', 'uniqueId': '0x6b02af8706459db9c7dc6e6176a18074313a115d294e7dda88e8ff2fca323f50:log:10', 'hash': '0x6b02af8706459db9c7dc6e6176a18074313a115d294e7dda88e8ff2fca323f50', 'from': '0xfbf2173154f7625713be22e0504404ebfe021eae', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T06:40:19.000Z'}}, {'blockNum': '0x7ef996', 'uniqueId': '0x17ea76eb79753a465685a82255fbccc01e26708410d5957e721613d166d2207b:log:62', 'hash': '0x17ea76eb79753a465685a82255fbccc01e26708410d5957e721613d166d2207b', 'from': '0xea870832e339fa2026f86847dec8c82e2f839e42', 'to': '0xbe7da847bbb78a8d17c72e06e330f111a7e442d1', 'value': 147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x036c303300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T07:05:49.000Z'}}, {'blockNum': '0x7ef9b2', 'uniqueId': '0x6063861f5e435d9311554e948afbc1a9e983d8fc3c6020270e03cd7d6fb34697:log:39', 'hash': '0x6063861f5e435d9311554e948afbc1a9e983d8fc3c6020270e03cd7d6fb34697', 'from': '0xbe7da847bbb78a8d17c72e06e330f111a7e442d1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 227.4728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x054bd7f280', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T07:12:24.000Z'}}, {'blockNum': '0x7ef9be', 'uniqueId': '0x6036af3bdd2556bceae767f90a068bb52d1cf2a782d37ad778b34b31d74cc509:log:116', 'hash': '0x6036af3bdd2556bceae767f90a068bb52d1cf2a782d37ad778b34b31d74cc509', 'from': '0xacd31a8a10c786d45cbdb18befc3733392a66bac', 'to': '0x89bbf0581110a620948b5f475562dac34940ceef', 'value': 5413.87812611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7e0d3a6f03', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T07:14:36.000Z'}}, {'blockNum': '0x7ef9c2', 'uniqueId': '0x4693def27a5a1f3d6dd91b52768356e3ae2c85692dc2e91f8628ddaed6363c02:log:6', 'hash': '0x4693def27a5a1f3d6dd91b52768356e3ae2c85692dc2e91f8628ddaed6363c02', 'from': '0x89bbf0581110a620948b5f475562dac34940ceef', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 5413.87812611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7e0d3a6f03', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T07:15:46.000Z'}}, {'blockNum': '0x7ef9e2', 'uniqueId': '0x21d2fffc61415ed94aba7b48034b6fc3593a6a43871e71f52561253b86fee686:log:22', 'hash': '0x21d2fffc61415ed94aba7b48034b6fc3593a6a43871e71f52561253b86fee686', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5413.87812611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7e0d3a6f03', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T07:21:54.000Z'}}, {'blockNum': '0x7efa23', 'uniqueId': '0x92d40b260a9268192f2319e6425ea8e4bfcc91e5a677d94550b24bbdd1087b13:log:55', 'hash': '0x92d40b260a9268192f2319e6425ea8e4bfcc91e5a677d94550b24bbdd1087b13', 'from': '0xf000d7380471301e3f80a5cbf9c533ada1c13ab8', 'to': '0x3a7bfd20bc2dbe186316aa2a4b5820d96a78f072', 'value': 133.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031cea0280', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T07:36:01.000Z'}}, {'blockNum': '0x7efa38', 'uniqueId': '0xb4075e544a1fe33b97953b317bffb2aaba84b44338cb0651efb3020352cf4718:log:5', 'hash': '0xb4075e544a1fe33b97953b317bffb2aaba84b44338cb0651efb3020352cf4718', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x111f9088395ccae9c4d26d5f0aa348c6ba0d97b9', 'value': 943.933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x15fa477420', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T07:41:05.000Z'}}, {'blockNum': '0x7efa3e', 'uniqueId': '0x6d9b8c96510a692c84271f7b5a3d34db3e6635f1212a051badb5ad706caea084:log:36', 'hash': '0x6d9b8c96510a692c84271f7b5a3d34db3e6635f1212a051badb5ad706caea084', 'from': '0x3a7bfd20bc2dbe186316aa2a4b5820d96a78f072', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 133.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031cea0280', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T07:42:02.000Z'}}, {'blockNum': '0x7efa40', 'uniqueId': '0x572289326aef5d9e738d1b6b98929600035d723af6a4636200021410e1df697a:log:11', 'hash': '0x572289326aef5d9e738d1b6b98929600035d723af6a4636200021410e1df697a', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x99a07abce3aa74ed56ed9446c4a10a1416aaa2d7', 'value': 80.233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01de39d7a0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T07:42:37.000Z'}}, {'blockNum': '0x7efa85', 'uniqueId': '0xd3aa8f9af384c5df8429b6fdb07c5ada368b6d5b4579ba7e9b132c827da04198:log:2', 'hash': '0xd3aa8f9af384c5df8429b6fdb07c5ada368b6d5b4579ba7e9b132c827da04198', 'from': '0x1c59d5fff9668e5b929a4d8f19cffd757281ad9e', 'to': '0xcc435575730513e89416682d6204a3c89697ef96', 'value': 130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0306dc4200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T07:55:46.000Z'}}, {'blockNum': '0x7efab2', 'uniqueId': '0xc35cbbcb88cbd71d8b94065a9730e1e5875b40298ff74e421f2dd9684ee1d177:log:93', 'hash': '0xc35cbbcb88cbd71d8b94065a9730e1e5875b40298ff74e421f2dd9684ee1d177', 'from': '0xf9b4083fb389762effc162a018efcaa1354afcd3', 'to': '0xcc30af70e765221f39fff838b12f371075ccd159', 'value': 133.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031cea0280', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T08:06:57.000Z'}}, {'blockNum': '0x7efab2', 'uniqueId': '0xa32757611900e5cc25f9a5152eeb2a94e6a97053f23ae2179602109909a6b39d:log:96', 'hash': '0xa32757611900e5cc25f9a5152eeb2a94e6a97053f23ae2179602109909a6b39d', 'from': '0xae9b8e367a1927b075e2625b3fb4599b62329eea', 'to': '0xcc30af70e765221f39fff838b12f371075ccd159', 'value': 133.97252358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031e89d906', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T08:06:57.000Z'}}, {'blockNum': '0x7efab3', 'uniqueId': '0xa6c94c6750bab50d0685f024f7b090ce0bb5952e18d5368dbcb0f4c17605d3b8:log:97', 'hash': '0xa6c94c6750bab50d0685f024f7b090ce0bb5952e18d5368dbcb0f4c17605d3b8', 'from': '0xab99efb436d36841d01e662e8b5688f86a0eeb9c', 'to': '0xcc30af70e765221f39fff838b12f371075ccd159', 'value': 133.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031cea0280', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T08:07:01.000Z'}}, {'blockNum': '0x7efab7', 'uniqueId': '0xe564f0c81b970c3a3e74fc05faf95fa8033ec9e0d9cb82f8262b8ef6f7049842:log:24', 'hash': '0xe564f0c81b970c3a3e74fc05faf95fa8033ec9e0d9cb82f8262b8ef6f7049842', 'from': '0xf7b60595f663f3df5207646f94db2a6543f42521', 'to': '0xa7347960968ab6905b85618a1ec17b6c53d0ad54', 'value': 153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x038ff37900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T08:07:47.000Z'}}, {'blockNum': '0x7efacb', 'uniqueId': '0x3d871f0829c77fffe359024319d471be8f2d6da04476877ba13908c0702e3fc3:log:95', 'hash': '0x3d871f0829c77fffe359024319d471be8f2d6da04476877ba13908c0702e3fc3', 'from': '0xcc30af70e765221f39fff838b12f371075ccd159', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 401.37252358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09585dde06', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T08:11:47.000Z'}}, {'blockNum': '0x7efacb', 'uniqueId': '0x8c816e3e23ff14ce75f2949942f13d17e606462957c9875269d037020d479fdb:log:97', 'hash': '0x8c816e3e23ff14ce75f2949942f13d17e606462957c9875269d037020d479fdb', 'from': '0xcc435575730513e89416682d6204a3c89697ef96', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0306dc4200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T08:11:47.000Z'}}, {'blockNum': '0x7efad3', 'uniqueId': '0xfa1523bb04217989dc4be3dee3ca76cda382d694623efc9b109947e040c6e772:log:85', 'hash': '0xfa1523bb04217989dc4be3dee3ca76cda382d694623efc9b109947e040c6e772', 'from': '0x4314b8c4d5933ed75b4fdc08b7597f8856118871', 'to': '0xa00aca51c9419d331fbb38cdd0d851338289579d', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T08:14:21.000Z'}}, {'blockNum': '0x7efc13', 'uniqueId': '0x970dc9ee1c6da711f7bb850f079e4d65594cb4a895f80fc145e27653d5c635be:log:68', 'hash': '0x970dc9ee1c6da711f7bb850f079e4d65594cb4a895f80fc145e27653d5c635be', 'from': '0xd5264487ffa83825a96dba1ffb0456343b1da2c5', 'to': '0xca1f400e95cb603f9b682c42813aad9975654bc2', 'value': 161.33214402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03c19d50c2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T09:24:00.000Z'}}, {'blockNum': '0x7efc72', 'uniqueId': '0x01b18abc838481451ea3b5936feed3b607468c064eda895e97035f16ae94d119:log:55', 'hash': '0x01b18abc838481451ea3b5936feed3b607468c064eda895e97035f16ae94d119', 'from': '0x6f010cacdcd0549ccd0a40219c7155baacf7ab39', 'to': '0xacee7e48eb7ac0357d49d5c21cc4c1b5cb13cedb', 'value': 267.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0639d40500', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T09:44:10.000Z'}}, {'blockNum': '0x7efd0c', 'uniqueId': '0xbe1f48ea37e1992164297092118be30b139d99d3d7d06e2b04498f13fbecfb1f:log:80', 'hash': '0xbe1f48ea37e1992164297092118be30b139d99d3d7d06e2b04498f13fbecfb1f', 'from': '0x716d6d4a72b6d6b4966bd1f486c6d62302fb9500', 'to': '0x8a7ab116a18fe11934093bb9c548acf887783d46', 'value': 142.10602169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x034f0494b9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T10:20:18.000Z'}}, {'blockNum': '0x7efd12', 'uniqueId': '0xa35227b1092294b8097b1f379ef2d4c278d1c6729d1c417988ce1f3d672a55b4:log:2', 'hash': '0xa35227b1092294b8097b1f379ef2d4c278d1c6729d1c417988ce1f3d672a55b4', 'from': '0x8a7ab116a18fe11934093bb9c548acf887783d46', 'to': '0x565369ec3ee45e1d0de717883a6a3d60c09d8b93', 'value': 142.10602169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x034f0494b9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T10:21:33.000Z'}}, {'blockNum': '0x7efd4d', 'uniqueId': '0xc63b8e35864ec408d9329f29b585d9d694d29d285d125183c6959a6eb74a04a0:log:1', 'hash': '0xc63b8e35864ec408d9329f29b585d9d694d29d285d125183c6959a6eb74a04a0', 'from': '0x99f6da169610943538205be87f4135774e8bab83', 'to': '0x90f2d651bafb839e8a7e7ef5c3145ea94661877a', 'value': 283.33467331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0698ce66c3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T10:35:15.000Z'}}, {'blockNum': '0x7efd5c', 'uniqueId': '0xb0365c427c31a6eac433f5b90bb48a1aa187775f48112f0b10163364fb4b6bb3:log:27', 'hash': '0xb0365c427c31a6eac433f5b90bb48a1aa187775f48112f0b10163364fb4b6bb3', 'from': '0x90f2d651bafb839e8a7e7ef5c3145ea94661877a', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 283.33467331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0698ce66c3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T10:38:06.000Z'}}, {'blockNum': '0x7efd9c', 'uniqueId': '0x249198d886fba27506b428e46f759307a2e7abc8d874260e08d55a6869c4e684:log:19', 'hash': '0x249198d886fba27506b428e46f759307a2e7abc8d874260e08d55a6869c4e684', 'from': '0xab2a3ec557a9fc596bef9c447637abef78f2bf36', 'to': '0x0a36ae48118406a24047a5b04202ad9302326287', 'value': 175.12500001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0413d38b21', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T10:52:49.000Z'}}, {'blockNum': '0x7efdcc', 'uniqueId': '0x52f4edba02d4489f3274b2be327dd4fb2f5f5d2019fe9da8c4215ee97c311478:log:25', 'hash': '0x52f4edba02d4489f3274b2be327dd4fb2f5f5d2019fe9da8c4215ee97c311478', 'from': '0x0a36ae48118406a24047a5b04202ad9302326287', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 175.12500001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0413d38b21', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T11:02:12.000Z'}}, {'blockNum': '0x7efdf5', 'uniqueId': '0x71eac1420ac4044f9e126a7966e986e3992c347a6a028d4d07505353d56bd5c9:log:98', 'hash': '0x71eac1420ac4044f9e126a7966e986e3992c347a6a028d4d07505353d56bd5c9', 'from': '0xd5c5bb2e973381aaf80f511ed59a1a0a71d7e167', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 135.61989735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03285b8a67', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T11:12:24.000Z'}}, {'blockNum': '0x7efdf5', 'uniqueId': '0x565fa2a7074186ff2e5ea9e4a48f416f3d676f99d84ce1034cd3d98f074597d5:log:100', 'hash': '0x565fa2a7074186ff2e5ea9e4a48f416f3d676f99d84ce1034cd3d98f074597d5', 'from': '0x27ccd6f724e01056693416ced0b3818ef4b321b4', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 1251.62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1d243c8e80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T11:12:24.000Z'}}, {'blockNum': '0x7efe44', 'uniqueId': '0x69bd65d19e9212a425d9a89ab620bf7d25d8170111d31ab4a77e3b9d77ccc53d:log:50', 'hash': '0x69bd65d19e9212a425d9a89ab620bf7d25d8170111d31ab4a77e3b9d77ccc53d', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xffd4497848246b54255a130a32e038f0e2f962f8', 'value': 7978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb9c095ea00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T11:32:29.000Z'}}, {'blockNum': '0x7efe49', 'uniqueId': '0x1ac82ba639badefb802b50a166056df1ca5c1990a651da153339779a6d8e8454:log:7', 'hash': '0x1ac82ba639badefb802b50a166056df1ca5c1990a651da153339779a6d8e8454', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6b1e236d19d00f83027274a98bf2b6a193c3047f', 'value': 5665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x83e6080100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T11:34:37.000Z'}}, {'blockNum': '0x7efe9a', 'uniqueId': '0x4f12c65dadd7fe7d1e73bd50f6ec19e3212e5c9de5beb2f05139bcdda922bd1f:log:13', 'hash': '0x4f12c65dadd7fe7d1e73bd50f6ec19e3212e5c9de5beb2f05139bcdda922bd1f', 'from': '0xca1f400e95cb603f9b682c42813aad9975654bc2', 'to': '0x8c240d98e179a9e283a2394e5969a2eea95ca810', 'value': 161.33214402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03c19d50c2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T11:53:25.000Z'}}, {'blockNum': '0x7eff71', 'uniqueId': '0xbf1620fa2824f79894357ee7d4f166baa6fa7335aed08707fcc28d7d01ca6ba6:log:2', 'hash': '0xbf1620fa2824f79894357ee7d4f166baa6fa7335aed08707fcc28d7d01ca6ba6', 'from': '0xd9116c60321ef510157596826d834cb8e61eba76', 'to': '0x4801328a3f7d81eff19251ab52d09d942ee41617', 'value': 141.63730107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x034c395ebb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T12:41:18.000Z'}}, {'blockNum': '0x7eff80', 'uniqueId': '0xfb653a5029aad12b60499d7392c07058c5f39470231f43ac4753da99f786836e:log:52', 'hash': '0xfb653a5029aad12b60499d7392c07058c5f39470231f43ac4753da99f786836e', 'from': '0x4801328a3f7d81eff19251ab52d09d942ee41617', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 141.63730107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x034c395ebb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T12:43:19.000Z'}}, {'blockNum': '0x7eff83', 'uniqueId': '0xaad5576702ff27b1d45c3434f443b651206c3d6e465ffa6e41649d38b39d3aa0:log:73', 'hash': '0xaad5576702ff27b1d45c3434f443b651206c3d6e465ffa6e41649d38b39d3aa0', 'from': '0x6b34187bb43a409e8d8b5304cf577c5f7909637f', 'to': '0x28593b54ec8432983839ee2addcdb4e602ae81b6', 'value': 133.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031cea0280', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T12:44:47.000Z'}}, {'blockNum': '0x7eff87', 'uniqueId': '0x6bb434c65bed9adb9f6dfb268f709cf195554493b39ba52195b597a4444aad77:log:74', 'hash': '0x6bb434c65bed9adb9f6dfb268f709cf195554493b39ba52195b597a4444aad77', 'from': '0xf5906777b2e8a564a0ed2515047ecd7a3e8360b5', 'to': '0xa6535d2cbfb54566521d98c42f4f8e2dfe8a8311', 'value': 133.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031cea0280', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T12:45:14.000Z'}}, {'blockNum': '0x7eff8a', 'uniqueId': '0x005e4c5bc6352250b73563405465db4dfe651faab0d17e8e6a205399c12369a1:log:13', 'hash': '0x005e4c5bc6352250b73563405465db4dfe651faab0d17e8e6a205399c12369a1', 'from': '0x28593b54ec8432983839ee2addcdb4e602ae81b6', 'to': '0x9021743a8c1f9f492f7c748adb00860e3aec3e28', 'value': 133.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031cea0280', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T12:46:43.000Z'}}, {'blockNum': '0x7eff90', 'uniqueId': '0x2df52ddc93b7832c94b8064801c70d04734c721f890c3504467b2888a453d7d4:log:14', 'hash': '0x2df52ddc93b7832c94b8064801c70d04734c721f890c3504467b2888a453d7d4', 'from': '0x9021743a8c1f9f492f7c748adb00860e3aec3e28', 'to': '0x565369ec3ee45e1d0de717883a6a3d60c09d8b93', 'value': 133.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031cea0280', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T12:47:35.000Z'}}, {'blockNum': '0x7effc5', 'uniqueId': '0x049f7c4a47ef131085942ad5f36e20c5098ed68bd8fad29baabf79189430ca8b:log:56', 'hash': '0x049f7c4a47ef131085942ad5f36e20c5098ed68bd8fad29baabf79189430ca8b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 445.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a5f630d80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T12:58:39.000Z'}}, {'blockNum': '0x7effd4', 'uniqueId': '0x0167f1e4a307b442e054dc4aadfc50e04dfa4c63fec71f55eddc87e87ecca56f:log:34', 'hash': '0x0167f1e4a307b442e054dc4aadfc50e04dfa4c63fec71f55eddc87e87ecca56f', 'from': '0xa6535d2cbfb54566521d98c42f4f8e2dfe8a8311', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 162.83043533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03ca8b86cd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T13:02:06.000Z'}}, {'blockNum': '0x7f007c', 'uniqueId': '0x2583e98f4f63f1d5caa743932f3ddbfc70ca680791e284e06b0817fb7e3fcf31:log:16', 'hash': '0x2583e98f4f63f1d5caa743932f3ddbfc70ca680791e284e06b0817fb7e3fcf31', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xac26adcff2c83f7757b7894075516f2aac8a7482', 'value': 2084.69999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3089c7c17f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T13:40:29.000Z'}}, {'blockNum': '0x7f0154', 'uniqueId': '0xafe44c88b78385c10970718eb02cdd78144e33e3c8f05093ed51eda599e9b98c:log:15', 'hash': '0xafe44c88b78385c10970718eb02cdd78144e33e3c8f05093ed51eda599e9b98c', 'from': '0xb88d6daee828a40fb4000cb99f1704428f6ebe43', 'to': '0x37d685de302d8865451d1cd5d6e0a5d5c7d1b4c1', 'value': 133.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031cea0280', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T14:31:42.000Z'}}, {'blockNum': '0x7f0177', 'uniqueId': '0x979459cbf0a606d21e1ac33a0db77da2129437ef3b51452d802a823835acea1b:log:88', 'hash': '0x979459cbf0a606d21e1ac33a0db77da2129437ef3b51452d802a823835acea1b', 'from': '0x38c4f8b6a9fba073120ce0ae9104b755d346fc1e', 'to': '0x4e5f161ff433d2802f12ce600edb8a6538674927', 'value': 133.76048685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031d464e2d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T14:39:30.000Z'}}, {'blockNum': '0x7f017a', 'uniqueId': '0x9bfc46d45f9472590333a9eafaf1750da0450f0832b84b76d69b09e8c6a8b39d:log:2', 'hash': '0x9bfc46d45f9472590333a9eafaf1750da0450f0832b84b76d69b09e8c6a8b39d', 'from': '0x4e5f161ff433d2802f12ce600edb8a6538674927', 'to': '0x565369ec3ee45e1d0de717883a6a3d60c09d8b93', 'value': 133.76048685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031d464e2d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T14:41:27.000Z'}}, {'blockNum': '0x7f017e', 'uniqueId': '0x35003b6f0667137d19961aa5bc89177679c6d2c8b6c7885a2c6370d811898865:log:29', 'hash': '0x35003b6f0667137d19961aa5bc89177679c6d2c8b6c7885a2c6370d811898865', 'from': '0x37d685de302d8865451d1cd5d6e0a5d5c7d1b4c1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 190.2594928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x046e08f260', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T14:41:54.000Z'}}, {'blockNum': '0x7f01a4', 'uniqueId': '0x3c88cf20b1a2ffcbc1d76a177c62203f93715e86ebec77e5ea0c9fe80f58a72f:log:1', 'hash': '0x3c88cf20b1a2ffcbc1d76a177c62203f93715e86ebec77e5ea0c9fe80f58a72f', 'from': '0x5e37a9df66132763f373a4626a22d9fe747e30b0', 'to': '0xcf57475145b15e3636051b7615efcc6025552a29', 'value': 4.89908021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1d336735', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T14:49:29.000Z'}}, {'blockNum': '0x7f01d5', 'uniqueId': '0x46ee773ab3a43244a818727c0ee43a3419d9c0666ea0be578f86d4c7e49ded5f:log:3', 'hash': '0x46ee773ab3a43244a818727c0ee43a3419d9c0666ea0be578f86d4c7e49ded5f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x98107a3934e83436d975fc893e66de41e80d7659', 'value': 992.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1719607680', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T14:59:41.000Z'}}, {'blockNum': '0x7f01ee', 'uniqueId': '0xcad7ceacc6f2528bbd6ab2d0e423f638f26f9ee431366000b8cbd1ec288e1b48:log:50', 'hash': '0xcad7ceacc6f2528bbd6ab2d0e423f638f26f9ee431366000b8cbd1ec288e1b48', 'from': '0x1844d3cc51b6ca1f7e8eaf64861574ae010fa757', 'to': '0x9b46f952073b81e28fd27fae2dce336ba42e19fb', 'value': 135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0324a9a700', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:04:51.000Z'}}, {'blockNum': '0x7f01f5', 'uniqueId': '0x63aa62c0468c4a439a9695477ee8f39956a8da4bef6b3e31de7367a173857de0:log:125', 'hash': '0x63aa62c0468c4a439a9695477ee8f39956a8da4bef6b3e31de7367a173857de0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x000000000c7c9cbb8485c5e38c6c0da6a1017c1f', 'value': 0.00077361, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x012e31', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:07:00.000Z'}}, {'blockNum': '0x7f01f5', 'uniqueId': '0xce9e94885f91bf9d28675da18e9ab4ba099ff6ff4679acf70d5e6f4778c166aa:log:126', 'hash': '0xce9e94885f91bf9d28675da18e9ab4ba099ff6ff4679acf70d5e6f4778c166aa', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x000000043dc3052d771845a71efc05b67f40abb4', 'value': 0.48737544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02e7ad08', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:07:00.000Z'}}, {'blockNum': '0x7f01f5', 'uniqueId': '0x6d04a5f82e45c34b47b2b39f06d91870f71932c20692bfe5cf0f90cdcd9374dd:log:127', 'hash': '0x6d04a5f82e45c34b47b2b39f06d91870f71932c20692bfe5cf0f90cdcd9374dd', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x000000e5e3f0831517a5fb8eeb00a2da21e49e94', 'value': 0.00058711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe557', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:07:00.000Z'}}, {'blockNum': '0x7f01f7', 'uniqueId': '0x11f2fcc796a139163b3fb0769c649c3bf8b777cd6f7d4f2f157920d806d7fbe7:log:52', 'hash': '0x11f2fcc796a139163b3fb0769c649c3bf8b777cd6f7d4f2f157920d806d7fbe7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x000500b81c9b361ed7d4daebc184029ec3b402f1', 'value': 0.0056294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0896fc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:08:10.000Z'}}, {'blockNum': '0x7f01f7', 'uniqueId': '0x304922f2a70250b84464fd337a0b9a82e3ac09d677ee87e129a1090aab1dfdcd:log:53', 'hash': '0x304922f2a70250b84464fd337a0b9a82e3ac09d677ee87e129a1090aab1dfdcd', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00101a0e98ecea02681a5447c3cab0c787d109f6', 'value': 0.01574852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1807c4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:08:10.000Z'}}, {'blockNum': '0x7f01f7', 'uniqueId': '0x7cc3bc09611a5c72e3efea51ea460ca384840eaa004e3eb46171ae2a580de98b:log:54', 'hash': '0x7cc3bc09611a5c72e3efea51ea460ca384840eaa004e3eb46171ae2a580de98b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0012e9a8424da6db3200711ffbe5e2c62bf91bbf', 'value': 0.39906627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0260ed43', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:08:10.000Z'}}, {'blockNum': '0x7f01f7', 'uniqueId': '0x3ad3f19750c6975258300fd611582a175093e7bab61ec9f177f5847792e0fbaf:log:55', 'hash': '0x3ad3f19750c6975258300fd611582a175093e7bab61ec9f177f5847792e0fbaf', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0017ceed8eb8fc7977c55dce6b0dc3ffe8f4d184', 'value': 0.77696183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04a18cb7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:08:10.000Z'}}, {'blockNum': '0x7f01f7', 'uniqueId': '0x70cf8632425fda7fecf98b28aa7c169c3c91db2368964f8d8b5c143f5f1710aa:log:56', 'hash': '0x70cf8632425fda7fecf98b28aa7c169c3c91db2368964f8d8b5c143f5f1710aa', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0035e7c3929651f1b7c1a8bba7d7ff734a1f31e1', 'value': 0.00089794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x015ec2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:08:10.000Z'}}, {'blockNum': '0x7f01f9', 'uniqueId': '0x0e5b80677d33f3a5631d8c045f1d854ae157ac4a2abda2f05a3dc80f715469e8:log:66', 'hash': '0x0e5b80677d33f3a5631d8c045f1d854ae157ac4a2abda2f05a3dc80f715469e8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x003656d5892c049a8079aeb0455164502db0d550', 'value': 0.06558432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6412e0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:08:32.000Z'}}, {'blockNum': '0x7f01fe', 'uniqueId': '0x144b8a84717a11063ec8821bec6f54598e91fb63da0150b294d090e22df3f115:log:31', 'hash': '0x144b8a84717a11063ec8821bec6f54598e91fb63da0150b294d090e22df3f115', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x003dd7051bd7b10beb092df05258b5b847b0c8fc', 'value': 0.00544291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x084e23', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:09:12.000Z'}}, {'blockNum': '0x7f01fe', 'uniqueId': '0x60453cfe5edd2b67687da090a960291427e839fab4c270af1628ef82a0f77a44:log:32', 'hash': '0x60453cfe5edd2b67687da090a960291427e839fab4c270af1628ef82a0f77a44', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00409b11db5b50907628818529262814ffd5dc59', 'value': 0.15921898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf2f2ea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:09:12.000Z'}}, {'blockNum': '0x7f01ff', 'uniqueId': '0x0c7e10960e62858c620278fbef54910feb003998992c1dba3660db46b2473c05:log:64', 'hash': '0x0c7e10960e62858c620278fbef54910feb003998992c1dba3660db46b2473c05', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x004251ec96a0b688cb93cc30b1ad79438ddea9fb', 'value': 0.32201592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01eb5b78', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:09:37.000Z'}}, {'blockNum': '0x7f01ff', 'uniqueId': '0xe51b7d0fdf5a8e9d74640cd395d5849362e4ba92e352fce47006284fdb533105:log:65', 'hash': '0xe51b7d0fdf5a8e9d74640cd395d5849362e4ba92e352fce47006284fdb533105', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x004beb16c4430325025772937639ae9965539db8', 'value': 0.06178533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5e46e5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:09:37.000Z'}}, {'blockNum': '0x7f0202', 'uniqueId': '0xfe1fa1cb5586e884f375988f77c7c1bc8b6a42af0f49127e240ac1297d7bb4a4:log:18', 'hash': '0xfe1fa1cb5586e884f375988f77c7c1bc8b6a42af0f49127e240ac1297d7bb4a4', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0056a0cdb437c3092e2e35d6038ccfebcd5774a6', 'value': 0.04935229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4b4e3d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:10:21.000Z'}}, {'blockNum': '0x7f0202', 'uniqueId': '0xcd47944c5a5ffe45e702107a65eaa3d8642af1154f1de3f433598e63ab96ffdd:log:19', 'hash': '0xcd47944c5a5ffe45e702107a65eaa3d8642af1154f1de3f433598e63ab96ffdd', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x006210354c9e93d3fd45335e09c8713231a937ef', 'value': 0.00044897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xaf61', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:10:21.000Z'}}, {'blockNum': '0x7f0202', 'uniqueId': '0xb16581939b677ddd0a7cbe08c0d8b2534375a41e8b79b5b53b2561b7e3a32ea3:log:20', 'hash': '0xb16581939b677ddd0a7cbe08c0d8b2534375a41e8b79b5b53b2561b7e3a32ea3', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00724362c779029818e60b99cb5f5be256d97157', 'value': 0.02282845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22d55d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:10:21.000Z'}}, {'blockNum': '0x7f0203', 'uniqueId': '0xbf4ce9827d7da57c8cec41a0f509bf576bf64dd38072910184797937e9c37183:log:110', 'hash': '0xbf4ce9827d7da57c8cec41a0f509bf576bf64dd38072910184797937e9c37183', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x007b042697fcf9c7631e566205903bb621270393', 'value': 0.03968214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3c8cd6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:10:48.000Z'}}, {'blockNum': '0x7f0203', 'uniqueId': '0x5f0dfb0d8928fce59da4d074fe74e3d0b377dd68f0fe2b94b035c29f585eeca4:log:111', 'hash': '0x5f0dfb0d8928fce59da4d074fe74e3d0b377dd68f0fe2b94b035c29f585eeca4', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00840c6ed146e52b15dc10c0a0eb6dec64178832', 'value': 0.14695171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe03b03', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:10:48.000Z'}}, {'blockNum': '0x7f0203', 'uniqueId': '0xc7107ad9287d74237dfa9c6622dd2a74e6b9f32d6adb21ab971bbdfd74b8ff7e:log:112', 'hash': '0xc7107ad9287d74237dfa9c6622dd2a74e6b9f32d6adb21ab971bbdfd74b8ff7e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00853d5e7ae5b909eebcc4cc0bdaa8e24b84d7aa', 'value': 0.00066309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010305', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:10:48.000Z'}}, {'blockNum': '0x7f020d', 'uniqueId': '0x8e6c85bca17221c1a156970d79bd09405c9f993ff9abd5267fa3a5927cb41c28:log:88', 'hash': '0x8e6c85bca17221c1a156970d79bd09405c9f993ff9abd5267fa3a5927cb41c28', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00870129b8a8176a2cf0855aef53367c0c34b56c', 'value': 0.02376093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x24419d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:12:47.000Z'}}, {'blockNum': '0x7f020d', 'uniqueId': '0x9d17d0561bbcd5e03168e7e4a1d122abd6124d0d6ec0cbee60a7486cc9ff279e:log:89', 'hash': '0x9d17d0561bbcd5e03168e7e4a1d122abd6124d0d6ec0cbee60a7486cc9ff279e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00974817dd40c0ac29c3979093e4a2cdb3816039', 'value': 0.00773611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0bcdeb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:12:47.000Z'}}, {'blockNum': '0x7f020d', 'uniqueId': '0x7f09052396912e39f3bad0629e86819221c1c1390cdd0d0631b4fa23d4fe9bbb:log:90', 'hash': '0x7f09052396912e39f3bad0629e86819221c1c1390cdd0d0631b4fa23d4fe9bbb', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x009a67b266874f06af2493bc9d35934b38209c81', 'value': 0.00093247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016c3f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:12:47.000Z'}}, {'blockNum': '0x7f020d', 'uniqueId': '0x5eaca7a692f8e1a6a6b5cdcd2fbeca293d72f08984f27eac8efab59f73bc7978:log:91', 'hash': '0x5eaca7a692f8e1a6a6b5cdcd2fbeca293d72f08984f27eac8efab59f73bc7978', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00a61bd92307339a28537f75c802c5448c11f2ab', 'value': 0.04192699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3ff9bb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:12:47.000Z'}}, {'blockNum': '0x7f020d', 'uniqueId': '0x8ae0784fead6e4eae53fb1db42339f11b0fccdadebc5a29e3219dd257d97ea32:log:92', 'hash': '0x8ae0784fead6e4eae53fb1db42339f11b0fccdadebc5a29e3219dd257d97ea32', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00a993ba2c49fc6f116ca00ee389b2f371b184e2', 'value': 0.00041443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa1e3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:12:47.000Z'}}, {'blockNum': '0x7f020d', 'uniqueId': '0xe2fe82362c582323117352da919e684000c41182f37c0b5cafa06bc2b51b9655:log:93', 'hash': '0xe2fe82362c582323117352da919e684000c41182f37c0b5cafa06bc2b51b9655', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00b860772c864807c0362dc77e7f968c94337ae3', 'value': 0.0368847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x384816', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:12:47.000Z'}}, {'blockNum': '0x7f020d', 'uniqueId': '0xb48632e7e17ffefe64e16d0f9429f2ca67a1db6afd78b46217d7f3eb844e8388:log:94', 'hash': '0xb48632e7e17ffefe64e16d0f9429f2ca67a1db6afd78b46217d7f3eb844e8388', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00bc8da53c76f5e52e2290f147fa2c24ca33aa98', 'value': 0.0139181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x153cc2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:12:47.000Z'}}, {'blockNum': '0x7f020d', 'uniqueId': '0x7c686f4f25be81b2b29b65eaf2a6950e3e77c3e18cf48168c7e6bca8c1bfb7f5:log:95', 'hash': '0x7c686f4f25be81b2b29b65eaf2a6950e3e77c3e18cf48168c7e6bca8c1bfb7f5', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00f8b1c7d29d500a054a74ad974ae714ed737767', 'value': 0.07104105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6c6669', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:12:47.000Z'}}, {'blockNum': '0x7f0211', 'uniqueId': '0xd28b7e0d399ce2c54a026e7c063bad5cfc425805c9a37514c60cc16e58be77c2:log:79', 'hash': '0xd28b7e0d399ce2c54a026e7c063bad5cfc425805c9a37514c60cc16e58be77c2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00a40b7a7fe72838450d502362aba539e1ca3471', 'value': 5.525e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1595', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:14:18.000Z'}}, {'blockNum': '0x7f0211', 'uniqueId': '0x17ce7f87212104fce0d4949a44cef9d44e8df77e1c1e1ba323a470a41ce644f0:log:80', 'hash': '0x17ce7f87212104fce0d4949a44cef9d44e8df77e1c1e1ba323a470a41ce644f0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00aa5267ead3a30d67b995e33d8559184b1d7371', 'value': 2.762e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:14:18.000Z'}}, {'blockNum': '0x7f0211', 'uniqueId': '0xfcc7502bcaf91e984aec89c9e5a8daa2404354cb6e69614121e30e82d34400ed:log:81', 'hash': '0xfcc7502bcaf91e984aec89c9e5a8daa2404354cb6e69614121e30e82d34400ed', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00bbafbdef6e353c976a5cdca7d3195684874e32', 'value': 0.09067835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8a5d3b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:14:18.000Z'}}, {'blockNum': '0x7f0211', 'uniqueId': '0x348412b3110b9605d2ba8174c423c613838ae0f19612e18346f584ada7cf82e4:log:82', 'hash': '0x348412b3110b9605d2ba8174c423c613838ae0f19612e18346f584ada7cf82e4', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00cc2e4bc95dd72fdb8287802ec91f63f0fc493e', 'value': 0.04306669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x41b6ed', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:14:18.000Z'}}, {'blockNum': '0x7f0211', 'uniqueId': '0x6cf7628911962069bdccde48fb91bac316772236a508d2033cef83e079b41aec:log:83', 'hash': '0x6cf7628911962069bdccde48fb91bac316772236a508d2033cef83e079b41aec', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00de0afaabe26327ef728dca3735b3b29b5fab97', 'value': 0.00069072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010dd0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:14:18.000Z'}}, {'blockNum': '0x7f0214', 'uniqueId': '0xa0b5642978e2952808f197415577b9863ed2738c0294cdbf7fa4697a81c1d190:log:22', 'hash': '0xa0b5642978e2952808f197415577b9863ed2738c0294cdbf7fa4697a81c1d190', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00e5764cd83a1335502bc4572f9cb67bd2dcb2d6', 'value': 0.00093938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016ef2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:14:44.000Z'}}, {'blockNum': '0x7f0215', 'uniqueId': '0x5568b81f2bce5daded669a27f1a5cb3bdb649cc4dd0b092c67c42b12a425d98e:log:101', 'hash': '0x5568b81f2bce5daded669a27f1a5cb3bdb649cc4dd0b092c67c42b12a425d98e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0107e0427a9eaa692bd0175c028e2f86f4c74929', 'value': 0.01699183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x19ed6f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:14:56.000Z'}}, {'blockNum': '0x7f0215', 'uniqueId': '0xf0548adc72b45ab67a53a1def1e5e9460808e9eba6bfd2b78a0d29b6a3cd216a:log:102', 'hash': '0xf0548adc72b45ab67a53a1def1e5e9460808e9eba6bfd2b78a0d29b6a3cd216a', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0191fb62a0341e9228f73bffa2f00a6b2f3ab6fd', 'value': 0.00051804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xca5c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:14:56.000Z'}}, {'blockNum': '0x7f021a', 'uniqueId': '0xa37d6b3194150a702de2ae507c36c987cac3ee64c1160db9ec4f54101e6ccb67:log:24', 'hash': '0xa37d6b3194150a702de2ae507c36c987cac3ee64c1160db9ec4f54101e6ccb67', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x1ecae6738d376f05f3643d9b80070509ae247908', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:16:11.000Z'}}, {'blockNum': '0x7f021c', 'uniqueId': '0x8c3f1643f6cfad10943b87dcd589192cb4eb05c2eefdccbbe7ba99f4fe6a6335:log:118', 'hash': '0x8c3f1643f6cfad10943b87dcd589192cb4eb05c2eefdccbbe7ba99f4fe6a6335', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x020eaf29a571702b690abcc7fb8f650f12c6fcb1', 'value': 0.01412532, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x158db4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:16:24.000Z'}}, {'blockNum': '0x7f021d', 'uniqueId': '0x6f8fb0a4ab15b602d9171300e772e8afd24e791753f1331d51486911f5f6f1e0:log:96', 'hash': '0x6f8fb0a4ab15b602d9171300e772e8afd24e791753f1331d51486911f5f6f1e0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0217dc6b1198af19ac90dfbdae60c45aadb30b02', 'value': 0.01813152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1baaa0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:16:45.000Z'}}, {'blockNum': '0x7f021d', 'uniqueId': '0xe7731709c1948745f9d98c0f322ba5bbc3f2e0fbd67985a3e8691064fd0e051b:log:97', 'hash': '0xe7731709c1948745f9d98c0f322ba5bbc3f2e0fbd67985a3e8691064fd0e051b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0245f13e3d3c4fb9ef086959ebcd3b969e4315f4', 'value': 0.00016577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x40c1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:16:45.000Z'}}, {'blockNum': '0x7f021d', 'uniqueId': '0x148112a839804a8b163ad4cba1f822eb023fe66488fd1f051b809e15dafe157a:log:98', 'hash': '0x148112a839804a8b163ad4cba1f822eb023fe66488fd1f051b809e15dafe157a', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0273b2e8abd4b2b54f8f233d179395b37b695ea2', 'value': 3.453e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d7d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:16:45.000Z'}}, {'blockNum': '0x7f021d', 'uniqueId': '0x1bbb2e02b8b5da9d9093116af4a4edddf023ef6ebb1ccc25ffcec1c28b965cfe:log:99', 'hash': '0x1bbb2e02b8b5da9d9093116af4a4edddf023ef6ebb1ccc25ffcec1c28b965cfe', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0277562d5d47af853a570d87fb5c813bc093d894', 'value': 0.01858049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1c5a01', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:16:45.000Z'}}, {'blockNum': '0x7f021d', 'uniqueId': '0x57357c1a20f3a1d22e3e20346ab3b82dbd7117be8a2ad71e001cfc0c666813ed:log:100', 'hash': '0x57357c1a20f3a1d22e3e20346ab3b82dbd7117be8a2ad71e001cfc0c666813ed', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x029d4980433d81cdcd8ba16f9bfc5edf9ccaf991', 'value': 0.03574501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x368ae5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:16:45.000Z'}}, {'blockNum': '0x7f021d', 'uniqueId': '0xb8667ad08c3e224ef3701d2b234acf25cf5913642eff82724ef8fb0d401b6948:log:101', 'hash': '0xb8667ad08c3e224ef3701d2b234acf25cf5913642eff82724ef8fb0d401b6948', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x02d4c1ed3fc0b471901ebb567bc88604c1c69671', 'value': 0.00080124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0138fc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:16:45.000Z'}}, {'blockNum': '0x7f021d', 'uniqueId': '0x25a8b6eb4fa13faa09dd716b4c722c76c98bcab9c4443df5fbacbb264c95e98f:log:102', 'hash': '0x25a8b6eb4fa13faa09dd716b4c722c76c98bcab9c4443df5fbacbb264c95e98f', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0315e9138ce0a4d69122e615482c799b2fdc89b0', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:16:45.000Z'}}, {'blockNum': '0x7f0225', 'uniqueId': '0x803b407587d55f63aefff8825fe2530965d8cdbd2c3c1de148938ac932f0009b:log:75', 'hash': '0x803b407587d55f63aefff8825fe2530965d8cdbd2c3c1de148938ac932f0009b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x034e46b6f6d0b0629773800912dfaa08534eeec6', 'value': 0.00566394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08a47a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:18:56.000Z'}}, {'blockNum': '0x7f0225', 'uniqueId': '0x98ae6df4d122d3b1784b8cc6091133bc55ad5667a8d221b3e05cea0b58a083c7:log:76', 'hash': '0x98ae6df4d122d3b1784b8cc6091133bc55ad5667a8d221b3e05cea0b58a083c7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x038f254f8318d3c91db657e594a55868bf51fd0c', 'value': 0.02990838, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2da2f6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:18:56.000Z'}}, {'blockNum': '0x7f0225', 'uniqueId': '0x936125bc4d16302447205116ad05bf68d373a2766c57616401fa9363fce0f274:log:77', 'hash': '0x936125bc4d16302447205116ad05bf68d373a2766c57616401fa9363fce0f274', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x03f936c185578d72c8449d9711f3d794e8e1f33a', 'value': 0.0210671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x202556', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:18:56.000Z'}}, {'blockNum': '0x7f0225', 'uniqueId': '0xcf669ebdc2d75cc497b6e414adb06ad03e3d023d6247e61131f7691604c5f40b:log:78', 'hash': '0xcf669ebdc2d75cc497b6e414adb06ad03e3d023d6247e61131f7691604c5f40b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x04869655186ab838078c942092da99fe1e990848', 'value': 0.00149196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0246cc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:18:56.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0x3be7df8167f7603a208d7fb3b34d3622a97c28812650057cf9d5db5d2dca74f3:log:53', 'hash': '0x3be7df8167f7603a208d7fb3b34d3622a97c28812650057cf9d5db5d2dca74f3', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x04c9720af269f4dfda36fcf64c4d0b856b061bcb', 'value': 0.00013814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x35f6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0x194c1e9dadb6a6035cc87a031305a5f259478a758e3d4da79f339d60a75f306c:log:54', 'hash': '0x194c1e9dadb6a6035cc87a031305a5f259478a758e3d4da79f339d60a75f306c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x04d4e1d345602ebcaf85dad0f85222641dd0ac5c', 'value': 0.00011051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2b2b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0xba9729a6bf555bcdfe6857bc270b0f68d5c3f6e88e71d73db24ab72349030cc7:log:55', 'hash': '0xba9729a6bf555bcdfe6857bc270b0f68d5c3f6e88e71d73db24ab72349030cc7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0554ebe00716a615ef98b4a5b2ac6d4c90656368', 'value': 0.05404921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5278f9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0x7b89e9e07b44e0f33df036b17ad9195381f4c213dd4372b5298e131d8f02c2d4:log:56', 'hash': '0x7b89e9e07b44e0f33df036b17ad9195381f4c213dd4372b5298e131d8f02c2d4', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0595f75ef4d10fa37571d8df3ce73f1310f65d75', 'value': 0.07798283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x76fe0b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0x83fcbee8759a2555d18aaa3a234574797291c3fbfaa8fe3f8fbe1b5c2f3eaf5e:log:57', 'hash': '0x83fcbee8759a2555d18aaa3a234574797291c3fbfaa8fe3f8fbe1b5c2f3eaf5e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x05a082d4a4ae72304cb0518eaf460fa474f00620', 'value': 0.00131237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0200a5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0x42648bd81f52bee2021acbc99f4e575a3889d55897f178b131dfaa21ea47968c:log:58', 'hash': '0x42648bd81f52bee2021acbc99f4e575a3889d55897f178b131dfaa21ea47968c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x05e87ab2823203c2329798af2219b201e594399d', 'value': 0.00037989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9465', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0x3124f7e94173800283279f0571a0987efdf8ec9e740d33ce0d5c35783e80c95e:log:59', 'hash': '0x3124f7e94173800283279f0571a0987efdf8ec9e740d33ce0d5c35783e80c95e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0602759e3fdb784e646c027602f1daa4edaa38b7', 'value': 0.25822748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x018a061c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0xcda104264e49de57a07e297f9f8bcf10f6adde6a6916909d75fe70c25af022c8:log:60', 'hash': '0xcda104264e49de57a07e297f9f8bcf10f6adde6a6916909d75fe70c25af022c8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x06562e95864e3331f7a1e19c58e1402c7a6033e6', 'value': 6.907e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1afb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0xc511a2943be523445178103e1105a15a82050ab9353a0140b333e31353a28ee4:log:61', 'hash': '0xc511a2943be523445178103e1105a15a82050ab9353a0140b333e31353a28ee4', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x068922166bbd43e6daa1a848bbdc2d7c8ae8efc9', 'value': 0.01381449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x151449', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0x9d14786d1538b7ffc38f4da3fcc8007dc131f484f8cfbe0f561d32a83a37374d:log:62', 'hash': '0x9d14786d1538b7ffc38f4da3fcc8007dc131f484f8cfbe0f561d32a83a37374d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x06c0836681faaf9e1a03fff989f77cdf54050510', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0x7ff923514f3ba484cfddc8986a3b04bca304887bfd973e4f82a8505c902bf31f:log:63', 'hash': '0x7ff923514f3ba484cfddc8986a3b04bca304887bfd973e4f82a8505c902bf31f', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x07167fde02c61c9039fb412809e9ca22d257df14', 'value': 0.32574583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01f10c77', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0x0e7434d03aa3d83b032e0cd3458c814af70b84b8ef6b895d125f5cf581c21a7c:log:64', 'hash': '0x0e7434d03aa3d83b032e0cd3458c814af70b84b8ef6b895d125f5cf581c21a7c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x07262c9307259b33df069e98a6c79feff28c8606', 'value': 0.02282845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22d55d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0xa21c9814f7a67d2f9d9321c956b0b76c3fa91c8c8bc836f2568d88d87b235863:log:65', 'hash': '0xa21c9814f7a67d2f9d9321c956b0b76c3fa91c8c8bc836f2568d88d87b235863', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x073941fdd0c525f5c0b571350d08f0091b49ab25', 'value': 0.0022932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x037fc8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0xea572a4eb08e1f3eb6c4f795afea6d037441709db98f2b14b34b543136f3b0cd:log:66', 'hash': '0xea572a4eb08e1f3eb6c4f795afea6d037441709db98f2b14b34b543136f3b0cd', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x075852ca2ad33943d2428aef6745883b8cb3c9a2', 'value': 0.09473291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x908d0b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0x9fa11332664f22c11c0cee1a22b822da3c260c2b0b6c5a09de308fa4f4c4d6c4:log:67', 'hash': '0x9fa11332664f22c11c0cee1a22b822da3c260c2b0b6c5a09de308fa4f4c4d6c4', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0776bb9fd604f8a2566b0505ead2c5626934ca07', 'value': 0.02963209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2d3709', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0x334f67f42bb86e80f6b11a87786f80848b4cdbc9d4e65fec065a32ba8b7a1a7b:log:68', 'hash': '0x334f67f42bb86e80f6b11a87786f80848b4cdbc9d4e65fec065a32ba8b7a1a7b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0796c6e1b6a63f0848549bde5c179c7441e41c2a', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0229', 'uniqueId': '0xf139fd6086f6d09d83de8f496aee95c1e09ceddc111a003d71bfc7607b6c65cc:log:64', 'hash': '0xf139fd6086f6d09d83de8f496aee95c1e09ceddc111a003d71bfc7607b6c65cc', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x07e0880e89e0dbaf096dbb703c0ed7461e6595b9', 'value': 0.02956302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2d1c0e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:20:25.000Z'}}, {'blockNum': '0x7f0229', 'uniqueId': '0x4a6966835a4a17913b1903189a49a732da93c69b2a73e8beb043cd83827f84d0:log:65', 'hash': '0x4a6966835a4a17913b1903189a49a732da93c69b2a73e8beb043cd83827f84d0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x07ef5af38213b58e79091bbaeee35a1a11de2d07', 'value': 0.04804682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x49504a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:20:25.000Z'}}, {'blockNum': '0x7f022a', 'uniqueId': '0x9c28c1b8b1f8277bd2f3734a3620592e601239ce4e97873856df1b7b768908e5:log:7', 'hash': '0x9c28c1b8b1f8277bd2f3734a3620592e601239ce4e97873856df1b7b768908e5', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x1ecae6738d376f05f3643d9b80070509ae247908', 'value': 6696.63034586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9beb06fcda', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:20:32.000Z'}}, {'blockNum': '0x7f022b', 'uniqueId': '0x1788599e2b6390645b6c22c155565ba9bae9299a10947803fa0189b8d0a3de1d:log:28', 'hash': '0x1788599e2b6390645b6c22c155565ba9bae9299a10947803fa0189b8d0a3de1d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x08114dd8ce26e7ad16faaf1101cc4a15d8f8afb7', 'value': 0.02037638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f1786', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:20:55.000Z'}}, {'blockNum': '0x7f022d', 'uniqueId': '0x9a10b65bc4cabef9e43121b14a95cc89f342c519a16c959afb55b5227f296dbb:log:27', 'hash': '0x9a10b65bc4cabef9e43121b14a95cc89f342c519a16c959afb55b5227f296dbb', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x08474b14e3e41be4fef57d25853f8f6f7e7a3179', 'value': 0.01011911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f70c7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:21:13.000Z'}}, {'blockNum': '0x7f022d', 'uniqueId': '0xc38899cb0c1ae5826c5fc6cad42fad7ac5e1eeb47db5adb1ad22e4f6e1cdc176:log:28', 'hash': '0xc38899cb0c1ae5826c5fc6cad42fad7ac5e1eeb47db5adb1ad22e4f6e1cdc176', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x08d57bc82b7d09e5b8a8129ed3275590b8dd4974', 'value': 0.00044897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xaf61', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:21:13.000Z'}}, {'blockNum': '0x7f022f', 'uniqueId': '0x855fb6924ccb10af6130c50270baa20295280d85933f4986a95380cc53ed280c:log:33', 'hash': '0x855fb6924ccb10af6130c50270baa20295280d85933f4986a95380cc53ed280c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x090650c4af0067e7f4894a65f6f4285b10852044', 'value': 0.01771709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b08bd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:21:25.000Z'}}, {'blockNum': '0x7f0233', 'uniqueId': '0xfc880a82d4b20610dc3bc07a65ca76ebea41e66d287097a351ed0b49b6666ec9:log:15', 'hash': '0xfc880a82d4b20610dc3bc07a65ca76ebea41e66d287097a351ed0b49b6666ec9', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x09540c0a4c21455ba2e1b7407154cc3cdf3977ed', 'value': 0.00099464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x018488', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:22:26.000Z'}}, {'blockNum': '0x7f0233', 'uniqueId': '0x18bef72df8ad74309ca8c58c8eda189d153a41f18ec02fa1bc745d37b1a55832:log:16', 'hash': '0x18bef72df8ad74309ca8c58c8eda189d153a41f18ec02fa1bc745d37b1a55832', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0985224a811e65c235dbf4a2c2117712aabe4e39', 'value': 0.0265929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2893da', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:22:26.000Z'}}, {'blockNum': '0x7f0233', 'uniqueId': '0x836e7438080bc7c4eb2effc1b74b44cebc7c1a4f445cedcc8690214c547dec73:log:17', 'hash': '0x836e7438080bc7c4eb2effc1b74b44cebc7c1a4f445cedcc8690214c547dec73', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x09903a26db6e4d3a39fe93976f7a2565df050264', 'value': 0.00127784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01f328', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:22:26.000Z'}}, {'blockNum': '0x7f0233', 'uniqueId': '0x24a2737ae5511b0999de35784ecc5e81f671d1652b6a7fae75b36afe5a7dc3f6:log:18', 'hash': '0x24a2737ae5511b0999de35784ecc5e81f671d1652b6a7fae75b36afe5a7dc3f6', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x09e57654ba3aa0e0e414b4058be3d95fafe5338a', 'value': 0.03115169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f88a1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:22:26.000Z'}}, {'blockNum': '0x7f0233', 'uniqueId': '0xc431717199fe44abe575bc378f82f5d69aa172b2c18ea860e0d272d7cdf8a7c8:log:19', 'hash': '0xc431717199fe44abe575bc378f82f5d69aa172b2c18ea860e0d272d7cdf8a7c8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x09d7b99caf2070947ee3e14bb5495c21f570753f', 'value': 0.00093938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016ef2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:22:26.000Z'}}, {'blockNum': '0x7f0237', 'uniqueId': '0x84435aee653b6214108b339fb413e63bed2143c6c275fadabd437fc6fda63f07:log:58', 'hash': '0x84435aee653b6214108b339fb413e63bed2143c6c275fadabd437fc6fda63f07', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x09e3ca09031b2f2539b08fc0c38ee145629086ff', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:23:18.000Z'}}, {'blockNum': '0x7f0237', 'uniqueId': '0x0346de91628c1526a65a188f1440540c039dc24e3d2ee92fd319996d5e3e12d3:log:62', 'hash': '0x0346de91628c1526a65a188f1440540c039dc24e3d2ee92fd319996d5e3e12d3', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x09e686fc83eb77085dfe7f7780af070db216d028', 'value': 0.03505428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x357d14', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:23:18.000Z'}}, {'blockNum': '0x7f0237', 'uniqueId': '0x49cfaec35e6e99eb546e0843ffa986cfd5d0df1a228652b3d5b5a268e18bc457:log:64', 'hash': '0x49cfaec35e6e99eb546e0843ffa986cfd5d0df1a228652b3d5b5a268e18bc457', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0a4dc4c36d31581d8f00b2a387502d5cfa7ed418', 'value': 0.0028665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x045fba', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:23:18.000Z'}}, {'blockNum': '0x7f023e', 'uniqueId': '0x540f0c6537accf8b1e27cac5c1e756bfddad893eae47104d076fc77dd4ace94d:log:72', 'hash': '0x540f0c6537accf8b1e27cac5c1e756bfddad893eae47104d076fc77dd4ace94d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0ac0dcdb561bda27bf53a65c252b2a6725badc77', 'value': 0.03417015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3423b7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:24:10.000Z'}}, {'blockNum': '0x7f023e', 'uniqueId': '0x14c976a3ca155ae942eac9e1e923c1cdfb806fa2a981b84ca85bd81edd274e24:log:73', 'hash': '0x14c976a3ca155ae942eac9e1e923c1cdfb806fa2a981b84ca85bd81edd274e24', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0b6504349a12b8c11ddbc63a000040091ee816aa', 'value': 0.22287618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01541502', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:24:10.000Z'}}, {'blockNum': '0x7f023e', 'uniqueId': '0x45590d9d4332cafc34171d076ad9c7de4d5c9bc74c2bb06c3af3dacdb023b3de:log:74', 'hash': '0x45590d9d4332cafc34171d076ad9c7de4d5c9bc74c2bb06c3af3dacdb023b3de', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0ca13dbd2402afeb272bb7d53fc16f0ef99f2af1', 'value': 2.762e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:24:10.000Z'}}, {'blockNum': '0x7f023e', 'uniqueId': '0xdc79c4692e5d5e522d5b012866d635d07388c5d9d6e34ebf51ccb978d5675012:log:75', 'hash': '0xdc79c4692e5d5e522d5b012866d635d07388c5d9d6e34ebf51ccb978d5675012', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0d397b54102f0817a7ca4f11bd6f7742709091ca', 'value': 0.00080124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0138fc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:24:10.000Z'}}, {'blockNum': '0x7f023e', 'uniqueId': '0xad2cb4ee5745c61c6dd90449a7f55abfe6746f9614178ecc62b74252a9410acc:log:76', 'hash': '0xad2cb4ee5745c61c6dd90449a7f55abfe6746f9614178ecc62b74252a9410acc', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0d94d655de331439da3ce40446815073ee07928a', 'value': 0.01609388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x188eac', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:24:10.000Z'}}, {'blockNum': '0x7f0241', 'uniqueId': '0xb1066455f1d29518319faa254fc73c8d47b73a650e28e4a016f33789dbc1607a:log:8', 'hash': '0xb1066455f1d29518319faa254fc73c8d47b73a650e28e4a016f33789dbc1607a', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0e670e84b6d11416a19602daa77d648fefd42aaa', 'value': 0.02783621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a7985', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:25:16.000Z'}}, {'blockNum': '0x7f0241', 'uniqueId': '0x77104b9879e776aae4307eba77abf9ad742e873332c289c9f49c76cae3308592:log:9', 'hash': '0x77104b9879e776aae4307eba77abf9ad742e873332c289c9f49c76cae3308592', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0e7e40d26ee8c46c91be14fa31676640c80e0cd3', 'value': 0.00085649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014e91', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:25:16.000Z'}}, {'blockNum': '0x7f0241', 'uniqueId': '0x71e3970bef18463c2f9b44d78e29a83c546e5794e97be44a6c56c89b4eac4d32:log:10', 'hash': '0x71e3970bef18463c2f9b44d78e29a83c546e5794e97be44a6c56c89b4eac4d32', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0ed735bbddc15660ec332a71e204a62f0dd9bc79', 'value': 6.907e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1afb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:25:16.000Z'}}, {'blockNum': '0x7f0241', 'uniqueId': '0x6af408f6ef1aed671457d41578caabe6d54281010469adf43f2900477917756d:log:11', 'hash': '0x6af408f6ef1aed671457d41578caabe6d54281010469adf43f2900477917756d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0f240a413d1660646da73c4312f4ee35497818d4', 'value': 0.50087911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02fc47e7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:25:16.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0xff02f632386ba20d0741fbc83d773341b56f5cc9ff63a75c15c26627b25fd699:log:64', 'hash': '0xff02f632386ba20d0741fbc83d773341b56f5cc9ff63a75c15c26627b25fd699', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0f3f4ae1701a1922f42c0c604af63c40a4debcb5', 'value': 0.02721455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2986af', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x461f414c2f4b4cf3d18fe5adba661b1361eefbc1709a883229dd0a83d0c0720b:log:65', 'hash': '0x461f414c2f4b4cf3d18fe5adba661b1361eefbc1709a883229dd0a83d0c0720b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0fa4a88d69a208da32daf11b14c616fe0f62f98a', 'value': 0.00052495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xcd0f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0xe2dc0939de3b0f1563ac94c36afcdc9c165be10fea8c1ddc380a331893334fb3:log:66', 'hash': '0xe2dc0939de3b0f1563ac94c36afcdc9c165be10fea8c1ddc380a331893334fb3', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0a3ab13cb3c25a3cbf69d4d138c55ee77bdb053b', 'value': 0.01022272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f9940', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x3cd304caa449a30055fef9f3d113e2f2eeabc59dfa4aaee59bce582256f3bd4b:log:67', 'hash': '0x3cd304caa449a30055fef9f3d113e2f2eeabc59dfa4aaee59bce582256f3bd4b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0a63113dc359dda6cf652cc2ff7437ecefdcb521', 'value': 0.12374335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbcd13f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0xd96ac3930b1fa62ed39676a9ab2be26875a05ed255675ef16e49c7ca03cb2c4d:log:68', 'hash': '0xd96ac3930b1fa62ed39676a9ab2be26875a05ed255675ef16e49c7ca03cb2c4d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0a6c7ee13a7ec57d69a434bb075afb215e02d993', 'value': 0.10170923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9b322b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x3c3892ccbfcd2294a54a88e6a41ada99158e13429d101d6c5e58785b738f639b:log:69', 'hash': '0x3c3892ccbfcd2294a54a88e6a41ada99158e13429d101d6c5e58785b738f639b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0bb52f9da12d67cfe84f33e11966f930c95e0eb5', 'value': 0.00035917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8c4d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x21b4b3792c3ad6a0de0769243efcc9fd01a9d89c674414458092a772e0bb1aa3:log:70', 'hash': '0x21b4b3792c3ad6a0de0769243efcc9fd01a9d89c674414458092a772e0bb1aa3', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0bd68cb43b188be181ebfd05b87374874858212d', 'value': 0.01958204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1de13c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0xab4ab88544acfb1ad4c252e6e5295a5e0d33c338801d1d6cfe6f2e34b2a471e8:log:71', 'hash': '0xab4ab88544acfb1ad4c252e6e5295a5e0d33c338801d1d6cfe6f2e34b2a471e8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0c4e79f15dfb621ad650977444d2e9486eab2464', 'value': 2.762e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0xf7bc0f9d4f238d83b2fae154b0ad87208b647e19de318abe889183da74ca4400:log:72', 'hash': '0xf7bc0f9d4f238d83b2fae154b0ad87208b647e19de318abe889183da74ca4400', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0cd7f81ff5b50841247e3ed224d6c50449bbeb1f', 'value': 0.0020031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x030e76', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x740c13dce00e7b7267ab01db891f35950e657e319231dda94e7e0c3553d2373d:log:73', 'hash': '0x740c13dce00e7b7267ab01db891f35950e657e319231dda94e7e0c3553d2373d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0d0fbaa8fb07ce1ef4b66362f67392aea2f7f50d', 'value': 0.05090642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4dad52', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x2524f2a89d816ca170e2aa27d169b5c5189788c9a00bc6926fa99424b993597d:log:74', 'hash': '0x2524f2a89d816ca170e2aa27d169b5c5189788c9a00bc6926fa99424b993597d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0d1e5bddb7be97189776024cb733b4a8d24ce1dd', 'value': 0.05529252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x545ea4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x7e7a136ce2a74a63716838c37875c4bbf58b2d8928cb03215335826b90f18095:log:75', 'hash': '0x7e7a136ce2a74a63716838c37875c4bbf58b2d8928cb03215335826b90f18095', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0d24c90bf19dcd4bf13c0ee0c8ae85bbabe64763', 'value': 0.00203763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031bf3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x2009acd2e5a1c748dbddd3865a3b75c3749212d223c95d49b07355034a1e72f5:log:76', 'hash': '0x2009acd2e5a1c748dbddd3865a3b75c3749212d223c95d49b07355034a1e72f5', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0e8713014daa08b2905e2152accdd35050a3cea6', 'value': 0.00110515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01afb3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x6181b9d5a20d057f7321eb8fb26ddcfbf8dc62c50eec6a307c4bfda19446c1ee:log:77', 'hash': '0x6181b9d5a20d057f7321eb8fb26ddcfbf8dc62c50eec6a307c4bfda19446c1ee', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0ee1f94f918f3ae97ce0489cee9da8546981e0b6', 'value': 0.0352615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x35ce06', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x992a552ec04384833d91a7b0c38078c98f19d59b17cc81dc04117aafb045fb66:log:78', 'hash': '0x992a552ec04384833d91a7b0c38078c98f19d59b17cc81dc04117aafb045fb66', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0f7936d68b2a2a13ab46b67feda2ff2d8d799ac0', 'value': 0.00107753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01a4e9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x1477dcf80159a4286ccb50da6e6b8c9e5502c84748d0a5516621d24659f4f6e2:log:79', 'hash': '0x1477dcf80159a4286ccb50da6e6b8c9e5502c84748d0a5516621d24659f4f6e2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0fbcf4bedafdbf47458c5fe896c53c5aa7947b8d', 'value': 5.525e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1595', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x525489ca044bea67e5721ec6f2cc7d63f5ddb0003c2c33117071bee341597823:log:80', 'hash': '0x525489ca044bea67e5721ec6f2cc7d63f5ddb0003c2c33117071bee341597823', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1024a4498390748d8c3a6797f7413a11aa2b87cd', 'value': 0.00135382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0210d6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x607fd4f44e23b0c1bbd42e4393a8d6b5e13430fc391d0d5bfdf52c31312cba33:log:81', 'hash': '0x607fd4f44e23b0c1bbd42e4393a8d6b5e13430fc391d0d5bfdf52c31312cba33', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x103e60e629aabb1a01e5bae0a88297f86f5d0630', 'value': 0.03222231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x312ad7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x397c29d5b71d439646e242803dcda8318e218aa75d28373a94124c96987a9ce9:log:82', 'hash': '0x397c29d5b71d439646e242803dcda8318e218aa75d28373a94124c96987a9ce9', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1073549bbc99bd77f14ce756a4e7d1d46b0a9704', 'value': 0.26727597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0197d4ad', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x7fbf7a06f2bb65118aae92d7781a8f53eb2fd017af40c21347e911f47a00719d:log:83', 'hash': '0x7fbf7a06f2bb65118aae92d7781a8f53eb2fd017af40c21347e911f47a00719d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x10911f3ec784dee1db1a9f7da90b7d8b935e58a0', 'value': 0.00013814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x35f6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0xa7656c775d4bbab471b55c1d085f8283b67c7a3e6f03996fabaa63c581d2ae96:log:84', 'hash': '0xa7656c775d4bbab471b55c1d085f8283b67c7a3e6f03996fabaa63c581d2ae96', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x10d96bc43dada41d6e6418618db4d6f703450485', 'value': 3.453e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d7d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x33c80749b967d9e446df4994304762c80deeea3a2bc107cfe1c879a53e77166d:log:85', 'hash': '0x33c80749b967d9e446df4994304762c80deeea3a2bc107cfe1c879a53e77166d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x10fb1b0fdbd357a06998fbb6cfa138742a97d998', 'value': 0.00100155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01873b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0xc78b81cfb4024e0bc8b3ca2fedfef4a562d8d9ff10d228c7741717335805e2d8:log:86', 'hash': '0xc78b81cfb4024e0bc8b3ca2fedfef4a562d8d9ff10d228c7741717335805e2d8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x10a65567fa70c517c6b47f4a71a7b5b82711c38b', 'value': 0.00587116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08f56c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x3dfd0a0bff8d7f98c24dddbc3e392b5bcc528573c4b56437447c2f7b86ff3aaa:log:88', 'hash': '0x3dfd0a0bff8d7f98c24dddbc3e392b5bcc528573c4b56437447c2f7b86ff3aaa', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x11b850b928b1bde3a53c268f469086d570dcfac7', 'value': 0.32084168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01e990c8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0xfe0c6fc4888a6c33a702dd82431cfdfd5564f8313a432d93c737ecb7af0773d3:log:89', 'hash': '0xfe0c6fc4888a6c33a702dd82431cfdfd5564f8313a432d93c737ecb7af0773d3', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x11fcc75af3cb8a326b0620839978794c03c08170', 'value': 0.10170923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9b322b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x87d14acda5d61aae67d24e0c3d1faab11df4d34f4514f423907704af870e2727:log:91', 'hash': '0x87d14acda5d61aae67d24e0c3d1faab11df4d34f4514f423907704af870e2727', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x11d3cffcc3d0426c9bc9ea7fa7ef280401b44b57', 'value': 0.00017268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4374', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x11cbf6ed7defa5b71445277fdb6ea2ce1d723174c2ad5655a7c49070f99a8498:log:92', 'hash': '0x11cbf6ed7defa5b71445277fdb6ea2ce1d723174c2ad5655a7c49070f99a8498', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x11d484fab9c282d3854e1f85b8af62d7b686d795', 'value': 0.43907996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x029dfb9c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0xd276b4fec022a480dced3c8883b4ee31342f011c44e111c8fe06fe32f0265954:log:94', 'hash': '0xd276b4fec022a480dced3c8883b4ee31342f011c44e111c8fe06fe32f0265954', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x11f44bb3b78f1565f70b743dd9c5a9c97bd608a4', 'value': 0.00292867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x047803', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0xceaa3407e7c4162e01ab3479634c66fad43444e9251be0393ba332deadb46012:log:95', 'hash': '0xceaa3407e7c4162e01ab3479634c66fad43444e9251be0393ba332deadb46012', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x120b3d8bc249a2c82d890c228b7cfd5acfc423da', 'value': 0.04866156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4a406c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x800065e55d0b7711099fac060ebe59c61b440ef1d7ec94023c2be8cedebfe505:log:96', 'hash': '0x800065e55d0b7711099fac060ebe59c61b440ef1d7ec94023c2be8cedebfe505', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x126f18515451e1500474dcb80658ab52f5678d7d', 'value': 0.01232943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12d02f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0246', 'uniqueId': '0xa4dfbff18604fa7f213cef0fdc438d2ffdaaacbd8f79beac64aed281bbd98fe1:log:48', 'hash': '0xa4dfbff18604fa7f213cef0fdc438d2ffdaaacbd8f79beac64aed281bbd98fe1', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x129caf775d8a4723fb368581107819f88d6c289e', 'value': 5.525e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1595', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:27:16.000Z'}}, {'blockNum': '0x7f0253', 'uniqueId': '0xcfacc3582c8d04d9f24ca90426234af012d2350991de724298d5235f32971f95:log:102', 'hash': '0xcfacc3582c8d04d9f24ca90426234af012d2350991de724298d5235f32971f95', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x12f12858c9b867d69968d24f4d7770e64e64aad7', 'value': 0.02921766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2c9526', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:29:43.000Z'}}, {'blockNum': '0x7f0253', 'uniqueId': '0x0364bfe415862c071f462b1255c5bc6f13fd5bde37959bed3b8885be6d6fcdff:log:103', 'hash': '0x0364bfe415862c071f462b1255c5bc6f13fd5bde37959bed3b8885be6d6fcdff', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x130de75bc4c5e7d6bac1d9ee05f81184d3941011', 'value': 0.05739923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x579593', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:29:43.000Z'}}, {'blockNum': '0x7f0253', 'uniqueId': '0xedd7058db350c19ddcd1ccf1fecdfa9d9869af0b33d0dbdf664cd257102ba40b:log:104', 'hash': '0xedd7058db350c19ddcd1ccf1fecdfa9d9869af0b33d0dbdf664cd257102ba40b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1324aad89aa0744eb398d25dbb1409e5e8a2a12c', 'value': 0.06339472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x60bb90', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:29:43.000Z'}}, {'blockNum': '0x7f0253', 'uniqueId': '0x6028c7f82923fb4fdaf976817dcb71aa760653b3fb566971f9c461039e02844b:log:105', 'hash': '0x6028c7f82923fb4fdaf976817dcb71aa760653b3fb566971f9c461039e02844b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1369247d0fb4e5778d7929027d32e879076a75e4', 'value': 5.525e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1595', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:29:43.000Z'}}, {'blockNum': '0x7f0253', 'uniqueId': '0xfbe6c7d0cf8dbaa5e3f4cec0514e986efde1a0774b97f8e1cf8b6ab5a2677411:log:106', 'hash': '0xfbe6c7d0cf8dbaa5e3f4cec0514e986efde1a0774b97f8e1cf8b6ab5a2677411', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x13766384bf34e8e3810c345d70c435177e54598b', 'value': 0.35993671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02253847', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:29:43.000Z'}}, {'blockNum': '0x7f0253', 'uniqueId': '0xdae0dc11cf5de061a2065f2ab82efd048b450500363b00513a8c4b761976c606:log:107', 'hash': '0xdae0dc11cf5de061a2065f2ab82efd048b450500363b00513a8c4b761976c606', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x13a58631b894e2f059d2146c2eae28898572b7d4', 'value': 6.907e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1afb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:29:43.000Z'}}, {'blockNum': '0x7f0253', 'uniqueId': '0x30a3e80f1795aad5114f76b70eb7c9cb11e9a3962ad4236078edf5ffc51705bd:log:108', 'hash': '0x30a3e80f1795aad5114f76b70eb7c9cb11e9a3962ad4236078edf5ffc51705bd', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1405568d505257fed075cce18d30cbb866de92cd', 'value': 0.26927907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x019ae323', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:29:43.000Z'}}, {'blockNum': '0x7f0253', 'uniqueId': '0xef5e57a68f8e5ea20e3f3403a8bd1b348cf40e037a477f1534cac4feaa3eca19:log:109', 'hash': '0xef5e57a68f8e5ea20e3f3403a8bd1b348cf40e037a477f1534cac4feaa3eca19', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x14156dde01d8abd2341b15d4284a5ec74e965343', 'value': 0.00113278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01ba7e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:29:43.000Z'}}, {'blockNum': '0x7f0253', 'uniqueId': '0xa7604050c610dd145a323d8c9a71bd8192e9256ecd3081830f796bf8756b2f87:log:110', 'hash': '0xa7604050c610dd145a323d8c9a71bd8192e9256ecd3081830f796bf8756b2f87', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x141abf9772b0887db1b5e3fc959594732b16bc3c', 'value': 2.762e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:29:43.000Z'}}, {'blockNum': '0x7f0253', 'uniqueId': '0xda84d0e1764fbed89b7f47eec8ece05c683edd107b8da5c41bf3cedd7e5fc1ad:log:111', 'hash': '0xda84d0e1764fbed89b7f47eec8ece05c683edd107b8da5c41bf3cedd7e5fc1ad', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1439648ff4815de902e4a66cf0cb8475260e4693', 'value': 0.0669036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x661638', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:29:43.000Z'}}, {'blockNum': '0x7f0256', 'uniqueId': '0x83fbca5f8b369f585367575fe1225e3a89baf1060a8b5530a01261a8dc12fb6c:log:23', 'hash': '0x83fbca5f8b369f585367575fe1225e3a89baf1060a8b5530a01261a8dc12fb6c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x144fa6874eb49595310d311b0c5aae390bc6ee6c', 'value': 0.05052652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4d18ec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:30:17.000Z'}}, {'blockNum': '0x7f0256', 'uniqueId': '0x2e069b676bc0fae0ed4378d20eea4360129e157ccc5dd774385300da7391b08b:log:24', 'hash': '0x2e069b676bc0fae0ed4378d20eea4360129e157ccc5dd774385300da7391b08b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1466e94cc3dcc19760bd880b77f3da194a83a5da', 'value': 0.00102227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x018f53', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:30:17.000Z'}}, {'blockNum': '0x7f0256', 'uniqueId': '0x8d96fad79a5bc19cd08c20fd9e21ed1c7bfb19b895bb9308c9119e1bec309a16:log:25', 'hash': '0x8d96fad79a5bc19cd08c20fd9e21ed1c7bfb19b895bb9308c9119e1bec309a16', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x14e725bb7325492fe87fe6904cf8853ad9fcae8c', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:30:17.000Z'}}, {'blockNum': '0x7f0256', 'uniqueId': '0x69ad94ee96a61b2431df18881b1d69f09e2a7f4716a5ee5b09ecb7be5262f193:log:26', 'hash': '0x69ad94ee96a61b2431df18881b1d69f09e2a7f4716a5ee5b09ecb7be5262f193', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x14deedc7ba39e2ada7abeb6eaaffb6d9bbca3994', 'value': 0.06752526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x67090e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:30:17.000Z'}}, {'blockNum': '0x7f025e', 'uniqueId': '0x4efce2e668f9eeca2c6bb5aab7de7a6eea592508d8e57fd642ceb26ce88b6878:log:30', 'hash': '0x4efce2e668f9eeca2c6bb5aab7de7a6eea592508d8e57fd642ceb26ce88b6878', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x15337c4662b4eb604488c870406311f09f59cf54', 'value': 0.03008106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2de66a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:31:25.000Z'}}, {'blockNum': '0x7f025e', 'uniqueId': '0x4e0704e5f3553279ab6f0578ba75ccc469264264d13b371df6d2f8d9858ef5f2:log:31', 'hash': '0x4e0704e5f3553279ab6f0578ba75ccc469264264d13b371df6d2f8d9858ef5f2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x158a89107038b56e2d3ef6822d950ad1dc69f682', 'value': 0.00134691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x020e23', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:31:25.000Z'}}, {'blockNum': '0x7f025e', 'uniqueId': '0x477f72430765c2922c40e74d3ecd4e7c8ad7b6f027091c11b9b27868e9e53c7e:log:32', 'hash': '0x477f72430765c2922c40e74d3ecd4e7c8ad7b6f027091c11b9b27868e9e53c7e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x15988ff3e61c00c592126287f16d7b7c10f0802a', 'value': 0.02424444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x24fe7c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:31:25.000Z'}}, {'blockNum': '0x7f025e', 'uniqueId': '0x9cce7a6abba8a4478d2a71fac298eeca703d350e793837ca02c6226e633a493a:log:33', 'hash': '0x9cce7a6abba8a4478d2a71fac298eeca703d350e793837ca02c6226e633a493a', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1598f5ad2eb5c1076548d434bac3d41ec0831a7a', 'value': 0.00310826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04be2a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:31:25.000Z'}}, {'blockNum': '0x7f0260', 'uniqueId': '0x94c60743c2a87b42324f662206e4ae4ec44aeea594f11bf026e911f553c039d2:log:34', 'hash': '0x94c60743c2a87b42324f662206e4ae4ec44aeea594f11bf026e911f553c039d2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x15f6f77a7d183b39c0008ccde18b8e7ffb3e96bb', 'value': 0.63826429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03cde9fd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:31:49.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x1bfc92d38830fc6ae8aa9c0ef930ad3d9cc4c1bbb5394c6529a26ca287775b20:log:134', 'hash': '0x1bfc92d38830fc6ae8aa9c0ef930ad3d9cc4c1bbb5394c6529a26ca287775b20', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x161712a2f0603c954666bd09ba405f5b25abe3fa', 'value': 0.00116041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01c549', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x9db42fc8c93b48c2aaa88b46928575357d6376cf00550397bc985cc70eecceca:log:135', 'hash': '0x9db42fc8c93b48c2aaa88b46928575357d6376cf00550397bc985cc70eecceca', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x162c28e126a97d0009158fbda0ca93e6e9cc13d0', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x39b3cf7f120272309f89384da2d1fd532f41b28bfa09c89b3b26a802213efb72:log:136', 'hash': '0x39b3cf7f120272309f89384da2d1fd532f41b28bfa09c89b3b26a802213efb72', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x16575bd7a7cdb324f7ba9ca1f95b3749a3cefbba', 'value': 0.03736821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3904f5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x7eae87a53627842836beea5c5ec6c3a11d579af2818d51342f66fe95fba71367:log:137', 'hash': '0x7eae87a53627842836beea5c5ec6c3a11d579af2818d51342f66fe95fba71367', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1683116fe2a64d89c1fa1a65448a468086b87f9a', 'value': 0.00020721, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x50f1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x723281e129636efc92ea59476a75144c0efdfa46be794019afff9440eea07a4d:log:138', 'hash': '0x723281e129636efc92ea59476a75144c0efdfa46be794019afff9440eea07a4d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x16c44978353dd9c66d0c70bc14ea8a2e1f7a33fc', 'value': 0.03294757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x324625', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x17de27c18a15bb076fbfc06dfa45c9a17e78d49d0d2e0a9956ff8b57ca1f48f0:log:139', 'hash': '0x17de27c18a15bb076fbfc06dfa45c9a17e78d49d0d2e0a9956ff8b57ca1f48f0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x16cb21d29c756442674bc1b61a401637b81e4678', 'value': 0.03515789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x35a58d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x733eb529467063147ab60f844998964047c5f3a53f2311f3daf6e0e2d09feb3c:log:140', 'hash': '0x733eb529467063147ab60f844998964047c5f3a53f2311f3daf6e0e2d09feb3c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x16f581b9600721071496aa7eac62c89d8aea5b09', 'value': 0.00041443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa1e3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x9540833c638d5fbb8ff4bcbe79c4255f83f01ae5110a89ed0fc7d134abe0ab67:log:141', 'hash': '0x9540833c638d5fbb8ff4bcbe79c4255f83f01ae5110a89ed0fc7d134abe0ab67', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1714ce55143faea9207318195b69cbd495fad12c', 'value': 0.0004835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbcde', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x06a3f1a061849fb869f12e51b48932c97198f619ca1380bf66fadf0033a3feac:log:142', 'hash': '0x06a3f1a061849fb869f12e51b48932c97198f619ca1380bf66fadf0033a3feac', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x171947991c12f203f100dbd3dae3fa7beb04061a', 'value': 0.02479702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25d656', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0xdc972b6e72976df87c4514e46c58a205ac88732280c1f67185287f9411f72924:log:143', 'hash': '0xdc972b6e72976df87c4514e46c58a205ac88732280c1f67185287f9411f72924', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x17252c18271dfad2dcf4fbaec09f15791b672bd5', 'value': 0.00080124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0138fc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0xa08017604c3a8129e1b0f62e304460ae01c5bd0908c5dd511e8829a0d4e23a37:log:144', 'hash': '0xa08017604c3a8129e1b0f62e304460ae01c5bd0908c5dd511e8829a0d4e23a37', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x173c2608295f96280d2296615be5441fca0775ce', 'value': 0.06516988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6370fc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x06ee0c34a22a17081854aa2a2598d8b3a6f132f0ad9a39e5d667e8c7958dcb7a:log:145', 'hash': '0x06ee0c34a22a17081854aa2a2598d8b3a6f132f0ad9a39e5d667e8c7958dcb7a', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x178baa54dfef10fbe5f61ab7e592c14a5d684edd', 'value': 0.00138144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x021ba0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0xa5caf15e00afc72f3d297a9208c52fcc50d57f60fd34d24d7311c703d1664040:log:146', 'hash': '0xa5caf15e00afc72f3d297a9208c52fcc50d57f60fd34d24d7311c703d1664040', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1793432e447e1e83b816a500eeba277401a59a57', 'value': 0.00022103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5657', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x66e9a63e986b12b950fbf55edc12d388dbb80ea7d2db8934f79267d09001809e:log:147', 'hash': '0x66e9a63e986b12b950fbf55edc12d388dbb80ea7d2db8934f79267d09001809e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x17baf7649ee1262883eccf598570b1cd202bebd6', 'value': 0.00276289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x043741', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x752f4a81204fb12509ac2161b2a4d91ffa0a9caedf97f5a6ee72df587dbacd60:log:148', 'hash': '0x752f4a81204fb12509ac2161b2a4d91ffa0a9caedf97f5a6ee72df587dbacd60', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x17bf906f3d523d6b49a8485a4d5720306969a6bc', 'value': 0.0557553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x55136a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0xea0bdc596c7051bc7d65d8a7051708ed6c90460bab1a365b8cb390cb41cc6516:log:149', 'hash': '0xea0bdc596c7051bc7d65d8a7051708ed6c90460bab1a365b8cb390cb41cc6516', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x17cad8a4a8b448e59e77539171b13c3858371491', 'value': 0.02776713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a5e89', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026d', 'uniqueId': '0xcedc5012291ccb15365244d80c7f051ee4de7b3659395ceca4db77050f3acd2c:log:44', 'hash': '0xcedc5012291ccb15365244d80c7f051ee4de7b3659395ceca4db77050f3acd2c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x182208d25cf3bb6d1bf168adda5b5076923e94a3', 'value': 0.00379898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05cbfa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:52.000Z'}}, {'blockNum': '0x7f0272', 'uniqueId': '0x2f741e3c8b1569ed58d016843f817fdf21d72826334c925dbec43b8d3ba1c9bc:log:55', 'hash': '0x2f741e3c8b1569ed58d016843f817fdf21d72826334c925dbec43b8d3ba1c9bc', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1844d3cc51b6ca1f7e8eaf64861574ae010fa757', 'value': 6.907e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1afb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:36:15.000Z'}}, {'blockNum': '0x7f0272', 'uniqueId': '0x16b0cba2bd6f3560ca8621564441ce0c3fa826e51ba1856abd7b7c578b542095:log:56', 'hash': '0x16b0cba2bd6f3560ca8621564441ce0c3fa826e51ba1856abd7b7c578b542095', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x18716fd9289726d4c8918cf3b0645463b6c00f49', 'value': 0.01357274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14b5da', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:36:15.000Z'}}, {'blockNum': '0x7f0272', 'uniqueId': '0x22aecc680547cfb943d44a85bc59725e88d16ed733a13bd066c91bc3ddc46913:log:57', 'hash': '0x22aecc680547cfb943d44a85bc59725e88d16ed733a13bd066c91bc3ddc46913', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x189fcef7101d6071c6d22167a9e1bcedba908277', 'value': 0.00027628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6bec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:36:15.000Z'}}, {'blockNum': '0x7f0272', 'uniqueId': '0x605da1cb618a33e25efbe01fd22a32853c6645226a44c59d5512800cd07fcf53:log:58', 'hash': '0x605da1cb618a33e25efbe01fd22a32853c6645226a44c59d5512800cd07fcf53', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x18b396f772ef19f062621927925be09ef9ba8737', 'value': 2.762e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:36:15.000Z'}}, {'blockNum': '0x7f0272', 'uniqueId': '0x548bfdf268dde43871c6ec1b24e95c34e31b9f146864505a92be81fe6ded4cc7:log:59', 'hash': '0x548bfdf268dde43871c6ec1b24e95c34e31b9f146864505a92be81fe6ded4cc7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x18d5601445061d31903052e368edb6535675c366', 'value': 0.00060783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xed6f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:36:15.000Z'}}, {'blockNum': '0x7f0272', 'uniqueId': '0x3a2f581d1124409c70513e6bab7f4c4c02fd37054cbe7b8ddb637513bf48946b:log:60', 'hash': '0x3a2f581d1124409c70513e6bab7f4c4c02fd37054cbe7b8ddb637513bf48946b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x18bea3e8441d32e9a2c8b780dda7fed6dddaff65', 'value': 0.00134691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x020e23', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:36:15.000Z'}}, {'blockNum': '0x7f0272', 'uniqueId': '0x3f46368542e67103a97648243c63aeee15687083800a072f26986c3e70ea3092:log:61', 'hash': '0x3f46368542e67103a97648243c63aeee15687083800a072f26986c3e70ea3092', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1932dbd2dbde34dd5eb8ce5b31ace8a0093ee4b2', 'value': 0.0600378, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5b9c44', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:36:15.000Z'}}, {'blockNum': '0x7f027e', 'uniqueId': '0x07780c3de618738d09947aa90215fbb9934f8627eaf3698c9f01a6be5abf94e0:log:21', 'hash': '0x07780c3de618738d09947aa90215fbb9934f8627eaf3698c9f01a6be5abf94e0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x19415ec85192a2d65fc80987d103802ce428d0e2', 'value': 0.04686568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4782e8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:38:23.000Z'}}, {'blockNum': '0x7f027e', 'uniqueId': '0x5faea7f0c5600e0ad14cf0761313992d042ca4810a608951cf18b92c806382c8:log:22', 'hash': '0x5faea7f0c5600e0ad14cf0761313992d042ca4810a608951cf18b92c806382c8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x19ee588256cfb969da322b2e4782d965b8e8341a', 'value': 0.00077361, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x012e31', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:38:23.000Z'}}, {'blockNum': '0x7f027e', 'uniqueId': '0xa3b971a1b3823e3c0154866770f0c193a947add10ad6ad0c591477e88f4e9dea:log:23', 'hash': '0xa3b971a1b3823e3c0154866770f0c193a947add10ad6ad0c591477e88f4e9dea', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x19c337192d0b6a023f28744aa8eaef7f83127928', 'value': 0.02217226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x21d50a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:38:23.000Z'}}, {'blockNum': '0x7f027e', 'uniqueId': '0xe6cea188d057952bf438544be13e291abe479c3c1a075682f471917c8ddb8105:log:24', 'hash': '0xe6cea188d057952bf438544be13e291abe479c3c1a075682f471917c8ddb8105', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x19c67d5758de7674ad681dd9412195d56dabf21e', 'value': 0.00033154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8182', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:38:23.000Z'}}, {'blockNum': '0x7f027e', 'uniqueId': '0x437c81810eda7e718e20e00c26289bcea3366a591f57b041bf6a88dc755f6ac7:log:25', 'hash': '0x437c81810eda7e718e20e00c26289bcea3366a591f57b041bf6a88dc755f6ac7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x19ee0a07fbcf87ee7f6fd8ce716c515abbbbe658', 'value': 0.01495419, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x16d17b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:38:23.000Z'}}, {'blockNum': '0x7f027e', 'uniqueId': '0xb17dbe343277abea63ac09f904018fe7211c86c138275c9f44f63a377f527eeb:log:26', 'hash': '0xb17dbe343277abea63ac09f904018fe7211c86c138275c9f44f63a377f527eeb', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1a1590da0b3273f52e817d87ce96962fda425418', 'value': 0.00055257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd7d9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:38:23.000Z'}}, {'blockNum': '0x7f027e', 'uniqueId': '0xb8cbdd805838ee91b14dbec9f8ab819cc9cf13c5b9f240fb9665cff078992328:log:27', 'hash': '0xb8cbdd805838ee91b14dbec9f8ab819cc9cf13c5b9f240fb9665cff078992328', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1a5765182a40f39ca39a74d1f1f509a702ab56a9', 'value': 0.06333946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x60a5fa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:38:23.000Z'}}, {'blockNum': '0x7f027f', 'uniqueId': '0x3f5ed50f98980124ceb739cc0fb67f31ffb6b3ec1572249a823133c0addd40de:log:85', 'hash': '0x3f5ed50f98980124ceb739cc0fb67f31ffb6b3ec1572249a823133c0addd40de', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1a7c9b496d72d97ff8c20cfcd6db050f7c6ceb10', 'value': 0.00027628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6bec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:38:51.000Z'}}, {'blockNum': '0x7f027f', 'uniqueId': '0x8ed7d52d0adf8b32a25012d85ab0843ed8aeaf49a308a5f69d2660b3a1cc80f7:log:86', 'hash': '0x8ed7d52d0adf8b32a25012d85ab0843ed8aeaf49a308a5f69d2660b3a1cc80f7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1ac54695617b986fef5513b541198fffd8c61cb8', 'value': 0.00085649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014e91', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:38:51.000Z'}}, {'blockNum': '0x7f0280', 'uniqueId': '0x5380bc4e71f786c9db3cad29cb0af48fc9d59c6700bff0c1b793c069721c3ab9:log:46', 'hash': '0x5380bc4e71f786c9db3cad29cb0af48fc9d59c6700bff0c1b793c069721c3ab9', 'from': '0x934f97ba727dbf2970f495ae17f6d7bad3a23102', 'to': '0x957866b394291c21b28cb173b73868157d8be75d', 'value': 243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05a8649300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:38:59.000Z'}}, {'blockNum': '0x7f0284', 'uniqueId': '0x534d892024eacf83a870dcf4e683819a253a1c1cc1bc3ecc45a829a3c9dd38d2:log:83', 'hash': '0x534d892024eacf83a870dcf4e683819a253a1c1cc1bc3ecc45a829a3c9dd38d2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1b2dfe388f3e3d59d142f1c7c94b1e4f5998e4cf', 'value': 0.00060783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xed6f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:40:47.000Z'}}, {'blockNum': '0x7f0284', 'uniqueId': '0x2cddba6e870e6a9fbb5957595698467f48cb439488220ca49fa8a91402fa79be:log:84', 'hash': '0x2cddba6e870e6a9fbb5957595698467f48cb439488220ca49fa8a91402fa79be', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1b302519fc30e42ca8b37c0ec32158fcf2f8d48f', 'value': 0.03184241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x309671', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:40:47.000Z'}}, {'blockNum': '0x7f0284', 'uniqueId': '0x43e33b0eb3ee23ee13d2a6da546bbf42c15d95d18ebe8ec0563befd8dc886af3:log:85', 'hash': '0x43e33b0eb3ee23ee13d2a6da546bbf42c15d95d18ebe8ec0563befd8dc886af3', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1b6b5c7dc3be0a390f434f01870d1228913ec3cd', 'value': 0.39630337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x025cb601', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:40:47.000Z'}}, {'blockNum': '0x7f0284', 'uniqueId': '0x2d7d00a4f48e5a771def4c6ad6db1ccb7ee1f62efcc74804054a3c271eb6201d:log:86', 'hash': '0x2d7d00a4f48e5a771def4c6ad6db1ccb7ee1f62efcc74804054a3c271eb6201d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1c3b4ebc14b51e149633eae8aafc3381b3afcfb4', 'value': 0.00116041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01c549', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:40:47.000Z'}}, {'blockNum': '0x7f0284', 'uniqueId': '0x083048ea7a1068e6f94fec51eaf40072998c9c4753dbdcbed5a76b21d1f347a6:log:89', 'hash': '0x083048ea7a1068e6f94fec51eaf40072998c9c4753dbdcbed5a76b21d1f347a6', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1c603667dc47fdd019af6f6f306caf01bdd2fb9f', 'value': 0.00100155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01873b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:40:47.000Z'}}, {'blockNum': '0x7f0284', 'uniqueId': '0x71349c0604a1d1ab8db6941fb1f4b32aedc2f5fcd6b5b3e937779d4b743a5864:log:98', 'hash': '0x71349c0604a1d1ab8db6941fb1f4b32aedc2f5fcd6b5b3e937779d4b743a5864', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1c8d2f8f64ddc032220481c111ee1ef845844102', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:40:47.000Z'}}, {'blockNum': '0x7f0284', 'uniqueId': '0xd46eaf5b69a791a8f9c181aa6e7a6047506b6a88d52cbe1396b78d0f789a5c84:log:99', 'hash': '0xd46eaf5b69a791a8f9c181aa6e7a6047506b6a88d52cbe1396b78d0f789a5c84', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1cc82585d00a49ad325771315a7cd4f2294ea1af', 'value': 0.03588315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x36c0db', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:40:47.000Z'}}, {'blockNum': '0x7f0284', 'uniqueId': '0xa885ae8baa2ea9b90f2b55593088b8487681d7c22f7e270e58b1ab2d6e7f2c92:log:100', 'hash': '0xa885ae8baa2ea9b90f2b55593088b8487681d7c22f7e270e58b1ab2d6e7f2c92', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1d649e3f11866c443b4272070b308f3325a7f8be', 'value': 0.10644069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa26a65', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:40:47.000Z'}}, {'blockNum': '0x7f0285', 'uniqueId': '0xcac18d75f023c14c64e6f5426325e240eed8b92ca0db38fecb40589045533892:log:113', 'hash': '0xcac18d75f023c14c64e6f5426325e240eed8b92ca0db38fecb40589045533892', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1dd8ae3102eec14c3c98611caf70e8c9453ea98f', 'value': 0.00189949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02e5fd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:41:23.000Z'}}, {'blockNum': '0x7f0285', 'uniqueId': '0x2275ca374c5a84e8ec37a397b27c478161550facb2696d5f8ce89062feb6f08a:log:114', 'hash': '0x2275ca374c5a84e8ec37a397b27c478161550facb2696d5f8ce89062feb6f08a', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1e2476533d0782d7018b2b8498f3f1123e208ddd', 'value': 0.32584944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01f134f0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:41:23.000Z'}}, {'blockNum': '0x7f0289', 'uniqueId': '0xe0f2c588ef06c934a6371c5180ea89cb0e7835f54beeb921272677f8a6255c52:log:5', 'hash': '0xe0f2c588ef06c934a6371c5180ea89cb0e7835f54beeb921272677f8a6255c52', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x000000000c7c9cbb8485c5e38c6c0da6a1017c1f', 'value': 0.00587333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08f645', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:41:46.000Z'}}, {'blockNum': '0x7f028a', 'uniqueId': '0xd3017640af7a60a0f05e2dc0a742d0fcd6cd33d55648c9cff94e5b5508796d24:log:87', 'hash': '0xd3017640af7a60a0f05e2dc0a742d0fcd6cd33d55648c9cff94e5b5508796d24', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x000000043dc3052d771845a71efc05b67f40abb4', 'value': 0.00885116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d817c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:42:07.000Z'}}, {'blockNum': '0x7f028a', 'uniqueId': '0x6802cdc352945a79fe4528b2de2af09a43ae7ab5b4762872922b19547519d70f:log:88', 'hash': '0x6802cdc352945a79fe4528b2de2af09a43ae7ab5b4762872922b19547519d70f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x000000e5e3f0831517a5fb8eeb00a2da21e49e94', 'value': 6.861e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1acd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:42:07.000Z'}}, {'blockNum': '0x7f028b', 'uniqueId': '0x81b141933e38e33a1e93249929256cf3037f465b393c98f52e9a9f981fa2f340:log:92', 'hash': '0x81b141933e38e33a1e93249929256cf3037f465b393c98f52e9a9f981fa2f340', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1f9522de481203fae4d50f5fe0f051ed37107336', 'value': 3.453e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d7d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:42:30.000Z'}}, {'blockNum': '0x7f028b', 'uniqueId': '0xfcd8c6e8d9ea3073d8db9a6a694e28094744790f7ed561f8b781596c20fc8bbe:log:93', 'hash': '0xfcd8c6e8d9ea3073d8db9a6a694e28094744790f7ed561f8b781596c20fc8bbe', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1a529dd8ee6bcd5a9fa53887048c5d7b3df8329c', 'value': 0.09065763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8a5523', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:42:30.000Z'}}, {'blockNum': '0x7f028b', 'uniqueId': '0x5db6a69417ddd032e800e855f838ed9fa992f3de381fbc59d9be35be8b026183:log:94', 'hash': '0x5db6a69417ddd032e800e855f838ed9fa992f3de381fbc59d9be35be8b026183', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1aadce023498f6d9e23230d86039f93f9dff4807', 'value': 0.12284541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbb727d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:42:30.000Z'}}, {'blockNum': '0x7f028b', 'uniqueId': '0x13d9c2de2ddb3d03d7d2b28dfbcbefd53acf487e8c60e83ee0becc895aef57ba:log:95', 'hash': '0x13d9c2de2ddb3d03d7d2b28dfbcbefd53acf487e8c60e83ee0becc895aef57ba', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1ac486bf81d83edb4b8780918d4525b01328ace0', 'value': 0.03522696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x35c088', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:42:30.000Z'}}, {'blockNum': '0x7f028b', 'uniqueId': '0xd41f171fd23097fbcee1e8acd58bac43bce1a8704b2f0ea5659b5d4b0ed5a5b2:log:96', 'hash': '0xd41f171fd23097fbcee1e8acd58bac43bce1a8704b2f0ea5659b5d4b0ed5a5b2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1b5d06c050066a2efc8546012bfbca75ea851c9e', 'value': 0.01208768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1271c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:42:30.000Z'}}, {'blockNum': '0x7f028b', 'uniqueId': '0xa760d5d3229fabe250ba4cece23a2e9896f477d161c9ec74a3e341e8fac86b77:log:97', 'hash': '0xa760d5d3229fabe250ba4cece23a2e9896f477d161c9ec74a3e341e8fac86b77', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1bad6578ca1e3b0a0a25326d8bd223126b8f3bc5', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:42:30.000Z'}}, {'blockNum': '0x7f028d', 'uniqueId': '0x162afec85f8a29438e85f849a2f0a2b9f497789b1bf11e7e60ac6e892a02d29f:log:26', 'hash': '0x162afec85f8a29438e85f849a2f0a2b9f497789b1bf11e7e60ac6e892a02d29f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x000500b81c9b361ed7d4daebc184029ec3b402f1', 'value': 0.00356791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0571b7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:43:38.000Z'}}, {'blockNum': '0x7f028d', 'uniqueId': '0x9922e23b03565cb7e378d2e62ea9ad4c1c920f68500fc4af4555b98d358e8b26:log:27', 'hash': '0x9922e23b03565cb7e378d2e62ea9ad4c1c920f68500fc4af4555b98d358e8b26', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0012e9a8424da6db3200711ffbe5e2c62bf91bbf', 'value': 0.01341397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1477d5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:43:38.000Z'}}, {'blockNum': '0x7f028d', 'uniqueId': '0x68b2406cda284cb49db4ffc924aefcfc644c8404f626683a02b88857115adf69:log:28', 'hash': '0x68b2406cda284cb49db4ffc924aefcfc644c8404f626683a02b88857115adf69', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0017ceed8eb8fc7977c55dce6b0dc3ffe8f4d184', 'value': 0.00679275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a5d6b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:43:38.000Z'}}, {'blockNum': '0x7f028d', 'uniqueId': '0xc08d26e4f831708634a56b39ae3f8049107999be17c95ed888e27d469f24aa72:log:29', 'hash': '0xc08d26e4f831708634a56b39ae3f8049107999be17c95ed888e27d469f24aa72', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0035e7c3929651f1b7c1a8bba7d7ff734a1f31e1', 'value': 0.00919423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0e077f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:43:38.000Z'}}, {'blockNum': '0x7f028d', 'uniqueId': '0xfc08ca1b1696944f9c2884a8954b901e96bb6d8bfbd9c9b62d42e6d460f0fe59:log:30', 'hash': '0xfc08ca1b1696944f9c2884a8954b901e96bb6d8bfbd9c9b62d42e6d460f0fe59', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x003656d5892c049a8079aeb0455164502db0d550', 'value': 0.00226425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x037479', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:43:38.000Z'}}, {'blockNum': '0x7f028d', 'uniqueId': '0x4f8719d7fb1c20b8eb51276d953fcb45bf83ea3b3a00f06d2bad64cf80341efd:log:31', 'hash': '0x4f8719d7fb1c20b8eb51276d953fcb45bf83ea3b3a00f06d2bad64cf80341efd', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x003dd7051bd7b10beb092df05258b5b847b0c8fc', 'value': 0.01520479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x17335f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:43:38.000Z'}}, {'blockNum': '0x7f028f', 'uniqueId': '0xdd8271caa6aaeadec269cbcec80769cc71a2dc688b5b0f0cf7530174719f0110:log:63', 'hash': '0xdd8271caa6aaeadec269cbcec80769cc71a2dc688b5b0f0cf7530174719f0110', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00409b11db5b50907628818529262814ffd5dc59', 'value': 0.02107812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2029a4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:43:48.000Z'}}, {'blockNum': '0x7f0292', 'uniqueId': '0x39d33e3c31dec5dd24f8d0ffbe58164066df7a018d2e8ba2082df0dc98558893:log:31', 'hash': '0x39d33e3c31dec5dd24f8d0ffbe58164066df7a018d2e8ba2082df0dc98558893', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1c24d08f685fd1da0fd99df05090ff3b53e911de', 'value': 0.01015365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f7e45', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:11.000Z'}}, {'blockNum': '0x7f0292', 'uniqueId': '0xe6c026e42f1655d7ecdd90d09f544e4d4c2145ea4c79512e32a81774edf9ea8b:log:32', 'hash': '0xe6c026e42f1655d7ecdd90d09f544e4d4c2145ea4c79512e32a81774edf9ea8b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1c57b30a08a0a748f8379a20f4decf3846343220', 'value': 0.00031082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x796a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:11.000Z'}}, {'blockNum': '0x7f0292', 'uniqueId': '0xa891823dece5833425a723825e80cccab8c9ac7efbd3ccf69b61cc50118078cf:log:33', 'hash': '0xa891823dece5833425a723825e80cccab8c9ac7efbd3ccf69b61cc50118078cf', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1c59d5fff9668e5b929a4d8f19cffd757281ad9e', 'value': 2.762e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:11.000Z'}}, {'blockNum': '0x7f0292', 'uniqueId': '0x3489153cf002933966d0b0eb4a35570d8ffdac4787f2f59718a50985f8cc16d3:log:34', 'hash': '0x3489153cf002933966d0b0eb4a35570d8ffdac4787f2f59718a50985f8cc16d3', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1c8af860d59430bfc32ca71c7d0d5a9395f83891', 'value': 0.0230702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2333cc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:11.000Z'}}, {'blockNum': '0x7f0292', 'uniqueId': '0x1d1b2b6639aeda328aba3aa73ec55ff362d6ff928dc28da4b275bc7ceeab8d9c:log:35', 'hash': '0x1d1b2b6639aeda328aba3aa73ec55ff362d6ff928dc28da4b275bc7ceeab8d9c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1c94886ff66e6e8f98cfa83215955c21d846efb5', 'value': 0.01122427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x11207b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:11.000Z'}}, {'blockNum': '0x7f0292', 'uniqueId': '0x950a11eb5e7fbe782812aa9695ac53adbbbcbc5e61ce62b27a486f3bf691e0c3:log:36', 'hash': '0x950a11eb5e7fbe782812aa9695ac53adbbbcbc5e61ce62b27a486f3bf691e0c3', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x004251ec96a0b688cb93cc30b1ad79438ddea9fb', 'value': 0.01066942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1047be', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:11.000Z'}}, {'blockNum': '0x7f0295', 'uniqueId': '0x44dd4a7a9cb91420f8d5176d41fdf48d7f0d90e012c42d98f58efb4c53fed9e8:log:49', 'hash': '0x44dd4a7a9cb91420f8d5176d41fdf48d7f0d90e012c42d98f58efb4c53fed9e8', 'from': '0x934f97ba727dbf2970f495ae17f6d7bad3a23102', 'to': '0x957866b394291c21b28cb173b73868157d8be75d', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:32.000Z'}}, {'blockNum': '0x7f0295', 'uniqueId': '0x484d25f9220eaa4435f9bb4378a4d66b455ad2a96e32aeed8db88ce9dab078d6:log:101', 'hash': '0x484d25f9220eaa4435f9bb4378a4d66b455ad2a96e32aeed8db88ce9dab078d6', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1d8779a176f4c8dbd75cb8b76c9a33187ca49a04', 'value': 0.0032464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04f420', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:32.000Z'}}, {'blockNum': '0x7f0295', 'uniqueId': '0xda0c3b01cd74932397791ca8ef665865c82b224b87d14131f3e9c897b0cac56c:log:102', 'hash': '0xda0c3b01cd74932397791ca8ef665865c82b224b87d14131f3e9c897b0cac56c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1d8cad94005380c26df415d3f3e8e8181e9a164c', 'value': 0.0001934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4b8c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:32.000Z'}}, {'blockNum': '0x7f0295', 'uniqueId': '0xa44391a6ef8cefe78296549b8a616d258e0fd0b715996092b5c5c7bf0a7ba9bc:log:103', 'hash': '0xa44391a6ef8cefe78296549b8a616d258e0fd0b715996092b5c5c7bf0a7ba9bc', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1db7f01cf9fafcdc5b8ef93337aa9091ac731d62', 'value': 0.53472463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x032feccf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:32.000Z'}}, {'blockNum': '0x7f0296', 'uniqueId': '0x4244c1b1a673ed83fea65fe73a121988cf611077a6444918b04f69e61e10fdb6:log:97', 'hash': '0x4244c1b1a673ed83fea65fe73a121988cf611077a6444918b04f69e61e10fdb6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0056a0cdb437c3092e2e35d6038ccfebcd5774a6', 'value': 0.0225739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2271ee', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:58.000Z'}}, {'blockNum': '0x7f0296', 'uniqueId': '0xf75958d3882332b789b16a83134e1776e18949c6be93900971304ae444635d5c:log:98', 'hash': '0xf75958d3882332b789b16a83134e1776e18949c6be93900971304ae444635d5c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00724362c779029818e60b99cb5f5be256d97157', 'value': 0.01036066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0fcf22', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:58.000Z'}}, {'blockNum': '0x7f0296', 'uniqueId': '0x61915f8830553d4daead55bdab48e3860e8bc5133d4402c091a6f35390d15797:log:99', 'hash': '0x61915f8830553d4daead55bdab48e3860e8bc5133d4402c091a6f35390d15797', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x007b042697fcf9c7631e566205903bb621270393', 'value': 0.08418898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x807652', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:58.000Z'}}, {'blockNum': '0x7f0296', 'uniqueId': '0xca1fcf4b20af5ed731dab3cb746c0db3c53dd415c937a317d9eeed263a90724b:log:100', 'hash': '0xca1fcf4b20af5ed731dab3cb746c0db3c53dd415c937a317d9eeed263a90724b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00840c6ed146e52b15dc10c0a0eb6dec64178832', 'value': 0.00408251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x063abb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:58.000Z'}}, {'blockNum': '0x7f0296', 'uniqueId': '0xdf599c961ebfbffa770b4a5d30e4139b5f35b6ea2118ecb67cf03ce60e7500ab:log:101', 'hash': '0xdf599c961ebfbffa770b4a5d30e4139b5f35b6ea2118ecb67cf03ce60e7500ab', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00853d5e7ae5b909eebcc4cc0bdaa8e24b84d7aa', 'value': 0.00038423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9617', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:58.000Z'}}, {'blockNum': '0x7f0296', 'uniqueId': '0x331a26b82e01faa1851cdc5637e43a6936ff9b80c4104934d91b541f8c3c20e5:log:102', 'hash': '0x331a26b82e01faa1851cdc5637e43a6936ff9b80c4104934d91b541f8c3c20e5', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00870129b8a8176a2cf0855aef53367c0c34b56c', 'value': 0.02137316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x209ce4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:58.000Z'}}, {'blockNum': '0x7f0299', 'uniqueId': '0xef6dee7fb06f0a6fbe87a9d1cc3ff1faa20face669c51217c438c9374142b17d:log:106', 'hash': '0xef6dee7fb06f0a6fbe87a9d1cc3ff1faa20face669c51217c438c9374142b17d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00974817dd40c0ac29c3979093e4a2cdb3816039', 'value': 0.0005489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd66a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:40.000Z'}}, {'blockNum': '0x7f0299', 'uniqueId': '0xbf39d4ea85d793232b994589ff8384f3ba15321394522fb3c72ec4a799b8c5d5:log:107', 'hash': '0xbf39d4ea85d793232b994589ff8384f3ba15321394522fb3c72ec4a799b8c5d5', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x009a67b266874f06af2493bc9d35934b38209c81', 'value': 0.01125264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x112b90', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:40.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x6e6662f5612f583cde79866c35f6fd1b8eed4d4971caf0f1596169b3a981a0a0:log:10', 'hash': '0x6e6662f5612f583cde79866c35f6fd1b8eed4d4971caf0f1596169b3a981a0a0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1f7cb6a67f0688ca6f2bcd57b23fdeab959e30ec', 'value': 0.00853045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d0435', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xe83610e727dc6b20f1fa9a522d92fbaeda7d53877dc289ee4c8b982661d05395:log:11', 'hash': '0xe83610e727dc6b20f1fa9a522d92fbaeda7d53877dc289ee4c8b982661d05395', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1fc44f21ba30d6dfb0595d281fcb9f4ae7756875', 'value': 0.14304911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xda468f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xbb8ad01f0e7d590ea2a85a5907f09e2f9e6b9ada138cd9d54f6e261ae9a09c80:log:12', 'hash': '0xbb8ad01f0e7d590ea2a85a5907f09e2f9e6b9ada138cd9d54f6e261ae9a09c80', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x205d9063450191cae5cb955cc754762ade8b17a4', 'value': 0.00063546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf83a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x9d91bf16c0a87e01adaad141d9fd87cfaf2086ee8dfafa6a9d1b76ab746c5a6b:log:13', 'hash': '0x9d91bf16c0a87e01adaad141d9fd87cfaf2086ee8dfafa6a9d1b76ab746c5a6b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x20ba0ed29b38f63cfe96193b1e85365821a7058a', 'value': 0.18729004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x011dc82c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xe5ca654ba7586331b2c587cf97b47a01f2c7560cd93a908705d6307d33578897:log:14', 'hash': '0xe5ca654ba7586331b2c587cf97b47a01f2c7560cd93a908705d6307d33578897', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x20f5c037c374098afc8e5c451f9ee7b97ed46f92', 'value': 0.21992678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014f94e6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xc7f4f31cd568e333ac333b99eabc7e0b613c2db5ef297ed9b656a11dc7b14710:log:15', 'hash': '0xc7f4f31cd568e333ac333b99eabc7e0b613c2db5ef297ed9b656a11dc7b14710', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x20f53ce559324b7859b34b5eed66df3a9886e2e2', 'value': 0.05796562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5872d2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xaa151381110a788c63cd6afc48b91513c9dbef3266a11db4e84270373330c0bc:log:16', 'hash': '0xaa151381110a788c63cd6afc48b91513c9dbef3266a11db4e84270373330c0bc', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x215eefa97889a0235135c65facfcce13d861ebb0', 'value': 0.00386805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05e6f5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x3652ba4ed831bb10b5a602d2ca59c4ac7306774f40d176aca5938e584bb4a645:log:17', 'hash': '0x3652ba4ed831bb10b5a602d2ca59c4ac7306774f40d176aca5938e584bb4a645', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2162634ca9755479b74f4f88d207242667f771ad', 'value': 0.06320132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x607004', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x458981056f72d519ecbf88462502514a2a81cd71afae7dfd62e0091cdbc60414:log:18', 'hash': '0x458981056f72d519ecbf88462502514a2a81cd71afae7dfd62e0091cdbc60414', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x218c59cdcd00e616b3e8281bb4956c5e55ed2a72', 'value': 0.37233522, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02382372', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x4539b83d52f4fa07936f1ea52b457331285a116a720400797d9147697f6f0cdd:log:19', 'hash': '0x4539b83d52f4fa07936f1ea52b457331285a116a720400797d9147697f6f0cdd', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x21bee34c6ecfb2d173246c850153d34ab6972c13', 'value': 0.03094447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f37af', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xa35c4df297675fbcbed5f612906fde634a4d424de7284c879990f28e4a3c8c3b:log:20', 'hash': '0xa35c4df297675fbcbed5f612906fde634a4d424de7284c879990f28e4a3c8c3b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x21ae694cc0e60ba2da6197b65ee72a5de1bb67a4', 'value': 0.00531858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x081d92', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xb02a32b1cfc39b561f33a5b83a53451b27d1d13fd747d6a677a97022c1a50572:log:21', 'hash': '0xb02a32b1cfc39b561f33a5b83a53451b27d1d13fd747d6a677a97022c1a50572', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x21d0d2216fd306803260abd43367dac2f36003b6', 'value': 0.14860944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe2c290', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x3206dc04d2af55a406c2ad3a3e37d232093de2efd0f53b0b6f49778cd7944e9d:log:22', 'hash': '0x3206dc04d2af55a406c2ad3a3e37d232093de2efd0f53b0b6f49778cd7944e9d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x220ba70e7ace7c799bfb643f148087e81a04c6de', 'value': 0.34242684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x020a807c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x55aa22acdcfc5496c96e990103a15a6cde01a0cd69558dde28f4939b6eebefb7:log:23', 'hash': '0x55aa22acdcfc5496c96e990103a15a6cde01a0cd69558dde28f4939b6eebefb7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x224835890c0f377366ab57ef2a1a6e0d53258afe', 'value': 0.00944911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0e6b0f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x629b9fcd48594b6096f4271e956a25637df0b65c8297734a5f6520967cb1ad87:log:24', 'hash': '0x629b9fcd48594b6096f4271e956a25637df0b65c8297734a5f6520967cb1ad87', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x22b521db01bf5da475fe8afaec000f7d05435947', 'value': 0.04047647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3dc31f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xb2ef83b6b05c8886f3323a73ee3659c2c527747828019ed094fa94aa1168add9:log:25', 'hash': '0xb2ef83b6b05c8886f3323a73ee3659c2c527747828019ed094fa94aa1168add9', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x22f247b071b697bf904b9f3fd7e2f28b352716d0', 'value': 0.00031082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x796a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x3fb11baa3b3a1a33519fb9306d161dc3e03df769224ff4d451da49b9e74a312f:log:26', 'hash': '0x3fb11baa3b3a1a33519fb9306d161dc3e03df769224ff4d451da49b9e74a312f', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x22f6799c9b10dfcff14da9a6d434810cddff7c72', 'value': 0.21585151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01495cff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xffc8930e1a5df3e94ff2455f2230c32bdcb57a71275951728bb0839ef8b49c6e:log:27', 'hash': '0xffc8930e1a5df3e94ff2455f2230c32bdcb57a71275951728bb0839ef8b49c6e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2305ab379e5bd340c35b6dafa9c2208402518f00', 'value': 0.02569496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x273518', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x2302ccf027f0d3b6a3456fec1c9757fd069e5f04eb47d6e38b733acc093ba947:log:28', 'hash': '0x2302ccf027f0d3b6a3456fec1c9757fd069e5f04eb47d6e38b733acc093ba947', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x231ec38d8a6e570d6f20b86eab76ef772256ae5b', 'value': 0.00013814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x35f6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xe4e5c82e5ded5355b34945541ffecfb870d31ef15a30c255f788cd00bacd9d2e:log:29', 'hash': '0xe4e5c82e5ded5355b34945541ffecfb870d31ef15a30c255f788cd00bacd9d2e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x232b2a2820ac4119f31960746e3403997612164c', 'value': 0.01882225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1cb871', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xb597f293f0407b89b748659f5490b728dc7b787b37b1804b0f8d95a041eaec7e:log:30', 'hash': '0xb597f293f0407b89b748659f5490b728dc7b787b37b1804b0f8d95a041eaec7e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2344cbbccd41759bd140cf7645bbec1dba9c05e0', 'value': 0.00049732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc244', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x1c66b3c16b3c0cbbdb7a9815d4218d563814a84a23df859634f7c2debf2189b1:log:31', 'hash': '0x1c66b3c16b3c0cbbdb7a9815d4218d563814a84a23df859634f7c2debf2189b1', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x234e4b988df2d1b1f20a3b947e591813e074b507', 'value': 0.00683817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a6f29', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xcd44b2264b3851e8dc87decc1879fc30a50440f7e98a49bd253cfc2ecddeb846:log:32', 'hash': '0xcd44b2264b3851e8dc87decc1879fc30a50440f7e98a49bd253cfc2ecddeb846', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x238062b9601fba8238b5642e69282607dff60dff', 'value': 0.01177685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x11f855', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xf312ad390129e449c309215dab422d1f7dd63b75693abcd850c1f0084b5684ac:log:33', 'hash': '0xf312ad390129e449c309215dab422d1f7dd63b75693abcd850c1f0084b5684ac', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x238e5c464bd4011bff06dc81fa3763f5ff0656fd', 'value': 0.13172122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc8fd9a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x44589dadc686a9b1d87e8a3b438eac9584b2134eb0466c3dae428e16ae2db1dc:log:34', 'hash': '0x44589dadc686a9b1d87e8a3b438eac9584b2134eb0466c3dae428e16ae2db1dc', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x239bdf8e418068babb4073f1b34c4d9e3309096d', 'value': 0.35921145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02241cf9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x941414d176f770c2aaaafa2a3744f90dfb4b16e9bff697583e22bb6eb6879546:log:35', 'hash': '0x941414d176f770c2aaaafa2a3744f90dfb4b16e9bff697583e22bb6eb6879546', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x23cb4612432fcfffee616c83c0ad90422d633103', 'value': 0.05663943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x566cc7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029d', 'uniqueId': '0xdb8bfc9cea3712e1a85a73da6f55c41f84acc6a0e56176a081fb93673cd83ff1:log:24', 'hash': '0xdb8bfc9cea3712e1a85a73da6f55c41f84acc6a0e56176a081fb93673cd83ff1', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00b860772c864807c0362dc77e7f968c94337ae3', 'value': 0.00967452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ec31c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:46:11.000Z'}}, {'blockNum': '0x7f029d', 'uniqueId': '0x401e91499eb22b94f18579b33e88dd5eba1df4f7f88de29b1023e5a62b6c4f8b:log:25', 'hash': '0x401e91499eb22b94f18579b33e88dd5eba1df4f7f88de29b1023e5a62b6c4f8b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00bc8da53c76f5e52e2290f147fa2c24ca33aa98', 'value': 0.02902358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2c4956', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:46:11.000Z'}}, {'blockNum': '0x7f029d', 'uniqueId': '0x1192bbcc6d35f1d644127a6955e090a362892e189faebffe1e5f45f4656ab66c:log:26', 'hash': '0x1192bbcc6d35f1d644127a6955e090a362892e189faebffe1e5f45f4656ab66c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00f8b1c7d29d500a054a74ad974ae714ed737767', 'value': 0.00600369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x092931', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:46:11.000Z'}}, {'blockNum': '0x7f02a4', 'uniqueId': '0x5085660e09fe75dc44147ce5b5853f57d0cfe08982ed112c5e7aa3295050df59:log:53', 'hash': '0x5085660e09fe75dc44147ce5b5853f57d0cfe08982ed112c5e7aa3295050df59', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x23dfbc4c028c072df5706492fc09dc85a91fde1d', 'value': 0.12564284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbfb73c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:03.000Z'}}, {'blockNum': '0x7f02a4', 'uniqueId': '0x9d23ca936999c077b7369d1df12d36e79429717a1a7d207f39dee090deeff177:log:54', 'hash': '0x9d23ca936999c077b7369d1df12d36e79429717a1a7d207f39dee090deeff177', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x242fc9a0f065d4664483c592372783514ca88e0e', 'value': 0.00116041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01c549', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:03.000Z'}}, {'blockNum': '0x7f02a4', 'uniqueId': '0x784eb9e59c63e79be503144fcca6f6abae2925182b5bd56c2d983b36ad80f061:log:55', 'hash': '0x784eb9e59c63e79be503144fcca6f6abae2925182b5bd56c2d983b36ad80f061', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x24cfaf6ad0fb977fead1f1205601d55502ef6b98', 'value': 0.09376589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8f134d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:03.000Z'}}, {'blockNum': '0x7f02a9', 'uniqueId': '0xb049b1e1a597595e49b7549c621b72f3c59d196231265cb6d5da90f4d41e84ce:log:14', 'hash': '0xb049b1e1a597595e49b7549c621b72f3c59d196231265cb6d5da90f4d41e84ce', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00a40b7a7fe72838450d502362aba539e1ca3471', 'value': 0.0009057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0161ca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:12.000Z'}}, {'blockNum': '0x7f02a9', 'uniqueId': '0xc26f63d1f399c54281762ff077f0f05f16dad1d0e4f5c96f37bbcde36b06a275:log:15', 'hash': '0xc26f63d1f399c54281762ff077f0f05f16dad1d0e4f5c96f37bbcde36b06a275', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00aa5267ead3a30d67b995e33d8559184b1d7371', 'value': 0.00376002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05bcc2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:12.000Z'}}, {'blockNum': '0x7f02a9', 'uniqueId': '0x7c23c858076547bf37288c0144c8cd7cf6d0ed8c7d6c41718d63788dc736300a:log:16', 'hash': '0x7c23c858076547bf37288c0144c8cd7cf6d0ed8c7d6c41718d63788dc736300a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00bbafbdef6e353c976a5cdca7d3195684874e32', 'value': 0.00458339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06fe63', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:12.000Z'}}, {'blockNum': '0x7f02a9', 'uniqueId': '0x9e2a6b98e9857f3fe39eca7fa467395a45eef623420f18691c816b7200c7e5a3:log:17', 'hash': '0x9e2a6b98e9857f3fe39eca7fa467395a45eef623420f18691c816b7200c7e5a3', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00cc2e4bc95dd72fdb8287802ec91f63f0fc493e', 'value': 0.00981175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ef8b7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:12.000Z'}}, {'blockNum': '0x7f02a9', 'uniqueId': '0x8c43701c5c599e21a08074c90ab0e62557c6bdb024a972cf29dfef8319c81e05:log:18', 'hash': '0x8c43701c5c599e21a08074c90ab0e62557c6bdb024a972cf29dfef8319c81e05', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2632b0a88efdd5bb9039d3721dc38606cdf495db', 'value': 0.03166973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3052fd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:12.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x93d50b2037f7340f6820912172646a074f4574d4ad9b7ad31a210a8153d9b42d:log:29', 'hash': '0x93d50b2037f7340f6820912172646a074f4574d4ad9b7ad31a210a8153d9b42d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00e5764cd83a1335502bc4572f9cb67bd2dcb2d6', 'value': 0.00510485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07ca15', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x4f79b595f0a67dc7a142de189c274fd790932271efbdfeb41b3e3bff888e13d3:log:30', 'hash': '0x4f79b595f0a67dc7a142de189c274fd790932271efbdfeb41b3e3bff888e13d3', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0107e0427a9eaa692bd0175c028e2f86f4c74929', 'value': 0.01725634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1a54c2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x67b0ea58ff0237da48d1a8784f427c1b19dce703c64048f6f6e9dd1cac1c291b:log:31', 'hash': '0x67b0ea58ff0237da48d1a8784f427c1b19dce703c64048f6f6e9dd1cac1c291b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0191fb62a0341e9228f73bffa2f00a6b2f3ab6fd', 'value': 0.00734166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b33d6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0xfea033258f9ba77fd34d66e8566b98455f02763cc89a6001837757e599aa6499:log:32', 'hash': '0xfea033258f9ba77fd34d66e8566b98455f02763cc89a6001837757e599aa6499', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0217dc6b1198af19ac90dfbdae60c45aadb30b02', 'value': 0.00332776, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0513e8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0xed6bb8e5b40b24332e7f2d05d00c0a49fd3a97fef78e55e0dfcdd6e974171027:log:33', 'hash': '0xed6bb8e5b40b24332e7f2d05d00c0a49fd3a97fef78e55e0dfcdd6e974171027', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0273b2e8abd4b2b54f8f233d179395b37b695ea2', 'value': 0.00727305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b1909', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x30ff40b11896b940198a39088155bd911ff7b8866278850b16efa6343a58dc12:log:34', 'hash': '0x30ff40b11896b940198a39088155bd911ff7b8866278850b16efa6343a58dc12', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0277562d5d47af853a570d87fb5c813bc093d894', 'value': 0.02103009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2016e1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x010e14ac90cde5a6185f25a15049d7e81f97734fe47bb88eb3106004a56250ab:log:35', 'hash': '0x010e14ac90cde5a6185f25a15049d7e81f97734fe47bb88eb3106004a56250ab', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x029334b8092db57006c4e1c7e62468093bccba1d', 'value': 0.00099489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0184a1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0xc55afefe2291bbc85738059215718c986372f4860ad5a9b0a80e0f8d2b710e3e:log:36', 'hash': '0xc55afefe2291bbc85738059215718c986372f4860ad5a9b0a80e0f8d2b710e3e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x029d4980433d81cdcd8ba16f9bfc5edf9ccaf991', 'value': 0.02583305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x276b09', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0xc16c24253b1303b5994e745701ce0e11218c5676a835f8fe9de1feb765790339:log:37', 'hash': '0xc16c24253b1303b5994e745701ce0e11218c5676a835f8fe9de1feb765790339', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x02b80aff403c79ddf0c57ea755e174c8d9b7111c', 'value': 5.489e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1571', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0xf3385bb95ecee8d771504a21d7d9c779a1d65522cc48cbe2d18ad9c9082e9b7f:log:38', 'hash': '0xf3385bb95ecee8d771504a21d7d9c779a1d65522cc48cbe2d18ad9c9082e9b7f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x02d4c1ed3fc0b471901ebb567bc88604c1c69671', 'value': 0.00145461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x023835', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0xfc86a8f5ba32598616d96b56827b2aa0e39e1d5c15c40dec4aec50622a3d62e4:log:39', 'hash': '0xfc86a8f5ba32598616d96b56827b2aa0e39e1d5c15c40dec4aec50622a3d62e4', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0315e9138ce0a4d69122e615482c799b2fdc89b0', 'value': 0.00559201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x088861', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0xf3a3e5de37a48c5fc5128ed78d42ac2a0b8ccd51e01d47e372f58c8b7a280acf:log:40', 'hash': '0xf3a3e5de37a48c5fc5128ed78d42ac2a0b8ccd51e01d47e372f58c8b7a280acf', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x034e46b6f6d0b0629773800912dfaa08534eeec6', 'value': 0.00804152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c4538', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x71789c59ab7bb620c154b8f214c6d03b2781cbe36fdeb0c897729cbc285f3542:log:41', 'hash': '0x71789c59ab7bb620c154b8f214c6d03b2781cbe36fdeb0c897729cbc285f3542', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0353fa047271be2f6d34e301b5293ad156f42035', 'value': 0.04646518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x46e676', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x1a1a8dbe1328923a7a3dd337220df37982132dd3f1caf2650a29a5c6dbe88e36:log:42', 'hash': '0x1a1a8dbe1328923a7a3dd337220df37982132dd3f1caf2650a29a5c6dbe88e36', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x038f254f8318d3c91db657e594a55868bf51fd0c', 'value': 0.0055577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x087afa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x5885e364cc887df0044a419a0f00e704101cb988a86cd03d69e2fd627a0a516b:log:43', 'hash': '0x5885e364cc887df0044a419a0f00e704101cb988a86cd03d69e2fd627a0a516b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x03f936c185578d72c8449d9711f3d794e8e1f33a', 'value': 0.00871393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d4be1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0xdfada80e87efced079759447f778b3509c08c7ebb2aecc4b967e2f921ccb2b94:log:44', 'hash': '0xdfada80e87efced079759447f778b3509c08c7ebb2aecc4b967e2f921ccb2b94', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x04869655186ab838078c942092da99fe1e990848', 'value': 5.489e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1571', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x95ef14369fc998c78fbb0e474d6cbb31d7db484352cf5e83c2098ce49797b211:log:45', 'hash': '0x95ef14369fc998c78fbb0e474d6cbb31d7db484352cf5e83c2098ce49797b211', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x04c9720af269f4dfda36fcf64c4d0b856b061bcb', 'value': 0.02994987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2db32b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x0c5b8017b88860d73c8fddec2154de3a4efacc2934e2ff6625190e33bc267df9:log:46', 'hash': '0x0c5b8017b88860d73c8fddec2154de3a4efacc2934e2ff6625190e33bc267df9', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x04d4e1d345602ebcaf85dad0f85222641dd0ac5c', 'value': 0.00365024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0591e0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x18920bd50dd10f772b0abcbf78571c3ba18098fe64f34876eb1bfb22d769bb53:log:47', 'hash': '0x18920bd50dd10f772b0abcbf78571c3ba18098fe64f34876eb1bfb22d769bb53', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0554ebe00716a615ef98b4a5b2ac6d4c90656368', 'value': 0.00397959, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x061287', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0xd224d44287429d30dd96cdf3ce50ca39142d0bd202b16a3318fd4ded2aba4be1:log:48', 'hash': '0xd224d44287429d30dd96cdf3ce50ca39142d0bd202b16a3318fd4ded2aba4be1', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0595f75ef4d10fa37571d8df3ce73f1310f65d75', 'value': 0.0261075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x27d63e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x1f2fbc9d528d23f69d328eb0396ba7c9e7d16910258a70e152631815995f5e36:log:49', 'hash': '0x1f2fbc9d528d23f69d328eb0396ba7c9e7d16910258a70e152631815995f5e36', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x05a082d4a4ae72304cb0518eaf460fa474f00620', 'value': 0.01694757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x19dc25', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ae', 'uniqueId': '0x36fd0ed5ce82f52276e7e940f90a13e5ab7ce69ccb5917c78b83ed426c6bf44d:log:49', 'hash': '0x36fd0ed5ce82f52276e7e940f90a13e5ab7ce69ccb5917c78b83ed426c6bf44d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x05e87ab2823203c2329798af2219b201e594399d', 'value': 0.00617523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x096c33', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:08.000Z'}}, {'blockNum': '0x7f02ae', 'uniqueId': '0xd761ae58b3791f5fad5dda9692a9b1ff7943c9d49304c8ab54c8553f24446492:log:50', 'hash': '0xd761ae58b3791f5fad5dda9692a9b1ff7943c9d49304c8ab54c8553f24446492', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0602759e3fdb784e646c027602f1daa4edaa38b7', 'value': 0.01694757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x19dc25', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:08.000Z'}}, {'blockNum': '0x7f02ae', 'uniqueId': '0xf5c3e24738cca095e75f3be326fc957ab0fbf2d51fb71fab52472630acf4457d:log:51', 'hash': '0xf5c3e24738cca095e75f3be326fc957ab0fbf2d51fb71fab52472630acf4457d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x068922166bbd43e6daa1a848bbdc2d7c8ae8efc9', 'value': 0.06298735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x601c6f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:08.000Z'}}, {'blockNum': '0x7f02ae', 'uniqueId': '0xe502b8817f95ace84efa1f621a04d811adb87f1a3214ad97d75ff23adac3ceb5:log:52', 'hash': '0xe502b8817f95ace84efa1f621a04d811adb87f1a3214ad97d75ff23adac3ceb5', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x06c0836681faaf9e1a03fff989f77cdf54050510', 'value': 0.021579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x20ed4c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:08.000Z'}}, {'blockNum': '0x7f02ae', 'uniqueId': '0x8f5bb8cfeca16dea0dfb2f7060adfa52d3dd17a7d40537e80c6acbb592398643:log:53', 'hash': '0x8f5bb8cfeca16dea0dfb2f7060adfa52d3dd17a7d40537e80c6acbb592398643', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x07167fde02c61c9039fb412809e9ca22d257df14', 'value': 0.00988037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f1385', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:08.000Z'}}, {'blockNum': '0x7f02ae', 'uniqueId': '0x182fcf8f4c05de40d123740a055487a1ca8892b86775f654c0bfafc5fff91ed3:log:54', 'hash': '0x182fcf8f4c05de40d123740a055487a1ca8892b86775f654c0bfafc5fff91ed3', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x263eaa960e8e961bb530e3b2a50adcef68c6600d', 'value': 0.02293206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22fdd6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:08.000Z'}}, {'blockNum': '0x7f02ae', 'uniqueId': '0x4c4c7c0a2f92eb0f37577204e7c9923ac8b801e57afee36abd68b9ceb0f6fe8e:log:55', 'hash': '0x4c4c7c0a2f92eb0f37577204e7c9923ac8b801e57afee36abd68b9ceb0f6fe8e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x26407009be8dd15d90a2014264042f75f549c75d', 'value': 0.02863054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2bafce', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:08.000Z'}}, {'blockNum': '0x7f02ae', 'uniqueId': '0xd3673e0c90f4b9cb4ed9e4e6406c4e79b2529d99cc5788e5a44eaabc4bc27d40:log:56', 'hash': '0xd3673e0c90f4b9cb4ed9e4e6406c4e79b2529d99cc5788e5a44eaabc4bc27d40', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2673f2cab5397d41ec8b69a6f0159d53e051cdcb', 'value': 2.762e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:08.000Z'}}, {'blockNum': '0x7f02af', 'uniqueId': '0x07480cf71ad13fce0e7ffbd8c45ef80a9aa4771a980f77c8cce88af0afab5061:log:89', 'hash': '0x07480cf71ad13fce0e7ffbd8c45ef80a9aa4771a980f77c8cce88af0afab5061', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x26ef6cf6b1657667c6b57db88bb623592da51db0', 'value': 0.38887808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02516180', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:26.000Z'}}, {'blockNum': '0x7f02b1', 'uniqueId': '0x2ead80a3985abdbd57bc48ebf07ab44e00ed081657cc7d792c49f941b6e4daa5:log:123', 'hash': '0x2ead80a3985abdbd57bc48ebf07ab44e00ed081657cc7d792c49f941b6e4daa5', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x07262c9307259b33df069e98a6c79feff28c8606', 'value': 0.00295038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04807e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:57.000Z'}}, {'blockNum': '0x7f02b1', 'uniqueId': '0xecdf29f6305a6d78b20c25063b863e80ced44f89b1b913c4f39060a37787e879:log:124', 'hash': '0xecdf29f6305a6d78b20c25063b863e80ced44f89b1b913c4f39060a37787e879', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x073941fdd0c525f5c0b571350d08f0091b49ab25', 'value': 0.0703153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6b4aea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:57.000Z'}}, {'blockNum': '0x7f02b1', 'uniqueId': '0x5801d8344ae17610babec57ed3433b54f6050ca69db1d504456826d3bad2e859:log:125', 'hash': '0x5801d8344ae17610babec57ed3433b54f6050ca69db1d504456826d3bad2e859', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x075852ca2ad33943d2428aef6745883b8cb3c9a2', 'value': 0.03334624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x32e1e0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:57.000Z'}}, {'blockNum': '0x7f02b1', 'uniqueId': '0xc6ce67bca269f64e3900349708d5d531f374e0bd43ee0b315691cfd1328e4ca6:log:126', 'hash': '0xc6ce67bca269f64e3900349708d5d531f374e0bd43ee0b315691cfd1328e4ca6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0776bb9fd604f8a2566b0505ead2c5626934ca07', 'value': 0.00758181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b91a5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:57.000Z'}}, {'blockNum': '0x7f02b1', 'uniqueId': '0x73b58438de28709f2f3e2fa78278a8b3bbd6e49c31ddc50f095ceae7b6d75f44:log:127', 'hash': '0x73b58438de28709f2f3e2fa78278a8b3bbd6e49c31ddc50f095ceae7b6d75f44', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0796c6e1b6a63f0848549bde5c179c7441e41c2a', 'value': 0.00041168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa0d0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:57.000Z'}}, {'blockNum': '0x7f02b1', 'uniqueId': '0x698d0b7c22c166927fa7a863967336e3646589225ec4b719d0636ebdbccbc93e:log:128', 'hash': '0x698d0b7c22c166927fa7a863967336e3646589225ec4b719d0636ebdbccbc93e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x07e0880e89e0dbaf096dbb703c0ed7461e6595b9', 'value': 0.00044598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xae36', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:57.000Z'}}, {'blockNum': '0x7f02b6', 'uniqueId': '0xc7a412b2dde945831d4d4b508ec1a1be4119de475ff203411e387b0013b888f3:log:107', 'hash': '0xc7a412b2dde945831d4d4b508ec1a1be4119de475ff203411e387b0013b888f3', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x07ef5af38213b58e79091bbaeee35a1a11de2d07', 'value': 0.00699859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aadd3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:49:49.000Z'}}, {'blockNum': '0x7f02b6', 'uniqueId': '0x42f7b78d8f6fb31c0c8deb241c13a96d22821c6510b4e2f62a5aff47cb26006f:log:108', 'hash': '0x42f7b78d8f6fb31c0c8deb241c13a96d22821c6510b4e2f62a5aff47cb26006f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x08114dd8ce26e7ad16faaf1101cc4a15d8f8afb7', 'value': 0.0005146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc904', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:49:49.000Z'}}, {'blockNum': '0x7f02b6', 'uniqueId': '0x2859287c5ed4446b0e24653278bb164e76b2d7aa482dd0caa7a0023703d73137:log:109', 'hash': '0x2859287c5ed4446b0e24653278bb164e76b2d7aa482dd0caa7a0023703d73137', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x08474b14e3e41be4fef57d25853f8f6f7e7a3179', 'value': 0.00159183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x026dcf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:49:49.000Z'}}, {'blockNum': '0x7f02b6', 'uniqueId': '0x4537c3c8ddfdae3577b9dab7737893692b9a3ea35f24bc8fe0be1c9b20337698:log:111', 'hash': '0x4537c3c8ddfdae3577b9dab7737893692b9a3ea35f24bc8fe0be1c9b20337698', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x27002683b93dd81b51f11c30d708a99ececfc8de', 'value': 0.01011911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f70c7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:49:49.000Z'}}, {'blockNum': '0x7f02b6', 'uniqueId': '0xe88d2065d906ab116fc3b65e1d1d9d5e146c5003467208527a8e6432597f8953:log:112', 'hash': '0xe88d2065d906ab116fc3b65e1d1d9d5e146c5003467208527a8e6432597f8953', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x27056d262c32383bd565e4f8872f9910863128e9', 'value': 0.00442063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06becf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:49:49.000Z'}}, {'blockNum': '0x7f02b6', 'uniqueId': '0xa09cef43e0835a2d3f0b7583ea8d27455255fe134f367414147f9994bd54934b:log:113', 'hash': '0xa09cef43e0835a2d3f0b7583ea8d27455255fe134f367414147f9994bd54934b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2723b2e9c5b8f331e6a75d70acfcd523512a133e', 'value': 5.525e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1595', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:49:49.000Z'}}, {'blockNum': '0x7f02b6', 'uniqueId': '0x4da30d1ea1d2ff3977edabcc5e111f5757eece103305f4fbfb651bc5dc9f028e:log:114', 'hash': '0x4da30d1ea1d2ff3977edabcc5e111f5757eece103305f4fbfb651bc5dc9f028e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2754b81741a35b41f295a4efdb75df9f1559a9ea', 'value': 0.04289401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x417379', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:49:49.000Z'}}, {'blockNum': '0x7f02b6', 'uniqueId': '0x93e9892f7c3f67d244f055db735650c36814838511b521b1a9be9a985b1ccdee:log:115', 'hash': '0x93e9892f7c3f67d244f055db735650c36814838511b521b1a9be9a985b1ccdee', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x277f00050cf73582d3dd43a391abd8fa7e5d2d3d', 'value': 0.00269382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x041c46', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:49:49.000Z'}}, {'blockNum': '0x7f02b6', 'uniqueId': '0xc7129fe825bd01489895e837b1e647806db86b61956750cffc2cdf1d5d36e2b6:log:116', 'hash': '0xc7129fe825bd01489895e837b1e647806db86b61956750cffc2cdf1d5d36e2b6', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x27c12bf2b154b4bcfc5094aa3c2e3c1e00cabe58', 'value': 0.09563085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x91ebcd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:49:49.000Z'}}, {'blockNum': '0x7f02b6', 'uniqueId': '0x31d99f3a13bc157459f749a09b45fc0670c8a7e214f68dc733fa7aeaaff269df:log:117', 'hash': '0x31d99f3a13bc157459f749a09b45fc0670c8a7e214f68dc733fa7aeaaff269df', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x280dfa6e7126e741f3035cc9d67a6af8629c6e75', 'value': 0.00030391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x76b7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:49:49.000Z'}}, {'blockNum': '0x7f02b6', 'uniqueId': '0xb54b383cc4f0b822d81b9c25c0e24faa3f9bf5b3d69f2014e6e076c7412187a2:log:118', 'hash': '0xb54b383cc4f0b822d81b9c25c0e24faa3f9bf5b3d69f2014e6e076c7412187a2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2872b40f3a5d71ce3a5e990a374fbb59f57a0395', 'value': 0.00034536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x86e8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:49:49.000Z'}}, {'blockNum': '0x7f02b9', 'uniqueId': '0x9bd3123491dfaffd0326066b07463323eeff0b3958ae81ada93f6d0f2c419b26:log:126', 'hash': '0x9bd3123491dfaffd0326066b07463323eeff0b3958ae81ada93f6d0f2c419b26', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x000008291242dce189a441885964f8224eb63ad1', 'value': 0.02770715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a471b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:50:33.000Z'}}, {'blockNum': '0x7f02b9', 'uniqueId': '0xe21aeeb64e301e9318a4d0a7a9bffc1591194ddbba03b40e8e0a30f928b9eb4e:log:127', 'hash': '0xe21aeeb64e301e9318a4d0a7a9bffc1591194ddbba03b40e8e0a30f928b9eb4e', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x000df4cbfe859c05923d57aa0a4bcdec5309938c', 'value': 0.02820242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2b0892', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:50:33.000Z'}}, {'blockNum': '0x7f02b9', 'uniqueId': '0xd7977dc27158900227b685d5425b6991f28749bab34ba47b21f7922cd0f0ee4d:log:128', 'hash': '0xd7977dc27158900227b685d5425b6991f28749bab34ba47b21f7922cd0f0ee4d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x08d57bc82b7d09e5b8a8129ed3275590b8dd4974', 'value': 0.00651829, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09f235', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:50:33.000Z'}}, {'blockNum': '0x7f02b9', 'uniqueId': '0x75a3d782efbd5e1cd4040f7465745096cfa898326e05b59b641a055c9219b30b:log:129', 'hash': '0x75a3d782efbd5e1cd4040f7465745096cfa898326e05b59b641a055c9219b30b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x090650c4af0067e7f4894a65f6f4285b10852044', 'value': 0.00354046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0566fe', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:50:33.000Z'}}, {'blockNum': '0x7f02ba', 'uniqueId': '0x4776618c40b049e4c92073752580de10ecb2a4f02882a908fbcd36d25c7be340:log:132', 'hash': '0x4776618c40b049e4c92073752580de10ecb2a4f02882a908fbcd36d25c7be340', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x28b701c08f85b7d7ee036a71523c3a0687547b8c', 'value': 0.00321187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04e6a3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:51:28.000Z'}}, {'blockNum': '0x7f02ba', 'uniqueId': '0x0ab142ec4c641cd3fd1319d43e45ade300a185dac5b294c3cd02b9316b428897:log:133', 'hash': '0x0ab142ec4c641cd3fd1319d43e45ade300a185dac5b294c3cd02b9316b428897', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x28b9c072fad52fc7948c3ac700c6dcc0f2eef2aa', 'value': 0.02590218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x27860a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:51:28.000Z'}}, {'blockNum': '0x7f02ba', 'uniqueId': '0xc93550380cbb57800055966ae8756fe94c99ad62fc37803a32fa1856b091a9d5:log:134', 'hash': '0xc93550380cbb57800055966ae8756fe94c99ad62fc37803a32fa1856b091a9d5', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2911474482845c0d9882aa75e7587b3872976398', 'value': 0.02838879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2b515f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:51:28.000Z'}}, {'blockNum': '0x7f02ba', 'uniqueId': '0xc2b85b671eb1d96c025efb3c3d6dc4fe1e99c0cb276c59aecb9c7e933a433dc2:log:135', 'hash': '0xc2b85b671eb1d96c025efb3c3d6dc4fe1e99c0cb276c59aecb9c7e933a433dc2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x29351f71b3ff6ac63cd65117b79c1db39a32a4bb', 'value': 0.00221031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x035f67', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:51:28.000Z'}}, {'blockNum': '0x7f02ba', 'uniqueId': '0x486f417c87254a69e447c148881ac5f1e9541cf8b9016fffdd13c12c04e38311:log:136', 'hash': '0x486f417c87254a69e447c148881ac5f1e9541cf8b9016fffdd13c12c04e38311', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x296c6031252169b5b9f73cd86a41b2b4f67ca440', 'value': 0.18494157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x011a32cd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:51:28.000Z'}}, {'blockNum': '0x7f02ba', 'uniqueId': '0xf90e52bd5c6f3f3ba9aa8c5216dce0305d6a9fa3ed1242a850fead16b8bdd05b:log:137', 'hash': '0xf90e52bd5c6f3f3ba9aa8c5216dce0305d6a9fa3ed1242a850fead16b8bdd05b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x29c504e3c6bfb8bfa095c476f8afc847da98dd25', 'value': 0.08143645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7c431d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:51:28.000Z'}}, {'blockNum': '0x7f02bc', 'uniqueId': '0xf5482513e28f041bebeb5d2ecb76abd0776f75b28bed26d1a24a9c3701571c48:log:61', 'hash': '0xf5482513e28f041bebeb5d2ecb76abd0776f75b28bed26d1a24a9c3701571c48', 'from': '0x888cb5b838fd021a5470cb9ade072a2bd76bb4d4', 'to': '0x9194eea248b97a2b7ff271d654b9112ecd39ad88', 'value': 429.23489065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09fe707729', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:51:36.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x1e384b2a182ae1f2dd1530719d6efa5a7509d94da588eb4310d6891411140710:log:103', 'hash': '0x1e384b2a182ae1f2dd1530719d6efa5a7509d94da588eb4310d6891411140710', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x094c71f535f915dcee43306b26af68e1af361e35', 'value': 5.489e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1571', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x343a691aa5e37d1991a3f6adea6900bf04cd860cc44dfc504b42f78a155a5de7:log:104', 'hash': '0x343a691aa5e37d1991a3f6adea6900bf04cd860cc44dfc504b42f78a155a5de7', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x09540c0a4c21455ba2e1b7407154cc3cdf3977ed', 'value': 0.00773962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0bcf4a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x9ca09cc5cdfd670f0b05a0b73f25e9ce01b1dec8d1b73a16006924667beb4a4b:log:105', 'hash': '0x9ca09cc5cdfd670f0b05a0b73f25e9ce01b1dec8d1b73a16006924667beb4a4b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0985224a811e65c235dbf4a2c2117712aabe4e39', 'value': 0.01447748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x161744', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x66d6f1595fd62037cbb22e0e999a3a14f31a4ea22edd8f8773df72ac0c42f150:log:106', 'hash': '0x66d6f1595fd62037cbb22e0e999a3a14f31a4ea22edd8f8773df72ac0c42f150', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x09903a26db6e4d3a39fe93976f7a2565df050264', 'value': 0.00946868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0e72b4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x9e7c65995ce085cb0869f321f31eac798bd800b719c0d413bbf8e41e10a8545b:log:107', 'hash': '0x9e7c65995ce085cb0869f321f31eac798bd800b719c0d413bbf8e41e10a8545b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0998df2fa42763493346ccdfe081ef935028e24c', 'value': 0.01725634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1a54c2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xfab2543f58079353eb9f77f98ff31ad3c7228267dae9e55e9d2e05951dfd2964:log:108', 'hash': '0xfab2543f58079353eb9f77f98ff31ad3c7228267dae9e55e9d2e05951dfd2964', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x09e57654ba3aa0e0e414b4058be3d95fafe5338a', 'value': 0.00974314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0eddea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x873115587f81595a58e76a9cc2a335d9dfd2a4f1bab96c63579e767d683cbd4e:log:109', 'hash': '0x873115587f81595a58e76a9cc2a335d9dfd2a4f1bab96c63579e767d683cbd4e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x09acd7359fef9c560671abf2db413d28ac97e007', 'value': 0.00488529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x077451', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xa452596f50d045831f6fe46b840b085a599a21e436ecbb36b5235070e23d4d8e:log:110', 'hash': '0xa452596f50d045831f6fe46b840b085a599a21e436ecbb36b5235070e23d4d8e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x09d7b99caf2070947ee3e14bb5495c21f570753f', 'value': 0.00200351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x030e9f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x5b50677bb1ab269c75a3c13fd7888590844aeabf3b5f2035e9b081fa2544751b:log:111', 'hash': '0x5b50677bb1ab269c75a3c13fd7888590844aeabf3b5f2035e9b081fa2544751b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x09e3ca09031b2f2539b08fc0c38ee145629086ff', 'value': 0.01303659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x13e46b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x5326746f36c325e0065b3340b8608a101a2dffa7db5a4e4699e9d9da9cc6ee58:log:112', 'hash': '0x5326746f36c325e0065b3340b8608a101a2dffa7db5a4e4699e9d9da9cc6ee58', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x09e686fc83eb77085dfe7f7780af070db216d028', 'value': 0.03029294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e392e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xb66d0986a37c15658c7bc239c34bab4df6460c36f5a1d944d0fd4cd935a4b97d:log:113', 'hash': '0xb66d0986a37c15658c7bc239c34bab4df6460c36f5a1d944d0fd4cd935a4b97d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0a4dc4c36d31581d8f00b2a387502d5cfa7ed418', 'value': 0.00343068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x053c1c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x6919f7362178a56fb0bd7411338abf380b26fb0b27b444946dc837e79f418bab:log:114', 'hash': '0x6919f7362178a56fb0bd7411338abf380b26fb0b27b444946dc837e79f418bab', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0ac0dcdb561bda27bf53a65c252b2a6725badc77', 'value': 0.10689325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa31b2d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xb75238dcc738265a3dfdf7241a97c478f8dcf092e5c561bbd0038505e8ea5e20:log:115', 'hash': '0xb75238dcc738265a3dfdf7241a97c478f8dcf092e5c561bbd0038505e8ea5e20', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0b6504349a12b8c11ddbc63a000040091ee816aa', 'value': 0.03217981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x311a3d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x07395e030d4a33975a8c275be451b1b86e6aee903d764887c3d4441a717fe5aa:log:116', 'hash': '0x07395e030d4a33975a8c275be451b1b86e6aee903d764887c3d4441a717fe5aa', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0ca13dbd2402afeb272bb7d53fc16f0ef99f2af1', 'value': 0.00279943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x044587', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x76e1b44b0dfab5d4e904a116a71be6b5ee5d51bfe0359e6608178cbc2e2dd784:log:117', 'hash': '0x76e1b44b0dfab5d4e904a116a71be6b5ee5d51bfe0359e6608178cbc2e2dd784', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0d397b54102f0817a7ca4f11bd6f7742709091ca', 'value': 0.0036228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x058728', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x60866a572a88f71ec0673581b5dc384a48f7a4dede25276fbcec1f7578015b67:log:118', 'hash': '0x60866a572a88f71ec0673581b5dc384a48f7a4dede25276fbcec1f7578015b67', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0d94d655de331439da3ce40446815073ee07928a', 'value': 0.00833656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0cb878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x2edb57f7890f3e6a4103015fc91b4099fa033b0a10f8b6ff0d15aad428a4b692:log:119', 'hash': '0x2edb57f7890f3e6a4103015fc91b4099fa033b0a10f8b6ff0d15aad428a4b692', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0e28ac7ee1aab7c3cabe7d7d06ea9a999c8588e8', 'value': 2.744e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ab8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x9393fdd959bc8e53f446bf921f499b78c0dd97b9d8842add386bcf1a73dcb8c1:log:120', 'hash': '0x9393fdd959bc8e53f446bf921f499b78c0dd97b9d8842add386bcf1a73dcb8c1', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0e670e84b6d11416a19602daa77d648fefd42aaa', 'value': 0.02569582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x27356e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xa01eb2bea010302b3263921e86e67395beae389c2a4d0a9c5d4128398cc64eb6:log:121', 'hash': '0xa01eb2bea010302b3263921e86e67395beae389c2a4d0a9c5d4128398cc64eb6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0e7e40d26ee8c46c91be14fa31676640c80e0cd3', 'value': 0.02159958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x20f556', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x438e9ff77f39630aa907da2115229228db6efedad6c2eb89776ae4bfe5ae0170:log:122', 'hash': '0x438e9ff77f39630aa907da2115229228db6efedad6c2eb89776ae4bfe5ae0170', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0ed735bbddc15660ec332a71e204a62f0dd9bc79', 'value': 0.07132392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6cd4e8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x8008c74b5a34ff3095416f4aaac299649dff33f8af642c29b86b9f7d9b118d53:log:123', 'hash': '0x8008c74b5a34ff3095416f4aaac299649dff33f8af642c29b86b9f7d9b118d53', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0eeef2b2da87d0ac554ae37c126e62cfc9de9633', 'value': 0.00061752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf138', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x6037d0edb9a4b96d0c8debe06fc2f4f580c03879dbe55c0248672a90e852d2ad:log:124', 'hash': '0x6037d0edb9a4b96d0c8debe06fc2f4f580c03879dbe55c0248672a90e852d2ad', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0f240a413d1660646da73c4312f4ee35497818d4', 'value': 0.01365412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14d5a4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xb252985b5c7017a148ac63512d0b72c66d9cb9f791eb86d565c267e3496e4481:log:125', 'hash': '0xb252985b5c7017a148ac63512d0b72c66d9cb9f791eb86d565c267e3496e4481', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0f3f4ae1701a1922f42c0c604af63c40a4debcb5', 'value': 0.00044598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xae36', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xfe3eecfd950821af5b03fd4fdee22746b2c961989a15880d0de6bd87755de6d2:log:126', 'hash': '0xfe3eecfd950821af5b03fd4fdee22746b2c961989a15880d0de6bd87755de6d2', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0fa4a88d69a208da32daf11b14c616fe0f62f98a', 'value': 0.01553413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x17b405', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x969758a89cde70a33e27f34d7885107e04ef02d5561305a0074c2401d5889e1d:log:127', 'hash': '0x969758a89cde70a33e27f34d7885107e04ef02d5561305a0074c2401d5889e1d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0a3ab13cb3c25a3cbf69d4d138c55ee77bdb053b', 'value': 0.00562632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0895c8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x0709876426b022b1f53784716de5dea12c549e6d2c8d417fe912b483fec92e21:log:128', 'hash': '0x0709876426b022b1f53784716de5dea12c549e6d2c8d417fe912b483fec92e21', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0a63113dc359dda6cf652cc2ff7437ecefdcb521', 'value': 0.03811489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a28a1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x1bca364544cab2ab3abd1f40b54dbff382ee2535175b57a7a2a54cd8f3119f22:log:129', 'hash': '0x1bca364544cab2ab3abd1f40b54dbff382ee2535175b57a7a2a54cd8f3119f22', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0bb52f9da12d67cfe84f33e11966f930c95e0eb5', 'value': 0.00043912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xab88', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x9f41c8aaea067024d7ca42aec4328181ad3b51b093707fa6e47727dc081010ba:log:130', 'hash': '0x9f41c8aaea067024d7ca42aec4328181ad3b51b093707fa6e47727dc081010ba', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0bd68cb43b188be181ebfd05b87374874858212d', 'value': 0.02130454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x208216', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x303a4cc158e02f269b16e9ccb12ba386227f84d6a4a39329132c63424fbc5f57:log:131', 'hash': '0x303a4cc158e02f269b16e9ccb12ba386227f84d6a4a39329132c63424fbc5f57', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0c4e79f15dfb621ad650977444d2e9486eab2464', 'value': 0.00351302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x055c46', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xcb5e5919956c1625414027f96474b6f055a12e79fa67fb8706f0a391898a42eb:log:132', 'hash': '0xcb5e5919956c1625414027f96474b6f055a12e79fa67fb8706f0a391898a42eb', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0cd7f81ff5b50841247e3ed224d6c50449bbeb1f', 'value': 0.00257301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03ed15', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x506b6a438f2b77d0b843684d4a58d2c87465b02b94771d85143ed5ef4cb3f690:log:133', 'hash': '0x506b6a438f2b77d0b843684d4a58d2c87465b02b94771d85143ed5ef4cb3f690', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0d0fbaa8fb07ce1ef4b66362f67392aea2f7f50d', 'value': 0.00850809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0cfb79', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xfae1205787128f36952bb9f2491cf6ec3d999067204287201f13db3f77f5b0ab:log:134', 'hash': '0xfae1205787128f36952bb9f2491cf6ec3d999067204287201f13db3f77f5b0ab', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0d1e5bddb7be97189776024cb733b4a8d24ce1dd', 'value': 0.00758181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b91a5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xa7f0554c1df3bbd16208f4ec6c1e44ebdd4c3f192485ea69fdd817574b1b4247:log:135', 'hash': '0xa7f0554c1df3bbd16208f4ec6c1e44ebdd4c3f192485ea69fdd817574b1b4247', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0e15596b078f7eed03d3eac5ce780f2157a7e4ff', 'value': 0.00430893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06932d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x839fe1c0b19c03b52fb3d4d91a2261fc457f719dc2490ac66d5264b02e6d1b00:log:136', 'hash': '0x839fe1c0b19c03b52fb3d4d91a2261fc457f719dc2490ac66d5264b02e6d1b00', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0e8713014daa08b2905e2152accdd35050a3cea6', 'value': 0.00680647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a62c7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x46e2d56f15fc173f2f7cc361095e933fe1ad329d5d5e998caea2f10aaee63327:log:137', 'hash': '0x46e2d56f15fc173f2f7cc361095e933fe1ad329d5d5e998caea2f10aaee63327', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0ee1f94f918f3ae97ce0489cee9da8546981e0b6', 'value': 0.01241907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12f333', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xdb846b29d14a5183ec4ac9c9914badfb05188991f96663f2e5aae807c94755b7:log:138', 'hash': '0xdb846b29d14a5183ec4ac9c9914badfb05188991f96663f2e5aae807c94755b7', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0f7936d68b2a2a13ab46b67feda2ff2d8d799ac0', 'value': 0.00548909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08602d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x40f393efc4cd19c3798c2f82cc59f54fc58385798b829dcbb47ed49641a7a27c:log:139', 'hash': '0x40f393efc4cd19c3798c2f82cc59f54fc58385798b829dcbb47ed49641a7a27c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0fbcf4bedafdbf47458c5fe896c53c5aa7947b8d', 'value': 0.00010978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2ae2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xc494a51fb6289d9950d865b56a1121c4821f719567080d5ed9de72b9dfa09181:log:140', 'hash': '0xc494a51fb6289d9950d865b56a1121c4821f719567080d5ed9de72b9dfa09181', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1024a4498390748d8c3a6797f7413a11aa2b87cd', 'value': 0.00507741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07bf5d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x0c7a1f3f552f0f716688299343396f002493a0fd0a04854cb6be6208a547f09b:log:141', 'hash': '0x0c7a1f3f552f0f716688299343396f002493a0fd0a04854cb6be6208a547f09b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x103e60e629aabb1a01e5bae0a88297f86f5d0630', 'value': 0.0210644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x202448', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xdae91bf90bdb3a39966a9fd8c65d1f742ce6f677d3342141f27123d2be418121:log:142', 'hash': '0xdae91bf90bdb3a39966a9fd8c65d1f742ce6f677d3342141f27123d2be418121', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x10911f3ec784dee1db1a9f7da90b7d8b935e58a0', 'value': 0.03135645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2fd89d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xa138d15e3ffbadc5f47a01bbb4cd16e0268f284e17cbbda4aba5b032b2429c68:log:143', 'hash': '0xa138d15e3ffbadc5f47a01bbb4cd16e0268f284e17cbbda4aba5b032b2429c68', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x10d96bc43dada41d6e6418618db4d6f703450485', 'value': 0.03712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x38a400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x959424ba1048f3e91de2ed4951c9d6c1ec7fc1b28730601ea5d5e064af3930c5:log:144', 'hash': '0x959424ba1048f3e91de2ed4951c9d6c1ec7fc1b28730601ea5d5e064af3930c5', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x10fb1b0fdbd357a06998fbb6cfa138742a97d998', 'value': 0.00974314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0eddea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xd9e839baf48e90a1abeb3baf5ef2b81d2dc626e795b3122be495eb91eecfa2aa:log:145', 'hash': '0xd9e839baf48e90a1abeb3baf5ef2b81d2dc626e795b3122be495eb91eecfa2aa', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x10f71bebc38ebef5e4b90083acf888950ff08a99', 'value': 0.00345812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0546d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x76f5639ab16f1fba3ae2fa6f828dea7534cbba1c4eb24d15cc5c06d4539ed113:log:146', 'hash': '0x76f5639ab16f1fba3ae2fa6f828dea7534cbba1c4eb24d15cc5c06d4539ed113', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x11b850b928b1bde3a53c268f469086d570dcfac7', 'value': 0.00497449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x079729', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x1c0c48c3e4ef46e2c7f3c4a3cc22089d879ca09ad7cfc94eec9013f6c4285801:log:147', 'hash': '0x1c0c48c3e4ef46e2c7f3c4a3cc22089d879ca09ad7cfc94eec9013f6c4285801', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x11fcc75af3cb8a326b0620839978794c03c08170', 'value': 0.03036155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e53fb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x01a8cf1f3787e18f772696b644f8af7e642602bf0db3078ccf5bed9789b9a196:log:148', 'hash': '0x01a8cf1f3787e18f772696b644f8af7e642602bf0db3078ccf5bed9789b9a196', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x11d3cffcc3d0426c9bc9ea7fa7ef280401b44b57', 'value': 0.0070329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0abb3a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xc471159de3f30dfea2598beba2dcef53e83ba5fe36fa2b0d785acf15a9f661dc:log:149', 'hash': '0xc471159de3f30dfea2598beba2dcef53e83ba5fe36fa2b0d785acf15a9f661dc', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0010a5d66463a74ac47cdc7facad3a1808944f1b', 'value': 0.00015133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b1d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x747f68e491abb99d671d1bfbde0751a9a70aac6400e9ce024ba3881545bd278b:log:150', 'hash': '0x747f68e491abb99d671d1bfbde0751a9a70aac6400e9ce024ba3881545bd278b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x29ab00ccf1aedb576773d8846cd9cf8e14b28fa0', 'value': 0.03082704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f09d0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x83465c388d09f82087750c17989592df11f70a9d4532a435e81685417674712b:log:151', 'hash': '0x83465c388d09f82087750c17989592df11f70a9d4532a435e81685417674712b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2a1a9d6373eb2864270d337f3c35f40ead3f0cad', 'value': 8.288e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2060', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x93209d0cd8e10c64b1c57912ace2453cef60ea124043f378c635a17633dd7f17:log:152', 'hash': '0x93209d0cd8e10c64b1c57912ace2453cef60ea124043f378c635a17633dd7f17', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2a41f97b65d9dfce0165bfb3604e506361325c4b', 'value': 5.525e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1595', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02c1', 'uniqueId': '0xc31ff7a41b749b31960cc10ef3177223912e1dfc6875fcdb861fbb6ee4602163:log:24', 'hash': '0xc31ff7a41b749b31960cc10ef3177223912e1dfc6875fcdb861fbb6ee4602163', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x001417f9a416c7f0ce0c0e3d75c9a8a9059470b1', 'value': 6.19e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x182e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:59.000Z'}}, {'blockNum': '0x7f02c1', 'uniqueId': '0x4d302111c36ead8c7131ad5761494d0461a0b863bffdd5699a05f0270d3cf69c:log:25', 'hash': '0x4d302111c36ead8c7131ad5761494d0461a0b863bffdd5699a05f0270d3cf69c', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00164b438c138948df8f911b7a49fe34e6c6a19c', 'value': 0.0001582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3dcc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:59.000Z'}}, {'blockNum': '0x7f02c1', 'uniqueId': '0x6c18739b49a98c5b3c76488d05b8e31ddf6157dcd09eee8f4731a18127de83fb:log:26', 'hash': '0x6c18739b49a98c5b3c76488d05b8e31ddf6157dcd09eee8f4731a18127de83fb', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2a5a65ae17cf031ab6838ecb40b91a82c413947d', 'value': 0.00148505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x024419', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:59.000Z'}}, {'blockNum': '0x7f02c1', 'uniqueId': '0x32ee5023101f31933cd2dfccae19404924c8d52ac17218a85ec05c1e1c26e9d2:log:27', 'hash': '0x32ee5023101f31933cd2dfccae19404924c8d52ac17218a85ec05c1e1c26e9d2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2a7f0b143121bd314389a9f8a481ef38f01f49b8', 'value': 0.00189949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02e5fd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:59.000Z'}}, {'blockNum': '0x7f02c1', 'uniqueId': '0x2ab4d674fd6d318489281cad0114dc35087ed0e99964788ec073888f2a673144:log:28', 'hash': '0x2ab4d674fd6d318489281cad0114dc35087ed0e99964788ec073888f2a673144', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x11d484fab9c282d3854e1f85b8af62d7b686d795', 'value': 0.08307058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7ec172', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:59.000Z'}}, {'blockNum': '0x7f02c1', 'uniqueId': '0x0ca21cff744591c970bdeeb02e615ea6aed791b64feea2ed7c74b914553d841d:log:29', 'hash': '0x0ca21cff744591c970bdeeb02e615ea6aed791b64feea2ed7c74b914553d841d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x11f44bb3b78f1565f70b743dd9c5a9c97bd608a4', 'value': 0.01761999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ae2cf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:59.000Z'}}, {'blockNum': '0x7f02c3', 'uniqueId': '0xb7852ef356de32e649b71475ef1d9aab24dcf90a7a10f2c81c1137b79389202f:log:114', 'hash': '0xb7852ef356de32e649b71475ef1d9aab24dcf90a7a10f2c81c1137b79389202f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x120b3d8bc249a2c82d890c228b7cfd5acfc423da', 'value': 0.01612421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x189a85', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:53:23.000Z'}}, {'blockNum': '0x7f02c3', 'uniqueId': '0xb5af3e18f9b52d93e1f2e1517ae469a832b603a08129e94d596497d566c99db2:log:115', 'hash': '0xb5af3e18f9b52d93e1f2e1517ae469a832b603a08129e94d596497d566c99db2', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x126f18515451e1500474dcb80658ab52f5678d7d', 'value': 0.02267682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x229a22', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:53:23.000Z'}}, {'blockNum': '0x7f02c3', 'uniqueId': '0x8c3b324c3a2d88318cea10345b0f256ad7288b2df60f6e8deff5066325a7843b:log:116', 'hash': '0x8c3b324c3a2d88318cea10345b0f256ad7288b2df60f6e8deff5066325a7843b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x129caf775d8a4723fb368581107819f88d6c289e', 'value': 0.003019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x049b4c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:53:23.000Z'}}, {'blockNum': '0x7f02c3', 'uniqueId': '0xde94e215094b72a478fe5554c1a0c8cd6c7b531be2ed02022a651c132bfbe1b6:log:117', 'hash': '0xde94e215094b72a478fe5554c1a0c8cd6c7b531be2ed02022a651c132bfbe1b6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x12f12858c9b867d69968d24f4d7770e64e64aad7', 'value': 0.01543807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x178e7f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:53:23.000Z'}}, {'blockNum': '0x7f02c3', 'uniqueId': '0xcf42f0de7434dd62687e1be53d532c9c708034b168a7b809bba3ef130674e5cf:log:118', 'hash': '0xcf42f0de7434dd62687e1be53d532c9c708034b168a7b809bba3ef130674e5cf', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2ac2e618d183a8f49ba12cf973e8482524cc21a8', 'value': 0.01802791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b8227', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:53:23.000Z'}}, {'blockNum': '0x7f02c4', 'uniqueId': '0x4866a8730fea95b1b6386828a0ad7c9e666206a03001ad1ab426a3ab3671cfcb:log:63', 'hash': '0x4866a8730fea95b1b6386828a0ad7c9e666206a03001ad1ab426a3ab3671cfcb', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x130de75bc4c5e7d6bac1d9ee05f81184d3941011', 'value': 0.00421974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x067056', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:53:30.000Z'}}, {'blockNum': '0x7f02c7', 'uniqueId': '0x9fe9d95fb7b340e36df76ffb36eb1535c4ca9fb0eb88ffba89060b57c2066271:log:65', 'hash': '0x9fe9d95fb7b340e36df76ffb36eb1535c4ca9fb0eb88ffba89060b57c2066271', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2c1b57bf0d868cc8e2807dab7e364f74b32b6797', 'value': 0.03581408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x36a5e0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:53:54.000Z'}}, {'blockNum': '0x7f02c7', 'uniqueId': '0x9a09858a19048e0f0cccb27f1aece0a0de02ec01644b4d728a0c2dd276281f34:log:66', 'hash': '0x9a09858a19048e0f0cccb27f1aece0a0de02ec01644b4d728a0c2dd276281f34', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2cc0624ce82075557e9f5f4e3fd4c8d0dc9ae054', 'value': 0.02079081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1fb969', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:53:54.000Z'}}, {'blockNum': '0x7f02c7', 'uniqueId': '0x7f6e21e98b07dfffdaf687e2f121e2262daa9696be05fc20f50f112039e82ca7:log:67', 'hash': '0x7f6e21e98b07dfffdaf687e2f121e2262daa9696be05fc20f50f112039e82ca7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2de7d9f9e119b9d7b4a855af83a39d671c4f0459', 'value': 0.01163871, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x11c25f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:53:54.000Z'}}, {'blockNum': '0x7f02c7', 'uniqueId': '0xee31e0298c4feed1a49dc318b4b447a2ab4d0eae2477ad3c9ac68a458c00515d:log:68', 'hash': '0xee31e0298c4feed1a49dc318b4b447a2ab4d0eae2477ad3c9ac68a458c00515d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2dd407f2bf94ebdf97e9281de7704348f01b0a61', 'value': 0.02552228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26f1a4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:53:54.000Z'}}, {'blockNum': '0x7f02c9', 'uniqueId': '0x9259a8f366df616da3837707acc4b4b744f0ef1e7839b48faff4c4bb557a81b3:log:61', 'hash': '0x9259a8f366df616da3837707acc4b4b744f0ef1e7839b48faff4c4bb557a81b3', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1324aad89aa0744eb398d25dbb1409e5e8a2a12c', 'value': 0.02991556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2da5c4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:54:22.000Z'}}, {'blockNum': '0x7f02c9', 'uniqueId': '0x29735a9ad6daebd3cd706e549099d70322619e1c47a66339839e9c3c899c0d56:log:62', 'hash': '0x29735a9ad6daebd3cd706e549099d70322619e1c47a66339839e9c3c899c0d56', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1369247d0fb4e5778d7929027d32e879076a75e4', 'value': 0.00167417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x028df9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:54:22.000Z'}}, {'blockNum': '0x7f02c9', 'uniqueId': '0x7a1d228103676dd4e122fc2984bab617b33b8ac964b1f51b5c483246527c0bbc:log:63', 'hash': '0x7a1d228103676dd4e122fc2984bab617b33b8ac964b1f51b5c483246527c0bbc', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x13766384bf34e8e3810c345d70c435177e54598b', 'value': 0.00816502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c7576', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:54:22.000Z'}}, {'blockNum': '0x7f02c9', 'uniqueId': '0x272c0d2a08e462db511f5576e2941dfd32e3831228a0ffa99e43f6c7d22381bf:log:64', 'hash': '0x272c0d2a08e462db511f5576e2941dfd32e3831228a0ffa99e43f6c7d22381bf', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x13a58631b894e2f059d2146c2eae28898572b7d4', 'value': 0.00209271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x033177', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:54:22.000Z'}}, {'blockNum': '0x7f02c9', 'uniqueId': '0x8ddebb3c803887505cf2abbd888d095025d323defbff65ae150d1db3b8ab4572:log:65', 'hash': '0x8ddebb3c803887505cf2abbd888d095025d323defbff65ae150d1db3b8ab4572', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2e22bc9b96ab3f77c8d6e33b5085c47b9836ade3', 'value': 0.00811601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c6251', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:54:22.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0xd422d4ec57939878ae3bd617a4a8a5b34f6d55ee519fdd50d645992198c2aed6:log:106', 'hash': '0xd422d4ec57939878ae3bd617a4a8a5b34f6d55ee519fdd50d645992198c2aed6', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0016ba692bded8cdcf495ab2b3d90ae30bee8a5a', 'value': 0.01150796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x118f4c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x933a44a1ce6bed788b0788575a455c8f370ac167b9edbaf84bc7aba47b11aad8:log:107', 'hash': '0x933a44a1ce6bed788b0788575a455c8f370ac167b9edbaf84bc7aba47b11aad8', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00170339967b35f783729cdf0524234bb746558f', 'value': 2.063e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x080f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x7b0688df98a1f005803fd5893ad406640dec541e0e6820f3b7b050c6744104df:log:108', 'hash': '0x7b0688df98a1f005803fd5893ad406640dec541e0e6820f3b7b050c6744104df', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0017ceed8eb8fc7977c55dce6b0dc3ffe8f4d184', 'value': 0.83923525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05009245', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x2def380d0091ee874d5f39de274d3e937dcf3d50caf9e6dc7dd951968e3d86b8:log:109', 'hash': '0x2def380d0091ee874d5f39de274d3e937dcf3d50caf9e6dc7dd951968e3d86b8', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x001ab2297061f18e1fba29cd0e84907ee446a1a0', 'value': 4.815e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12cf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x3185e3a64bae81ac2f9374d57c74cef420bea5e1dd504a1bff7c5fd8ed234dab:log:110', 'hash': '0x3185e3a64bae81ac2f9374d57c74cef420bea5e1dd504a1bff7c5fd8ed234dab', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x000e3b43b51561db662aba6705d83cc466cac344', 'value': 0.00557857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x088321', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x5d3d4d61734512310fdd9df46d347df1396312df6557611d48345fd0ed5fcb88:log:111', 'hash': '0x5d3d4d61734512310fdd9df46d347df1396312df6557611d48345fd0ed5fcb88', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x000ef887b298505bc3d17c419c63bdff22e88d61', 'value': 0.02499009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2621c1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x91e4c2b403057a07d2e4f01c75c0fa257c1fe28fc0378f31b4daadc4b71bdca8:log:112', 'hash': '0x91e4c2b403057a07d2e4f01c75c0fa257c1fe28fc0378f31b4daadc4b71bdca8', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x000febfac52e6d5411c76cd04f0ad24004716e1b', 'value': 0.00017196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x432c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0xa8fcc95e8bbf80deed36f64a151b567caad77dcb15cc7d5c00ea2170365f122b:log:113', 'hash': '0xa8fcc95e8bbf80deed36f64a151b567caad77dcb15cc7d5c00ea2170365f122b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2e23a041ae4a7d7c72625bed2ac74d0fabc66b8e', 'value': 0.00041443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa1e3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x8a44f5fda959321afd6fdd0fa5c7b2f69e09439b6b5f57cb0889b65eb033bbf9:log:114', 'hash': '0x8a44f5fda959321afd6fdd0fa5c7b2f69e09439b6b5f57cb0889b65eb033bbf9', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2f071599ea475de9887aa27d09dd87b8d897d83b', 'value': 0.03843883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3aa72b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0xac475b643f41036420ea83edb17d14d5691fafa763d7c35a287b46ee56a8b0c7:log:115', 'hash': '0xac475b643f41036420ea83edb17d14d5691fafa763d7c35a287b46ee56a8b0c7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2f0ec33bb07c71cba29d3795f5e209232477d132', 'value': 0.1084438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa578dc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x575d83f26422580fe76d1baaf393e1184735391ebaf1be9a9b18a9e2a4975513:log:116', 'hash': '0x575d83f26422580fe76d1baaf393e1184735391ebaf1be9a9b18a9e2a4975513', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2f6102a60813af809c8da5f46ceb1d022dd718f2', 'value': 0.00903468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0dc92c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x3b4c222804d6b87a97f1226a7425bf81a74dfdfc3188aa8e3ecab5678a4392c9:log:117', 'hash': '0x3b4c222804d6b87a97f1226a7425bf81a74dfdfc3188aa8e3ecab5678a4392c9', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2a2df30228a6da366560ce11759a10be57d1623c', 'value': 0.00055257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd7d9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0xf4c4625368ec054737dd629e433c8007f747a5e771a50b515206e6049172d0a6:log:118', 'hash': '0xf4c4625368ec054737dd629e433c8007f747a5e771a50b515206e6049172d0a6', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2b9caf5ee04938e39c8d66cd8d780efc2dccb473', 'value': 0.03453624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x34b2b8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0xac1a94e170fbe7bec63472f11c8c9c282310515e465b578c7a0381ee1a617f46:log:119', 'hash': '0xac1a94e170fbe7bec63472f11c8c9c282310515e465b578c7a0381ee1a617f46', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2c12abe41a0a1f53bf91636a1223b02b5ec66793', 'value': 0.04558093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x458d0d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x78e18e5c0c9965eed78daf9d5704507fc08585af7be830401581f719f9dbabcb:log:120', 'hash': '0x78e18e5c0c9965eed78daf9d5704507fc08585af7be830401581f719f9dbabcb', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2c5eccdcf6d91bc773608f61584b0cd1c05a880f', 'value': 0.00088412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01595c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0xaa9e3a15b1378a036120eb1d586ad26e1fc41b0989e3f0db592c8afb105d1f19:log:121', 'hash': '0xaa9e3a15b1378a036120eb1d586ad26e1fc41b0989e3f0db592c8afb105d1f19', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2ca4e5688b0c13e9516200563fdc1245455dde94', 'value': 0.0946293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x906492', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x52463913446f28a0990e67f2fc3f7500845c5b383ec9473251e1a4599ae9ad54:log:122', 'hash': '0x52463913446f28a0990e67f2fc3f7500845c5b383ec9473251e1a4599ae9ad54', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1405568d505257fed075cce18d30cbb866de92cd', 'value': 0.01753079, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1abff7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x67f5fd3b1e9a675546ed2924b2ca0bf217ff0812a4581584bed5b12b64f489bf:log:123', 'hash': '0x67f5fd3b1e9a675546ed2924b2ca0bf217ff0812a4581584bed5b12b64f489bf', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x141abf9772b0887db1b5e3fc959594732b16bc3c', 'value': 0.00139971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0222c3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x1e4ea30b042de42faf87a5f62edf0b6d37bdec1f7ab7eac627cb306101088fbd:log:124', 'hash': '0x1e4ea30b042de42faf87a5f62edf0b6d37bdec1f7ab7eac627cb306101088fbd', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1439648ff4815de902e4a66cf0cb8475260e4693', 'value': 0.03460874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x34cf0a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x11a7b9bb9a0b5dc7a780e38f4e52b3b12922266921875955ff626c066eb70128:log:125', 'hash': '0x11a7b9bb9a0b5dc7a780e38f4e52b3b12922266921875955ff626c066eb70128', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x144fa6874eb49595310d311b0c5aae390bc6ee6c', 'value': 0.01132125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x11465d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x7c4cf043f4d445b3b8c0b70491dfdf92e70b4c7db98c2ea89c18febc6b16da10:log:126', 'hash': '0x7c4cf043f4d445b3b8c0b70491dfdf92e70b4c7db98c2ea89c18febc6b16da10', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1466e94cc3dcc19760bd880b77f3da194a83a5da', 'value': 0.01701619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x19f6f3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x1602fe6ba578cd90006a8fdc3667ee834ab86ea9edf2f1a06d229a9c429dcea5:log:127', 'hash': '0x1602fe6ba578cd90006a8fdc3667ee834ab86ea9edf2f1a06d229a9c429dcea5', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x14e725bb7325492fe87fe6904cf8853ad9fcae8c', 'value': 0.03149367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x300e37', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0xf3c729fcde3192c9abf90ee03b4f843480ed19b6f6b4619f404e019c0c7d0ef8:log:128', 'hash': '0xf3c729fcde3192c9abf90ee03b4f843480ed19b6f6b4619f404e019c0c7d0ef8', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x14deedc7ba39e2ada7abeb6eaaffb6d9bbca3994', 'value': 0.00386981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05e7a5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x09a9a86f2b3371446ec61f8536a6974b730fd32b54bafcf78e47fdd99d0905ab:log:129', 'hash': '0x09a9a86f2b3371446ec61f8536a6974b730fd32b54bafcf78e47fdd99d0905ab', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x15119ebb98fab4aa050c41d0771179c6d937446a', 'value': 0.01176724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x11f494', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0xf0438b4e8b219d4dc1116119e1108c0d1640fff938cc5225961d4f2faadda60a:log:130', 'hash': '0xf0438b4e8b219d4dc1116119e1108c0d1640fff938cc5225961d4f2faadda60a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x15337c4662b4eb604488c870406311f09f59cf54', 'value': 0.01012051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f7153', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x49d12f54238a2e333f3d93f6b99d97c72c5fc83281c5a07f879aa0c32a0a0fba:log:131', 'hash': '0x49d12f54238a2e333f3d93f6b99d97c72c5fc83281c5a07f879aa0c32a0a0fba', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x158a89107038b56e2d3ef6822d950ad1dc69f682', 'value': 0.00819933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c82dd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02d5', 'uniqueId': '0x8e14ab5ce8b9d344cf282bb9e2e881d891d0e5445d715433a61b1a7deafad586:log:37', 'hash': '0x8e14ab5ce8b9d344cf282bb9e2e881d891d0e5445d715433a61b1a7deafad586', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x15988ff3e61c00c592126287f16d7b7c10f0802a', 'value': 0.01084096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x108ac0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:57:01.000Z'}}, {'blockNum': '0x7f02d7', 'uniqueId': '0x772dfbd6501fa91b4926210321c08b2faf2ec983cd5d4276ea1259fa6d253b46:log:85', 'hash': '0x772dfbd6501fa91b4926210321c08b2faf2ec983cd5d4276ea1259fa6d253b46', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2ca65a99b4b238f197733b2f9945a892f16ea306', 'value': 0.01985833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e4d29', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:57:13.000Z'}}, {'blockNum': '0x7f02d7', 'uniqueId': '0xa836967c2f624ae0b683c242adbbcd990b4f29345a051c129b73521c2ca3795e:log:86', 'hash': '0xa836967c2f624ae0b683c242adbbcd990b4f29345a051c129b73521c2ca3795e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2cafe1abc991a42a67a502af7a7e63bba00c22da', 'value': 0.01194953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x123bc9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:57:13.000Z'}}, {'blockNum': '0x7f02d7', 'uniqueId': '0x1662ca2dc65bc610a542f16eee420727f9cc66e5c8aa9e1bd375d1101c02e077:log:87', 'hash': '0x1662ca2dc65bc610a542f16eee420727f9cc66e5c8aa9e1bd375d1101c02e077', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1598f5ad2eb5c1076548d434bac3d41ec0831a7a', 'value': 0.02343157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23c0f5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:57:13.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x91c3be51f6dd1fe0e514005aabebf761500fa76a67a8311d9a3319a3e1f4e2a2:log:85', 'hash': '0x91c3be51f6dd1fe0e514005aabebf761500fa76a67a8311d9a3319a3e1f4e2a2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2d427cf50166142ab7acfb37baa2d59729cd2d12', 'value': 0.03695377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x386311', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x5778cbdf58f14d14794ba0243a226c7103c701160cbedc49885e2dc7f796d4bc:log:86', 'hash': '0x5778cbdf58f14d14794ba0243a226c7103c701160cbedc49885e2dc7f796d4bc', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2d595febca85974c1e63b6775ab48da881598129', 'value': 0.00100155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01873b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x7a442e93661a2295dff10ae61b9589ed8ddcf0e7b785defbd51c8f89db05646b:log:87', 'hash': '0x7a442e93661a2295dff10ae61b9589ed8ddcf0e7b785defbd51c8f89db05646b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2d659edb6fe9eef60ce38dac4e7b568e14ae261c', 'value': 0.59032798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0384c4de', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0xc4b42353a1f43beddea3b884793bcf61128f631205b2c5efd3498493dba7ee11:log:88', 'hash': '0xc4b42353a1f43beddea3b884793bcf61128f631205b2c5efd3498493dba7ee11', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x15f6f77a7d183b39c0008ccde18b8e7ffb3e96bb', 'value': 0.01900598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1d0036', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x84544e90d08d1e363017cd1dc21e232d082a7bbde0db64cf7f9fbd82368d9fde:log:89', 'hash': '0x84544e90d08d1e363017cd1dc21e232d082a7bbde0db64cf7f9fbd82368d9fde', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x161712a2f0603c954666bd09ba405f5b25abe3fa', 'value': 0.00606544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x094150', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x6976ad777deb3e3f0ed55c41006eb152bedf17255aebd4f11460eef3ece28d76:log:90', 'hash': '0x6976ad777deb3e3f0ed55c41006eb152bedf17255aebd4f11460eef3ece28d76', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x16575bd7a7cdb324f7ba9ca1f95b3749a3cefbba', 'value': 0.02854329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2b8db9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0xb3e7e79517452072b526c2ec5f9985a5d1982201789073fb5b6c3e2fc30d4338:log:91', 'hash': '0xb3e7e79517452072b526c2ec5f9985a5d1982201789073fb5b6c3e2fc30d4338', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1683116fe2a64d89c1fa1a65448a468086b87f9a', 'value': 0.00761611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b9f0b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x375e1bd0a55408662299c3a7b7c02ba6d21cd0615811df1c93144eaa7309fba2:log:92', 'hash': '0x375e1bd0a55408662299c3a7b7c02ba6d21cd0615811df1c93144eaa7309fba2', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x16c44978353dd9c66d0c70bc14ea8a2e1f7a33fc', 'value': 0.00126935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01efd7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x5265561c3d0ea8454d40313cc27b1ff56552fb03a0724e9b006982cc8b42b502:log:93', 'hash': '0x5265561c3d0ea8454d40313cc27b1ff56552fb03a0724e9b006982cc8b42b502', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x16cb21d29c756442674bc1b61a401637b81e4678', 'value': 0.02295127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x230557', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x139cc65153b89e39bb666d181b692d96fa0e215858a836df3fde300f74bb12c9:log:94', 'hash': '0x139cc65153b89e39bb666d181b692d96fa0e215858a836df3fde300f74bb12c9', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1714ce55143faea9207318195b69cbd495fad12c', 'value': 0.00600369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x092931', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x69bb494d4fc3b273f93ccabac771c9410041948e6530430cd257a7e31e05f968:log:95', 'hash': '0x69bb494d4fc3b273f93ccabac771c9410041948e6530430cd257a7e31e05f968', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x171947991c12f203f100dbd3dae3fa7beb04061a', 'value': 0.0140658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x157674', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0xaa811f91e7a4cebb61e2af879fbb553def7d63563db1fad42afab5838e876501:log:96', 'hash': '0xaa811f91e7a4cebb61e2af879fbb553def7d63563db1fad42afab5838e876501', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x17252c18271dfad2dcf4fbaec09f15791b672bd5', 'value': 0.02321886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x236dde', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x87e7ef6b2c148af694336fca4d53f7601a06861320cb0777382cfc2b06e91175:log:97', 'hash': '0x87e7ef6b2c148af694336fca4d53f7601a06861320cb0777382cfc2b06e91175', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x173c2608295f96280d2296615be5441fca0775ce', 'value': 0.02103009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2016e1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x584ddd9170351a6782775efaa267799d12ef8f301728235de812b01c6d76d6d6:log:98', 'hash': '0x584ddd9170351a6782775efaa267799d12ef8f301728235de812b01c6d76d6d6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x178baa54dfef10fbe5f61ab7e592c14a5d684edd', 'value': 0.01389427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x153373', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0xb6a785ee071b66b83dd91e6e3ea2102fa29ea2377eb214db0e2cd4022845e1df:log:99', 'hash': '0xb6a785ee071b66b83dd91e6e3ea2102fa29ea2377eb214db0e2cd4022845e1df', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1793432e447e1e83b816a500eeba277401a59a57', 'value': 0.00334834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x051bf2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0xb433fbdce0175d1fdc1b97f12753d5a06624e35f52511b7cf514f55404bead8f:log:100', 'hash': '0xb433fbdce0175d1fdc1b97f12753d5a06624e35f52511b7cf514f55404bead8f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x17baf7649ee1262883eccf598570b1cd202bebd6', 'value': 0.00099489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0184a1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0xc1c5fafdfab4b3b2009736850549c28cb0458021c7338b1bf2d8d428eadbb7eb:log:101', 'hash': '0xc1c5fafdfab4b3b2009736850549c28cb0458021c7338b1bf2d8d428eadbb7eb', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x17cad8a4a8b448e59e77539171b13c3858371491', 'value': 0.00607231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0943ff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x052dc0bb9b208f288326c3accf9f3fd3645838075889f7c5a23591170a42d396:log:102', 'hash': '0x052dc0bb9b208f288326c3accf9f3fd3645838075889f7c5a23591170a42d396', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x182208d25cf3bb6d1bf168adda5b5076923e94a3', 'value': 0.00126935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01efd7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x4813908ac379965e1b4ba60668f6c9053724839ddb45dff5d50be34f2609060c:log:103', 'hash': '0x4813908ac379965e1b4ba60668f6c9053724839ddb45dff5d50be34f2609060c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1844d3cc51b6ca1f7e8eaf64861574ae010fa757', 'value': 0.00044598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xae36', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dd', 'uniqueId': '0x1b284fe0e01580d434c8c0aa726cfb222b0e253abeff2eb562a8606e314a95d8:log:17', 'hash': '0x1b284fe0e01580d434c8c0aa726cfb222b0e253abeff2eb562a8606e314a95d8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2da1d79f7ac1c9f4f6e7cf0191bf7d272613ce88', 'value': 2.762e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:23.000Z'}}, {'blockNum': '0x7f02df', 'uniqueId': '0x7b6ceb202a60a52027183da808ce78da32670322302bd3975785249019ff9375:log:74', 'hash': '0x7b6ceb202a60a52027183da808ce78da32670322302bd3975785249019ff9375', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x18716fd9289726d4c8918cf3b0645463b6c00f49', 'value': 0.00092628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0169d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:29.000Z'}}, {'blockNum': '0x7f02e2', 'uniqueId': '0x558aec0eb2e610e096982175c6f080d3da15a8953d455f9c4283ea332a1cfecb:log:125', 'hash': '0x558aec0eb2e610e096982175c6f080d3da15a8953d455f9c4283ea332a1cfecb', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2de5d6fab319897545b6dfb090a5ad350b9a9bf8', 'value': 0.12212015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xba572f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:59:10.000Z'}}, {'blockNum': '0x7f02e2', 'uniqueId': '0xc7499ee0a5a6337ea1a927725dc9837ebe3919c0becea697fd377d2748fd4ee0:log:126', 'hash': '0xc7499ee0a5a6337ea1a927725dc9837ebe3919c0becea697fd377d2748fd4ee0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2da0a55876542e7d4fbe619b1b3a61826f65cb59', 'value': 0.00031082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x796a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:59:10.000Z'}}, {'blockNum': '0x7f02e2', 'uniqueId': '0xd8b020f061f783a5a179d03e8b680dc8cdb80ffc36945d2d734a5ea902d14a23:log:127', 'hash': '0xd8b020f061f783a5a179d03e8b680dc8cdb80ffc36945d2d734a5ea902d14a23', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2e165ab77faab45db480a0eb0e416ba182de8c8d', 'value': 0.00044897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xaf61', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:59:10.000Z'}}, {'blockNum': '0x7f02e3', 'uniqueId': '0xf959086169ac639f2f82d381b6af578d72053957d6a85bfb1c90c8d20629c6b1:log:67', 'hash': '0xf959086169ac639f2f82d381b6af578d72053957d6a85bfb1c90c8d20629c6b1', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x18b396f772ef19f062621927925be09ef9ba8737', 'value': 0.00052146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xcbb2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:59:38.000Z'}}, {'blockNum': '0x7f02e3', 'uniqueId': '0xfb8f391782a5a7f06c35016691d43079b6ad21f3af39917dd887bf998ab238d5:log:68', 'hash': '0xfb8f391782a5a7f06c35016691d43079b6ad21f3af39917dd887bf998ab238d5', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x18d5601445061d31903052e368edb6535675c366', 'value': 0.0021133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x033982', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:59:38.000Z'}}, {'blockNum': '0x7f02e3', 'uniqueId': '0x6bd219b459363af59dcc8a1687b238312650d61ec427a50f7b8cfa013d47569a:log:69', 'hash': '0x6bd219b459363af59dcc8a1687b238312650d61ec427a50f7b8cfa013d47569a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x18bea3e8441d32e9a2c8b780dda7fed6dddaff65', 'value': 0.03145937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3000d1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:59:38.000Z'}}, {'blockNum': '0x7f02e3', 'uniqueId': '0x570170fd7f763b17b8e7127fd74fe75a41b94c1202183e455e091032e8d60c93:log:70', 'hash': '0x570170fd7f763b17b8e7127fd74fe75a41b94c1202183e455e091032e8d60c93', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1932dbd2dbde34dd5eb8ce5b31ace8a0093ee4b2', 'value': 8.233e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2029', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:59:38.000Z'}}, {'blockNum': '0x7f02e3', 'uniqueId': '0x72b171692bb7236e1dc3afb1048bb64258fccbbafecd792650a5d6d97ec5e7b8:log:71', 'hash': '0x72b171692bb7236e1dc3afb1048bb64258fccbbafecd792650a5d6d97ec5e7b8', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x19415ec85192a2d65fc80987d103802ce428d0e2', 'value': 0.02693086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2917de', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:59:38.000Z'}}, {'blockNum': '0x7f02e3', 'uniqueId': '0x63a82ff590bc3e4a4ccc98944fa5394082b0420ee825f22f42032d9956fa0a1a:log:72', 'hash': '0x63a82ff590bc3e4a4ccc98944fa5394082b0420ee825f22f42032d9956fa0a1a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1948de9d5bda15192a1bdcc3205c12bab6f686d4', 'value': 0.00279943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x044587', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:59:38.000Z'}}, {'blockNum': '0x7f02e3', 'uniqueId': '0x79dcaacbdce50710cc7c4ba9b5063f5e618220aa3a840efde5a1f21b3d7f66e8:log:73', 'hash': '0x79dcaacbdce50710cc7c4ba9b5063f5e618220aa3a840efde5a1f21b3d7f66e8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2e228b8629ee0a139318ca4e05112660a00ed259', 'value': 0.06282142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5fdb9e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:59:38.000Z'}}, {'blockNum': '0x7f02e6', 'uniqueId': '0xb3ac0dc4c7b82dd1354809f14f72d2bd29f7266c822222bb553bc2be43755ebf:log:36', 'hash': '0xb3ac0dc4c7b82dd1354809f14f72d2bd29f7266c822222bb553bc2be43755ebf', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x003105fe86aa597e27a878c30c502926a4248b49', 'value': 0.00482192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x075b90', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:24.000Z'}}, {'blockNum': '0x7f02e6', 'uniqueId': '0xf8af1b91a35f18d746911ebde98439b4a3a770d4315ea7206412469a19dc886f:log:37', 'hash': '0xf8af1b91a35f18d746911ebde98439b4a3a770d4315ea7206412469a19dc886f', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00333861f4f1d305f477c4c94e818fb74c946151', 'value': 0.00011005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2afd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:24.000Z'}}, {'blockNum': '0x7f02e6', 'uniqueId': '0x52548a3bcc72b775b50601f51727f73a071b865976173ee6e40f51d94e26df38:log:38', 'hash': '0x52548a3bcc72b775b50601f51727f73a071b865976173ee6e40f51d94e26df38', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0035e7c3929651f1b7c1a8bba7d7ff734a1f31e1', 'value': 0.07410358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7112b6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:24.000Z'}}, {'blockNum': '0x7f02e6', 'uniqueId': '0xa740ee890b5da5fc2217f9e22eec8c89e318171746302fd50c31dc7b58d3682d:log:39', 'hash': '0xa740ee890b5da5fc2217f9e22eec8c89e318171746302fd50c31dc7b58d3682d', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x003ea7646766420b6b17d5ad961d2c0a2eb6f5df', 'value': 0.00890783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d979f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:24.000Z'}}, {'blockNum': '0x7f02e6', 'uniqueId': '0x673037247314a39058c146d7873ef9545a675913bbbf68b4ad292d3c8ba44aba:log:40', 'hash': '0x673037247314a39058c146d7873ef9545a675913bbbf68b4ad292d3c8ba44aba', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x004251ec96a0b688cb93cc30b1ad79438ddea9fb', 'value': 8.68036116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x33bd2e14', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:24.000Z'}}, {'blockNum': '0x7f02e6', 'uniqueId': '0x6372491491b1d34caf06e51fa6a7a30f265779363c3fa54ae67e14e1584789ac:log:41', 'hash': '0x6372491491b1d34caf06e51fa6a7a30f265779363c3fa54ae67e14e1584789ac', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2e2f5624b2f22e521a7474ffbcb597d22921e55e', 'value': 0.06114987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5d4eab', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:24.000Z'}}, {'blockNum': '0x7f02e6', 'uniqueId': '0xf01688382443e2bf50e1d43f90532e1d3384f2fed1273237963f67d3457cbcdd:log:42', 'hash': '0xf01688382443e2bf50e1d43f90532e1d3384f2fed1273237963f67d3457cbcdd', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2e97b18ecf6057990a1e925f90a2fcf1b98860e9', 'value': 0.01340006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x147266', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:24.000Z'}}, {'blockNum': '0x7f02e6', 'uniqueId': '0xb339440c85a0cd272030dfcd6c81b8b2a56122131d80facbe73cd7c800556c7d:log:43', 'hash': '0xb339440c85a0cd272030dfcd6c81b8b2a56122131d80facbe73cd7c800556c7d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2ef83161733480526642860e8672e304e8b1a522', 'value': 0.00027628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6bec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:24.000Z'}}, {'blockNum': '0x7f02e7', 'uniqueId': '0xe90c7472c5ab62c168657d7f1d753d942bbc5627047a8ea5de09108ea0b347b7:log:98', 'hash': '0xe90c7472c5ab62c168657d7f1d753d942bbc5627047a8ea5de09108ea0b347b7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2f40208b2edc15347d9ec9079fbe41a67ac53a74', 'value': 0.0210671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x202556', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:37.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x7142b13f645917767492dc56c5acbfdfffc03567a260ca49e8dbf4dd4b2c247d:log:34', 'hash': '0x7142b13f645917767492dc56c5acbfdfffc03567a260ca49e8dbf4dd4b2c247d', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x004e44b87abe2931fa76cf64a1a46545ba6cc182', 'value': 0.09495961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x90e599', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x870c3827f67eb28ed43401d5ce8844134afd0a5e42ca6ad47787559e59c737ab:log:35', 'hash': '0x870c3827f67eb28ed43401d5ce8844134afd0a5e42ca6ad47787559e59c737ab', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x005391ee370ab6050cd72473f98eea1783893d54', 'value': 2.751e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0abf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x3cb65dfcffb1c3e44b940dfdd3e33e5ba7083c3c6cfdd5d42fe65681f2c748ed:log:36', 'hash': '0x3cb65dfcffb1c3e44b940dfdd3e33e5ba7083c3c6cfdd5d42fe65681f2c748ed', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0056a0cdb437c3092e2e35d6038ccfebcd5774a6', 'value': 0.44863172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ac8ec4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x1e76a6235c8b1649083ababa164139645ab3ce828eef29cbd47992809f68822d:log:37', 'hash': '0x1e76a6235c8b1649083ababa164139645ab3ce828eef29cbd47992809f68822d', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0073124e931d0cf3d25ca77f56f6efc8995aa99d', 'value': 0.01672885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1986b5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x6f53021fb80bc61d7b673b6016742d7d9203d69cdd6744434c3d55e5d929ddd9:log:38', 'hash': '0x6f53021fb80bc61d7b673b6016742d7d9203d69cdd6744434c3d55e5d929ddd9', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x007824cf5c325d4aef4d48213cc26e7c8feccf01', 'value': 0.00012381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x305d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x3857ec71c7922bb6aaf43ada23c41a473d94a36c35af09a104cd09fc3f6a4705:log:39', 'hash': '0x3857ec71c7922bb6aaf43ada23c41a473d94a36c35af09a104cd09fc3f6a4705', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x007b042697fcf9c7631e566205903bb621270393', 'value': 0.48784684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02e8652c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x38839bd2f02eee4f5c6da3a9dd58f714aad740be6da448aca28a535ac61deedb:log:40', 'hash': '0x38839bd2f02eee4f5c6da3a9dd58f714aad740be6da448aca28a535ac61deedb', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x007d1ddbd2448d29380ce94732530aa1dd0f975b', 'value': 2.72940964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1044bfa4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x5588155e2ada017f7b9850bf2af98c53d53ef6a4dda15fd06cbb2a03fc7b2908:log:42', 'hash': '0x5588155e2ada017f7b9850bf2af98c53d53ef6a4dda15fd06cbb2a03fc7b2908', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00853d5e7ae5b909eebcc4cc0bdaa8e24b84d7aa', 'value': 0.75820488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0484edc8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x1c3fb7721169d4e0306e3d559faeb1bd0c9c0fc8a63e549ae6eb1c59b5a93006:log:43', 'hash': '0x1c3fb7721169d4e0306e3d559faeb1bd0c9c0fc8a63e549ae6eb1c59b5a93006', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00934e5268a8eb98c7b7ff594cd8387a17b02627', 'value': 2.063e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x080f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x7aa2bfe7249c32650769cdc646b0578b109a8a2033e61ba90c6bcf1f3e7c8f49:log:44', 'hash': '0x7aa2bfe7249c32650769cdc646b0578b109a8a2033e61ba90c6bcf1f3e7c8f49', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x009a67b266874f06af2493bc9d35934b38209c81', 'value': 0.01489225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x16b949', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0xd21e98416769d36897cb705863f2183da08fd8c6c527e191e83975b4cf335a82:log:45', 'hash': '0xd21e98416769d36897cb705863f2183da08fd8c6c527e191e83975b4cf335a82', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x009d3993cb4c02b10414001573577949475f042a', 'value': 0.23091591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01605987', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0xcd509f39a9e43932fafa579a0189cb0e3782580701a599e1ac22beef5f3fe4ea:log:46', 'hash': '0xcd509f39a9e43932fafa579a0189cb0e3782580701a599e1ac22beef5f3fe4ea', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x009f091d78d8bc213be52ccb40912b8b083797ac', 'value': 1.53553238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09270956', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x00002167e52670ea17ccd33ae6c9d0f9f57b608ad38be430f6710743c1c6b3d3:log:47', 'hash': '0x00002167e52670ea17ccd33ae6c9d0f9f57b608ad38be430f6710743c1c6b3d3', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00a643bc1c1e29e60a23b63ae0623478c274fa77', 'value': 0.41187227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0274779b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x39ac33033f9eff718a09d10c49a198fabf50038b8a8a31af7046b572126629af:log:48', 'hash': '0x39ac33033f9eff718a09d10c49a198fabf50038b8a8a31af7046b572126629af', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00a95d58fdd38dbf10945cd10dfa4944ada38f31', 'value': 0.0223143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x220c86', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0xb1323bb62381489ede85cb6d13e5a05b44c6ddddfff9ba928f2df349610351cc:log:49', 'hash': '0xb1323bb62381489ede85cb6d13e5a05b44c6ddddfff9ba928f2df349610351cc', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00c10281b684235ae49ddb744ee207485658dcab', 'value': 0.13735266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd19562', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x673c0e3d3e1abce07ed9b48f3baf83fa79cfc0c65392e27e72c225739cc9a78d:log:50', 'hash': '0x673c0e3d3e1abce07ed9b48f3baf83fa79cfc0c65392e27e72c225739cc9a78d', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00c3c6253b8c4e21fe51a54ab43398722d12a9a8', 'value': 0.00050214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc426', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0xe189ca0e0f3f24f3afa012c9dea4790a0907a0b4c20c3ac15d52a9bbbf2140c8:log:51', 'hash': '0xe189ca0e0f3f24f3afa012c9dea4790a0907a0b4c20c3ac15d52a9bbbf2140c8', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00cc2e4bc95dd72fdb8287802ec91f63f0fc493e', 'value': 0.63282104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03c59bb8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x4b123489a4097278082dc10d35fe865f323926ce82a2125b018489c068ed8166:log:52', 'hash': '0x4b123489a4097278082dc10d35fe865f323926ce82a2125b018489c068ed8166', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00d2831cabbbecbc03aa74fe74381932b115eba1', 'value': 4.127e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x101f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0xe7ac873c85cdf92113526e1d823beb3e368e71cdbcb81383406a6f4378ac8886:log:53', 'hash': '0xe7ac873c85cdf92113526e1d823beb3e368e71cdbcb81383406a6f4378ac8886', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00dc413d0a55c9045d2435e0543f54c8939e3bfe', 'value': 0.00033705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x83a9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0xa7645a1885cf28630d9f2413ea9d506d2dd863994ef968a4f89d3c27e14e3a54:log:54', 'hash': '0xa7645a1885cf28630d9f2413ea9d506d2dd863994ef968a4f89d3c27e14e3a54', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00e5e7140f78e60ab3c60937d2426c396d55a384', 'value': 6.87e-06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02af', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0xf4aae37251c84cbb65332d73d012f3bc8d0ccc572e706b68458096aefc69ae7e:log:55', 'hash': '0xf4aae37251c84cbb65332d73d012f3bc8d0ccc572e706b68458096aefc69ae7e', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00f191a2677c75e10aa3e102ebf38c4a39dd1db9', 'value': 1.39401126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x084f17a6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x72d60430ba2e9b54d72b873f3bb92daffef5bf936775aca8c22c7c982adde272:log:56', 'hash': '0x72d60430ba2e9b54d72b873f3bb92daffef5bf936775aca8c22c7c982adde272', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00ff77b290de0b5c166d979caff91a04cd7ef2cc', 'value': 0.05079875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4d8343', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0xe1a674c4647b3493155430e54174387650c54305b61428defafc90beed275a72:log:57', 'hash': '0xe1a674c4647b3493155430e54174387650c54305b61428defafc90beed275a72', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0107e0427a9eaa692bd0175c028e2f86f4c74929', 'value': 5.43668382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2067b89e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0xa2946ffe3d21920b9bcc7273bb37222590609e55f2df418f16b1450e47c0dfe1:log:58', 'hash': '0xa2946ffe3d21920b9bcc7273bb37222590609e55f2df418f16b1450e47c0dfe1', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0128a7c2aea829505350fb3f7be9c14236584912', 'value': 0.50883357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03086b1d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0x5d6319e7692b99b4b9c60dc5dc6b77f841a2d415ac3048bc8d87e6f298aa8a6e:log:63', 'hash': '0x5d6319e7692b99b4b9c60dc5dc6b77f841a2d415ac3048bc8d87e6f298aa8a6e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x19ee588256cfb969da322b2e4782d965b8e8341a', 'value': 0.01018227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f8973', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0xa388950df8229197c71a2b42dfad03de5662416b09353e502a00931d7bb3f796:log:64', 'hash': '0xa388950df8229197c71a2b42dfad03de5662416b09353e502a00931d7bb3f796', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x19c337192d0b6a023f28744aa8eaef7f83127928', 'value': 0.00675844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a5004', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0xce9206e5c28046639fc12d393edb4c2707b966ef0ba1de8bfe180d69b6264622:log:65', 'hash': '0xce9206e5c28046639fc12d393edb4c2707b966ef0ba1de8bfe180d69b6264622', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x19ee0a07fbcf87ee7f6fd8ce716c515abbbbe658', 'value': 0.00895408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0da9b0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0x14c4cb45e47ae1c013274e6e751819cc239ca60732b5b0ca1c1eb82e24135e51:log:66', 'hash': '0x14c4cb45e47ae1c013274e6e751819cc239ca60732b5b0ca1c1eb82e24135e51', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1a1590da0b3273f52e817d87ce96962fda425418', 'value': 0.00590077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0900fd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0xa83fedb3af1ef19067dd4b54bfa5ab925485d93b65b1cacd3d210939780eee83:log:67', 'hash': '0xa83fedb3af1ef19067dd4b54bfa5ab925485d93b65b1cacd3d210939780eee83', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1a5765182a40f39ca39a74d1f1f509a702ab56a9', 'value': 0.04260909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x41042d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0x15d1d1ac8b685129374544e73b1fa3f3e3484ba1679fdca006104aa175fb3ee0:log:68', 'hash': '0x15d1d1ac8b685129374544e73b1fa3f3e3484ba1679fdca006104aa175fb3ee0', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0163c6c16077e5aa5d2a3c01068181aa4f55e4d1', 'value': 17.20514127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x668cf64f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0xafdbc17232d9818d1ea8f4b1389eefcaf3fd06cd6e50f75d7d461d14b2c05ccb:log:69', 'hash': '0xafdbc17232d9818d1ea8f4b1389eefcaf3fd06cd6e50f75d7d461d14b2c05ccb', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x01c08b9dfe54b53c616cbe663fb8c983268d5201', 'value': 0.80980843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04d3ab6b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0x918209f92ab827b26b663a32b33564f7882ab3b04f6ec864886a6ca5529e941b:log:70', 'hash': '0x918209f92ab827b26b663a32b33564f7882ab3b04f6ec864886a6ca5529e941b', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x02321c40f274c1b16eea6914a4d34f060a03d37c', 'value': 0.33653054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0201813e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0xf3ef7ddb830eb8e745ac600faedf45af64f4f0dde9e0aa4d32ed6fba5d19c103:log:71', 'hash': '0xf3ef7ddb830eb8e745ac600faedf45af64f4f0dde9e0aa4d32ed6fba5d19c103', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0295166e6c4cd62558a7c64346b4a05cdc28e650', 'value': 0.00615638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0964d6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0xc811fce39e8bea5312f08f82b5038b9e64cf5161318487e6b1206fc766aafd94:log:72', 'hash': '0xc811fce39e8bea5312f08f82b5038b9e64cf5161318487e6b1206fc766aafd94', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x02a1f20c25f2733cc79d6dd09937d6d474d15037', 'value': 0.0090798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ddacc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0xd20bb8075f90775e0e2c1604de54fc2d22cb789080bdeaae8d067ae12c71ce63:log:73', 'hash': '0xd20bb8075f90775e0e2c1604de54fc2d22cb789080bdeaae8d067ae12c71ce63', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x02af437baf7ca6b5b2b380e33e180af8991898be', 'value': 0.02230054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x220726', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02ed', 'uniqueId': '0xc81e7b537b7195f4efa4e7709d81b6817ba96f21e7ca70be757230b0997936c8:log:24', 'hash': '0xc81e7b537b7195f4efa4e7709d81b6817ba96f21e7ca70be757230b0997936c8', 'from': '0x9194eea248b97a2b7ff271d654b9112ecd39ad88', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 429.23489065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09fe707729', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:01:35.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x1fa16caf20b5f58f97a3eac5afdff0fd6cb5d4f00f9c02bda1095e0e4e4e81b5:log:108', 'hash': '0x1fa16caf20b5f58f97a3eac5afdff0fd6cb5d4f00f9c02bda1095e0e4e4e81b5', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1a7c9b496d72d97ff8c20cfcd6db050f7c6ceb10', 'value': 0.00345812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0546d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0xae019094c2216b4b74d0f21c88b44b29f781abb891141d9fe440ac64b54efa19:log:109', 'hash': '0xae019094c2216b4b74d0f21c88b44b29f781abb891141d9fe440ac64b54efa19', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1ac54695617b986fef5513b541198fffd8c61cb8', 'value': 0.00504996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b4a4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x0c0c83f9132a88d1bac078711a4861a1bb2541a6c583165b8ddd407b735ccff7:log:110', 'hash': '0x0c0c83f9132a88d1bac078711a4861a1bb2541a6c583165b8ddd407b735ccff7', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1b2dfe388f3e3d59d142f1c7c94b1e4f5998e4cf', 'value': 0.00307389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04b0bd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0xedd3cf2b10bd778624b86ff4bd804b18e3679bccda63e27b352a34dfca1dfa38:log:111', 'hash': '0xedd3cf2b10bd778624b86ff4bd804b18e3679bccda63e27b352a34dfca1dfa38', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1b302519fc30e42ca8b37c0ec32158fcf2f8d48f', 'value': 0.00799349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c3275', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x4250ab745629201d5e55b7263be3eb63aeebd1a15247877af17b294201609fc0:log:112', 'hash': '0x4250ab745629201d5e55b7263be3eb63aeebd1a15247877af17b294201609fc0', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1b6b5c7dc3be0a390f434f01870d1228913ec3cd', 'value': 0.01598698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1864ea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0xb3d3ef97c069420b49a100ab0688e012d3b05cee85bb95dc128909824f749d12:log:113', 'hash': '0xb3d3ef97c069420b49a100ab0688e012d3b05cee85bb95dc128909824f749d12', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1c3b4ebc14b51e149633eae8aafc3381b3afcfb4', 'value': 0.06847645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x687c9d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x9a67b35edea8dc836867d052d3621711aefe079161495a6ba39d962d5de207bc:log:114', 'hash': '0x9a67b35edea8dc836867d052d3621711aefe079161495a6ba39d962d5de207bc', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1c603667dc47fdd019af6f6f306caf01bdd2fb9f', 'value': 0.00174964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ab74', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0xe558c885fa4bafeac1533bbf3415f03944276910de0ddf4dccb789fa5f8ae3f0:log:115', 'hash': '0xe558c885fa4bafeac1533bbf3415f03944276910de0ddf4dccb789fa5f8ae3f0', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1c8d2f8f64ddc032220481c111ee1ef845844102', 'value': 0.00936576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0e4a80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x185261fccc8e69d55c88adb9d5d2cecc7fe556d9736d1b4442c72f472faf8f6c:log:116', 'hash': '0x185261fccc8e69d55c88adb9d5d2cecc7fe556d9736d1b4442c72f472faf8f6c', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x02d4c1ed3fc0b471901ebb567bc88604c1c69671', 'value': 0.03096763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f40bb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0xbd932579d58350ec3fd0e6a8f40ab4d34e1fa18266c8c96ff9f6c91cce156b99:log:117', 'hash': '0xbd932579d58350ec3fd0e6a8f40ab4d34e1fa18266c8c96ff9f6c91cce156b99', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x02f7e85460d4a0a3bd528c2bd7640712b139903e', 'value': 0.22237264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01535050', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x32541b17fee983ef34398f15c0011e02dab00078a5095b0b2200cbcab5e318b8:log:118', 'hash': '0x32541b17fee983ef34398f15c0011e02dab00078a5095b0b2200cbcab5e318b8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2f498e9940f39731ca47ed36f52d8bb99ef5d736', 'value': 0.21830358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014d1ad6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x62c15bfcb1477fd9ffa8b9e182b3685a15b17a1c19856c0b5c0c27e61042b908:log:119', 'hash': '0x62c15bfcb1477fd9ffa8b9e182b3685a15b17a1c19856c0b5c0c27e61042b908', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2f8dbb7c0135f0fae090046d77038ee98e8a2f2e', 'value': 0.01053355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1012ab', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x0a26cd45ea0498389e95d6d0c3fdac3401ae300339e56e9838c69efb23f47461:log:120', 'hash': '0x0a26cd45ea0498389e95d6d0c3fdac3401ae300339e56e9838c69efb23f47461', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2fb2ceeb1743605eddc1f28e7a456553126db354', 'value': 0.0154377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x178e5a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x243d2adf51ed749d984f477c2a61a7f965142c65257816dbeabc54072585cdda:log:121', 'hash': '0x243d2adf51ed749d984f477c2a61a7f965142c65257816dbeabc54072585cdda', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3021cc75b578c171165e9af60d85ee57c4d7a552', 'value': 0.00160248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0271f8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x07a23fdf1cbece9b5badd55b58f6c67884df34a32e67df530daa29ce6a07af12:log:122', 'hash': '0x07a23fdf1cbece9b5badd55b58f6c67884df34a32e67df530daa29ce6a07af12', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x30d3b77ac63c0e796e3e74df093a7ce4021edfa0', 'value': 0.01364181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14d0d5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x1d2a3f41e36da7685b9461729c21c5b648138c1e10aaba3b66093adaea9bd425:log:123', 'hash': '0x1d2a3f41e36da7685b9461729c21c5b648138c1e10aaba3b66093adaea9bd425', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x30e56764dc5fffd658c4a290408cb41ddeb9aa5f', 'value': 0.03574501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x368ae5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x58f3eb710e44a6da2e497b6ec6ecb27522bdc1878089c84a2c8341418b54426c:log:124', 'hash': '0x58f3eb710e44a6da2e497b6ec6ecb27522bdc1878089c84a2c8341418b54426c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x30c40d09609301729dcd68859f2acb435272ff26', 'value': 0.18014103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0112df97', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x1455072dbb24ba61b604dc69a2ab544860077d69c8f788b05a487ac94e390b0a:log:125', 'hash': '0x1455072dbb24ba61b604dc69a2ab544860077d69c8f788b05a487ac94e390b0a', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x30cde1ea3eef5c3e5fe5c15d368bbb83b802fbec', 'value': 0.13161761, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc8d521', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x3bf52d273ffd000b0e315fde510626815f1e789b3da55efdb9d34f6b160f23e8:log:126', 'hash': '0x3bf52d273ffd000b0e315fde510626815f1e789b3da55efdb9d34f6b160f23e8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3119bf1d8d0aea0b9d5ec8d8d37242fa433a5fdf', 'value': 0.02885157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2c0625', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02f2', 'uniqueId': '0xeaf311075245a477ba0f598f2def26c3e8f76c1cbe8ff3499f7fff395f0a6563:log:64', 'hash': '0xeaf311075245a477ba0f598f2def26c3e8f76c1cbe8ff3499f7fff395f0a6563', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x313af9c42a4338c13221a69eefbce0df66b4c4e9', 'value': 0.00355723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x056d8b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:00.000Z'}}, {'blockNum': '0x7f02f2', 'uniqueId': '0xe89d8a5854adc2d7f8e88e5368eda603babf81f3dcbd9052325d66c21d5d3e74:log:65', 'hash': '0xe89d8a5854adc2d7f8e88e5368eda603babf81f3dcbd9052325d66c21d5d3e74', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3151add7e14c998318564655a14aafc3a2d02304', 'value': 0.00393713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0601f1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:00.000Z'}}, {'blockNum': '0x7f02f2', 'uniqueId': '0x47eb207f1114ff327ebf9d9f2904311c83871bebff9a607fba2f8d88906ee7ae:log:66', 'hash': '0x47eb207f1114ff327ebf9d9f2904311c83871bebff9a607fba2f8d88906ee7ae', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3182f521cff947064d30db8023052ac4205b9db4', 'value': 0.00176134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02b006', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:00.000Z'}}, {'blockNum': '0x7f02f2', 'uniqueId': '0xe164bc5882f3ad204e7134a7449fc417750cf693a107a633f6aea2cc1726ddba:log:67', 'hash': '0xe164bc5882f3ad204e7134a7449fc417750cf693a107a633f6aea2cc1726ddba', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1cc82585d00a49ad325771315a7cd4f2294ea1af', 'value': 0.02205929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x21a8e9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:00.000Z'}}, {'blockNum': '0x7f02f2', 'uniqueId': '0xfc2a01b83821f7e535fb1e80eed097daf11f736501330c481958ba2969249525:log:68', 'hash': '0xfc2a01b83821f7e535fb1e80eed097daf11f736501330c481958ba2969249525', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1d649e3f11866c443b4272070b308f3325a7f8be', 'value': 0.09520148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x914414', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:00.000Z'}}, {'blockNum': '0x7f02f2', 'uniqueId': '0x8156155b9e4fc99521167d85b6c99b53ba73299ee38cec768b21b94143b53c86:log:69', 'hash': '0x8156155b9e4fc99521167d85b6c99b53ba73299ee38cec768b21b94143b53c86', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1dd8ae3102eec14c3c98611caf70e8c9453ea98f', 'value': 0.00912561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0decb1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:00.000Z'}}, {'blockNum': '0x7f02f2', 'uniqueId': '0x10478243013bc9f86da55480b7806f3fcee97d7dc5e996712df53a4daaf4d858:log:70', 'hash': '0x10478243013bc9f86da55480b7806f3fcee97d7dc5e996712df53a4daaf4d858', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1e2476533d0782d7018b2b8498f3f1123e208ddd', 'value': 0.01252199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x131b67', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:00.000Z'}}, {'blockNum': '0x7f02f2', 'uniqueId': '0xabd6a9d27f726bec93174f65aa46ede5f5d1775290fe45d082c0a4c616e9c77c:log:71', 'hash': '0xabd6a9d27f726bec93174f65aa46ede5f5d1775290fe45d082c0a4c616e9c77c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1a529dd8ee6bcd5a9fa53887048c5d7b3df8329c', 'value': 0.08813427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x867b73', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:00.000Z'}}, {'blockNum': '0x7f02f3', 'uniqueId': '0x4d7def15c77582eee53e504e9fdc6365bb6f94f7e17f9d0a23dd97a19f8a921d:log:87', 'hash': '0x4d7def15c77582eee53e504e9fdc6365bb6f94f7e17f9d0a23dd97a19f8a921d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1ac486bf81d83edb4b8780918d4525b01328ace0', 'value': 0.00960591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ea84f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:11.000Z'}}, {'blockNum': '0x7f02f3', 'uniqueId': '0xd3498621b00f3db34371e6a9f1a04039c6396cd3295b67e9b8af626edf1e743b:log:88', 'hash': '0xd3498621b00f3db34371e6a9f1a04039c6396cd3295b67e9b8af626edf1e743b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x318ec61f4afcb385e3544acc11206db3a0e6b92a', 'value': 0.07988232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x79e408', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:11.000Z'}}, {'blockNum': '0x7f02fb', 'uniqueId': '0x1baf5edbc7ebad5f2b2ed0647703dbb9e16f3a0ebc434bc1cefd3f480ba64484:log:52', 'hash': '0x1baf5edbc7ebad5f2b2ed0647703dbb9e16f3a0ebc434bc1cefd3f480ba64484', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1b5d06c050066a2efc8546012bfbca75ea851c9e', 'value': 0.03128783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2fbdcf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:26.000Z'}}, {'blockNum': '0x7f02fb', 'uniqueId': '0x033c991746930df80af3fe878803286c5dcf00313aaa0181ac5ddd9142d1859a:log:53', 'hash': '0x033c991746930df80af3fe878803286c5dcf00313aaa0181ac5ddd9142d1859a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1bad6578ca1e3b0a0a25326d8bd223126b8f3bc5', 'value': 0.00432266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06988a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:26.000Z'}}, {'blockNum': '0x7f02fb', 'uniqueId': '0x7643092735c616e7340746a6c528807624107cf9b503568fb79dfd1cba533e27:log:54', 'hash': '0x7643092735c616e7340746a6c528807624107cf9b503568fb79dfd1cba533e27', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1c24d08f685fd1da0fd99df05090ff3b53e911de', 'value': 0.00219563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0359ab', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:26.000Z'}}, {'blockNum': '0x7f02fb', 'uniqueId': '0xa5e3036b7b5190bea950dbc1a44a3586f50115ab04da130b2555b9f0d4ed037c:log:55', 'hash': '0xa5e3036b7b5190bea950dbc1a44a3586f50115ab04da130b2555b9f0d4ed037c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1c57b30a08a0a748f8379a20f4decf3846343220', 'value': 0.01070373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x105525', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:26.000Z'}}, {'blockNum': '0x7f02fd', 'uniqueId': '0xe12b8491ddb1aeae95ee49327508cd774e132734e1543e36613458f2c68ab480:log:44', 'hash': '0xe12b8491ddb1aeae95ee49327508cd774e132734e1543e36613458f2c68ab480', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1c59d5fff9668e5b929a4d8f19cffd757281ad9e', 'value': 0.00109781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01acd5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:43.000Z'}}, {'blockNum': '0x7f02fe', 'uniqueId': '0xc838f59794a65f41a731de4aada5b3bbf5c333d9a7195a8f80e09c56c5b8fc7b:log:89', 'hash': '0xc838f59794a65f41a731de4aada5b3bbf5c333d9a7195a8f80e09c56c5b8fc7b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x31c1d6d32a1ef79d216a12764ce08edb0f2a32e7', 'value': 0.19053644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0122bc4c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:49.000Z'}}, {'blockNum': '0x7f02fe', 'uniqueId': '0x287473a954e2c536a972b27d1608c769c4ab8cbe66244aaca574e501faa7ce74:log:90', 'hash': '0x287473a954e2c536a972b27d1608c769c4ab8cbe66244aaca574e501faa7ce74', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x31f3be1d114864cacae0c810d1a84a46c6735bcd', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:49.000Z'}}, {'blockNum': '0x7f02fe', 'uniqueId': '0xef11065dd961cdcdbbb3bba5d57b162d9a61c8d6c36316f04b5eac8793b3adbe:log:91', 'hash': '0xef11065dd961cdcdbbb3bba5d57b162d9a61c8d6c36316f04b5eac8793b3adbe', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x31ef9748a55e55d73c67457133f00ae0b0f509b5', 'value': 0.20928962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x013f59c2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:49.000Z'}}, {'blockNum': '0x7f02fe', 'uniqueId': '0xdec2fb01814e177f351e7f808cb980c841abee3ace893e6eded03133a198e121:log:92', 'hash': '0xdec2fb01814e177f351e7f808cb980c841abee3ace893e6eded03133a198e121', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x31eb7da8c071f1c52b6b0dfd36ced2643e740bef', 'value': 0.0036263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x058886', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:49.000Z'}}, {'blockNum': '0x7f02fe', 'uniqueId': '0x2a9813d17bf0ac912764baa8ebf8e7f691ef49f495bc6c76d2b24c52124bd99d:log:93', 'hash': '0x2a9813d17bf0ac912764baa8ebf8e7f691ef49f495bc6c76d2b24c52124bd99d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x323f83d12b4050e0922c5885b0a3382fb09f9466', 'value': 0.03149705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x300f89', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:49.000Z'}}, {'blockNum': '0x7f02ff', 'uniqueId': '0x0963fa4c1eac5091dd2c8332ada07a11e7ff03e306f5ef0cbf42f3d1b05d52f1:log:61', 'hash': '0x0963fa4c1eac5091dd2c8332ada07a11e7ff03e306f5ef0cbf42f3d1b05d52f1', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1c8af860d59430bfc32ca71c7d0d5a9395f83891', 'value': 0.00391097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05f7b9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:02.000Z'}}, {'blockNum': '0x7f02ff', 'uniqueId': '0x1963da9970606caa29a6974d0c69f6859be68eaa70c27df71cd981ea2645ae15:log:62', 'hash': '0x1963da9970606caa29a6974d0c69f6859be68eaa70c27df71cd981ea2645ae15', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1c94886ff66e6e8f98cfa83215955c21d846efb5', 'value': 0.01694757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x19dc25', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:02.000Z'}}, {'blockNum': '0x7f02ff', 'uniqueId': '0x7a4c26ccfe5f62476030d86b35c2a6fdd15da9663662bd4d320e74bcc6b3c5ba:log:63', 'hash': '0x7a4c26ccfe5f62476030d86b35c2a6fdd15da9663662bd4d320e74bcc6b3c5ba', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x324c43b2e66a7e8aa8a8da918e844120c688a098', 'value': 0.00383352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05d978', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:02.000Z'}}, {'blockNum': '0x7f0300', 'uniqueId': '0x3a5c72f286e3e6d1f50d8d562201aaaa8e673c701363e4a51094929f2315f4a4:log:23', 'hash': '0x3a5c72f286e3e6d1f50d8d562201aaaa8e673c701363e4a51094929f2315f4a4', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1d8779a176f4c8dbd75cb8b76c9a33187ca49a04', 'value': 0.00343068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x053c1c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:15.000Z'}}, {'blockNum': '0x7f0300', 'uniqueId': '0x2efce341c1f3efafc4a8a81d8468118c2dabc011f9e6a1831f24ae6376682247:log:24', 'hash': '0x2efce341c1f3efafc4a8a81d8468118c2dabc011f9e6a1831f24ae6376682247', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0315e9138ce0a4d69122e615482c799b2fdc89b0', 'value': 0.41097117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0273179d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:15.000Z'}}, {'blockNum': '0x7f0300', 'uniqueId': '0xcc441a924cd4b6d34a174e4596bdcd741df2973f1885a5a1ce6391e9470b3dc1:log:25', 'hash': '0xcc441a924cd4b6d34a174e4596bdcd741df2973f1885a5a1ce6391e9470b3dc1', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x034f68d5beed0226928c2e29b381b7710973cb13', 'value': 0.23848929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016be7e1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:15.000Z'}}, {'blockNum': '0x7f0300', 'uniqueId': '0xf0af1c5a457a2d0a524ceb6f36dce8d58781742bfdf9984e624c5926dad891cb:log:26', 'hash': '0xf0af1c5a457a2d0a524ceb6f36dce8d58781742bfdf9984e624c5926dad891cb', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x03c13bd6c3d6d8cbee4f2b87c98ee5875086833e', 'value': 1.375e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x055f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:15.000Z'}}, {'blockNum': '0x7f0300', 'uniqueId': '0x4464e655a1801f1002acce4e3b2bb70e58aa23914e99f86f6edd73434cc69bfc:log:27', 'hash': '0x4464e655a1801f1002acce4e3b2bb70e58aa23914e99f86f6edd73434cc69bfc', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x042b092a64559e0be1e4c4e46dba56fe4696ea58', 'value': 0.00320544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04e420', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:15.000Z'}}, {'blockNum': '0x7f0300', 'uniqueId': '0xb698912ed04d2f064dbe13190de8cd0ca9a447ffc0802bdcd183d8e28427f21e:log:28', 'hash': '0xb698912ed04d2f064dbe13190de8cd0ca9a447ffc0802bdcd183d8e28427f21e', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x04548899ffe9b75634b64cb8410374d03e844139', 'value': 0.01722411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1a482b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:15.000Z'}}, {'blockNum': '0x7f0302', 'uniqueId': '0xead0f57878733c81e15a1eb277fd5cfd22918aab5fabdc5d0c630a7a89af2390:log:77', 'hash': '0xead0f57878733c81e15a1eb277fd5cfd22918aab5fabdc5d0c630a7a89af2390', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x04557982519325fb3f207f606391d520dff491ae', 'value': 0.0002889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x70da', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:48.000Z'}}, {'blockNum': '0x7f0302', 'uniqueId': '0xf166c58d4179b24a5588eb564d322abbab14ca2f50b90ffc0b272384eb7bdb21:log:78', 'hash': '0xf166c58d4179b24a5588eb564d322abbab14ca2f50b90ffc0b272384eb7bdb21', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x04eb922a5821802c5d31e915c63e92a030c32a9d', 'value': 0.00755274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b864a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:48.000Z'}}, {'blockNum': '0x7f0302', 'uniqueId': '0x7760c3d5b7523d5dfc8c4443b2dbdd70ba2ed1733beffaca0c176d305daa7d37:log:79', 'hash': '0x7760c3d5b7523d5dfc8c4443b2dbdd70ba2ed1733beffaca0c176d305daa7d37', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x05071d9b08be19bc2c11388387d614e89db36ecc', 'value': 0.78908309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04b40b95', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:48.000Z'}}, {'blockNum': '0x7f0305', 'uniqueId': '0xc446aa11076cebbe53f31ef07024252b599a6ed4edc1616fe315d27f65d6c727:log:8', 'hash': '0xc446aa11076cebbe53f31ef07024252b599a6ed4edc1616fe315d27f65d6c727', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1d8cad94005380c26df415d3f3e8e8181e9a164c', 'value': 0.00043912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xab88', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:19.000Z'}}, {'blockNum': '0x7f0305', 'uniqueId': '0x9086b6a43a222c0edf5bd524e86c528ca9a831dbfe13d2bf12137782d5dd33ce:log:9', 'hash': '0x9086b6a43a222c0edf5bd524e86c528ca9a831dbfe13d2bf12137782d5dd33ce', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1db7f01cf9fafcdc5b8ef93337aa9091ac731d62', 'value': 0.04617014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x467336', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:19.000Z'}}, {'blockNum': '0x7f0305', 'uniqueId': '0xfa514acfec2c737e1802c3137ecc021288eb55db8dced5ad2dac3d909dabab92:log:10', 'hash': '0xfa514acfec2c737e1802c3137ecc021288eb55db8dced5ad2dac3d909dabab92', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1f214e02ae067e46deb759f9abfa778cd26734d6', 'value': 0.01365412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14d5a4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:19.000Z'}}, {'blockNum': '0x7f0305', 'uniqueId': '0x9b0da6293f7d15da842e732c91b2cc7c555365ae813d427b79924bb0319e76ce:log:11', 'hash': '0x9b0da6293f7d15da842e732c91b2cc7c555365ae813d427b79924bb0319e76ce', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1f7cb6a67f0688ca6f2bcd57b23fdeab959e30ec', 'value': 0.01643297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x191321', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:19.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0xfed1d7979ca199fd4595ed1cc21a2ab3a3781bad7be4189443066add55c11663:log:83', 'hash': '0xfed1d7979ca199fd4595ed1cc21a2ab3a3781bad7be4189443066add55c11663', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x32f98a2061c9bcace6914cdd372f7de10cabef89', 'value': 0.0004835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbcde', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x3f94ab1059eb114cf58d4f73f4c971ebb645c9f3ca42017e16e9528746908cdb:log:84', 'hash': '0x3f94ab1059eb114cf58d4f73f4c971ebb645c9f3ca42017e16e9528746908cdb', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3302195bee4dfe1d27f14c64135ab274f283557b', 'value': 0.19509523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0129b113', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x2de5f53328e5cbbcc47a92bdd5eb9869b83c823a6314100666717d78911d526f:log:85', 'hash': '0x2de5f53328e5cbbcc47a92bdd5eb9869b83c823a6314100666717d78911d526f', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x331252e3b8af250ad737b49bb5608e453dd8b988', 'value': 0.05439458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x52ffe2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0xbaf9083204bae37d0ff82bac37614764fe19b1581140c5ee11de71a52f5bf037:log:86', 'hash': '0xbaf9083204bae37d0ff82bac37614764fe19b1581140c5ee11de71a52f5bf037', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x33843f220346a6ee5f1c2ed16169479e816448bf', 'value': 0.10664791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa2bb57', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x3a176b4ad13f4bab462ff4d88440ca010d50b3dcc20b9866ab915f19a74372e5:log:87', 'hash': '0x3a176b4ad13f4bab462ff4d88440ca010d50b3dcc20b9866ab915f19a74372e5', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x339216fb93b816ee16f4cc6edca95a9939792890', 'value': 0.01757894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ad2c6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x3de92d28e5e46991c86367bf8359b15597ad77918218c25e49d937c8fee54e30:log:88', 'hash': '0x3de92d28e5e46991c86367bf8359b15597ad77918218c25e49d937c8fee54e30', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3392cea0a1fdb485ce2a37de696f692099fb3e7b', 'value': 0.01281294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x138d0e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x83544995509d8c5f91533d77293f4e5a4f9847f46c51487d7f502c30b11cfd00:log:89', 'hash': '0x83544995509d8c5f91533d77293f4e5a4f9847f46c51487d7f502c30b11cfd00', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x33aac15e8dcce4a548d27bdb075b28f2f0803630', 'value': 0.00049732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc244', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0xe518e27dafcde03cc24d44a846df2f622c991a9fd9aa4d2e65760f6456e8cd65:log:90', 'hash': '0xe518e27dafcde03cc24d44a846df2f622c991a9fd9aa4d2e65760f6456e8cd65', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x344aeaa8e9edc542b94235091e9b70d4ebb6ad12', 'value': 0.17433895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010a0527', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x58254033e0d3c4b03ef10d4702cea2c815386daa5af6f63ba05fb00fdde2b771:log:91', 'hash': '0x58254033e0d3c4b03ef10d4702cea2c815386daa5af6f63ba05fb00fdde2b771', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3451622c0f880ae238d720b5693ecf6f8294fb06', 'value': 0.01978926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e322e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x0b8fa11ad1755becf743e5b46cdff4393f81cc1869d282a9223e66faeced81fd:log:92', 'hash': '0x0b8fa11ad1755becf743e5b46cdff4393f81cc1869d282a9223e66faeced81fd', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x34695287d7ea674a510dda1399d3972a18a9337b', 'value': 0.00013814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x35f6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0xf1041231939c181ed23d796c500fe580b7cf2cf473a2500eb7fbd2d8ae953a63:log:93', 'hash': '0xf1041231939c181ed23d796c500fe580b7cf2cf473a2500eb7fbd2d8ae953a63', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3481e7ccf16870f3f6638361ac73caab6ee934b6', 'value': 0.01381449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x151449', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x86055b7ed0b7e9973eea05c294f8517f9f5be29d457ae61d7f65c05bfce21b2e:log:94', 'hash': '0x86055b7ed0b7e9973eea05c294f8517f9f5be29d457ae61d7f65c05bfce21b2e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x348d8adf39e1fc19be932b3f2917c21c825dd978', 'value': 0.00063546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf83a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0xa8d050054b62673297ff87a2d50419fa091353313b3d0a4e1c4061e4c40d59ce:log:95', 'hash': '0xa8d050054b62673297ff87a2d50419fa091353313b3d0a4e1c4061e4c40d59ce', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x34fb1f09c370f9810070a8d2df766afabaf91a76', 'value': 0.002383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03a2dc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0xeaa9605343ffa620389afb96c638f88329eb87e7c04831085b4fd4878cbfd2f4:log:96', 'hash': '0xeaa9605343ffa620389afb96c638f88329eb87e7c04831085b4fd4878cbfd2f4', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x34ea47ac6dbeb55482a029dea7f20fe675ecd2a5', 'value': 0.01471243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x16730b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x7b2f41fa8481f489c1af20ecdf4e0a2de9f697e661c02d0118b4ddd59e914752:log:97', 'hash': '0x7b2f41fa8481f489c1af20ecdf4e0a2de9f697e661c02d0118b4ddd59e914752', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3512ffd48d3f89866ff873fc0637c94443ef77c1', 'value': 0.00031082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x796a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0xc779a779395fdb3993b94347cafd9bcba2bcb786d1d5c1483c00bdf67ef7f975:log:98', 'hash': '0xc779a779395fdb3993b94347cafd9bcba2bcb786d1d5c1483c00bdf67ef7f975', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x357bdf2a8b28eda9374cc3dbb6cc29310eab6c10', 'value': 0.56870829, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0363c7ad', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x21dc662da5e6d3287319841b96936306a9d685ad973b22b771ddb43eb9ee0f96:log:99', 'hash': '0x21dc662da5e6d3287319841b96936306a9d685ad973b22b771ddb43eb9ee0f96', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x35a98c72d40cae37fb6120d584a5858452868042', 'value': 3.453e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d7d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x0181371ba6c1e5d07159496d80edd89d2f1093706c3f75b05c4d46925735ebd8:log:100', 'hash': '0x0181371ba6c1e5d07159496d80edd89d2f1093706c3f75b05c4d46925735ebd8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x35ee023dee15dedf0f3b3ca5885ab457d2b8037d', 'value': 0.00262475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04014b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x39351547ba0f1348cb0b2b370858897f1ff52d2c39e1a8456a574511ae0fe341:log:101', 'hash': '0x39351547ba0f1348cb0b2b370858897f1ff52d2c39e1a8456a574511ae0fe341', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x35a6623588b2f97ff5ad4c0526567997fd212eea', 'value': 0.01333098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14576a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x07e549a654a2c9e7da4b4822d9ee823fd13a1294db3dd584bb03dd8e140ff338:log:102', 'hash': '0x07e549a654a2c9e7da4b4822d9ee823fd13a1294db3dd584bb03dd8e140ff338', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x36b34c106746e8b44af3124409805e9c17a36dad', 'value': 0.0348816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3539a0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0xa0d3dae26be0d2fa5cb12dba1d51b16118143e10c4ecf70a01a1544662de69ef:log:103', 'hash': '0xa0d3dae26be0d2fa5cb12dba1d51b16118143e10c4ecf70a01a1544662de69ef', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x36dcf60deda3ec2b90bbcafa4886d334f4eeed86', 'value': 0.36439189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x022c0495', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x2e3af07ec32c8e1b437e5299293f16636e8f573ada5b2838eaede1a731bdfbea:log:104', 'hash': '0x2e3af07ec32c8e1b437e5299293f16636e8f573ada5b2838eaede1a731bdfbea', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x36a163ae5b3d370273cc178338137609b0bf0c73', 'value': 0.02623372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x28078c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0xcbe941f3acff7b08bb78b6be40694d86e7a21f810ddb4dada18e0446dddf07fa:log:105', 'hash': '0xcbe941f3acff7b08bb78b6be40694d86e7a21f810ddb4dada18e0446dddf07fa', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x36d4a91ebd99a313f5cb4060e84a96d7ac573ba4', 'value': 0.03805893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a12c5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x99e5ddb6a9bb1c02261e12a48ba4ffbba4878ca54f67dfa39379c201c5e8694d:log:106', 'hash': '0x99e5ddb6a9bb1c02261e12a48ba4ffbba4878ca54f67dfa39379c201c5e8694d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x372e9546f3b0261ca0dbd2a4eb0b82d29662a3d6', 'value': 0.03115169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f88a1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x39cc1ef32d52618bfb353eac679cb1a1c9e129571c8332797ba00684d89aa54a:log:107', 'hash': '0x39cc1ef32d52618bfb353eac679cb1a1c9e129571c8332797ba00684d89aa54a', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3787c57dc7a951c6e954cb64c121a6c9b1a41b21', 'value': 0.0646173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x629922', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x8104331289a459f82fcdb8dd8d3ddeca4003c73dd5c7980714f2afdda8ca77a5:log:108', 'hash': '0x8104331289a459f82fcdb8dd8d3ddeca4003c73dd5c7980714f2afdda8ca77a5', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x37ab4f0b9cf56f720d28aa9b94ccd17e4b4d0620', 'value': 0.00066309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010305', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x78c34534d482aa6e95755b34721c674bc593a0f5826b446bc06d5c3904ff6ef1:log:109', 'hash': '0x78c34534d482aa6e95755b34721c674bc593a0f5826b446bc06d5c3904ff6ef1', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x388f7f9f6a9c1eede50754d01584b709d0315bf5', 'value': 0.00127093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01f075', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0309', 'uniqueId': '0x8c226fbca79dae956d73a2a9bf0600dec8b3dc1220daa4233e68cf4495849522:log:22', 'hash': '0x8c226fbca79dae956d73a2a9bf0600dec8b3dc1220daa4233e68cf4495849522', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x38c4f8b6a9fba073120ce0ae9104b755d346fc1e', 'value': 0.00024866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6122', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:21.000Z'}}, {'blockNum': '0x7f0309', 'uniqueId': '0x9c44bfc02a8a5d74d1cbe87778a0ffc89c6724fe0230cb297530485cae841b5d:log:25', 'hash': '0x9c44bfc02a8a5d74d1cbe87778a0ffc89c6724fe0230cb297530485cae841b5d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1fc44f21ba30d6dfb0595d281fcb9f4ae7756875', 'value': 0.01262491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x13439b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:21.000Z'}}, {'blockNum': '0x7f0309', 'uniqueId': '0x74db4e48cf16546c04a7184d3cf849e5701124aa8e7aa45ea6f119e1027ac0c9:log:26', 'hash': '0x74db4e48cf16546c04a7184d3cf849e5701124aa8e7aa45ea6f119e1027ac0c9', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x205d9063450191cae5cb955cc754762ade8b17a4', 'value': 0.0054342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x084abc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:21.000Z'}}, {'blockNum': '0x7f0309', 'uniqueId': '0x2cf9613a906fd85dbad497cc7053b00599f78600461823965ee69a0cd80af5c6:log:27', 'hash': '0x2cf9613a906fd85dbad497cc7053b00599f78600461823965ee69a0cd80af5c6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x20e1d9a6efe246b2491983b59ceb77e3e0a8d7a9', 'value': 0.00074102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x012176', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:21.000Z'}}, {'blockNum': '0x7f0309', 'uniqueId': '0xab0c50988c9000f674a4a845c1fda39c75e116a3e0cbc3e92aeef68c0a7c036b:log:28', 'hash': '0xab0c50988c9000f674a4a845c1fda39c75e116a3e0cbc3e92aeef68c0a7c036b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x20f5c037c374098afc8e5c451f9ee7b97ed46f92', 'value': 0.00212702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x033ede', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:21.000Z'}}, {'blockNum': '0x7f0309', 'uniqueId': '0x95bcd31330682e12e8aa38647518b707f1d2ffeabe027f35f7a8ca357ea52fd8:log:29', 'hash': '0x95bcd31330682e12e8aa38647518b707f1d2ffeabe027f35f7a8ca357ea52fd8', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x20f53ce559324b7859b34b5eed66df3a9886e2e2', 'value': 0.00872766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d513e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:21.000Z'}}, {'blockNum': '0x7f030a', 'uniqueId': '0x48a5942b2ae9a4f8ae2df9fb5d6226a7546749173e62ec4963177d43472a74c8:log:138', 'hash': '0x48a5942b2ae9a4f8ae2df9fb5d6226a7546749173e62ec4963177d43472a74c8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x38d5e0befd52a6e50a4a18f06b788f5af0cfc8cb', 'value': 0.77703091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04a1a7b3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:24.000Z'}}, {'blockNum': '0x7f030a', 'uniqueId': '0x1ec21dc95417e25e8a385e60bff4119dd3e80b595b0e6fd04f8f64c913f3dea1:log:139', 'hash': '0x1ec21dc95417e25e8a385e60bff4119dd3e80b595b0e6fd04f8f64c913f3dea1', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x38f433ceaaacdf9fa939f9fb2e0257ea61725e31', 'value': 0.03557232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x364770', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:24.000Z'}}, {'blockNum': '0x7f030a', 'uniqueId': '0xe931eb734c758d0c3bbcbfcded02f898dc34221d8ce30525b70eecfc965f56f7:log:140', 'hash': '0xe931eb734c758d0c3bbcbfcded02f898dc34221d8ce30525b70eecfc965f56f7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x38b326f35fafcf697bda7511705e68ce29123ec5', 'value': 0.03881873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b3b91', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:24.000Z'}}, {'blockNum': '0x7f030a', 'uniqueId': '0xdab3638c9a4ccfbd4b9b9a6cfa816f250f73556696ebce9ecfaf11a1be4ff20e:log:141', 'hash': '0xdab3638c9a4ccfbd4b9b9a6cfa816f250f73556696ebce9ecfaf11a1be4ff20e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x215eefa97889a0235135c65facfcce13d861ebb0', 'value': 0.00038423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9617', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:24.000Z'}}, {'blockNum': '0x7f030d', 'uniqueId': '0x94589ddb0ae3d668f567ea960d685ac7c63abb1e25c750ace8df5f5daa15674e:log:115', 'hash': '0x94589ddb0ae3d668f567ea960d685ac7c63abb1e25c750ace8df5f5daa15674e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2162634ca9755479b74f4f88d207242667f771ad', 'value': 0.00473434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07395a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:32.000Z'}}, {'blockNum': '0x7f030d', 'uniqueId': '0xb7e0cb1967a05b326481fbbb680943423e5528c177a23ad1afafbcc75ea283d1:log:116', 'hash': '0xb7e0cb1967a05b326481fbbb680943423e5528c177a23ad1afafbcc75ea283d1', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x218c59cdcd00e616b3e8281bb4956c5e55ed2a72', 'value': 0.01286506, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x13a16a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:32.000Z'}}, {'blockNum': '0x7f030d', 'uniqueId': '0xf6521ff7370819ff16dbbee9ca1c874bba99395492320f84798c7f9f3fa2c1bf:log:117', 'hash': '0xf6521ff7370819ff16dbbee9ca1c874bba99395492320f84798c7f9f3fa2c1bf', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x21bee34c6ecfb2d173246c850153d34ab6972c13', 'value': 0.00590077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0900fd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:32.000Z'}}, {'blockNum': '0x7f030d', 'uniqueId': '0x999fa7ccb65e558bb1a573f67cb87f78679c15b505b45dd911a412b77639b1d7:log:118', 'hash': '0x999fa7ccb65e558bb1a573f67cb87f78679c15b505b45dd911a412b77639b1d7', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x21a693a7b998589c5308c44817588f7508729b96', 'value': 0.0006038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xebdc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:32.000Z'}}, {'blockNum': '0x7f030d', 'uniqueId': '0x24a32bd2048caa754f303ba43946c62e7a1968fa88ee5a955095af2dc741cd0b:log:122', 'hash': '0x24a32bd2048caa754f303ba43946c62e7a1968fa88ee5a955095af2dc741cd0b', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x05354611d2c7307e1a7ce6abefbc6a8193ecab8e', 'value': 0.00349434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0554fa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:32.000Z'}}, {'blockNum': '0x7f030d', 'uniqueId': '0x976f6d63e1201a7e68e0b412e59082f87b38e84802a8e49b5ec33a03d8d765fd:log:123', 'hash': '0x976f6d63e1201a7e68e0b412e59082f87b38e84802a8e49b5ec33a03d8d765fd', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x05b8a57c01ff427df8bc4a8e9622e0c5e6cd3932', 'value': 0.77864132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04a41cc4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:32.000Z'}}, {'blockNum': '0x7f030d', 'uniqueId': '0x12afeeee52dc3ad6bf40f32bc4ff47958c9032fbb953d29110cb47c93c34f93d:log:124', 'hash': '0x12afeeee52dc3ad6bf40f32bc4ff47958c9032fbb953d29110cb47c93c34f93d', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0612ea07df480b06bef72a2591afe76c1be7f494', 'value': 0.23416263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01654dc7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:32.000Z'}}, {'blockNum': '0x7f030f', 'uniqueId': '0x30aa664b09d11cca12347fcd440e208a9b9a69a1ef09b5a61679a93a30eec63b:log:5', 'hash': '0x30aa664b09d11cca12347fcd440e208a9b9a69a1ef09b5a61679a93a30eec63b', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'value': 41760, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03cc4cff2000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:48.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xb3212ce01f060bf763518d4c9f4cde3d12c56273a9d7b9eb5509d4f21890e6ab:log:59', 'hash': '0xb3212ce01f060bf763518d4c9f4cde3d12c56273a9d7b9eb5509d4f21890e6ab', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x21ae694cc0e60ba2da6197b65ee72a5de1bb67a4', 'value': 0.01420303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x15ac0f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xf018482e25d7c244cda4f03539dce1e3f1751ed9c783214b04fce160a6063724:log:60', 'hash': '0xf018482e25d7c244cda4f03539dce1e3f1751ed9c783214b04fce160a6063724', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x21d0d2216fd306803260abd43367dac2f36003b6', 'value': 0.01138987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x11612b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xf1901730b2d5145b3bfd1db7b5a68479f6916f9e19248e322635831df9b9da43:log:61', 'hash': '0xf1901730b2d5145b3bfd1db7b5a68479f6916f9e19248e322635831df9b9da43', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x220ba70e7ace7c799bfb643f148087e81a04c6de', 'value': 0.02398048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x249760', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x520592908ff0fadee7dd14d171ad2c520d485707ee5748c36acf26d654022d86:log:62', 'hash': '0x520592908ff0fadee7dd14d171ad2c520d485707ee5748c36acf26d654022d86', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x224835890c0f377366ab57ef2a1a6e0d53258afe', 'value': 0.01830613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1beed5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xce022118bd15c57abdf9960ddd0c71cbd80c548d2f5e09762356b93aac35783e:log:63', 'hash': '0xce022118bd15c57abdf9960ddd0c71cbd80c548d2f5e09762356b93aac35783e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x22b521db01bf5da475fe8afaec000f7d05435947', 'value': 0.0135855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14bad6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x906d6f61afe5e3d9a027dc9182c04777295a98d481b3f7209e12cb425f3ffc46:log:64', 'hash': '0x906d6f61afe5e3d9a027dc9182c04777295a98d481b3f7209e12cb425f3ffc46', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x22f247b071b697bf904b9f3fd7e2f28b352716d0', 'value': 0.00583216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08e630', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x327d8b74b48107c59473abfebe60e992479d59fa59157ee4fc1c6da385550574:log:65', 'hash': '0x327d8b74b48107c59473abfebe60e992479d59fa59157ee4fc1c6da385550574', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x22f6799c9b10dfcff14da9a6d434810cddff7c72', 'value': 0.03835504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a8670', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xafb309b87f66c2933cc7ea252b8957f0cbe2acfadcfd800bddd17ea214f86d15:log:66', 'hash': '0xafb309b87f66c2933cc7ea252b8957f0cbe2acfadcfd800bddd17ea214f86d15', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2305ab379e5bd340c35b6dafa9c2208402518f00', 'value': 0.0105665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x101f8a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x2ed0e44d42155c02b37e0eccb057ba3607d3fd5d411f77475d8560b7899bb156:log:67', 'hash': '0x2ed0e44d42155c02b37e0eccb057ba3607d3fd5d411f77475d8560b7899bb156', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x232b2a2820ac4119f31960746e3403997612164c', 'value': 0.01646728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x192088', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x4691491212fe6b1fe358ffca54983fb77ee1faec5e97a179fc8b26bf485fd0e8:log:68', 'hash': '0x4691491212fe6b1fe358ffca54983fb77ee1faec5e97a179fc8b26bf485fd0e8', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2344cbbccd41759bd140cf7645bbec1dba9c05e0', 'value': 0.00568121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08ab39', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x7940bec48f211560e544f678a755c82351d7ca2a72a1a1c56988e14f6f6c502a:log:69', 'hash': '0x7940bec48f211560e544f678a755c82351d7ca2a72a1a1c56988e14f6f6c502a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x234e4b988df2d1b1f20a3b947e591813e074b507', 'value': 0.00476865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0746c1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xadd040afb278f9537cccadb2f154446e99ddba67bd36414f0bdd36911ea313e6:log:70', 'hash': '0xadd040afb278f9537cccadb2f154446e99ddba67bd36414f0bdd36911ea313e6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x238062b9601fba8238b5642e69282607dff60dff', 'value': 0.00692998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a9306', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x4cf91d4a26814a941e7ea8358f272d6a11d846ba8b3faec45aa38559180df8ef:log:71', 'hash': '0x4cf91d4a26814a941e7ea8358f272d6a11d846ba8b3faec45aa38559180df8ef', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x238e5c464bd4011bff06dc81fa3763f5ff0656fd', 'value': 0.00514602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07da2a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xe78b89d0b1b298833dbf3c6201e555a6ab2a1075ae4ac7ab758796db5da65d48:log:72', 'hash': '0xe78b89d0b1b298833dbf3c6201e555a6ab2a1075ae4ac7ab758796db5da65d48', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x239bdf8e418068babb4073f1b34c4d9e3309096d', 'value': 0.0010292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x019208', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xfd43bfd01f0317ac914e75f10675a19f0f19a1e4f1787227849eed06f203a9a7:log:73', 'hash': '0xfd43bfd01f0317ac914e75f10675a19f0f19a1e4f1787227849eed06f203a9a7', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x23cb4612432fcfffee616c83c0ad90422d633103', 'value': 2.744e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ab8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x3db84cd0dd888a8cd0fcdbdce44294b375af44750ae71c306680d666086f70f9:log:74', 'hash': '0x3db84cd0dd888a8cd0fcdbdce44294b375af44750ae71c306680d666086f70f9', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x23dfbc4c028c072df5706492fc09dc85a91fde1d', 'value': 0.00212702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x033ede', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xefedddce3969d601b445b729719f4480fb83b7209f536d597a7e6d98fb21ab43:log:75', 'hash': '0xefedddce3969d601b445b729719f4480fb83b7209f536d597a7e6d98fb21ab43', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x242fc9a0f065d4664483c592372783514ca88e0e', 'value': 8.233e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2029', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x496566835bb35684e709db1880e5522dd7bb9a55b972c69b3c1fa0555dfc6bb5:log:76', 'hash': '0x496566835bb35684e709db1880e5522dd7bb9a55b972c69b3c1fa0555dfc6bb5', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3917c9627812351b9b60054affd8e0860c6dc931', 'value': 0.00052495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xcd0f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x15184a2715ce1eff7a2ac650cce9cd47e6509c87ff35bb10e8347000ad354248:log:77', 'hash': '0x15184a2715ce1eff7a2ac650cce9cd47e6509c87ff35bb10e8347000ad354248', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3922c384c307051add80079d8f7e35faf0c9016d', 'value': 0.02165422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x210aae', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x5b6160ad0ceafff4723d96d54771bb24988df757b3e7953dd5f09c7943643d60:log:78', 'hash': '0x5b6160ad0ceafff4723d96d54771bb24988df757b3e7953dd5f09c7943643d60', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3947c871966085a06a807a2baf6fc34181de0eb5', 'value': 0.02617847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x27f1f7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x63faa1a478b2af53829dc35a08f7af32b5ee72e288ac7f72a253846324365d6a:log:79', 'hash': '0x63faa1a478b2af53829dc35a08f7af32b5ee72e288ac7f72a253846324365d6a', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3a038df468c6d1da4618d5f9e74b60390c7c93df', 'value': 0.41139571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0273bd73', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x9ca6ab07ff210806e7de02fbc1a41de7603c69363b50b1308575a92bfbc67a2d:log:80', 'hash': '0x9ca6ab07ff210806e7de02fbc1a41de7603c69363b50b1308575a92bfbc67a2d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3b18432bba473422d552251231bb2a994e281ab4', 'value': 0.00110515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01afb3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x0cd079b2a7401ef8df8881e574bf5d8b32b56f816948d19cfe96da05b51f3355:log:81', 'hash': '0x0cd079b2a7401ef8df8881e574bf5d8b32b56f816948d19cfe96da05b51f3355', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3b1942c3557a00ac0b7dcb679a261cf5b42ed430', 'value': 0.30374624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01cf7ae0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x2683a908bc97ab2d6091606b9ff28b8e48e11f81a7ad9b4ecdec0df2fbab7d10:log:82', 'hash': '0x2683a908bc97ab2d6091606b9ff28b8e48e11f81a7ad9b4ecdec0df2fbab7d10', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x24cfaf6ad0fb977fead1f1205601d55502ef6b98', 'value': 0.00497449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x079729', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x3862362dad2d0be21cda6e675200b8582788d92227d65d75b1843fe9c05c3ace:log:83', 'hash': '0x3862362dad2d0be21cda6e675200b8582788d92227d65d75b1843fe9c05c3ace', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3b74256958a303c531e7138d0be5398781e8bebb', 'value': 0.00417888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x066060', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xe43ae950e0e5c8755146bfcf1dc36a2b4d268714b0ee2dbdfbebb3933483b5f0:log:84', 'hash': '0xe43ae950e0e5c8755146bfcf1dc36a2b4d268714b0ee2dbdfbebb3933483b5f0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3be0d421c69d0fb10e48b48b5e2846b9a05e0b31', 'value': 0.01198407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x124947', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xad9f694c7e31e0f7a2d6620b65c3ea5a7b68a57d9705f0218793549c0ae62ac2:log:86', 'hash': '0xad9f694c7e31e0f7a2d6620b65c3ea5a7b68a57d9705f0218793549c0ae62ac2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3c3323413576a6a6dca55f7061373fa3789b7712', 'value': 0.45090517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02b006d5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x8479f115f31ca800fc63acaf9d723edfe201344fa9964af5c864ab7b3998e581:log:87', 'hash': '0x8479f115f31ca800fc63acaf9d723edfe201344fa9964af5c864ab7b3998e581', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3c47f46a0b86d9f9c3778213962aea3ca2affe62', 'value': 0.21067107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01417563', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xc28d29f8a41fdfc88a9afa4f2fda5cce3ac5df3026fce55a0fe765fe97fa065e:log:88', 'hash': '0xc28d29f8a41fdfc88a9afa4f2fda5cce3ac5df3026fce55a0fe765fe97fa065e', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x06905a108f968a4558553d5feeae25014c8e6da7', 'value': 0.92657333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0585d6b5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x1c018c81365c801856e92a7d74ee0d1037455fbe0e283c5ce61a03d29b3cdace:log:89', 'hash': '0x1c018c81365c801856e92a7d74ee0d1037455fbe0e283c5ce61a03d29b3cdace', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2632b0a88efdd5bb9039d3721dc38606cdf495db', 'value': 0.01012051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f7153', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x23df667048a623f988db8046fffccafc851bcfa31424f6337272bcae38749d5e:log:90', 'hash': '0x23df667048a623f988db8046fffccafc851bcfa31424f6337272bcae38749d5e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x263eaa960e8e961bb530e3b2a50adcef68c6600d', 'value': 0.02833745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2b3d51', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x9f967fdaeb1c77106801914fcf24cc2d9a6ce7086c2f09a4a975ab01893ee3ce:log:91', 'hash': '0x9f967fdaeb1c77106801914fcf24cc2d9a6ce7086c2f09a4a975ab01893ee3ce', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3c73e018013e813c957840d2b29191599579c661', 'value': 0.21134108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01427b1c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0xdd256c1b8537b219666d0c32ed60fe29cc11dce071f83696201c1e6b3b4d534c:log:118', 'hash': '0xdd256c1b8537b219666d0c32ed60fe29cc11dce071f83696201c1e6b3b4d534c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3c96bb7df2a71a2d8160e3233e0558db33ea84bd', 'value': 0.05616974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x55b54e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0xfe078318f48b5c7966eb0f026ba09b248a580d0ce72076fc92a23882ff782514:log:119', 'hash': '0xfe078318f48b5c7966eb0f026ba09b248a580d0ce72076fc92a23882ff782514', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x26407009be8dd15d90a2014264042f75f549c75d', 'value': 0.00658691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a0d03', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0x8aa2c3c7cd570561c5c1d54f25edcc4d47d5adb49f6eb3abdaf467778704fcb7:log:120', 'hash': '0x8aa2c3c7cd570561c5c1d54f25edcc4d47d5adb49f6eb3abdaf467778704fcb7', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2673f2cab5397d41ec8b69a6f0159d53e051cdcb', 'value': 0.00038423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9617', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0x3aefa869b7e2cf3b2676a851d96ba00043c6dfaeaaeb63bf6e32945febca8eda:log:121', 'hash': '0x3aefa869b7e2cf3b2676a851d96ba00043c6dfaeaaeb63bf6e32945febca8eda', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x26ef6cf6b1657667c6b57db88bb623592da51db0', 'value': 0.00607231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0943ff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0xd195a7512467069a7f9f5aa2a91ede148b5bb2e6a7e20a41716039d9b1e3774b:log:122', 'hash': '0xd195a7512467069a7f9f5aa2a91ede148b5bb2e6a7e20a41716039d9b1e3774b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x27002683b93dd81b51f11c30d708a99ececfc8de', 'value': 0.00583216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08e630', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0x718b864f53ad1766aaec8dbcfef779161327f7deac823f8808ca208750915d9d:log:123', 'hash': '0x718b864f53ad1766aaec8dbcfef779161327f7deac823f8808ca208750915d9d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x27056d262c32383bd565e4f8872f9910863128e9', 'value': 0.01289937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x13aed1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0x34c3535cc103b1d8bce04e18af5e60461e5b8828b51533aa6a8834cb1b6ae582:log:124', 'hash': '0x34c3535cc103b1d8bce04e18af5e60461e5b8828b51533aa6a8834cb1b6ae582', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2723b2e9c5b8f331e6a75d70acfcd523512a133e', 'value': 0.00200351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x030e9f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0xd7eed418c13b504ad5e6c13cf80e434890d36e76d836366e256b2b858eac66fd:log:125', 'hash': '0xd7eed418c13b504ad5e6c13cf80e434890d36e76d836366e256b2b858eac66fd', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2754b81741a35b41f295a4efdb75df9f1559a9ea', 'value': 0.00085767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014f07', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0x944ee280f606b78a08d4e749556caac754495d1b5aa2f8d54c5028bb9db2b42a:log:126', 'hash': '0x944ee280f606b78a08d4e749556caac754495d1b5aa2f8d54c5028bb9db2b42a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x277f00050cf73582d3dd43a391abd8fa7e5d2d3d', 'value': 0.00013722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x359a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0x707558c087609aead07a0bc104cbd55e707b808b6cd4ca296326009b418f2cbe:log:127', 'hash': '0x707558c087609aead07a0bc104cbd55e707b808b6cd4ca296326009b418f2cbe', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x27c12bf2b154b4bcfc5094aa3c2e3c1e00cabe58', 'value': 0.01492347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x16c57b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0x9e94d1cc3b409286c67e8e02a10d2bc5311d3167484e6471575bdf06efb9255f:log:128', 'hash': '0x9e94d1cc3b409286c67e8e02a10d2bc5311d3167484e6471575bdf06efb9255f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x288677b90e4f22737c2bcc0ae87e6ffe2d63007e', 'value': 0.00068613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010c05', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0x81e25b591524365374ee40ad2fbabaf6230c150eb1cf64d9d8072cdcd176caf2:log:129', 'hash': '0x81e25b591524365374ee40ad2fbabaf6230c150eb1cf64d9d8072cdcd176caf2', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x28b701c08f85b7d7ee036a71523c3a0687547b8c', 'value': 0.07972909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x79a82d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0x609cca8117a91943c6827962765e8e0932a8f2a14400cb9c786763602d732eab:log:130', 'hash': '0x609cca8117a91943c6827962765e8e0932a8f2a14400cb9c786763602d732eab', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x28b9c072fad52fc7948c3ac700c6dcc0f2eef2aa', 'value': 0.01337966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x146a6e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0xa9d9dc2805f1f80461671df3d7b88889dc4c279e7d8a38aa3551598593888c0f:log:131', 'hash': '0xa9d9dc2805f1f80461671df3d7b88889dc4c279e7d8a38aa3551598593888c0f', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3dcc883d12704f6676204168cb31b40d7ebdccf2', 'value': 0.12426139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbd9b9b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0xa2541c8b9658512e43bf201cf30480e492e085d3b88014386be618c252bcebe0:log:132', 'hash': '0xa2541c8b9658512e43bf201cf30480e492e085d3b88014386be618c252bcebe0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3ec9b53e899499e9d3f95643e46b7ab55574703b', 'value': 0.00035917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8c4d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0318', 'uniqueId': '0x9f875bb5ac8fcb19214a14d10b84b4ce1d98d302baf702479c65974410dc8f64:log:27', 'hash': '0x9f875bb5ac8fcb19214a14d10b84b4ce1d98d302baf702479c65974410dc8f64', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2911474482845c0d9882aa75e7587b3872976398', 'value': 0.0165702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1948bc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:35.000Z'}}, {'blockNum': '0x7f031a', 'uniqueId': '0x17a2cf1aca3c38f61664f5d7bf4b3e4f266fd0eb2690c8e8afcc1ca6417fdcc8:log:67', 'hash': '0x17a2cf1aca3c38f61664f5d7bf4b3e4f266fd0eb2690c8e8afcc1ca6417fdcc8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3f22861129b95af15de6a47bc4d8499bbb5fd238', 'value': 0.22638506, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01596faa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:12:02.000Z'}}, {'blockNum': '0x7f031a', 'uniqueId': '0x29af87ec1fad5528083da025787ab57f008324cf20ad5a4b322b1bc84b5c45a8:log:68', 'hash': '0x29af87ec1fad5528083da025787ab57f008324cf20ad5a4b322b1bc84b5c45a8', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x06c0836681faaf9e1a03fff989f77cdf54050510', 'value': 1.11674019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06a802a3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:12:02.000Z'}}, {'blockNum': '0x7f031a', 'uniqueId': '0x9b8c01c7d49cd764efeac233b78777c4e900bef611ec61388e5edc8529e45166:log:69', 'hash': '0x9b8c01c7d49cd764efeac233b78777c4e900bef611ec61388e5edc8529e45166', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x06cc3dbf60203341ef75d0c977b5277a91ed0fc7', 'value': 1.16916918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06f802b6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:12:02.000Z'}}, {'blockNum': '0x7f031a', 'uniqueId': '0x0322774b828ac25b8a76920c4358e1376d30689b26baffa211601fec1348df06:log:70', 'hash': '0x0322774b828ac25b8a76920c4358e1376d30689b26baffa211601fec1348df06', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x07262c9307259b33df069e98a6c79feff28c8606', 'value': 0.117666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb38b48', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:12:02.000Z'}}, {'blockNum': '0x7f031c', 'uniqueId': '0x99d2161456d5bd7c4b327e0bbfeb3bcc934f7588a17a0cc413bb3fc8da11762e:log:59', 'hash': '0x99d2161456d5bd7c4b327e0bbfeb3bcc934f7588a17a0cc413bb3fc8da11762e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x29351f71b3ff6ac63cd65117b79c1db39a32a4bb', 'value': 0.00230541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03848d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:12:23.000Z'}}, {'blockNum': '0x7f031c', 'uniqueId': '0x2165c568ec2dfb314e30c17eec5cc15191bb8d03194a0939c9eb08c00bbee3d8:log:60', 'hash': '0x2165c568ec2dfb314e30c17eec5cc15191bb8d03194a0939c9eb08c00bbee3d8', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x296c6031252169b5b9f73cd86a41b2b4f67ca440', 'value': 0.00782195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0bef73', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:12:23.000Z'}}, {'blockNum': '0x7f031c', 'uniqueId': '0xf5c0b2a8d9add91fce6268fed093435cc4edd440841ad16472d3cd8d75dfb0c9:log:61', 'hash': '0xf5c0b2a8d9add91fce6268fed093435cc4edd440841ad16472d3cd8d75dfb0c9', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x29c504e3c6bfb8bfa095c476f8afc847da98dd25', 'value': 0.00137227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02180b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:12:23.000Z'}}, {'blockNum': '0x7f031c', 'uniqueId': '0xf40c8bf08c633c2093df1befc542a0ed4c0b118c71f1d042c8a0c5b24f39a287:log:62', 'hash': '0xf40c8bf08c633c2093df1befc542a0ed4c0b118c71f1d042c8a0c5b24f39a287', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x29ab00ccf1aedb576773d8846cd9cf8e14b28fa0', 'value': 0.01654275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x193e03', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:12:23.000Z'}}, {'blockNum': '0x7f031c', 'uniqueId': '0x6f489da273fa2ada2939e28b372ce854a07545901894c503e9f06c5580165944:log:63', 'hash': '0x6f489da273fa2ada2939e28b372ce854a07545901894c503e9f06c5580165944', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3f27729c0a3a3d28d46afc70d3a5bdf85b7af35e', 'value': 0.27504663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01a3b017', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:12:23.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0x443871225795738cbc65a6fff352765cb1e776f09ff750463eb92ccd621f4d94:log:97', 'hash': '0x443871225795738cbc65a6fff352765cb1e776f09ff750463eb92ccd621f4d94', 'from': '0x218c59cdcd00e616b3e8281bb4956c5e55ed2a72', 'to': '0x2ca4e5688b0c13e9516200563fdc1245455dde94', 'value': 158.90582591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03b3270c3f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0x99e27f76970e0e1faf354248cb714e22dfc06dee70789178812e40e1f2173465:log:159', 'hash': '0x99e27f76970e0e1faf354248cb714e22dfc06dee70789178812e40e1f2173465', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3fcd71225517650ea93a362dc68850c2f69578a9', 'value': 0.1188392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb55590', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0xe7eea9a7d2394b20fda689773737a4c2f6aa3d014ec0814ce0a916f571aa76d2:log:160', 'hash': '0xe7eea9a7d2394b20fda689773737a4c2f6aa3d014ec0814ce0a916f571aa76d2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3fdfdc23877f719280ebe72f65470574435526c5', 'value': 0.00065618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010052', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0x982e74ca76580b529366f36a04538a3e638ebae1fcef8bc188e13b16cf71b53d:log:161', 'hash': '0x982e74ca76580b529366f36a04538a3e638ebae1fcef8bc188e13b16cf71b53d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3a04d6336f0948636801ae398b7478f4927ee5cc', 'value': 0.0075289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b7cfa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0x9c48ee9ed2dacc32127d1a667b6875dbf774e431d0d03a835b3b7026c2e92cb3:log:162', 'hash': '0x9c48ee9ed2dacc32127d1a667b6875dbf774e431d0d03a835b3b7026c2e92cb3', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3afca76f6a97649a3fde05f133d7ae1ed2b581fb', 'value': 0.00768086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0bb856', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0x19662ce19a7065b45da8d22d32c4ea0f60c58e141573e1a08ad6440f62cd9906:log:163', 'hash': '0x19662ce19a7065b45da8d22d32c4ea0f60c58e141573e1a08ad6440f62cd9906', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3bab3ee9f80717e1a46fc08558fa5605ad6b777d', 'value': 0.00403383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0627b7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0x7bc8de72cbe88a3005a7f04e5e2a500372460e94ca14da3490c214bf7131a211:log:164', 'hash': '0x7bc8de72cbe88a3005a7f04e5e2a500372460e94ca14da3490c214bf7131a211', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3c438e7aab4e09045d6a4b5314f431844bc66677', 'value': 0.00127093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01f075', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0xa97e3dcff01d67bc1da0d4daf3940eb0c269683adcd5609ea62dce7306baed8f:log:165', 'hash': '0xa97e3dcff01d67bc1da0d4daf3940eb0c269683adcd5609ea62dce7306baed8f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2a1a9d6373eb2864270d337f3c35f40ead3f0cad', 'value': 0.0048304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x075ee0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0x0104e647a4157593e02a93c7e878ccedd4be80da97a07811e7bef109739cda3e:log:166', 'hash': '0x0104e647a4157593e02a93c7e878ccedd4be80da97a07811e7bef109739cda3e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2a5a65ae17cf031ab6838ecb40b91a82c413947d', 'value': 0.00322484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04ebb4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0x5f3332dbbcc8d2840fd09082ef4117197300eada0779418e1cc7129ec24da393:log:167', 'hash': '0x5f3332dbbcc8d2840fd09082ef4117197300eada0779418e1cc7129ec24da393', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2a7f0b143121bd314389a9f8a481ef38f01f49b8', 'value': 0.00274454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x043016', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0xee771abeddb433b9b13a903a00bd1a44e9dcc4dee706b1bf3f8e5c24add77192:log:168', 'hash': '0xee771abeddb433b9b13a903a00bd1a44e9dcc4dee706b1bf3f8e5c24add77192', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2ac2e618d183a8f49ba12cf973e8482524cc21a8', 'value': 0.00075475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0126d3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0323', 'uniqueId': '0x57a743fdc39efe4e961dd97ab205a219e6de48ac6cfc6a7bfabcf26a8a0e54c3:log:66', 'hash': '0x57a743fdc39efe4e961dd97ab205a219e6de48ac6cfc6a7bfabcf26a8a0e54c3', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2c1b57bf0d868cc8e2807dab7e364f74b32b6797', 'value': 0.00514602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07da2a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:56.000Z'}}, {'blockNum': '0x7f0327', 'uniqueId': '0x4e78040a69bfad56de6f129468852233b87b68595eb9065d6b271cb2d63b269d:log:44', 'hash': '0x4e78040a69bfad56de6f129468852233b87b68595eb9065d6b271cb2d63b269d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2de7d9f9e119b9d7b4a855af83a39d671c4f0459', 'value': 0.00765042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0bac72', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:19.000Z'}}, {'blockNum': '0x7f0327', 'uniqueId': '0x99bb86161f8d373d29b8612606b54f9bebd521ddab05fdb55454a6b92deb7c7a:log:45', 'hash': '0x99bb86161f8d373d29b8612606b54f9bebd521ddab05fdb55454a6b92deb7c7a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2dd407f2bf94ebdf97e9281de7704348f01b0a61', 'value': 0.01945197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dae6d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:19.000Z'}}, {'blockNum': '0x7f0327', 'uniqueId': '0xbe8d1296a4ccebcd74dc5c6de274e1c6327c48f6a34b96c27ad95e6091b66668:log:46', 'hash': '0xbe8d1296a4ccebcd74dc5c6de274e1c6327c48f6a34b96c27ad95e6091b66668', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3c8e01ef63823df650ba4409ee10b1fb7fb47d06', 'value': 0.00093247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016c3f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:19.000Z'}}, {'blockNum': '0x7f0327', 'uniqueId': '0x46a73d7cb35734652d1a75b0223225c3cab7cc494162290947be83bcfc8d2bf7:log:47', 'hash': '0x46a73d7cb35734652d1a75b0223225c3cab7cc494162290947be83bcfc8d2bf7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3d2ddf3c389e534b29d8773243c38786f8b1f600', 'value': 0.0067691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a542e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:19.000Z'}}, {'blockNum': '0x7f0327', 'uniqueId': '0xb5b980a4baafd08ddab52aa4d3d52a8e2a0a784d55278f96ed1c8fe7200360b4:log:48', 'hash': '0xb5b980a4baafd08ddab52aa4d3d52a8e2a0a784d55278f96ed1c8fe7200360b4', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3d4aa9b18320a8dd0587c3bc57640c9aaeb4eca4', 'value': 0.03184241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x309671', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:19.000Z'}}, {'blockNum': '0x7f0327', 'uniqueId': '0x560f359b3170d8d94dccd16940939b6fb0ce5d99795add0fa0cb17bc67a7be25:log:49', 'hash': '0x560f359b3170d8d94dccd16940939b6fb0ce5d99795add0fa0cb17bc67a7be25', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3d7934a0f7e603566d4f4bdf9db0dbbedc4dd6fe', 'value': 3.453e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d7d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:19.000Z'}}, {'blockNum': '0x7f0327', 'uniqueId': '0x31ae60439ebc4107d3b20ac7d35b036265caee38eb8504d5fbb756e623972b1b:log:50', 'hash': '0x31ae60439ebc4107d3b20ac7d35b036265caee38eb8504d5fbb756e623972b1b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3dc523ea5c95bf21f8195d5910b302e4f1235840', 'value': 0.00075979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0128cb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:19.000Z'}}, {'blockNum': '0x7f0328', 'uniqueId': '0xcc1c56a6d4a829339eff42ee2f78bc5a364875ccadca362daf4af609bacab3f7:log:54', 'hash': '0xcc1c56a6d4a829339eff42ee2f78bc5a364875ccadca362daf4af609bacab3f7', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2e22bc9b96ab3f77c8d6e33b5085c47b9836ade3', 'value': 0.01416872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x159ea8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:26.000Z'}}, {'blockNum': '0x7f0328', 'uniqueId': '0xf628d919b391173de470912db60c6d48b9a83fdfe589a19b35c469dab6d664a7:log:55', 'hash': '0xf628d919b391173de470912db60c6d48b9a83fdfe589a19b35c469dab6d664a7', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2e23a041ae4a7d7c72625bed2ac74d0fabc66b8e', 'value': 0.00830225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0cab11', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:26.000Z'}}, {'blockNum': '0x7f0328', 'uniqueId': '0x94252c20c560a03c16b55cb20fb36f1e1f632d5c41d34287ffe3d0fe0f3ee859:log:56', 'hash': '0x94252c20c560a03c16b55cb20fb36f1e1f632d5c41d34287ffe3d0fe0f3ee859', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2f071599ea475de9887aa27d09dd87b8d897d83b', 'value': 0.01856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1c5200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:26.000Z'}}, {'blockNum': '0x7f0328', 'uniqueId': '0xb07317fcffd55033ddb1f415134c60330db623621b3fb53416968d40b8c11cfe:log:57', 'hash': '0xb07317fcffd55033ddb1f415134c60330db623621b3fb53416968d40b8c11cfe', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2f0ec33bb07c71cba29d3795f5e209232477d132', 'value': 0.01173293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x11e72d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:26.000Z'}}, {'blockNum': '0x7f032a', 'uniqueId': '0x0e8696a86fc2bb3be99c7a95ac553d61499d25edb65068a3a637f451c38d8184:log:106', 'hash': '0x0e8696a86fc2bb3be99c7a95ac553d61499d25edb65068a3a637f451c38d8184', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2f6102a60813af809c8da5f46ceb1d022dd718f2', 'value': 0.00307389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04b0bd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:45.000Z'}}, {'blockNum': '0x7f032a', 'uniqueId': '0x763ef98f9e66e74391fcb81f33bec25b98f6057b410041de9515a54955f54656:log:107', 'hash': '0x763ef98f9e66e74391fcb81f33bec25b98f6057b410041de9515a54955f54656', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3e5487f7df3e608593bdde7f7f22d27604392d08', 'value': 0.09929169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9781d1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:45.000Z'}}, {'blockNum': '0x7f032a', 'uniqueId': '0x2602dfe60552c6fc3330010503c4241c1bae401da59484b6cfbd49f5ba4c7d41:log:108', 'hash': '0x2602dfe60552c6fc3330010503c4241c1bae401da59484b6cfbd49f5ba4c7d41', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3e6c753cb00f0c9f363d4ac4ec60388fa74b01ad', 'value': 0.02092896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1fef60', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:45.000Z'}}, {'blockNum': '0x7f032a', 'uniqueId': '0x46df62ef57930ccff60d20e01884e791ee67597e437f94fe3c66826ece110862:log:109', 'hash': '0x46df62ef57930ccff60d20e01884e791ee67597e437f94fe3c66826ece110862', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3ee83180ecaaa7143a9bfb6a05a67cd9acf9c7ba', 'value': 0.03830069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a7135', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:45.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0xf08887457d010d4b3807c895c7fa78339a6810220150f495e40c7ceab8d9385e:log:54', 'hash': '0xf08887457d010d4b3807c895c7fa78339a6810220150f495e40c7ceab8d9385e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2a2df30228a6da366560ce11759a10be57d1623c', 'value': 0.00636734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09b73e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0x272c00124e563361550b60b9d28c4b76b885682a92ac834500b4ab53ff1123ef:log:55', 'hash': '0x272c00124e563361550b60b9d28c4b76b885682a92ac834500b4ab53ff1123ef', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2b9caf5ee04938e39c8d66cd8d780efc2dccb473', 'value': 0.01653589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x193b55', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0x5c5c4b5760b83d8e3b3ff602d4f3f16a617833278f54a0b8c23a1199e0fd5e01:log:56', 'hash': '0x5c5c4b5760b83d8e3b3ff602d4f3f16a617833278f54a0b8c23a1199e0fd5e01', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2c12abe41a0a1f53bf91636a1223b02b5ec66793', 'value': 0.04037915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d9d1b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0x32e0f5640d2a077c2c6f5ef785490c8cc74f10c226db40c921cc94b60f2e29c8:log:57', 'hash': '0x32e0f5640d2a077c2c6f5ef785490c8cc74f10c226db40c921cc94b60f2e29c8', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2c5eccdcf6d91bc773608f61584b0cd1c05a880f', 'value': 0.00041168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa0d0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0xf53cfc2eb496a0b6ed480c7fb5e6e6f6728e2db32d647a08ac8510587697cdc8:log:58', 'hash': '0xf53cfc2eb496a0b6ed480c7fb5e6e6f6728e2db32d647a08ac8510587697cdc8', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2ca4e5688b0c13e9516200563fdc1245455dde94', 'value': 0.02041257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f25a9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0xc937939cfaa876885b07877162dbbd94a36977e8d77ec0049c1c1ce5e5ba6340:log:59', 'hash': '0xc937939cfaa876885b07877162dbbd94a36977e8d77ec0049c1c1ce5e5ba6340', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2ca65a99b4b238f197733b2f9945a892f16ea306', 'value': 0.01830613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1beed5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0x6276c4106c10e41331b17c9f08e1c049c9e85c6ae2709ef66ec6db20fee5d24c:log:60', 'hash': '0x6276c4106c10e41331b17c9f08e1c049c9e85c6ae2709ef66ec6db20fee5d24c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2cafe1abc991a42a67a502af7a7e63bba00c22da', 'value': 0.00717012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0af0d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0x373bfd87c227ae5fed8d0baa8400d09c46334d140cd31e64f6c05a9fb6d6535a:log:61', 'hash': '0x373bfd87c227ae5fed8d0baa8400d09c46334d140cd31e64f6c05a9fb6d6535a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2d427cf50166142ab7acfb37baa2d59729cd2d12', 'value': 0.00813072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c6810', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0x231f23fd92ad0b4c1c1a785b216b994230295f2fa0df199c1167208791457472:log:62', 'hash': '0x231f23fd92ad0b4c1c1a785b216b994230295f2fa0df199c1167208791457472', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2d595febca85974c1e63b6775ab48da881598129', 'value': 0.00696428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aa06c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0xdd52eb7819ebed64af495df3ba780747585468467491e1b39bee09d0c6773aeb:log:63', 'hash': '0xdd52eb7819ebed64af495df3ba780747585468467491e1b39bee09d0c6773aeb', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2d659edb6fe9eef60ce38dac4e7b568e14ae261c', 'value': 0.00895408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0da9b0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0x057f3900cad4188b9d00c4f8603164e71208bfd4a26f23cd192dd11bd94befa4:log:64', 'hash': '0x057f3900cad4188b9d00c4f8603164e71208bfd4a26f23cd192dd11bd94befa4', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2da1d79f7ac1c9f4f6e7cf0191bf7d272613ce88', 'value': 0.00658691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a0d03', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0x9ef9e5dc31711eda8fdc35bc5dbe4f35623f2f12631695f85e96ee521737b204:log:65', 'hash': '0x9ef9e5dc31711eda8fdc35bc5dbe4f35623f2f12631695f85e96ee521737b204', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2de5d6fab319897545b6dfb090a5ad350b9a9bf8', 'value': 0.01955489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dd6a1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0x54fabe4bc93c832ab108baf0f1b8e157028a45fc1db207f773a330e4be0669d8:log:66', 'hash': '0x54fabe4bc93c832ab108baf0f1b8e157028a45fc1db207f773a330e4be0669d8', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2da0a55876542e7d4fbe619b1b3a61826f65cb59', 'value': 0.00171534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x029e0e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032d', 'uniqueId': '0x063271c2bc7c097dc035b659e56636a04d32d4b68593f00028130eb42f9ccb9c:log:58', 'hash': '0x063271c2bc7c097dc035b659e56636a04d32d4b68593f00028130eb42f9ccb9c', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0774786db16c983a766753f100c9ba6347eafadc', 'value': 0.16214328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf76938', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:44.000Z'}}, {'blockNum': '0x7f032d', 'uniqueId': '0x5bf16378ea86f87673d7e84e1fffef764e7aed3a51a43508f6c4a885feaa31c5:log:59', 'hash': '0x5bf16378ea86f87673d7e84e1fffef764e7aed3a51a43508f6c4a885feaa31c5', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0794cb97d146338f3f79bc874aa82399d659ef11', 'value': 3.439e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d6f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:44.000Z'}}, {'blockNum': '0x7f032d', 'uniqueId': '0x2261632fc08f9816a4b7b7dc999d70b524d54831628f7eb645d749032aa82114:log:60', 'hash': '0x2261632fc08f9816a4b7b7dc999d70b524d54831628f7eb645d749032aa82114', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x07e43da10809c83407e9146bf7e99e261686b5c8', 'value': 6.19e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x182e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:44.000Z'}}, {'blockNum': '0x7f032d', 'uniqueId': '0x38649403de9d450f6b82bf5f991f01640249fd7d2f8f8abe19e5ac1a3a950ab0:log:61', 'hash': '0x38649403de9d450f6b82bf5f991f01640249fd7d2f8f8abe19e5ac1a3a950ab0', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x07ecdc3082676ef14b085c49824e0d1a2d71ef8c', 'value': 0.33948148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x020601f4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:44.000Z'}}, {'blockNum': '0x7f032d', 'uniqueId': '0x15f58ee05659206d4c88b9ff8e4bf39d2e6f9974214669810b953efc8404539f:log:62', 'hash': '0x15f58ee05659206d4c88b9ff8e4bf39d2e6f9974214669810b953efc8404539f', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x07f34c8f838736090d9ca8023a81cb3fba7a5a84', 'value': 1.24301137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0768af51', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:44.000Z'}}, {'blockNum': '0x7f032d', 'uniqueId': '0x5c0d64859e3e4a71a442ebbe7ce606d0409f091664fcb8bd44bd2739e641366f:log:63', 'hash': '0x5c0d64859e3e4a71a442ebbe7ce606d0409f091664fcb8bd44bd2739e641366f', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0864e2bc8e5f7b4fcf4a6bd5fb65ac83264bec42', 'value': 0.68031117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x040e128d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:44.000Z'}}, {'blockNum': '0x7f032e', 'uniqueId': '0xee885a38cf523f4136467b1fb9f9a5a87d20aa0be2e103050a638ee68bbdb0e8:log:140', 'hash': '0xee885a38cf523f4136467b1fb9f9a5a87d20aa0be2e103050a638ee68bbdb0e8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3f074bd7cb7d454800c66dd766fc29f989999181', 'value': 0.00341908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x053794', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:48.000Z'}}, {'blockNum': '0x7f032e', 'uniqueId': '0x4b788c3cc9322d358cd557c903700671237151e06c2cf341c72c6e0ba6159c49:log:141', 'hash': '0x4b788c3cc9322d358cd557c903700671237151e06c2cf341c72c6e0ba6159c49', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3f6312fd939dcadf607c8eed886e0156faecda15', 'value': 0.06081832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5ccd28', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:48.000Z'}}, {'blockNum': '0x7f032e', 'uniqueId': '0x0ad2ad5fed11abc499fbe3c58c3dbe014d532954368f3dc3afcca7be30b562b5:log:142', 'hash': '0x0ad2ad5fed11abc499fbe3c58c3dbe014d532954368f3dc3afcca7be30b562b5', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3f663c6e63e8fa973f22787f852e1e00914e360e', 'value': 0.00207217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x032971', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:48.000Z'}}, {'blockNum': '0x7f032e', 'uniqueId': '0x0241608574bf0987c87c042cef2f00fa65a80db1f8ab4e3c3399ca0c864e1689:log:143', 'hash': '0x0241608574bf0987c87c042cef2f00fa65a80db1f8ab4e3c3399ca0c864e1689', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3ff39298b96813099355626fc18153ad966e17ba', 'value': 0.26855381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0199c7d5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:48.000Z'}}, {'blockNum': '0x7f032f', 'uniqueId': '0x7e85068fe393814613fb407a7f5684ea04174df64dccf891b81a8d856f116313:log:74', 'hash': '0x7e85068fe393814613fb407a7f5684ea04174df64dccf891b81a8d856f116313', 'from': '0x2ca4e5688b0c13e9516200563fdc1245455dde94', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 159.02086778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03b3d6967a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:53.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0x5c68b5308d23104c9b626c285282bc5aeacab885711db6deb334b20137265537:log:70', 'hash': '0x5c68b5308d23104c9b626c285282bc5aeacab885711db6deb334b20137265537', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2e165ab77faab45db480a0eb0e416ba182de8c8d', 'value': 0.01554099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x17b6b3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xeec87c3783715549b9dbb1846c1d4d94acce691a1d92def2daa3a0615070de5b:log:71', 'hash': '0xeec87c3783715549b9dbb1846c1d4d94acce691a1d92def2daa3a0615070de5b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2e228b8629ee0a139318ca4e05112660a00ed259', 'value': 0.00291608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x047318', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xd11b75a01c33fe4d4334b63f5e4fc58ae2ee150419e68113f20a0443e50fd1da:log:72', 'hash': '0xd11b75a01c33fe4d4334b63f5e4fc58ae2ee150419e68113f20a0443e50fd1da', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2e2f5624b2f22e521a7474ffbcb597d22921e55e', 'value': 0.01814145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1bae81', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xd7a5c24825498658e6cae22812484996b004edf6c50b0eb7bcf4b21b185b2453:log:73', 'hash': '0xd7a5c24825498658e6cae22812484996b004edf6c50b0eb7bcf4b21b185b2453', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2e97b18ecf6057990a1e925f90a2fcf1b98860e9', 'value': 0.00428835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x068b23', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xbe7459af5f1ceebdb80c90bcfafa4ce037659e1b921ac0feb31a198728180ca1:log:74', 'hash': '0xbe7459af5f1ceebdb80c90bcfafa4ce037659e1b921ac0feb31a198728180ca1', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2ef83161733480526642860e8672e304e8b1a522', 'value': 0.00397959, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x061287', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0x4db7881b4b3ed9c0d01ad3146369727a1d14aeed45fdbebfbfd8a0c4bac29efb:log:75', 'hash': '0x4db7881b4b3ed9c0d01ad3146369727a1d14aeed45fdbebfbfd8a0c4bac29efb', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2f40208b2edc15347d9ec9079fbe41a67ac53a74', 'value': 0.00521463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07f4f7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0x89b657bcea344df21c62e3ecdc146b5b460603bf5b0cb7e925206700a71e111e:log:76', 'hash': '0x89b657bcea344df21c62e3ecdc146b5b460603bf5b0cb7e925206700a71e111e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2f498e9940f39731ca47ed36f52d8bb99ef5d736', 'value': 0.01560961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x17d181', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xdce193d76ac55cb2619d98a390e848cbc0e91a639ec38312272777be40bd249c:log:77', 'hash': '0xdce193d76ac55cb2619d98a390e848cbc0e91a639ec38312272777be40bd249c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2f8dbb7c0135f0fae090046d77038ee98e8a2f2e', 'value': 0.0075475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b843e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xd92c9572c9cc816faed9b351d529dc4edfc1f64c15c8cfe121920bd4cf62b0c1:log:78', 'hash': '0xd92c9572c9cc816faed9b351d529dc4edfc1f64c15c8cfe121920bd4cf62b0c1', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2fff9d3c5971f7499171b7adfcbaeec217c85e52', 'value': 0.00101548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x018cac', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0x8f44adae65554791f4568a5269207ce8ff3579222a4dcce05401baeb4601bbff:log:79', 'hash': '0x8f44adae65554791f4568a5269207ce8ff3579222a4dcce05401baeb4601bbff', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3021cc75b578c171165e9af60d85ee57c4d7a552', 'value': 0.00719071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0af8df', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0x4eec95b278c8a465c99e7e198bcfceb30e96c80a8ea340667b9a6f63e6dbaf45:log:80', 'hash': '0x4eec95b278c8a465c99e7e198bcfceb30e96c80a8ea340667b9a6f63e6dbaf45', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3037c04f9f65f2c9891bfa8433f99e8b83146d5b', 'value': 0.00041168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa0d0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xc426cef5127f3e47238ebbced8548bcedf54579ac3fd4f99cca22c7413692078:log:81', 'hash': '0xc426cef5127f3e47238ebbced8548bcedf54579ac3fd4f99cca22c7413692078', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x30d3b77ac63c0e796e3e74df093a7ce4021edfa0', 'value': 0.00590077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0900fd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0x7a908ffe6176072f36f1334a9da7952be150cbaf2c72765d52b60a15a5e1684f:log:82', 'hash': '0x7a908ffe6176072f36f1334a9da7952be150cbaf2c72765d52b60a15a5e1684f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x30e56764dc5fffd658c4a290408cb41ddeb9aa5f', 'value': 0.02418632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x24e7c8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xbbff63207ca9a8bbcee5ab3e4ea56141227995560c19627f2932f8968d44bcfe:log:90', 'hash': '0xbbff63207ca9a8bbcee5ab3e4ea56141227995560c19627f2932f8968d44bcfe', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3ff83d096d31c6fa232c39a7ddbb7448081b1ab7', 'value': 3.453e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d7d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xbc49d9f6c3f2922eab0ca836118eb438606867802733feed7d30a66e7b28fbb1:log:91', 'hash': '0xbc49d9f6c3f2922eab0ca836118eb438606867802733feed7d30a66e7b28fbb1', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x405e94a57d6801e3e583d30776ffc047b0aad6a6', 'value': 0.00022103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5657', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0x5484fb71a7aa1f148ef85c0ec77de6a43409077b7663b4f251016e5f37da7823:log:92', 'hash': '0x5484fb71a7aa1f148ef85c0ec77de6a43409077b7663b4f251016e5f37da7823', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x408965e07bc026cada8a8f3b73f751756d08ac2a', 'value': 0.09984427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9859ab', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0x3cbc9d93165347c7f855b75535a3110873bdc19041c23f8b4eb1995f8b4594be:log:93', 'hash': '0x3cbc9d93165347c7f855b75535a3110873bdc19041c23f8b4eb1995f8b4594be', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x419ec1b706a786e5df7315e3b97f4aaefbf05026', 'value': 0.00989117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f17bd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xde6f2ba3fd61365401922652deb209c1e675e21018c2b45dd4afa348ea405399:log:94', 'hash': '0xde6f2ba3fd61365401922652deb209c1e675e21018c2b45dd4afa348ea405399', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x41b3d61d125c07f69066a5ec8eb9f9e2a8036d0c', 'value': 0.07045393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6b8111', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xbdb06196960e3c971917a4f87ac9d028557523cb9c836b7cf533b25756d94a01:log:99', 'hash': '0xbdb06196960e3c971917a4f87ac9d028557523cb9c836b7cf533b25756d94a01', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x08be773bc9f8d52ae5e1f3fe6496c7cbc6a7449a', 'value': 0.82168096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04e5c920', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xb3a9434374a618b88da24c1729fdd45cb5badc82d67f85e772867015a73c2450:log:100', 'hash': '0xb3a9434374a618b88da24c1729fdd45cb5badc82d67f85e772867015a73c2450', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x08c3d6f5e291e003f003d41fc9d2e0487f070568', 'value': 0.00543412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x084ab4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0x579165e4781669870ace2a7c42991c052f07287c25c4369a46604a336c053abb:log:101', 'hash': '0x579165e4781669870ace2a7c42991c052f07287c25c4369a46604a336c053abb', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x09040e803fe15e9493531a69d6b102b4b76eb56f', 'value': 0.0057299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08be3e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xcfb017b9bc3089e27ffb2f50d4fe892065d9ce1586f96b6bfc9d1753e87e1d34:log:102', 'hash': '0xcfb017b9bc3089e27ffb2f50d4fe892065d9ce1586f96b6bfc9d1753e87e1d34', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x090bfc43fc828eac1e475ed5973dac4589057cd9', 'value': 0.01167992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x11d278', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0x80ffe5984d8ccb99a101b4904ef90c0fe400e089bc35f91befaeb4a2a3172db9:log:103', 'hash': '0x80ffe5984d8ccb99a101b4904ef90c0fe400e089bc35f91befaeb4a2a3172db9', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x094c71f535f915dcee43306b26af68e1af361e35', 'value': 0.00017196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x432c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0332', 'uniqueId': '0x16d7fec76775bcb3f591271fc23099f565ea88e754d83328eff41aea545f3929:log:88', 'hash': '0x16d7fec76775bcb3f591271fc23099f565ea88e754d83328eff41aea545f3929', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x41ebbbd8c8ea43da810b317e2c08d1121308dd70', 'value': 2.762e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:08.000Z'}}, {'blockNum': '0x7f0332', 'uniqueId': '0xaae11d02ba3db70c347deb94e899128eccd46ceafe74d2b367497ae9f34573ea:log:89', 'hash': '0xaae11d02ba3db70c347deb94e899128eccd46ceafe74d2b367497ae9f34573ea', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x421c107d6b82da7346f2ce3dd3784e93a7efb84b', 'value': 0.0012433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01e5aa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:08.000Z'}}, {'blockNum': '0x7f0339', 'uniqueId': '0x07e0eccd47557aa14855d36ed271fcde4e15203aefc20db9600ba8cd4370b7d8:log:98', 'hash': '0x07e0eccd47557aa14855d36ed271fcde4e15203aefc20db9600ba8cd4370b7d8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x421e4eb81a24a1e1d80dfa86b8fc8e35ab9ec71c', 'value': 0.06333946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x60a5fa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:16.000Z'}}, {'blockNum': '0x7f0339', 'uniqueId': '0x29d32e3dafca6df90740d8e73e39e91185d5bbc37dfc785138a165fcaae5999d:log:99', 'hash': '0x29d32e3dafca6df90740d8e73e39e91185d5bbc37dfc785138a165fcaae5999d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4226d52b39877668a0888d2ad2fa13e8637640d8', 'value': 0.03899141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b7f05', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:16.000Z'}}, {'blockNum': '0x7f0339', 'uniqueId': '0x73202b001932886b5f4bd81d82d7bf7db00afbd786f1ba230aa1fdf6a4164e8f:log:100', 'hash': '0x73202b001932886b5f4bd81d82d7bf7db00afbd786f1ba230aa1fdf6a4164e8f', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x42862ccfcc8a9a33ac9f803f716d250a4812f665', 'value': 0.03153158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x301d06', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:16.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x006aa2c530e16a6af5867fb35529bc47af4be5a19d4db71e150fbd1019c6d3e9:log:24', 'hash': '0x006aa2c530e16a6af5867fb35529bc47af4be5a19d4db71e150fbd1019c6d3e9', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x429f0b98d6aee7e18209cc95a9ac2c99a7a4ea6b', 'value': 0.01536862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x17735e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0xdb3f5707136f8fc2d47312c46bb9f8656288f919d8f29ebfdd0e2fc786bdf0ff:log:25', 'hash': '0xdb3f5707136f8fc2d47312c46bb9f8656288f919d8f29ebfdd0e2fc786bdf0ff', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x42b5c5f28dafe27ca602eb6f9b97b3f70180630d', 'value': 0.00155413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x025f15', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x920c8832b877222dad6de056e5796297edebd590e84d0a9d52ea52864f745823:log:26', 'hash': '0x920c8832b877222dad6de056e5796297edebd590e84d0a9d52ea52864f745823', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x42e05dc97e7baf3e1ecaaa657f2a8c479038d81b', 'value': 0.1817297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01154c2a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x7fba8917426c19f74b2b5d96fc51ad9abb562c0d1182a34288874094a72a996b:log:27', 'hash': '0x7fba8917426c19f74b2b5d96fc51ad9abb562c0d1182a34288874094a72a996b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4314b8c4d5933ed75b4fdc08b7597f8856118871', 'value': 0.01519594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172fea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x847edd365665abd4239b108b23d897be0793b852c06285415963d0469b2f11d4:log:28', 'hash': '0x847edd365665abd4239b108b23d897be0793b852c06285415963d0469b2f11d4', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x431623abdcd66ba2f5105859a7cdb575be14e667', 'value': 0.01633564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x18ed1c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0xe9c47d47665b5330dac0d76357a95995b22fa7e17ce790f96fd25b824341dcce:log:29', 'hash': '0xe9c47d47665b5330dac0d76357a95995b22fa7e17ce790f96fd25b824341dcce', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x432e9dabe0ec0ecac47c1d1e2024c0d5926e6218', 'value': 0.0001934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4b8c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0xe622f902aafdd70aa6f92b2fa7940d5e19f509fa028e21630e6c70be9e1f96bf:log:30', 'hash': '0xe622f902aafdd70aa6f92b2fa7940d5e19f509fa028e21630e6c70be9e1f96bf', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4374398fc33c5ebf7e92fb111521a9a5bc4e3325', 'value': 0.02110164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2032d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x1c31d8518f59100f17d2e844078b4fd1ce43d570ab94bb64ac042405f4af8552:log:31', 'hash': '0x1c31d8518f59100f17d2e844078b4fd1ce43d570ab94bb64ac042405f4af8552', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x43b08ce13abca96763b99cac35a3935a7f6444f4', 'value': 0.01958204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1de13c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x88cdc3c96394166358fdc337058c044105b844ace59b13a158344072b16dfd6f:log:32', 'hash': '0x88cdc3c96394166358fdc337058c044105b844ace59b13a158344072b16dfd6f', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x43c9a8870cc24c88212b14912bcd24ed673a3176', 'value': 0.10060407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x998277', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x8a812a42e4df4df1e5de71446440c287bd3219406bd1f7f4ce2276ec506eeeae:log:33', 'hash': '0x8a812a42e4df4df1e5de71446440c287bd3219406bd1f7f4ce2276ec506eeeae', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4495fe2d74cea7e4b4cd2f79231b63c1e6503403', 'value': 0.00227939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x037a63', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0xb3faa30780ab46749bcf9b11c61fe51f44ba5d96d5d0ab3490199ec244bdb70d:log:34', 'hash': '0xb3faa30780ab46749bcf9b11c61fe51f44ba5d96d5d0ab3490199ec244bdb70d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x44a46e8ac16ba3456c3f606d1bfaf3073f88f28a', 'value': 0.12543563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbf664b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x786e16569580c1221cdd82cac88fc4498951544152af2da8926895f211205398:log:35', 'hash': '0x786e16569580c1221cdd82cac88fc4498951544152af2da8926895f211205398', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x44bbb67e5f02eeb86401e5e023d5a805cac5ae2d', 'value': 0.0815746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7c7914', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0xa59b26be52ed3352e7eaed9c9a12ad71842a5ce7b347a2a3a270e5ba73532085:log:36', 'hash': '0xa59b26be52ed3352e7eaed9c9a12ad71842a5ce7b347a2a3a270e5ba73532085', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x457b99ac42a76c37c62f8bc0faad0b7aa012738e', 'value': 0.01274387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x137213', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x81a2cd8222d92e1f8742f1689f4e0c30f698f028c9439d90a6ad5388e4224a64:log:37', 'hash': '0x81a2cd8222d92e1f8742f1689f4e0c30f698f028c9439d90a6ad5388e4224a64', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x45c5c5cc547185ac550808f677a047a89e106cbd', 'value': 0.10350511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9defaf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0xcd638ec5cd1711c260d718f1ccc988b3dfd9a2091d3e5aa03a15e6b4bc77488b:log:38', 'hash': '0xcd638ec5cd1711c260d718f1ccc988b3dfd9a2091d3e5aa03a15e6b4bc77488b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x45cb33e21fd98713003daf215c5c4debcc7c2262', 'value': 0.00091175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016427', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x8da36edd45e1898adbf24454d7ad954ff818c6115a7292555423f69a01890afa:log:39', 'hash': '0x8da36edd45e1898adbf24454d7ad954ff818c6115a7292555423f69a01890afa', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x45eca6b4feabdc7bd78c8393268b96f7ec27164d', 'value': 0.00044897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xaf61', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x1009efa759c18152bf59444244a4154a499a096550b5339430858bd1cda83ccd:log:40', 'hash': '0x1009efa759c18152bf59444244a4154a499a096550b5339430858bd1cda83ccd', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x30c40d09609301729dcd68859f2acb435272ff26', 'value': 0.02339726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23b38e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x1451790faf50bdbae0ccf35e3e2595eb186deb31404bd1764afee034d9d08980:log:41', 'hash': '0x1451790faf50bdbae0ccf35e3e2595eb186deb31404bd1764afee034d9d08980', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x30cde1ea3eef5c3e5fe5c15d368bbb83b802fbec', 'value': 0.00370513, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05a751', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x8076a65901ee6e7a4dfd809f09ac56d7316465408ca341f7b0c3672019f64388:log:42', 'hash': '0x8076a65901ee6e7a4dfd809f09ac56d7316465408ca341f7b0c3672019f64388', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x30f4b2a7b0162425f65cd3250c0d74b21b9ed9e5', 'value': 0.00692998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a9306', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0xbf86cda5e73a00da9b842f7e07b90167d290895afd0fd0e993ce1e207dd4ca70:log:43', 'hash': '0xbf86cda5e73a00da9b842f7e07b90167d290895afd0fd0e993ce1e207dd4ca70', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3119bf1d8d0aea0b9d5ec8d8d37242fa433a5fdf', 'value': 0.00660749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a150d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0xbf320dfb8d0e7a9523198747de802042af2c7aca4d0db409510a5596a97238a9:log:44', 'hash': '0xbf320dfb8d0e7a9523198747de802042af2c7aca4d0db409510a5596a97238a9', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x313af9c42a4338c13221a69eefbce0df66b4c4e9', 'value': 0.00840517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0cd345', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x2983e93468c98ce25eeb6dae1d7c0e70ee608ffdd797911095f5692ba3a196b3:log:45', 'hash': '0x2983e93468c98ce25eeb6dae1d7c0e70ee608ffdd797911095f5692ba3a196b3', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3151add7e14c998318564655a14aafc3a2d02304', 'value': 0.03073892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2ee764', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0xf2b9d900a4575ad40ff443460fc099dd74ee7f3c5eff18005ea4a4af72987249:log:46', 'hash': '0xf2b9d900a4575ad40ff443460fc099dd74ee7f3c5eff18005ea4a4af72987249', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3180d5468bc17f069707d6c6dcdd00a65fb644c2', 'value': 0.00013722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x359a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x203a9c1689b3d393078e6994db78fda3ae3694bbe20e6433d8225959b68f15c6:log:47', 'hash': '0x203a9c1689b3d393078e6994db78fda3ae3694bbe20e6433d8225959b68f15c6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3182f521cff947064d30db8023052ac4205b9db4', 'value': 6.861e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1acd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x2695c693964dff6d1ab1824057a21673362cb049ca35d4c2090bed60344c0e35:log:48', 'hash': '0x2695c693964dff6d1ab1824057a21673362cb049ca35d4c2090bed60344c0e35', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x318ec61f4afcb385e3544acc11206db3a0e6b92a', 'value': 0.02576443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x27503b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x74c30dfbfe96f88aa3e14644907d466d2985ac36aad3b7c6c1c293f23aac61b5:log:51', 'hash': '0x74c30dfbfe96f88aa3e14644907d466d2985ac36aad3b7c6c1c293f23aac61b5', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x09641b1f168a0e0e86b36a8c113ffffddead79e6', 'value': 6.87e-06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02af', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x96ba0f16c51b468cd931cdea13851b90903055edb66e0bb300563a886eda5008:log:52', 'hash': '0x96ba0f16c51b468cd931cdea13851b90903055edb66e0bb300563a886eda5008', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x097196cea6f214f4487a6bf0692359e38e9bda7d', 'value': 0.7306972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x045af498', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033d', 'uniqueId': '0x4f8becc7895f8849028bb0c12dce5754a0f331ef3475c8061db752faddcb5b07:log:31', 'hash': '0x4f8becc7895f8849028bb0c12dce5754a0f331ef3475c8061db752faddcb5b07', 'from': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41760, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03cc4cff2000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:54.000Z'}}, {'blockNum': '0x7f033d', 'uniqueId': '0x0bafae900e3f431d441b62b34b6082a17abce448b120fc501f9afb50b9b6b46c:log:135', 'hash': '0x0bafae900e3f431d441b62b34b6082a17abce448b120fc501f9afb50b9b6b46c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x463e5e0522d120ecafad475e63860d00e258f328', 'value': 0.03933677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3c05ed', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:54.000Z'}}, {'blockNum': '0x7f033d', 'uniqueId': '0xb13ada571b5bbdf1cb17be6c2ce4fbb92b0b6a19a1f4ae403a0c16fa775459f6:log:137', 'hash': '0xb13ada571b5bbdf1cb17be6c2ce4fbb92b0b6a19a1f4ae403a0c16fa775459f6', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x09869dc411a42ddfe74dd07699b15a76d3a7410e', 'value': 0.09732586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9481ea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:54.000Z'}}, {'blockNum': '0x7f033d', 'uniqueId': '0x1fb609b398dd95ebee7ff56bde9f284831c2c0c77a2010c1533e978c57076cac:log:138', 'hash': '0x1fb609b398dd95ebee7ff56bde9f284831c2c0c77a2010c1533e978c57076cac', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x09aec88a104bb9d2c5857a5556984e3d2cfba65a', 'value': 0.00533094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x082266', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:54.000Z'}}, {'blockNum': '0x7f033d', 'uniqueId': '0xd440194bbb0453ae93857773069a42bffd267e9394f7fee5ce88fdc5a8c7ad46:log:141', 'hash': '0xd440194bbb0453ae93857773069a42bffd267e9394f7fee5ce88fdc5a8c7ad46', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x31c1d6d32a1ef79d216a12764ce08edb0f2a32e7', 'value': 0.0070672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ac8a0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:54.000Z'}}, {'blockNum': '0x7f033d', 'uniqueId': '0xdab5a1dc9ba25c997f7cd016b68e86323da261e420f96bb6168e3c4a889cc950:log:142', 'hash': '0xdab5a1dc9ba25c997f7cd016b68e86323da261e420f96bb6168e3c4a889cc950', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x31f3be1d114864cacae0c810d1a84a46c6735bcd', 'value': 0.02205929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x21a8e9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:54.000Z'}}, {'blockNum': '0x7f033d', 'uniqueId': '0xc8aacca512bc6f5e306f14c9c16ceaa84e8bd30c6bb21513f50b1ab58945c58d:log:143', 'hash': '0xc8aacca512bc6f5e306f14c9c16ceaa84e8bd30c6bb21513f50b1ab58945c58d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x31ef9748a55e55d73c67457133f00ae0b0f509b5', 'value': 0.02953818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2d125a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:54.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x9b5c1ed1dbb970bfcd6cd6191a2ae44811bfa6d98b8672788e23c43cf8b5a2bb:log:36', 'hash': '0x9b5c1ed1dbb970bfcd6cd6191a2ae44811bfa6d98b8672788e23c43cf8b5a2bb', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4669c15130be9e9ad19bd79b5309d2c21e6533ea', 'value': 0.02959755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2d298b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x465524f3032c528ae7d02dacccfcbf42c11f8fc184b0790fd09c971819c2351c:log:37', 'hash': '0x465524f3032c528ae7d02dacccfcbf42c11f8fc184b0790fd09c971819c2351c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x46969c1cd33d3c650fcc8af93ec43c6ca65766be', 'value': 0.0194439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dab46', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0xd976288ac7180bbb322e7283a61020b7cf7d9f19ffe417959e5c35219c1b0943:log:38', 'hash': '0xd976288ac7180bbb322e7283a61020b7cf7d9f19ffe417959e5c35219c1b0943', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x46b9bd817264ec5ad544a8f9087def6c0421b9a6', 'value': 0.02555681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26ff21', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x3ad422953cb9ad58acfef3a53a66c1fb200a30fe3e828b84cb3d3bbd0b41bd70:log:39', 'hash': '0x3ad422953cb9ad58acfef3a53a66c1fb200a30fe3e828b84cb3d3bbd0b41bd70', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x471451f1cacc608121d1515d46105ac773ff4f20', 'value': 0.00055257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd7d9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x4f4eacf997cca3ad3cf452431df3fa904a588290078e068787571415177ec783:log:40', 'hash': '0x4f4eacf997cca3ad3cf452431df3fa904a588290078e068787571415177ec783', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x474932c2b0df801b58940484d78bb02baae71378', 'value': 0.02099803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x200a5b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0xcd752131122de899fb099c510123898967e609f29f0f571abee837105d8517fb:log:41', 'hash': '0xcd752131122de899fb099c510123898967e609f29f0f571abee837105d8517fb', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x47b6cba2ca9e97060558236b6dd6394b32759f75', 'value': 0.03584861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x36b35d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x14413c5b47d54d2d47ee1dd89f56eb31da7c40ac300d0a701242dc57b729aa4c:log:42', 'hash': '0x14413c5b47d54d2d47ee1dd89f56eb31da7c40ac300d0a701242dc57b729aa4c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x47c3fc14e182afaae8cdd2b15789b61067605afd', 'value': 0.24724495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0179440f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x7e47ffffd9dcc2bc95866da1f68d52bf81339e9ec5bcf8171232f2eec320c7f7:log:43', 'hash': '0x7e47ffffd9dcc2bc95866da1f68d52bf81339e9ec5bcf8171232f2eec320c7f7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x481543a98460e80f3c545bea87531b14ec385407', 'value': 0.08651328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x840240', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0xb59c9a0e5388ee9a449b47e5948ca3564d1f29597d96c5153aaeb757a2eebfbc:log:44', 'hash': '0xb59c9a0e5388ee9a449b47e5948ca3564d1f29597d96c5153aaeb757a2eebfbc', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x481f4da3fc9dfd0f9016df5e96916d871d8a158a', 'value': 0.05418736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x52aef0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x9d328d6b9ee3d2daf492de93107e49fe1c0c4d4b6c7f1ae0429e146a960fe68c:log:45', 'hash': '0x9d328d6b9ee3d2daf492de93107e49fe1c0c4d4b6c7f1ae0429e146a960fe68c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x488fde5f82913823f99e53ac459f9fcc1a557c28', 'value': 0.00146433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x023c01', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x5b32facc3dc4619dca21547465db957357ae591b8dd19cdb771ee3aebbe7e97f:log:46', 'hash': '0x5b32facc3dc4619dca21547465db957357ae591b8dd19cdb771ee3aebbe7e97f', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x48c8bf4af8d211ab485577484b01c5cf14fdc5fe', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x7573ea1aefb9b0f09b8e54f95ab982a04dd3b835f56dee75b8b2f423c8d2ead2:log:47', 'hash': '0x7573ea1aefb9b0f09b8e54f95ab982a04dd3b835f56dee75b8b2f423c8d2ead2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x48a7fa829bbc12f29b081e928e646dd45fa28faa', 'value': 0.15696722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xef8352', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x5d0d5cfe5bb5828803da2bf98717c90ea863f48a9841ace04fb979e4fcaf4d0d:log:48', 'hash': '0x5d0d5cfe5bb5828803da2bf98717c90ea863f48a9841ace04fb979e4fcaf4d0d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x48b8e515f3455d9550e571127043dce3b67533d2', 'value': 0.0004835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbcde', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x51e46ff8ff4d6219d59669f86d97aa954b705e9e19ffd9124527974cbd5728d9:log:49', 'hash': '0x51e46ff8ff4d6219d59669f86d97aa954b705e9e19ffd9124527974cbd5728d9', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4928808cf3ca6f9ea19ac5d65b90e3ff5369e2d3', 'value': 0.03028828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e375c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f0342', 'uniqueId': '0x4b51ece46471f3cc832668662bbbe0e6770213b46ab2ddf225cc9dbc0b27185a:log:32', 'hash': '0x4b51ece46471f3cc832668662bbbe0e6770213b46ab2ddf225cc9dbc0b27185a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x31eb7da8c071f1c52b6b0dfd36ced2643e740bef', 'value': 0.00384236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05dcec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:10.000Z'}}, {'blockNum': '0x7f0342', 'uniqueId': '0xbc89970f72aa774cd2bbce76b13b7c4424f96a064c0ee870bcb581ca891421c9:log:33', 'hash': '0xbc89970f72aa774cd2bbce76b13b7c4424f96a064c0ee870bcb581ca891421c9', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x323f83d12b4050e0922c5885b0a3382fb09f9466', 'value': 0.0045285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06e8f2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:10.000Z'}}, {'blockNum': '0x7f0342', 'uniqueId': '0x5d588bec964ee95714e350e708d532ab9c857e6de02558e98d5ec6f109406516:log:34', 'hash': '0x5d588bec964ee95714e350e708d532ab9c857e6de02558e98d5ec6f109406516', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x324c43b2e66a7e8aa8a8da918e844120c688a098', 'value': 0.00586646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08f396', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:10.000Z'}}, {'blockNum': '0x7f0342', 'uniqueId': '0xeb168a66148013726d80c6a40df5efce453ed12b2142382d9fb8e2303b8b9d5c:log:35', 'hash': '0xeb168a66148013726d80c6a40df5efce453ed12b2142382d9fb8e2303b8b9d5c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x32b2e69fea1e396d3d87db3cc34f82a60d60e2ae', 'value': 0.00041168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa0d0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:10.000Z'}}, {'blockNum': '0x7f0342', 'uniqueId': '0x7179757478fd518b01e3fef053808e46e021f7487e13813aee7c97bd6c5744ea:log:36', 'hash': '0x7179757478fd518b01e3fef053808e46e021f7487e13813aee7c97bd6c5744ea', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x32f98a2061c9bcace6914cdd372f7de10cabef89', 'value': 0.0055234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x086d94', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:10.000Z'}}, {'blockNum': '0x7f0342', 'uniqueId': '0x277ff9113d387aa548fd272c55951b0b8c20a86322ad4926bd7fe50b7f38f023:log:37', 'hash': '0x277ff9113d387aa548fd272c55951b0b8c20a86322ad4926bd7fe50b7f38f023', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3302195bee4dfe1d27f14c64135ab274f283557b', 'value': 0.01145848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x117bf8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:10.000Z'}}, {'blockNum': '0x7f0343', 'uniqueId': '0x6579ea91decbe4111921a899475cb1828a500c2ffa62b9a59d0005c0ff433c89:log:65', 'hash': '0x6579ea91decbe4111921a899475cb1828a500c2ffa62b9a59d0005c0ff433c89', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x331252e3b8af250ad737b49bb5608e453dd8b988', 'value': 0.02092717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1feead', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:13.000Z'}}, {'blockNum': '0x7f0346', 'uniqueId': '0x11b3d22aae96e2dc9fe302fc3efbf363a58ee8711732741398b4a5c35258ad1f:log:25', 'hash': '0x11b3d22aae96e2dc9fe302fc3efbf363a58ee8711732741398b4a5c35258ad1f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x33843f220346a6ee5f1c2ed16169479e816448bf', 'value': 0.01001759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f491f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:29.000Z'}}, {'blockNum': '0x7f0347', 'uniqueId': '0x61d78eddbb9a3bc350ba908afdfe76baa95e7c6f972c464c259725d7275a46bc:log:62', 'hash': '0x61d78eddbb9a3bc350ba908afdfe76baa95e7c6f972c464c259725d7275a46bc', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x339216fb93b816ee16f4cc6edca95a9939792890', 'value': 0.00391097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05f7b9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:38.000Z'}}, {'blockNum': '0x7f034d', 'uniqueId': '0xc8fb176d060333c31ff8b2896a699bd67b5ebb43f1bf2ef4755ff588df6b1d75:log:4', 'hash': '0xc8fb176d060333c31ff8b2896a699bd67b5ebb43f1bf2ef4755ff588df6b1d75', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3392cea0a1fdb485ce2a37de696f692099fb3e7b', 'value': 0.08096414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7b8a9e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:24:31.000Z'}}, {'blockNum': '0x7f034d', 'uniqueId': '0x25e9d648f64f365fbb297803319c7dffc70b27331285bbc9df51f3a29e90fba3:log:5', 'hash': '0x25e9d648f64f365fbb297803319c7dffc70b27331285bbc9df51f3a29e90fba3', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3397546a133d33550a74c53e0bf9e187a6c1e2b9', 'value': 0.00065869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01014d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:24:31.000Z'}}, {'blockNum': '0x7f0353', 'uniqueId': '0x571f6f9acb7bc26b036a61b2c6cb2ceec0989d345cc023bffc04fce0102529b1:log:36', 'hash': '0x571f6f9acb7bc26b036a61b2c6cb2ceec0989d345cc023bffc04fce0102529b1', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x33aac15e8dcce4a548d27bdb075b28f2f0803630', 'value': 0.01413441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x159141', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:25:58.000Z'}}, {'blockNum': '0x7f0353', 'uniqueId': '0x3298ee56fc5deeb2a8e3db9ec2d0a8980cb6c8a6fd38a43a4e56960855f9a6ff:log:37', 'hash': '0x3298ee56fc5deeb2a8e3db9ec2d0a8980cb6c8a6fd38a43a4e56960855f9a6ff', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x344aeaa8e9edc542b94235091e9b70d4ebb6ad12', 'value': 0.01221323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12a2cb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:25:58.000Z'}}, {'blockNum': '0x7f0353', 'uniqueId': '0x456e6609412b747e3383de36b7fd98dcc993f0baf470f2f2d81114c0e1223980:log:38', 'hash': '0x456e6609412b747e3383de36b7fd98dcc993f0baf470f2f2d81114c0e1223980', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3451622c0f880ae238d720b5693ecf6f8294fb06', 'value': 0.00459711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0703bf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:25:58.000Z'}}, {'blockNum': '0x7f0353', 'uniqueId': '0x1172dd0d743eae17dae78a89ced692b25538ea8d6ae5de8d99930c5664625a44:log:39', 'hash': '0x1172dd0d743eae17dae78a89ced692b25538ea8d6ae5de8d99930c5664625a44', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x34695287d7ea674a510dda1399d3972a18a9337b', 'value': 0.02085855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1fd3df', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:25:58.000Z'}}, {'blockNum': '0x7f0354', 'uniqueId': '0xa80194c127f0bb6df1d2692aea005614922f7ef721f3ccfec5a9c8022364b768:log:103', 'hash': '0xa80194c127f0bb6df1d2692aea005614922f7ef721f3ccfec5a9c8022364b768', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3481e7ccf16870f3f6638361ac73caab6ee934b6', 'value': 0.01914321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1d35d1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:26:05.000Z'}}, {'blockNum': '0x7f0356', 'uniqueId': '0xa7e1e9551d15720238750a4734fbe4c16c8a992b51ec5705e8462f700946c00b:log:8', 'hash': '0xa7e1e9551d15720238750a4734fbe4c16c8a992b51ec5705e8462f700946c00b', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x09bbf76688ad7df542bd377678c66b7f2e015b16', 'value': 0.01671509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x198155', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:26:40.000Z'}}, {'blockNum': '0x7f0356', 'uniqueId': '0x3bc5fc3cd14ce4b96cc015412138cd062f3137c10185269350c3a96561cf4303:log:9', 'hash': '0x3bc5fc3cd14ce4b96cc015412138cd062f3137c10185269350c3a96561cf4303', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x09d38641852219f174c0623e6e670881dd32d900', 'value': 0.24146087, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x017070a7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:26:40.000Z'}}, {'blockNum': '0x7f0356', 'uniqueId': '0xc99ed6de6d6e36c715659b14acfabf5c34cb9f96918508a1a5aa691de8ea9c33:log:10', 'hash': '0xc99ed6de6d6e36c715659b14acfabf5c34cb9f96918508a1a5aa691de8ea9c33', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x09df7ea444944c24aef42ad03295358678171506', 'value': 1.66062044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09e5e7dc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:26:40.000Z'}}, {'blockNum': '0x7f0356', 'uniqueId': '0x5abad68bf9f9d359c13b8076013cdf48064205f315c1bcb21f1c811d3467c104:log:11', 'hash': '0x5abad68bf9f9d359c13b8076013cdf48064205f315c1bcb21f1c811d3467c104', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0a6baef62b13c5f3ee690d74eaf439e60da06231', 'value': 0.03321694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x32af5e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:26:40.000Z'}}, {'blockNum': '0x7f0356', 'uniqueId': '0xb6f80cb478827cf41ce55c1ef4b6b9e5513c393ec5e64c32f7d322d00082ece2:log:12', 'hash': '0xb6f80cb478827cf41ce55c1ef4b6b9e5513c393ec5e64c32f7d322d00082ece2', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0a878625362d3cdd50c2f71aa613cd8fcc21a73b', 'value': 0.90484371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0564ae93', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:26:40.000Z'}}, {'blockNum': '0x7f0356', 'uniqueId': '0xfc655209655edb0dc4af6c77212460d0ab723e1e6903388a3ddcbf75260626bc:log:13', 'hash': '0xfc655209655edb0dc4af6c77212460d0ab723e1e6903388a3ddcbf75260626bc', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0abce90d80dbbe342df19aaa6d82d9b004c96ec1', 'value': 0.01434196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x15e254', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:26:40.000Z'}}, {'blockNum': '0x7f0359', 'uniqueId': '0xb1128d3bb875176cb39e052f8ee4dd7fdb279f62594be50e5161da4285840c8d:log:0', 'hash': '0xb1128d3bb875176cb39e052f8ee4dd7fdb279f62594be50e5161da4285840c8d', 'from': '0x0bd68cb43b188be181ebfd05b87374874858212d', 'to': '0x8c240d98e179a9e283a2394e5969a2eea95ca810', 'value': 0.04088658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3e6352', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:26:50.000Z'}}, {'blockNum': '0x7f0359', 'uniqueId': '0x3eea8ce38e4da51ec325a7d133c6c4c395aa1308029a4195c0b372b63ef11326:log:17', 'hash': '0x3eea8ce38e4da51ec325a7d133c6c4c395aa1308029a4195c0b372b63ef11326', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0b6adc15b5474faac6c1c218cd8d7c6cfd6b8faa', 'value': 0.16411745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xfa6c61', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:26:50.000Z'}}, {'blockNum': '0x7f035d', 'uniqueId': '0x3ef0bf795aa7ca4c244f4c467e086c8e7a14c7612b89ed12c62ffb18b450c1f0:log:63', 'hash': '0x3ef0bf795aa7ca4c244f4c467e086c8e7a14c7612b89ed12c62ffb18b450c1f0', 'from': '0xa7298541e52f96d42382ecbe4f242cbcbc534d02', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 278.26020501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x067a8f6095', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:11.000Z'}}, {'blockNum': '0x7f035d', 'uniqueId': '0x904920bf19d9fc6d6b14d9738e6456af7bdf8c166056cbef804f9f5549ded614:log:116', 'hash': '0x904920bf19d9fc6d6b14d9738e6456af7bdf8c166056cbef804f9f5549ded614', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x348d8adf39e1fc19be932b3f2917c21c825dd978', 'value': 0.00035679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8b5f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:11.000Z'}}, {'blockNum': '0x7f035d', 'uniqueId': '0x4a467636a28f98556c655dd86ae474e823dc847c187039322848f8112aefa47f:log:117', 'hash': '0x4a467636a28f98556c655dd86ae474e823dc847c187039322848f8112aefa47f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x34fb1f09c370f9810070a8d2df766afabaf91a76', 'value': 0.00363652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x058c84', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:11.000Z'}}, {'blockNum': '0x7f035d', 'uniqueId': '0xcb65a20c1c02fd18fd0ea4dfec90324fd23f96454a5f0af0dda4b1b6ec4a82b6:log:118', 'hash': '0xcb65a20c1c02fd18fd0ea4dfec90324fd23f96454a5f0af0dda4b1b6ec4a82b6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x34ea47ac6dbeb55482a029dea7f20fe675ecd2a5', 'value': 0.02288952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22ed38', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:11.000Z'}}, {'blockNum': '0x7f035e', 'uniqueId': '0x447354b0f8b00ef86ab60965ff64f9959f6fff0c3879a22aff7104c6c33c8211:log:33', 'hash': '0x447354b0f8b00ef86ab60965ff64f9959f6fff0c3879a22aff7104c6c33c8211', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3512ffd48d3f89866ff873fc0637c94443ef77c1', 'value': 0.00713582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ae36e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:50.000Z'}}, {'blockNum': '0x7f035e', 'uniqueId': '0xf6c824db5fadfb78880ef3c03c6b6dfe669dc149affa4e45b1a12b27aa91ce2a:log:34', 'hash': '0xf6c824db5fadfb78880ef3c03c6b6dfe669dc149affa4e45b1a12b27aa91ce2a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x357bdf2a8b28eda9374cc3dbb6cc29310eab6c10', 'value': 0.04555948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4584ac', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:50.000Z'}}, {'blockNum': '0x7f035e', 'uniqueId': '0x0284235986b16d8720600ffa964c924f8ccc5256235d812a8834bdcb0b397104:log:35', 'hash': '0x0284235986b16d8720600ffa964c924f8ccc5256235d812a8834bdcb0b397104', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x35a98c72d40cae37fb6120d584a5858452868042', 'value': 0.00542048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x084560', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:50.000Z'}}, {'blockNum': '0x7f035e', 'uniqueId': '0xdac1a8823192252a5339700cb04311e55c2e9b85f46b8781fb24fa70c2bd50ff:log:36', 'hash': '0xdac1a8823192252a5339700cb04311e55c2e9b85f46b8781fb24fa70c2bd50ff', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x35ee023dee15dedf0f3b3ca5885ab457d2b8037d', 'value': 0.00782195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0bef73', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:50.000Z'}}, {'blockNum': '0x7f035e', 'uniqueId': '0x2d20ead2dd512c3bea6997b6b955590b0b2fe910d05e7116b1c6082f382cd03c:log:37', 'hash': '0x2d20ead2dd512c3bea6997b6b955590b0b2fe910d05e7116b1c6082f382cd03c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x35a6623588b2f97ff5ad4c0526567997fd212eea', 'value': 0.0135855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14bad6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:50.000Z'}}, {'blockNum': '0x7f035e', 'uniqueId': '0x70727d5d90dfab50f88e44ddee57d983b7fcf3b27dffbc220db6823cffe2c9ad:log:38', 'hash': '0x70727d5d90dfab50f88e44ddee57d983b7fcf3b27dffbc220db6823cffe2c9ad', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x36b34c106746e8b44af3124409805e9c17a36dad', 'value': 0.00267593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x041549', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:50.000Z'}}, {'blockNum': '0x7f035e', 'uniqueId': '0x0642673e3ff8c4c02157cb58918a800a87545230ac35942bb96c008c181e9b94:log:39', 'hash': '0x0642673e3ff8c4c02157cb58918a800a87545230ac35942bb96c008c181e9b94', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x36dcf60deda3ec2b90bbcafa4886d334f4eeed86', 'value': 0.00161242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0275da', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:50.000Z'}}, {'blockNum': '0x7f035e', 'uniqueId': '0x862b7f8a0a83774aaf64aa38634580c2bb784d0d3c05022e50b64745b662b045:log:40', 'hash': '0x862b7f8a0a83774aaf64aa38634580c2bb784d0d3c05022e50b64745b662b045', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x36a163ae5b3d370273cc178338137609b0bf0c73', 'value': 0.00161242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0275da', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:50.000Z'}}, {'blockNum': '0x7f035e', 'uniqueId': '0x14d736db66aa22c134d99662aa4fafd6a06b4d3b08b72465b2d2a045e701e238:log:41', 'hash': '0x14d736db66aa22c134d99662aa4fafd6a06b4d3b08b72465b2d2a045e701e238', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x36d4a91ebd99a313f5cb4060e84a96d7ac573ba4', 'value': 0.02295127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x230557', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:50.000Z'}}, {'blockNum': '0x7f0361', 'uniqueId': '0x10563734dc6caafdacd53f9fb63c9d6e8e47d6d7b8db1caacb9565819b31f960:log:115', 'hash': '0x10563734dc6caafdacd53f9fb63c9d6e8e47d6d7b8db1caacb9565819b31f960', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x372e9546f3b0261ca0dbd2a4eb0b82d29662a3d6', 'value': 0.0201038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ead0c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:28:45.000Z'}}, {'blockNum': '0x7f0361', 'uniqueId': '0xa46124dfeb7bdc466a2ed66f9325bd06500d7b7af618e996076ab62b57b02287:log:116', 'hash': '0xa46124dfeb7bdc466a2ed66f9325bd06500d7b7af618e996076ab62b57b02287', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3787c57dc7a951c6e954cb64c121a6c9b1a41b21', 'value': 0.04182003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3fcff3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:28:45.000Z'}}, {'blockNum': '0x7f0361', 'uniqueId': '0xe55126052d7e7d70e1758512fc44a9259833ebd5feb2fb68990fff5cfec1abb6:log:117', 'hash': '0xe55126052d7e7d70e1758512fc44a9259833ebd5feb2fb68990fff5cfec1abb6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x37ab4f0b9cf56f720d28aa9b94ccd17e4b4d0620', 'value': 0.05609854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x55997e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:28:45.000Z'}}, {'blockNum': '0x7f0361', 'uniqueId': '0xaff6dae09bb93fe0164c8836f2bca3aa7192bc7f8ceb75652a6e9d6550ec514b:log:118', 'hash': '0xaff6dae09bb93fe0164c8836f2bca3aa7192bc7f8ceb75652a6e9d6550ec514b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x38630cceeb0f40949790772dede8dd84008a8e6f', 'value': 0.00570865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08b5f1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:28:45.000Z'}}, {'blockNum': '0x7f0362', 'uniqueId': '0x1a4faa4b572a846a5eb9979e2317dc6a0e8fa61da58a4db1800c4325c88d5cd2:log:83', 'hash': '0x1a4faa4b572a846a5eb9979e2317dc6a0e8fa61da58a4db1800c4325c88d5cd2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x49984ae1a4c0b61792e4b22f37a6079f95fa5344', 'value': 0.02814703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2af2ef', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:17.000Z'}}, {'blockNum': '0x7f0362', 'uniqueId': '0xb2808bd657d06aadf33e3a80c20b505679fe8506a3581d6c264893d2f679b360:log:84', 'hash': '0xb2808bd657d06aadf33e3a80c20b505679fe8506a3581d6c264893d2f679b360', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4993dde698e00dbf75e6745c8a30db75a1edbc9d', 'value': 0.00171299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x029d23', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:17.000Z'}}, {'blockNum': '0x7f0362', 'uniqueId': '0xd25aca75f31dea39e6a51f9fbce48031f170e54dfa8c484490a2930b1aa59d76:log:85', 'hash': '0xd25aca75f31dea39e6a51f9fbce48031f170e54dfa8c484490a2930b1aa59d76', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x49816d0cfa45f1e78fc9563d7a4f3dcd62a8a966', 'value': 0.00085649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014e91', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:17.000Z'}}, {'blockNum': '0x7f0362', 'uniqueId': '0xee9da6b4906e4e8bb8ede109ded3596542b6dd551b29600dbf0f4a1f593535c6:log:86', 'hash': '0xee9da6b4906e4e8bb8ede109ded3596542b6dd551b29600dbf0f4a1f593535c6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x388f7f9f6a9c1eede50754d01584b709d0315bf5', 'value': 0.00614778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09617a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:17.000Z'}}, {'blockNum': '0x7f0362', 'uniqueId': '0xf92e93f7cc76bb11aaa610b9a5a5ca5f74e4f333310c4c195a3fa400d589c8ae:log:87', 'hash': '0xf92e93f7cc76bb11aaa610b9a5a5ca5f74e4f333310c4c195a3fa400d589c8ae', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x38c4f8b6a9fba073120ce0ae9104b755d346fc1e', 'value': 5.489e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1571', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:17.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0x7967527f5972df53b8489235f8bedd7c8255569054a74532b90630e76cf01287:log:79', 'hash': '0x7967527f5972df53b8489235f8bedd7c8255569054a74532b90630e76cf01287', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4ab054802b2f00d429ba05fa7a4135de3aec446b', 'value': 0.77720359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04a1eb27', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0x43afeb4943d008c6a98e8d6f1575120caf390c0cdd5bffd91a099e1f3a58f722:log:80', 'hash': '0x43afeb4943d008c6a98e8d6f1575120caf390c0cdd5bffd91a099e1f3a58f722', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4ae677e2f17f2c63fef1a1aaa4d9701d2c4d95fa', 'value': 0.00290104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x046d38', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0xe7e84ac5cbf71e795594d37d4f7deac15bbe0cf5cf444896824b9e0408255bf0:log:83', 'hash': '0xe7e84ac5cbf71e795594d37d4f7deac15bbe0cf5cf444896824b9e0408255bf0', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x38d5e0befd52a6e50a4a18f06b788f5af0cfc8cb', 'value': 0.07578381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x73a30d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0x7a5435397074c037e176c7aaeecdcf494d5e0bfb0801eb6ea14be2f54f03d4f4:log:84', 'hash': '0x7a5435397074c037e176c7aaeecdcf494d5e0bfb0801eb6ea14be2f54f03d4f4', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0b8b8216fa790b5917666c5012aa912d7fcaf3c7', 'value': 0.00020635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x509b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0x1f3a70e02445197b0f6e8d54784eab88e671ba029b9dca82aa6cba2d0c8a9a05:log:85', 'hash': '0x1f3a70e02445197b0f6e8d54784eab88e671ba029b9dca82aa6cba2d0c8a9a05', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0babc32cb28229cd11992051e8b0e4f877b3b117', 'value': 0.00049526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc176', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0x629370818b1f43fd45c1f17f3b4d7dfc0ca68fb4101f4ef5ccbcc49cbb1717c1:log:86', 'hash': '0x629370818b1f43fd45c1f17f3b4d7dfc0ca68fb4101f4ef5ccbcc49cbb1717c1', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0c4c708c8f0309bfc05b047c1f97080331647092', 'value': 8.942e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22ee', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0x76b8a8c52236108981de2cc3c776fcab9b8dd563eb3b081e2a1b198b66c17376:log:87', 'hash': '0x76b8a8c52236108981de2cc3c776fcab9b8dd563eb3b081e2a1b198b66c17376', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0d0fbaa8fb07ce1ef4b66362f67392aea2f7f50d', 'value': 0.53818473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03353469', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0x77b4b546fb4dfa7c903cddeb93db98858923eb5bf0de754a2f2ee94635dc4d07:log:88', 'hash': '0x77b4b546fb4dfa7c903cddeb93db98858923eb5bf0de754a2f2ee94635dc4d07', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0d1e5bddb7be97189776024cb733b4a8d24ce1dd', 'value': 0.38692345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x024e65f9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0x020c5e68ccf42ca0e993d1d1395de6e1a30c4b732da55c7d00eefdd6bb92bbb6:log:89', 'hash': '0x020c5e68ccf42ca0e993d1d1395de6e1a30c4b732da55c7d00eefdd6bb92bbb6', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0d89617df8aae0a734687184fb8bc0d8b8a84002', 'value': 0.00569551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08b0cf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0x68a41973c46d6c3972fa471565c46bcc3be2ddf9449021aa2c3bbcd9fc8f9a6d:log:90', 'hash': '0x68a41973c46d6c3972fa471565c46bcc3be2ddf9449021aa2c3bbcd9fc8f9a6d', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0d94d655de331439da3ce40446815073ee07928a', 'value': 1.56701591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09571397', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0x748f3f34d046d28359ebf84417a1681f97962a2a9ab721dc94fcaec57a612eb1:log:91', 'hash': '0x748f3f34d046d28359ebf84417a1681f97962a2a9ab721dc94fcaec57a612eb1', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0e28ac7ee1aab7c3cabe7d7d06ea9a999c8588e8', 'value': 0.36258682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0229437a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0x3fad663172a89571aaf7fd5f36c54b5abc0f7aa07d67365f5676c63a5b8f1fd5:log:92', 'hash': '0x3fad663172a89571aaf7fd5f36c54b5abc0f7aa07d67365f5676c63a5b8f1fd5', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0ec70b5e4e3467a2f4c3e5c1c8b750322505c2ce', 'value': 0.44453205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02a64d55', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0x17c29a6ff66cabc339c4c10d0066b8fa8ba0505b1ec7a6691281477d0c52ef05:log:39', 'hash': '0x17c29a6ff66cabc339c4c10d0066b8fa8ba0505b1ec7a6691281477d0c52ef05', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0eea7da3e6d8a964c2ac7dff6c6e5f01ea73e3d6', 'value': 1.463458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08b90f48', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0xcbf3d6873953aa2b6ec98ad0e31cee307e125b092b6f38aaec1c7e0149a5e736:log:58', 'hash': '0xcbf3d6873953aa2b6ec98ad0e31cee307e125b092b6f38aaec1c7e0149a5e736', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4b8463dcc68cbfe51b12f6afcbc96af552252fb4', 'value': 0.00215506, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0349d2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0xb269ddca2473267b4e4f5b78ba4a948d026873901cc19ed266506bb95902560e:log:59', 'hash': '0xb269ddca2473267b4e4f5b78ba4a948d026873901cc19ed266506bb95902560e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4b878044667feda542998dbd8690b74dc5556154', 'value': 0.01480914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1698d2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0xb42362d69d55b5498a9559a2d18f9f48d0ceb951fdf84897a5b90d62644d7f47:log:60', 'hash': '0xb42362d69d55b5498a9559a2d18f9f48d0ceb951fdf84897a5b90d62644d7f47', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4b887741d3d67c84fc45588c71d2dc65a3be2764', 'value': 0.02562589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x271a1d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0x1d004df5ae559e332074481a3fd7e71404c3e7b9612d308fdbe9d9d3024963ef:log:61', 'hash': '0x1d004df5ae559e332074481a3fd7e71404c3e7b9612d308fdbe9d9d3024963ef', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4c439dfb27d76ef996ac56fbabfd2b53114b6d15', 'value': 0.00011051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2b2b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0xeeb38f2284990a3322c4edf0fc4022f0f8d5e520269f935f84bf42324be5f323:log:62', 'hash': '0xeeb38f2284990a3322c4edf0fc4022f0f8d5e520269f935f84bf42324be5f323', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4da1f3f61c06f9b5972c0ee2c705af08f38860ff', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0x08e79a9e556e268b2057f6e5eb55f4e9b99d0186d0562a4f9c84389727732544:log:63', 'hash': '0x08e79a9e556e268b2057f6e5eb55f4e9b99d0186d0562a4f9c84389727732544', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x38f433ceaaacdf9fa939f9fb2e0257ea61725e31', 'value': 0.02579874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x275da2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0x3755dc3a4be8fc97f25eb0e404c3550770001fc3791a5803aa870c7db20da1b5:log:64', 'hash': '0x3755dc3a4be8fc97f25eb0e404c3550770001fc3791a5803aa870c7db20da1b5', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x38b326f35fafcf697bda7511705e68ce29123ec5', 'value': 0.02288266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22ea8a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0xf148c8baa06b8401834f64447eb0e9fca76c38b4dd0008b0c875568b78a64fdd:log:65', 'hash': '0xf148c8baa06b8401834f64447eb0e9fca76c38b4dd0008b0c875568b78a64fdd', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3917c9627812351b9b60054affd8e0860c6dc931', 'value': 0.00118015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01ccff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0x0d875bc4545876528fffcf632c44462fa7f0051ffae839e9aceea7ca80140433:log:66', 'hash': '0x0d875bc4545876528fffcf632c44462fa7f0051ffae839e9aceea7ca80140433', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3947c871966085a06a807a2baf6fc34181de0eb5', 'value': 0.00960591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ea84f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0xca857db2798fbc8870a81410a8d5eefe17580ae20051a1d6109ff6b54d312d3f:log:67', 'hash': '0xca857db2798fbc8870a81410a8d5eefe17580ae20051a1d6109ff6b54d312d3f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3a038df468c6d1da4618d5f9e74b60390c7c93df', 'value': 0.02051549, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f4ddd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0xa1f8fd09a6bb33a559778615895d80a0a2c552f12e3d326b1d5f86c57c1022c2:log:68', 'hash': '0xa1f8fd09a6bb33a559778615895d80a0a2c552f12e3d326b1d5f86c57c1022c2', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3b18432bba473422d552251231bb2a994e281ab4', 'value': 0.00993526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f28f6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0xecb5eb660800848f7be87eb038ce8ca070bb9b837305525edc9f524548bda92e:log:69', 'hash': '0xecb5eb660800848f7be87eb038ce8ca070bb9b837305525edc9f524548bda92e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3b1942c3557a00ac0b7dcb679a261cf5b42ed430', 'value': 0.00583216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08e630', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0369', 'uniqueId': '0x72fe37e1d47537ef1f9cb1621748e2461e24f6b1f398172a692d5c801f939fb7:log:48', 'hash': '0x72fe37e1d47537ef1f9cb1621748e2461e24f6b1f398172a692d5c801f939fb7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4daedd0c7906b0d5e7e5805f283b0d8805735971', 'value': 0.00110515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01afb3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:40.000Z'}}, {'blockNum': '0x7f0369', 'uniqueId': '0x08e525037b45cc01d17c6213f9984a3b4dcb1081f2b31824961eb413cd8d9f2a:log:49', 'hash': '0x08e525037b45cc01d17c6213f9984a3b4dcb1081f2b31824961eb413cd8d9f2a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3b74256958a303c531e7138d0be5398781e8bebb', 'value': 0.00775334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0bd4a6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:40.000Z'}}, {'blockNum': '0x7f036e', 'uniqueId': '0x630d6b88205e7151bfd964bc54017e74fb924e4adf19dc018d9d65da45df3ce2:log:16', 'hash': '0x630d6b88205e7151bfd964bc54017e74fb924e4adf19dc018d9d65da45df3ce2', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0f2f35765e365cf7940ac6ecca130aeaed3798c3', 'value': 0.68870311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x041ae0a7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:32:09.000Z'}}, {'blockNum': '0x7f036e', 'uniqueId': '0xca319787df68dd5916893d6836c4a636e027c16a304cd4ead3b700b446af4db9:log:17', 'hash': '0xca319787df68dd5916893d6836c4a636e027c16a304cd4ead3b700b446af4db9', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0fa1155ad4ca2cca430814feb2fdce40c36b89e7', 'value': 0.30110555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01cb735b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:32:09.000Z'}}, {'blockNum': '0x7f036f', 'uniqueId': '0x5bc896452cfcbbd8e50b6e03642dde2b9391a44a2374c3e01d069466c3e0d703:log:109', 'hash': '0x5bc896452cfcbbd8e50b6e03642dde2b9391a44a2374c3e01d069466c3e0d703', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4df335e264c77843c46d55d4b7ee51c1e55c787b', 'value': 0.00203763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031bf3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:32:55.000Z'}}, {'blockNum': '0x7f036f', 'uniqueId': '0xb14ab2c4a51f20e5ff00462582e8717fae4cc1c0c3a21393eae9f058d3da52d0:log:110', 'hash': '0xb14ab2c4a51f20e5ff00462582e8717fae4cc1c0c3a21393eae9f058d3da52d0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4def9d38b88818fb170d9b9ef76bf22b3e9ebd8f', 'value': 0.36048929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02261021', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:32:55.000Z'}}, {'blockNum': '0x7f036f', 'uniqueId': '0x0056c6971e11297a40d268518ff3e072e5c5c1e87dafb26ba949562d97e90647:log:111', 'hash': '0x0056c6971e11297a40d268518ff3e072e5c5c1e87dafb26ba949562d97e90647', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4e1ebc40d3646fab3e5a619c87f76444b8fff60d', 'value': 0.02351918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23e32e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:32:55.000Z'}}, {'blockNum': '0x7f036f', 'uniqueId': '0xa78aecc62f072cf9974c31d1428eb362bd324bed111e182765b7509d4d434636:log:112', 'hash': '0xa78aecc62f072cf9974c31d1428eb362bd324bed111e182765b7509d4d434636', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4e21ba222717f037a0296b949737153b5390f2f1', 'value': 0.0839576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x801bf0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:32:55.000Z'}}, {'blockNum': '0x7f036f', 'uniqueId': '0x586e9ff1901ada8b055639fd606095d6c360218b41cd2783d5fde4637f32bba8:log:113', 'hash': '0x586e9ff1901ada8b055639fd606095d6c360218b41cd2783d5fde4637f32bba8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4e86c0b2b2ba3af17b6d25931b733ea2d1464fbd', 'value': 0.00939385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0e5579', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:32:55.000Z'}}, {'blockNum': '0x7f036f', 'uniqueId': '0x716828740c7509c5a667502b7f17fd643355f26f049f4bbe736be14fb342ee75:log:121', 'hash': '0x716828740c7509c5a667502b7f17fd643355f26f049f4bbe736be14fb342ee75', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0fa4a88d69a208da32daf11b14c616fe0f62f98a', 'value': 0.00552354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x086da2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:32:55.000Z'}}, {'blockNum': '0x7f0370', 'uniqueId': '0xcb26f57a319b6cada8eb1f40fec362bf7d19b3a9edf6599b868b314c5460cb6c:log:8', 'hash': '0xcb26f57a319b6cada8eb1f40fec362bf7d19b3a9edf6599b868b314c5460cb6c', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x104c69a9fc19bfbd37b509a82fa34ce2d5780423', 'value': 0.00860517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d2165', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:33:14.000Z'}}, {'blockNum': '0x7f0370', 'uniqueId': '0x3d00545ad78a2d1fc3c378f6d8c5292ac21cf3376a9aaa7726e8c1ca267934d9:log:9', 'hash': '0x3d00545ad78a2d1fc3c378f6d8c5292ac21cf3376a9aaa7726e8c1ca267934d9', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3be0d421c69d0fb10e48b48b5e2846b9a05e0b31', 'value': 0.01036066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0fcf22', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:33:14.000Z'}}, {'blockNum': '0x7f0370', 'uniqueId': '0x518ef8bb4c03b6da920bc7562a1acb56fdefd0717132313c30494a7b6f467671:log:10', 'hash': '0x518ef8bb4c03b6da920bc7562a1acb56fdefd0717132313c30494a7b6f467671', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3c3323413576a6a6dca55f7061373fa3789b7712', 'value': 0.01831985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1bf431', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:33:14.000Z'}}, {'blockNum': '0x7f0370', 'uniqueId': '0xf555fc056d24b32096c1c675376103c3f6f2671860c87f2918c8d51cee8974a1:log:11', 'hash': '0xf555fc056d24b32096c1c675376103c3f6f2671860c87f2918c8d51cee8974a1', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3c47f46a0b86d9f9c3778213962aea3ca2affe62', 'value': 0.02120162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2059e2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:33:14.000Z'}}, {'blockNum': '0x7f0370', 'uniqueId': '0x79e46c7d3c26bd486618312061f06f8093eace8aca91a8a74e7e6d4fe6eb83ff:log:12', 'hash': '0x79e46c7d3c26bd486618312061f06f8093eace8aca91a8a74e7e6d4fe6eb83ff', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3c73e018013e813c957840d2b29191599579c661', 'value': 0.16069324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf532cc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:33:14.000Z'}}, {'blockNum': '0x7f0370', 'uniqueId': '0xbfa85093b0436f4a08420e01b2de9cb169ee0e0e045007484e0f553e70e1e391:log:13', 'hash': '0xbfa85093b0436f4a08420e01b2de9cb169ee0e0e045007484e0f553e70e1e391', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3c96bb7df2a71a2d8160e3233e0558db33ea84bd', 'value': 0.00043912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xab88', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:33:14.000Z'}}, {'blockNum': '0x7f0370', 'uniqueId': '0xcf9057074765f29e4c18b822d1b65dd685731a928b2cc1950d7ed51ccd18e8ee:log:14', 'hash': '0xcf9057074765f29e4c18b822d1b65dd685731a928b2cc1950d7ed51ccd18e8ee', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3da89cfe97731156f0ce44f71b7a61ed42dd09ee', 'value': 0.01399719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x155ba7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:33:14.000Z'}}, {'blockNum': '0x7f0371', 'uniqueId': '0xd13dc9b9ebd0a47f91d0ef96739f179ab844f1813681db80712add7662a9f909:log:7', 'hash': '0xd13dc9b9ebd0a47f91d0ef96739f179ab844f1813681db80712add7662a9f909', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4ea2e26322da6a9d81830f5b240d5596f6e54243', 'value': 0.06233791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5f1ebf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:33:17.000Z'}}, {'blockNum': '0x7f0374', 'uniqueId': '0xf82fbdc06beb8d592cd31a0f881a14aa90c0bfe3c9521637d5d8943034edff77:log:106', 'hash': '0xf82fbdc06beb8d592cd31a0f881a14aa90c0bfe3c9521637d5d8943034edff77', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4eae449c335096c1b73048f48529ea8a9ba03674', 'value': 0.05480901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x53a1c5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:33:30.000Z'}}, {'blockNum': '0x7f0375', 'uniqueId': '0xf17f1680ffc1d45224b176a5a3bed15f5382ae6d4709e1ac700def7ebd45c2ac:log:70', 'hash': '0xf17f1680ffc1d45224b176a5a3bed15f5382ae6d4709e1ac700def7ebd45c2ac', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4f46ba1360be53aae841b91e97c8100464cceb5e', 'value': 0.01847688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1c3188', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:34:10.000Z'}}, {'blockNum': '0x7f0375', 'uniqueId': '0xdf11f001e7f65586f5d58c5c29fb73dfb2ed29e49036cfba1df211f96e92fadc:log:71', 'hash': '0xdf11f001e7f65586f5d58c5c29fb73dfb2ed29e49036cfba1df211f96e92fadc', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4f8cffca3fe0653b9b2c403ec30ab297a7f76c50', 'value': 0.03553779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3639f3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:34:10.000Z'}}, {'blockNum': '0x7f0375', 'uniqueId': '0x7830aca390e106b6df429637b5b2b3890a8cfd576303d4331a04bb202b93b552:log:72', 'hash': '0x7830aca390e106b6df429637b5b2b3890a8cfd576303d4331a04bb202b93b552', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3dcc883d12704f6676204168cb31b40d7ebdccf2', 'value': 0.02199068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x218e1c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:34:10.000Z'}}, {'blockNum': '0x7f0375', 'uniqueId': '0x03af3f5de4f8f4bc1a2f525ba6149833a038b3faaea3b02b4e0d98ee17a364cf:log:73', 'hash': '0x03af3f5de4f8f4bc1a2f525ba6149833a038b3faaea3b02b4e0d98ee17a364cf', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3ec9b53e899499e9d3f95643e46b7ab55574703b', 'value': 0.00285432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x045af8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:34:10.000Z'}}, {'blockNum': '0x7f0375', 'uniqueId': '0xe50fcf056d4b19367c7041e3c14da836f27d87aababaefb728674687c972bdcc:log:74', 'hash': '0xe50fcf056d4b19367c7041e3c14da836f27d87aababaefb728674687c972bdcc', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3f22861129b95af15de6a47bc4d8499bbb5fd238', 'value': 0.01413441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x159141', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:34:10.000Z'}}, {'blockNum': '0x7f0375', 'uniqueId': '0xe57529ccd02fa773ddb2419c813dacedb3b0b387b91126285c296404d011cd6c:log:75', 'hash': '0xe57529ccd02fa773ddb2419c813dacedb3b0b387b91126285c296404d011cd6c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3f27729c0a3a3d28d46afc70d3a5bdf85b7af35e', 'value': 0.13995818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd58f2a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:34:10.000Z'}}, {'blockNum': '0x7f0375', 'uniqueId': '0x63f4f8d95c4bba8da910187eb6f425582af0985a46ee29e7fbcd5643ec2398fd:log:76', 'hash': '0x63f4f8d95c4bba8da910187eb6f425582af0985a46ee29e7fbcd5643ec2398fd', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3fcd71225517650ea93a362dc68850c2f69578a9', 'value': 0.01159571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x11b193', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:34:10.000Z'}}, {'blockNum': '0x7f0376', 'uniqueId': '0x775925df75fba7c5d506a88da2d6c236a1e6e904834583f99719c7609cab4dc5:log:2', 'hash': '0x775925df75fba7c5d506a88da2d6c236a1e6e904834583f99719c7609cab4dc5', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x10fc3941464db618fa40df8eb077fc94a8ae2d61', 'value': 0.1101614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa817cc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:34:39.000Z'}}, {'blockNum': '0x7f0376', 'uniqueId': '0x0854dc54996a8a1bc21d1f7867cdb1783a76b0ae5a59a2b7dfc1eee083fd2033:log:3', 'hash': '0x0854dc54996a8a1bc21d1f7867cdb1783a76b0ae5a59a2b7dfc1eee083fd2033', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x115f512348a324b36091e199fc16c1ae4ac8bb77', 'value': 0.09030277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x89ca85', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:34:39.000Z'}}, {'blockNum': '0x7f0376', 'uniqueId': '0xd7549e8f3a22e03f27708ddf124e9bef16b120d43046d89d27c35b6819f6c333:log:62', 'hash': '0xd7549e8f3a22e03f27708ddf124e9bef16b120d43046d89d27c35b6819f6c333', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3fdfdc23877f719280ebe72f65470574435526c5', 'value': 0.00922854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0e14e6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:34:39.000Z'}}, {'blockNum': '0x7f0379', 'uniqueId': '0x435486184cdb0010d3466f81075f97e8707e6c8b88d42c76a120f95078b11f2d:log:79', 'hash': '0x435486184cdb0010d3466f81075f97e8707e6c8b88d42c76a120f95078b11f2d', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x11bf3a254714b4f00af982a80ab33ea867cd0b4a', 'value': 0.00551666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x086af2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:06.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0xd5b522538fbfecd6275a9d08c171ae9c17880fa60d6472c811181c8f2d7643cb:log:83', 'hash': '0xd5b522538fbfecd6275a9d08c171ae9c17880fa60d6472c811181c8f2d7643cb', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4fa3fe897ee0419363509be0111f4305e388a672', 'value': 0.00024175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5e6f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0x2d5c1e605e4cd89a27f736d2ff1ad1230b7f5519e90e3a343a304a30205202d7:log:84', 'hash': '0x2d5c1e605e4cd89a27f736d2ff1ad1230b7f5519e90e3a343a304a30205202d7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4fbe41e9ada7d8e8a4d7aa865ab01a013aae846e', 'value': 0.12477944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbe65f8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0xa93411822659ea3235a1ebaf536d09f4073058d403536d68ae0e1ae22c3fb390:log:85', 'hash': '0xa93411822659ea3235a1ebaf536d09f4073058d403536d68ae0e1ae22c3fb390', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4fa25bf1c9b58f98de5a0b449fbe7387e04a12c3', 'value': 0.09165918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8bdc5e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0xe7b74e260df40a5a263061a32a408f606c02bcf705d27e2a18b8cd842ece2143:log:86', 'hash': '0xe7b74e260df40a5a263061a32a408f606c02bcf705d27e2a18b8cd842ece2143', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4a0cac1a6599ddfa8d8c1668e1c186d793494c34', 'value': 0.00074598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x012366', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0xeca07d81ffb86b707236b106db0612a9e81783967251a20df6529f40c38cf614:log:87', 'hash': '0xeca07d81ffb86b707236b106db0612a9e81783967251a20df6529f40c38cf614', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4a6fb0c48df17975b6d915b8446098ef620cd5d2', 'value': 0.22096287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0151299f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0x88b378498a4b8decadeb6fb376e7a36b7ebc6bfceebf8c457fc5c40828cce01b:log:88', 'hash': '0x88b378498a4b8decadeb6fb376e7a36b7ebc6bfceebf8c457fc5c40828cce01b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4cd9cd79dfbcfe523bf83739b51e719e68d3dcda', 'value': 2.762e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0x00d33b9a1428039201c5353d6adcb35033d247f0da195f0cc226f8521b326e7b:log:89', 'hash': '0x00d33b9a1428039201c5353d6adcb35033d247f0da195f0cc226f8521b326e7b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4dcc849813186b235ac46aef44ac28ef73175450', 'value': 0.0503193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4cc7fa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0x0b7d3edf3755d13175c486f1b544c071784725269920868927980ab710f28318:log:90', 'hash': '0x0b7d3edf3755d13175c486f1b544c071784725269920868927980ab710f28318', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4e3ddbf8a6b6183fe31cac3314dbb42025f90963', 'value': 3.453e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d7d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0xac034c9c1fc9e3656c32dce709c8c3920f16bcfabd39d58ee1f4fcd4cf7f97bf:log:91', 'hash': '0xac034c9c1fc9e3656c32dce709c8c3920f16bcfabd39d58ee1f4fcd4cf7f97bf', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4ebaf078abef8c6aac14457ca220f0e179d596b4', 'value': 0.00245207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03bdd7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0x48729ad89709e3aab6ff54ab0f3fe6000b93f9da2ec27ddf1b8cff40e8c62898:log:92', 'hash': '0x48729ad89709e3aab6ff54ab0f3fe6000b93f9da2ec27ddf1b8cff40e8c62898', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3a04d6336f0948636801ae398b7478f4927ee5cc', 'value': 0.00569493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08b095', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0x229987c4967d36bd72abefadba8b8381c79a737b1b99bbb03ff3ead30f96710f:log:93', 'hash': '0x229987c4967d36bd72abefadba8b8381c79a737b1b99bbb03ff3ead30f96710f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3afca76f6a97649a3fde05f133d7ae1ed2b581fb', 'value': 0.01630261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x18e035', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0x2fc01f6008a147ea9ac60240552797c5db65098887124f1d0fbe996e8c9ef777:log:94', 'hash': '0x2fc01f6008a147ea9ac60240552797c5db65098887124f1d0fbe996e8c9ef777', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3bab3ee9f80717e1a46fc08558fa5605ad6b777d', 'value': 0.01331105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x144fa1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0x0fc24df5e565208c2d8c4eeb8652c901a3c64c2ea1bde4636c035c723880bbfc:log:95', 'hash': '0x0fc24df5e565208c2d8c4eeb8652c901a3c64c2ea1bde4636c035c723880bbfc', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3c438e7aab4e09045d6a4b5314f431844bc66677', 'value': 0.01270725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1363c5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0xf732140429963af473f641112d9df3b3004a2ec48d891c0689c8d129d8f26d1d:log:96', 'hash': '0xf732140429963af473f641112d9df3b3004a2ec48d891c0689c8d129d8f26d1d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3c8e01ef63823df650ba4409ee10b1fb7fb47d06', 'value': 0.006038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x093698', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0xc3f3773b5b438e61b3834c133b9259a4d0dbdd912adbb275c0fa7d00f38a2e25:log:97', 'hash': '0xc3f3773b5b438e61b3834c133b9259a4d0dbdd912adbb275c0fa7d00f38a2e25', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3cc2caae97d9db608d802fd2febc4bb2a84cd4ce', 'value': 0.00044598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xae36', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0xaf64e60f8a109fa9a794764cad27c7c5c83c977e4933dfe665ac7e6674367a63:log:98', 'hash': '0xaf64e60f8a109fa9a794764cad27c7c5c83c977e4933dfe665ac7e6674367a63', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3d2ddf3c389e534b29d8773243c38786f8b1f600', 'value': 0.00370513, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05a751', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0xe01bf05a9bb5dae24723e7cdb42cc5221c87c82cc3180d9a6fbcfcb22d756cfa:log:99', 'hash': '0xe01bf05a9bb5dae24723e7cdb42cc5221c87c82cc3180d9a6fbcfcb22d756cfa', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3d4aa9b18320a8dd0587c3bc57640c9aaeb4eca4', 'value': 0.00871393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d4be1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0x9132abef7a5e6d941dcac975076eefaeb760b5c83ad4d3ee89cc276abb44a9d9:log:124', 'hash': '0x9132abef7a5e6d941dcac975076eefaeb760b5c83ad4d3ee89cc276abb44a9d9', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3d7934a0f7e603566d4f4bdf9db0dbbedc4dd6fe', 'value': 0.00445988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06ce24', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0x8f32efc3a96f3fc7c669c4f483e7a31d02b0b29a2d84cfc1d90e1e5196bf9022:log:125', 'hash': '0x8f32efc3a96f3fc7c669c4f483e7a31d02b0b29a2d84cfc1d90e1e5196bf9022', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3dc523ea5c95bf21f8195d5910b302e4f1235840', 'value': 0.00830225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0cab11', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0xe7a271d3f2272372de848337d65e29426934ef90c0a98c60f48ea57516688955:log:126', 'hash': '0xe7a271d3f2272372de848337d65e29426934ef90c0a98c60f48ea57516688955', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3e5487f7df3e608593bdde7f7f22d27604392d08', 'value': 0.0005146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc904', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0x0de27e0d57797c033b0ea9da725b545fd9227022f3489940f8d7f5a51ce88c2f:log:127', 'hash': '0x0de27e0d57797c033b0ea9da725b545fd9227022f3489940f8d7f5a51ce88c2f', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4f0d48c6881bc6fc257b8a63b9a56458d3e9b6c2', 'value': 0.00259021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03f3cd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0x75a6fc35994f6147d983d6aa2bd27123fabc87cb19947bc6e28d5c65d127c688:log:128', 'hash': '0x75a6fc35994f6147d983d6aa2bd27123fabc87cb19947bc6e28d5c65d127c688', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4f7f0fb13e6360240b74f6e250976ff6b41371e0', 'value': 0.01883606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1cbdd6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0xcd897ab8b6da7152e6116a8662d53531073b29794c962e7f0008edb3913187ce:log:133', 'hash': '0xcd897ab8b6da7152e6116a8662d53531073b29794c962e7f0008edb3913187ce', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x11cb4b21b11b6c1282291a01cb7725933fd76792', 'value': 0.01320698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1426fa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0x6fe2d82c08e664fac05285b4f89274606512acf08f578d49af2f83b2fd53a5dd:log:134', 'hash': '0x6fe2d82c08e664fac05285b4f89274606512acf08f578d49af2f83b2fd53a5dd', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x120b3d8bc249a2c82d890c228b7cfd5acfc423da', 'value': 0.24093121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016fa1c1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0x96e39577a71fe9071c1705914ff6d0926e76c6029c9536c5f3a7809335109165:log:135', 'hash': '0x96e39577a71fe9071c1705914ff6d0926e76c6029c9536c5f3a7809335109165', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x12a8822c9a93bc595bf0b9ed297607aadc939578', 'value': 0.0112053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x111912', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0xfdc71749922ef15357761c648bbf2e2fe8d18b690a357f4effeb27c8e1b21600:log:136', 'hash': '0xfdc71749922ef15357761c648bbf2e2fe8d18b690a357f4effeb27c8e1b21600', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x12adabb203e9741283042fa356bc4d30e5e90081', 'value': 0.35974595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0224edc3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0x9a4b89975ecb548c97582e99ca3672a4cb0c1df80eaae2a35748cf51246f8ca9:log:137', 'hash': '0x9a4b89975ecb548c97582e99ca3672a4cb0c1df80eaae2a35748cf51246f8ca9', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x1324aad89aa0744eb398d25dbb1409e5e8a2a12c', 'value': 1.34066053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07fdaf85', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0x311ef3a88cc4a0a8200140ff1f1e3571f91919e813aed64824c39a2ad2a18492:log:138', 'hash': '0x311ef3a88cc4a0a8200140ff1f1e3571f91919e813aed64824c39a2ad2a18492', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x138b29c26b84acbf1529f0906e34757d8b1552c9', 'value': 0.29045054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01bb313e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0xdd678e5c35e1e453b44f88b4b1f1654533f24f012ec09e24b802c61a226370be:log:139', 'hash': '0xdd678e5c35e1e453b44f88b4b1f1654533f24f012ec09e24b802c61a226370be', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x13d1bdffd982439749dd2684065f7f007e97a875', 'value': 8.254e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x203e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0x74c1dc8107435736b2596ffd25384cc071a9a4aed96b63e37d1a0332942eda0a:log:140', 'hash': '0x74c1dc8107435736b2596ffd25384cc071a9a4aed96b63e37d1a0332942eda0a', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x14011475b92a4b780c94e65431b15711244803b2', 'value': 1.375e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x055f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0x76d53a66ff052453caebc8e02ee3053cacb2c969161d74a271743f857270f0ec:log:141', 'hash': '0x76d53a66ff052453caebc8e02ee3053cacb2c969161d74a271743f857270f0ec', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x14052ab2eb933d9f8ce38ac3c249363ccc724464', 'value': 0.27967171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01aabec3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0381', 'uniqueId': '0x1f522d57f2c37ef7e76fbe40c8f509e556784f3f01e18c2e2f4ec167982611b9:log:12', 'hash': '0x1f522d57f2c37ef7e76fbe40c8f509e556784f3f01e18c2e2f4ec167982611b9', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3e6c753cb00f0c9f363d4ac4ec60388fa74b01ad', 'value': 0.02984695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2d8af7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:24.000Z'}}, {'blockNum': '0x7f0383', 'uniqueId': '0xc048e06b31537d8afb44ed8bcf7f35244cf21d2705e9d8134f38de7a4a7a92ce:log:46', 'hash': '0xc048e06b31537d8afb44ed8bcf7f35244cf21d2705e9d8134f38de7a4a7a92ce', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4f8cdcdf26435e5376c1a6fb73c6a0a5e9e9f5bc', 'value': 0.02987384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2d9578', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:35.000Z'}}, {'blockNum': '0x7f0384', 'uniqueId': '0x98936f9d0d6ee1df181267c2df08e4f897fd653d1e2fc19f13c38cd833cbbb56:log:73', 'hash': '0x98936f9d0d6ee1df181267c2df08e4f897fd653d1e2fc19f13c38cd833cbbb56', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4fc41555c094857e47e108e42e4537049b49fd99', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:36.000Z'}}, {'blockNum': '0x7f0384', 'uniqueId': '0x69ad48c610e8047e4d76054e5cc6583f075d4cb7c15a65f2b09fb8edb8a3acf2:log:74', 'hash': '0x69ad48c610e8047e4d76054e5cc6583f075d4cb7c15a65f2b09fb8edb8a3acf2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x5016aae777d37d656683fb981cc5aee493b361ee', 'value': 0.05764098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x57f402', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:36.000Z'}}, {'blockNum': '0x7f0384', 'uniqueId': '0xa9f2f335b4d80307cf554958bde39440e5147c35cf252b329c5c20aa5daff0d8:log:77', 'hash': '0xa9f2f335b4d80307cf554958bde39440e5147c35cf252b329c5c20aa5daff0d8', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3ee83180ecaaa7143a9bfb6a05a67cd9acf9c7ba', 'value': 0.00195548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02fbdc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:36.000Z'}}, {'blockNum': '0x7f0384', 'uniqueId': '0x1219851f1e55502249d5be59e410a92bed7cc155863eca441774138f87fa0fd6:log:78', 'hash': '0x1219851f1e55502249d5be59e410a92bed7cc155863eca441774138f87fa0fd6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3f074bd7cb7d454800c66dd766fc29f989999181', 'value': 0.00878255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d66af', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:36.000Z'}}, {'blockNum': '0x7f0384', 'uniqueId': '0x000f1b07984c67cc6475f6bb4c538902be75d167245bd0d4d46c37889f2305c3:log:79', 'hash': '0x000f1b07984c67cc6475f6bb4c538902be75d167245bd0d4d46c37889f2305c3', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3f6312fd939dcadf607c8eed886e0156faecda15', 'value': 0.17918462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x011169fe', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:36.000Z'}}, {'blockNum': '0x7f0385', 'uniqueId': '0x83d744fca8c2a1f0c57119bef58357888a3b08ecc9b1bbcc06bf8d45daa4bef2:log:19', 'hash': '0x83d744fca8c2a1f0c57119bef58357888a3b08ecc9b1bbcc06bf8d45daa4bef2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x509be1b6c0d18bf6221a76b93f936c5c632fa0bb', 'value': 0.61650645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03acb6d5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:38:10.000Z'}}, {'blockNum': '0x7f0385', 'uniqueId': '0x2ee61ce2ec5523d6734d6a41307d31b9b79a0796b21c8a663d18d96bca057a97:log:21', 'hash': '0x2ee61ce2ec5523d6734d6a41307d31b9b79a0796b21c8a663d18d96bca057a97', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3f663c6e63e8fa973f22787f852e1e00914e360e', 'value': 0.00964022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0eb5b6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:38:10.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0xe62c4d196def4c087fc381234291adb254b655bb756c593c3be5f5939ce30efa:log:108', 'hash': '0xe62c4d196def4c087fc381234291adb254b655bb756c593c3be5f5939ce30efa', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x50abb2f2d75469b0855314fbd63bbc2bfc597785', 'value': 0.00207217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x032971', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0xd486e546a95253e8e824ea648735a05c21a861942f9a6daa5eef465ae0ec2773:log:109', 'hash': '0xd486e546a95253e8e824ea648735a05c21a861942f9a6daa5eef465ae0ec2773', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x51090098c754cb5f04e57dccb127d171ab2cd887', 'value': 0.05669469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x56825d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x14e3b087d9b44a4e9ac2650394c6bbfbf538269c7b5b62f6226d9442e48bd145:log:110', 'hash': '0x14e3b087d9b44a4e9ac2650394c6bbfbf538269c7b5b62f6226d9442e48bd145', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x511895a4f0e801e9012f44f8f37487e6ea337c3f', 'value': 0.00154722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x025c62', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0xb41cbfe034961cea0f483a68c7247592e1ba5641ae9139faba6f80eb11c1b8ee:log:111', 'hash': '0xb41cbfe034961cea0f483a68c7247592e1ba5641ae9139faba6f80eb11c1b8ee', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3ff39298b96813099355626fc18153ad966e17ba', 'value': 0.00950299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0e801b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x6bdd4be7c9fbb9880552e64374a5b0e1990ff6a7f0e8200cffd6cd26a3640345:log:112', 'hash': '0x6bdd4be7c9fbb9880552e64374a5b0e1990ff6a7f0e8200cffd6cd26a3640345', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3ff83d096d31c6fa232c39a7ddbb7448081b1ab7', 'value': 0.00075475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0126d3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x61373fb0a28bed486b0c33d7daf9ee90d602924eba86bf6dcdedadb921238591:log:113', 'hash': '0x61373fb0a28bed486b0c33d7daf9ee90d602924eba86bf6dcdedadb921238591', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x400303bcd4bf9243d116be436d7f306aec35ea9e', 'value': 0.00032934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x80a6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x19de005fb5bff8cf7870e26f8d8d919ee5b47eed1de7901f4b04810e5c037809:log:114', 'hash': '0x19de005fb5bff8cf7870e26f8d8d919ee5b47eed1de7901f4b04810e5c037809', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x4045a7dac57e456bb335817849a133162d7442ab', 'value': 0.0012076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01d7b8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x0fe85dafd52601a2b1ae55a78ce3d63c2ff4718f19bdea3f8fa31e37f19fd066:log:115', 'hash': '0x0fe85dafd52601a2b1ae55a78ce3d63c2ff4718f19bdea3f8fa31e37f19fd066', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x405e94a57d6801e3e583d30776ffc047b0aad6a6', 'value': 2.744e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ab8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x2e28075919a80ff93d34592d45527e131e51fc01db11bcb45cab51de5a7ffcbc:log:116', 'hash': '0x2e28075919a80ff93d34592d45527e131e51fc01db11bcb45cab51de5a7ffcbc', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x406f9064d8b605ecffa5bbd75ebcceb2f457e79c', 'value': 0.01228184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12bd98', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x2a130e501d3113baff7021f3291263e049074fdded79641d255ec32bd11bb376:log:117', 'hash': '0x2a130e501d3113baff7021f3291263e049074fdded79641d255ec32bd11bb376', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x408965e07bc026cada8a8f3b73f751756d08ac2a', 'value': 0.02531844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26a204', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x21e6b2efc0d701fa465a422cddd51a0c1da027c3ade17f83981ca749103705d1:log:118', 'hash': '0x21e6b2efc0d701fa465a422cddd51a0c1da027c3ade17f83981ca749103705d1', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x419ec1b706a786e5df7315e3b97f4aaefbf05026', 'value': 0.01789444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b4e04', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x74252077d0d1fed8ac9c47539a21f56999fb471edaabb956189a63f4025b7b90:log:119', 'hash': '0x74252077d0d1fed8ac9c47539a21f56999fb471edaabb956189a63f4025b7b90', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x41b3d61d125c07f69066a5ec8eb9f9e2a8036d0c', 'value': 0.01272783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x136bcf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x5716ddb628ced417b808de2401b5a54ba787a42d13ac34fec2c142200ac9d841:log:120', 'hash': '0x5716ddb628ced417b808de2401b5a54ba787a42d13ac34fec2c142200ac9d841', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x41ebbbd8c8ea43da810b317e2c08d1121308dd70', 'value': 0.00439127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06b357', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0xff45ac93e0878f9d0b8aaf867276392ae1c6c43b3ed5969cefb632d68c4785cf:log:121', 'hash': '0xff45ac93e0878f9d0b8aaf867276392ae1c6c43b3ed5969cefb632d68c4785cf', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x421c107d6b82da7346f2ce3dd3784e93a7efb84b', 'value': 0.00304644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04a604', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x2ed1d8567707eec2dfd2eafa9d4349f7ba07172df34eb1d9441e00a08e615e96:log:122', 'hash': '0x2ed1d8567707eec2dfd2eafa9d4349f7ba07172df34eb1d9441e00a08e615e96', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x421e4eb81a24a1e1d80dfa86b8fc8e35ab9ec71c', 'value': 0.00226425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x037479', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0xe2802622387236266cfab7b5bcd9ce2143484f0d8af9003569e7255f8ffcbb6d:log:123', 'hash': '0xe2802622387236266cfab7b5bcd9ce2143484f0d8af9003569e7255f8ffcbb6d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x4226d52b39877668a0888d2ad2fa13e8637640d8', 'value': 0.02596341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x279df5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0xeb354b9bd3f130542ec4a4ce3b7b8dfda397dfaba6c234a9005ad7b348523950:log:124', 'hash': '0xeb354b9bd3f130542ec4a4ce3b7b8dfda397dfaba6c234a9005ad7b348523950', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x42862ccfcc8a9a33ac9f803f716d250a4812f665', 'value': 0.00658691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a0d03', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x1d4e9f20fc84f2cdda7b049aa07808aa64bca5734c2e7930c891906d6edba56a:log:125', 'hash': '0x1d4e9f20fc84f2cdda7b049aa07808aa64bca5734c2e7930c891906d6edba56a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x429f0b98d6aee7e18209cc95a9ac2c99a7a4ea6b', 'value': 0.00480295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x075427', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x38ddb3fd754811e32c35cb5d8b473433a2af53f488b6b21da2a47083afe0047d:log:126', 'hash': '0x38ddb3fd754811e32c35cb5d8b473433a2af53f488b6b21da2a47083afe0047d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x42b5c5f28dafe27ca602eb6f9b97b3f70180630d', 'value': 0.01506756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x16fdc4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x32b9bdea6be585aa01e8358bee39015c05319a4ef6c1a0672c741cbfdbe03908:log:127', 'hash': '0x32b9bdea6be585aa01e8358bee39015c05319a4ef6c1a0672c741cbfdbe03908', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x42e05dc97e7baf3e1ecaaa657f2a8c479038d81b', 'value': 0.00518033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07e791', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038e', 'uniqueId': '0xf538e33c80af32d0f9773e4760719281d2979de563c87537cffee3d28c51855e:log:15', 'hash': '0xf538e33c80af32d0f9773e4760719281d2979de563c87537cffee3d28c51855e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x4314b8c4d5933ed75b4fdc08b7597f8856118871', 'value': 0.01447748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x161744', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:41.000Z'}}, {'blockNum': '0x7f038e', 'uniqueId': '0x29fc72313f3b8f1ea98aedb906ff83571ed152b3e4e9ad63b9a6b24a1efcb02e:log:16', 'hash': '0x29fc72313f3b8f1ea98aedb906ff83571ed152b3e4e9ad63b9a6b24a1efcb02e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x519f39f5f663ab28b1a0811097ff4ee6977a6990', 'value': 2.762e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:41.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0x093706a34bbec6de4f1062b7eddd080e41b9c122343c8602d55a458aa405831a:log:10', 'hash': '0x093706a34bbec6de4f1062b7eddd080e41b9c122343c8602d55a458aa405831a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x431623abdcd66ba2f5105859a7cdb575be14e667', 'value': 0.00270337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x042001', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0x3b313761c96b4e4cf14e4c6748da78f48c19ea440817d817a8e0aa97f46cacdb:log:11', 'hash': '0x3b313761c96b4e4cf14e4c6748da78f48c19ea440817d817a8e0aa97f46cacdb', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x432e9dabe0ec0ecac47c1d1e2024c0d5926e6218', 'value': 0.00365024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0591e0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0xa1dc5724ee0373d2f79f1aa7bbc0d0d732dd26daff3ff47f6f8968171765276d:log:12', 'hash': '0xa1dc5724ee0373d2f79f1aa7bbc0d0d732dd26daff3ff47f6f8968171765276d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x4374398fc33c5ebf7e92fb111521a9a5bc4e3325', 'value': 0.00727305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b1909', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0xf7336aff812ec2060915f17fcef67b5f9750ec99cd6f66998d725b4c511280ff:log:13', 'hash': '0xf7336aff812ec2060915f17fcef67b5f9750ec99cd6f66998d725b4c511280ff', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x43b08ce13abca96763b99cac35a3935a7f6444f4', 'value': 0.00874824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d5948', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0xfe9813382b3ae3a6449b8a9928d3d26fe027ed40d002579856a7dabead7eceb9:log:14', 'hash': '0xfe9813382b3ae3a6449b8a9928d3d26fe027ed40d002579856a7dabead7eceb9', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x43c9a8870cc24c88212b14912bcd24ed673a3176', 'value': 0.02336295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23a627', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0x0ef6e329e822f07d3965c9f41e1ddad6078a1c2be5c31cad0b620b6ad695e49b:log:15', 'hash': '0x0ef6e329e822f07d3965c9f41e1ddad6078a1c2be5c31cad0b620b6ad695e49b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x4434ba4dc9faec4b99f0fe15081647e0557e146c', 'value': 0.01396288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x154e40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0x5c6e6943fd99cdec0175aab72b3ecc9c979be76feab06dd91ebc15b1139a1cba:log:16', 'hash': '0x5c6e6943fd99cdec0175aab72b3ecc9c979be76feab06dd91ebc15b1139a1cba', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x51a9e356e810a802801014007fbeea2d2053e714', 'value': 0.04928321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4b3341', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0xd23a1caa064b90431bd0691516fa46b3514c90443a48698019674681a8a2bb1b:log:17', 'hash': '0xd23a1caa064b90431bd0691516fa46b3514c90443a48698019674681a8a2bb1b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x51dc998df36ba16241b7c6498469fed2d2eda7da', 'value': 0.3388696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x020512f0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0x665c1606453f36ce33a6f8b86c1a3e49cfd41f94e4c1adf4c0ecbd8e618394c0:log:18', 'hash': '0x665c1606453f36ce33a6f8b86c1a3e49cfd41f94e4c1adf4c0ecbd8e618394c0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x521af46b9b09ecda22467f7977b0d24dc673f537', 'value': 0.00597476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x091de4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0xa40bd553261c3b020948404ca9c84e3e5b33a0f5216cbeaa3acac5ee46a7ed53:log:19', 'hash': '0xa40bd553261c3b020948404ca9c84e3e5b33a0f5216cbeaa3acac5ee46a7ed53', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x52329c94d913eec7bddf09e9eda71b0f2aaee1cc', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0x3a1e439b5801e71f41fc089c99a037f3ea39968f0681e1d8394f1bc1fe0aebb1:log:20', 'hash': '0x3a1e439b5801e71f41fc089c99a037f3ea39968f0681e1d8394f1bc1fe0aebb1', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x524c1a81ec57f7ac4d941839ea31c78f99c8cc8a', 'value': 0.00259021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03f3cd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0397', 'uniqueId': '0xb530a2e60ec65ef23802ca77511a576ab890d188c616201e91b324d0e7a98a68:log:69', 'hash': '0xb530a2e60ec65ef23802ca77511a576ab890d188c616201e91b324d0e7a98a68', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x525a5fe6012e10a25284a5bc287968eb6ab0da0d', 'value': 5.525e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1595', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:21.000Z'}}, {'blockNum': '0x7f0399', 'uniqueId': '0x9dd39e6010296d6593da49e4381f61cde1e6b383ae93a23c10edb71888c47b5c:log:101', 'hash': '0x9dd39e6010296d6593da49e4381f61cde1e6b383ae93a23c10edb71888c47b5c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x4495fe2d74cea7e4b4cd2f79231b63c1e6503403', 'value': 0.00343068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x053c1c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:53.000Z'}}, {'blockNum': '0x7f0399', 'uniqueId': '0xda1f85161e14a2ac53449df5cbc3e41993c0eea100118259102516323ac1cb98:log:102', 'hash': '0xda1f85161e14a2ac53449df5cbc3e41993c0eea100118259102516323ac1cb98', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x44a46e8ac16ba3456c3f606d1bfaf3073f88f28a', 'value': 0.01461471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x164cdf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:53.000Z'}}, {'blockNum': '0x7f0399', 'uniqueId': '0xb8000546055a31d60033f9c0d8f992e28b0370af4ad143cffb04cba81eb1d659:log:103', 'hash': '0xb8000546055a31d60033f9c0d8f992e28b0370af4ad143cffb04cba81eb1d659', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x44bbb67e5f02eeb86401e5e023d5a805cac5ae2d', 'value': 0.00548909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08602d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:53.000Z'}}, {'blockNum': '0x7f0399', 'uniqueId': '0x7e66a15fc74515a342649867a62a4b769a76b856b6d2cbfaddeb1c79f2d3f21b:log:104', 'hash': '0x7e66a15fc74515a342649867a62a4b769a76b856b6d2cbfaddeb1c79f2d3f21b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x457b99ac42a76c37c62f8bc0faad0b7aa012738e', 'value': 0.02065271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f8377', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:53.000Z'}}], 'pageKey': 'cca167e3-333d-4c11-ab52-8a906e2e7b1f'}}
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Number of returned transfers: 1005
Answer is complete
symbol ICN
group BPG
date 2018-08-08
hour 16:00
exchange binance
Name: 253, dtype: object
HERE
Symbol: ICN, Contract:
Datetime timestamps: 2018-08-08 16:00:00 2018-08-08 04:00:00 2018-08-09 04:00:00
Unix timestamps: 1533693600.0 1533780000.0
Hex Block Numbers: 0x5d32d4 0x5d4a05
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol OAX
group BPG
date 2018-08-17
hour 16:00
exchange binance
Name: 254, dtype: object
HERE
Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps: 2018-08-17 16:00:00 2018-08-17 04:00:00 2018-08-18 04:00:00
Unix timestamps: 1534471200.0 1534557600.0
Hex Block Numbers: 0x5e0308 0x5e19c2
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x5e0afa', 'uniqueId': '0xab4681269b71b8379d0fe596d32c1cfee87e94e5a76f17937f1b0b804a387095:log:16', 'hash': '0xab4681269b71b8379d0fe596d32c1cfee87e94e5a76f17937f1b0b804a387095', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf7c8d0ca768080105330d9de4f0f96b001ff7a55', 'value': 963.324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x3438ce5a1738660000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T10:25:36.000Z'}}, {'blockNum': '0x5e0dec', 'uniqueId': '0xe210f978d3d13321c318e8c95fbe2a96dcceca13bea002f50516c230537c174d:log:22', 'hash': '0xe210f978d3d13321c318e8c95fbe2a96dcceca13bea002f50516c230537c174d', 'from': '0x1966b35598ed9b92b75091f6ec296cdd22e064cb', 'to': '0xe4fae7bdc973581fe52eb1905646664f6d7b7dbf', 'value': 302.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1064a49dd0ee200000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T13:29:37.000Z'}}, {'blockNum': '0x5e104b', 'uniqueId': '0xdd1b17cc55deebe8530db5d15af5579e8050c01af40bec7d9036e51cd3073443:log:116', 'hash': '0xdd1b17cc55deebe8530db5d15af5579e8050c01af40bec7d9036e51cd3073443', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 3302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xb30074914113d80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T16:01:21.000Z'}}, {'blockNum': '0x5e104d', 'uniqueId': '0x29c477f7fb2e33c7098734bf8a7b9018cd66b215ff7161d6134e28de18105890:log:42', 'hash': '0x29c477f7fb2e33c7098734bf8a7b9018cd66b215ff7161d6134e28de18105890', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 957.75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x33eb73869f7e5f0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T16:02:12.000Z'}}, {'blockNum': '0x5e1053', 'uniqueId': '0xa6b4541e34c077e397a2b7c40b667195e392df19bbdf674bd1650722d50667ca:log:17', 'hash': '0xa6b4541e34c077e397a2b7c40b667195e392df19bbdf674bd1650722d50667ca', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 5229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x011b76f3d39215940000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T16:03:50.000Z'}}, {'blockNum': '0x5e1056', 'uniqueId': '0xb8e8a4d606acbbbfd92973fd2c0d1bb33f3789b140e82dd575f0b9948044019c:log:104', 'hash': '0xb8e8a4d606acbbbfd92973fd2c0d1bb33f3789b140e82dd575f0b9948044019c', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1037.70281994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x38410500c010d6e800', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T16:04:49.000Z'}}, {'blockNum': '0x5e105c', 'uniqueId': '0xb782dec40d3a8f05d94ad950ae8110e644925b66d8271c9f5eafbf0704149eba:log:33', 'hash': '0xb782dec40d3a8f05d94ad950ae8110e644925b66d8271c9f5eafbf0704149eba', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1020.07015935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x374c51355d90dc1c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T16:06:00.000Z'}}, {'blockNum': '0x5e107e', 'uniqueId': '0xa68139d0f9fe5631695090bab0b06236da5bb39163311a99fdf84ceb6041ec77:log:91', 'hash': '0xa68139d0f9fe5631695090bab0b06236da5bb39163311a99fdf84ceb6041ec77', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6317.52297929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0156793e4dfe33ea0400', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T16:13:02.000Z'}}, {'blockNum': '0x5e107e', 'uniqueId': '0x2f9c6bc028083c5f5c4b8b28b51982d48a6dea5c33e97356f4dd5126d8b540d2:log:92', 'hash': '0x2f9c6bc028083c5f5c4b8b28b51982d48a6dea5c33e97356f4dd5126d8b540d2', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x011b76f3d39215940000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T16:13:02.000Z'}}, {'blockNum': '0x5e10bc', 'uniqueId': '0x9a6fd9a892212a060fadb8c470783a6efa265ecc5d5807edaa64567ddb2142e9:log:18', 'hash': '0x9a6fd9a892212a060fadb8c470783a6efa265ecc5d5807edaa64567ddb2142e9', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x203367ecda66080000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T16:29:04.000Z'}}, {'blockNum': '0x5e10d6', 'uniqueId': '0x5caa9591e35863d6e24b5921669e1d8447666118ecd414983f939039b8481b48:log:8', 'hash': '0x5caa9591e35863d6e24b5921669e1d8447666118ecd414983f939039b8481b48', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x55f08cfc99a9da49f8d9db5aeb0f1a3e8ad0bf7f', 'value': 9394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01fd3ff04c7473880000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T16:36:53.000Z'}}, {'blockNum': '0x5e10f5', 'uniqueId': '0x9689a021f03709b71ed35f9a494c3f6e8211f0132ff4d43ad44f878fa36d604d:log:20', 'hash': '0x9689a021f03709b71ed35f9a494c3f6e8211f0132ff4d43ad44f878fa36d604d', 'from': '0x55f08cfc99a9da49f8d9db5aeb0f1a3e8ad0bf7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01fd3ff04c7473880000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T16:43:08.000Z'}}]}}
Number of returned transfers: 12
Answer is complete
symbol RDN
group BPG
date 2018-08-21
hour 16:00
exchange binance
Name: 255, dtype: object
HERE
Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps: 2018-08-21 16:00:00 2018-08-21 04:00:00 2018-08-22 04:00:00
Unix timestamps: 1534816800.0 1534903200.0
Hex Block Numbers: 0x5e5f1a 0x5e7667
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x5e5ff1', 'uniqueId': '0xc85e09c0effd529492f3c6c68a238b9ab6f1bc8a7450db9691347af681a6c771:log:0', 'hash': '0xc85e09c0effd529492f3c6c68a238b9ab6f1bc8a7450db9691347af681a6c771', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3423940069110f235a4c3e1112abe0246170903b', 'value': 979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x35125ab109236c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T02:53:00.000Z'}}, {'blockNum': '0x5e6049', 'uniqueId': '0xabaafecaae73b504cc447b6138b7a018b430098ff4de02f317275568f834f846:log:6', 'hash': '0xabaafecaae73b504cc447b6138b7a018b430098ff4de02f317275568f834f846', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 4526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf55ade1c3969f80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T03:13:15.000Z'}}, {'blockNum': '0x5e61c5', 'uniqueId': '0x2c6bb3871b17d4b72427117d8fa14e557cad3ed8ef82082b76f0c0b9214c4c0a:log:0', 'hash': '0x2c6bb3871b17d4b72427117d8fa14e557cad3ed8ef82082b76f0c0b9214c4c0a', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xfa1542e385fd4d8e1f1b3b057b04b0ed9f521936', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T04:47:50.000Z'}}, {'blockNum': '0x5e62b3', 'uniqueId': '0x53e8eb2e39b86f15844d4b0b08c53f986f84d4dc658a9d73b15ad068764c8fee:log:38', 'hash': '0x53e8eb2e39b86f15844d4b0b08c53f986f84d4dc658a9d73b15ad068764c8fee', 'from': '0x81f1d004fc93f35ae9e46a11dd39432f3651664d', 'to': '0xb7bb6c45800f4531cc1581637868373a06367b48', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T05:42:49.000Z'}}, {'blockNum': '0x5e636b', 'uniqueId': '0x711a8e4066b4da6999b2f839c94ac13dc88330335dbf6a53fbc18f18185c6720:log:51', 'hash': '0x711a8e4066b4da6999b2f839c94ac13dc88330335dbf6a53fbc18f18185c6720', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2020.2443023315334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6d84859141e9e81f24', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T06:26:51.000Z'}}, {'blockNum': '0x5e636b', 'uniqueId': '0x711a8e4066b4da6999b2f839c94ac13dc88330335dbf6a53fbc18f18185c6720:log:53', 'hash': '0x711a8e4066b4da6999b2f839c94ac13dc88330335dbf6a53fbc18f18185c6720', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x4d9cf56abbbca2b8fea0d4d90c8f5a3c82c90119', 'value': 2020.2443023315334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6d84859141e9e81f24', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T06:26:51.000Z'}}, {'blockNum': '0x5e6383', 'uniqueId': '0xfa6b6dafe441500e04619e43b5ff5c9bb712e0b45044f78432b5ecb07b96bf95:log:2', 'hash': '0xfa6b6dafe441500e04619e43b5ff5c9bb712e0b45044f78432b5ecb07b96bf95', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4a0d0ee29f2f980000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T06:32:30.000Z'}}, {'blockNum': '0x5e6394', 'uniqueId': '0x6cd56777e3d07770fce6e8170914f2cdc9fe13678f77a0e9d437fc5760676d65:log:11', 'hash': '0x6cd56777e3d07770fce6e8170914f2cdc9fe13678f77a0e9d437fc5760676d65', 'from': '0x7990da0c8c669963f82de5a0b0f5af464f39ae07', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1704.289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c63c2d7ca35b67fff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T06:37:19.000Z'}}, {'blockNum': '0x5e63b3', 'uniqueId': '0xd3ee94b912faef4977ba13753697c13fd4b51c2fb81d5d6b6500d78a4596edd2:log:6', 'hash': '0xd3ee94b912faef4977ba13753697c13fd4b51c2fb81d5d6b6500d78a4596edd2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x629bb22e86638c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T06:44:57.000Z'}}, {'blockNum': '0x5e63e7', 'uniqueId': '0x05cd7b33dd5a99a6979cbdeb3d171477ba90e0f020ad8ea8db61df95c6a90640:log:117', 'hash': '0x05cd7b33dd5a99a6979cbdeb3d171477ba90e0f020ad8ea8db61df95c6a90640', 'from': '0x5f2a8c0f9907dd1c8f6b10de8645ebf818b26250', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 118.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0666f77c4785a20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T06:57:55.000Z'}}, {'blockNum': '0x5e6402', 'uniqueId': '0x18a8f0c5a28157a740aaa50624a616bde2b968614a2e673f6daedae625ef7dbd:log:65', 'hash': '0x18a8f0c5a28157a740aaa50624a616bde2b968614a2e673f6daedae625ef7dbd', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 3274.3066542151037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb1802209fd0d0902f0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T07:04:37.000Z'}}, {'blockNum': '0x5e6402', 'uniqueId': '0x18a8f0c5a28157a740aaa50624a616bde2b968614a2e673f6daedae625ef7dbd:log:67', 'hash': '0x18a8f0c5a28157a740aaa50624a616bde2b968614a2e673f6daedae625ef7dbd', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x2d48ff17252a19ddac3f5e7276081e35402a9cc4', 'value': 3274.3066542151037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb1802209fd0d0902f0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T07:04:37.000Z'}}, {'blockNum': '0x5e6411', 'uniqueId': '0x4d360730f9ef712a4ff60afa0525a2da6ce902c210cf6ec1ce3264852d236d9d:log:8', 'hash': '0x4d360730f9ef712a4ff60afa0525a2da6ce902c210cf6ec1ce3264852d236d9d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a5aa85009e39c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T07:09:34.000Z'}}, {'blockNum': '0x5e6443', 'uniqueId': '0x2ad514a0663eb305ae94ab6537b06085485b973dda80dac62ad12ef65eec38d5:log:118', 'hash': '0x2ad514a0663eb305ae94ab6537b06085485b973dda80dac62ad12ef65eec38d5', 'from': '0xbbbb32bdf73b869b5b1df34f8600b2f09247cbe4', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 5.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4c53ecdc18a60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T07:22:46.000Z'}}, {'blockNum': '0x5e6458', 'uniqueId': '0x37c0ad6c3178952e58652ced8ce6194a71a6215e18d0d07c7cc935b23329963b:log:1', 'hash': '0x37c0ad6c3178952e58652ced8ce6194a71a6215e18d0d07c7cc935b23329963b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa721384590e14c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T07:26:47.000Z'}}, {'blockNum': '0x5e6459', 'uniqueId': '0xfe6dd22e021ed7f72e1cc520055b4fd2ddf689a5a5a4cfe1cd0544c52876ec1d:log:6', 'hash': '0xfe6dd22e021ed7f72e1cc520055b4fd2ddf689a5a5a4cfe1cd0544c52876ec1d', 'from': '0xa86b11e73634da52611a037e0dc70a9ab27959c8', 'to': '0x818a7beaa5f985de4029b045c52e5d0a2b9a95a2', 'value': 961.535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x341ffa8c11b9398000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T07:26:54.000Z'}}, {'blockNum': '0x5e647f', 'uniqueId': '0xf012f90d3a5ef0e4ef9ec9a36ca9e3ff7cbeb2ce49dd5337e20bdc665c7d8865:log:2', 'hash': '0xf012f90d3a5ef0e4ef9ec9a36ca9e3ff7cbeb2ce49dd5337e20bdc665c7d8865', 'from': '0x6b4719dddfad684418aedce49889be15bf7a15ed', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T07:34:26.000Z'}}, {'blockNum': '0x5e6486', 'uniqueId': '0x0703fac7fb7b2ee38df932120b0dbf7ed23e4b6377cec38057ed924d97c5a9cc:log:13', 'hash': '0x0703fac7fb7b2ee38df932120b0dbf7ed23e4b6377cec38057ed924d97c5a9cc', 'from': '0xce39f6dc4e1988cfd4bb725822222c174e74aeb7', 'to': '0x24952ee53e20127f0b72cd4670ca06c9ee0baf1f', 'value': 202.432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0af94eef7823e00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T07:35:30.000Z'}}, {'blockNum': '0x5e64ae', 'uniqueId': '0x59ddb3a9a0430aa36f34306981c71ee0127c8844e6868fa4c1e1a959632fdb89:log:12', 'hash': '0x59ddb3a9a0430aa36f34306981c71ee0127c8844e6868fa4c1e1a959632fdb89', 'from': '0x24952ee53e20127f0b72cd4670ca06c9ee0baf1f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 202.432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0af94eef7823e00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T07:44:37.000Z'}}, {'blockNum': '0x5e64ae', 'uniqueId': '0x18f45647a23b37f94a3ba43340428f0b1005e170a6b35abc6b8a682f7ae037bc:log:13', 'hash': '0x18f45647a23b37f94a3ba43340428f0b1005e170a6b35abc6b8a682f7ae037bc', 'from': '0x818a7beaa5f985de4029b045c52e5d0a2b9a95a2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 961.535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x341ffa8c11b9398000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T07:44:37.000Z'}}, {'blockNum': '0x5e6670', 'uniqueId': '0x7deb722afc8f6719cc4373dee89a32a4a43571a54e1dbc76372b9b5ec018a99a:log:4', 'hash': '0x7deb722afc8f6719cc4373dee89a32a4a43571a54e1dbc76372b9b5ec018a99a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf6fdd7ebeca6c34d5ff9f4f18f329c05f13ac5da', 'value': 902.092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x30e70a968301ae0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T09:30:32.000Z'}}, {'blockNum': '0x5e667a', 'uniqueId': '0xa491efc8a5ae030b0ce97405bde67fa8f151852b9313b2cae61a71bafa15657f:log:154', 'hash': '0xa491efc8a5ae030b0ce97405bde67fa8f151852b9313b2cae61a71bafa15657f', 'from': '0xd74eba253fb1cf771d29d841c8cbae7495f8031e', 'to': '0xcead80b1887232eb50533521a62de921ea54ed62', 'value': 896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x30927f74c9de000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T09:34:00.000Z'}}, {'blockNum': '0x5e66a6', 'uniqueId': '0x1ae97e95bca6c288bfc5b316922f5c460eecbdb0a51e0ab8726528c115a3637d:log:21', 'hash': '0x1ae97e95bca6c288bfc5b316922f5c460eecbdb0a51e0ab8726528c115a3637d', 'from': '0xcead80b1887232eb50533521a62de921ea54ed62', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x30927f74c9de000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T09:44:23.000Z'}}, {'blockNum': '0x5e670e', 'uniqueId': '0x835014db00b26e6bf12ff4e9db966677defb23c142b4c72abb95cb2e260981ae:log:3', 'hash': '0x835014db00b26e6bf12ff4e9db966677defb23c142b4c72abb95cb2e260981ae', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xad0a2478ba25816365aa0e32d77aff92b9e34efc', 'value': 3994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd883e26ee18e280000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T10:11:58.000Z'}}, {'blockNum': '0x5e6792', 'uniqueId': '0xfbd46812f5c2aee13cb1a19be10673da2466735ea74410ed0f922621f21bc252:log:40', 'hash': '0xfbd46812f5c2aee13cb1a19be10673da2466735ea74410ed0f922621f21bc252', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x3e8201a819c994acffb3823543e19e0415a53a21', 'value': 32.8753449225397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c83cb006a86bb52c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T10:43:21.000Z'}}, {'blockNum': '0x5e6911', 'uniqueId': '0xeae9ca9041df540c1ca90f598f247fa4cacba6ff8590b50340849b87dfe8983e:log:1', 'hash': '0xeae9ca9041df540c1ca90f598f247fa4cacba6ff8590b50340849b87dfe8983e', 'from': '0x32e567e8b527d3194c60ea3c6a5c009d58a0b36d', 'to': '0xbfdfe1f9a5b61ed9d33786d4ed4851774274b1b8', 'value': 105.18520346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05b3bce940747d00f0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T12:16:28.000Z'}}, {'blockNum': '0x5e6978', 'uniqueId': '0x756375d2fb6e479cc8eca62fa24bc1b1c9c1a073a244dfe22df354fd5d47432a:log:99', 'hash': '0x756375d2fb6e479cc8eca62fa24bc1b1c9c1a073a244dfe22df354fd5d47432a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 546.9770332602275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1da6d4c9bddce122f1', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T12:39:36.000Z'}}, {'blockNum': '0x5e6978', 'uniqueId': '0x756375d2fb6e479cc8eca62fa24bc1b1c9c1a073a244dfe22df354fd5d47432a:log:101', 'hash': '0x756375d2fb6e479cc8eca62fa24bc1b1c9c1a073a244dfe22df354fd5d47432a', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x99c95d3205aaaa68719c62e04b0374dad21052d3', 'value': 546.9770332602275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1da6d4c9bddce122f1', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T12:39:36.000Z'}}, {'blockNum': '0x5e6987', 'uniqueId': '0x034f4185ca502c80abdba8f354aa8162f00347e7c8cf50218a449ff407f9921b:log:2', 'hash': '0x034f4185ca502c80abdba8f354aa8162f00347e7c8cf50218a449ff407f9921b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd28b9760333f8f19f4af59e12c9481cc4850dd7b', 'value': 5382.089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0123c37d35f8695a8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T12:43:10.000Z'}}, {'blockNum': '0x5e6a68', 'uniqueId': '0xced84bfb2538d0145a6df077b5b8f0350fc3d7171373a0ac98ffcb8114982653:log:74', 'hash': '0xced84bfb2538d0145a6df077b5b8f0350fc3d7171373a0ac98ffcb8114982653', 'from': '0x21c3036f22cf323bd191c6f843a31833fc5c5d69', 'to': '0x656f0cded98cf6a00ffdf3d12933d4442f04e1b7', 'value': 199.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ad364ebf1ad820000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T13:37:15.000Z'}}, {'blockNum': '0x5e6ac9', 'uniqueId': '0x2b5614d2d066ca0850104a9cea72979c9f884597234d4acf0ae0c2cf6f50afb4:log:14', 'hash': '0x2b5614d2d066ca0850104a9cea72979c9f884597234d4acf0ae0c2cf6f50afb4', 'from': '0x656f0cded98cf6a00ffdf3d12933d4442f04e1b7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 199.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ad364ebf1ad820000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T14:04:02.000Z'}}, {'blockNum': '0x5e6ade', 'uniqueId': '0x8c2664d13bcd552aa72a7fef0b655c6208ef27090b10af11f3d71264eba7d3e1:log:123', 'hash': '0x8c2664d13bcd552aa72a7fef0b655c6208ef27090b10af11f3d71264eba7d3e1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 3982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd7dd59de75b5780000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T14:11:48.000Z'}}, {'blockNum': '0x5e6af3', 'uniqueId': '0x656bee1cae55956c3ac93634e5f64e7c2c4f712c367911ba7f7e4b5e527624b5:log:20', 'hash': '0x656bee1cae55956c3ac93634e5f64e7c2c4f712c367911ba7f7e4b5e527624b5', 'from': '0x32587c4c800dad2ce1ea5166bb172faa660ae4fc', 'to': '0xf73c3c65bde10bf26c2e1763104e609a41702efe', 'value': 5977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01440389a87f2dc40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T14:17:25.000Z'}}, {'blockNum': '0x5e6b09', 'uniqueId': '0xaba84b67f68c8113daefaa79f67ef7312dc604248a198ff8cf3abeb1ff2c73da:log:12', 'hash': '0xaba84b67f68c8113daefaa79f67ef7312dc604248a198ff8cf3abeb1ff2c73da', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd7dd59de75b5780000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T14:24:09.000Z'}}, {'blockNum': '0x5e6c21', 'uniqueId': '0xa6e59815b4fb90794d22c95836445878d87ef625002e409e2f9a052ee5e945c8:log:7', 'hash': '0xa6e59815b4fb90794d22c95836445878d87ef625002e409e2f9a052ee5e945c8', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x5251d9734cee6155b0243d2fd1426905d7492218', 'value': 133.195923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x073876fa4429483000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T15:28:30.000Z'}}, {'blockNum': '0x5e6c73', 'uniqueId': '0x0793c022b3f899f2c032736ee87604a10608427eec8559eed5bb7058574130df:log:2', 'hash': '0x0793c022b3f899f2c032736ee87604a10608427eec8559eed5bb7058574130df', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xb2fa68e7aa90a3c7e1cf974a9829a9c134e5d6d5', 'value': 19999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x043c25e0dcc1bd1c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T15:50:49.000Z'}}, {'blockNum': '0x5e6c8d', 'uniqueId': '0x6d9c116fb946ddf523be46f409ceefbcf40c0c1b430d06e7ce6b758efc97a5e2:log:7', 'hash': '0x6d9c116fb946ddf523be46f409ceefbcf40c0c1b430d06e7ce6b758efc97a5e2', 'from': '0xb2fa68e7aa90a3c7e1cf974a9829a9c134e5d6d5', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 19999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x043c25e0dcc1bd1c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T15:58:21.000Z'}}, {'blockNum': '0x5e6c9b', 'uniqueId': '0x67e75a894c43ae8185b45ccc1b37c1685577fab299334a52054fdfa8f4e0ce00:log:1', 'hash': '0x67e75a894c43ae8185b45ccc1b37c1685577fab299334a52054fdfa8f4e0ce00', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 318.352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x114205814c7f280000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:01:53.000Z'}}, {'blockNum': '0x5e6c9b', 'uniqueId': '0x585315d9d2ee507bf6575dd13868e60e69dbab09ac7ad8a135ea7d55d5da9d90:log:2', 'hash': '0x585315d9d2ee507bf6575dd13868e60e69dbab09ac7ad8a135ea7d55d5da9d90', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 14.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xcf9c98bd0fd80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:01:53.000Z'}}, {'blockNum': '0x5e6c9f', 'uniqueId': '0x0924768cba3b23580bf85a4c637e658a636c6c7db20bd84564ab82b7e3b691fa:log:48', 'hash': '0x0924768cba3b23580bf85a4c637e658a636c6c7db20bd84564ab82b7e3b691fa', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 783.019612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2a72947c7f9031c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:02:13.000Z'}}, {'blockNum': '0x5e6ca0', 'uniqueId': '0x167c260d54635caedda61aec2bc1afe1853a10ce8e82a6e33aa2b318b8ce0d18:log:2', 'hash': '0x167c260d54635caedda61aec2bc1afe1853a10ce8e82a6e33aa2b318b8ce0d18', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 4969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010d5eba451c14040000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:02:22.000Z'}}, {'blockNum': '0x5e6ca2', 'uniqueId': '0x6b89ae7fa588cea7d3314c393ed06d8089726fc92492fc4f39b03f3471b8c90f:log:2', 'hash': '0x6b89ae7fa588cea7d3314c393ed06d8089726fc92492fc4f39b03f3471b8c90f', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 502.982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b444708164f870000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:02:51.000Z'}}, {'blockNum': '0x5e6ca3', 'uniqueId': '0xb6fd0bc58e19a3e23c2072d62a83cbb7d35bd6d26ea517e62349784887e1b91d:log:0', 'hash': '0xb6fd0bc58e19a3e23c2072d62a83cbb7d35bd6d26ea517e62349784887e1b91d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 1037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x38374415bd10140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:02:54.000Z'}}, {'blockNum': '0x5e6ca7', 'uniqueId': '0xf43eb4270a998bb615e5b65742b42d3a55e46d374be548e5f689f36253001d30:log:0', 'hash': '0xf43eb4270a998bb615e5b65742b42d3a55e46d374be548e5f689f36253001d30', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 450.112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18668f0f3454a00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:04:01.000Z'}}, {'blockNum': '0x5e6ca7', 'uniqueId': '0x57f7f845996a6e4a9a92112155c8e852421d0e87ecceb7b4e4a1ea3242728be8:log:14', 'hash': '0x57f7f845996a6e4a9a92112155c8e852421d0e87ecceb7b4e4a1ea3242728be8', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 1376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4a97d605a3b9800000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:04:01.000Z'}}, {'blockNum': '0x5e6cbb', 'uniqueId': '0x2cc39da121106b03f04e213fc8e3a1009e49da78ad09b41f0b83ce51cb3dbce6:log:5', 'hash': '0x2cc39da121106b03f04e213fc8e3a1009e49da78ad09b41f0b83ce51cb3dbce6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x271244831b4017c9955ed638f5e4791d2c0ca06c', 'value': 1130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d41e67500df680000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:10:29.000Z'}}, {'blockNum': '0x5e6cbc', 'uniqueId': '0x13be467c8d7398a6121ad2aa670392f898705ed98b8bda2dd1f9913c9d2329c9:log:0', 'hash': '0x13be467c8d7398a6121ad2aa670392f898705ed98b8bda2dd1f9913c9d2329c9', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x44f771cbd868ff3f6e3a74f6844eb171276e465b', 'value': 1369.741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4a40f9964d18548000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:10:33.000Z'}}, {'blockNum': '0x5e6cc8', 'uniqueId': '0xd61a736a7eed4421fb690e065cd80a08a2b6a4e8c6cabebf715bb37d67b866de:log:6', 'hash': '0xd61a736a7eed4421fb690e065cd80a08a2b6a4e8c6cabebf715bb37d67b866de', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4a97d605a3b9800000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:14:08.000Z'}}, {'blockNum': '0x5e6cc8', 'uniqueId': '0x0de21faa91adbc6585b07312a95adeca24a4c746d06e4bb3bd43f99f4fe7e8a6:log:7', 'hash': '0x0de21faa91adbc6585b07312a95adeca24a4c746d06e4bb3bd43f99f4fe7e8a6', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x38374415bd10140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:14:08.000Z'}}, {'blockNum': '0x5e6cc8', 'uniqueId': '0x44c5121c40a2a1a3d8fb4473fb6dcbba2a5099fca228713b6bb052cdd69dfa7c:log:8', 'hash': '0x44c5121c40a2a1a3d8fb4473fb6dcbba2a5099fca228713b6bb052cdd69dfa7c', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010d5eba451c14040000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:14:08.000Z'}}, {'blockNum': '0x5e6cc8', 'uniqueId': '0xe3f4401f1b0197d00f7c08bcdf6afbb0de7a3cb0fa4093327a45952c5b380242:log:9', 'hash': '0xe3f4401f1b0197d00f7c08bcdf6afbb0de7a3cb0fa4093327a45952c5b380242', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2069.425612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x702f0cadd3c358c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:14:08.000Z'}}, {'blockNum': '0x5e6cd3', 'uniqueId': '0x68c0214bbe781314d82b567035808847bdc28fb952f696ed13c82ee2e7f18626:log:11', 'hash': '0x68c0214bbe781314d82b567035808847bdc28fb952f696ed13c82ee2e7f18626', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x047c32da63ee8d7a04e238e74991f9cb0bbcced3', 'value': 3539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xbfd97db5930b6c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:16:50.000Z'}}, {'blockNum': '0x5e6cdb', 'uniqueId': '0x496fba613c289494b920adcb3a0c4518cf8f93b52a2cc857fe470f6f45f6793b:log:1', 'hash': '0x496fba613c289494b920adcb3a0c4518cf8f93b52a2cc857fe470f6f45f6793b', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xb8736cffca4f723e22a9cd217644db10f78c1b12', 'value': 2860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9b0a791f1211300000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:17:57.000Z'}}, {'blockNum': '0x5e6cf6', 'uniqueId': '0x1facec84461e21345424b6b2592763be71f57b531a1ee83c716e9bfb84f72964:log:2', 'hash': '0x1facec84461e21345424b6b2592763be71f57b531a1ee83c716e9bfb84f72964', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xad0a2478ba25816365aa0e32d77aff92b9e34efc', 'value': 3992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd86821017a3f600000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:24:54.000Z'}}, {'blockNum': '0x5e6d25', 'uniqueId': '0x334306836d731dd6ea5313992df0d5ba80919c5b5ec5db3a1cc9ee964616e506:log:0', 'hash': '0x334306836d731dd6ea5313992df0d5ba80919c5b5ec5db3a1cc9ee964616e506', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'value': 2999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa2937c529df47c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:36:26.000Z'}}, {'blockNum': '0x5e6d4a', 'uniqueId': '0x9bf31e14f368c4faeabd18b53c553254121ea1b9eeea8081a284ee0eb71530f7:log:7', 'hash': '0x9bf31e14f368c4faeabd18b53c553254121ea1b9eeea8081a284ee0eb71530f7', 'from': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa2937c529df47c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:44:08.000Z'}}, {'blockNum': '0x5e6ec3', 'uniqueId': '0x074e09d5fe8bdeb23580957a437d05499d491e0722b5ce9f707e813f4c6d69c6:log:0', 'hash': '0x074e09d5fe8bdeb23580957a437d05499d491e0722b5ce9f707e813f4c6d69c6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 3363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb64f001a0ff6ac0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T18:08:05.000Z'}}, {'blockNum': '0x5e6f31', 'uniqueId': '0x287807d463498d7ba9fdab4e443e2ee6bbe82af9236d508919130bd597c9e340:log:4', 'hash': '0x287807d463498d7ba9fdab4e443e2ee6bbe82af9236d508919130bd597c9e340', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6e54d395b376cb491c2fca1488b38dc5a5da14f5', 'value': 994.997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x35f05b73c7ab588000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T18:33:31.000Z'}}, {'blockNum': '0x5e6f4a', 'uniqueId': '0xcb14b94427ac975f80761cb3e2ce02d1ea2b729e8f3d56127a3c00fe759b07b6:log:0', 'hash': '0xcb14b94427ac975f80761cb3e2ce02d1ea2b729e8f3d56127a3c00fe759b07b6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6e54d395b376cb491c2fca1488b38dc5a5da14f5', 'value': 1995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c262fca09784c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T18:40:15.000Z'}}, {'blockNum': '0x5e6f4a', 'uniqueId': '0x3a88c376689a33bc2eac94b31bc9f53796db190817114e13cd6aea6e1e86a939:log:1', 'hash': '0x3a88c376689a33bc2eac94b31bc9f53796db190817114e13cd6aea6e1e86a939', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0ebbdf8871f4e4b8240c525c084a2e54e291db2f', 'value': 3381.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb751441a765cb10000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T18:40:15.000Z'}}, {'blockNum': '0x5e7008', 'uniqueId': '0xc0c3daee6b46c941a77a491ec3a7c4bc5a123dddb63a9257067311b46d0ebaaa:log:0', 'hash': '0xc0c3daee6b46c941a77a491ec3a7c4bc5a123dddb63a9257067311b46d0ebaaa', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xa9605dbf76418b25595563b8686b5dc6305e1d73', 'value': 44.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02698fc23a98e20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T19:28:54.000Z'}}, {'blockNum': '0x5e7148', 'uniqueId': '0x44a5e362f51ea7c5d31f012ce14d4aa1af6a8f189047ea97912cc3624014f370:log:0', 'hash': '0x44a5e362f51ea7c5d31f012ce14d4aa1af6a8f189047ea97912cc3624014f370', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 3355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb5dffa6472bb8c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T20:46:24.000Z'}}, {'blockNum': '0x5e7165', 'uniqueId': '0x71416623fa913bfb5c965a0208e2c9a15d422f1f933f68cab93266309b6f1c28:log:20', 'hash': '0x71416623fa913bfb5c965a0208e2c9a15d422f1f933f68cab93266309b6f1c28', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb5dffa6472bb8c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T20:54:31.000Z'}}, {'blockNum': '0x5e72ad', 'uniqueId': '0xd8d8a351fd9d22fb7ed2af528a36968f815024cf43bca62b2809b9debdf5e025:log:50', 'hash': '0xd8d8a351fd9d22fb7ed2af528a36968f815024cf43bca62b2809b9debdf5e025', 'from': '0xaa8000d91294eeb2f868623f62b7d42af7547992', 'to': '0x0861fca546225fbf8806986d211c8398f7457734', 'value': 995.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x35f32ca73454c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T22:08:05.000Z'}}, {'blockNum': '0x5e72f0', 'uniqueId': '0x8f12726f5a86d95afa0f1775e005a0a6d5a90be8956fc2136f361309c85c1e23:log:63', 'hash': '0x8f12726f5a86d95afa0f1775e005a0a6d5a90be8956fc2136f361309c85c1e23', 'from': '0x99c95d3205aaaa68719c62e04b0374dad21052d3', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 1712.17, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5cd121c788d8910000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T22:24:32.000Z'}}, {'blockNum': '0x5e72f0', 'uniqueId': '0x8f12726f5a86d95afa0f1775e005a0a6d5a90be8956fc2136f361309c85c1e23:log:64', 'hash': '0x8f12726f5a86d95afa0f1775e005a0a6d5a90be8956fc2136f361309c85c1e23', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1712.17, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5cd121c788d8910000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T22:24:32.000Z'}}, {'blockNum': '0x5e7483', 'uniqueId': '0xcb1bb608dc5f3575fc5f5ee7d365e106b61da89c2d85900f50f9e3114558fed5:log:13', 'hash': '0xcb1bb608dc5f3575fc5f5ee7d365e106b61da89c2d85900f50f9e3114558fed5', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x2bc9b39ac3564deb01d08bdc2fce7481a3203cb5', 'value': 106.006945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05bf2452d4215f1000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T23:59:55.000Z'}}, {'blockNum': '0x5e74e7', 'uniqueId': '0x8ba2e4a677a95e548ce9b853a2f14e380d9cffafbab92e96860c9d7f8079fc31:log:48', 'hash': '0x8ba2e4a677a95e548ce9b853a2f14e380d9cffafbab92e96860c9d7f8079fc31', 'from': '0xbed50bf08d7bcddc87c23852cf9f0cc9a7ecbc4e', 'to': '0x6a1902bc0141cda8c7038439538785cfb8231080', 'value': 39.78927402183565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02282fe5e906314398', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-22T00:26:53.000Z'}}, {'blockNum': '0x5e74fb', 'uniqueId': '0x57987b2388809dc0ac6830b7e81c681e805e896febbc681773e4cd809e97d686:log:10', 'hash': '0x57987b2388809dc0ac6830b7e81c681e805e896febbc681773e4cd809e97d686', 'from': '0xfc3b7a897822bc7e46b5610e74c8143188773d21', 'to': '0x377b544f3d51130e8908a48a04c248c49301c476', 'value': 13, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb469471f80140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-22T00:31:19.000Z'}}, {'blockNum': '0x5e752e', 'uniqueId': '0x51aac17a04e67d01ee78e86bc035d274baa97d5e2a71f3638d100f10d4a6ce7c:log:5', 'hash': '0x51aac17a04e67d01ee78e86bc035d274baa97d5e2a71f3638d100f10d4a6ce7c', 'from': '0xef83ac3b6129e8ae9cbca94b8dd7347041dc7d4d', 'to': '0x7b81c4d3940716a9aeb21a95ba673f107b21e62c', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-22T00:44:13.000Z'}}, {'blockNum': '0x5e7574', 'uniqueId': '0x8cc3cbbc5f878dcfd5d66a3c0da8fa510af811a6f91a999a3ee1ea402d1ba98c:log:136', 'hash': '0x8cc3cbbc5f878dcfd5d66a3c0da8fa510af811a6f91a999a3ee1ea402d1ba98c', 'from': '0x7b81c4d3940716a9aeb21a95ba673f107b21e62c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-22T01:03:52.000Z'}}, {'blockNum': '0x5e75ab', 'uniqueId': '0xbb66f72894fc438e6cf3bb932ccd5e4de43ce74bce5780ed05619dc22d0a286c:log:48', 'hash': '0xbb66f72894fc438e6cf3bb932ccd5e4de43ce74bce5780ed05619dc22d0a286c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 3970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd736d14e09dcc80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-22T01:17:14.000Z'}}, {'blockNum': '0x5e75cd', 'uniqueId': '0xeba4eadc8c076f1fd231201c77aa94e28406d2d30c2e376e87742fb95a469901:log:32', 'hash': '0xeba4eadc8c076f1fd231201c77aa94e28406d2d30c2e376e87742fb95a469901', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd736d14e09dcc80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-22T01:24:06.000Z'}}, {'blockNum': '0x5e7610', 'uniqueId': '0xa3ad26573058bc83a25e9011b6176d1c742038441b2ded2b8381978ba5fdc6b0:log:0', 'hash': '0xa3ad26573058bc83a25e9011b6176d1c742038441b2ded2b8381978ba5fdc6b0', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa129061235ba49bb491af49b0ad1cb155693311a', 'value': 2379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x80f741d7848e4c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-22T01:40:05.000Z'}}, {'blockNum': '0x5e7621', 'uniqueId': '0x276f27ffd74ca68115c7ec22a3156582af352cea76af2fe42af703a528ee0def:log:9', 'hash': '0x276f27ffd74ca68115c7ec22a3156582af352cea76af2fe42af703a528ee0def', 'from': '0xa129061235ba49bb491af49b0ad1cb155693311a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x80f741d7848e4c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-22T01:44:12.000Z'}}]}}
Number of returned transfers: 75
Answer is complete
symbol DLT
group BPG
date 2018-08-23
hour 16:00
exchange binance
Name: 256, dtype: object
HERE
Symbol: DLT, Contract: 0x07e3c70653548b04f0a75970c1f81b4cbbfb606f
Datetime timestamps: 2018-08-23 16:00:00 2018-08-23 04:00:00 2018-08-24 04:00:00
Unix timestamps: 1534989600.0 1535076000.0
Hex Block Numbers: 0x5e8d99 0x5ea45c
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x5e927f', 'uniqueId': '0x2dab9d30f2f23ef0fd9d5d4cae729c201e8afea30bd5ba8976e0b5295b4377b4:log:0', 'hash': '0x2dab9d30f2f23ef0fd9d5d4cae729c201e8afea30bd5ba8976e0b5295b4377b4', 'from': '0x4a08bfa6f70a5a2f663d4ee3dbdbac71956a9d48', 'to': '0x45465f0519ad0b6ca511836e0a53e8bceefd0fa4', 'value': 102907.291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x15ca9d8c624e10af8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-23T07:09:47.000Z'}}, {'blockNum': '0x5e9394', 'uniqueId': '0xb51bec3bec32c4708c5a622bfa30bd0e4afff60651de12771c9b3d12743db2fa:log:79', 'hash': '0xb51bec3bec32c4708c5a622bfa30bd0e4afff60651de12771c9b3d12743db2fa', 'from': '0x45465f0519ad0b6ca511836e0a53e8bceefd0fa4', 'to': '0x3bef55294bbbd38787b3d89a6532f8ebd59baa63', 'value': 102907.291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x15ca9d8c624e10af8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-23T08:18:52.000Z'}}, {'blockNum': '0x5e93a7', 'uniqueId': '0xea07d5339a7e2b48bea331fbf3eba243d8c4ee94962933a4929d05b01940c50b:log:2', 'hash': '0xea07d5339a7e2b48bea331fbf3eba243d8c4ee94962933a4929d05b01940c50b', 'from': '0x3bef55294bbbd38787b3d89a6532f8ebd59baa63', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 102907.291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x15ca9d8c624e10af8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-23T08:23:09.000Z'}}, {'blockNum': '0x5e972a', 'uniqueId': '0x7ca610ada0d3bedf5d0afa79259382a2a8663f6ea8dee94b458fa853cdbb2231:log:16', 'hash': '0x7ca610ada0d3bedf5d0afa79259382a2a8663f6ea8dee94b458fa853cdbb2231', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2aa98e09d39a19ad08c0cfa9ca1e69572e60392e', 'value': 11110.851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x025a520854b03db38000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-23T12:08:23.000Z'}}, {'blockNum': '0x5e9b86', 'uniqueId': '0xedb02687f810784e406d2930ee2deaf160e05783e48ff075608e0dd04413bd30:log:81', 'hash': '0xedb02687f810784e406d2930ee2deaf160e05783e48ff075608e0dd04413bd30', 'from': '0x4df56650e9d4791e8a19db075cac5ff5eb06bcf6', 'to': '0x81cfe3170336510b261b8edf3d71fad4a0a1a673', 'value': 2356.27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x7fbbd0a8f24dab0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-23T16:48:52.000Z'}}]}}
Number of returned transfers: 5
Answer is complete
symbol RDN
group BPG
date 2018-09-04
hour 15:30
exchange binance
Name: 257, dtype: object
HERE
Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps: 2018-09-04 15:30:00 2018-09-04 03:30:00 2018-09-05 03:30:00
Unix timestamps: 1536024600.0 1536111000.0
Hex Block Numbers: 0x5fa2b1 0x5fba15
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x5fa2fd', 'uniqueId': '0x2310ac150217cf3d8d7a1e5c719b76351aff3c2704691aa9aae2931e837bdeb1:log:2', 'hash': '0x2310ac150217cf3d8d7a1e5c719b76351aff3c2704691aa9aae2931e837bdeb1', 'from': '0x8cb1549ae57f4afe25279aaaebfeea6752a58765', 'to': '0xcfd82d89c474903c28e0e62512ade47e60a7280a', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T01:47:32.000Z'}}, {'blockNum': '0x5fa318', 'uniqueId': '0x523e02630e12691ef8dd16aa3413d11881de5772449482e6869fabfdf15ad53f:log:22', 'hash': '0x523e02630e12691ef8dd16aa3413d11881de5772449482e6869fabfdf15ad53f', 'from': '0xcfd82d89c474903c28e0e62512ade47e60a7280a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T01:54:08.000Z'}}, {'blockNum': '0x5fa527', 'uniqueId': '0xd41433b51373853b3384b30ebfb289b4822892cdcb2005e449565b397dfc3dee:log:58', 'hash': '0xd41433b51373853b3384b30ebfb289b4822892cdcb2005e449565b397dfc3dee', 'from': '0xfe07d0ab7744fabd83c3a0b7f1a55c2538b34618', 'to': '0xb3d79c2fa058f47730449c7d0794752a54cbe2bf', 'value': 1364.817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x49fca40663be4e8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T04:02:03.000Z'}}, {'blockNum': '0x5fa685', 'uniqueId': '0x0438462c0107e5ac8da6d767c00fab45c9b6e592438aab7c3878aa4e05b4de97:log:0', 'hash': '0x0438462c0107e5ac8da6d767c00fab45c9b6e592438aab7c3878aa4e05b4de97', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xc9e9ea20421cf24047afd1f93908064cfae1a9d9', 'value': 258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0dfc78210eb2c80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T05:23:34.000Z'}}, {'blockNum': '0x5fa6b4', 'uniqueId': '0x1e1bf06c6b551dd379e8b263d65a5331486e061621146f6bdbd405c00a7238b2:log:26', 'hash': '0x1e1bf06c6b551dd379e8b263d65a5331486e061621146f6bdbd405c00a7238b2', 'from': '0xb23eac7f5f7b8e1c76cf9ed15ccb2b22789a45be', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 18430, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03e717a119acd1380000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T05:34:23.000Z'}}, {'blockNum': '0x5fa6df', 'uniqueId': '0x9939a6043d8e4beda83051380d5042a732a3dbd96160ece9a188c065efa984c4:log:39', 'hash': '0x9939a6043d8e4beda83051380d5042a732a3dbd96160ece9a188c065efa984c4', 'from': '0xc9e9ea20421cf24047afd1f93908064cfae1a9d9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0dfc78210eb2c80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T05:44:28.000Z'}}, {'blockNum': '0x5fa7a2', 'uniqueId': '0x929a87134ae873c21f66db5503c0cdc612c63d89d0b786d9cb1fc8d2958c7050:log:6', 'hash': '0x929a87134ae873c21f66db5503c0cdc612c63d89d0b786d9cb1fc8d2958c7050', 'from': '0x32e567e8b527d3194c60ea3c6a5c009d58a0b36d', 'to': '0x7617bb44a2060360b5ce5556313b2c3de3ce62e7', 'value': 270.67810902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0eac69d20a238f0d30', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T06:31:12.000Z'}}, {'blockNum': '0x5fa7a8', 'uniqueId': '0xe9e6d79b4dbc8c8155b4a4e585832b81aa3e683b338859adc2e44975b0adbe19:log:4', 'hash': '0xe9e6d79b4dbc8c8155b4a4e585832b81aa3e683b338859adc2e44975b0adbe19', 'from': '0x2d3c303cd0575e02c5e58095867fd2a1b9033f8b', 'to': '0x1e425a06bd870249a2c3860c76929a47b43aadc1', 'value': 1140, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dccad980569500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T06:33:21.000Z'}}, {'blockNum': '0x5fa7f6', 'uniqueId': '0xdaaa35e13b3630bbbc87eae1c00a84b3061266b1a1dea34b487761e22e4d6aa1:log:15', 'hash': '0xdaaa35e13b3630bbbc87eae1c00a84b3061266b1a1dea34b487761e22e4d6aa1', 'from': '0x1e425a06bd870249a2c3860c76929a47b43aadc1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1140, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dccad980569500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T06:54:19.000Z'}}, {'blockNum': '0x5fa941', 'uniqueId': '0x7a3b7d8a55bd3999de90eaa669c70c3189a3276d109a80c7cf4809cd6e6c499f:log:82', 'hash': '0x7a3b7d8a55bd3999de90eaa669c70c3189a3276d109a80c7cf4809cd6e6c499f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0ebbdf8871f4e4b8240c525c084a2e54e291db2f', 'value': 1639.1227544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x58db65d4aea7d9c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T08:19:29.000Z'}}, {'blockNum': '0x5faae3', 'uniqueId': '0x5e4f4a581cfb7ff317bf828e74aec91d8a41140c9764a052ecb3237ac5ca7b18:log:6', 'hash': '0x5e4f4a581cfb7ff317bf828e74aec91d8a41140c9764a052ecb3237ac5ca7b18', 'from': '0x32e567e8b527d3194c60ea3c6a5c009d58a0b36d', 'to': '0x7446dbfb57e7496735c876312fecbc140927acee', 'value': 269.64422452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e9e10b9908a465000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T10:01:27.000Z'}}, {'blockNum': '0x5fab37', 'uniqueId': '0xad4bb1fc264f289582d453f7f98859dad2ffee64c330750b21250c20599dbb53:log:6', 'hash': '0xad4bb1fc264f289582d453f7f98859dad2ffee64c330750b21250c20599dbb53', 'from': '0x2a5cc9c0e2cd0f27c315769eb5be9b5e86ffc16f', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 104.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05afa42344dab8ffff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T10:22:13.000Z'}}, {'blockNum': '0x5fab58', 'uniqueId': '0x1c777c4bbe7c90594636e599c0512cc4d04fcd90216ba9197e4d651a242a57e4:log:161', 'hash': '0x1c777c4bbe7c90594636e599c0512cc4d04fcd90216ba9197e4d651a242a57e4', 'from': '0xf7793d27a1b76cdf14db7c83e82c772cf7c92910', 'to': '0xcea76322480089d0c03ffd36eecfb223b02f39e6', 'value': 2960.29, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa07a46c6b61d1d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T10:31:16.000Z'}}, {'blockNum': '0x5fab5e', 'uniqueId': '0xd43341d618add23164d2d58079bdf45f379289b408dd4d1fd3f736ab98b9974e:log:34', 'hash': '0xd43341d618add23164d2d58079bdf45f379289b408dd4d1fd3f736ab98b9974e', 'from': '0xcea76322480089d0c03ffd36eecfb223b02f39e6', 'to': '0xf7793d27a1b76cdf14db7c83e82c772cf7c92910', 'value': 2960.29, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa07a46c6b61d1d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T10:32:34.000Z'}}, {'blockNum': '0x5fab9b', 'uniqueId': '0xe9091ec35b747191ac3b32dd3fbeb65656a32ac3ef3192162211e56eb0724a0f:log:64', 'hash': '0xe9091ec35b747191ac3b32dd3fbeb65656a32ac3ef3192162211e56eb0724a0f', 'from': '0x28aa9f2d206d06b934ebb7cb452525253c758e44', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 10.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8c2a687ce7720000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T10:48:08.000Z'}}, {'blockNum': '0x5fac48', 'uniqueId': '0xefe5070076b8bd74d955943620837dcf7b881cc892dbfecc5b1a5883eecf7317:log:14', 'hash': '0xefe5070076b8bd74d955943620837dcf7b881cc892dbfecc5b1a5883eecf7317', 'from': '0xd7a888da31e25e4fcf82b949cb901cd0da5cdefe', 'to': '0x95e3ea15a514a095c0e18cbea69add55d8e103c7', 'value': 3378.06559043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb72013d4bcce58ac00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T11:24:50.000Z'}}, {'blockNum': '0x5fac77', 'uniqueId': '0x712062bc931dd1f5a8f5cb3cde945b5a7fb02fd7ec3a378d22df76c62d9e0628:log:9', 'hash': '0x712062bc931dd1f5a8f5cb3cde945b5a7fb02fd7ec3a378d22df76c62d9e0628', 'from': '0x95e3ea15a514a095c0e18cbea69add55d8e103c7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3378.06559043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb72013d4bcce58ac00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T11:34:16.000Z'}}, {'blockNum': '0x5fac86', 'uniqueId': '0x7abf0f8001d1df3088d41a97eb04d8d7e34a20bda88f2b8f1a76b3ccb467a7a9:log:39', 'hash': '0x7abf0f8001d1df3088d41a97eb04d8d7e34a20bda88f2b8f1a76b3ccb467a7a9', 'from': '0x76521d3cfd984b9e5aa30b23e9823353ce640fa0', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 99.9999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x056bc7033a5295c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T11:39:25.000Z'}}, {'blockNum': '0x5faca9', 'uniqueId': '0x46965e95ff710bf2885b503e47e1d103ebbc17d6e499e063df0e127a1e05fe4c:log:2', 'hash': '0x46965e95ff710bf2885b503e47e1d103ebbc17d6e499e063df0e127a1e05fe4c', 'from': '0xcb11527587e21fe4a3868dee6f1ca05733c20c41', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 99.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0560ad326a76bfffff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T11:47:41.000Z'}}, {'blockNum': '0x5facf0', 'uniqueId': '0xc510d1ba8d3ca08fc2b7cb89199555d639804a94e6d9f808bfb900892f8325cd:log:3', 'hash': '0xc510d1ba8d3ca08fc2b7cb89199555d639804a94e6d9f808bfb900892f8325cd', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 1111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3c3a38e5ab72fc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T12:07:01.000Z'}}, {'blockNum': '0x5fad03', 'uniqueId': '0x647d2fbe52aff25a73b7eaa791d68c95127189de4c5edbe1a9cf5505ea1ef059:log:100', 'hash': '0x647d2fbe52aff25a73b7eaa791d68c95127189de4c5edbe1a9cf5505ea1ef059', 'from': '0x39117cb65d0f4007f6a76aa8f013635d9e8f0ba1', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 9.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x83d6c7aab6360000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T12:11:03.000Z'}}, {'blockNum': '0x5fad0e', 'uniqueId': '0x5d92de834fe69e81a747f64c8985f5b1c66225e4d383d056910f01cf5348b600:log:11', 'hash': '0x5d92de834fe69e81a747f64c8985f5b1c66225e4d383d056910f01cf5348b600', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3c3a38e5ab72fc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T12:14:12.000Z'}}, {'blockNum': '0x5fad7a', 'uniqueId': '0x72b1fe20824e3e846a2022d9e68d085c0d5551b5356cb1ca20acba6d69c54bd4:log:30', 'hash': '0x72b1fe20824e3e846a2022d9e68d085c0d5551b5356cb1ca20acba6d69c54bd4', 'from': '0x68f2a70a5cad2400ee847eab7ed2d5478ed88478', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 50.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02b607360921490000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T12:41:53.000Z'}}, {'blockNum': '0x5fadf4', 'uniqueId': '0x59d9f6169d80dc2d0cbb2520eb6d5bac7ec26d6e81a83383ce09bde3980724dd:log:8', 'hash': '0x59d9f6169d80dc2d0cbb2520eb6d5bac7ec26d6e81a83383ce09bde3980724dd', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x94c8936b349301c3ff7821668a8f0cab27c3088c', 'value': 27000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05b7ac4553de7ae00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T13:09:45.000Z'}}, {'blockNum': '0x5fae6a', 'uniqueId': '0xe9934e8e7d8112136acff58a6ced6865dfe4257d4d4792720f916ce36e156d64:log:10', 'hash': '0xe9934e8e7d8112136acff58a6ced6865dfe4257d4d4792720f916ce36e156d64', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x620e009f6cd1f1496425daa311762c429424d55f', 'value': 146.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07f27bd347a8440000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T13:36:43.000Z'}}, {'blockNum': '0x5fae7b', 'uniqueId': '0x5f9cb51dd2c4720398fdbf55c90ac8c984763f0fedf53d2d59cc0427137910b8:log:2', 'hash': '0x5f9cb51dd2c4720398fdbf55c90ac8c984763f0fedf53d2d59cc0427137910b8', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 1361, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x49c7ab511ceaa40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T13:41:45.000Z'}}, {'blockNum': '0x5fae93', 'uniqueId': '0xf8ab7fbdc734508f28100cd212d12ba175fc5038ac3487cff2a35e3f3a980365:log:28', 'hash': '0xf8ab7fbdc734508f28100cd212d12ba175fc5038ac3487cff2a35e3f3a980365', 'from': '0x002cb22591b8d5059478ae0f9fd248f80e5f03a2', 'to': '0xe2d98e81d2f91cb5ac0cf6edc3a218b60c27446c', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T13:47:48.000Z'}}, {'blockNum': '0x5faeab', 'uniqueId': '0x8d54705c1b01f47187d3f2f188d5d84b972f6c6239bf1cb0c7ed8aa985a06665:log:2', 'hash': '0x8d54705c1b01f47187d3f2f188d5d84b972f6c6239bf1cb0c7ed8aa985a06665', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x1d0ae8d51bb3a468a179336e61038c6bc71a88bc', 'value': 4206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xe401f9bba82cf80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T13:53:09.000Z'}}, {'blockNum': '0x5faeaf', 'uniqueId': '0xecbf6f9f9b76082e915dc6cc5551d4400a6675a4b4f43ee1ef9ce00d613d06e3:log:8', 'hash': '0xecbf6f9f9b76082e915dc6cc5551d4400a6675a4b4f43ee1ef9ce00d613d06e3', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1361, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x49c7ab511ceaa40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T13:54:04.000Z'}}, {'blockNum': '0x5faecd', 'uniqueId': '0xaa3b7dfd31b66e282979571fc5efe04e8084e156f1a81471bc262ae0caa7e80a:log:3', 'hash': '0xaa3b7dfd31b66e282979571fc5efe04e8084e156f1a81471bc262ae0caa7e80a', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x240cba98add2c40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T14:01:08.000Z'}}, {'blockNum': '0x5faeda', 'uniqueId': '0xf1939c1cbcde910a26f389b4232633476d3c202829163a340a82c43926e0104a:log:20', 'hash': '0xf1939c1cbcde910a26f389b4232633476d3c202829163a340a82c43926e0104a', 'from': '0x1d0ae8d51bb3a468a179336e61038c6bc71a88bc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xe401f9bba82cf80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T14:04:08.000Z'}}, {'blockNum': '0x5faef4', 'uniqueId': '0x2b76962506d0704233e7a075947543d049e3c4d87c343ef7d097f2f6e5e51a3b:log:2', 'hash': '0x2b76962506d0704233e7a075947543d049e3c4d87c343ef7d097f2f6e5e51a3b', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'value': 5499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x012a19f4850ca10c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T14:09:41.000Z'}}, {'blockNum': '0x5faf07', 'uniqueId': '0x454018ce6069ecfe5aa31419a3b8343def676d2b6909b8bf87dfb781ae6ccabf:log:9', 'hash': '0x454018ce6069ecfe5aa31419a3b8343def676d2b6909b8bf87dfb781ae6ccabf', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x240cba98add2c40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T14:14:12.000Z'}}, {'blockNum': '0x5faf16', 'uniqueId': '0x617c8f8dce23e5f28bbbea0786bf166978581f7d7909cfdad99a301f7860aceb:log:24', 'hash': '0x617c8f8dce23e5f28bbbea0786bf166978581f7d7909cfdad99a301f7860aceb', 'from': '0x002cb22591b8d5059478ae0f9fd248f80e5f03a2', 'to': '0xe2d98e81d2f91cb5ac0cf6edc3a218b60c27446c', 'value': 4563.892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf768b98976bf120000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T14:16:21.000Z'}}, {'blockNum': '0x5faf3e', 'uniqueId': '0x1fa06a7ac83522ef1f1f3b1420309a3306dfa8fbc757972d5229c5e2427b8947:log:20', 'hash': '0x1fa06a7ac83522ef1f1f3b1420309a3306dfa8fbc757972d5229c5e2427b8947', 'from': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x012a19f4850ca10c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T14:24:18.000Z'}}, {'blockNum': '0x5fb037', 'uniqueId': '0xbc0ba2eeafe11b525d4f0eaff7c3b535be767d7bc2ae51426e9fb8e6b3ebf85e:log:80', 'hash': '0xbc0ba2eeafe11b525d4f0eaff7c3b535be767d7bc2ae51426e9fb8e6b3ebf85e', 'from': '0x26905c07fda4e4dd46cebe157d2db60066ae0019', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 347.943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12dcaddb04dbbd8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:31:09.000Z'}}, {'blockNum': '0x5fb03f', 'uniqueId': '0x8394c1c8c8313437c05303740c11b605ded7177455679fbe25382b51ad7344a6:log:18', 'hash': '0x8394c1c8c8313437c05303740c11b605ded7177455679fbe25382b51ad7344a6', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 235.296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0cc16351592e500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:33:08.000Z'}}, {'blockNum': '0x5fb051', 'uniqueId': '0x28d8032d94c4bd77357b46d5f61139458be545e03c532ae097bb2b59424c1506:log:1', 'hash': '0x28d8032d94c4bd77357b46d5f61139458be545e03c532ae097bb2b59424c1506', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 1381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4add399725fe740000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:37:41.000Z'}}, {'blockNum': '0x5fb051', 'uniqueId': '0x9fb2577260fa2a0377264b53b654e75a5071a9c28d005873c10d3836a0211bce:log:2', 'hash': '0x9fb2577260fa2a0377264b53b654e75a5071a9c28d005873c10d3836a0211bce', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xb8736cffca4f723e22a9cd217644db10f78c1b12', 'value': 1619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x57c423722b9d6c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:37:41.000Z'}}, {'blockNum': '0x5fb052', 'uniqueId': '0x4d0fb16c1a0d105b572dfb8cf2c720fa9f234bec1e8c44fa3d77428583cbb0c6:log:53', 'hash': '0x4d0fb16c1a0d105b572dfb8cf2c720fa9f234bec1e8c44fa3d77428583cbb0c6', 'from': '0xb09a30093425dc524c92daa0885f3e92107e49f8', 'to': '0x1dc921c3611143242e7ca3c10107c287042d713e', 'value': 961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x34188dd8675e640000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:37:57.000Z'}}, {'blockNum': '0x5fb05a', 'uniqueId': '0xb422a00820557f64a336ee19e8c6a6f103fe94f169bf37f7de70e2d0e4f1a44e:log:21', 'hash': '0xb422a00820557f64a336ee19e8c6a6f103fe94f169bf37f7de70e2d0e4f1a44e', 'from': '0xf73c3c65bde10bf26c2e1763104e609a41702efe', 'to': '0x9e45bd979047976427694d93de45999703405ca0', 'value': 390.79, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x152f4cfa817ee70000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:39:29.000Z'}}, {'blockNum': '0x5fb05c', 'uniqueId': '0xdbdbae0325bd3ff52bab3711d707adb97c03a2e74891ae8b6dc42c79b74da35e:log:60', 'hash': '0xdbdbae0325bd3ff52bab3711d707adb97c03a2e74891ae8b6dc42c79b74da35e', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 739.5676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x28178fedcd8c2f0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:39:54.000Z'}}, {'blockNum': '0x5fb069', 'uniqueId': '0xb4de01c2104709db5c4242ce72b8987323579399d5bdefbfd467d2f5d4fd930d:log:2', 'hash': '0xb4de01c2104709db5c4242ce72b8987323579399d5bdefbfd467d2f5d4fd930d', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 3151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xaad0e8cd4957dc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:43:44.000Z'}}, {'blockNum': '0x5fb06b', 'uniqueId': '0xfd794f6b0723018f72aba5dab2fddee5356cee04e8ef919f47401a4b8aaa09ee:log:7', 'hash': '0xfd794f6b0723018f72aba5dab2fddee5356cee04e8ef919f47401a4b8aaa09ee', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 235.296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0cc16351592e500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:44:09.000Z'}}, {'blockNum': '0x5fb06e', 'uniqueId': '0xe3072d8373d68d8160c775cc019a1330d90d32b84de012f55e4720821b5f7e94:log:1', 'hash': '0xe3072d8373d68d8160c775cc019a1330d90d32b84de012f55e4720821b5f7e94', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 10414.128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02348d0eff95c9380000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:44:27.000Z'}}, {'blockNum': '0x5fb091', 'uniqueId': '0xeac3f0fcf791960ec0a6045f60bec62dd54a392133c7185fcfdad531806d725d:log:0', 'hash': '0xeac3f0fcf791960ec0a6045f60bec62dd54a392133c7185fcfdad531806d725d', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10414.128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02348d0eff95c9380000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:54:02.000Z'}}, {'blockNum': '0x5fb092', 'uniqueId': '0xe0faec1b27f9fd9266c0e6eabd46676cdd344fdc9c026f82e4fbad666b043bcf:log:2', 'hash': '0xe0faec1b27f9fd9266c0e6eabd46676cdd344fdc9c026f82e4fbad666b043bcf', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 739.5676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x28178fedcd8c2f0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:54:09.000Z'}}, {'blockNum': '0x5fb092', 'uniqueId': '0x5795276192c2fd5742f81a075b5c0bd7e34c29f035283017d9b1a7624b9f60c6:log:3', 'hash': '0x5795276192c2fd5742f81a075b5c0bd7e34c29f035283017d9b1a7624b9f60c6', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4add399725fe740000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:54:09.000Z'}}, {'blockNum': '0x5fb096', 'uniqueId': '0xe15d6551481d9cfcc70cc1d247d04a17fb733110deb2e5abdfd14757248dc6a7:log:2', 'hash': '0xe15d6551481d9cfcc70cc1d247d04a17fb733110deb2e5abdfd14757248dc6a7', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 1379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4ac17829beafac0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:54:43.000Z'}}, {'blockNum': '0x5fb0b5', 'uniqueId': '0x9607e56afa938161b8b353613d456f9b488f4bbea84bce8e0c7d72155a9c1739:log:1', 'hash': '0x9607e56afa938161b8b353613d456f9b488f4bbea84bce8e0c7d72155a9c1739', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 3866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd19387150ddc280000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T16:03:49.000Z'}}, {'blockNum': '0x5fb0b6', 'uniqueId': '0x28fffbe0aefc4016915a3d1482afc24c405ddf953833a33bd2d3c74b417cd84c:log:4', 'hash': '0x28fffbe0aefc4016915a3d1482afc24c405ddf953833a33bd2d3c74b417cd84c', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4ac17829beafac0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T16:04:03.000Z'}}, {'blockNum': '0x5fb0b6', 'uniqueId': '0x3b12064d08e46158bf046005b40cab8a439749208fb1d7e815a6d03a8efc2e75:log:6', 'hash': '0x3b12064d08e46158bf046005b40cab8a439749208fb1d7e815a6d03a8efc2e75', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xaad0e8cd4957dc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T16:04:03.000Z'}}, {'blockNum': '0x5fb0da', 'uniqueId': '0x4d82a11147662a8f1740a2a1548f97c5ff70d87c26881ea1481723d85b6d0661:log:15', 'hash': '0x4d82a11147662a8f1740a2a1548f97c5ff70d87c26881ea1481723d85b6d0661', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd19387150ddc280000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T16:14:08.000Z'}}, {'blockNum': '0x5fb13d', 'uniqueId': '0x9d388a262127f366de610832e1eae462a48dfd6f2c1613f5536258a484793ce1:log:8', 'hash': '0x9d388a262127f366de610832e1eae462a48dfd6f2c1613f5536258a484793ce1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x00cd9fad11d5b2118a3dd32d5d43fdb33bde9e85', 'value': 100840.099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x155a8d7f16c1ef638000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T16:38:43.000Z'}}, {'blockNum': '0x5fb19c', 'uniqueId': '0x256bfbf29412ab8af763c2832e430078881fae532acc1cddb5715417f75fb7ed:log:57', 'hash': '0x256bfbf29412ab8af763c2832e430078881fae532acc1cddb5715417f75fb7ed', 'from': '0x976b8edcf4e41b82f4094143d65d242cb84276a8', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 537.551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1d2404ca6ec8018000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T16:59:24.000Z'}}, {'blockNum': '0x5fb1a1', 'uniqueId': '0x877cd03104e6ad08042269bbb34843d054c64805251b449c825f80507bbe9298:log:0', 'hash': '0x877cd03104e6ad08042269bbb34843d054c64805251b449c825f80507bbe9298', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 3346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb56313f821d9080000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T17:00:39.000Z'}}, {'blockNum': '0x5fb1ba', 'uniqueId': '0xc1aaeb65f749482f2ba49e30a0df9db7d33f10922c1bf90463e91e62a2c8dd92:log:27', 'hash': '0xc1aaeb65f749482f2ba49e30a0df9db7d33f10922c1bf90463e91e62a2c8dd92', 'from': '0x65eba2861ea8f9e5efcfdadb70c68897cda52673', 'to': '0x480c1c12a8ee256df40be01d4a54799e3ce6c52c', 'value': 3586.9052540128714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc2724f5c49437ad3cb', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T17:06:53.000Z'}}, {'blockNum': '0x5fb1dc', 'uniqueId': '0x58893beb6fff0da17a8db923ffdfeb98db1dde66dcaa80e6681fa6b87a0b16de:log:8', 'hash': '0x58893beb6fff0da17a8db923ffdfeb98db1dde66dcaa80e6681fa6b87a0b16de', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb56313f821d9080000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T17:14:27.000Z'}}, {'blockNum': '0x5fb202', 'uniqueId': '0xbf52b9399d71cf70c8a909c8ee6d63755734bb7e9c767151a94a61c9edac3b3f:log:4', 'hash': '0xbf52b9399d71cf70c8a909c8ee6d63755734bb7e9c767151a94a61c9edac3b3f', 'from': '0x08e0f9bcd4e7d2abd8ed31252c288fffe765ad16', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 1000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd3c21bcecceda1000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T17:23:21.000Z'}}, {'blockNum': '0x5fb205', 'uniqueId': '0x12fbefbef433e6bcef919a495c8039e5a3118d6668cc747d90bf2247a7d9571f:log:8', 'hash': '0x12fbefbef433e6bcef919a495c8039e5a3118d6668cc747d90bf2247a7d9571f', 'from': '0x480c1c12a8ee256df40be01d4a54799e3ce6c52c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3586.9052540128714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc2724f5c49437ad3cb', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T17:24:22.000Z'}}, {'blockNum': '0x5fb21a', 'uniqueId': '0x912e40bd0ae60382b922a91e9e443daac08a6850dba0e0dfdd80928540246dd3:log:5', 'hash': '0x912e40bd0ae60382b922a91e9e443daac08a6850dba0e0dfdd80928540246dd3', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 3621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc44b783b1ea9740000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T17:28:22.000Z'}}, {'blockNum': '0x5fb25e', 'uniqueId': '0xc22f3c78fdaa9f7ac4ce713f61847889630d73b260c1095ddff843cd98e78ceb:log:25', 'hash': '0xc22f3c78fdaa9f7ac4ce713f61847889630d73b260c1095ddff843cd98e78ceb', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc44b783b1ea9740000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T17:44:44.000Z'}}, {'blockNum': '0x5fb2bd', 'uniqueId': '0xe8e7fb163c805c75145164a413e14d4be1289d8f6a30f99b987a8b5be1cfeb44:log:79', 'hash': '0xe8e7fb163c805c75145164a413e14d4be1289d8f6a30f99b987a8b5be1cfeb44', 'from': '0x14998afb4c6fb8437c9cdc8208ff8a3e28da7375', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 27.26238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x017a576e2aefb6c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T18:06:06.000Z'}}, {'blockNum': '0x5fb344', 'uniqueId': '0x62303942f94512e736702353a7b11e99f72216bbb68d292d37bd65d16668ad2f:log:67', 'hash': '0x62303942f94512e736702353a7b11e99f72216bbb68d292d37bd65d16668ad2f', 'from': '0x97f9d412e22fe10471f94047d4aa7f43d796412a', 'to': '0x3dbd00685a34b247dc256b23718a083e0ae43e25', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T18:37:10.000Z'}}, {'blockNum': '0x5fb34b', 'uniqueId': '0x585d95c06b3a546515ee31eff605a3340a1ec1ade1fe686f5459e595d67fe56e:log:30', 'hash': '0x585d95c06b3a546515ee31eff605a3340a1ec1ade1fe686f5459e595d67fe56e', 'from': '0x97f9d412e22fe10471f94047d4aa7f43d796412a', 'to': '0x3dbd00685a34b247dc256b23718a083e0ae43e25', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T18:39:00.000Z'}}, {'blockNum': '0x5fb371', 'uniqueId': '0x10ef7d40341e1859e267fd93ae29611091a85e2abb4133cbd14a14b6ad3b23ff:log:3', 'hash': '0x10ef7d40341e1859e267fd93ae29611091a85e2abb4133cbd14a14b6ad3b23ff', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x97f9d412e22fe10471f94047d4aa7f43d796412a', 'value': 284.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0f6d9e501fe42c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T18:47:29.000Z'}}, {'blockNum': '0x5fb371', 'uniqueId': '0x14d7b5a4bdc8bad576185258c1073c6b164a92aa5634c48749b207674e7e2096:log:5', 'hash': '0x14d7b5a4bdc8bad576185258c1073c6b164a92aa5634c48749b207674e7e2096', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x97f9d412e22fe10471f94047d4aa7f43d796412a', 'value': 887.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x301deca94b2cb80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T18:47:29.000Z'}}, {'blockNum': '0x5fb383', 'uniqueId': '0xefd9a4d8cd155e2e3f5a9b8c958e84c443a8ee3d67c71c55a96c195ec67ca2df:log:1', 'hash': '0xefd9a4d8cd155e2e3f5a9b8c958e84c443a8ee3d67c71c55a96c195ec67ca2df', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'value': 5579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x012e702d9d30f04c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T18:53:29.000Z'}}, {'blockNum': '0x5fb3a1', 'uniqueId': '0xa1cad4e2d0f0279c38eec6498c696da7f30d4e69deb75b7a42ac2106a95a38e6:log:115', 'hash': '0xa1cad4e2d0f0279c38eec6498c696da7f30d4e69deb75b7a42ac2106a95a38e6', 'from': '0x97f9d412e22fe10471f94047d4aa7f43d796412a', 'to': '0x0cc8a30910f7588db14103e7d9aa73ef838194b0', 'value': 261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e261a4529a8f40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:00:42.000Z'}}, {'blockNum': '0x5fb3b2', 'uniqueId': '0x71d742ba2fb55af0ae63f3009a9584d27a8a583c7feffb4bd94844b9ffc7ee95:log:12', 'hash': '0x71d742ba2fb55af0ae63f3009a9584d27a8a583c7feffb4bd94844b9ffc7ee95', 'from': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x012e702d9d30f04c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:04:12.000Z'}}, {'blockNum': '0x5fb3de', 'uniqueId': '0x66f02410454718d2241b0d6221f300e4149f539a7fcdb18d63e4f0164c1665d4:log:2', 'hash': '0x66f02410454718d2241b0d6221f300e4149f539a7fcdb18d63e4f0164c1665d4', 'from': '0x0cc8a30910f7588db14103e7d9aa73ef838194b0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e261a4529a8f40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:14:04.000Z'}}, {'blockNum': '0x5fb3e3', 'uniqueId': '0x7a2d02152e3d15257c71974999e4f30e9a1f06c46e1a5c2d7d757a798d6f6e3d:log:0', 'hash': '0x7a2d02152e3d15257c71974999e4f30e9a1f06c46e1a5c2d7d757a798d6f6e3d', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 1127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d184450e5e93c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:15:21.000Z'}}, {'blockNum': '0x5fb3e5', 'uniqueId': '0x0d516e053c1abca06134fb606bcc10cab1e26c55b443aa3801d54c82206aeecf:log:0', 'hash': '0x0d516e053c1abca06134fb606bcc10cab1e26c55b443aa3801d54c82206aeecf', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'value': 5460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0127fcb8afae20d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:16:16.000Z'}}, {'blockNum': '0x5fb3f1', 'uniqueId': '0x276846344409718fc9dead5c3f95fc0e755fa1c1a5d5595fcc5eafa01e02d23d:log:0', 'hash': '0x276846344409718fc9dead5c3f95fc0e755fa1c1a5d5595fcc5eafa01e02d23d', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 270.052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ea3b96f3403ca0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:18:49.000Z'}}, {'blockNum': '0x5fb3fe', 'uniqueId': '0x5a37002302d0a7b0c993c2db35ca530d0ae484c4171fe475314f0859b53e1fc8:log:0', 'hash': '0x5a37002302d0a7b0c993c2db35ca530d0ae484c4171fe475314f0859b53e1fc8', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 1785.9839218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x60d181825428075000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:22:00.000Z'}}, {'blockNum': '0x5fb40c', 'uniqueId': '0xf2f3f4b0f1613f999e14b2ceb9aa77db24e0eadd8e9430d7e3f3ad4b42ae0317:log:10', 'hash': '0xf2f3f4b0f1613f999e14b2ceb9aa77db24e0eadd8e9430d7e3f3ad4b42ae0317', 'from': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0127fcb8afae20d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:24:07.000Z'}}, {'blockNum': '0x5fb40c', 'uniqueId': '0x12d3f11da39eec068b3024dab802b6c1164508a3ee1ba6fdef5291831d9b9042:log:11', 'hash': '0x12d3f11da39eec068b3024dab802b6c1164508a3ee1ba6fdef5291831d9b9042', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 270.052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ea3b96f3403ca0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:24:07.000Z'}}, {'blockNum': '0x5fb40c', 'uniqueId': '0xd06df21b6b8576218ef4e5aee6a175931cbd1dd7ffa7a7d1241d9d1c096078ff:log:12', 'hash': '0xd06df21b6b8576218ef4e5aee6a175931cbd1dd7ffa7a7d1241d9d1c096078ff', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d184450e5e93c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:24:07.000Z'}}, {'blockNum': '0x5fb43a', 'uniqueId': '0x2fa2aacba11d8f548aa85966888323a53885e9421ab690d867eafb393f42ae0d:log:21', 'hash': '0x2fa2aacba11d8f548aa85966888323a53885e9421ab690d867eafb393f42ae0d', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 385.26208134011796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x14e295ddc5d960f887', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:35:32.000Z'}}, {'blockNum': '0x5fb43a', 'uniqueId': '0x2fa2aacba11d8f548aa85966888323a53885e9421ab690d867eafb393f42ae0d:log:23', 'hash': '0x2fa2aacba11d8f548aa85966888323a53885e9421ab690d867eafb393f42ae0d', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0xb71d05cf5cdf7a9b15b20b9aab5e91332c271c96', 'value': 385.26208134011796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x14e295ddc5d960f887', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:35:32.000Z'}}, {'blockNum': '0x5fb43c', 'uniqueId': '0x9e2b7d725759b64628784e6cb8194a2e82a476f3b0bef51e78503dfb0dab6086:log:16', 'hash': '0x9e2b7d725759b64628784e6cb8194a2e82a476f3b0bef51e78503dfb0dab6086', 'from': '0x97f9d412e22fe10471f94047d4aa7f43d796412a', 'to': '0xb71d05cf5cdf7a9b15b20b9aab5e91332c271c96', 'value': 630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2227019e1df0180000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:35:51.000Z'}}, {'blockNum': '0x5fb43e', 'uniqueId': '0x7662aa6d702c3e8f14383df6e43efa99d2f1eb2b335d0749f925e3e8b4d0b3e1:log:21', 'hash': '0x7662aa6d702c3e8f14383df6e43efa99d2f1eb2b335d0749f925e3e8b4d0b3e1', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 1479.6529587121179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x50364f4e694b83672a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:36:38.000Z'}}, {'blockNum': '0x5fb43e', 'uniqueId': '0x7662aa6d702c3e8f14383df6e43efa99d2f1eb2b335d0749f925e3e8b4d0b3e1:log:23', 'hash': '0x7662aa6d702c3e8f14383df6e43efa99d2f1eb2b335d0749f925e3e8b4d0b3e1', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0xb71d05cf5cdf7a9b15b20b9aab5e91332c271c96', 'value': 1479.6529587121179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x50364f4e694b83672a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:36:38.000Z'}}, {'blockNum': '0x5fb44c', 'uniqueId': '0x7d71be20ff32f63ea47e88b10a5791c1da7555779a94d37cb7d207fb2fa59a3c:log:0', 'hash': '0x7d71be20ff32f63ea47e88b10a5791c1da7555779a94d37cb7d207fb2fa59a3c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2877.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9bfeb8e1d260100000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:40:04.000Z'}}, {'blockNum': '0x5fb462', 'uniqueId': '0x1947901505c331e6db19ae5a30abede03921cc9a058504d908f853296cf7651e:log:1', 'hash': '0x1947901505c331e6db19ae5a30abede03921cc9a058504d908f853296cf7651e', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'value': 4595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf9186f5aa587ec0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:43:44.000Z'}}, {'blockNum': '0x5fb463', 'uniqueId': '0xbbcb4f925bbb300b53e31bcb07ac489961427a296ec936d8c6f749ff63eb28d8:log:87', 'hash': '0xbbcb4f925bbb300b53e31bcb07ac489961427a296ec936d8c6f749ff63eb28d8', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1785.9839218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x60d181825428075000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:44:13.000Z'}}, {'blockNum': '0x5fb46b', 'uniqueId': '0x39ad3257f515f69e06988159d42060319403ad4fc0a444d5d42a44045a1c5231:log:43', 'hash': '0x39ad3257f515f69e06988159d42060319403ad4fc0a444d5d42a44045a1c5231', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 369.7614039327906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x140b7865cc07b5cf2b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:47:02.000Z'}}, {'blockNum': '0x5fb46b', 'uniqueId': '0x39ad3257f515f69e06988159d42060319403ad4fc0a444d5d42a44045a1c5231:log:45', 'hash': '0x39ad3257f515f69e06988159d42060319403ad4fc0a444d5d42a44045a1c5231', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0xb71d05cf5cdf7a9b15b20b9aab5e91332c271c96', 'value': 369.7614039327906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x140b7865cc07b5cf2b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:47:02.000Z'}}, {'blockNum': '0x5fb48f', 'uniqueId': '0xce403d022f9b3afc2520fead86f2b05b1994ba387add1461faff6124a0a69100:log:10', 'hash': '0xce403d022f9b3afc2520fead86f2b05b1994ba387add1461faff6124a0a69100', 'from': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf9186f5aa587ec0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:54:11.000Z'}}, {'blockNum': '0x5fb495', 'uniqueId': '0x40aff9f554426eda4ec849e8eb2e5e2928309dcd13fd2b2fd250ac4682e83309:log:5', 'hash': '0x40aff9f554426eda4ec849e8eb2e5e2928309dcd13fd2b2fd250ac4682e83309', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x97f9d412e22fe10471f94047d4aa7f43d796412a', 'value': 710.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26858e571470940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:55:35.000Z'}}, {'blockNum': '0x5fb495', 'uniqueId': '0x367ba7537d8f01bd368ad1ea673d98d29524e5ffc0292edd9cea0f08a391b59e:log:6', 'hash': '0x367ba7537d8f01bd368ad1ea673d98d29524e5ffc0292edd9cea0f08a391b59e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x97f9d412e22fe10471f94047d4aa7f43d796412a', 'value': 139.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x079156d45e14880000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:55:35.000Z'}}, {'blockNum': '0x5fb55a', 'uniqueId': '0x4f65bd35a305b608e18a74660ef4d184df5992b9575a448a2a1d0c96923a1744:log:3', 'hash': '0x4f65bd35a305b608e18a74660ef4d184df5992b9575a448a2a1d0c96923a1744', 'from': '0x820910798bdb9b7885bfb7cf9bb37c70fd67e21a', 'to': '0x4909ee253eb7b419ab73063d118505bbfc796fe9', 'value': 1000.292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3639d71239d10a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T20:40:29.000Z'}}, {'blockNum': '0x5fb592', 'uniqueId': '0x443797fe7b05d68128acc3b985d539b8eee815a29f365a7b2f50d29bbd839eb1:log:8', 'hash': '0x443797fe7b05d68128acc3b985d539b8eee815a29f365a7b2f50d29bbd839eb1', 'from': '0x4909ee253eb7b419ab73063d118505bbfc796fe9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000.292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3639d71239d10a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T20:54:17.000Z'}}, {'blockNum': '0x5fb5a2', 'uniqueId': '0x4c9c5d9bbc9b3c2d5341d488c007f65fa986f6c637283e2caaabfef36b03da1c:log:0', 'hash': '0x4c9c5d9bbc9b3c2d5341d488c007f65fa986f6c637283e2caaabfef36b03da1c', 'from': '0xb1bf6a2a83daf026d8dbd089c2d0c75649fef3da', 'to': '0xe008e99a4777e3a72668c17059e4254849fc0d40', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T20:58:09.000Z'}}, {'blockNum': '0x5fb5ae', 'uniqueId': '0xe5b74b502e47cc8a610b9dfa7614b23851654c03f213d17cff80392c7b135fa4:log:0', 'hash': '0xe5b74b502e47cc8a610b9dfa7614b23851654c03f213d17cff80392c7b135fa4', 'from': '0xb1bf6a2a83daf026d8dbd089c2d0c75649fef3da', 'to': '0xe008e99a4777e3a72668c17059e4254849fc0d40', 'value': 6500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01605d9ee98627100000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T21:01:21.000Z'}}, {'blockNum': '0x5fb5bf', 'uniqueId': '0xd69a6fe0730db2ec462128af3bf15268fa84494a2dda99c666250b70ce838cbf:log:0', 'hash': '0xd69a6fe0730db2ec462128af3bf15268fa84494a2dda99c666250b70ce838cbf', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 1421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4d0856233826140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T21:06:35.000Z'}}, {'blockNum': '0x5fb5d0', 'uniqueId': '0x679353bda5c4b69ab7a4140f20dd0fa59a081bceeadd8f6234c37db4359cc6df:log:0', 'hash': '0x679353bda5c4b69ab7a4140f20dd0fa59a081bceeadd8f6234c37db4359cc6df', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe98285826484ea131e9f08bfe9375dbb8d5b2ce4', 'value': 21484.091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x048ca7a7f8e84ebf8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T21:09:25.000Z'}}, {'blockNum': '0x5fb5e1', 'uniqueId': '0xda360efdac0fa9084ba90f28fde38ee3d664c98b3c05304c03b1a8f49f49e01a:log:20', 'hash': '0xda360efdac0fa9084ba90f28fde38ee3d664c98b3c05304c03b1a8f49f49e01a', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4d0856233826140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T21:14:06.000Z'}}, {'blockNum': '0x5fb632', 'uniqueId': '0x3f0b9a5783d6b20b55067305b89d78939a7d42bae58083e45cf8bce1cac8840a:log:16', 'hash': '0x3f0b9a5783d6b20b55067305b89d78939a7d42bae58083e45cf8bce1cac8840a', 'from': '0x5c1c3ad29d231c4451022c7d661f3dfd7350bc13', 'to': '0x92c1b2b38ae0873bab61d3e64598ea41e32cfba4', 'value': 102.3296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x058c1bc508d7d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T21:33:37.000Z'}}, {'blockNum': '0x5fb671', 'uniqueId': '0xc5a977ba276bee66f6f129468fe154ad69b726682b0ed67438accd0aa4b0ec97:log:6', 'hash': '0xc5a977ba276bee66f6f129468fe154ad69b726682b0ed67438accd0aa4b0ec97', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 314.1575396297596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1107cfc9d0b685968f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T21:47:18.000Z'}}, {'blockNum': '0x5fb671', 'uniqueId': '0xc5a977ba276bee66f6f129468fe154ad69b726682b0ed67438accd0aa4b0ec97:log:8', 'hash': '0xc5a977ba276bee66f6f129468fe154ad69b726682b0ed67438accd0aa4b0ec97', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x846c8e2341cff64140797a7d17acb2839be33440', 'value': 314.1575396297596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1107cfc9d0b685968f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T21:47:18.000Z'}}, {'blockNum': '0x5fb6a2', 'uniqueId': '0x9b24e020a01c21a8edada4f0c1b680e2d7cfdec19d709b3cd5b37bbb9da05257:log:15', 'hash': '0x9b24e020a01c21a8edada4f0c1b680e2d7cfdec19d709b3cd5b37bbb9da05257', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x69645de4e5bab7b593614084cde5a4360bfe0ccc', 'value': 243.0139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0d2c7ece81d64cc000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T21:57:35.000Z'}}, {'blockNum': '0x5fb6c2', 'uniqueId': '0xf1237e5cd8729b3209887caadb2fb828636d37d21b89637a489bd30b8f56ef87:log:35', 'hash': '0xf1237e5cd8729b3209887caadb2fb828636d37d21b89637a489bd30b8f56ef87', 'from': '0x51b7af29b46a9d0cdbf9f367c130e47c18faded7', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T22:05:24.000Z'}}, {'blockNum': '0x5fb74a', 'uniqueId': '0xad68cd573da6c6a84d9b6a08234e418763ee28beb197ee584d661503f06f411e:log:39', 'hash': '0xad68cd573da6c6a84d9b6a08234e418763ee28beb197ee584d661503f06f411e', 'from': '0x00cd9fad11d5b2118a3dd32d5d43fdb33bde9e85', 'to': '0x83ae51a80b34d5dc204e140faec27b7cbde6d020', 'value': 104146.099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x160dc57682d1a0cb8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T22:39:24.000Z'}}, {'blockNum': '0x5fb7a3', 'uniqueId': '0x95300f795e9ae7f0a6f7ffd27fe227abf66fd4deee548401b41f09e7e1b600c3:log:2', 'hash': '0x95300f795e9ae7f0a6f7ffd27fe227abf66fd4deee548401b41f09e7e1b600c3', 'from': '0x69645de4e5bab7b593614084cde5a4360bfe0ccc', 'to': '0x0861fca546225fbf8806986d211c8398f7457734', 'value': 243.0139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0d2c7ece81d64cc000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T23:03:11.000Z'}}, {'blockNum': '0x5fb7fa', 'uniqueId': '0x24de3c5bb871c024f20d633d9844455501cc0ed94c4c98ce8703090bc0d4bb11:log:19', 'hash': '0x24de3c5bb871c024f20d633d9844455501cc0ed94c4c98ce8703090bc0d4bb11', 'from': '0xdbb05290de6733cf33d7abdee6064e0829d5c00a', 'to': '0xb79c8c59bfad0d2d4d5eacb714610e2fe31c401e', 'value': 4466.802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf2255490de64650000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T23:25:29.000Z'}}, {'blockNum': '0x5fb820', 'uniqueId': '0x3298b6c8c9106b575f98b5be57e605785dbcee1be16b73968babd9fff1bca883:log:17', 'hash': '0x3298b6c8c9106b575f98b5be57e605785dbcee1be16b73968babd9fff1bca883', 'from': '0xb79c8c59bfad0d2d4d5eacb714610e2fe31c401e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4466.802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf2255490de64650000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T23:34:05.000Z'}}, {'blockNum': '0x5fb8dd', 'uniqueId': '0xdae069ccfe50aa4c18f651530cb8c9f186eb033bc3347eb74876f2ac283ab93e:log:0', 'hash': '0xdae069ccfe50aa4c18f651530cb8c9f186eb033bc3347eb74876f2ac283ab93e', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 1220, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4222e6b029b8900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-05T00:19:53.000Z'}}, {'blockNum': '0x5fb8f2', 'uniqueId': '0x7553da636d19bcee44e608846694f5a2a143800bf76df8d25c7405845596aebf:log:13', 'hash': '0x7553da636d19bcee44e608846694f5a2a143800bf76df8d25c7405845596aebf', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1220, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4222e6b029b8900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-05T00:24:13.000Z'}}, {'blockNum': '0x5fb942', 'uniqueId': '0x293f273fde2b34e9654c56bb4ac9ae60eb3183dacfd55288d47b9f86d9fb3eb9:log:2', 'hash': '0x293f273fde2b34e9654c56bb4ac9ae60eb3183dacfd55288d47b9f86d9fb3eb9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0b011e9f15402bd4f9445f586808b3c161c412f5', 'value': 8831.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01debc21c4d3b0260000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-05T00:41:49.000Z'}}, {'blockNum': '0x5fb942', 'uniqueId': '0x6fba0117ee3bbd846beac62e6052f44a29397bb5c98ae12d474a7e55a3c1e893:log:3', 'hash': '0x6fba0117ee3bbd846beac62e6052f44a29397bb5c98ae12d474a7e55a3c1e893', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc1afe584ecc05379b7be8a57039f4d37f2fc9ad7', 'value': 8830.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01deae410e2008c20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-05T00:41:49.000Z'}}, {'blockNum': '0x5fb963', 'uniqueId': '0x3cbee8675631b216818b2875767140abfd504169b64e8547b2d285069d11064b:log:7', 'hash': '0x3cbee8675631b216818b2875767140abfd504169b64e8547b2d285069d11064b', 'from': '0x0b011e9f15402bd4f9445f586808b3c161c412f5', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 8831.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01debc21c4d3b0260000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-05T00:46:58.000Z'}}, {'blockNum': '0x5fb97d', 'uniqueId': '0x92b053ed54d4a2fa6467c6632ce322deaab3a4a49886d31b0c8e5175c842f093:log:2', 'hash': '0x92b053ed54d4a2fa6467c6632ce322deaab3a4a49886d31b0c8e5175c842f093', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xa129061235ba49bb491af49b0ad1cb155693311a', 'value': 5123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0115b7e82d2ec62c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-05T00:53:33.000Z'}}, {'blockNum': '0x5fb9a9', 'uniqueId': '0xc520db494aebc3a970eb56ac08265b19ea69d2c42c2c89fb12025b8387995fd5:log:5', 'hash': '0xc520db494aebc3a970eb56ac08265b19ea69d2c42c2c89fb12025b8387995fd5', 'from': '0xa129061235ba49bb491af49b0ad1cb155693311a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0115b7e82d2ec62c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-05T01:04:31.000Z'}}, {'blockNum': '0x5fb9ad', 'uniqueId': '0xe14328606b7fd29d7206bc600d0ede168f91f1e03eb5d0f8f8dc24ffc0b4ab41:log:120', 'hash': '0xe14328606b7fd29d7206bc600d0ede168f91f1e03eb5d0f8f8dc24ffc0b4ab41', 'from': '0xce3e3ea2248de056e5ac5ff78e1fca1966fd5cb8', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 431.134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x175f2fa8c111430000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-05T01:05:26.000Z'}}]}}
Number of returned transfers: 115
Answer is complete
symbol AST
group BPG
date 2018-09-07
hour 15:30
exchange binance
Name: 258, dtype: object
HERE
{'binance-smart-chain': '0x7ed86d2769fe9a2cad7bac4ceac45e40c82295d6'}
No contract for ethereum specified
{'okex-chain': '0x493d8cbd9533e57d4befb17cc2ec1db76828261d'}
No contract for ethereum specified
{'optimistic-ethereum': '0xb532178708814f0c174b29b991d2b355106afbc3', 'binance-smart-chain': '0xae10e5980f05a80ae09fd0e5bcda3dacd49aaec1'}
No contract for ethereum specified
Symbol: AST, Contract: 0x27054b13b1b798b345b591a4d22e6562d47ea75a
Datetime timestamps: 2018-09-07 15:30:00 2018-09-07 03:30:00 2018-09-08 03:30:00
Unix timestamps: 1536283800.0 1536370200.0
Hex Block Numbers: 0x5fe8d5 0x600006
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x5fe8d7', 'uniqueId': '0xa930b6be12ecd9cdc7f9c9c89e27db6dc6e6d6e178cb486bbf9b879e3bb20d5d:log:53', 'hash': '0xa930b6be12ecd9cdc7f9c9c89e27db6dc6e6d6e178cb486bbf9b879e3bb20d5d', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x5291e85f9d1a853fde405711bf7942ee97096d39', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x17d78400', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T01:30:22.000Z'}}, {'blockNum': '0x5fe8e9', 'uniqueId': '0x614d3414cb700657d5e33159ec3f20d6b8725c0ba84a194dc7183d431145b766:log:2', 'hash': '0x614d3414cb700657d5e33159ec3f20d6b8725c0ba84a194dc7183d431145b766', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 40439.3091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x181a8c83', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T01:35:41.000Z'}}, {'blockNum': '0x5feba5', 'uniqueId': '0xeab70f874383379719a3db94db5ac8677f747b3effb02e2a2c0b5dcb62881ec2:log:6', 'hash': '0xeab70f874383379719a3db94db5ac8677f747b3effb02e2a2c0b5dcb62881ec2', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xa7478e48101a4600959837bd19ed719f2cb023df', 'value': 2275.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x015b33fc', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T04:31:31.000Z'}}, {'blockNum': '0x5febdc', 'uniqueId': '0xcc90c2a6009e56d60a43f074103346e1fb8e80f8ea2ae8f611ec138a45872891:log:21', 'hash': '0xcc90c2a6009e56d60a43f074103346e1fb8e80f8ea2ae8f611ec138a45872891', 'from': '0xa7478e48101a4600959837bd19ed719f2cb023df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2275.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x015b33fc', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T04:45:01.000Z'}}, {'blockNum': '0x5fed59', 'uniqueId': '0x2304cd35bed6a2290b11ca128f776b166f49af42376bc5b401aab3b0d3a50c81:log:15', 'hash': '0x2304cd35bed6a2290b11ca128f776b166f49af42376bc5b401aab3b0d3a50c81', 'from': '0x84faf1f993d2261a6a6dc53047719a5815719877', 'to': '0x99a1e7cd3032b1e4cab0181bc021130418c9587b', 'value': 2640, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0192d500', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T06:09:16.000Z'}}, {'blockNum': '0x5fed72', 'uniqueId': '0x09e8e6555f0b0f9a7b94b00120e93d019d8c38686c2c07ea615efa0c328fcd52:log:84', 'hash': '0x09e8e6555f0b0f9a7b94b00120e93d019d8c38686c2c07ea615efa0c328fcd52', 'from': '0x99a1e7cd3032b1e4cab0181bc021130418c9587b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f78a40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T06:15:13.000Z'}}, {'blockNum': '0x5fef5d', 'uniqueId': '0xc9fdd66479896388bc992dea109631b7ae163398c928b8cc75644b3968e36e8d:log:3', 'hash': '0xc9fdd66479896388bc992dea109631b7ae163398c928b8cc75644b3968e36e8d', 'from': '0xb56198923886d25042961dd091133e80b4fd7a8f', 'to': '0xef9762afb01ed8b7bd82bc78953317fd9480c37e', 'value': 7989.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04c31dc0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T08:13:37.000Z'}}, {'blockNum': '0x5fefbf', 'uniqueId': '0x2da624fb2d332315329a9f7b23325c59e13236dc9f062baef6080bf8d70f9545:log:8', 'hash': '0x2da624fb2d332315329a9f7b23325c59e13236dc9f062baef6080bf8d70f9545', 'from': '0xef9762afb01ed8b7bd82bc78953317fd9480c37e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7989.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04c31dc0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T08:35:17.000Z'}}, {'blockNum': '0x5ff21f', 'uniqueId': '0x88f1e0b1b3a6131af32b58b86bdc6597fd32df2b1889859045515432273459d9:log:44', 'hash': '0x88f1e0b1b3a6131af32b58b86bdc6597fd32df2b1889859045515432273459d9', 'from': '0xfdf65ce54ce170ba7d1517d62b750a4d46360e51', 'to': '0xb8c2382f9fbcbe03c52a9f517eeb5eb9dd2ad18a', 'value': 40286.912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x18034b80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T11:03:26.000Z'}}, {'blockNum': '0x5ff251', 'uniqueId': '0x3ec5a1e9472d1f5eb3bbf032301bceb42daaa693c7bd18dab8208087e5889b40:log:41', 'hash': '0x3ec5a1e9472d1f5eb3bbf032301bceb42daaa693c7bd18dab8208087e5889b40', 'from': '0xb8c2382f9fbcbe03c52a9f517eeb5eb9dd2ad18a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40286.912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x18034b80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T11:15:25.000Z'}}, {'blockNum': '0x5ff417', 'uniqueId': '0x054e34b61deaacbb0c5e644370cdd2ce96ede16e7499bfe0003998d8229c8bf2:log:10', 'hash': '0x054e34b61deaacbb0c5e644370cdd2ce96ede16e7499bfe0003998d8229c8bf2', 'from': '0x1c06328ddc1d662860415cf54f33570759a20ff6', 'to': '0xf2bbd020e7a95fbd3108c8ed9bb42966f2a380eb', 'value': 1001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x98bd90', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T13:07:41.000Z'}}, {'blockNum': '0x5ff439', 'uniqueId': '0x26d892b00d64a39bce5a041d4f22e426f2faae7bf56528aa6d5b44fb03028e60:log:17', 'hash': '0x26d892b00d64a39bce5a041d4f22e426f2faae7bf56528aa6d5b44fb03028e60', 'from': '0x0605e70e2581adb08e58636a6bfc7e542fa0c6f1', 'to': '0x8ca917727619e4f3c2916735c92f90ec01f2aa5b', 'value': 2032.35, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01361cac', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T13:16:33.000Z'}}, {'blockNum': '0x5ff45f', 'uniqueId': '0x17c316a9f5371b66649bdc6c68c9d3d2c648ae080cee4d05ff4b31639b01476b:log:27', 'hash': '0x17c316a9f5371b66649bdc6c68c9d3d2c648ae080cee4d05ff4b31639b01476b', 'from': '0x8ca917727619e4f3c2916735c92f90ec01f2aa5b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x016cd670', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T13:24:58.000Z'}}, {'blockNum': '0x5ff621', 'uniqueId': '0x18f246df99c07a650546a996c52d7ae8e07c10b295d079a065ab292667e2164a:log:46', 'hash': '0x18f246df99c07a650546a996c52d7ae8e07c10b295d079a065ab292667e2164a', 'from': '0x1d8515e9787406c5bcd521249f8a5df78801f294', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 671.6657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x667cf1', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:15:19.000Z'}}, {'blockNum': '0x5ff621', 'uniqueId': '0x18f246df99c07a650546a996c52d7ae8e07c10b295d079a065ab292667e2164a:log:49', 'hash': '0x18f246df99c07a650546a996c52d7ae8e07c10b295d079a065ab292667e2164a', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 671.6657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x667cf1', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:15:19.000Z'}}, {'blockNum': '0x5ff621', 'uniqueId': '0x18f246df99c07a650546a996c52d7ae8e07c10b295d079a065ab292667e2164a:log:50', 'hash': '0x18f246df99c07a650546a996c52d7ae8e07c10b295d079a065ab292667e2164a', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 671.6657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x667cf1', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:15:19.000Z'}}, {'blockNum': '0x5ff659', 'uniqueId': '0xac6f5bfde1b56e1daa833ec3ebc964de4440a2108f7f23d6c37399660ae4aa3c:log:70', 'hash': '0xac6f5bfde1b56e1daa833ec3ebc964de4440a2108f7f23d6c37399660ae4aa3c', 'from': '0x1d8515e9787406c5bcd521249f8a5df78801f294', 'to': '0xa3ed571cac41bed0249ab19080d1013404319e20', 'value': 2614.1966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x018ee50e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:29:56.000Z'}}, {'blockNum': '0x5ff65d', 'uniqueId': '0x69677388ba599b91d7b01a2218fc39e1377c6519ec89d5f284cfe3f265bee24b:log:0', 'hash': '0x69677388ba599b91d7b01a2218fc39e1377c6519ec89d5f284cfe3f265bee24b', 'from': '0x1d8515e9787406c5bcd521249f8a5df78801f294', 'to': '0xa3ed571cac41bed0249ab19080d1013404319e20', 'value': 2614.1966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x018ee50e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:30:50.000Z'}}, {'blockNum': '0x5ff663', 'uniqueId': '0x3fad015dd40266a0e37daad797a215d5f5d55af23031f7f9dbf2fb0e3c27f8c8:log:29', 'hash': '0x3fad015dd40266a0e37daad797a215d5f5d55af23031f7f9dbf2fb0e3c27f8c8', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 4309.4999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x029193d7', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:31:59.000Z'}}, {'blockNum': '0x5ff664', 'uniqueId': '0xd32400e271b61490b56bbd0a982fda6c9933911fccdee97a33fc1c7a91e4bcd4:log:2', 'hash': '0xd32400e271b61490b56bbd0a982fda6c9933911fccdee97a33fc1c7a91e4bcd4', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:32:18.000Z'}}, {'blockNum': '0x5ff667', 'uniqueId': '0x7af6c9300e9a181af11a1a3136909fb17c93b234f442b05d3d3573031d6cedee:log:65', 'hash': '0x7af6c9300e9a181af11a1a3136909fb17c93b234f442b05d3d3573031d6cedee', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xb7e3abd75119fe3cfc76015193226b21fc19230b', 'value': 10747.0924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0667e04c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:32:39.000Z'}}, {'blockNum': '0x5ff66d', 'uniqueId': '0x03663d3c9f3c2f9b84900098bac83226e54fd3435245fbcbbc2ebe5d1ee985a7:log:10', 'hash': '0x03663d3c9f3c2f9b84900098bac83226e54fd3435245fbcbbc2ebe5d1ee985a7', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 8066.4999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04ced9a7', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:34:50.000Z'}}, {'blockNum': '0x5ff67d', 'uniqueId': '0xca950fa0c0af11b7d31752ead775d50b712f841cd260d924bc1b164302c17f91:log:10', 'hash': '0xca950fa0c0af11b7d31752ead775d50b712f841cd260d924bc1b164302c17f91', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0x16d9ff6b46a36bf39a5af9735da95103cee64a8c', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc350', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:38:41.000Z'}}, {'blockNum': '0x5ff681', 'uniqueId': '0xf5aaaa1611fd10181d329d7bb1bc23362ea04513e00319dcbb9fa5eb8e76f3c8:log:56', 'hash': '0xf5aaaa1611fd10181d329d7bb1bc23362ea04513e00319dcbb9fa5eb8e76f3c8', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0x16d9ff6b46a36bf39a5af9735da95103cee64a8c', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x9c40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:39:18.000Z'}}, {'blockNum': '0x5ff687', 'uniqueId': '0xeb0e47884cddece699e0ef81ffb7cae793bcd349b4fce3efc633521338ed80d0:log:5', 'hash': '0xeb0e47884cddece699e0ef81ffb7cae793bcd349b4fce3efc633521338ed80d0', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 67543.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x28425db0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:40:29.000Z'}}, {'blockNum': '0x5ff68d', 'uniqueId': '0x1f66913bf1bd5f8dbebc4a93c4c415bfd97b1d5d4151dd980bda6303471c1686:log:19', 'hash': '0x1f66913bf1bd5f8dbebc4a93c4c415bfd97b1d5d4151dd980bda6303471c1686', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0xdead0717b16b9f56eb6e308e4b29230dc0eee0b6', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc350', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:41:49.000Z'}}, {'blockNum': '0x5ff69f', 'uniqueId': '0x4544a51386e950d6a2a49f87266854d0da50749364d11a9c4149d75eb2577119:log:520', 'hash': '0x4544a51386e950d6a2a49f87266854d0da50749364d11a9c4149d75eb2577119', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 67543.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x28425db0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:44:50.000Z'}}, {'blockNum': '0x5ff69f', 'uniqueId': '0x28f64fb78c5e34fed24984127a918acc7a3b5c80d190f98b9428ed741375e324:log:521', 'hash': '0x28f64fb78c5e34fed24984127a918acc7a3b5c80d190f98b9428ed741375e324', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4309.4999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x029193d7', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:44:50.000Z'}}, {'blockNum': '0x5ff6a0', 'uniqueId': '0x7d5ef5c1ec650f48c758c8863daccd9f8f6c4e9eb9a7a475b082a2afdc368b9f:log:22', 'hash': '0x7d5ef5c1ec650f48c758c8863daccd9f8f6c4e9eb9a7a475b082a2afdc368b9f', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:45:10.000Z'}}, {'blockNum': '0x5ff6a7', 'uniqueId': '0x6245758323d3e5fd88df29b38e4ffb83706afdcd22f7e5534b5dc7ab72a0b470:log:50', 'hash': '0x6245758323d3e5fd88df29b38e4ffb83706afdcd22f7e5534b5dc7ab72a0b470', 'from': '0x1d8515e9787406c5bcd521249f8a5df78801f294', 'to': '0xfe723d068f07c2c588fe4db8ce84fd33b93c3511', 'value': 1955.6675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x012a6943', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:46:52.000Z'}}, {'blockNum': '0x5ff6b1', 'uniqueId': '0xde9bfc7cfa88f9092de7fba74140421a9e75e29e57b8fbcf6da8f5d1a6fa0935:log:6', 'hash': '0xde9bfc7cfa88f9092de7fba74140421a9e75e29e57b8fbcf6da8f5d1a6fa0935', 'from': '0xfe723d068f07c2c588fe4db8ce84fd33b93c3511', 'to': '0x9ea39651739f6c025d0770695a822b7187605f42', 'value': 1955.6675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x012a6943', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:48:26.000Z'}}, {'blockNum': '0x5ff6cf', 'uniqueId': '0xdee27f4ad8479b69e64d6af91f50117382993c9369a952a4d2ffa67114280f3c:log:65', 'hash': '0xdee27f4ad8479b69e64d6af91f50117382993c9369a952a4d2ffa67114280f3c', 'from': '0xa3ed571cac41bed0249ab19080d1013404319e20', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 7389.6212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04679114', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:54:43.000Z'}}, {'blockNum': '0x5ff6d1', 'uniqueId': '0xbfdf1b80bb8cee2cba2a6126346649dff5083e21cf6ad7ed55abfa241beb7726:log:15', 'hash': '0xbfdf1b80bb8cee2cba2a6126346649dff5083e21cf6ad7ed55abfa241beb7726', 'from': '0xb7e3abd75119fe3cfc76015193226b21fc19230b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10747.0924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0667e04c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:55:23.000Z'}}, {'blockNum': '0x5ff6d1', 'uniqueId': '0xef9cb40dc2ab08647e51f025e3669e6706bafe34922e6a8879dd609e499ec704:log:16', 'hash': '0xef9cb40dc2ab08647e51f025e3669e6706bafe34922e6a8879dd609e499ec704', 'from': '0x9ea39651739f6c025d0770695a822b7187605f42', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1955.6675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x012a6943', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:55:23.000Z'}}, {'blockNum': '0x5ff6f3', 'uniqueId': '0x1023bdfc295005c0c3eb83f32db806f3ed26f1a3be6be03787dca8d93874d61b:log:5', 'hash': '0x1023bdfc295005c0c3eb83f32db806f3ed26f1a3be6be03787dca8d93874d61b', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7389.6212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04679114', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T16:05:08.000Z'}}, {'blockNum': '0x5ff706', 'uniqueId': '0x6d43cf81f78b6ab9fe61e9778990c8413ceeac901a0fee0dd668d0ed3e4ea6fd:log:34', 'hash': '0x6d43cf81f78b6ab9fe61e9778990c8413ceeac901a0fee0dd668d0ed3e4ea6fd', 'from': '0x1d8515e9787406c5bcd521249f8a5df78801f294', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 630.4812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x60342c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T16:09:29.000Z'}}, {'blockNum': '0x5ff706', 'uniqueId': '0x6d43cf81f78b6ab9fe61e9778990c8413ceeac901a0fee0dd668d0ed3e4ea6fd:log:37', 'hash': '0x6d43cf81f78b6ab9fe61e9778990c8413ceeac901a0fee0dd668d0ed3e4ea6fd', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 630.4812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x60342c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T16:09:29.000Z'}}, {'blockNum': '0x5ff706', 'uniqueId': '0x6d43cf81f78b6ab9fe61e9778990c8413ceeac901a0fee0dd668d0ed3e4ea6fd:log:38', 'hash': '0x6d43cf81f78b6ab9fe61e9778990c8413ceeac901a0fee0dd668d0ed3e4ea6fd', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 630.4812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x60342c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T16:09:29.000Z'}}, {'blockNum': '0x5ff707', 'uniqueId': '0xa601899c0d4452f1aa2e7a0c015a005e9e82f911636af3f4ff3290c1304447a0:log:59', 'hash': '0xa601899c0d4452f1aa2e7a0c015a005e9e82f911636af3f4ff3290c1304447a0', 'from': '0x1d8515e9787406c5bcd521249f8a5df78801f294', 'to': '0xfe723d068f07c2c588fe4db8ce84fd33b93c3511', 'value': 1996.852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0130b208', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T16:09:44.000Z'}}, {'blockNum': '0x5ff70b', 'uniqueId': '0xf7aebec01ff87bb85060ce926eb1d912817cad7df1280b2ca7964a58feb315aa:log:12', 'hash': '0xf7aebec01ff87bb85060ce926eb1d912817cad7df1280b2ca7964a58feb315aa', 'from': '0xfe723d068f07c2c588fe4db8ce84fd33b93c3511', 'to': '0x9ea39651739f6c025d0770695a822b7187605f42', 'value': 1996.852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0130b208', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T16:10:48.000Z'}}, {'blockNum': '0x5ff741', 'uniqueId': '0x832de9ee4aa0e0d49b204fdcbabb5e5474cc986a3ae02cddd5d77bb39b95d121:log:32', 'hash': '0x832de9ee4aa0e0d49b204fdcbabb5e5474cc986a3ae02cddd5d77bb39b95d121', 'from': '0x9ea39651739f6c025d0770695a822b7187605f42', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1996.852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0130b208', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T16:25:46.000Z'}}, {'blockNum': '0x5ff7f4', 'uniqueId': '0x62f65baf2c04547d78d499d35ce94f0d623328ff1b1e0db4d5472561cd8954ff:log:3', 'hash': '0x62f65baf2c04547d78d499d35ce94f0d623328ff1b1e0db4d5472561cd8954ff', 'from': '0x33f25e81dd49b49560b26039f8889e81daf0a1f8', 'to': '0x0437930a50edbf9cfa055b9b227a1b70d53ada24', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T17:08:18.000Z'}}, {'blockNum': '0x5ff8a8', 'uniqueId': '0x50411576a066d99c71ebf53e0238a1cefe3a26d2648af635cd9de039a3d7a730:log:66', 'hash': '0x50411576a066d99c71ebf53e0238a1cefe3a26d2648af635cd9de039a3d7a730', 'from': '0x15f0612a8e583e87e2891d8ad1bb79e4e55620e8', 'to': '0x228835bdf697cbe8fc098b47b0dc8746e19e4e40', 'value': 98.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0effd8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T17:53:46.000Z'}}, {'blockNum': '0x5ff8ab', 'uniqueId': '0x6c40edec108d6843467b1c3b2940d84520e08e467d03cdfef94cb9658a5adbcc:log:19', 'hash': '0x6c40edec108d6843467b1c3b2940d84520e08e467d03cdfef94cb9658a5adbcc', 'from': '0xc1f14e12ef36de651d62950d9f152e524bf6543b', 'to': '0xe9b47e8f0105793f03967a979d3d2ee73661caba', 'value': 5800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03750280', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T17:55:03.000Z'}}, {'blockNum': '0x5ff8ce', 'uniqueId': '0xf759fab36b8ca33cec89b8a93cc79e2dadfa682927741233aa3d229e15cf1ea3:log:49', 'hash': '0xf759fab36b8ca33cec89b8a93cc79e2dadfa682927741233aa3d229e15cf1ea3', 'from': '0x1d8515e9787406c5bcd521249f8a5df78801f294', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x48efe0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T18:03:14.000Z'}}, {'blockNum': '0x5ff8ce', 'uniqueId': '0xf759fab36b8ca33cec89b8a93cc79e2dadfa682927741233aa3d229e15cf1ea3:log:52', 'hash': '0xf759fab36b8ca33cec89b8a93cc79e2dadfa682927741233aa3d229e15cf1ea3', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x48efe0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T18:03:14.000Z'}}, {'blockNum': '0x5ff8ce', 'uniqueId': '0xf759fab36b8ca33cec89b8a93cc79e2dadfa682927741233aa3d229e15cf1ea3:log:53', 'hash': '0xf759fab36b8ca33cec89b8a93cc79e2dadfa682927741233aa3d229e15cf1ea3', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x48efe0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T18:03:14.000Z'}}, {'blockNum': '0x5ff8e2', 'uniqueId': '0xf7594049294360e50b846285061b23ea0dc99c07b4a009113a5583a8d03f087b:log:15', 'hash': '0xf7594049294360e50b846285061b23ea0dc99c07b4a009113a5583a8d03f087b', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0x8d99f2e4c0534bd2500e0ab378897ae78c09cb14', 'value': 7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x011170', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T18:07:43.000Z'}}, {'blockNum': '0x5ff900', 'uniqueId': '0xcc69f56705da2b5f154ec5c6c50b59176708deb2c5a3335d23fe8ff8061fe529:log:18', 'hash': '0xcc69f56705da2b5f154ec5c6c50b59176708deb2c5a3335d23fe8ff8061fe529', 'from': '0xe9b47e8f0105793f03967a979d3d2ee73661caba', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03750280', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T18:15:07.000Z'}}, {'blockNum': '0x5ffa1c', 'uniqueId': '0xc4b605be1166e174483ee3817554ab71b7bb4effbfe539de67cff7b3fa0d5ad3:log:20', 'hash': '0xc4b605be1166e174483ee3817554ab71b7bb4effbfe539de67cff7b3fa0d5ad3', 'from': '0xe8bcbc2fbc5d35cc2e31ed7f6ed615d1e9bf7ebf', 'to': '0x2255cf33fd3eac46a8818bb255ef5ba54733565e', 'value': 10495.416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x06417930', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T19:24:02.000Z'}}, {'blockNum': '0x5ffa4b', 'uniqueId': '0x5039b42e900a8cc356709b1eeb6a12eb65b76cdd92b6ef0b7041f7c849a920eb:log:23', 'hash': '0x5039b42e900a8cc356709b1eeb6a12eb65b76cdd92b6ef0b7041f7c849a920eb', 'from': '0x2255cf33fd3eac46a8818bb255ef5ba54733565e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10495.416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x06417930', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T19:35:08.000Z'}}, {'blockNum': '0x5ffb56', 'uniqueId': '0x1c82d0e9035c0f4d6099edb5be527c4639e3ebbcfebee8d13d03d46971d8230f:log:10', 'hash': '0x1c82d0e9035c0f4d6099edb5be527c4639e3ebbcfebee8d13d03d46971d8230f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29983.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11df2a30', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T20:38:34.000Z'}}, {'blockNum': '0x5ffb99', 'uniqueId': '0x9ad7f83f9bc0e29ab073a05e485180c092689a0e7afe0f910f7b4a189f3711a0:log:63', 'hash': '0x9ad7f83f9bc0e29ab073a05e485180c092689a0e7afe0f910f7b4a189f3711a0', 'from': '0xdead0717b16b9f56eb6e308e4b29230dc0eee0b6', 'to': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x9c40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T20:57:55.000Z'}}, {'blockNum': '0x5ffbe5', 'uniqueId': '0x268884dbd38d6f0684167d35934f60a8ca8ecfab2222c99a394810ac051875f7:log:33', 'hash': '0x268884dbd38d6f0684167d35934f60a8ca8ecfab2222c99a394810ac051875f7', 'from': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'to': '0x16d9ff6b46a36bf39a5af9735da95103cee64a8c', 'value': 3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7530', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T21:14:26.000Z'}}, {'blockNum': '0x5ffbf0', 'uniqueId': '0x495b5ec288d169666720b3b43f74ab10ae7dffa4dd21b5c7cc72e4b2e474ad7d:log:2', 'hash': '0x495b5ec288d169666720b3b43f74ab10ae7dffa4dd21b5c7cc72e4b2e474ad7d', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0x16d9ff6b46a36bf39a5af9735da95103cee64a8c', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x9c40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T21:16:53.000Z'}}, {'blockNum': '0x5ffbf5', 'uniqueId': '0xea53aa72e40a06a2f310636e6d7588e136bfcec545943b55d393e840b6b010b0:log:55', 'hash': '0xea53aa72e40a06a2f310636e6d7588e136bfcec545943b55d393e840b6b010b0', 'from': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'to': '0x16d9ff6b46a36bf39a5af9735da95103cee64a8c', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T21:19:08.000Z'}}, {'blockNum': '0x5ffc27', 'uniqueId': '0x3f189094d93c1e27085e862e1ede3bd97e8a1677a2de7a46b23b43b555a01c81:log:57', 'hash': '0x3f189094d93c1e27085e862e1ede3bd97e8a1677a2de7a46b23b43b555a01c81', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0x16d9ff6b46a36bf39a5af9735da95103cee64a8c', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc350', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T21:30:18.000Z'}}, {'blockNum': '0x5ffc3c', 'uniqueId': '0xe0896daa5b9b6b86b1094256b0319d675e962d3f2122be48cbe78a5dea1ddb35:log:97', 'hash': '0xe0896daa5b9b6b86b1094256b0319d675e962d3f2122be48cbe78a5dea1ddb35', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0x16d9ff6b46a36bf39a5af9735da95103cee64a8c', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc350', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T21:35:33.000Z'}}, {'blockNum': '0x5ffffd', 'uniqueId': '0x23d024614957d0c0073aeeda5eb706c958be04a187a42d6b71db202c5f31cb41:log:11', 'hash': '0x23d024614957d0c0073aeeda5eb706c958be04a187a42d6b71db202c5f31cb41', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xdcf411ce507c5c0135efaf7a6df458bff7f511bb', 'value': 534.05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x517d54', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-08T01:28:00.000Z'}}]}}
Number of returned transfers: 59
Answer is complete
symbol ICN
group BPG
date 2018-09-11
hour 15:30
exchange binance
Name: 259, dtype: object
HERE
Symbol: ICN, Contract:
Datetime timestamps: 2018-09-11 15:30:00 2018-09-11 03:30:00 2018-09-12 03:30:00
Unix timestamps: 1536629400.0 1536715800.0
Hex Block Numbers: 0x6045b6 0x605d2e
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol OAX
group BPG
date 2018-09-25
hour 14:00
exchange binance
Name: 260, dtype: object
HERE
Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps: 2018-09-25 14:00:00 2018-09-25 02:00:00 2018-09-26 02:00:00
Unix timestamps: 1537833600.0 1537920000.0
Hex Block Numbers: 0x618f3c 0x61a71d
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x618f47', 'uniqueId': '0x4823bc16fca73d6c6088f7ce8c0d68017f0bf061e92140f15b88289c2720e93b:log:3', 'hash': '0x4823bc16fca73d6c6088f7ce8c0d68017f0bf061e92140f15b88289c2720e93b', 'from': '0x86a96a8a212b7123a9aae4d2b15eb0485e83a4b5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11009.64, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0254d572a06d63a40000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T00:03:08.000Z'}}, {'blockNum': '0x6190d4', 'uniqueId': '0xfc69edb168cf73e1ddc34f6fc92ca219526d8ede7b7b2139242ade076803e7c9:log:41', 'hash': '0xfc69edb168cf73e1ddc34f6fc92ca219526d8ede7b7b2139242ade076803e7c9', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xe098ebebb75baa6e780cd933e0dd407294f24f94', 'value': 8.48706227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x75c81a2b0df86c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T01:40:04.000Z'}}, {'blockNum': '0x619110', 'uniqueId': '0xbf7bb05f1fef043d67395ee4e44858047477a580d8f6eb1e9ae29914699876df:log:169', 'hash': '0xbf7bb05f1fef043d67395ee4e44858047477a580d8f6eb1e9ae29914699876df', 'from': '0x51ec49876fd0f9e4bf72998fb24cd82e05802fbb', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 290.7767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0fc3565c0c8c53c000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T01:52:23.000Z'}}, {'blockNum': '0x61912b', 'uniqueId': '0xf738a8ff6ce39df58028d5993a1c09a3578bfe52e10cd92eaaac06bf239f7974:log:31', 'hash': '0xf738a8ff6ce39df58028d5993a1c09a3578bfe52e10cd92eaaac06bf239f7974', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 285.5655678223108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0f7b04b2f1738e7efa', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T01:57:49.000Z'}}, {'blockNum': '0x619132', 'uniqueId': '0x0e241204c1c7834ae6613334ca9117d076f8258a2391e03cf8aa7e8fe1930657:log:143', 'hash': '0x0e241204c1c7834ae6613334ca9117d076f8258a2391e03cf8aa7e8fe1930657', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 285.5655678223108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0f7b04b2f1738e7efa', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T01:59:34.000Z'}}, {'blockNum': '0x619210', 'uniqueId': '0x19d3b0c95e9ae60631a24bd9d2e70a457c372a527b5c28132ec261bd55599fca:log:109', 'hash': '0x19d3b0c95e9ae60631a24bd9d2e70a457c372a527b5c28132ec261bd55599fca', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x204717f118d5b22e0978907a28f417ed1136803b', 'value': 228.65853658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0c65464f88df902800', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T02:45:46.000Z'}}, {'blockNum': '0x6192f3', 'uniqueId': '0x95e4d8129171d845b858a40ff1255e15ff2c134e30d3b12bc16ead662c270b37:log:11', 'hash': '0x95e4d8129171d845b858a40ff1255e15ff2c134e30d3b12bc16ead662c270b37', 'from': '0x46f6de6c14b6234c875ddf6187ef94334e39d1fb', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 4201.08799999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xe3bdcecdac38341bff', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T03:37:46.000Z'}}, {'blockNum': '0x619615', 'uniqueId': '0x1552380971219e05af9f054c2d91199c0df210cc78ffed18d183519f8741ff09:log:2', 'hash': '0x1552380971219e05af9f054c2d91199c0df210cc78ffed18d183519f8741ff09', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe6042e4132b754bfffed235a093f78fc368e2774', 'value': 1683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x5b3c511f15766c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T06:48:41.000Z'}}, {'blockNum': '0x619660', 'uniqueId': '0x87514fc1bdbcc89768a518fab834a0d9a176c62a9d101d65c26e02edf8f48bae:log:116', 'hash': '0x87514fc1bdbcc89768a518fab834a0d9a176c62a9d101d65c26e02edf8f48bae', 'from': '0x50f69cea36c1c8eba0b7268cb2c63a9e55aea2bc', 'to': '0xb51eb4d493ee15b5e699ee197aeee0d050c55baf', 'value': 63.469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0370cf2f3a11448000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T07:08:56.000Z'}}, {'blockNum': '0x619683', 'uniqueId': '0x0f47ae97c465643026780769c76b6a92dcb12bda98da8cd6cf65ed06f6c24104:log:131', 'hash': '0x0f47ae97c465643026780769c76b6a92dcb12bda98da8cd6cf65ed06f6c24104', 'from': '0x4238e233f9cf05fe09c6b778175c0cca8ca7fde3', 'to': '0xb51eb4d493ee15b5e699ee197aeee0d050c55baf', 'value': 80.139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x045826ebe7c7078000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T07:18:22.000Z'}}, {'blockNum': '0x6196fb', 'uniqueId': '0x8dc306eaa300fdd3b0ad5171f2720fee2ec7c0044f198523faba3b9cf35723bd:log:114', 'hash': '0x8dc306eaa300fdd3b0ad5171f2720fee2ec7c0044f198523faba3b9cf35723bd', 'from': '0xe46b213cf417f84241cc07105f7b159aa0e56603', 'to': '0xb51eb4d493ee15b5e699ee197aeee0d050c55baf', 'value': 33.628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01d2aea7d4cad60000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T07:47:28.000Z'}}, {'blockNum': '0x619735', 'uniqueId': '0x6e416e3539ccd9231108c84b7d6e85f06c9361142fa7bd53de4a453d333392db:log:2', 'hash': '0x6e416e3539ccd9231108c84b7d6e85f06c9361142fa7bd53de4a453d333392db', 'from': '0x9464564c4c1fb19fa80c119287d406ea2f50fb03', 'to': '0x200aa1d0ce9f38cf2ed53833f4a90c0223d13af8', 'value': 306.237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1099e460fca14c8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T08:00:39.000Z'}}, {'blockNum': '0x619786', 'uniqueId': '0x4a5db62f8ce8eef87438256da7bcd35e1e4e55bb7186317c1be10adffa71e4ef:log:8', 'hash': '0x4a5db62f8ce8eef87438256da7bcd35e1e4e55bb7186317c1be10adffa71e4ef', 'from': '0x191d5fc07b706936b3dbc00b8171da62d11765c7', 'to': '0x200aa1d0ce9f38cf2ed53833f4a90c0223d13af8', 'value': 279.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0f2410ee34869a0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T08:21:08.000Z'}}, {'blockNum': '0x619796', 'uniqueId': '0xb9a0a9136237beb188c88c6b05d6d933e76dd2b4bb24b523db0da678522f9613:log:1', 'hash': '0xb9a0a9136237beb188c88c6b05d6d933e76dd2b4bb24b523db0da678522f9613', 'from': '0xff1b2367c621ffd6e4ad1e1a2a77dc897caedf3e', 'to': '0x200aa1d0ce9f38cf2ed53833f4a90c0223d13af8', 'value': 230.52, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0c7f1b8ea7170c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T08:24:09.000Z'}}, {'blockNum': '0x6197a1', 'uniqueId': '0x2a1849b26cffcaf6decc6130d8eb0639a118589a49c165cd54763c4df4c612f6:log:114', 'hash': '0x2a1849b26cffcaf6decc6130d8eb0639a118589a49c165cd54763c4df4c612f6', 'from': '0xf96d5e478438f68ad949b4ee71292fdf79d458c5', 'to': '0xb51eb4d493ee15b5e699ee197aeee0d050c55baf', 'value': 29.999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01a051db8ef8f18000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T08:25:54.000Z'}}, {'blockNum': '0x6197c6', 'uniqueId': '0x7ee35d45be54defd75537695f17800c7c8c6fc43b12c581a135c5de56bfa4869:log:5', 'hash': '0x7ee35d45be54defd75537695f17800c7c8c6fc43b12c581a135c5de56bfa4869', 'from': '0x200aa1d0ce9f38cf2ed53833f4a90c0223d13af8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 816.057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x2c3d10ddd83ef28000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T08:33:10.000Z'}}, {'blockNum': '0x6199d5', 'uniqueId': '0x5966f3d19e101f193a2c7af5911ddd70bd9698b9e5fc67c5ea79eaa0d5c4fc8d:log:9', 'hash': '0x5966f3d19e101f193a2c7af5911ddd70bd9698b9e5fc67c5ea79eaa0d5c4fc8d', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x045f831a24ef96b91f539b40c676e05e9e0a8d18', 'value': 2346.06681307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x7f2e37a87e121c0c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T10:33:55.000Z'}}, {'blockNum': '0x619a2f', 'uniqueId': '0x59731578c1657ea904e3658aabd7381de0c983d25ad51fea658c43470ed8c686:log:10', 'hash': '0x59731578c1657ea904e3658aabd7381de0c983d25ad51fea658c43470ed8c686', 'from': '0x045f831a24ef96b91f539b40c676e05e9e0a8d18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2346.06681307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x7f2e37a87e121c0c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T10:53:01.000Z'}}, {'blockNum': '0x619c7d', 'uniqueId': '0xbab1a4ef2f2aabc0c4cc3c0ad8e0622a3cc8314eb8df4ce0848bec8b0806ddc5:log:81', 'hash': '0xbab1a4ef2f2aabc0c4cc3c0ad8e0622a3cc8314eb8df4ce0848bec8b0806ddc5', 'from': '0xcc199806952b580ef7c4e7941f030fd9583d194e', 'to': '0xea94d4a1f59d197ba429f803392a2a1c9dfcf464', 'value': 283.843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0f631ce8a2a5338000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T13:15:31.000Z'}}, {'blockNum': '0x619d2c', 'uniqueId': '0xe233e829210bf2982d5c0573b30270847f9daf727aac91a3e8d6394268f246ac:log:56', 'hash': '0xe233e829210bf2982d5c0573b30270847f9daf727aac91a3e8d6394268f246ac', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 220.34073759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0bf1d78d6c3f829c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T14:01:37.000Z'}}, {'blockNum': '0x619d3a', 'uniqueId': '0xe0ea28eaab0d51272d30f68f4d4caea9be788e4100f7eed3615dd2f69b13ca32:log:12', 'hash': '0xe0ea28eaab0d51272d30f68f4d4caea9be788e4100f7eed3615dd2f69b13ca32', 'from': '0x0861fca546225fbf8806986d211c8398f7457734', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 8569.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01d08f17245033800000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T14:04:44.000Z'}}, {'blockNum': '0x619d89', 'uniqueId': '0xbe0dc127821371e956e666c61ad5d84cc6cd9d33448a82b41e2c19363d6e487f:log:38', 'hash': '0xbe0dc127821371e956e666c61ad5d84cc6cd9d33448a82b41e2c19363d6e487f', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8569.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01d08f17245033800000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T14:23:34.000Z'}}, {'blockNum': '0x61a151', 'uniqueId': '0x3a538c6d21c15aa710d54ad9ae23c47559ec43dd7dad01208d46ec38e4fb3e2b:log:50', 'hash': '0x3a538c6d21c15aa710d54ad9ae23c47559ec43dd7dad01208d46ec38e4fb3e2b', 'from': '0x9b3fc93051e2ca9a0bff950fbed26a9a6865a027', 'to': '0x02c1f9f2c8707cdb50a5566737a3d5f78565ff9d', 'value': 14.849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xce123ed39dc68000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T18:05:21.000Z'}}]}}
Number of returned transfers: 23
Answer is complete
symbol HC
group BPG
date 2018-09-27
hour 14:00
exchange binance
Name: 261, dtype: object
HERE
{'stratis': ''}
No contract for ethereum specified
Symbol: HC, Contract:
Datetime timestamps: 2018-09-27 14:00:00 2018-09-27 02:00:00 2018-09-28 02:00:00
Unix timestamps: 1538006400.0 1538092800.0
Hex Block Numbers: 0x61befd 0x61d6be
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol BRD
group BPG
date 2018-10-08
hour 14:00
exchange binance
Name: 262, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps: 2018-10-08 14:00:00 2018-10-08 02:00:00 2018-10-09 02:00:00
Unix timestamps: 1538956800.0 1539043200.0
Hex Block Numbers: 0x62c673 0x62de96
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x62c6a7', 'uniqueId': '0xf83d122a197743f9816563262c00a7cea115792c0755bf0538c4cd465c365f6c:log:130', 'hash': '0xf83d122a197743f9816563262c00a7cea115792c0755bf0538c4cd465c365f6c', 'from': '0x6b860c34427245cedf4982ab06897f0eccb398d3', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T00:09:24.000Z'}}, {'blockNum': '0x62c856', 'uniqueId': '0xddbf38816506734357a7467fc88d8819e50234c7d3089aa99b681e433f8a8d34:log:8', 'hash': '0xddbf38816506734357a7467fc88d8819e50234c7d3089aa99b681e433f8a8d34', 'from': '0xd1c956cb1abb88b6a2f3c30d0e8231e965fbc5ad', 'to': '0x281a89ccf9ab0df21194bf91f5647442c7ebabc8', 'value': 18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xf9ccd8a1c5080000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T01:50:45.000Z'}}, {'blockNum': '0x62c951', 'uniqueId': '0x758b630fffdd8081275384aa686792c7f866ac5342b1fc0b6f6a750cb43dbb49:log:10', 'hash': '0x758b630fffdd8081275384aa686792c7f866ac5342b1fc0b6f6a750cb43dbb49', 'from': '0x9dd12f3f516cc2bdaf283ccc61fc3fae393d3b5f', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 13961.38, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02f4d911b370432a0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T02:50:16.000Z'}}, {'blockNum': '0x62c9c9', 'uniqueId': '0x5f2ec7e7c980b50ddbe36394fc1d5e9f0cb61cb4fb355fc0490518ebdbe7ae37:log:27', 'hash': '0x5f2ec7e7c980b50ddbe36394fc1d5e9f0cb61cb4fb355fc0490518ebdbe7ae37', 'from': '0x4878b27ce3db2577549fff9dd14783d50a9a03a3', 'to': '0xa7f4f7d0a679189923322749ab94dffa845588ce', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T03:23:06.000Z'}}, {'blockNum': '0x62c9f0', 'uniqueId': '0x58c42fa3f69d9e392d959c77af7a2c9ac70eece0917f1afe7c891cfbe58df0e1:log:80', 'hash': '0x58c42fa3f69d9e392d959c77af7a2c9ac70eece0917f1afe7c891cfbe58df0e1', 'from': '0x319c71e1cd3e8927a5a00b00a2fb792f2a3b9c94', 'to': '0x24b1020d151042ef29187129353eb10719ad8a26', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T03:31:48.000Z'}}, {'blockNum': '0x62ca0a', 'uniqueId': '0x8a042fcabab1f18a3a2db483321a690b55c8c3d718da117fb5598fded019fc2a:log:85', 'hash': '0x8a042fcabab1f18a3a2db483321a690b55c8c3d718da117fb5598fded019fc2a', 'from': '0x70ee8b8d3be6194f09f8add5270821da664c4b41', 'to': '0xa7f4f7d0a679189923322749ab94dffa845588ce', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T03:38:08.000Z'}}, {'blockNum': '0x62ca55', 'uniqueId': '0x280727e1f47563ca0447f2bcc3c9369bfa8fddf430cf2b6af47ab01ecc3d2d11:log:165', 'hash': '0x280727e1f47563ca0447f2bcc3c9369bfa8fddf430cf2b6af47ab01ecc3d2d11', 'from': '0xedd3a1b631a720004288f11a439a3942449916ff', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T03:53:50.000Z'}}, {'blockNum': '0x62ca57', 'uniqueId': '0xfc3d1fb30b5125d58a6e5755bd23b593c2d0ec4034ab8ef4d1e5054ee0aa0a01:log:211', 'hash': '0xfc3d1fb30b5125d58a6e5755bd23b593c2d0ec4034ab8ef4d1e5054ee0aa0a01', 'from': '0xe2987038f5b225df57c47967abe2faedcafb2e3f', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T03:53:57.000Z'}}, {'blockNum': '0x62ca58', 'uniqueId': '0x3bb753a4f861d77f0fb84073aaaaa268385d5eebfb98dd842405f2200f8543cc:log:48', 'hash': '0x3bb753a4f861d77f0fb84073aaaaa268385d5eebfb98dd842405f2200f8543cc', 'from': '0xb14cdf3fb45e1ba4cf38c8b88408a695a384b8f7', 'to': '0x8ef634eeddd0f2af6f8237e7908350f8987da710', 'value': 175.98829331903679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x098a54045904704571', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T03:54:35.000Z'}}, {'blockNum': '0x62ca61', 'uniqueId': '0x7f2000b5a9a7c1b463be227870c7c1aa0f9a1fae495ba81c081636b97a3e4a07:log:53', 'hash': '0x7f2000b5a9a7c1b463be227870c7c1aa0f9a1fae495ba81c081636b97a3e4a07', 'from': '0x906d15e7535ad702a5d7651d587bfc3250ca74fc', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T03:56:24.000Z'}}, {'blockNum': '0x62ca68', 'uniqueId': '0xaf0dd861843839bea2e945f134ddb917d65888707c42f736834a573a7ef254f4:log:133', 'hash': '0xaf0dd861843839bea2e945f134ddb917d65888707c42f736834a573a7ef254f4', 'from': '0xeb10f3d4bd507ccd7d27a69efbb3e7d20c33cc28', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T03:57:45.000Z'}}, {'blockNum': '0x62ca69', 'uniqueId': '0x59196c8e0448d1fb0fb60f29e430b983759cd57e3ded4c53015a4f54a490fb61:log:114', 'hash': '0x59196c8e0448d1fb0fb60f29e430b983759cd57e3ded4c53015a4f54a490fb61', 'from': '0xf9040ef292fa301f4be0a3d32ad0b108b687bc55', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T03:58:00.000Z'}}, {'blockNum': '0x62cab7', 'uniqueId': '0x054b34ce7fcac9cd60d6503f2f08cbb06d9ec3c21667fad8d955eb59205dbb96:log:32', 'hash': '0x054b34ce7fcac9cd60d6503f2f08cbb06d9ec3c21667fad8d955eb59205dbb96', 'from': '0x8ef634eeddd0f2af6f8237e7908350f8987da710', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 175.98829331903679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x098a54045904704571', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:14:54.000Z'}}, {'blockNum': '0x62cac2', 'uniqueId': '0x0fd53b9a2962fe956ccb90705b25cd637044f9696023f5554a4c4f340914dc49:log:77', 'hash': '0x0fd53b9a2962fe956ccb90705b25cd637044f9696023f5554a4c4f340914dc49', 'from': '0xaafc549118ecb175e2183c28bfd7793138eb56bf', 'to': '0xa7f4f7d0a679189923322749ab94dffa845588ce', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:16:08.000Z'}}, {'blockNum': '0x62cac8', 'uniqueId': '0x85a9bd5ae8b5a656c0e667d293e8826bbaebc1ea01dd3a4f6fa3d9d1bc9782fe:log:1', 'hash': '0x85a9bd5ae8b5a656c0e667d293e8826bbaebc1ea01dd3a4f6fa3d9d1bc9782fe', 'from': '0x9e20794926c3f2eb262df404d95ee20a02322adf', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1367.675166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4a244e45393167dfff', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:18:37.000Z'}}, {'blockNum': '0x62cb17', 'uniqueId': '0xce9377d596c4bfc254002ec852032ca49ed2bced92b788496b77e8140ce3d0a4:log:8', 'hash': '0xce9377d596c4bfc254002ec852032ca49ed2bced92b788496b77e8140ce3d0a4', 'from': '0xd20936150259c93da423f5a6f27b0826587e1ae9', 'to': '0x788b5b85fb29d0d979747e5a80c2fd68bf9cd5ff', 'value': 3688.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xc7f57826033a1b0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:36:04.000Z'}}, {'blockNum': '0x62cb2c', 'uniqueId': '0xfe05a33c16bfe55f4162da4b7a2c43d37ce14f461698e9f4c37fc351ab15982c:log:239', 'hash': '0xfe05a33c16bfe55f4162da4b7a2c43d37ce14f461698e9f4c37fc351ab15982c', 'from': '0x404ee5b0d530955aefac218036b2f7ae2c40b7ad', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:39:52.000Z'}}, {'blockNum': '0x62cb36', 'uniqueId': '0xa50060238d0c57a6a5d2452dab16e788f1fdd4db406732a797739d91fb3dbaf2:log:84', 'hash': '0xa50060238d0c57a6a5d2452dab16e788f1fdd4db406732a797739d91fb3dbaf2', 'from': '0xaf6c358b0c26ce68150e21c777a4fe8e87e226c5', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:41:56.000Z'}}, {'blockNum': '0x62cb4c', 'uniqueId': '0x86cb1035201cc06df6f7b09aa42cd561d6262fc12bf41e388189bfc487fe548f:log:74', 'hash': '0x86cb1035201cc06df6f7b09aa42cd561d6262fc12bf41e388189bfc487fe548f', 'from': '0xd432a817b1a60868bbe92ac746c25e3aef913ca5', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:19.000Z'}}, {'blockNum': '0x62cb4d', 'uniqueId': '0xae36636aeea8fbc42b72a4e39c0f1234fa1c7b3fd89e0bb7ab20077902b66ff7:log:180', 'hash': '0xae36636aeea8fbc42b72a4e39c0f1234fa1c7b3fd89e0bb7ab20077902b66ff7', 'from': '0x42b24a23ce18d1af71e167779d5ffe66689e3950', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:28.000Z'}}, {'blockNum': '0x62cb4d', 'uniqueId': '0x64375e1b2fc010253b4a6ab8c3125113e3db1fbdc9a029234a5f02689c8ea351:log:181', 'hash': '0x64375e1b2fc010253b4a6ab8c3125113e3db1fbdc9a029234a5f02689c8ea351', 'from': '0x6ec713144860f5c83d1469164cbd68fdeed625fd', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:28.000Z'}}, {'blockNum': '0x62cb4d', 'uniqueId': '0x67187e0ccc9e212659bf87e59b3f9d6a56da551767b7eee8d9e514925ff02cc7:log:209', 'hash': '0x67187e0ccc9e212659bf87e59b3f9d6a56da551767b7eee8d9e514925ff02cc7', 'from': '0xf6e1b356ebf1b125f9dd72e4f6edc9a2165f3a33', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:28.000Z'}}, {'blockNum': '0x62cb4f', 'uniqueId': '0x6d0d1911e2379b7005ceb3e220b8db986411af35983cda90a5041ba16503868f:log:177', 'hash': '0x6d0d1911e2379b7005ceb3e220b8db986411af35983cda90a5041ba16503868f', 'from': '0x68d018a59be4ce231e258322d9a5f9e3aaec1eaa', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:44.000Z'}}, {'blockNum': '0x62cb4f', 'uniqueId': '0x95d8cf0512cf28dfa8f56b2089475790cadece06cad16be01276da2955377b72:log:180', 'hash': '0x95d8cf0512cf28dfa8f56b2089475790cadece06cad16be01276da2955377b72', 'from': '0xcf73c2f39abeac9377e646c4a32a818a08a64b1e', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:44.000Z'}}, {'blockNum': '0x62cb4f', 'uniqueId': '0x238b342d763177808a9a454f8d888ddc6fe40e1e9e6ec1a6ac536853047e2800:log:185', 'hash': '0x238b342d763177808a9a454f8d888ddc6fe40e1e9e6ec1a6ac536853047e2800', 'from': '0x8fa6ddbb5505aa6299c7034e29758fa1198e5f7c', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:44.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0xec718862005da0f1fc2f3e4e95979fde95a257ebd068ca01f679bdc6f1eb7813:log:209', 'hash': '0xec718862005da0f1fc2f3e4e95979fde95a257ebd068ca01f679bdc6f1eb7813', 'from': '0x456131466ab9632fd2e9bdfb774a2e6b5b28c633', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0x1c41aa695a0731e848c6d81b30aceb7c31461c6ae8e3c4cea02e6be24c579971:log:219', 'hash': '0x1c41aa695a0731e848c6d81b30aceb7c31461c6ae8e3c4cea02e6be24c579971', 'from': '0x09e8b58e47317f7a5cfafc4cdff8a2e2a8edef5f', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0xff136d62c6666ac2413a7d20869c2d2c657dac2f77d3fafc9b92bf3224f76e5d:log:222', 'hash': '0xff136d62c6666ac2413a7d20869c2d2c657dac2f77d3fafc9b92bf3224f76e5d', 'from': '0x6cd9774fd55e508b734d2f469f0c25a7913a48c3', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0x5ccd9d770559fc15d8cfecb6be41ef917f1e27cbdc468d50e2e49c4dec37e785:log:230', 'hash': '0x5ccd9d770559fc15d8cfecb6be41ef917f1e27cbdc468d50e2e49c4dec37e785', 'from': '0xea98b1b68778e3aa4e2bdd95b1a13d83037abfe2', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0xa156a9c6d1ced1d617aec2749f177170fce5925391dcc64adbe71fc7fa46a341:log:234', 'hash': '0xa156a9c6d1ced1d617aec2749f177170fce5925391dcc64adbe71fc7fa46a341', 'from': '0x692c51788919d196e02f900ec15e0087eb594a75', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0xeabaa8f8694a63d8894d4f8b3fd93ef58cc89cf3cc870775cb51f0f90973dcd4:log:237', 'hash': '0xeabaa8f8694a63d8894d4f8b3fd93ef58cc89cf3cc870775cb51f0f90973dcd4', 'from': '0x181b98123495dca34a436df15c6e8d1f762d3bba', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0x2077ce27d1651019422b28305de4f6e2a688946a09409729c48160fc034a6f0e:log:243', 'hash': '0x2077ce27d1651019422b28305de4f6e2a688946a09409729c48160fc034a6f0e', 'from': '0xa73350c83720a7df7851a8bc7708ea2aa76dd16e', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0x9fa9a7d7e36e4bb3b0820c50c81d55e63c426f60adce001ead06705b512adb0a:log:247', 'hash': '0x9fa9a7d7e36e4bb3b0820c50c81d55e63c426f60adce001ead06705b512adb0a', 'from': '0x0ff9c926bdfd3ff1fdccd7f235e53042c316cee0', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0x7f05db10c8dc8aef7287235eaf632df6c9d856371a3c5d38e229ca3315016d08:log:251', 'hash': '0x7f05db10c8dc8aef7287235eaf632df6c9d856371a3c5d38e229ca3315016d08', 'from': '0x5251d6b1c60d06d0f16aaa1527b7dbdc706635a2', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0xc79be74cb79e6360de8117bda0eccc6e245dd00f00ca50be5604638277b104bf:log:254', 'hash': '0xc79be74cb79e6360de8117bda0eccc6e245dd00f00ca50be5604638277b104bf', 'from': '0x3c4e4f5f863696840d752f7f0d5c7fdb48705c56', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0x492f0afa1b89507dd7c0a809e11e7a14d6ae2fe1b1f301d1bfcfe66d7c993d9a:log:255', 'hash': '0x492f0afa1b89507dd7c0a809e11e7a14d6ae2fe1b1f301d1bfcfe66d7c993d9a', 'from': '0x14a77f12913f48ca2b8bd829e7bb72cb3acbfa7e', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0xe0ef3cb1cd82b3b348db5defcb3c5d387992c6beed99da69dd042dbcb5895db3:log:260', 'hash': '0xe0ef3cb1cd82b3b348db5defcb3c5d387992c6beed99da69dd042dbcb5895db3', 'from': '0x13ab35de2911e0b3cfab4c2a36cd207561ee1142', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0x2b511bed51c41424c28887d1900eefd48c636b506f0342444bdfd5d6463ebb03:log:266', 'hash': '0x2b511bed51c41424c28887d1900eefd48c636b506f0342444bdfd5d6463ebb03', 'from': '0x83170f97cceb3e9b14101d1c1eb85e845e83a9bc', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb5b', 'uniqueId': '0x718a2c20bdbf4ebad8f010fa5ebc4ccfd05af3b4c7d63a8f2963823e16d92f44:log:165', 'hash': '0x718a2c20bdbf4ebad8f010fa5ebc4ccfd05af3b4c7d63a8f2963823e16d92f44', 'from': '0x8a84f199fad22a21be25f1d2fb5b17c3b1466727', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:50:18.000Z'}}, {'blockNum': '0x62cb5c', 'uniqueId': '0x452f4ed3afd2546a6f70ae2061856d3f59a3176a4eb740136187f4b65b42989b:log:167', 'hash': '0x452f4ed3afd2546a6f70ae2061856d3f59a3176a4eb740136187f4b65b42989b', 'from': '0xdef37a840ca6758e42149c54f8df63553bb0e871', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:50:26.000Z'}}, {'blockNum': '0x62cb5c', 'uniqueId': '0x6382638d8fe3a007877ff44d468c8112f8a499698424f38e70ebef71421ee2f4:log:174', 'hash': '0x6382638d8fe3a007877ff44d468c8112f8a499698424f38e70ebef71421ee2f4', 'from': '0xf408ff8aa32f69828c7a4d47e43068e8e67a69b2', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:50:26.000Z'}}, {'blockNum': '0x62cb5c', 'uniqueId': '0x7fe13bde1e9e5b237465d0945923999970846d0193c491579cebf60e553cbebe:log:186', 'hash': '0x7fe13bde1e9e5b237465d0945923999970846d0193c491579cebf60e553cbebe', 'from': '0x85cd3ecffbd9c8982de2160ec27b922c6d223a3a', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:50:26.000Z'}}, {'blockNum': '0x62cb5c', 'uniqueId': '0x6e5daaee12d92aac98ffb708b056b9dd87e4fed6e01997347048141f66289d86:log:213', 'hash': '0x6e5daaee12d92aac98ffb708b056b9dd87e4fed6e01997347048141f66289d86', 'from': '0xa40fdcea03d93049fe0662f3cc7c51ba25cf776e', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:50:26.000Z'}}, {'blockNum': '0x62cb61', 'uniqueId': '0x46ab8a27e22598afd487d762ba428b5df2ab40e2a54fe4c0f9e67792692cc077:log:120', 'hash': '0x46ab8a27e22598afd487d762ba428b5df2ab40e2a54fe4c0f9e67792692cc077', 'from': '0x5fcbbaec05fbb0aad98654eb872cc5ccceb8cde9', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:51:35.000Z'}}, {'blockNum': '0x62cb61', 'uniqueId': '0xd901c86403e69a60a678f080dbc65e77d23de9156af211e411bdaaa3087f04d5:log:168', 'hash': '0xd901c86403e69a60a678f080dbc65e77d23de9156af211e411bdaaa3087f04d5', 'from': '0xdd4c34ba268bb7805e3331a14a7b6f48fa2dedef', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:51:35.000Z'}}, {'blockNum': '0x62cb6a', 'uniqueId': '0x8e875b7ddae02b3eff641e7ed131b8c042c4ed76be79ea628b357c6b53bc6b2c:log:43', 'hash': '0x8e875b7ddae02b3eff641e7ed131b8c042c4ed76be79ea628b357c6b53bc6b2c', 'from': '0x788b5b85fb29d0d979747e5a80c2fd68bf9cd5ff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3688.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xc7f57826033a1b0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:54:34.000Z'}}, {'blockNum': '0x62cbfe', 'uniqueId': '0xd65becb7ac9a448e86207b2b19cb73aaa3a05e3ec39ca7a0d9ba7320d91223e2:log:168', 'hash': '0xd65becb7ac9a448e86207b2b19cb73aaa3a05e3ec39ca7a0d9ba7320d91223e2', 'from': '0x8466593551f9328623e8b3d5e2d3a61cd32ba6e5', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T05:32:33.000Z'}}, {'blockNum': '0x62cbff', 'uniqueId': '0xd628de8b30916eb3dd32d643bf7e8f8785fa06afed33e5e0dd4cabd4d5db35f8:log:168', 'hash': '0xd628de8b30916eb3dd32d643bf7e8f8785fa06afed33e5e0dd4cabd4d5db35f8', 'from': '0x170d6cc78ddac2cf0cbdf34cd262977ddae42a96', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T05:32:54.000Z'}}, {'blockNum': '0x62cc61', 'uniqueId': '0x1130ceefa80f367d36902fc55caf18db92dd24dbbe88900f509c014a17aef567:log:199', 'hash': '0x1130ceefa80f367d36902fc55caf18db92dd24dbbe88900f509c014a17aef567', 'from': '0x9cacfe4bdf865c8ee125e41b96bcc7c59ff450ef', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T05:58:33.000Z'}}, {'blockNum': '0x62cc70', 'uniqueId': '0x5062e8395c0b22f7b67ef705e8e0bbee5d30475f5f1f0ffa44653298f4922520:log:175', 'hash': '0x5062e8395c0b22f7b67ef705e8e0bbee5d30475f5f1f0ffa44653298f4922520', 'from': '0xba30ed1cf5a4e341c3f59b07f4fce3eaacaeffc6', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T06:01:28.000Z'}}, {'blockNum': '0x62cd71', 'uniqueId': '0xba47c388dea2472911fc90f15f90638121a5514b67e9a2510cee658cb0596900:log:151', 'hash': '0xba47c388dea2472911fc90f15f90638121a5514b67e9a2510cee658cb0596900', 'from': '0x09c4c337a057699579b147afd1b98658a60b11c5', 'to': '0xe3fdc85610dbe3df3ddcb006f1425a79dd893640', 'value': 750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x28a857425466f8003c', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:00:57.000Z'}}, {'blockNum': '0x62cd76', 'uniqueId': '0x301fbe7051ebd0ee4951921685aa3ffedd82af839985ea710ab8fc582721e8db:log:21', 'hash': '0x301fbe7051ebd0ee4951921685aa3ffedd82af839985ea710ab8fc582721e8db', 'from': '0xae630c3ba15023b5b1ce8beb09e8f638a743965a', 'to': '0x4b50abcb8a15b9fc55f2f590abebc8fd9e15430b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:01:44.000Z'}}, {'blockNum': '0x62cd7a', 'uniqueId': '0xb58120cb7eb43918fabf3eaf6d707d0ed023c067cdf9a8684181f2248b397a6a:log:16', 'hash': '0xb58120cb7eb43918fabf3eaf6d707d0ed023c067cdf9a8684181f2248b397a6a', 'from': '0x4b07a069f6239a566990a98a4af29b039dd2ada3', 'to': '0xa7f4f7d0a679189923322749ab94dffa845588ce', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:02:31.000Z'}}, {'blockNum': '0x62cd8c', 'uniqueId': '0x3fa235d5f8ba1843a6fc7416b184e0d515a8a820f1fcb7bfac13c7002817ab07:log:146', 'hash': '0x3fa235d5f8ba1843a6fc7416b184e0d515a8a820f1fcb7bfac13c7002817ab07', 'from': '0x1bd9eb1ff8fa8e3766be38466e2fc7b8e1d067b9', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:06:09.000Z'}}, {'blockNum': '0x62cd8d', 'uniqueId': '0xd622c615d00f168deaab7f91813f9486abc316d6094f50189932b324f89d0378:log:118', 'hash': '0xd622c615d00f168deaab7f91813f9486abc316d6094f50189932b324f89d0378', 'from': '0x7247cb260876de3aa9194b7291a6a47f6c63acff', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:06:21.000Z'}}, {'blockNum': '0x62cd9a', 'uniqueId': '0xfa1c5240b5632902997a086c1e62a6c99934eeb003d72fd38a1316d75af96251:log:102', 'hash': '0xfa1c5240b5632902997a086c1e62a6c99934eeb003d72fd38a1316d75af96251', 'from': '0xa73b2740d00a691f19d9f011c8a35a9bd77ccf8a', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:10:22.000Z'}}, {'blockNum': '0x62cd9f', 'uniqueId': '0xe0a1ba54def2bb9e39e5827a03dd1087806eba42c30b04e1a89c300e4bec3e21:log:152', 'hash': '0xe0a1ba54def2bb9e39e5827a03dd1087806eba42c30b04e1a89c300e4bec3e21', 'from': '0x56562dfb8bc53da973b93f0e3dc93ec298aa7826', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:11:16.000Z'}}, {'blockNum': '0x62cda1', 'uniqueId': '0x7a140ba5d5ada44b18762bc335c3f48dbf9542dcdecccd70ead6c7304f4d119d:log:70', 'hash': '0x7a140ba5d5ada44b18762bc335c3f48dbf9542dcdecccd70ead6c7304f4d119d', 'from': '0xe3274f175f7732196759933cc54b0033892286d6', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:11:42.000Z'}}, {'blockNum': '0x62cdaa', 'uniqueId': '0x81d414f1ec38139fca5c3720c1efdf91391ab7b85f2f637f992a894f4b1d605c:log:148', 'hash': '0x81d414f1ec38139fca5c3720c1efdf91391ab7b85f2f637f992a894f4b1d605c', 'from': '0xae9bca307cb6f9bf30ab91c8abada601feb65bb5', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:13:46.000Z'}}, {'blockNum': '0x62cdbf', 'uniqueId': '0x8beebec3b0e0de54f55a0b7cade6cfcaeeb0be090e3527538f1b3389360bebb1:log:18', 'hash': '0x8beebec3b0e0de54f55a0b7cade6cfcaeeb0be090e3527538f1b3389360bebb1', 'from': '0xe3fdc85610dbe3df3ddcb006f1425a79dd893640', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x28a857425466f8003c', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:19:35.000Z'}}, {'blockNum': '0x62cdc0', 'uniqueId': '0x0d920905d44a3a0c20b94b2d61ee2f9ac9468ae422d0bb9a351400c0516c45ad:log:104', 'hash': '0x0d920905d44a3a0c20b94b2d61ee2f9ac9468ae422d0bb9a351400c0516c45ad', 'from': '0x6487e120100da679751a400bf63d376c0eddf5db', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:19:54.000Z'}}, {'blockNum': '0x62cdc3', 'uniqueId': '0x38fd42aed717bb44eb33b371e747e5c387390e8a68acefc9fe94c499e0fe307b:log:59', 'hash': '0x38fd42aed717bb44eb33b371e747e5c387390e8a68acefc9fe94c499e0fe307b', 'from': '0xa61f3b0ea2864bc2c5251da59cfb000eb5c3b2ff', 'to': '0xf087cb80f55130e46660a56e42762beef64088c5', 'value': 60, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0340aad21b3b700000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:20:41.000Z'}}, {'blockNum': '0x62cdca', 'uniqueId': '0xa75f252474a2bcc9debbddca6210dff98121a7939c80ba2a558f5cc5ce112020:log:151', 'hash': '0xa75f252474a2bcc9debbddca6210dff98121a7939c80ba2a558f5cc5ce112020', 'from': '0x5ad702b70a9fb55538b8f8dc4b5e6fd8e38d0572', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:21:39.000Z'}}, {'blockNum': '0x62cdcb', 'uniqueId': '0x1abd87c5251c148273b5a9b9ce21f6b531da04cf87b39fbd2d59145ca52558c6:log:130', 'hash': '0x1abd87c5251c148273b5a9b9ce21f6b531da04cf87b39fbd2d59145ca52558c6', 'from': '0x66bf0d8a4cbba13a841441b983b971a082894634', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:22:00.000Z'}}, {'blockNum': '0x62cdd3', 'uniqueId': '0x076579152b75bcdfcb277c726098a4c0bdadd5550dddd7f7ec78200e0e383436:log:196', 'hash': '0x076579152b75bcdfcb277c726098a4c0bdadd5550dddd7f7ec78200e0e383436', 'from': '0xe0f30af507464c2615c7541d2129fd9b503b3a41', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:23:51.000Z'}}, {'blockNum': '0x62cdd9', 'uniqueId': '0x305d60f3754be42cd4d9ea06810053a63dfa4340fcb5cc2b9dc6f68781ac6c1f:log:186', 'hash': '0x305d60f3754be42cd4d9ea06810053a63dfa4340fcb5cc2b9dc6f68781ac6c1f', 'from': '0x7f29fecca6e9cb9fc8d512b79b3ca40d01740e3e', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:24:39.000Z'}}, {'blockNum': '0x62cdfa', 'uniqueId': '0xf136308887f2aa7bac71bf11692f27353c340f295a6564d28847413fee07f17f:log:105', 'hash': '0xf136308887f2aa7bac71bf11692f27353c340f295a6564d28847413fee07f17f', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xcf4e77a9c99d7b07aff272e59428f1e8fb1af197', 'value': 32.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01bf47f63cf6d70000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:32:09.000Z'}}, {'blockNum': '0x62cf12', 'uniqueId': '0x5bd2a09ec24583d35f1eff1fb6c90fe224a1e9eb9f51439d9140a76d42e91f1d:log:89', 'hash': '0x5bd2a09ec24583d35f1eff1fb6c90fe224a1e9eb9f51439d9140a76d42e91f1d', 'from': '0x35eacf4af3670e566a74fe8669e6a1f108cd7a49', 'to': '0x17cd376dba5fb8403676855b5e20a74f27e61bec', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T08:35:36.000Z'}}, {'blockNum': '0x62cf66', 'uniqueId': '0x6c4e8aa7fc47932978edd7d90923b9fc01b5cc86101e57932515451d25dd4c3b:log:5', 'hash': '0x6c4e8aa7fc47932978edd7d90923b9fc01b5cc86101e57932515451d25dd4c3b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x77476dabfbb1e73e1f7783e60386200b88f5ad06', 'value': 1083.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3ab86b74f5df200000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T08:55:13.000Z'}}, {'blockNum': '0x62cffb', 'uniqueId': '0xdfb6e3168349f269fb8a6261230c62aa2e5180ea507d6d8a483fc55d9d651187:log:52', 'hash': '0xdfb6e3168349f269fb8a6261230c62aa2e5180ea507d6d8a483fc55d9d651187', 'from': '0xf4ff63af04d0ba0cef0ee98c288e41f6c4f122d1', 'to': '0x21c628776232cdc6356aaed0f0a749e20858ee1a', 'value': 211.54541519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0b77c84a4cb6795c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T09:30:48.000Z'}}, {'blockNum': '0x62d05e', 'uniqueId': '0x7a76d3bd6d1901f238526774a239245e448a6139e9e41b63813100a233d2d5af:log:81', 'hash': '0x7a76d3bd6d1901f238526774a239245e448a6139e9e41b63813100a233d2d5af', 'from': '0x21c628776232cdc6356aaed0f0a749e20858ee1a', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 211.54541519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0b77c84a4cb6795c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T09:51:35.000Z'}}, {'blockNum': '0x62d102', 'uniqueId': '0x540afbcc74ed29f61ff97805ab342e0d56ed85ac80586f28852acf858abe50d2:log:67', 'hash': '0x540afbcc74ed29f61ff97805ab342e0d56ed85ac80586f28852acf858abe50d2', 'from': '0xca0ace22d6cc5aed01e3c98483b11e401f36299d', 'to': '0xa7f4f7d0a679189923322749ab94dffa845588ce', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T10:27:41.000Z'}}, {'blockNum': '0x62d1f8', 'uniqueId': '0x90ebd169b5adad8f559f116b7f3b5b57b003f9e0842f8f854ac001a060af2f35:log:86', 'hash': '0x90ebd169b5adad8f559f116b7f3b5b57b003f9e0842f8f854ac001a060af2f35', 'from': '0x1cc05be4d3c74653fae1b857b9028f4604854bb0', 'to': '0x4d21bd9db123ed09f125f30057a17003b2751a7c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T11:24:37.000Z'}}, {'blockNum': '0x62d2b7', 'uniqueId': '0xdc0858719b8ea5236231d7a55806bbdfee09a4b005fd14c930fed3db43b268fc:log:0', 'hash': '0xdc0858719b8ea5236231d7a55806bbdfee09a4b005fd14c930fed3db43b268fc', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1550d41be3651686e1aeeea073d8d403d0bd2e30', 'value': 638.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2298cddeabe64c0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T12:07:05.000Z'}}, {'blockNum': '0x62d322', 'uniqueId': '0xf21a264b2c02e2e928424c2aecf1b686c930007882c96615619fd9d007074d19:log:15', 'hash': '0xf21a264b2c02e2e928424c2aecf1b686c930007882c96615619fd9d007074d19', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xe1edbbe047ace1f791489e2a1f04ac6476ebc988', 'value': 2200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x77432217e683600000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T12:34:41.000Z'}}, {'blockNum': '0x62d349', 'uniqueId': '0x404b4d8331886248d52b64148b4199fa534d4b9722647d4920f16968ad7677c4:log:17', 'hash': '0x404b4d8331886248d52b64148b4199fa534d4b9722647d4920f16968ad7677c4', 'from': '0xe1edbbe047ace1f791489e2a1f04ac6476ebc988', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x77432217e683600000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T12:44:45.000Z'}}, {'blockNum': '0x62d42f', 'uniqueId': '0xd49ea03f17d3a63342f7c655d51afb9993ba9d6819e1dd29fa68f201d29e99da:log:7', 'hash': '0xd49ea03f17d3a63342f7c655d51afb9993ba9d6819e1dd29fa68f201d29e99da', 'from': '0xa7f4f7d0a679189923322749ab94dffa845588ce', 'to': '0x162c3cda1de326bfed4c0264a2450da359157f3d', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T13:40:36.000Z'}}, {'blockNum': '0x62d46e', 'uniqueId': '0x8739ab00984df58734b6aa7449a604c87ca463f059f7bc3638ad10fed7127c3b:log:102', 'hash': '0x8739ab00984df58734b6aa7449a604c87ca463f059f7bc3638ad10fed7127c3b', 'from': '0x4c4dc8afd6af7e691d16871d61ede9f868e08de9', 'to': '0x5ced21efb2f2e7c45d9093275dc62b9fb7870e5c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T13:53:48.000Z'}}, {'blockNum': '0x62d472', 'uniqueId': '0xc88e06920a60df106469a45e9de84c5997f80b9bb2484892f6eb33fee6672185:log:6', 'hash': '0xc88e06920a60df106469a45e9de84c5997f80b9bb2484892f6eb33fee6672185', 'from': '0x162c3cda1de326bfed4c0264a2450da359157f3d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T13:54:20.000Z'}}, {'blockNum': '0x62d4fd', 'uniqueId': '0x3f4bc98c7a6ea7aeddb5820d1648f45483fff5841ff6d4682bc722a8988bb024:log:78', 'hash': '0x3f4bc98c7a6ea7aeddb5820d1648f45483fff5841ff6d4682bc722a8988bb024', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xe1edbbe047ace1f791489e2a1f04ac6476ebc988', 'value': 2200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x77432217e683600000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T14:22:56.000Z'}}, {'blockNum': '0x62d52a', 'uniqueId': '0x12b64b937283c5bdba74406385576b40610a0de9404cec2f362c109bacf0e3b6:log:6', 'hash': '0x12b64b937283c5bdba74406385576b40610a0de9404cec2f362c109bacf0e3b6', 'from': '0xe1edbbe047ace1f791489e2a1f04ac6476ebc988', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x77432217e683600000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T14:34:18.000Z'}}, {'blockNum': '0x62d55a', 'uniqueId': '0x8dd92e626765abbf81e8143c34ddc84967089645284c045d624e936a4448fedb:log:1', 'hash': '0x8dd92e626765abbf81e8143c34ddc84967089645284c045d624e936a4448fedb', 'from': '0xc8f33a3833f532241e8d0598b2387355688d39c3', 'to': '0x3c56278cb1ab1c5893471a561b1d23b73d0b6b1c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T14:44:41.000Z'}}, {'blockNum': '0x62d5d8', 'uniqueId': '0x7bf812501573611a030c8b225b367bcf004b3496514d600f4b1a3cb7e9623d57:log:94', 'hash': '0x7bf812501573611a030c8b225b367bcf004b3496514d600f4b1a3cb7e9623d57', 'from': '0x4b6703b85936706a28879e5705eed8a4dcf176d9', 'to': '0xddab07811727d1049f9fe69c4d7f2a453591d090', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T15:16:58.000Z'}}, {'blockNum': '0x62d65b', 'uniqueId': '0x11eb13d4d240b25455722d6025587e61322a4810412a43ba20a494f53995668f:log:16', 'hash': '0x11eb13d4d240b25455722d6025587e61322a4810412a43ba20a494f53995668f', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x83cea1ffc8010d0ebcb7e8eca0bf3c5a70dfb7bc', 'value': 104.3102161063436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05a79854e3b6d706cd', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T15:52:38.000Z'}}, {'blockNum': '0x62d6b3', 'uniqueId': '0x13cba09a1f0b71561c0516ffff2f40bebd8ee97b2a02b1eec246b0f6a5fee887:log:161', 'hash': '0x13cba09a1f0b71561c0516ffff2f40bebd8ee97b2a02b1eec246b0f6a5fee887', 'from': '0x5fb94f778835580ce1891077c568808301cc3da8', 'to': '0xfd615d01836040c3b5c57f1fce07628f393968f0', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T16:14:08.000Z'}}, {'blockNum': '0x62d6bf', 'uniqueId': '0xb2a76a65d3628ef294f2a8c4f5dfd144ffa2d86158cc6e3c3aa63dd1241b1b77:log:106', 'hash': '0xb2a76a65d3628ef294f2a8c4f5dfd144ffa2d86158cc6e3c3aa63dd1241b1b77', 'from': '0x543d399d8cb25e3e119b0baf41543f66e2af56f3', 'to': '0xd3d50a44743fb5bdc03b51c383dfeacab2f4c067', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T16:16:20.000Z'}}, {'blockNum': '0x62d6d8', 'uniqueId': '0x4c571e46c7fdb79e60ec04bfa06efe24ef9ca947c45a071f52d9f7330c49e24a:log:53', 'hash': '0x4c571e46c7fdb79e60ec04bfa06efe24ef9ca947c45a071f52d9f7330c49e24a', 'from': '0x83cea1ffc8010d0ebcb7e8eca0bf3c5a70dfb7bc', 'to': '0xa32a20138c2ec37068ceec2acaeb7c2692da5156', 'value': 104.31021611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05a79854e490c74c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T16:22:29.000Z'}}, {'blockNum': '0x62d6fb', 'uniqueId': '0xc788326f42dcad73de9d7b9cbd50ca210e488face15006a8db499949b4871814:log:16', 'hash': '0xc788326f42dcad73de9d7b9cbd50ca210e488face15006a8db499949b4871814', 'from': '0xe32c17795dfebf4e2a3bd7cd2b3dab26f5500e95', 'to': '0x575b5c11ef956e03f9317eedab1a23d4ae1cf04b', 'value': 339.542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x126817820785af0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T16:34:09.000Z'}}, {'blockNum': '0x62d72b', 'uniqueId': '0xd569719ccda7c8c1369ab63c000d9506335ce505de9791d07848621a7c52d724:log:30', 'hash': '0xd569719ccda7c8c1369ab63c000d9506335ce505de9791d07848621a7c52d724', 'from': '0xb58f5bc5422cf4799ffa35926c712ff40920e993', 'to': '0xbfb28f4735ea3a978de47de90ce9e069e4596798', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T16:43:30.000Z'}}, {'blockNum': '0x62d72e', 'uniqueId': '0x29a8c49edb02a9e61c4cc929b6cc15381f335f9bbb4bea6667685525a1064838:log:12', 'hash': '0x29a8c49edb02a9e61c4cc929b6cc15381f335f9bbb4bea6667685525a1064838', 'from': '0x575b5c11ef956e03f9317eedab1a23d4ae1cf04b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 339.542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x126817820785af0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T16:43:45.000Z'}}, {'blockNum': '0x62d72e', 'uniqueId': '0x89c3048da3037bd0b35b059257381f8ecbca50fb7d34514df0fa4fb931bd7798:log:20', 'hash': '0x89c3048da3037bd0b35b059257381f8ecbca50fb7d34514df0fa4fb931bd7798', 'from': '0xa32a20138c2ec37068ceec2acaeb7c2692da5156', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 104.31021611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05a79854e490c74c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T16:43:45.000Z'}}, {'blockNum': '0x62d7bd', 'uniqueId': '0x4f54120e18bca01cd60669cfbf8f7b15335f0b75978cb94ca84079e3c35e9113:log:10', 'hash': '0x4f54120e18bca01cd60669cfbf8f7b15335f0b75978cb94ca84079e3c35e9113', 'from': '0xbfb28f4735ea3a978de47de90ce9e069e4596798', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T17:14:19.000Z'}}, {'blockNum': '0x62d891', 'uniqueId': '0xf168ce624765b9567beb10a8d593be1f32155045a2e1ad3546181a658d3bcb5e:log:18', 'hash': '0xf168ce624765b9567beb10a8d593be1f32155045a2e1ad3546181a658d3bcb5e', 'from': '0xbb3a202f1e0815ab6b998eef75d81800f7106ace', 'to': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T18:02:22.000Z'}}, {'blockNum': '0x62d966', 'uniqueId': '0x1bbb190d06f8fc0cc6d6064ecf004c38b26342a19c21bebc321f95d0c4a16021:log:163', 'hash': '0x1bbb190d06f8fc0cc6d6064ecf004c38b26342a19c21bebc321f95d0c4a16021', 'from': '0xe5518369422abe268afdd8cf38f20a546903b60b', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T18:48:45.000Z'}}, {'blockNum': '0x62d97b', 'uniqueId': '0x4851844ad0494171413169a269c44ad3d3df54ae1489cd46352d1dc1f7217590:log:148', 'hash': '0x4851844ad0494171413169a269c44ad3d3df54ae1489cd46352d1dc1f7217590', 'from': '0xb815aed19ab2aa804b1253580fcff31bd2f667ed', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T18:53:33.000Z'}}, {'blockNum': '0x62d986', 'uniqueId': '0xcda2a47a8af65bdd1bcc267236acec4904f886f452934f3ec13503385269ac8b:log:64', 'hash': '0xcda2a47a8af65bdd1bcc267236acec4904f886f452934f3ec13503385269ac8b', 'from': '0xef3999b6eae86800ad73d8a249c053013c4a8cc4', 'to': '0x4b50abcb8a15b9fc55f2f590abebc8fd9e15430b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T18:55:56.000Z'}}, {'blockNum': '0x62d99b', 'uniqueId': '0x1f7f24efa51b550a6b25f5bca20ff4d25e4aeb16920dbfbb761a2182cdd1ce70:log:77', 'hash': '0x1f7f24efa51b550a6b25f5bca20ff4d25e4aeb16920dbfbb761a2182cdd1ce70', 'from': '0xfa6b01e7cf72a7532ecd2e33459a9b5a60454850', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T19:02:24.000Z'}}, {'blockNum': '0x62d9b5', 'uniqueId': '0x686b9f34214a82f8d1693ff4e162663e939162d1304d4ef384748ec17a4345f1:log:59', 'hash': '0x686b9f34214a82f8d1693ff4e162663e939162d1304d4ef384748ec17a4345f1', 'from': '0x84b5f25068b0f243f4ce457b17f528a6e614f626', 'to': '0x2a5239ff3018dd1172834dc352cc83cfd6d0599d', 'value': 42818.29, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09112f2495fa0ca50000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T19:08:25.000Z'}}, {'blockNum': '0x62d9cd', 'uniqueId': '0x11294954f649da104bb2585f8aeb8df0878acfd5fda61bb0956499689e46a659:log:104', 'hash': '0x11294954f649da104bb2585f8aeb8df0878acfd5fda61bb0956499689e46a659', 'from': '0x7c127b340b8deccd6c85594023d0aa1346c27d94', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T19:13:30.000Z'}}, {'blockNum': '0x62d9fa', 'uniqueId': '0x1db608e6a04252de8119d884cc45dafb88c76ef2b6791bec845ba35ac0bbd609:log:86', 'hash': '0x1db608e6a04252de8119d884cc45dafb88c76ef2b6791bec845ba35ac0bbd609', 'from': '0x2a5239ff3018dd1172834dc352cc83cfd6d0599d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42818.29, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09112f2495fa0ca50000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T19:24:07.000Z'}}, {'blockNum': '0x62da11', 'uniqueId': '0xd66c465ce6e032ef56e3d1d292584046db341a0310894cd91f1ffbd0cc28928c:log:139', 'hash': '0xd66c465ce6e032ef56e3d1d292584046db341a0310894cd91f1ffbd0cc28928c', 'from': '0xba2f1f5fb911563e485722358dc14120776ad516', 'to': '0x4b50abcb8a15b9fc55f2f590abebc8fd9e15430b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T19:32:59.000Z'}}, {'blockNum': '0x62da1f', 'uniqueId': '0x8d61151574d2572035ccfc8621575138ed0b39e61f4127b143dd6476eb6ee564:log:110', 'hash': '0x8d61151574d2572035ccfc8621575138ed0b39e61f4127b143dd6476eb6ee564', 'from': '0x8494e5d2d2ebca9dc1e341c10d07ccd3dce99caf', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T19:36:39.000Z'}}, {'blockNum': '0x62da2a', 'uniqueId': '0x651a2565fd5bfb66342b4af215b36469cb29d4ddcc6bd45316a1498e09c79bac:log:122', 'hash': '0x651a2565fd5bfb66342b4af215b36469cb29d4ddcc6bd45316a1498e09c79bac', 'from': '0xec5ed522f950760bbdeb9ea2597b40215f6c3a71', 'to': '0x3bb4204b3d8f8364cd298e437939a6186d679023', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T19:38:40.000Z'}}, {'blockNum': '0x62da88', 'uniqueId': '0x7ccb63f352559040a62b25500e9d59f12b4acbc715fc580cf60732dd283bc034:log:64', 'hash': '0x7ccb63f352559040a62b25500e9d59f12b4acbc715fc580cf60732dd283bc034', 'from': '0x99d2d405e6cf19401bf08783d69d71723ec1a1b8', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T19:59:42.000Z'}}, {'blockNum': '0x62da8c', 'uniqueId': '0x9a7efee8e09ce5ca1a57955020c68caf811a420d1f91bd3d82531a92382b6a85:log:49', 'hash': '0x9a7efee8e09ce5ca1a57955020c68caf811a420d1f91bd3d82531a92382b6a85', 'from': '0x09d61a9b9d266e1e564c52d18ae27cc77e613eee', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:00:15.000Z'}}, {'blockNum': '0x62da92', 'uniqueId': '0x7042ca3105b48f77932c8e8610f8e9a65ec8feb6dfa7349cfe50eb8feaecde69:log:36', 'hash': '0x7042ca3105b48f77932c8e8610f8e9a65ec8feb6dfa7349cfe50eb8feaecde69', 'from': '0x721ee8bd8666b72b8dee9da3a10c61a18bb28d29', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:00:54.000Z'}}, {'blockNum': '0x62daa0', 'uniqueId': '0x77d775201705615d57879e6bb11a45d014f97b7ca064e9cb0a02b4482db05bdf:log:19', 'hash': '0x77d775201705615d57879e6bb11a45d014f97b7ca064e9cb0a02b4482db05bdf', 'from': '0x2b5a5c327d3378cffd28f2db39a7fbda09d47d86', 'to': '0x4b50abcb8a15b9fc55f2f590abebc8fd9e15430b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:03:12.000Z'}}, {'blockNum': '0x62daab', 'uniqueId': '0x08263c031bed55c0959d06039bc9675f3f8cb06d4df9e23adabfbd3d6945dbfb:log:97', 'hash': '0x08263c031bed55c0959d06039bc9675f3f8cb06d4df9e23adabfbd3d6945dbfb', 'from': '0x5c0a31648efc5ca8ddd42fcf1d31d2d97d514f11', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:06:18.000Z'}}, {'blockNum': '0x62dab0', 'uniqueId': '0x1c18a4e6ce97adf4ca65cdb0bd6d7052fd2a0e0263661fb293e52b1fbd9386af:log:117', 'hash': '0x1c18a4e6ce97adf4ca65cdb0bd6d7052fd2a0e0263661fb293e52b1fbd9386af', 'from': '0xabde22cfcb290aa4ffdf1ace2e24688efe0ef86b', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:07:13.000Z'}}, {'blockNum': '0x62dab6', 'uniqueId': '0xb354f9d9fba57cf7d195df9f6120aa8b62995d6bb3a969c631b6afe976d468f6:log:26', 'hash': '0xb354f9d9fba57cf7d195df9f6120aa8b62995d6bb3a969c631b6afe976d468f6', 'from': '0x5953ae3c3fc5beb487758a1544352476fbfb1cff', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:08:01.000Z'}}, {'blockNum': '0x62dac3', 'uniqueId': '0x8be60152f588c53ae4d6928623acd9eff7abdb8fec02de6748f81a4e46f1be45:log:32', 'hash': '0x8be60152f588c53ae4d6928623acd9eff7abdb8fec02de6748f81a4e46f1be45', 'from': '0xd890368d0f5711ab0f50da3f6882f6d60149d62b', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:11:57.000Z'}}, {'blockNum': '0x62dac9', 'uniqueId': '0x9f518de7383edd5972c068019f56983b28583207437ed96b35735d62f79edfc3:log:17', 'hash': '0x9f518de7383edd5972c068019f56983b28583207437ed96b35735d62f79edfc3', 'from': '0x832c495e070772560d166b4352522d4a669abe83', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:13:56.000Z'}}, {'blockNum': '0x62dad3', 'uniqueId': '0xdc25c7bc6eb75977595ccd9cb63b945b65574555b159ac2eef7ef71e29b84de4:log:146', 'hash': '0xdc25c7bc6eb75977595ccd9cb63b945b65574555b159ac2eef7ef71e29b84de4', 'from': '0x0ff050cb53e4fdacf77dc97eb27b667459d866d2', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:16:09.000Z'}}, {'blockNum': '0x62dad7', 'uniqueId': '0xb81fd68829af3556c71cf00918e02b24369e08ea6f69311685360c3c00324ef5:log:17', 'hash': '0xb81fd68829af3556c71cf00918e02b24369e08ea6f69311685360c3c00324ef5', 'from': '0x1279b1b01be2f9c7163c1823446166bc40c90757', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:16:30.000Z'}}, {'blockNum': '0x62dadb', 'uniqueId': '0x41edbd2976e6dfc25b803615335c2b4229da8bcd5689031dc06187553535df43:log:238', 'hash': '0x41edbd2976e6dfc25b803615335c2b4229da8bcd5689031dc06187553535df43', 'from': '0x87b8d5a86ee8514de9dcce69f1c8035d3744ca91', 'to': '0x4b50abcb8a15b9fc55f2f590abebc8fd9e15430b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:16:59.000Z'}}, {'blockNum': '0x62db0c', 'uniqueId': '0xd869508e906efd31cb2e6d8ce69099d478c87dc693edb6887e31ea0d13e907dc:log:23', 'hash': '0xd869508e906efd31cb2e6d8ce69099d478c87dc693edb6887e31ea0d13e907dc', 'from': '0xf0ed5dd72699b52dca452044f130a999f1c0bb5e', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:30:15.000Z'}}, {'blockNum': '0x62db0c', 'uniqueId': '0x7478d62197c75d61ecadb02d01f22687c8f57f8818ea080070e34c43f0308cbc:log:24', 'hash': '0x7478d62197c75d61ecadb02d01f22687c8f57f8818ea080070e34c43f0308cbc', 'from': '0x66a783b40c580502252c6afb50311bcf5ce129a0', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:30:15.000Z'}}, {'blockNum': '0x62db0d', 'uniqueId': '0xcff9f8681a7fdd263a8a125f119c4ed087d687fc6244ee860b302c2ba9cfda4b:log:149', 'hash': '0xcff9f8681a7fdd263a8a125f119c4ed087d687fc6244ee860b302c2ba9cfda4b', 'from': '0x5a568c1f8afc4716ba0e5c1fe1134e13bc060923', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:30:19.000Z'}}, {'blockNum': '0x62db11', 'uniqueId': '0xa12dfcface469e0aa16098bccfd67e2813cf4807066d59eb89b856b2d24366ad:log:25', 'hash': '0xa12dfcface469e0aa16098bccfd67e2813cf4807066d59eb89b856b2d24366ad', 'from': '0x6d0786f523954e48d202e87285f4565404fb10df', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:30:58.000Z'}}, {'blockNum': '0x62db3e', 'uniqueId': '0xf85695ef8186ef19c50f9a946fca3e2c7db6792a700f117a2ab16698f1a327c4:log:0', 'hash': '0xf85695ef8186ef19c50f9a946fca3e2c7db6792a700f117a2ab16698f1a327c4', 'from': '0x1a4d1c8d2d5ec8850c5f735443e0d907cd22d93b', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:41:50.000Z'}}, {'blockNum': '0x62db3e', 'uniqueId': '0x206cb8fa28fdb03dbd226aaa41c7a48888f583605b61deaa7ef9df936bfb9da6:log:54', 'hash': '0x206cb8fa28fdb03dbd226aaa41c7a48888f583605b61deaa7ef9df936bfb9da6', 'from': '0xd999e83fe13fbac3a6235588ddb7b8de45f018be', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:41:50.000Z'}}, {'blockNum': '0x62db4c', 'uniqueId': '0x82ce6460435c22ef07657bc551642c3005811d0f19519ccdabe1db5dc2b5a2f7:log:73', 'hash': '0x82ce6460435c22ef07657bc551642c3005811d0f19519ccdabe1db5dc2b5a2f7', 'from': '0x24626296c1ca987b6fb154a02204e8863d83a13c', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:44:31.000Z'}}, {'blockNum': '0x62db71', 'uniqueId': '0x4e13987a5f0f771247ef1629d7e9ce7ae49da1419579bb1e1cd50c84f890726e:log:43', 'hash': '0x4e13987a5f0f771247ef1629d7e9ce7ae49da1419579bb1e1cd50c84f890726e', 'from': '0x5f7db4866ebc1bc29d3faf0ba5ab5391619ab820', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:51:47.000Z'}}, {'blockNum': '0x62db74', 'uniqueId': '0x90b00293c9c319f465fa3115509b4c242cddb7faa216f9dd96f068fb1b72ca53:log:82', 'hash': '0x90b00293c9c319f465fa3115509b4c242cddb7faa216f9dd96f068fb1b72ca53', 'from': '0xf5871a87c7432a3573c63419c3987e41b80ef2c9', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:52:57.000Z'}}, {'blockNum': '0x62db74', 'uniqueId': '0xbb21343f24c878113df4dfbd89be0b64db3b3c4d43f167624a50339cee6a6c77:log:88', 'hash': '0xbb21343f24c878113df4dfbd89be0b64db3b3c4d43f167624a50339cee6a6c77', 'from': '0xab3eeb2b3cdd3307038b040a9a7b54f86018b11f', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:52:57.000Z'}}, {'blockNum': '0x62db78', 'uniqueId': '0x0658e3189e68792a8ad7e96afdc1a311f08f78a0ac73d029ea474eee3d950120:log:21', 'hash': '0x0658e3189e68792a8ad7e96afdc1a311f08f78a0ac73d029ea474eee3d950120', 'from': '0x89187ccfc2c7ddac50f364179ec9359d6460ad11', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:53:24.000Z'}}, {'blockNum': '0x62db78', 'uniqueId': '0x34d6c93a366fe7752909f097ba958a8803889440e28f0ba6b12091158b26d210:log:40', 'hash': '0x34d6c93a366fe7752909f097ba958a8803889440e28f0ba6b12091158b26d210', 'from': '0x3eac31704e7eb00c4e9436863531a39d8655e6d6', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:53:24.000Z'}}, {'blockNum': '0x62db79', 'uniqueId': '0x08641057edb83a61e939ec5b0526f96e74858a72f6b115deffee27e6ab0ef78e:log:9', 'hash': '0x08641057edb83a61e939ec5b0526f96e74858a72f6b115deffee27e6ab0ef78e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1550d41be3651686e1aeeea073d8d403d0bd2e30', 'value': 7996.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01b179911e5112840000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:53:33.000Z'}}, {'blockNum': '0x62db83', 'uniqueId': '0x5aa40346291382fc284c43652e3bb24976512625c9a96808c8f6e8d58738fd85:log:105', 'hash': '0x5aa40346291382fc284c43652e3bb24976512625c9a96808c8f6e8d58738fd85', 'from': '0x485917da803c32c40ebc293d6158c865494a454c', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:56:44.000Z'}}, {'blockNum': '0x62db87', 'uniqueId': '0x35e932c3e45397c796bf4a1f26c64db64621b0cc2444fc959bb886bc254ca163:log:94', 'hash': '0x35e932c3e45397c796bf4a1f26c64db64621b0cc2444fc959bb886bc254ca163', 'from': '0x4811158737ae5d6792d944ec182278377921a247', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:57:43.000Z'}}, {'blockNum': '0x62db95', 'uniqueId': '0xd02a7d91c7b5de659f6b102a6de0a5b090f5a8a77926842a3b23c480526eae7c:log:86', 'hash': '0xd02a7d91c7b5de659f6b102a6de0a5b090f5a8a77926842a3b23c480526eae7c', 'from': '0xbb6673957ae0b380b369131ac54319165010a346', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:00:55.000Z'}}, {'blockNum': '0x62db9f', 'uniqueId': '0x92de72436f276e08b04163798e1a14502e408436276b416d6dea3c10f33e5f61:log:72', 'hash': '0x92de72436f276e08b04163798e1a14502e408436276b416d6dea3c10f33e5f61', 'from': '0x20af6e8cab165201266c4949c2d01c3783a3dbc4', 'to': '0x4b50abcb8a15b9fc55f2f590abebc8fd9e15430b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:04:59.000Z'}}, {'blockNum': '0x62dbd2', 'uniqueId': '0xad70a6bac39a0a5a6a0b91e67f602b18d848c818302221d539fe8192f6a3cc8c:log:37', 'hash': '0xad70a6bac39a0a5a6a0b91e67f602b18d848c818302221d539fe8192f6a3cc8c', 'from': '0x3067059f860b56dfb9d5313625c4772574852864', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:18:14.000Z'}}, {'blockNum': '0x62dbdd', 'uniqueId': '0xefc1cd8f1e63776b2ffa5bf87aa6e02e884d40d88524294f20d41a2146d2f5d7:log:106', 'hash': '0xefc1cd8f1e63776b2ffa5bf87aa6e02e884d40d88524294f20d41a2146d2f5d7', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x057f66b1e1308fa4259631e33ff202d244c8ad9c', 'value': 92.57909224832888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0504cb01e511c32d3e', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:21:34.000Z'}}, {'blockNum': '0x62dbf3', 'uniqueId': '0xe717d0a194f4a95d716652a58a71a08dc57f0a1b9bb18834dbdc9c41c91ccfdc:log:88', 'hash': '0xe717d0a194f4a95d716652a58a71a08dc57f0a1b9bb18834dbdc9c41c91ccfdc', 'from': '0x11700b0a76370bdb55bec67d03fcd732de5650af', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:25:51.000Z'}}, {'blockNum': '0x62dbfc', 'uniqueId': '0x6b0f9703a93a6dd3274e0aa3fbae4d0e8c67d417a58a9d338e739f8d26c12d44:log:170', 'hash': '0x6b0f9703a93a6dd3274e0aa3fbae4d0e8c67d417a58a9d338e739f8d26c12d44', 'from': '0x7b7bde362c2062b13a10ce89281fa3bd9180c7e6', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:28:41.000Z'}}, {'blockNum': '0x62dbff', 'uniqueId': '0xe4e406091cd80c170164251098067b3ff503afdaca82f98e314058244d4a26d6:log:23', 'hash': '0xe4e406091cd80c170164251098067b3ff503afdaca82f98e314058244d4a26d6', 'from': '0xbd63fc4711eed900ddea1dc8c8994842f509ecee', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:28:58.000Z'}}, {'blockNum': '0x62dc0a', 'uniqueId': '0x5c290ef5bb475abb6f2485c12af9258f7b52d55fb8491870976ce9f148508432:log:45', 'hash': '0x5c290ef5bb475abb6f2485c12af9258f7b52d55fb8491870976ce9f148508432', 'from': '0x3a59926cef39a66cd2b8b69d8dd4c305a01e7d99', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:31:38.000Z'}}, {'blockNum': '0x62dc13', 'uniqueId': '0x99f61dd2c1df6845b8eb428f336445516c9318bdd977c2e7e64c2b83cafe02d0:log:44', 'hash': '0x99f61dd2c1df6845b8eb428f336445516c9318bdd977c2e7e64c2b83cafe02d0', 'from': '0xf8e6c5ae6daf002ecce4d62d18d984fa549aae11', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:33:38.000Z'}}, {'blockNum': '0x62dc19', 'uniqueId': '0x9372bae5d5d7461199e6b6fad278b7c28c7a594583c62bda43484e9d935a4014:log:17', 'hash': '0x9372bae5d5d7461199e6b6fad278b7c28c7a594583c62bda43484e9d935a4014', 'from': '0x30a91dc6009e1bf0f58d35830897689ee50f2fdb', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:34:09.000Z'}}, {'blockNum': '0x62dc48', 'uniqueId': '0x263c3383c73b13a843062aaa7c49ef39635ef58f6d2df83e45c01129d7b998b1:log:29', 'hash': '0x263c3383c73b13a843062aaa7c49ef39635ef58f6d2df83e45c01129d7b998b1', 'from': '0x18a0b0e640546e39bd7470f0012313a3c01e01ad', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:45:10.000Z'}}, {'blockNum': '0x62dc50', 'uniqueId': '0xcefe48f3beb1d5818212acc962aa8868005f9e99ff8594fcee9ac990537d2ff8:log:131', 'hash': '0xcefe48f3beb1d5818212acc962aa8868005f9e99ff8594fcee9ac990537d2ff8', 'from': '0xd732d15a2d13bd72ef6f4040cdbfd0463e3402ae', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:46:49.000Z'}}, {'blockNum': '0x62dc54', 'uniqueId': '0xf17c201bebac7a45eccf10fac0709636378d071b083c630778309c63b6fac4a4:log:21', 'hash': '0xf17c201bebac7a45eccf10fac0709636378d071b083c630778309c63b6fac4a4', 'from': '0xbba5817248ea9c1d67523d582362f1d94f51c4e5', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:47:19.000Z'}}, {'blockNum': '0x62dc84', 'uniqueId': '0xb08a06d0b761e5803a48cceb9c6777e64d51cbc3da9fd3fbc985767ac6061ccd:log:59', 'hash': '0xb08a06d0b761e5803a48cceb9c6777e64d51cbc3da9fd3fbc985767ac6061ccd', 'from': '0xaca630e29e77d52da003ebe0db4e7a2725846f5b', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:57:28.000Z'}}, {'blockNum': '0x62dc9c', 'uniqueId': '0xb4e9831ec4b26ff41799fe59b51292d1d4d977607b334d772e9757f8a9ea0734:log:98', 'hash': '0xb4e9831ec4b26ff41799fe59b51292d1d4d977607b334d772e9757f8a9ea0734', 'from': '0x057f66b1e1308fa4259631e33ff202d244c8ad9c', 'to': '0xb76681435bced9f644c950dc77771eeafea64040', 'value': 5.21780129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x48695aa0cf066400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T22:03:42.000Z'}}, {'blockNum': '0x62dc9d', 'uniqueId': '0xf7a78a9c7e6cda9d7b93da25aeeea0c4d5b673670c60d661f188a5e490148d47:log:32', 'hash': '0xf7a78a9c7e6cda9d7b93da25aeeea0c4d5b673670c60d661f188a5e490148d47', 'from': '0xddd1224d7843588f1b5d04038d2958bd6d71ee02', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T22:03:46.000Z'}}, {'blockNum': '0x62dcab', 'uniqueId': '0x6a72ddbb47fadcabaefa6458da65fdc74bb74797d594e5df4becefc86b7fe7ca:log:78', 'hash': '0x6a72ddbb47fadcabaefa6458da65fdc74bb74797d594e5df4becefc86b7fe7ca', 'from': '0x52f0986a1cd35e2a39732f535d277016ac3fa656', 'to': '0x97c4510b4b6e0a1d3237880529de652c83a2ff1a', 'value': 29.8470808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x019e3621d9da61c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T22:07:39.000Z'}}, {'blockNum': '0x62dcae', 'uniqueId': '0xe2e8ff1e91b98f0ab729bdb5a981cb1d45ce48270c1e74deda2e5dcb2dc34516:log:91', 'hash': '0xe2e8ff1e91b98f0ab729bdb5a981cb1d45ce48270c1e74deda2e5dcb2dc34516', 'from': '0x487babcb2262f1704f88a6d8142496089279d85f', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T22:08:13.000Z'}}, {'blockNum': '0x62dcb4', 'uniqueId': '0x63dba4d5e9a7693e0f6a8e6847f0c8db1e7cdf2f5d5b184da2ae2948e31d2a02:log:71', 'hash': '0x63dba4d5e9a7693e0f6a8e6847f0c8db1e7cdf2f5d5b184da2ae2948e31d2a02', 'from': '0xe93db2d68c5b3eef990daa1185cff18b55cbf3b7', 'to': '0x4b50abcb8a15b9fc55f2f590abebc8fd9e15430b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T22:10:07.000Z'}}, {'blockNum': '0x62dcf6', 'uniqueId': '0x5429dfb90097ec0d35d12a274c78149d38d00f31e05c0e2f5a12e910d7e47fea:log:61', 'hash': '0x5429dfb90097ec0d35d12a274c78149d38d00f31e05c0e2f5a12e910d7e47fea', 'from': '0x9af9f8cdb187d0e009bdd9eb1379b49471c7a854', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T22:24:06.000Z'}}, {'blockNum': '0x62dcf9', 'uniqueId': '0x080b05c4f2d6da0ced01cb230d04088461b00ffe6eaf550c596115f2a95bdc9d:log:85', 'hash': '0x080b05c4f2d6da0ced01cb230d04088461b00ffe6eaf550c596115f2a95bdc9d', 'from': '0x69606bc965a2285b3adb4fc55b53f19a92e602e4', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T22:24:48.000Z'}}, {'blockNum': '0x62dd03', 'uniqueId': '0x4f22ed47928d0bf633ac177b24c4f8427cc0a2ade0c1eefd3b7795fe041859b1:log:36', 'hash': '0x4f22ed47928d0bf633ac177b24c4f8427cc0a2ade0c1eefd3b7795fe041859b1', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x14602492cc123b9a8d96e8fd13fb38b6e9bb3f51', 'value': 41.31458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x023d5adf9db0754000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T22:27:07.000Z'}}, {'blockNum': '0x62dd3d', 'uniqueId': '0xfc4f9074ed9d209b547c67989795686491fc352f7f2581806bf5557e02518ffc:log:0', 'hash': '0xfc4f9074ed9d209b547c67989795686491fc352f7f2581806bf5557e02518ffc', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa1cc65cb829682d36567917809b299a4b6d23a06', 'value': 71.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03dc1936c427d00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T22:37:56.000Z'}}, {'blockNum': '0x62dd55', 'uniqueId': '0x066fdc1149d683eeefb366bd3bf34bf32a65b4a117387d441bf6136de9988db0:log:121', 'hash': '0x066fdc1149d683eeefb366bd3bf34bf32a65b4a117387d441bf6136de9988db0', 'from': '0xb76681435bced9f644c950dc77771eeafea64040', 'to': '0x057f66b1e1308fa4259631e33ff202d244c8ad9c', 'value': 5.2178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4869597475088000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T22:42:38.000Z'}}, {'blockNum': '0x62de85', 'uniqueId': '0x87cf0548dfe65ce6e363d7acd835fd56513699709fcadbfcf5b931088d2b9084:log:41', 'hash': '0x87cf0548dfe65ce6e363d7acd835fd56513699709fcadbfcf5b931088d2b9084', 'from': '0x057f66b1e1308fa4259631e33ff202d244c8ad9c', 'to': '0x9287c9fba96a7161586b66309279fe3aa72067e8', 'value': 2.5740372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x23b8d13210a42000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T23:56:27.000Z'}}]}}
Number of returned transfers: 155
Answer is complete
symbol BRD
group BPG
date 2018-11-13
hour 17:00
exchange binance
Name: 263, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps: 2018-11-13 17:00:00 2018-11-13 05:00:00 2018-11-14 05:00:00
Unix timestamps: 1542081600.0 1542168000.0
Hex Block Numbers: 0x662732 0x663eeb
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x662924', 'uniqueId': '0x63802eba5e4b8f54ef7d3c42041f89348b562d3ad060bf2a2bbedd2ec2985d64:log:92', 'hash': '0x63802eba5e4b8f54ef7d3c42041f89348b562d3ad060bf2a2bbedd2ec2985d64', 'from': '0x2b3aafe496c242cd9b8f092364a5f3b2b80bc58e', 'to': '0xa6ef7aa7dcecc474f67c9810caf3dfaaf6d240d3', 'value': 1243.2218359416095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x43652b38ead496f3ea', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T05:56:40.000Z'}}, {'blockNum': '0x66296a', 'uniqueId': '0xd6015015bc55d0d5bd4fc0e98150b15fc2933bc960ae88838b553c648770076a:log:0', 'hash': '0xd6015015bc55d0d5bd4fc0e98150b15fc2933bc960ae88838b553c648770076a', 'from': '0xa6ef7aa7dcecc474f67c9810caf3dfaaf6d240d3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1243.2218359416095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x43652b38ead496f3ea', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T06:16:19.000Z'}}, {'blockNum': '0x662a98', 'uniqueId': '0x5ceca8c9c464b7c7fc3838fcc01f01a7327e176c0b64841cd24f9e17774ef651:log:42', 'hash': '0x5ceca8c9c464b7c7fc3838fcc01f01a7327e176c0b64841cd24f9e17774ef651', 'from': '0xda61fdda71c206350012212a3df622c6e167aa66', 'to': '0x684702248985765c1b990d884a8eeeca36c50c51', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T07:23:11.000Z'}}, {'blockNum': '0x662ac7', 'uniqueId': '0xe7cf9cac4309e47467cfcef033f9e0c24e316e50325cf306a3cd3f2b78c8eb0f:log:79', 'hash': '0xe7cf9cac4309e47467cfcef033f9e0c24e316e50325cf306a3cd3f2b78c8eb0f', 'from': '0x203dfa75b5fca03a97b0c71a7c41d0b761f07e4c', 'to': '0x9700ceb2f2dd643a7c522d67c4abe217e571acbe', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T07:32:58.000Z'}}, {'blockNum': '0x662b3f', 'uniqueId': '0xf67c741bf3155ccde9647179e32091eb2b0a98523bed4056c9f9e5499172c1dd:log:136', 'hash': '0xf67c741bf3155ccde9647179e32091eb2b0a98523bed4056c9f9e5499172c1dd', 'from': '0xe7bb1fbed8a86f9e46f0f5d25f72fc84c9032501', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 63.031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x036abb188c25a58000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T08:02:58.000Z'}}, {'blockNum': '0x662bd4', 'uniqueId': '0x38753d512969b57ad3c6ceb2b4cce4c21b4d76c699c3a53e3fb6e024e64b4538:log:19', 'hash': '0x38753d512969b57ad3c6ceb2b4cce4c21b4d76c699c3a53e3fb6e024e64b4538', 'from': '0xe041ddfb9406920d073bd304913e62dee33cab0f', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 60, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0340aad21b3b700000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T08:38:41.000Z'}}, {'blockNum': '0x662bdc', 'uniqueId': '0xd7ffac0c03ebf90b409096eec7018927a0b169f8c2e909fea7bdceae565b8501:log:13', 'hash': '0xd7ffac0c03ebf90b409096eec7018927a0b169f8c2e909fea7bdceae565b8501', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xf8c1c268d2a0ccfdbe9b54526d0d0c375eb7f918', 'value': 396.99247852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1585609bdb8e7e3000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T08:40:15.000Z'}}, {'blockNum': '0x662c8f', 'uniqueId': '0xce0c237835b6dd096ca73a1b637ceb56c6a593e50c8d38aa8b02078d0c0ec658:log:13', 'hash': '0xce0c237835b6dd096ca73a1b637ceb56c6a593e50c8d38aa8b02078d0c0ec658', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x83d0257c56a21deb689c6a13b3cca5db5ed0542b', 'value': 90.51758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04e82f0b6d6400c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T09:25:58.000Z'}}, {'blockNum': '0x662da6', 'uniqueId': '0xd13f6c6cb085c4b333fb2dd0648e805a87d96f781577bc81a730a8915f473b59:log:41', 'hash': '0xd13f6c6cb085c4b333fb2dd0648e805a87d96f781577bc81a730a8915f473b59', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x725e231c09b537522ed97465f79120eebb3c58a0', 'value': 184.98734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a07370da00468c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T10:33:25.000Z'}}, {'blockNum': '0x662ed4', 'uniqueId': '0xaa3e7aec0fcb63dc85a1a37d87eb7a231cf53c91af24aa9b2cf7d7640c3b2f25:log:17', 'hash': '0xaa3e7aec0fcb63dc85a1a37d87eb7a231cf53c91af24aa9b2cf7d7640c3b2f25', 'from': '0xd40ed0a85bd57a5ec43fa141306942a0bc44c33f', 'to': '0x5a89cc376cd75d3e8c1a4cf8718ff3f607695dfb', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T11:42:27.000Z'}}, {'blockNum': '0x662eeb', 'uniqueId': '0x13a91ddee6258c74786c3e2ef82195777b5b8ff202a3ae9b0aa7a12e17b346fd:log:44', 'hash': '0x13a91ddee6258c74786c3e2ef82195777b5b8ff202a3ae9b0aa7a12e17b346fd', 'from': '0xf51afa4f64468fe8f51f8fa85557613789c7608b', 'to': '0x17e77d92d07d0d19a5cf861ab21bfdf6f060cfef', 'value': 62.181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x035eef4a0d0a908000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T11:48:10.000Z'}}, {'blockNum': '0x662f11', 'uniqueId': '0x356e0167ad292587ff337a432c9a2014f91bb7165ef9f052a13a380a27d80790:log:77', 'hash': '0x356e0167ad292587ff337a432c9a2014f91bb7165ef9f052a13a380a27d80790', 'from': '0xb7e45b7a1fc88e1763b43b50de7f176ff1542122', 'to': '0xfdcf1317a59198fc6036f42b920b8db4d5f53ea3', 'value': 67.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03a5f9a16de7ca0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T11:57:55.000Z'}}, {'blockNum': '0x662ff3', 'uniqueId': '0xac1a828828b05f43274634c095ac799c074bb0774e1eb4b0e69238ee0b99f5a9:log:54', 'hash': '0xac1a828828b05f43274634c095ac799c074bb0774e1eb4b0e69238ee0b99f5a9', 'from': '0xd536c9cd79a74e5adc06eb380a3d1aa26e290028', 'to': '0xac4768c425f7f01b0dbdb08e6a9051d8dbc7e861', 'value': 23.6015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0147895f343261c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T12:56:39.000Z'}}, {'blockNum': '0x66329f', 'uniqueId': '0x2322c114cbf14922ac97be7a90ee7f2631c1844368425d892fd9c9bf333854f6:log:83', 'hash': '0x2322c114cbf14922ac97be7a90ee7f2631c1844368425d892fd9c9bf333854f6', 'from': '0xfe23fc62374b4511576eb0b7c6ee18c9b8a59212', 'to': '0x02a9ea0448b50e54bc7ef4a2a06678bcdcedcf5f', 'value': 1200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x410d586a20a4bfffd0', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T15:50:07.000Z'}}, {'blockNum': '0x6632a9', 'uniqueId': '0xdf4de3237420adcd2d6370141edd0ed83b515fcb64e444447f14048e014ddb29:log:47', 'hash': '0xdf4de3237420adcd2d6370141edd0ed83b515fcb64e444447f14048e014ddb29', 'from': '0xe535f4a0ad0926dbdac0eaf13906cbba2cc201db', 'to': '0x20605b81cdca1d9cdbcc01ffbaa0b5038f03ea18', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T15:52:16.000Z'}}, {'blockNum': '0x6632ac', 'uniqueId': '0xcaf7a7880c6b365e8cd66c1ba76140240aa57a70fc7b099929bec2a7678bff3f:log:23', 'hash': '0xcaf7a7880c6b365e8cd66c1ba76140240aa57a70fc7b099929bec2a7678bff3f', 'from': '0x02a9ea0448b50e54bc7ef4a2a06678bcdcedcf5f', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 1200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x410d586a20a4bfffd0', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T15:53:10.000Z'}}, {'blockNum': '0x66340f', 'uniqueId': '0x3f530c2d53692843d52df3a12c3e71acf2b52c86264fdc1ee05feab8210a0881:log:69', 'hash': '0x3f530c2d53692843d52df3a12c3e71acf2b52c86264fdc1ee05feab8210a0881', 'from': '0x88a7d2d08d03432ea6e0b1a58075dbaecc5af1d2', 'to': '0x68ebc3366b6b31101360831c6271c856d910882e', 'value': 2927.324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x9eb0c8045f6b960000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T17:12:48.000Z'}}, {'blockNum': '0x663415', 'uniqueId': '0x5012be9288e9cfecadc780c0de318f2f36358958dcb52ec4013ec0ff845d57dd:log:31', 'hash': '0x5012be9288e9cfecadc780c0de318f2f36358958dcb52ec4013ec0ff845d57dd', 'from': '0x68ebc3366b6b31101360831c6271c856d910882e', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2927.324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x9eb0c8045f6b960000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T17:13:37.000Z'}}, {'blockNum': '0x66342e', 'uniqueId': '0x362e6cf7764dfd5c4d6e6b05f68ab4604c543bdf31fc10a6f8a6100bdae0d5bc:log:8', 'hash': '0x362e6cf7764dfd5c4d6e6b05f68ab4604c543bdf31fc10a6f8a6100bdae0d5bc', 'from': '0xbee076c8f5f71915db1d0a5e3e23a1cc4a68ef46', 'to': '0x2f000b5e97d9cde1c72fb9ea11f7d347ec6a044d', 'value': 1133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3d6b88991bd5940000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T17:17:39.000Z'}}, {'blockNum': '0x66343e', 'uniqueId': '0x1df19b1b06e887c2747011abd5044efb89fd48e0c29db7f38ecaf5337384d273:log:44', 'hash': '0x1df19b1b06e887c2747011abd5044efb89fd48e0c29db7f38ecaf5337384d273', 'from': '0x3ab0ac163ad232b0dea746457727ff1f73cafde4', 'to': '0x93788caa63f30dd0f4774d557e56eef7c87a9d79', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T17:21:02.000Z'}}, {'blockNum': '0x663470', 'uniqueId': '0xdc9456681d99717b688c3dfa9434dae604deb538ee377dd4bf3a9c506deffb18:log:17', 'hash': '0xdc9456681d99717b688c3dfa9434dae604deb538ee377dd4bf3a9c506deffb18', 'from': '0x2f000b5e97d9cde1c72fb9ea11f7d347ec6a044d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3d6b88991bd5940000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T17:34:47.000Z'}}, {'blockNum': '0x6634aa', 'uniqueId': '0x6f966f6eccebe75944baccedf649484e20ca07a84c7679d9523d7740481298fa:log:189', 'hash': '0x6f966f6eccebe75944baccedf649484e20ca07a84c7679d9523d7740481298fa', 'from': '0x03410c0fa39abb19f48ad8430834ab488baa4d0d', 'to': '0x59dc8754210ca31d4a4bf59fd1f88715230b42e1', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T17:47:17.000Z'}}, {'blockNum': '0x66351b', 'uniqueId': '0x7889019f8b7afce6caca16fbc61867c6d0974475f2acfb52023c4d903546b5ed:log:7', 'hash': '0x7889019f8b7afce6caca16fbc61867c6d0974475f2acfb52023c4d903546b5ed', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x6944bd16c1938a3fcdc7b821ada3d32b8f093cf6', 'value': 21.63338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x012c39347dcf0a4000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T18:11:16.000Z'}}, {'blockNum': '0x66353e', 'uniqueId': '0xb657a4a42b29ea43aa554a7f22f53004221e11c27e80b0fcebca788b02406c17:log:23', 'hash': '0xb657a4a42b29ea43aa554a7f22f53004221e11c27e80b0fcebca788b02406c17', 'from': '0x20605b81cdca1d9cdbcc01ffbaa0b5038f03ea18', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T18:19:54.000Z'}}, {'blockNum': '0x66354d', 'uniqueId': '0x3bc0bb98eac1912f45f718d901a3afe759d97651a0db32ffb8839fbc9e0d196b:log:170', 'hash': '0x3bc0bb98eac1912f45f718d901a3afe759d97651a0db32ffb8839fbc9e0d196b', 'from': '0x12a50c37c9c81397b51f35ebf9d998360e83824a', 'to': '0xe65178d3601b778f5f1b3c3a99035d0065b93714', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T18:22:01.000Z'}}, {'blockNum': '0x663586', 'uniqueId': '0x81819033ce1fce597ca661b900af196b6a5078d0d1907c857ea76397ec38f5d6:log:56', 'hash': '0x81819033ce1fce597ca661b900af196b6a5078d0d1907c857ea76397ec38f5d6', 'from': '0x3d30add05cd182c220f0d6e6048f0125c986f009', 'to': '0xe8e2eae6827eeebd1a193a5e55d3518c72682932', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac61ffff8', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T18:36:49.000Z'}}, {'blockNum': '0x6635d3', 'uniqueId': '0x34d2527b2f430a0f8493e3c5de27322d3f711295eba349c8de8e84f894d2c16d:log:29', 'hash': '0x34d2527b2f430a0f8493e3c5de27322d3f711295eba349c8de8e84f894d2c16d', 'from': '0xe8e2eae6827eeebd1a193a5e55d3518c72682932', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac61ffff8', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T18:56:50.000Z'}}, {'blockNum': '0x6635e6', 'uniqueId': '0x8135d59d0272c038b177b50e411fea736c4b205a729c92118d0895d91f171c55:log:14', 'hash': '0x8135d59d0272c038b177b50e411fea736c4b205a729c92118d0895d91f171c55', 'from': '0xed33a839535f51b63a60dea180ce95151b48a206', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T18:59:57.000Z'}}, {'blockNum': '0x663631', 'uniqueId': '0x842303e6531ebbcfb206b629e8dd8a73c0cb9a5dd66516f024c8db9929da59c7:log:50', 'hash': '0x842303e6531ebbcfb206b629e8dd8a73c0cb9a5dd66516f024c8db9929da59c7', 'from': '0xf2c57ed90e236fe14b8868afac535d2d40bf98f3', 'to': '0x0362439691095a358960800b24168ce8f85b5a26', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T19:19:08.000Z'}}, {'blockNum': '0x663818', 'uniqueId': '0xad38006565cc768f0723cc1d8f5ed3b1541e0816eb366847d304a6bd2f47794f:log:71', 'hash': '0xad38006565cc768f0723cc1d8f5ed3b1541e0816eb366847d304a6bd2f47794f', 'from': '0xe3c67790646ae6aacf112de9b12008aeddee9029', 'to': '0x037ac968812fd3ee46c3980f1333cd8781821cab', 'value': 53.6015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02e7dec841d019c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T21:17:30.000Z'}}, {'blockNum': '0x66386f', 'uniqueId': '0xae53638bfadec76b7fdca769d7892f9b4b7f5aefe32399a420ad30715637fa85:log:25', 'hash': '0xae53638bfadec76b7fdca769d7892f9b4b7f5aefe32399a420ad30715637fa85', 'from': '0x4768a9c485c46a23dd3d2fc3d48b9f91d181b880', 'to': '0x939b663739608cda27b29abdb121063ac5a2e071', 'value': 2556.794117647059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8a9aa56f86313f6903', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T21:37:01.000Z'}}, {'blockNum': '0x663887', 'uniqueId': '0x2a5e626e7ce43cebac62ef304cf53e1973c7e2827af98ed88ca6075f8cb3ec4e:log:5', 'hash': '0x2a5e626e7ce43cebac62ef304cf53e1973c7e2827af98ed88ca6075f8cb3ec4e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xdb6fbe8c7b97c9572f4f116f6c798fb86c9a1c35', 'value': 567.408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1ec25e29be5ad80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T21:42:34.000Z'}}, {'blockNum': '0x6638ba', 'uniqueId': '0xd34b2fbbb49a5cec061b6f20b0e89bf3a591f9722b397f81a5f3c3c332c41aec:log:12', 'hash': '0xd34b2fbbb49a5cec061b6f20b0e89bf3a591f9722b397f81a5f3c3c332c41aec', 'from': '0x939b663739608cda27b29abdb121063ac5a2e071', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2556.794117647059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8a9aa56f86313f6903', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T21:56:17.000Z'}}, {'blockNum': '0x6638f9', 'uniqueId': '0x7ed57833617822850636d2c3ede20c661ed64fb8db57a2cc8695d0a6039a2c4d:log:1', 'hash': '0x7ed57833617822850636d2c3ede20c661ed64fb8db57a2cc8695d0a6039a2c4d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe5b3f41627fa23a3460bbb3d356906138fe1ddd4', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T22:07:00.000Z'}}, {'blockNum': '0x663900', 'uniqueId': '0x0511d64c74b6ee7ecadf45b608a4ff023796040d4f7a74bcc915a1566a8303c5:log:12', 'hash': '0x0511d64c74b6ee7ecadf45b608a4ff023796040d4f7a74bcc915a1566a8303c5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0dadc599986a21b89b6e0eefecc61ba688763d8d', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T22:09:10.000Z'}}, {'blockNum': '0x6639ca', 'uniqueId': '0xeac85e7aed874b6ab40c66d9794d3bf0c4933b88ce230302c8c65df1aa408ec7:log:4', 'hash': '0xeac85e7aed874b6ab40c66d9794d3bf0c4933b88ce230302c8c65df1aa408ec7', 'from': '0x8958618332df62af93053cb9c535e26462c959b0', 'to': '0x93cf522bcfa85f8ea5268cf55287c477f8959478', 'value': 102.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0588c88a1a9fa10000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T22:51:11.000Z'}}, {'blockNum': '0x663a06', 'uniqueId': '0x8bf09479c6b54efc1236d9ac010c898dc873dd0b66b65f8b67544eb517b05192:log:5', 'hash': '0x8bf09479c6b54efc1236d9ac010c898dc873dd0b66b65f8b67544eb517b05192', 'from': '0x93cf522bcfa85f8ea5268cf55287c477f8959478', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 102.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0588c88a1a9fa10000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T23:04:11.000Z'}}, {'blockNum': '0x663b33', 'uniqueId': '0x4f65100354af9df3a8cd240e6c2e38d61480b751adfaa335eb9d240cf42790c5:log:29', 'hash': '0x4f65100354af9df3a8cd240e6c2e38d61480b751adfaa335eb9d240cf42790c5', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x76d00870b17b08ad9aab41fbdce4fadb383ea425', 'value': 30.48992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a721f4b28e140000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-14T00:10:16.000Z'}}, {'blockNum': '0x663b56', 'uniqueId': '0xc482e389c916d68e29440c838b6d39bc995b49e50100cf16f69559c0f77fe0e4:log:5', 'hash': '0xc482e389c916d68e29440c838b6d39bc995b49e50100cf16f69559c0f77fe0e4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc5f6bb86a40e588e9ded51a3c0f2b92057b29b62', 'value': 1596.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x56891cd870ac0e0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-14T00:18:17.000Z'}}, {'blockNum': '0x663cc7', 'uniqueId': '0xf265bc488da81c31ef57107912480b5c4a923bc7988272bb87a1c3fd8276152e:log:96', 'hash': '0xf265bc488da81c31ef57107912480b5c4a923bc7988272bb87a1c3fd8276152e', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xd3edeb986909b3e6f0ba18cf34b3a33cb7c6f340', 'value': 1500.444446054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5156d981fda06e7c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-14T01:44:02.000Z'}}]}}
Number of returned transfers: 40
Answer is complete
symbol EVX
group BPG
date 2018-11-20
hour 17:00
exchange binance
Name: 264, dtype: object
HERE
Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps: 2018-11-20 17:00:00 2018-11-20 05:00:00 2018-11-21 05:00:00
Unix timestamps: 1542686400.0 1542772800.0
Hex Block Numbers: 0x66cdf8 0x66e592
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x66ce5b', 'uniqueId': '0x425705b1a4b6653f0199cf47c9464ee7043686f9a5e2a6546b893fad733555e3:log:21', 'hash': '0x425705b1a4b6653f0199cf47c9464ee7043686f9a5e2a6546b893fad733555e3', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 7232.987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x044faa8e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T04:23:42.000Z'}}, {'blockNum': '0x66ce5d', 'uniqueId': '0x5b9ea4bcc4ab04f7fd5744be454933fd302b6e982b53b8974e3208b24c575510:log:30', 'hash': '0x5b9ea4bcc4ab04f7fd5744be454933fd302b6e982b53b8974e3208b24c575510', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 13647.954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08228334', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T04:24:06.000Z'}}, {'blockNum': '0x66ce6d', 'uniqueId': '0x353c47908d639c726804a596fa08e9db6539ff54a927e3a7be9cf6d647916b95:log:54', 'hash': '0x353c47908d639c726804a596fa08e9db6539ff54a927e3a7be9cf6d647916b95', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xea05f704a4311fe29d976be9d03625062f04b409', 'value': 6232.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03b710a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T04:28:39.000Z'}}, {'blockNum': '0x66cedb', 'uniqueId': '0x6f56ec5cd4d1b8329280d166e48ee8d36ee700c332dc3f1f04105ffc799d0216:log:39', 'hash': '0x6f56ec5cd4d1b8329280d166e48ee8d36ee700c332dc3f1f04105ffc799d0216', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x376f5819f69e4c141ad30abe7c3f5782d6dc95fa', 'value': 5881.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x038181b8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T04:57:29.000Z'}}, {'blockNum': '0x66cf02', 'uniqueId': '0x36be9b2d2d735d7da40cf6fa3a72e81e52a217a1371a77f8ef5dd512e09f3fcb:log:4', 'hash': '0x36be9b2d2d735d7da40cf6fa3a72e81e52a217a1371a77f8ef5dd512e09f3fcb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 7180.493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0447a802', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T05:04:33.000Z'}}, {'blockNum': '0x66cf0a', 'uniqueId': '0x71f27c5048e61e1509d7a990680b477e000abf8fe631e1b8f841cd0d5ca624a5:log:70', 'hash': '0x71f27c5048e61e1509d7a990680b477e000abf8fe631e1b8f841cd0d5ca624a5', 'from': '0x376f5819f69e4c141ad30abe7c3f5782d6dc95fa', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 12028.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x072b57a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T05:05:53.000Z'}}, {'blockNum': '0x66cf10', 'uniqueId': '0x0abf721844510781f4b2d190be9acf6935271e3ba26dbaca709f4e236d1d9622:log:2', 'hash': '0x0abf721844510781f4b2d190be9acf6935271e3ba26dbaca709f4e236d1d9622', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xff71b0a56724eb805004ca697f7744acb5444d16', 'value': 3283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01f4f230', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T05:07:01.000Z'}}, {'blockNum': '0x66cf1b', 'uniqueId': '0x38ac13f66e3b3096866683ac4918fdf2fe8e82dbf66abe0a4f74cf10d6fca61c:log:82', 'hash': '0x38ac13f66e3b3096866683ac4918fdf2fe8e82dbf66abe0a4f74cf10d6fca61c', 'from': '0xf7392941c268c2d089b82ad7ada3003d41a16763', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 88.3195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0d79fb', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T05:10:37.000Z'}}, {'blockNum': '0x66d096', 'uniqueId': '0xd8a03408bdf69c7f84805942a7d757007fe28e824e4434b8b219eabc5ae4db80:log:46', 'hash': '0xd8a03408bdf69c7f84805942a7d757007fe28e824e4434b8b219eabc5ae4db80', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xea05f704a4311fe29d976be9d03625062f04b409', 'value': 14966.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08ebc488', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T06:40:45.000Z'}}, {'blockNum': '0x66d09e', 'uniqueId': '0x0b2d8b7e905f9fdbf6288e1a430a0a7306f95f78ec4896d94a5b96ed8a24d8d9:log:1', 'hash': '0x0b2d8b7e905f9fdbf6288e1a430a0a7306f95f78ec4896d94a5b96ed8a24d8d9', 'from': '0xfc303465d8ea05434b395f039539cf2bc666541c', 'to': '0xea2579a3b7058b406f5b35fdfbade534c94185a3', 'value': 2278.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x015bb868', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T06:42:00.000Z'}}, {'blockNum': '0x66d09f', 'uniqueId': '0xfb45232d208ff62c2dad38df674a57bb81754039258be8b02f2d0f8388190549:log:117', 'hash': '0xfb45232d208ff62c2dad38df674a57bb81754039258be8b02f2d0f8388190549', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 7180.493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0447a802', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T06:42:36.000Z'}}, {'blockNum': '0x66d0a1', 'uniqueId': '0x8163b69b8ac500e04d6dfef1542bb1726d0fc9ba0fbfc0aaa20fa9e90087e564:log:161', 'hash': '0x8163b69b8ac500e04d6dfef1542bb1726d0fc9ba0fbfc0aaa20fa9e90087e564', 'from': '0xff71b0a56724eb805004ca697f7744acb5444d16', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 6700.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03fe7218', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T06:43:03.000Z'}}, {'blockNum': '0x66d0a9', 'uniqueId': '0x541d353df576f97025b0bbd493b9b2bb392b61ad3a1762ef2e7ca65a104d134d:log:32', 'hash': '0x541d353df576f97025b0bbd493b9b2bb392b61ad3a1762ef2e7ca65a104d134d', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 540, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5265c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T06:44:37.000Z'}}, {'blockNum': '0x66d0c6', 'uniqueId': '0x02df5d040dfda65bcc66dabc735a9d8eda1d17ab592cacdb0e55d14a01e059ee:log:21', 'hash': '0x02df5d040dfda65bcc66dabc735a9d8eda1d17ab592cacdb0e55d14a01e059ee', 'from': '0xea2579a3b7058b406f5b35fdfbade534c94185a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2278.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x015bb868', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T06:51:07.000Z'}}, {'blockNum': '0x66d0e1', 'uniqueId': '0xa9c5ff01d206174919571a0afd2e76fc06e65ee0f0ab9d8880aaac528c771cf1:log:8', 'hash': '0xa9c5ff01d206174919571a0afd2e76fc06e65ee0f0ab9d8880aaac528c771cf1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 7234.903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x044ff566', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T06:58:41.000Z'}}, {'blockNum': '0x66d0e1', 'uniqueId': '0x66fa6cbd8d03bc84ab792b43fc46760622fea3f8bd3a51535d97a846d1918ac0:log:64', 'hash': '0x66fa6cbd8d03bc84ab792b43fc46760622fea3f8bd3a51535d97a846d1918ac0', 'from': '0xc06447b44d2961ed718b087a3e7de1db270eb877', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 135.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x14b4c8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T06:58:41.000Z'}}, {'blockNum': '0x66d0eb', 'uniqueId': '0x09f6d1875f7ca922e4971f5b6b5116166cb5c19eb31f18358f7e5c294b05f2a4:log:37', 'hash': '0x09f6d1875f7ca922e4971f5b6b5116166cb5c19eb31f18358f7e5c294b05f2a4', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 7234.903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x044ff566', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T07:00:06.000Z'}}, {'blockNum': '0x66d105', 'uniqueId': '0xb2692a918bd84cd66a91d4074ab86eabb080d870c58a8465b7aa5f760243698a:log:17', 'hash': '0xb2692a918bd84cd66a91d4074ab86eabb080d870c58a8465b7aa5f760243698a', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 540, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5265c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T07:07:59.000Z'}}, {'blockNum': '0x66d149', 'uniqueId': '0xe68810442fe81c1af235d9b641e05de6e91e8f66037cc3de9ca3c58b8651dbca:log:2', 'hash': '0xe68810442fe81c1af235d9b641e05de6e91e8f66037cc3de9ca3c58b8651dbca', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 1924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01259440', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T07:23:12.000Z'}}, {'blockNum': '0x66d15f', 'uniqueId': '0xb77d84e2283f28f5928d3244b09fac318958270540e623ea7d2622024f9e8ac5:log:6', 'hash': '0xb77d84e2283f28f5928d3244b09fac318958270540e623ea7d2622024f9e8ac5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x02951cf4474c62be118c840c2cf0b47cf4dd6a6d', 'value': 121.4781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12893d', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T07:28:10.000Z'}}, {'blockNum': '0x66d1a3', 'uniqueId': '0x64392179229fb3ca9b677b782e6195eb809c3a8472978a619d08616d12ff4124:log:38', 'hash': '0x64392179229fb3ca9b677b782e6195eb809c3a8472978a619d08616d12ff4124', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01259440', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T07:42:10.000Z'}}, {'blockNum': '0x66d20a', 'uniqueId': '0xbca623cf34a8cf61d390558f126240e6e2752d2e0788c506aacaf4eba8f97556:log:89', 'hash': '0xbca623cf34a8cf61d390558f126240e6e2752d2e0788c506aacaf4eba8f97556', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x16216a0a2f03e695031c7ef6936829215c6a4576', 'value': 8522.5936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x051471d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T08:11:09.000Z'}}, {'blockNum': '0x66d217', 'uniqueId': '0xd79bc132e4a4ef04576772be1cf2d113d578e2e48cbed7d785bc9299157af8e8:log:5', 'hash': '0xd79bc132e4a4ef04576772be1cf2d113d578e2e48cbed7d785bc9299157af8e8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xff71b0a56724eb805004ca697f7744acb5444d16', 'value': 3522, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02196a20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T08:13:47.000Z'}}, {'blockNum': '0x66d2a0', 'uniqueId': '0x383715d8a8728f08e710fa0a82ac6cdd267e7ea23741b2bbc78f8942af10e1c6:log:21', 'hash': '0x383715d8a8728f08e710fa0a82ac6cdd267e7ea23741b2bbc78f8942af10e1c6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 6742.26, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0404c988', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T08:43:20.000Z'}}, {'blockNum': '0x66d2a5', 'uniqueId': '0xa975dcc419abde13eb7409a1d411441c2502803889cc5bdde7131cea4a6cdd85:log:96', 'hash': '0xa975dcc419abde13eb7409a1d411441c2502803889cc5bdde7131cea4a6cdd85', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 6742.26, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0404c988', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T08:44:09.000Z'}}, {'blockNum': '0x66d30c', 'uniqueId': '0x5f5823739832d0e55ca968dea93cde09d5c1b67a3eaddb5c257ed42052a10577:log:51', 'hash': '0x5f5823739832d0e55ca968dea93cde09d5c1b67a3eaddb5c257ed42052a10577', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 4093.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0270adf8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T09:10:59.000Z'}}, {'blockNum': '0x66d323', 'uniqueId': '0xb0f2d3d9892bf76f84e2c4192c613d46267ef482052dc0b97c823e35c840e16f:log:21', 'hash': '0xb0f2d3d9892bf76f84e2c4192c613d46267ef482052dc0b97c823e35c840e16f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x74b4c380831ec85798f8681b9bd67d27a6673422', 'value': 134.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x149588', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T09:16:36.000Z'}}, {'blockNum': '0x66d372', 'uniqueId': '0x3febfc31afd784eda6837ba6f86d029eb148e6c8bd3203afc3db10957f213954:log:57', 'hash': '0x3febfc31afd784eda6837ba6f86d029eb148e6c8bd3203afc3db10957f213954', 'from': '0x74b4c380831ec85798f8681b9bd67d27a6673422', 'to': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'value': 134.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x149588', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T09:38:14.000Z'}}, {'blockNum': '0x66d4a5', 'uniqueId': '0x8b7875cd92b8bdaf92620f198a8e819cd4c799167c31dae66262c6ecbcece430:log:9', 'hash': '0x8b7875cd92b8bdaf92620f198a8e819cd4c799167c31dae66262c6ecbcece430', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 1914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01240da0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T10:51:43.000Z'}}, {'blockNum': '0x66d4a5', 'uniqueId': '0x168e0e5a445cb6251deb782eeb4cd1b3a743745ee0c62a8932aabb751f5828c0:log:11', 'hash': '0x168e0e5a445cb6251deb782eeb4cd1b3a743745ee0c62a8932aabb751f5828c0', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5af140', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T10:51:43.000Z'}}, {'blockNum': '0x66d4d3', 'uniqueId': '0xc1286bee3de09e833aa2870eea6f039094c6af6cfeb5bb0db270b91a43d2320c:log:18', 'hash': '0xc1286bee3de09e833aa2870eea6f039094c6af6cfeb5bb0db270b91a43d2320c', 'from': '0x7ce51bbaaa40ff0ad0e307f142c1ba2e179cf30d', 'to': '0x6510a23768ff9cec13de173a090b737cb386c13c', 'value': 2507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x017e89b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T11:02:18.000Z'}}, {'blockNum': '0x66d4f9', 'uniqueId': '0x07dc224195f8fd681be786b700c5588bcf68e1e1e5ab4557994147833e085baf:log:10', 'hash': '0x07dc224195f8fd681be786b700c5588bcf68e1e1e5ab4557994147833e085baf', 'from': '0x6510a23768ff9cec13de173a090b737cb386c13c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x017e89b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T11:11:05.000Z'}}, {'blockNum': '0x66d4fb', 'uniqueId': '0x87d477242ceee467778722869648c6488cb8b5ed623462eee305ded2e406ee2a:log:3', 'hash': '0x87d477242ceee467778722869648c6488cb8b5ed623462eee305ded2e406ee2a', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01240da0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T11:11:11.000Z'}}, {'blockNum': '0x66d518', 'uniqueId': '0x8020a53ad43b3a870c7f59d1b23813a8cd125d4269dfc3d1a0c0ab1e8043bd79:log:29', 'hash': '0x8020a53ad43b3a870c7f59d1b23813a8cd125d4269dfc3d1a0c0ab1e8043bd79', 'from': '0x39559ce6d0e5cc86d8fb933a1847b69b88eebc7b', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0d6d80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T11:17:10.000Z'}}, {'blockNum': '0x66d52c', 'uniqueId': '0x68961543b1f0f1bebceadfdc1e2c050ed2892cfec7ab9aea29f0c31350d34b4e:log:9', 'hash': '0x68961543b1f0f1bebceadfdc1e2c050ed2892cfec7ab9aea29f0c31350d34b4e', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5af140', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T11:22:42.000Z'}}, {'blockNum': '0x66d564', 'uniqueId': '0xc22e7a0988d7a877ea670c09d98c1232c3d2b8a8fad924ffe854cad2ecbbb5f3:log:89', 'hash': '0xc22e7a0988d7a877ea670c09d98c1232c3d2b8a8fad924ffe854cad2ecbbb5f3', 'from': '0x9cb6247bf9e22da514b1b32acae28c560c73d848', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2d0370', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T11:36:20.000Z'}}, {'blockNum': '0x66d5d1', 'uniqueId': '0x576b7406f0e7e91a57064823e8a877c87425f78af097d379e4f47106e46a086f:log:23', 'hash': '0x576b7406f0e7e91a57064823e8a877c87425f78af097d379e4f47106e46a086f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 6332.757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03c64d52', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T12:03:28.000Z'}}, {'blockNum': '0x66d5d9', 'uniqueId': '0x6c89f55fd9f3d47d946f363bb9314c3bb58e1a4af17ba2183654e33b009ed080:log:26', 'hash': '0x6c89f55fd9f3d47d946f363bb9314c3bb58e1a4af17ba2183654e33b009ed080', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 6332.757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03c64d52', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T12:05:25.000Z'}}, {'blockNum': '0x66d5fd', 'uniqueId': '0x82c1c5f247bacd3dee9c2dcf7d6cc40936f2697a0962a18173651948c1ebc7ce:log:10', 'hash': '0x82c1c5f247bacd3dee9c2dcf7d6cc40936f2697a0962a18173651948c1ebc7ce', 'from': '0x48fd571537fa96664e73f4a1234a6f0f195340e2', 'to': '0xf61d2e526ecea32e0079466cb696e87dce93010f', 'value': 933.6057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x8e74f9', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T12:16:04.000Z'}}, {'blockNum': '0x66d690', 'uniqueId': '0x2750286c64021723aedcd2ad9dea2d0cab49a78f03da4331ba723763b583eee8:log:70', 'hash': '0x2750286c64021723aedcd2ad9dea2d0cab49a78f03da4331ba723763b583eee8', 'from': '0x48fd571537fa96664e73f4a1234a6f0f195340e2', 'to': '0x16216a0a2f03e695031c7ef6936829215c6a4576', 'value': 1159.9901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xb1001d', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T12:51:54.000Z'}}, {'blockNum': '0x66d743', 'uniqueId': '0x187aea7ea8b9cea91de7228d734651ff4f11c1d16fd6164ed79ac91004532913:log:101', 'hash': '0x187aea7ea8b9cea91de7228d734651ff4f11c1d16fd6164ed79ac91004532913', 'from': '0xe9dd0c3a522d3c81df54699b1d9713985c9626b0', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 102.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0fa3e8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T13:32:55.000Z'}}, {'blockNum': '0x66d774', 'uniqueId': '0x8a93626da0d1ee3608381edb09c954b33c0b59de17f1f75e5bc38071cf7f908b:log:2', 'hash': '0x8a93626da0d1ee3608381edb09c954b33c0b59de17f1f75e5bc38071cf7f908b', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x57e400', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T13:41:32.000Z'}}, {'blockNum': '0x66d78e', 'uniqueId': '0x27786d1daeb37793b7c48273448a4352ae41f54e62eebd043bb01fdbfc58eb44:log:0', 'hash': '0x27786d1daeb37793b7c48273448a4352ae41f54e62eebd043bb01fdbfc58eb44', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x015d4610', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T13:47:35.000Z'}}, {'blockNum': '0x66d7e2', 'uniqueId': '0xa04eef774b8e21801e6c1004902552b9b4cb195f4a878bb4da936aec1dec3f96:log:4', 'hash': '0xa04eef774b8e21801e6c1004902552b9b4cb195f4a878bb4da936aec1dec3f96', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x55c120', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T14:08:46.000Z'}}, {'blockNum': '0x66d859', 'uniqueId': '0x62683e24bce99c4fa18fb784a19174b9c1c3539cbd3c702b8b6df667ba2881e7:log:4', 'hash': '0x62683e24bce99c4fa18fb784a19174b9c1c3539cbd3c702b8b6df667ba2881e7', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x515450', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T14:33:59.000Z'}}, {'blockNum': '0x66d8b2', 'uniqueId': '0xf9e1fc5c19756f84c3f64ee1edc8514a2a0ffbca78064b4d9fac39d72b4654ed:log:16', 'hash': '0xf9e1fc5c19756f84c3f64ee1edc8514a2a0ffbca78064b4d9fac39d72b4654ed', 'from': '0xff71b0a56724eb805004ca697f7744acb5444d16', 'to': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'value': 3522, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02196a20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T14:57:08.000Z'}}, {'blockNum': '0x66d8b2', 'uniqueId': '0x8b9fdd876460567585f29b874a4ee420e2e82e58decd181913afbfbb4148a928:log:17', 'hash': '0x8b9fdd876460567585f29b874a4ee420e2e82e58decd181913afbfbb4148a928', 'from': '0x48fd571537fa96664e73f4a1234a6f0f195340e2', 'to': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'value': 912.9258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x8b4d2a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T14:57:08.000Z'}}, {'blockNum': '0x66d8b6', 'uniqueId': '0xaa291c0b1bbc58ed74c43706ad2b3e0bc7228d036cdf160305cb8d172a615c1b:log:20', 'hash': '0xaa291c0b1bbc58ed74c43706ad2b3e0bc7228d036cdf160305cb8d172a615c1b', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'value': 346585.2064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xce94b4a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T14:58:06.000Z'}}, {'blockNum': '0x66d8c5', 'uniqueId': '0xa51dfa823ab1e346ed63f9ffafe34645f8d336999154f007fb13d80cbf36696b:log:34', 'hash': '0xa51dfa823ab1e346ed63f9ffafe34645f8d336999154f007fb13d80cbf36696b', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 5312.584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x032aa2d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T15:01:55.000Z'}}, {'blockNum': '0x66d8ec', 'uniqueId': '0x885a19ee8b6759d0378cc90d0aa1aedc64cc58e58f0e199c1960ad3ad36e7e0b:log:103', 'hash': '0x885a19ee8b6759d0378cc90d0aa1aedc64cc58e58f0e199c1960ad3ad36e7e0b', 'from': '0x134d5f80e5cd47c5fc217a0cffea3e6276885e53', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 12.4423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01e607', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T15:09:38.000Z'}}, {'blockNum': '0x66d960', 'uniqueId': '0xad867303e84fb866d39e53d25812ad41aa786ff06981c73a17ad1a07ac6e32d9:log:44', 'hash': '0xad867303e84fb866d39e53d25812ad41aa786ff06981c73a17ad1a07ac6e32d9', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x015d4610', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T15:41:24.000Z'}}, {'blockNum': '0x66d961', 'uniqueId': '0x5969936e92885cbbc3cbd1af9f648caa8b5a8d483da5090cf13497844a603270:log:8', 'hash': '0x5969936e92885cbbc3cbd1af9f648caa8b5a8d483da5090cf13497844a603270', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xfef970', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T15:41:33.000Z'}}, {'blockNum': '0x66d98b', 'uniqueId': '0x4bc619de292d190ab75230c27ab177410e4c605dee19e6eed4eea5f98df2851b:log:12', 'hash': '0x4bc619de292d190ab75230c27ab177410e4c605dee19e6eed4eea5f98df2851b', 'from': '0x2bfb6549c54f0aa92db07f7f9111d29452b5fdc8', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 208.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1fd858', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T15:50:04.000Z'}}, {'blockNum': '0x66da0e', 'uniqueId': '0x54536d5d3d6240e17d201b533af3ab0b84a9b28883e5b5b82251037f2f66a5d8:log:93', 'hash': '0x54536d5d3d6240e17d201b533af3ab0b84a9b28883e5b5b82251037f2f66a5d8', 'from': '0x5276e896a941b24eb268956a54116b096d093f56', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x100590', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T16:23:12.000Z'}}, {'blockNum': '0x66da29', 'uniqueId': '0x6ac9e903fbbf43f7b1b72e02a34bd8c130c578bb46fa79ae3dcf6463267f444c:log:63', 'hash': '0x6ac9e903fbbf43f7b1b72e02a34bd8c130c578bb46fa79ae3dcf6463267f444c', 'from': '0xa561584ed577664f10252bdcf64bd0513cb88fa0', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 78.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0bf428', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T16:28:51.000Z'}}, {'blockNum': '0x66da89', 'uniqueId': '0xebae6343c26a3916b88a079149db5b1c9a09227164747cfc66cea0205d3f0b99:log:17', 'hash': '0xebae6343c26a3916b88a079149db5b1c9a09227164747cfc66cea0205d3f0b99', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb6b442a2fb19cc40f152e904d91c8ebae6479afe', 'value': 111.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x110b48', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T16:55:13.000Z'}}, {'blockNum': '0x66dacd', 'uniqueId': '0x89e13fbae29a85f06bd03e6777eaad9fac2771230424783430e3fe2106ef2a7e:log:20', 'hash': '0x89e13fbae29a85f06bd03e6777eaad9fac2771230424783430e3fe2106ef2a7e', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 4334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x029550e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T17:10:52.000Z'}}, {'blockNum': '0x66dad1', 'uniqueId': '0x9755e3f4e4a558ee41d5124b3502c5886cc866687c0ed059ece6d9c8c2b58892:log:12', 'hash': '0x9755e3f4e4a558ee41d5124b3502c5886cc866687c0ed059ece6d9c8c2b58892', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014a0c30', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T17:13:01.000Z'}}, {'blockNum': '0x66dad5', 'uniqueId': '0x50bc39f1ce5d2d96cf92907b3160df583ef1fafbb291495d952c512419331fe3:log:62', 'hash': '0x50bc39f1ce5d2d96cf92907b3160df583ef1fafbb291495d952c512419331fe3', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5bb490', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T17:13:40.000Z'}}, {'blockNum': '0x66daf0', 'uniqueId': '0x7aaa2a19f1fc626defcf9ae338fa1ee794332775445be8e09de0659469f0a6ed:log:13', 'hash': '0x7aaa2a19f1fc626defcf9ae338fa1ee794332775445be8e09de0659469f0a6ed', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014a0c30', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T17:21:22.000Z'}}, {'blockNum': '0x66dafd', 'uniqueId': '0x90bbca71198906d0f746f5529be676bca2c396a69fac57e6ad5d224c02f2d356:log:53', 'hash': '0x90bbca71198906d0f746f5529be676bca2c396a69fac57e6ad5d224c02f2d356', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5bb490', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T17:24:24.000Z'}}, {'blockNum': '0x66db31', 'uniqueId': '0xa55716e95d96e7f2c49a07f5104a1247b91fd7eed3df2e91aa371fca3cb6068d:log:10', 'hash': '0xa55716e95d96e7f2c49a07f5104a1247b91fd7eed3df2e91aa371fca3cb6068d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 6529.499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03e4528e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T17:37:17.000Z'}}, {'blockNum': '0x66db55', 'uniqueId': '0xc26cf3c7b4504991398afa89a08181c28f6e03571cf2ef7ae1b2d1ad0dc51579:log:85', 'hash': '0xc26cf3c7b4504991398afa89a08181c28f6e03571cf2ef7ae1b2d1ad0dc51579', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 82920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x316c9680', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T17:42:54.000Z'}}, {'blockNum': '0x66db9b', 'uniqueId': '0x423ede12c69b3bd6428a17279eeffbcda5b77f28712eb9b5a7ac3376a8219077:log:23', 'hash': '0x423ede12c69b3bd6428a17279eeffbcda5b77f28712eb9b5a7ac3376a8219077', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xea05f704a4311fe29d976be9d03625062f04b409', 'value': 16808.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0a04d5a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T17:59:20.000Z'}}, {'blockNum': '0x66db9e', 'uniqueId': '0x210114ec9b1de92407309335f2ac71accfdb031d8f916125f88af14ba060da93:log:76', 'hash': '0x210114ec9b1de92407309335f2ac71accfdb031d8f916125f88af14ba060da93', 'from': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10846.297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0677037a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T18:01:29.000Z'}}, {'blockNum': '0x66dba2', 'uniqueId': '0x8afb36b8dc84dba861731db56133ec0d812ebf6a94860982cbe343e58cd3f44f:log:20', 'hash': '0x8afb36b8dc84dba861731db56133ec0d812ebf6a94860982cbe343e58cd3f44f', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 16808.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0a04d5a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T18:02:06.000Z'}}, {'blockNum': '0x66dba8', 'uniqueId': '0xf8c1e541342de5044fdbdca3dc541ba73a485ce8a4688b5212153012542b19c0:log:22', 'hash': '0xf8c1e541342de5044fdbdca3dc541ba73a485ce8a4688b5212153012542b19c0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 6486.566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03ddc57c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T18:03:51.000Z'}}, {'blockNum': '0x66dbc2', 'uniqueId': '0xb751aaf2c438f110e4cc32df0500b07e87377c9166702c228344eeb035e72748:log:44', 'hash': '0xb751aaf2c438f110e4cc32df0500b07e87377c9166702c228344eeb035e72748', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc0fd5601ef2dbc387c77742ae95f266f313c4265', 'value': 23089.7839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0dc338af', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T18:08:48.000Z'}}, {'blockNum': '0x66dbc2', 'uniqueId': '0x15b61fa7d3204cf3170cfaaacc84f5542faf2d511cb745f6d18a7c00418b7efd:log:51', 'hash': '0x15b61fa7d3204cf3170cfaaacc84f5542faf2d511cb745f6d18a7c00418b7efd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 93187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x378b3530', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T18:08:48.000Z'}}, {'blockNum': '0x66dbc2', 'uniqueId': '0x95f3414383b8dd2a96cedb301c698e1780a5da3bd9091d9582727d92e08a45b6:log:57', 'hash': '0x95f3414383b8dd2a96cedb301c698e1780a5da3bd9091d9582727d92e08a45b6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x55cf5fee6ebfff86b0607e0f91cd4206a4cd50ef', 'value': 111.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x111318', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T18:08:48.000Z'}}, {'blockNum': '0x66dbf3', 'uniqueId': '0x67fcafea5cfeb151badc6ee35155d554552352f43aed52e68d0133a781fa2b10:log:36', 'hash': '0x67fcafea5cfeb151badc6ee35155d554552352f43aed52e68d0133a781fa2b10', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x029550e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T18:21:24.000Z'}}, {'blockNum': '0x66dc05', 'uniqueId': '0x040ad99df847b9c467610207b9639c604ccbb890d4108536187b9b5cde1409df:log:87', 'hash': '0x040ad99df847b9c467610207b9639c604ccbb890d4108536187b9b5cde1409df', 'from': '0x645cbf40bb1b4b31d45a642b683c2391c126568e', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 148.349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x16a2e2', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T18:25:50.000Z'}}, {'blockNum': '0x66dc0e', 'uniqueId': '0xbcfe51a89d2c229770e783369a2223e86d438b397210df58d07ec583b6396bc2:log:65', 'hash': '0xbcfe51a89d2c229770e783369a2223e86d438b397210df58d07ec583b6396bc2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 6640.749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03f54c42', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T18:27:39.000Z'}}, {'blockNum': '0x66dc13', 'uniqueId': '0x85ddb7f5b84f7ca2aa4b249b02cc501968d305a539268623fbf507f1eae61be0:log:72', 'hash': '0x85ddb7f5b84f7ca2aa4b249b02cc501968d305a539268623fbf507f1eae61be0', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 19656.814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0bb7644c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T18:29:22.000Z'}}, {'blockNum': '0x66dc72', 'uniqueId': '0x9eb19d0a73cf5c3de6a1697b2377b9a9f9dac528dd012dd57063605339cec83c:log:93', 'hash': '0x9eb19d0a73cf5c3de6a1697b2377b9a9f9dac528dd012dd57063605339cec83c', 'from': '0x55cf5fee6ebfff86b0607e0f91cd4206a4cd50ef', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 111.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x111318', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T18:52:58.000Z'}}, {'blockNum': '0x66dd7f', 'uniqueId': '0x9218d0da0f719d8930096cd0d1a686f164e6aa04ce903524e603bb187273e57f:log:1', 'hash': '0x9218d0da0f719d8930096cd0d1a686f164e6aa04ce903524e603bb187273e57f', 'from': '0xfd5e3bba64120837218f49706cf27dc953c39f0b', 'to': '0x658fca3451e5670a4442f7939b725626bc0c3148', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1e8480', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T19:55:37.000Z'}}, {'blockNum': '0x66ddcb', 'uniqueId': '0x946cc0ecb4a0b2e5adcd3a7d8aed8d7e422cd150834080b67c9518da11c5f8c3:log:9', 'hash': '0x946cc0ecb4a0b2e5adcd3a7d8aed8d7e422cd150834080b67c9518da11c5f8c3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xff71b0a56724eb805004ca697f7744acb5444d16', 'value': 3426.5608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x020ada08', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T20:12:02.000Z'}}, {'blockNum': '0x66ddcc', 'uniqueId': '0x4a38c098239c1c3bb0db7a557f768b5b25941a219bc6e6480108a0fde11bad15:log:13', 'hash': '0x4a38c098239c1c3bb0db7a557f768b5b25941a219bc6e6480108a0fde11bad15', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 6840.884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0413d608', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T20:12:38.000Z'}}, {'blockNum': '0x66de19', 'uniqueId': '0x429518ef1f1901abc0de710392010dac513769078be294fc9083f6a392b1812b:log:21', 'hash': '0x429518ef1f1901abc0de710392010dac513769078be294fc9083f6a392b1812b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 6932.397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0421ccc2', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T20:32:00.000Z'}}, {'blockNum': '0x66de1f', 'uniqueId': '0x4538747c992724e23e539d8473026ea72aa08806382b46c382d6148d5b88eef7:log:81', 'hash': '0x4538747c992724e23e539d8473026ea72aa08806382b46c382d6148d5b88eef7', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 13773.281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0835a2ca', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T20:33:33.000Z'}}, {'blockNum': '0x66de22', 'uniqueId': '0x86a4c464ff28b8884d3e60b7e6cba25edffa77606a0baf1186f69e213836fe3b:log:14', 'hash': '0x86a4c464ff28b8884d3e60b7e6cba25edffa77606a0baf1186f69e213836fe3b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xff71b0a56724eb805004ca697f7744acb5444d16', 'value': 3469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x021153d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T20:33:46.000Z'}}, {'blockNum': '0x66de27', 'uniqueId': '0x1bd38fe3e5b8986ceb8ca252d38dc77ea070a6edc72b7c61d1a9c061619bca7b:log:64', 'hash': '0x1bd38fe3e5b8986ceb8ca252d38dc77ea070a6edc72b7c61d1a9c061619bca7b', 'from': '0xff71b0a56724eb805004ca697f7744acb5444d16', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 3426.5608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x020ada08', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T20:35:01.000Z'}}, {'blockNum': '0x66de51', 'uniqueId': '0x6e83f70f0b75c5e0f07ece7ef5455119ab7f1d354ffdecbca3743895c416d0ed:log:92', 'hash': '0x6e83f70f0b75c5e0f07ece7ef5455119ab7f1d354ffdecbca3743895c416d0ed', 'from': '0x76876034d2a967816795433537cda38c06b9e9ed', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 8.071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x013b46', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T20:45:12.000Z'}}, {'blockNum': '0x66de69', 'uniqueId': '0xcf24d2e9d349d5a566c5e28b084ce1555278ac2a8e62c8582c272df5f3834645:log:14', 'hash': '0xcf24d2e9d349d5a566c5e28b084ce1555278ac2a8e62c8582c272df5f3834645', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 6812.349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x040f7b62', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T20:51:15.000Z'}}, {'blockNum': '0x66ded9', 'uniqueId': '0x51e595779077a555c7a22bc201563cdc68ed0c4e9f040bdccc9abeae877cb570:log:58', 'hash': '0x51e595779077a555c7a22bc201563cdc68ed0c4e9f040bdccc9abeae877cb570', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xff71b0a56724eb805004ca697f7744acb5444d16', 'value': 3447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x020df870', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T21:16:30.000Z'}}, {'blockNum': '0x66dedc', 'uniqueId': '0xadc2890a99c83e43dfe7fe95239d5e7b3cbf6473f083a958294c1d4887a11fff:log:26', 'hash': '0xadc2890a99c83e43dfe7fe95239d5e7b3cbf6473f083a958294c1d4887a11fff', 'from': '0xff71b0a56724eb805004ca697f7744acb5444d16', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 6916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x041f4c40', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T21:17:17.000Z'}}, {'blockNum': '0x66df15', 'uniqueId': '0x68fa01d01bef801a2d12ce752e6aa2ef58d340d36291915675543583304ca263:log:9', 'hash': '0x68fa01d01bef801a2d12ce752e6aa2ef58d340d36291915675543583304ca263', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xea05f704a4311fe29d976be9d03625062f04b409', 'value': 14251.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x087eaad8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T21:28:24.000Z'}}, {'blockNum': '0x66df17', 'uniqueId': '0x889b36e141ece2f5a019f1a55240601d595fae885f8ba9a0b6506c0f274a3062:log:23', 'hash': '0x889b36e141ece2f5a019f1a55240601d595fae885f8ba9a0b6506c0f274a3062', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 14251.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x087eaad8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T21:29:00.000Z'}}, {'blockNum': '0x66df4a', 'uniqueId': '0xa63d2c59c2a0fd5856ba7a291a9c46c4464c1eb29b195ecae2bf18aa97a1bce8:log:82', 'hash': '0xa63d2c59c2a0fd5856ba7a291a9c46c4464c1eb29b195ecae2bf18aa97a1bce8', 'from': '0x15ce4ab7cea086d23a4b65792788995771279d6f', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 82.4035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c92e3', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T21:41:28.000Z'}}, {'blockNum': '0x66e0e3', 'uniqueId': '0x0a42a3a703c571d7fec4ee5bbb23429295f83b15bf21bac42a856ee8bae17908:log:26', 'hash': '0x0a42a3a703c571d7fec4ee5bbb23429295f83b15bf21bac42a856ee8bae17908', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 4164.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x027b8368', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T23:22:56.000Z'}}, {'blockNum': '0x66e0ee', 'uniqueId': '0x29f5917997775a0b9955408e1e1bd7a8a4a84ab9926ecb90418cd19eff073d24:log:48', 'hash': '0x29f5917997775a0b9955408e1e1bd7a8a4a84ab9926ecb90418cd19eff073d24', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 4093.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0270adf8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T23:26:40.000Z'}}, {'blockNum': '0x66e106', 'uniqueId': '0xa274f212da3f1b999502be706b445e0818af9a5a1d5489ab38f58860b9146aac:log:75', 'hash': '0xa274f212da3f1b999502be706b445e0818af9a5a1d5489ab38f58860b9146aac', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x627c2b4d2c1f3528f5ca116e9b46e9919b11f8f1', 'value': 219.063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x216d26', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T23:30:53.000Z'}}, {'blockNum': '0x66e108', 'uniqueId': '0xb31aecc39c8c801840c63cb52da74468778935e4a76c961db090d3f5998d9420:log:66', 'hash': '0xb31aecc39c8c801840c63cb52da74468778935e4a76c961db090d3f5998d9420', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 4164.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x027b8368', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T23:32:02.000Z'}}, {'blockNum': '0x66e17b', 'uniqueId': '0x0e1ddf6167897b5d9c8f107196e47cc47a39d233c1e0d0d7bab0fa6a76abaa15:log:52', 'hash': '0x0e1ddf6167897b5d9c8f107196e47cc47a39d233c1e0d0d7bab0fa6a76abaa15', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x2d60421a411b99fe8ca0396a955bdcc52922b41f', 'value': 15966.0309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x09843915', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T23:57:25.000Z'}}, {'blockNum': '0x66e1c1', 'uniqueId': '0x54b0f38363bffea2e62b2c368190a5e7d09e97af2f1f34e36001976274863e00:log:19', 'hash': '0x54b0f38363bffea2e62b2c368190a5e7d09e97af2f1f34e36001976274863e00', 'from': '0x2d60421a411b99fe8ca0396a955bdcc52922b41f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15966.0309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x09843915', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-21T00:11:28.000Z'}}, {'blockNum': '0x66e3b6', 'uniqueId': '0x76aa23d14ae07bec7a7a1030838f1afaed1847a5f2b94ac5e4064c9dd78adfbc:log:106', 'hash': '0x76aa23d14ae07bec7a7a1030838f1afaed1847a5f2b94ac5e4064c9dd78adfbc', 'from': '0x6d7f6fbade2bca06cd83d99db5c9f1cb7ea512c7', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x030d40', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-21T02:07:20.000Z'}}, {'blockNum': '0x66e4e0', 'uniqueId': '0x1c796269324cf1572871152c8e7ffc9f951540747459aa05adf6e6ebd292921e:log:97', 'hash': '0x1c796269324cf1572871152c8e7ffc9f951540747459aa05adf6e6ebd292921e', 'from': '0x1f52598d8eb19936d3f6b3699b14c4d3cb87763b', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 302.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2e18c8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-21T03:18:06.000Z'}}]}}
Number of returned transfers: 97
Answer is complete
symbol RDN
group BPG
date 2018-11-27
hour 17:00
exchange binance
Name: 265, dtype: object
HERE
Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps: 2018-11-27 17:00:00 2018-11-27 05:00:00 2018-11-28 05:00:00
Unix timestamps: 1543291200.0 1543377600.0
Hex Block Numbers: 0x6774c0 0x678c00
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x6776c5', 'uniqueId': '0x8ff86dba2d2ab58665f5caafbd01eb9975c769c5b946f7ba702dee6d979330b7:log:15', 'hash': '0x8ff86dba2d2ab58665f5caafbd01eb9975c769c5b946f7ba702dee6d979330b7', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x395c0e4dd04c9c5fd7ac1e578d65cabbf45a82e0', 'value': 596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x204f295a41b4d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T06:11:33.000Z'}}, {'blockNum': '0x6776c8', 'uniqueId': '0xe1ab69026a631e7fc885b369285bd209737ec080b5793e7c55400603a61cc3a6:log:3', 'hash': '0xe1ab69026a631e7fc885b369285bd209737ec080b5793e7c55400603a61cc3a6', 'from': '0x395c0e4dd04c9c5fd7ac1e578d65cabbf45a82e0', 'to': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'value': 596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x204f295a41b4d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T06:11:56.000Z'}}, {'blockNum': '0x67770e', 'uniqueId': '0x7e90dcdb108bf8d138c5cb850e444bf84a630e76461e8db749de48782bd58c99:log:34', 'hash': '0x7e90dcdb108bf8d138c5cb850e444bf84a630e76461e8db749de48782bd58c99', 'from': '0x555c403690abc5b70193c46251e8d2ec1409deee', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7d9ad598020413ffff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T06:27:09.000Z'}}, {'blockNum': '0x677770', 'uniqueId': '0xfade3ce642f69f8a596b2ddde576671dfb923f7c1a16adf9a69073d1f37f47e4:log:1', 'hash': '0xfade3ce642f69f8a596b2ddde576671dfb923f7c1a16adf9a69073d1f37f47e4', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40ba1421eab8680000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T06:51:03.000Z'}}, {'blockNum': '0x6777e3', 'uniqueId': '0x362c8d43d1f398716a014e93b020531a189592395b2b45c17cc45ec89f8613b1:log:14', 'hash': '0x362c8d43d1f398716a014e93b020531a189592395b2b45c17cc45ec89f8613b1', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40ba1421eab8680000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T07:16:26.000Z'}}, {'blockNum': '0x67785b', 'uniqueId': '0xfe04983c114502d16648e4ab182aa3e90b8c3a0c344ea6dd5d5ee70683d1020e:log:2', 'hash': '0xfe04983c114502d16648e4ab182aa3e90b8c3a0c344ea6dd5d5ee70683d1020e', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x52a99fb2cb7e9729e60edb62837ac3e5ecd1c28b', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T07:49:08.000Z'}}, {'blockNum': '0x6778d0', 'uniqueId': '0x878d13e0faf35d8c61acba452d6ea2a11d1016929787ae1aff99884842c2ea6d:log:14', 'hash': '0x878d13e0faf35d8c61acba452d6ea2a11d1016929787ae1aff99884842c2ea6d', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x96146937c70b918f764870a226d640f162ce0c46', 'value': 1491.998034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x50e1a1d2fa872f2000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T08:13:56.000Z'}}, {'blockNum': '0x677955', 'uniqueId': '0x47a6fb45a43292f00e9fa8c1a5b899025a41900b0bab4407d80913be9f8a6e7f:log:25', 'hash': '0x47a6fb45a43292f00e9fa8c1a5b899025a41900b0bab4407d80913be9f8a6e7f', 'from': '0x451fc78e1adcc5f8158342931c9055603912be09', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 556.806072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1e2f3c8c6624937fff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T08:51:27.000Z'}}, {'blockNum': '0x677989', 'uniqueId': '0x9501d2b874c65b525953c8fac4084c380f1daa9126417fd2416649047db255d7:log:67', 'hash': '0x9501d2b874c65b525953c8fac4084c380f1daa9126417fd2416649047db255d7', 'from': '0x72e65059428d9a2da614a9161e0122d95405a24c', 'to': '0xff2dbe4ba5d2c18766e7ee4d9a2af6aff8fef4c0', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T09:06:12.000Z'}}, {'blockNum': '0x6779cb', 'uniqueId': '0x3d4bdf95dd488614aa2e13ad4b9ba7ad1647e1874762bb2484aefdf91893bb2a:log:9', 'hash': '0x3d4bdf95dd488614aa2e13ad4b9ba7ad1647e1874762bb2484aefdf91893bb2a', 'from': '0xff2dbe4ba5d2c18766e7ee4d9a2af6aff8fef4c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T09:24:12.000Z'}}, {'blockNum': '0x6779ea', 'uniqueId': '0xf1802d0dc801f75fc9bcd21a13d8cb22c5f2d3ec6b2a91a25b959480ccafc73c:log:10', 'hash': '0xf1802d0dc801f75fc9bcd21a13d8cb22c5f2d3ec6b2a91a25b959480ccafc73c', 'from': '0xf60fa103662ce52035e0f580924bffb5879678e5', 'to': '0x5dbd3cc3c3ef48b7e8ede33a6b0921c2bb18a739', 'value': 1280, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f4000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T09:30:50.000Z'}}, {'blockNum': '0x677a51', 'uniqueId': '0x4f015fd464771870a45b0c287618fc87d22b55b87b387b51876ab228bf50cba3:log:27', 'hash': '0x4f015fd464771870a45b0c287618fc87d22b55b87b387b51876ab228bf50cba3', 'from': '0x5dbd3cc3c3ef48b7e8ede33a6b0921c2bb18a739', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1280, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f4000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T09:56:03.000Z'}}, {'blockNum': '0x677a6d', 'uniqueId': '0xe382d1416d633f8f447d991c27fdfebc046d95f427077d6318fde61299baa9ab:log:226', 'hash': '0xe382d1416d633f8f447d991c27fdfebc046d95f427077d6318fde61299baa9ab', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x599ad3f92f76e859f7b7a87dbe3aacb81e54c6e6', 'value': 6824.161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0171f042218ba2768000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T10:03:01.000Z'}}, {'blockNum': '0x677b0f', 'uniqueId': '0xbb03b6813deda0e5e70eecdab9b11b94faa6fba4ba65abf6725781a494cf35d9:log:3', 'hash': '0xbb03b6813deda0e5e70eecdab9b11b94faa6fba4ba65abf6725781a494cf35d9', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x4d1e50b89893ed260f0cd82c4677fd331537b93a', 'value': 672.65, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2476e4db25c6810000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T10:45:20.000Z'}}, {'blockNum': '0x677c5b', 'uniqueId': '0xb10242fbc10932fcf7e5d96328d26c5da796acfb2e89b8f3c257a58770f71a69:log:18', 'hash': '0xb10242fbc10932fcf7e5d96328d26c5da796acfb2e89b8f3c257a58770f71a69', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf58a512988838e2f756e883318ebdf986f70c0bd', 'value': 7305.484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x018c07f4efe30bce0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T12:05:11.000Z'}}, {'blockNum': '0x677e4e', 'uniqueId': '0x2d22ac169029a7f77dfaf98c0259cc2efbbe17a3af5ba4a0a57bc3b7b4e762ed:log:5', 'hash': '0x2d22ac169029a7f77dfaf98c0259cc2efbbe17a3af5ba4a0a57bc3b7b4e762ed', 'from': '0x7b30fed9d91e63a6dc66e1b3face87392f231199', 'to': '0x65ebdd24cf8859e86ba73b5bab09b8ac269255de', 'value': 69.92999999999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03ca79447eb710fb50', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T14:03:06.000Z'}}, {'blockNum': '0x677f24', 'uniqueId': '0x9b7a84cc66ff981e201eeda43de03a18a75f443e1f6db23749c4b98622d792b1:log:10', 'hash': '0x9b7a84cc66ff981e201eeda43de03a18a75f443e1f6db23749c4b98622d792b1', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x720d2def2d5d12e65fa1446a922fb6c5530d2e19', 'value': 7.290066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x652b84670f272000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T14:58:41.000Z'}}, {'blockNum': '0x677fa4', 'uniqueId': '0x41c68986595bc724954762e2dd674026e2224b832a7895d6a8ba948482495c97:log:2', 'hash': '0x41c68986595bc724954762e2dd674026e2224b832a7895d6a8ba948482495c97', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 35112.8057262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x076f7811345c6cd9b000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T15:29:17.000Z'}}, {'blockNum': '0x67800a', 'uniqueId': '0x36295ead81a22a928d00cadc2bee20d41df9098a25708809dc5688975f4a01db:log:1', 'hash': '0x36295ead81a22a928d00cadc2bee20d41df9098a25708809dc5688975f4a01db', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35112.8057262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x076f7811345c6cd9b000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T15:54:07.000Z'}}, {'blockNum': '0x678023', 'uniqueId': '0x8b221864b71fc5a2700999f550a0c1a6bddee5a6a5312dfa22e516aadd8d7bbd:log:0', 'hash': '0x8b221864b71fc5a2700999f550a0c1a6bddee5a6a5312dfa22e516aadd8d7bbd', 'from': '0x28fe861364202a66818da54ca345ebdd17bb07e0', 'to': '0x5e3593b99021bd607db3435adc04d8598c3b2d6c', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01158e460913d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T16:01:51.000Z'}}, {'blockNum': '0x678089', 'uniqueId': '0x1b28d96b9d12067b81eea2b11a3215548edde331466ea50096b4fed598509cf5:log:5', 'hash': '0x1b28d96b9d12067b81eea2b11a3215548edde331466ea50096b4fed598509cf5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9ca2d3d9d04f8a46da242716302469510fc0ebfc', 'value': 3796.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xcdd32f4bb103200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T16:23:45.000Z'}}, {'blockNum': '0x678092', 'uniqueId': '0xd8b0a64eb34087bec506d9f2db35942c921726c60abd4e1fbc881c08ec74bc53:log:3', 'hash': '0xd8b0a64eb34087bec506d9f2db35942c921726c60abd4e1fbc881c08ec74bc53', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x436ff7d10169f00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T16:26:23.000Z'}}, {'blockNum': '0x678099', 'uniqueId': '0x0aa2e1200d73c812365edae0a5be5198eb969d2a9ea857e36cc5ef0ed608ff1e:log:152', 'hash': '0x0aa2e1200d73c812365edae0a5be5198eb969d2a9ea857e36cc5ef0ed608ff1e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'value': 21488.58978061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x048ce616da0964369400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T16:27:48.000Z'}}, {'blockNum': '0x6780a1', 'uniqueId': '0x4d80357e879b2be226fc41a32671adde7113e95bd9b68d46310170677ff6b43a:log:3', 'hash': '0x4d80357e879b2be226fc41a32671adde7113e95bd9b68d46310170677ff6b43a', 'from': '0x9ca2d3d9d04f8a46da242716302469510fc0ebfc', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 3796.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xcdd32f4bb103200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T16:31:04.000Z'}}, {'blockNum': '0x6780a1', 'uniqueId': '0xe3860e8d18a3653939d24a57cd88dc3d9b38724ecfd39533221edff95d5f00d5:log:5', 'hash': '0xe3860e8d18a3653939d24a57cd88dc3d9b38724ecfd39533221edff95d5f00d5', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 21488.58978061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x048ce616da0964369400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T16:31:04.000Z'}}, {'blockNum': '0x678126', 'uniqueId': '0xfae084a1f46959300737202a458358592e837bad5910188045bfb0e6e6c34089:log:14', 'hash': '0xfae084a1f46959300737202a458358592e837bad5910188045bfb0e6e6c34089', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x436ff7d10169f00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:01:01.000Z'}}, {'blockNum': '0x678132', 'uniqueId': '0x0c487cb0a1bca650353d6b173acb92b86d57f9dbbba09dbbed4cf56029500e2b:log:2', 'hash': '0x0c487cb0a1bca650353d6b173acb92b86d57f9dbbba09dbbed4cf56029500e2b', 'from': '0x0861fca546225fbf8806986d211c8398f7457734', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 1549.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x54052eee4721ee0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:03:31.000Z'}}, {'blockNum': '0x678137', 'uniqueId': '0xca8341c2af4945c15f2f8098d8a8cd8959f1cfde78614981f9c6c0e3098734cf:log:85', 'hash': '0xca8341c2af4945c15f2f8098d8a8cd8959f1cfde78614981f9c6c0e3098734cf', 'from': '0xef0bc05e0531dc5d5b2b3bac023b16f2d3ff68a1', 'to': '0x3f24c26f934685693c88c888941d9d97179cac2d', 'value': 190.61406801087924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a554d34f0749b1b96', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:04:42.000Z'}}, {'blockNum': '0x67813d', 'uniqueId': '0x5985ba5438ce8be39d965816741282a1e4a728b6e6ab5f7b372721de592bc60c:log:65', 'hash': '0x5985ba5438ce8be39d965816741282a1e4a728b6e6ab5f7b372721de592bc60c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d6b88991bd5940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:06:31.000Z'}}, {'blockNum': '0x678148', 'uniqueId': '0xffb1fb15fde867f51531619f307535c7898935c20d7e18ee99514e67e1fdbc97:log:24', 'hash': '0xffb1fb15fde867f51531619f307535c7898935c20d7e18ee99514e67e1fdbc97', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x99781ad21621a30881aaa21559463c38cf1a9ef9', 'value': 4355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xec15c412389a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:08:01.000Z'}}, {'blockNum': '0x678148', 'uniqueId': '0x5d2f7b930f29575c1297151e280aeeff39e408971d6080ffc83efc2d42e2864b:log:25', 'hash': '0x5d2f7b930f29575c1297151e280aeeff39e408971d6080ffc83efc2d42e2864b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 2939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9f52d18082b90c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:08:01.000Z'}}, {'blockNum': '0x67814a', 'uniqueId': '0xffd5e7fd8b39e40d03519144fd31a9b6d16486a1dca2bfcea1bc7534aaca0f8c:log:20', 'hash': '0xffd5e7fd8b39e40d03519144fd31a9b6d16486a1dca2bfcea1bc7534aaca0f8c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'value': 381.92570604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x14b448ae1d40763000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:08:20.000Z'}}, {'blockNum': '0x67814c', 'uniqueId': '0xeb7491c447bfc98199b82e8dca55616cc4e7d686481d4e32903a9d56613edc02:log:55', 'hash': '0xeb7491c447bfc98199b82e8dca55616cc4e7d686481d4e32903a9d56613edc02', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0x3c393088336d83acc8718b2dd1725f7f279ccda1', 'value': 4183.87610562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xe2cef1deef8ccec800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:08:55.000Z'}}, {'blockNum': '0x67814c', 'uniqueId': '0x0f257db4cb18fae9493d2c2c6d75b42b96bf8ceb7edbd74fd3901dc8dde8e43f:log:77', 'hash': '0x0f257db4cb18fae9493d2c2c6d75b42b96bf8ceb7edbd74fd3901dc8dde8e43f', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0xf241cac6e0db55e16e94869a3188a11083a9b50b', 'value': 1372.02379035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4a60a7b0079cc50c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:08:55.000Z'}}, {'blockNum': '0x678159', 'uniqueId': '0x055b60c56f70e80aff953738662d279d197e4e02121f0b2b997ac58f905d1ab2:log:2', 'hash': '0x055b60c56f70e80aff953738662d279d197e4e02121f0b2b997ac58f905d1ab2', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'value': 3154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xaafa8af1644e080000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:11:11.000Z'}}, {'blockNum': '0x67815f', 'uniqueId': '0x3772848edca8dd93a35c957de37372cc900130fbc2d65987ec15cc978305e63c:log:31', 'hash': '0x3772848edca8dd93a35c957de37372cc900130fbc2d65987ec15cc978305e63c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 5329.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0120edd55d8264f40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:13:26.000Z'}}, {'blockNum': '0x67815f', 'uniqueId': '0x9de014d0b6d3fd3142c872707e38a1b28f74d17fbe8fc5df97c271da1175e61b:log:37', 'hash': '0x9de014d0b6d3fd3142c872707e38a1b28f74d17fbe8fc5df97c271da1175e61b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 8430.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c908da7bb50b480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:13:26.000Z'}}, {'blockNum': '0x67815f', 'uniqueId': '0x6ae3631ffc112ee0ee391b5c136bd863e1cf60e1303a5df6129243d493a08dd3:log:40', 'hash': '0x6ae3631ffc112ee0ee391b5c136bd863e1cf60e1303a5df6129243d493a08dd3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0b011e9f15402bd4f9445f586808b3c161c412f5', 'value': 9049.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01ea9734401aca140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:13:26.000Z'}}, {'blockNum': '0x678169', 'uniqueId': '0x09f255973afe0e1026d1c750a41a36edea9658dda3cd9265f35e449dd93265a6:log:16', 'hash': '0x09f255973afe0e1026d1c750a41a36edea9658dda3cd9265f35e449dd93265a6', 'from': '0x0b011e9f15402bd4f9445f586808b3c161c412f5', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 9049.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01ea9734401aca140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:15:36.000Z'}}, {'blockNum': '0x67818b', 'uniqueId': '0xb3220b4368cf8fe708ba10feda4471f131665655ff6f437ec9eed1fefa71dcfb:log:3', 'hash': '0xb3220b4368cf8fe708ba10feda4471f131665655ff6f437ec9eed1fefa71dcfb', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d6b88991bd5940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:22:28.000Z'}}, {'blockNum': '0x678191', 'uniqueId': '0xd84d13edb0dbb9362292bcea472889de70fa09b94e91e7617711dfbb9c700e73:log:14', 'hash': '0xd84d13edb0dbb9362292bcea472889de70fa09b94e91e7617711dfbb9c700e73', 'from': '0x99781ad21621a30881aaa21559463c38cf1a9ef9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xec15c412389a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:24:17.000Z'}}, {'blockNum': '0x678191', 'uniqueId': '0xb2d24baa2bd2c2f443a13b95a127b4b4a7504334ea6bf063d1fa44af283dcd51:log:16', 'hash': '0xb2d24baa2bd2c2f443a13b95a127b4b4a7504334ea6bf063d1fa44af283dcd51', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1549.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x54052eee4721ee0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:24:17.000Z'}}, {'blockNum': '0x678191', 'uniqueId': '0xb6fcf1ccc574a92e05eec2402411aa079d758933de801894784552a92749dd00:log:17', 'hash': '0xb6fcf1ccc574a92e05eec2402411aa079d758933de801894784552a92749dd00', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9f52d18082b90c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:24:17.000Z'}}, {'blockNum': '0x678191', 'uniqueId': '0xb6ca052fbc6bd82b4f2c3d160a38af4ab494c555996af28ac8abc12e7da5fe7d:log:18', 'hash': '0xb6ca052fbc6bd82b4f2c3d160a38af4ab494c555996af28ac8abc12e7da5fe7d', 'from': '0x3f24c26f934685693c88c888941d9d97179cac2d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 290.61406801087924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0fc114931dd7ab1b96', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:24:17.000Z'}}, {'blockNum': '0x678195', 'uniqueId': '0xbfa607715b280a1afa81b9d41631fdd960f350effd9b3cab4c67e5d4e162ed01:log:2', 'hash': '0xbfa607715b280a1afa81b9d41631fdd960f350effd9b3cab4c67e5d4e162ed01', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'value': 38420.85088124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0822cc6a7a18740e7000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:24:57.000Z'}}, {'blockNum': '0x678195', 'uniqueId': '0xa9dae8b2711f859a41b003cd296202fb6cfb9f9be7429dc0b1c4f0b8a760f9ad:log:13', 'hash': '0xa9dae8b2711f859a41b003cd296202fb6cfb9f9be7429dc0b1c4f0b8a760f9ad', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 5329.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0120edd55d8264f40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:24:57.000Z'}}, {'blockNum': '0x678197', 'uniqueId': '0x23acbf02b481236e331147b144a28b2a341f27a972b6aea3ea9563678eea9eb0:log:5', 'hash': '0x23acbf02b481236e331147b144a28b2a341f27a972b6aea3ea9563678eea9eb0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd6e1e7385ad23732feb6675b0d6828165a11afbd', 'value': 2195.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7708d8b2272abc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:25:50.000Z'}}, {'blockNum': '0x67819d', 'uniqueId': '0x8283ec80eb00b4d1a1a4ee6e26162de716f83a4855ee16fa248edf11b41a3328:log:4', 'hash': '0x8283ec80eb00b4d1a1a4ee6e26162de716f83a4855ee16fa248edf11b41a3328', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 5644.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x013201562c915d000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:27:05.000Z'}}, {'blockNum': '0x6781aa', 'uniqueId': '0xc1af5038749a655935b6da69510bef55abb5cecedc489813b065508a9c323a1f:log:37', 'hash': '0xc1af5038749a655935b6da69510bef55abb5cecedc489813b065508a9c323a1f', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 8430.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c908da7bb50b480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:30:09.000Z'}}, {'blockNum': '0x6781ab', 'uniqueId': '0x1b5755be6540d0c1b2e83393035a330e5900ca0b6c30a4d47bc7f98c0b355e42:log:6', 'hash': '0x1b5755be6540d0c1b2e83393035a330e5900ca0b6c30a4d47bc7f98c0b355e42', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 38420.85088124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0822cc6a7a18740e7000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:30:29.000Z'}}, {'blockNum': '0x6781ad', 'uniqueId': '0x5d2f278d418e9f88c9392deb54d3782deeab4b32a6227d4b94a09b2353058d03:log:13', 'hash': '0x5d2f278d418e9f88c9392deb54d3782deeab4b32a6227d4b94a09b2353058d03', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 205477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b82ee3494322b740000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:31:02.000Z'}}, {'blockNum': '0x6781b3', 'uniqueId': '0x781b9923abed84fd8d77b55b06f965be224a0c6984f45208133fae94b2897b0b:log:2', 'hash': '0x781b9923abed84fd8d77b55b06f965be224a0c6984f45208133fae94b2897b0b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 9014.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01e8b17b458ae7680000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:31:27.000Z'}}, {'blockNum': '0x6781bc', 'uniqueId': '0xe5b6b944e78cd848f3bd8c891f9c82491c28abfeecdfcbf315418934f6c6b875:log:9', 'hash': '0xe5b6b944e78cd848f3bd8c891f9c82491c28abfeecdfcbf315418934f6c6b875', 'from': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 381.92570604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x14b448ae1d40763000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:34:06.000Z'}}, {'blockNum': '0x6781bc', 'uniqueId': '0xc55b491f12daf20cdb4d64166f68dd0aad1cf97ccf22c9601ab05d3f9d6523db:log:10', 'hash': '0xc55b491f12daf20cdb4d64166f68dd0aad1cf97ccf22c9601ab05d3f9d6523db', 'from': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xaafa8af1644e080000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:34:06.000Z'}}, {'blockNum': '0x6781d7', 'uniqueId': '0x44559ec60f657c1cefbb79fb643fea00da381cbbfe0a9765c7af8b2f823faa90:log:37', 'hash': '0x44559ec60f657c1cefbb79fb643fea00da381cbbfe0a9765c7af8b2f823faa90', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 9014.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01e8b17b458ae7680000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:41:20.000Z'}}, {'blockNum': '0x6781db', 'uniqueId': '0x8994cc1ae5522f581b2faaa3694fe3efb9778f16b72daa645babc594f7f0dc7e:log:19', 'hash': '0x8994cc1ae5522f581b2faaa3694fe3efb9778f16b72daa645babc594f7f0dc7e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'value': 55079.12881496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ba9d8765b7988ca6000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:42:48.000Z'}}, {'blockNum': '0x6781e0', 'uniqueId': '0x4f2404a08759326ec01547e38e124251c7af5f11b8aa45dea8a1499769ce1a7c:log:28', 'hash': '0x4f2404a08759326ec01547e38e124251c7af5f11b8aa45dea8a1499769ce1a7c', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 5644.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x013201562c915d000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:43:35.000Z'}}, {'blockNum': '0x6781e5', 'uniqueId': '0x498f4287a84dd94947f0e23c769bc53b3e825e247f37ce1a27522c575fb92ee7:log:5', 'hash': '0x498f4287a84dd94947f0e23c769bc53b3e825e247f37ce1a27522c575fb92ee7', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 55079.12881496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ba9d8765b7988ca6000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:45:40.000Z'}}, {'blockNum': '0x6781f6', 'uniqueId': '0x75a133e4cca132ccaf18acc947afbec54c4a001e3c59e34c66efbe1c041a21d8:log:38', 'hash': '0x75a133e4cca132ccaf18acc947afbec54c4a001e3c59e34c66efbe1c041a21d8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 224817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2f9b5a9f207c02240000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:50:56.000Z'}}, {'blockNum': '0x6781f9', 'uniqueId': '0x0a86bc193084ac6b0995bc55bf208b3dc6c035e71e56de1e8bc166a98432d485:log:49', 'hash': '0x0a86bc193084ac6b0995bc55bf208b3dc6c035e71e56de1e8bc166a98432d485', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e1e7385ad23732feb6675b0d6828165a11afbd', 'value': 3146.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xaa969f6789ff380000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:52:42.000Z'}}, {'blockNum': '0x678213', 'uniqueId': '0xcfbf0b8637ce5e6b28c0fee6ef3d3853fb72b874fd28b8a80c6ae15fa71edd60:log:21', 'hash': '0xcfbf0b8637ce5e6b28c0fee6ef3d3853fb72b874fd28b8a80c6ae15fa71edd60', 'from': '0x977c827a997e6cb67e70daeaa7145b17d0cb8bda', 'to': '0x02d66417fbe0f07585710703d4d6931c52768074', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:59:56.000Z'}}, {'blockNum': '0x678214', 'uniqueId': '0xa6fbb44f47f3051ec672a791bd4416ce7014893bcc67b6b5375f5b5839f0c4c3:log:2', 'hash': '0xa6fbb44f47f3051ec672a791bd4416ce7014893bcc67b6b5375f5b5839f0c4c3', 'from': '0xd6e1e7385ad23732feb6675b0d6828165a11afbd', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 5342.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01219f7819b129f40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:00:14.000Z'}}, {'blockNum': '0x67822d', 'uniqueId': '0x4debdd71019a0c33a3880eff328f8967e3f9b0c1e79a47e3d3a360127330baa7:log:24', 'hash': '0x4debdd71019a0c33a3880eff328f8967e3f9b0c1e79a47e3d3a360127330baa7', 'from': '0x25be66eecae4a2555c452e2c0fbec849e067c0d7', 'to': '0x32433e991eb048752ff30af2a541a2971e01502c', 'value': 87, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04b75e170de2fc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:05:39.000Z'}}, {'blockNum': '0x678231', 'uniqueId': '0x0d180f0480f71144f3e854add27c9a8158d5f05840b2a33ca82efa3acc02f682:log:6', 'hash': '0x0d180f0480f71144f3e854add27c9a8158d5f05840b2a33ca82efa3acc02f682', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa4dad4df5481ee2d17a23d979d6c8c5c91c1e350', 'value': 3197.596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad578f0c6909f60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:06:17.000Z'}}, {'blockNum': '0x678241', 'uniqueId': '0x6c6db279e33e7a998991b21e61818a04af0da010759bb5cdef4cb5fc9b5feaf7:log:4', 'hash': '0x6c6db279e33e7a998991b21e61818a04af0da010759bb5cdef4cb5fc9b5feaf7', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 5382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0123c24104f120580000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:09:44.000Z'}}, {'blockNum': '0x678243', 'uniqueId': '0x338bbdc1f1c7de6d5048562f9c4b341d9ae980c49331e78dda9274d7d18f13e1:log:23', 'hash': '0x338bbdc1f1c7de6d5048562f9c4b341d9ae980c49331e78dda9274d7d18f13e1', 'from': '0x62273cfaddf55c4caa380fa0a3816dc9b7439eed', 'to': '0xae8a6dce6010babc57af1ef80083c9f0ac999500', 'value': 249.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0d82583fae8b580000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:11:22.000Z'}}, {'blockNum': '0x67824c', 'uniqueId': '0xb0652200628bb97385fe09c716f8b9bf5d7bd8ff16d7a39b648eb3a7f88ac574:log:4', 'hash': '0xb0652200628bb97385fe09c716f8b9bf5d7bd8ff16d7a39b648eb3a7f88ac574', 'from': '0x02d66417fbe0f07585710703d4d6931c52768074', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:14:10.000Z'}}, {'blockNum': '0x678281', 'uniqueId': '0x5ddf6ad63d78f076b46cf31df43c5b5e729e4322e45c1f838e82982cb40966c1:log:2', 'hash': '0x5ddf6ad63d78f076b46cf31df43c5b5e729e4322e45c1f838e82982cb40966c1', 'from': '0xae8a6dce6010babc57af1ef80083c9f0ac999500', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 249.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0d82583fae8b580000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:24:11.000Z'}}, {'blockNum': '0x678281', 'uniqueId': '0x0d461360cc123ed1ead1cc4a8b44960d83414fc3d17a67920a861270a97a70e7:log:4', 'hash': '0x0d461360cc123ed1ead1cc4a8b44960d83414fc3d17a67920a861270a97a70e7', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0123c24104f120580000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:24:11.000Z'}}, {'blockNum': '0x67828b', 'uniqueId': '0xc839069ba705df416fe18658aed4c2565c0a6f02b1f73fad82ab4eb471fdbc24:log:44', 'hash': '0xc839069ba705df416fe18658aed4c2565c0a6f02b1f73fad82ab4eb471fdbc24', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7f3c6b712e85e72b721f740fcec62b40a84bd3a', 'value': 6349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01582e13258e6b140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:26:38.000Z'}}, {'blockNum': '0x6782c7', 'uniqueId': '0xa99e41bd8b9ec59204fc6406cd58fcbc12775f186e86aac27bed1dfc4a365518:log:9', 'hash': '0xa99e41bd8b9ec59204fc6406cd58fcbc12775f186e86aac27bed1dfc4a365518', 'from': '0xf7f3c6b712e85e72b721f740fcec62b40a84bd3a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01582e13258e6b140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:44:13.000Z'}}, {'blockNum': '0x6782ca', 'uniqueId': '0x99847f00d1aa0a28310d84aab4c30f5595ff1519b89f8438ddabbe286f73fa4f:log:8', 'hash': '0x99847f00d1aa0a28310d84aab4c30f5595ff1519b89f8438ddabbe286f73fa4f', 'from': '0xa4dad4df5481ee2d17a23d979d6c8c5c91c1e350', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 3197.596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad578f0c6909f60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:45:28.000Z'}}, {'blockNum': '0x6782f0', 'uniqueId': '0x6be5c28e0f1d163228ec9c59677a1b9754b958ab119922b15e1482b4f5a48a19:log:3', 'hash': '0x6be5c28e0f1d163228ec9c59677a1b9754b958ab119922b15e1482b4f5a48a19', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xad0a2478ba25816365aa0e32d77aff92b9e34efc', 'value': 2925.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9e9ba1ae727de40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:53:25.000Z'}}, {'blockNum': '0x678301', 'uniqueId': '0xfbe4e9c36e85bde421aacd1b9726dfeff47036a746b6caaabb2ef9415ecd6944:log:25', 'hash': '0xfbe4e9c36e85bde421aacd1b9726dfeff47036a746b6caaabb2ef9415ecd6944', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb8be5c22e4ef41bd16f14d28720c9f03a32c10a5', 'value': 2461.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x856ddb6acc82888000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:58:30.000Z'}}, {'blockNum': '0x678303', 'uniqueId': '0x1eec37079c66f115dac8c4df22c24483e4d68d32ab8d1ed845b1c65ece021a3e:log:16', 'hash': '0x1eec37079c66f115dac8c4df22c24483e4d68d32ab8d1ed845b1c65ece021a3e', 'from': '0xb8be5c22e4ef41bd16f14d28720c9f03a32c10a5', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 2461.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x856ddb6acc82888000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:58:42.000Z'}}, {'blockNum': '0x678396', 'uniqueId': '0x45cfe34369a92c61a78a143b5fd1488641754221f49246c3cdd949696f11f936:log:0', 'hash': '0x45cfe34369a92c61a78a143b5fd1488641754221f49246c3cdd949696f11f936', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x42f31164b0876c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T19:33:36.000Z'}}, {'blockNum': '0x6783be', 'uniqueId': '0xc19a66a9302c054eed24217352f2cb6f510bce1f8e63da47805eabb2aa51dfbf:log:151', 'hash': '0xc19a66a9302c054eed24217352f2cb6f510bce1f8e63da47805eabb2aa51dfbf', 'from': '0x1a2e8b0c196f1b64796fa9600d57725c0d9ecbe8', 'to': '0x89c163c19df2df16fb28154f68b8cd2cd0a06b7e', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T19:41:44.000Z'}}, {'blockNum': '0x6783f7', 'uniqueId': '0x0cc59a200ffb32216b9f99ccba6a0e9996f4ab46830685bbe8bb98c66b73d853:log:27', 'hash': '0x0cc59a200ffb32216b9f99ccba6a0e9996f4ab46830685bbe8bb98c66b73d853', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x42f31164b0876c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T19:54:58.000Z'}}, {'blockNum': '0x6783f9', 'uniqueId': '0x92ae88513833b9fa7672755c55c0705dc2f43db93406b7e57481c0ff1cd566f8:log:45', 'hash': '0x92ae88513833b9fa7672755c55c0705dc2f43db93406b7e57481c0ff1cd566f8', 'from': '0x1a2e8b0c196f1b64796fa9600d57725c0d9ecbe8', 'to': '0x89c163c19df2df16fb28154f68b8cd2cd0a06b7e', 'value': 7119.37, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0181f11b2ef60cc10000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T19:55:12.000Z'}}, {'blockNum': '0x678427', 'uniqueId': '0xdf43b7836584a319aa09fee58b9cc126fd56baf2c9d7eed3a54e2772a541c2b1:log:29', 'hash': '0xdf43b7836584a319aa09fee58b9cc126fd56baf2c9d7eed3a54e2772a541c2b1', 'from': '0x89c163c19df2df16fb28154f68b8cd2cd0a06b7e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8119.37, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b826e4dcbbeb610000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:04:39.000Z'}}, {'blockNum': '0x678442', 'uniqueId': '0x2a184310d0ac45ef725016407a0d8b1503457d27c58a26bd573326344beceec4:log:0', 'hash': '0x2a184310d0ac45ef725016407a0d8b1503457d27c58a26bd573326344beceec4', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x430ed2d217d6340000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:11:47.000Z'}}, {'blockNum': '0x67847b', 'uniqueId': '0x2f3c1ee24fbaeb2553df6318f5949dcbb76ceca175012c6290d29db1c9fddf3b:log:8', 'hash': '0x2f3c1ee24fbaeb2553df6318f5949dcbb76ceca175012c6290d29db1c9fddf3b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'value': 206.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b33031e7073f30000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:21:56.000Z'}}, {'blockNum': '0x678487', 'uniqueId': '0x2bbf3d7dccc1686b693bbb6d3a30a93316af0227ac0051c1d2db3b90cf164465:log:2', 'hash': '0x2bbf3d7dccc1686b693bbb6d3a30a93316af0227ac0051c1d2db3b90cf164465', 'from': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'to': '0xcdf20191fc4886dbe8a073ca06a0f0f7ac8cf78c', 'value': 206.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b33031e7073f30000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:25:09.000Z'}}, {'blockNum': '0x678488', 'uniqueId': '0xf19ce5f621dafe1d9c754632a66e552ececddd651b5851a928b673b5fa616b2a:log:5', 'hash': '0xf19ce5f621dafe1d9c754632a66e552ececddd651b5851a928b673b5fa616b2a', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x395c0e4dd04c9c5fd7ac1e578d65cabbf45a82e0', 'value': 2462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x85771d13c3d3b80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:25:24.000Z'}}, {'blockNum': '0x67848b', 'uniqueId': '0x8aedf8d302353dd09d8ca8c94c34774831bd0d2be0ad3fd7c15cdf48c5859dbf:log:12', 'hash': '0x8aedf8d302353dd09d8ca8c94c34774831bd0d2be0ad3fd7c15cdf48c5859dbf', 'from': '0x395c0e4dd04c9c5fd7ac1e578d65cabbf45a82e0', 'to': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'value': 2462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x85771d13c3d3b80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:25:42.000Z'}}, {'blockNum': '0x678490', 'uniqueId': '0x3ee6bef5474be4527fef4741448e8296f9b0bc1cdce8c9017c527cf6fe1993f5:log:0', 'hash': '0x3ee6bef5474be4527fef4741448e8296f9b0bc1cdce8c9017c527cf6fe1993f5', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x38ebad5cdc90280000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:26:54.000Z'}}, {'blockNum': '0x6784b3', 'uniqueId': '0x3707885084b1ba18105cbcc2ea1f0de42669612012981d7efb97c7e33de10847:log:5', 'hash': '0x3707885084b1ba18105cbcc2ea1f0de42669612012981d7efb97c7e33de10847', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7bfa802ef4665c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:34:26.000Z'}}, {'blockNum': '0x6784ba', 'uniqueId': '0x124c9da9631bb51a1cdf059b698b7378ebf495f41817323bb7b02d5f6ac9ba86:log:4', 'hash': '0x124c9da9631bb51a1cdf059b698b7378ebf495f41817323bb7b02d5f6ac9ba86', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xddfeb815266c4fce1d0830d0a6c765ba6686f27c', 'value': 996.34461437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x36030f23e8d5685400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:36:14.000Z'}}, {'blockNum': '0x67854f', 'uniqueId': '0xffdf7147cd3cfeef2620e1b22a27c9b605cd5f7cf39e28d62fb2a4a9fccd8eb9:log:10', 'hash': '0xffdf7147cd3cfeef2620e1b22a27c9b605cd5f7cf39e28d62fb2a4a9fccd8eb9', 'from': '0xad0a2478ba25816365aa0e32d77aff92b9e34efc', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 2925.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9e9ba1ae727de40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:11:27.000Z'}}, {'blockNum': '0x678582', 'uniqueId': '0x9c67e717d31f285bed40d2ecf48472373d042776811a05211e47d4e204f64ff4:log:20', 'hash': '0x9c67e717d31f285bed40d2ecf48472373d042776811a05211e47d4e204f64ff4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'value': 870.82379035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2f351b97804afd0c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:22:56.000Z'}}, {'blockNum': '0x678584', 'uniqueId': '0xad060f7cd50896944b9518586317c0580967ed860ee07bda243a018da61f7f29:log:3', 'hash': '0xad060f7cd50896944b9518586317c0580967ed860ee07bda243a018da61f7f29', 'from': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 870.82379035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2f351b97804afd0c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:23:40.000Z'}}, {'blockNum': '0x67859a', 'uniqueId': '0x26ae7ed61e19f8d95b21abc47e0439b77163ff0ddc8e90c22a6e96df5a9e919f:log:18', 'hash': '0x26ae7ed61e19f8d95b21abc47e0439b77163ff0ddc8e90c22a6e96df5a9e919f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'value': 1959.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6a3db04488da8c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:29:23.000Z'}}, {'blockNum': '0x67859c', 'uniqueId': '0x2861c89a434f2905cf27ab65402753d5c6b3c18998b846a0dd760d690381135e:log:23', 'hash': '0x2861c89a434f2905cf27ab65402753d5c6b3c18998b846a0dd760d690381135e', 'from': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 1959.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6a3db04488da8c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:30:00.000Z'}}, {'blockNum': '0x6785a1', 'uniqueId': '0xfa548146214aae1fe95e672cab229220befe339ac27c6d684d6e203b4eda8517:log:6', 'hash': '0xfa548146214aae1fe95e672cab229220befe339ac27c6d684d6e203b4eda8517', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'value': 2522.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x88c2e211a1fb780000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:30:51.000Z'}}, {'blockNum': '0x6785a3', 'uniqueId': '0xa51dbba2f8153bd065dc9d018499cd6391ad974f4459b535cc268d9ea28a00fd:log:14', 'hash': '0xa51dbba2f8153bd065dc9d018499cd6391ad974f4459b535cc268d9ea28a00fd', 'from': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 2522.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x88c2e211a1fb780000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:31:06.000Z'}}, {'blockNum': '0x6785bb', 'uniqueId': '0x998214faf266cf74476c9ac486a0208801bfd61b4065916477645828105d634d:log:13', 'hash': '0x998214faf266cf74476c9ac486a0208801bfd61b4065916477645828105d634d', 'from': '0x5735fbac26bb21ca3c5228022cc382136038087c', 'to': '0xd4c7c7664fa0ed4557071a67ff1de9dfe391c72d', 'value': 2097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x71adb8959e2a240000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:36:35.000Z'}}, {'blockNum': '0x6785e5', 'uniqueId': '0xb84255356f318a878794ed3f53335d45485e1759ad27c0f782ae88945e7a62cb:log:25', 'hash': '0xb84255356f318a878794ed3f53335d45485e1759ad27c0f782ae88945e7a62cb', 'from': '0xd4c7c7664fa0ed4557071a67ff1de9dfe391c72d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x71adb8959e2a240000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:44:02.000Z'}}, {'blockNum': '0x67867c', 'uniqueId': '0x26a991a913be2f9eea0249cb56d4fa3d6e267094c7ba9573b2f63798827d358d:log:65', 'hash': '0x26a991a913be2f9eea0249cb56d4fa3d6e267094c7ba9573b2f63798827d358d', 'from': '0x5735fbac26bb21ca3c5228022cc382136038087c', 'to': '0xc36fe8ea0a785dc7d80620d8271f8d8ef00364c9', 'value': 414.62245983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x167a0ae27391d19c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T22:27:11.000Z'}}, {'blockNum': '0x678695', 'uniqueId': '0x55dda42c15d43c9fdaefc7b78a96d27fb588e50a140af20143fecdfb67ed7555:log:6', 'hash': '0x55dda42c15d43c9fdaefc7b78a96d27fb588e50a140af20143fecdfb67ed7555', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'value': 36371.62466682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07b3b5b07958a97ea800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T22:32:03.000Z'}}, {'blockNum': '0x6786d9', 'uniqueId': '0x0dfeecba761c2164d476bc21371213e2e5638fff540d5b7c671dbd6c27ab06b7:log:1', 'hash': '0x0dfeecba761c2164d476bc21371213e2e5638fff540d5b7c671dbd6c27ab06b7', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 36371.62466682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07b3b5b07958a97ea800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T22:45:19.000Z'}}, {'blockNum': '0x678707', 'uniqueId': '0xdf606cd85fda49c40c9b1326c5b8379ce19e0d7ce3ea174c186077d0d229d9fa:log:18', 'hash': '0xdf606cd85fda49c40c9b1326c5b8379ce19e0d7ce3ea174c186077d0d229d9fa', 'from': '0xc36fe8ea0a785dc7d80620d8271f8d8ef00364c9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 414.62245983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x167a0ae27391d19c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T22:54:27.000Z'}}, {'blockNum': '0x678728', 'uniqueId': '0x2c9332867df2bc6a9ad019e31a4f18a8853bb5871a22d000066175d873cecaf9:log:4', 'hash': '0x2c9332867df2bc6a9ad019e31a4f18a8853bb5871a22d000066175d873cecaf9', 'from': '0x25be66eecae4a2555c452e2c0fbec849e067c0d7', 'to': '0xe74d7ea4244bd0d316d52f647d14262226ada36d', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3782dace9d900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T23:01:52.000Z'}}, {'blockNum': '0x67881a', 'uniqueId': '0xd51d87a3311ea09628cc7bcbb2679ab0eeb74d920aed0930cc9dc14ce1250e60:log:58', 'hash': '0xd51d87a3311ea09628cc7bcbb2679ab0eeb74d920aed0930cc9dc14ce1250e60', 'from': '0x01aaffd0f7c00578e7415af6d73c16dc2a7463b0', 'to': '0x9cec467ac2c5fc3b6d9bff622beec4f977b48c24', 'value': 5.224227204351692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x48802ef695508b08', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T23:57:22.000Z'}}, {'blockNum': '0x678886', 'uniqueId': '0x42ac4949c0ed2da4a01908b1c2ee2cebbb312b6191da87c9f3a71effcfcfcefe:log:2', 'hash': '0x42ac4949c0ed2da4a01908b1c2ee2cebbb312b6191da87c9f3a71effcfcfcefe', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 36076.48589279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07a3b5d0ea140b0f9c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T00:24:26.000Z'}}, {'blockNum': '0x6788dc', 'uniqueId': '0x1c184e3d01189861be51a3c25010adddc41eeab121b68be53b6587427f582616:log:76', 'hash': '0x1c184e3d01189861be51a3c25010adddc41eeab121b68be53b6587427f582616', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36076.48589279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07a3b5d0ea140b0f9c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T00:43:56.000Z'}}, {'blockNum': '0x6788ec', 'uniqueId': '0x780c96fab0ad15ccc270eadc2f41e5f863ae6a1fc775d9cb87d803620ae00751:log:75', 'hash': '0x780c96fab0ad15ccc270eadc2f41e5f863ae6a1fc775d9cb87d803620ae00751', 'from': '0x2fff2815f159f549c6c6b6f7a4a5b4ef845266c5', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1e-18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T00:48:17.000Z'}}, {'blockNum': '0x6788f5', 'uniqueId': '0xa484952ca331f2205d39de68cb0a0c7db1aa6e64262c7ed41b70e8d220078bd8:log:61', 'hash': '0xa484952ca331f2205d39de68cb0a0c7db1aa6e64262c7ed41b70e8d220078bd8', 'from': '0x4d1f5a0bfb2c752caa8c86342224b7c5e15b8dd7', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 195.504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a9929bc2ce7f80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T00:50:12.000Z'}}, {'blockNum': '0x678927', 'uniqueId': '0xb0ecd0443341221f560cee2954d7bed43aca573c723d5872ab720ac9b85b489a:log:6', 'hash': '0xb0ecd0443341221f560cee2954d7bed43aca573c723d5872ab720ac9b85b489a', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x592b53d808e888e09a9c79d0aeacb621483d334f', 'value': 1.885427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1a2a61ddf8ee3000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T01:02:14.000Z'}}, {'blockNum': '0x678997', 'uniqueId': '0xad0a63763006f85c4a35686d2de7d51cbce880c95315a063afcaaa06c21c8dac:log:0', 'hash': '0xad0a63763006f85c4a35686d2de7d51cbce880c95315a063afcaaa06c21c8dac', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x964e58de799aa524adbfa40047b4f8685e898ac1', 'value': 2355.724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7fb43ce0d6de4e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T01:29:13.000Z'}}, {'blockNum': '0x678998', 'uniqueId': '0xbcc0bf352fe59dc07bc814baeeeaf96d3bd0c5e80534c565ece9cad04745ac62:log:35', 'hash': '0xbcc0bf352fe59dc07bc814baeeeaf96d3bd0c5e80534c565ece9cad04745ac62', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa129061235ba49bb491af49b0ad1cb155693311a', 'value': 1514.051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5213adb2b6c8f38000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T01:29:39.000Z'}}, {'blockNum': '0x6789a9', 'uniqueId': '0x75edf4f490f3d2dcd3264cf0f78d658df9c4599e12b5e565e5cf1d39f25a6a93:log:71', 'hash': '0x75edf4f490f3d2dcd3264cf0f78d658df9c4599e12b5e565e5cf1d39f25a6a93', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'value': 530, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1cbb3a3ff08d080000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T01:32:39.000Z'}}, {'blockNum': '0x6789ab', 'uniqueId': '0x49c547221c1ef5e987c76c90d278e4faab66c0c75cc4ec52903db97ce4cefa77:log:8', 'hash': '0x49c547221c1ef5e987c76c90d278e4faab66c0c75cc4ec52903db97ce4cefa77', 'from': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 530, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1cbb3a3ff08d080000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T01:33:20.000Z'}}, {'blockNum': '0x6789da', 'uniqueId': '0x916f1b1d7cbc4b48eb6db9376370211f3772845a74d44348dc19846bd874fb29:log:21', 'hash': '0x916f1b1d7cbc4b48eb6db9376370211f3772845a74d44348dc19846bd874fb29', 'from': '0xa129061235ba49bb491af49b0ad1cb155693311a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1514.051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5213adb2b6c8f38000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T01:44:20.000Z'}}, {'blockNum': '0x6789e4', 'uniqueId': '0x96b710371fb1702f147d717d9e36f11b4c6f9a23bb928a43fdc1a16d54fd0254:log:4', 'hash': '0x96b710371fb1702f147d717d9e36f11b4c6f9a23bb928a43fdc1a16d54fd0254', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9dd12f3f516cc2bdaf283ccc61fc3fae393d3b5f', 'value': 7989.346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b11a72d1a177fd0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T01:46:59.000Z'}}, {'blockNum': '0x678a36', 'uniqueId': '0x0cac3f27abb053a6617e9cfabbdf6bc3e9aa52932e74a7ea7db6d4c17aea270c:log:4', 'hash': '0x0cac3f27abb053a6617e9cfabbdf6bc3e9aa52932e74a7ea7db6d4c17aea270c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xddfeb815266c4fce1d0830d0a6c765ba6686f27c', 'value': 2091.94045982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7167817ca1766cb800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T02:09:10.000Z'}}, {'blockNum': '0x678a53', 'uniqueId': '0x96ec8724ddd8f2709f8c4206db2277a901d182101f6c9a216625e5af7b6db5d6:log:0', 'hash': '0x96ec8724ddd8f2709f8c4206db2277a901d182101f6c9a216625e5af7b6db5d6', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0x93b9f8533a14eccb4173704ceda727b830e57620', 'value': 3196.596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad49ae55b562920000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T02:16:26.000Z'}}, {'blockNum': '0x678a7f', 'uniqueId': '0x77c1d71e5cc9064205b191bf4851ec614c86ed2dd23eed28bf89e2618d7bd821:log:18', 'hash': '0x77c1d71e5cc9064205b191bf4851ec614c86ed2dd23eed28bf89e2618d7bd821', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'value': 26663.63629495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05a570496441e35bfc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T02:28:37.000Z'}}, {'blockNum': '0x678a87', 'uniqueId': '0xd5f43b2c8810a2deeedd5dbfef8cc433ab9290eaa23b6d7994e143661d6b71cf:log:12', 'hash': '0xd5f43b2c8810a2deeedd5dbfef8cc433ab9290eaa23b6d7994e143661d6b71cf', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 26663.63629495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05a570496441e35bfc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T02:30:16.000Z'}}, {'blockNum': '0x678a93', 'uniqueId': '0x4ae4bce8c26b2f062b407a51ddeeab16f66e079e2923c6615911e192fa2c273c:log:9', 'hash': '0x4ae4bce8c26b2f062b407a51ddeeab16f66e079e2923c6615911e192fa2c273c', 'from': '0x93b9f8533a14eccb4173704ceda727b830e57620', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3196.596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad49ae55b562920000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T02:34:19.000Z'}}, {'blockNum': '0x678b31', 'uniqueId': '0x686f3ccce7869b4062a1df2bde74ce4421149fa89c10b54ce47bcb139c0abe14:log:16', 'hash': '0x686f3ccce7869b4062a1df2bde74ce4421149fa89c10b54ce47bcb139c0abe14', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x665ac2d62195c6b7d3a56a4028209f7774fe1bff', 'value': 12475.81, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02a450a4d753621d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:08:49.000Z'}}, {'blockNum': '0x678b70', 'uniqueId': '0x0f3796ddccd277858da9c532beec9346843c28cf627f42cee45e881e9c1cfc20:log:3', 'hash': '0x0f3796ddccd277858da9c532beec9346843c28cf627f42cee45e881e9c1cfc20', 'from': '0x665ac2d62195c6b7d3a56a4028209f7774fe1bff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12475.81, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02a450a4d753621d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:24:09.000Z'}}, {'blockNum': '0x678b79', 'uniqueId': '0xfc676853dba005ffa2e2e25d649fc6ea46eeb2e3cfac323e4d7665de5d632581:log:115', 'hash': '0xfc676853dba005ffa2e2e25d649fc6ea46eeb2e3cfac323e4d7665de5d632581', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4148.457282767102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xe0e368ef353f4d0c60', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:25:58.000Z'}}, {'blockNum': '0x678b79', 'uniqueId': '0xfc676853dba005ffa2e2e25d649fc6ea46eeb2e3cfac323e4d7665de5d632581:log:117', 'hash': '0xfc676853dba005ffa2e2e25d649fc6ea46eeb2e3cfac323e4d7665de5d632581', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0xe8e70e656d43f828c543cb8d4d190362d65204bd', 'value': 4148.457282767102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xe0e368ef353f4d0c60', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:25:58.000Z'}}, {'blockNum': '0x678b8d', 'uniqueId': '0xf5af9366e1f27d3a616af239f091811e658b65400078a13adc34fe016710e165:log:55', 'hash': '0xf5af9366e1f27d3a616af239f091811e658b65400078a13adc34fe016710e165', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x19a43191f047c40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:30:16.000Z'}}, {'blockNum': '0x678b9a', 'uniqueId': '0x4aa49fccc0f9def89a55c9b10f0a7fcc253f652e137c5963833cb5afc7560023:log:48', 'hash': '0x4aa49fccc0f9def89a55c9b10f0a7fcc253f652e137c5963833cb5afc7560023', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 3196.763511874489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad4c0174def124ea43', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:33:44.000Z'}}, {'blockNum': '0x678b9a', 'uniqueId': '0x4aa49fccc0f9def89a55c9b10f0a7fcc253f652e137c5963833cb5afc7560023:log:50', 'hash': '0x4aa49fccc0f9def89a55c9b10f0a7fcc253f652e137c5963833cb5afc7560023', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0xe8e70e656d43f828c543cb8d4d190362d65204bd', 'value': 3196.763511874489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad4c0174def124ea43', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:33:44.000Z'}}, {'blockNum': '0x678bbf', 'uniqueId': '0x35cf6ee516b3ae534aea88ca780f4edf27746303e3c29143529c3991e258f4f9:log:10', 'hash': '0x35cf6ee516b3ae534aea88ca780f4edf27746303e3c29143529c3991e258f4f9', 'from': '0xe1255e8e1ab7bba0c732f33940e76b32dd15f1f1', 'to': '0x35d5b964c4a209984e2c0af3eb5ba5342bb694b2', 'value': 2390.604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x81984b880983ee0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:42:45.000Z'}}, {'blockNum': '0x678bd9', 'uniqueId': '0x7749d75c682d9ce99f78296bd7eac9821222d74ef2501551830a8d9f15a7b269:log:5', 'hash': '0x7749d75c682d9ce99f78296bd7eac9821222d74ef2501551830a8d9f15a7b269', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'value': 36072.14772216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07a3799ca2dffae0e000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:49:06.000Z'}}, {'blockNum': '0x678bd9', 'uniqueId': '0x46589082be567e09abf0ad350ed487f71e802128b5a91bdf81c0d0c09405c5f9:log:6', 'hash': '0x46589082be567e09abf0ad350ed487f71e802128b5a91bdf81c0d0c09405c5f9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x54d955860b266feeb292443a9e055ebcd1e656ae', 'value': 6144.83895892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x014d1cc56c62b7bed000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:49:06.000Z'}}, {'blockNum': '0x678bdb', 'uniqueId': '0x552cc7d17dc76b6e87e39e73ba2b8c2649dfa3f32bff297637d345bec92f549d:log:4', 'hash': '0x552cc7d17dc76b6e87e39e73ba2b8c2649dfa3f32bff297637d345bec92f549d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd6e1e7385ad23732feb6675b0d6828165a11afbd', 'value': 2892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9cc68ff586fdb00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:49:27.000Z'}}, {'blockNum': '0x678be5', 'uniqueId': '0x037d1bfa8206613173baa818ccbabbdbbb60b33f1212a64c8f6d6a3aff86c462:log:20', 'hash': '0x037d1bfa8206613173baa818ccbabbdbbb60b33f1212a64c8f6d6a3aff86c462', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 6472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x015ed90aeddfd8200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:53:16.000Z'}}, {'blockNum': '0x678bf3', 'uniqueId': '0x2e6a88816aacd824d93eca9bfe6cc06d602e863a8081dfad0c6238c0b15bb0b2:log:17', 'hash': '0x2e6a88816aacd824d93eca9bfe6cc06d602e863a8081dfad0c6238c0b15bb0b2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe7a153101f16fd83825692fa5bbd5d3d3dbc15dd', 'value': 8076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b5cd03ab84a6b00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:56:59.000Z'}}, {'blockNum': '0x678c00', 'uniqueId': '0x80241b249df1361f892294ffa639082af56c57fb52a3d52ac87ea053315c351e:log:29', 'hash': '0x80241b249df1361f892294ffa639082af56c57fb52a3d52ac87ea053315c351e', 'from': '0x54d955860b266feeb292443a9e055ebcd1e656ae', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 6144.83895892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x014d1cc56c62b7bed000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T04:01:17.000Z'}}, {'blockNum': '0x678c00', 'uniqueId': '0x98508cf1014f6b7b13b48097f3f581a935004da40b5a6f7743fb4fb8ab27de70:log:34', 'hash': '0x98508cf1014f6b7b13b48097f3f581a935004da40b5a6f7743fb4fb8ab27de70', 'from': '0xe7a153101f16fd83825692fa5bbd5d3d3dbc15dd', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 8076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b5cd03ab84a6b00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T04:01:17.000Z'}}, {'blockNum': '0x678c00', 'uniqueId': '0xc305bc4c801c2c90cf7a908326b1118efc3c50027b9f47819ce5f6fe7490d0f0:log:38', 'hash': '0xc305bc4c801c2c90cf7a908326b1118efc3c50027b9f47819ce5f6fe7490d0f0', 'from': '0xd6e1e7385ad23732feb6675b0d6828165a11afbd', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 2892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9cc68ff586fdb00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T04:01:17.000Z'}}, {'blockNum': '0x678c00', 'uniqueId': '0x4f2998e7fe31fa94273ef7dd4a37cb02b9436f7e7162e8ae4b91ed27d004e966:log:45', 'hash': '0x4f2998e7fe31fa94273ef7dd4a37cb02b9436f7e7162e8ae4b91ed27d004e966', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 36072.14772216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07a3799ca2dffae0e000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T04:01:17.000Z'}}]}}
Number of returned transfers: 136
Answer is complete
symbol OAX
group BPG
date 2018-12-07
hour 17:00
exchange binance
Name: 266, dtype: object
HERE
Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps: 2018-12-07 17:00:00 2018-12-07 05:00:00 2018-12-08 05:00:00
Unix timestamps: 1544155200.0 1544241600.0
Hex Block Numbers: 0x6860a8 0x687814
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x686c31', 'uniqueId': '0xda00eeab7a1253f9eeb0bf902002c1ceb5768cec58670fd52c78a26f489be8b2:log:1', 'hash': '0xda00eeab7a1253f9eeb0bf902002c1ceb5768cec58670fd52c78a26f489be8b2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x62229e9ece81a7c142ca71d615607abd7eaff362', 'value': 219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0bdf3c4bb0328c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-07T15:50:52.000Z'}}, {'blockNum': '0x686d92', 'uniqueId': '0xf0f850786fd6f24228d9745e12457fb1be72bdd275bc8f22793171caa479e36c:log:2', 'hash': '0xf0f850786fd6f24228d9745e12457fb1be72bdd275bc8f22793171caa479e36c', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x7b4bd0f6a8852a5982e5b5e9841d5fc54d933672', 'value': 1914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x67c215fb3181a80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-07T17:13:37.000Z'}}, {'blockNum': '0x686e0e', 'uniqueId': '0xe8ed2649266d4e443f61a81c66753bb49b8aa12b46e17b3d337f7b676085896a:log:13', 'hash': '0xe8ed2649266d4e443f61a81c66753bb49b8aa12b46e17b3d337f7b676085896a', 'from': '0x7b4bd0f6a8852a5982e5b5e9841d5fc54d933672', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x67c215fb3181a80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-07T17:43:18.000Z'}}]}}
Number of returned transfers: 3
Answer is complete
symbol EVX
group BPG
date 2018-12-10
hour 17:00
exchange binance
Name: 267, dtype: object
HERE
Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps: 2018-12-10 17:00:00 2018-12-10 05:00:00 2018-12-11 05:00:00
Unix timestamps: 1544414400.0 1544500800.0
Hex Block Numbers: 0x68a7aa 0x68bf92
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x68adf3', 'uniqueId': '0x94aacc8a10de35133576df46082ed2f3c78f99e51457dbc94e7f2ad6ec5543bf:log:2', 'hash': '0x94aacc8a10de35133576df46082ed2f3c78f99e51457dbc94e7f2ad6ec5543bf', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa01090', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:13:09.000Z'}}, {'blockNum': '0x68ae24', 'uniqueId': '0x4b09155341772804596899120fe3070322e8a63451a580779e925bf3769d8ac3:log:0', 'hash': '0x4b09155341772804596899120fe3070322e8a63451a580779e925bf3769d8ac3', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x799cd0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:26:16.000Z'}}, {'blockNum': '0x68ae3f', 'uniqueId': '0xb05e6c283793cc6c255e3f4937545bb1acb336bb5a9895e21e4a9ddedc90609c:log:31', 'hash': '0xb05e6c283793cc6c255e3f4937545bb1acb336bb5a9895e21e4a9ddedc90609c', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0119ad60', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:32:13.000Z'}}, {'blockNum': '0x68ae46', 'uniqueId': '0xc828b199b1b1a33ba19e4d10eaf9d6e18038bb63c1a1e18fdf51de94ea438b31:log:2', 'hash': '0xc828b199b1b1a33ba19e4d10eaf9d6e18038bb63c1a1e18fdf51de94ea438b31', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014fffa0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:33:33.000Z'}}, {'blockNum': '0x68ae55', 'uniqueId': '0xc44a2589617610b3b53b8a1938c6e2177b5ba570d2f46d63da739c4bc2c014ca:log:0', 'hash': '0xc44a2589617610b3b53b8a1938c6e2177b5ba570d2f46d63da739c4bc2c014ca', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x829d80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:38:04.000Z'}}, {'blockNum': '0x68ae88', 'uniqueId': '0x1b3ff615dd6b7c0c6118d7b5294390f1c40c49fc27e92963cd1e4bd313ece6bf:log:10', 'hash': '0x1b3ff615dd6b7c0c6118d7b5294390f1c40c49fc27e92963cd1e4bd313ece6bf', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014fffa0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:51:18.000Z'}}, {'blockNum': '0x68ae90', 'uniqueId': '0xa6b25101b7068dbcbaf01f2fc0e4363081c25e26ddbf4f7808df48da9ea46790:log:0', 'hash': '0xa6b25101b7068dbcbaf01f2fc0e4363081c25e26ddbf4f7808df48da9ea46790', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xbdaab0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:52:39.000Z'}}, {'blockNum': '0x68ae9b', 'uniqueId': '0x1e877082d27a1c623c9989703b5539dc2e95f39b8865f1687b2440d050b72ff9:log:0', 'hash': '0x1e877082d27a1c623c9989703b5539dc2e95f39b8865f1687b2440d050b72ff9', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0133c510', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:56:32.000Z'}}, {'blockNum': '0x68aeaf', 'uniqueId': '0xafaad7b87ea825d97e7a8eb1df7c0dcdbdce90a12e6057e29084a197aa6bb509:log:9', 'hash': '0xafaad7b87ea825d97e7a8eb1df7c0dcdbdce90a12e6057e29084a197aa6bb509', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0133c510', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T11:01:02.000Z'}}, {'blockNum': '0x68af09', 'uniqueId': '0xc8476706994e3c16968e72dade8b66a2bb83b799c442517c80f85774a6257683:log:8', 'hash': '0xc8476706994e3c16968e72dade8b66a2bb83b799c442517c80f85774a6257683', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01404830', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T11:23:13.000Z'}}, {'blockNum': '0x68af3a', 'uniqueId': '0x31330e2a65114701f457f278659903b67b057a5a1a6ee00a4ccdbf26698fbace:log:5', 'hash': '0x31330e2a65114701f457f278659903b67b057a5a1a6ee00a4ccdbf26698fbace', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x679b70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T11:37:17.000Z'}}, {'blockNum': '0x68af49', 'uniqueId': '0x82594c9e9e53c0c260208c09844bdff3a17a0b986c61edb1e45df404008ba312:log:36', 'hash': '0x82594c9e9e53c0c260208c09844bdff3a17a0b986c61edb1e45df404008ba312', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 6163.8519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03ac8777', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T11:41:07.000Z'}}, {'blockNum': '0x68af64', 'uniqueId': '0xf0c3d52c5116ad933dfdd295c62bed19decb6b99cb821d1f2b98d3f7422bd0f4:log:32', 'hash': '0xf0c3d52c5116ad933dfdd295c62bed19decb6b99cb821d1f2b98d3f7422bd0f4', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x679b70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T11:50:51.000Z'}}, {'blockNum': '0x68b474', 'uniqueId': '0xd77c176090bcae419b14d03b5767c3d0c6d717bcea4d827b16e843308acc112c:log:0', 'hash': '0xd77c176090bcae419b14d03b5767c3d0c6d717bcea4d827b16e843308acc112c', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xde2b00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T16:54:35.000Z'}}, {'blockNum': '0x68b49b', 'uniqueId': '0x8f7232dab1b013a40fcda0c893372b0ad03224594ea8dfbc675a14ec6391b34a:log:2', 'hash': '0x8f7232dab1b013a40fcda0c893372b0ad03224594ea8dfbc675a14ec6391b34a', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 4236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02865cc0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T17:02:45.000Z'}}, {'blockNum': '0x68b4a8', 'uniqueId': '0xe33fd2e20161abbbb7edd84adc8edbe5050c234bcb0aaa66667826c2bd62f6f4:log:68', 'hash': '0xe33fd2e20161abbbb7edd84adc8edbe5050c234bcb0aaa66667826c2bd62f6f4', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 3514.585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0218487a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T17:05:37.000Z'}}, {'blockNum': '0x68b4c3', 'uniqueId': '0xe8a574d02c973b1fe44c8c6e26e3f35b4f69e910e20b3a3241c7e1e83acc4ccb:log:46', 'hash': '0xe8a574d02c973b1fe44c8c6e26e3f35b4f69e910e20b3a3241c7e1e83acc4ccb', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 6011.0383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0395362f', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T17:11:45.000Z'}}, {'blockNum': '0x68b4c5', 'uniqueId': '0xd5e46ed374335c5a205140b6a1d2dcb5d71741a58de314bcf8136a6786a64911:log:17', 'hash': '0xd5e46ed374335c5a205140b6a1d2dcb5d71741a58de314bcf8136a6786a64911', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xde2b00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T17:12:17.000Z'}}, {'blockNum': '0x68b4ed', 'uniqueId': '0x40aa30f1f29ece434445b6c72762c5cfa609fed3a80bdc69ad749ec05d26b73f:log:8', 'hash': '0x40aa30f1f29ece434445b6c72762c5cfa609fed3a80bdc69ad749ec05d26b73f', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02865cc0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T17:21:04.000Z'}}, {'blockNum': '0x68b579', 'uniqueId': '0x4c4552a3be27609cb3edfa69be3c7370232b6bcdfb143c528c48124a0eaa84cd:log:2', 'hash': '0x4c4552a3be27609cb3edfa69be3c7370232b6bcdfb143c528c48124a0eaa84cd', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x735be6c32f1d58b41c3141dfdf29f126e87a5ce2', 'value': 115.182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11934c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T17:54:37.000Z'}}, {'blockNum': '0x68b788', 'uniqueId': '0x28dfc2991b379f6a064632868e2b3bd9208afecfd180bb754930b9e31dd35f74:log:18', 'hash': '0x28dfc2991b379f6a064632868e2b3bd9208afecfd180bb754930b9e31dd35f74', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x29d770bb6fcbcfe107171d77f99c6eec4a73090f', 'value': 12.2851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01dfe3', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T19:59:36.000Z'}}, {'blockNum': '0x68b791', 'uniqueId': '0x8574344b3b599eae9d91bd39c4c711062e688499d56a14abe5d8d68b4148d6b7:log:8', 'hash': '0x8574344b3b599eae9d91bd39c4c711062e688499d56a14abe5d8d68b4148d6b7', 'from': '0x29d770bb6fcbcfe107171d77f99c6eec4a73090f', 'to': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'value': 12.2851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01dfe3', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T20:01:08.000Z'}}, {'blockNum': '0x68bc92', 'uniqueId': '0xf27928210a191dc98b30e2ea5c2d726fb38015b414334b150d4d87ebcb65a6c3:log:13', 'hash': '0xf27928210a191dc98b30e2ea5c2d726fb38015b414334b150d4d87ebcb65a6c3', 'from': '0xdc1e9b7c72c18a8493625ccb759880ff40231113', 'to': '0x6e7ccf5f6b8322b557fba78a0e8479e791e763df', 'value': 271.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2965a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-11T00:58:10.000Z'}}, {'blockNum': '0x68bceb', 'uniqueId': '0x503911e13f81cf9a73e71522ccb7a999cc951951286931a659070427932e7812:log:11', 'hash': '0x503911e13f81cf9a73e71522ccb7a999cc951951286931a659070427932e7812', 'from': '0x6e7ccf5f6b8322b557fba78a0e8479e791e763df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 271.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2965a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-11T01:21:07.000Z'}}]}}
Number of returned transfers: 24
Answer is complete
symbol HC
group BPG
date 2018-12-27
hour 17:00
exchange binance
Name: 268, dtype: object
HERE
{'stratis': ''}
No contract for ethereum specified
Symbol: HC, Contract:
Datetime timestamps: 2018-12-27 17:00:00 2018-12-27 05:00:00 2018-12-28 05:00:00
Unix timestamps: 1545883200.0 1545969600.0
Hex Block Numbers: 0x6a3368 0x6a4a6c
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol EVX
group BPG
date 2019-01-08
hour 16:00
exchange binance
Name: 269, dtype: object
HERE
Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps: 2019-01-08 16:00:00 2019-01-08 04:00:00 2019-01-09 04:00:00
Unix timestamps: 1546916400.0 1547002800.0
Hex Block Numbers: 0x6b4143 0x6b56f9
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x6b422e', 'uniqueId': '0x525fd680b734e806e2dde54ad9d5bc05768c75e6437a68e1489993761088b142:log:1', 'hash': '0x525fd680b734e806e2dde54ad9d5bc05768c75e6437a68e1489993761088b142', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xfe9559b0eaebac67b78fac42b4ec7cb70cbb638d', 'value': 1422.3284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xd907b4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T04:07:28.000Z'}}, {'blockNum': '0x6b4262', 'uniqueId': '0x195d43ab3bdcfb175e056e5bbfa3c11a87b2f96c83effd81213cbe319f1d754b:log:43', 'hash': '0x195d43ab3bdcfb175e056e5bbfa3c11a87b2f96c83effd81213cbe319f1d754b', 'from': '0xfe9559b0eaebac67b78fac42b4ec7cb70cbb638d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1422.3284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xd907b4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T04:20:54.000Z'}}, {'blockNum': '0x6b42c0', 'uniqueId': '0x11aed15a444ff40a4e98025dd35cc2a1e0aeb243e01afc91c1a1acdb4b86c396:log:7', 'hash': '0x11aed15a444ff40a4e98025dd35cc2a1e0aeb243e01afc91c1a1acdb4b86c396', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 2551.556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01855628', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T04:47:33.000Z'}}, {'blockNum': '0x6b42d8', 'uniqueId': '0x762820be2cb71ae9e8aaf1c0bd45e61fb572d2e118e57cfa929431515a686f80:log:31', 'hash': '0x762820be2cb71ae9e8aaf1c0bd45e61fb572d2e118e57cfa929431515a686f80', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 2194.687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014ee1f6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T04:53:11.000Z'}}, {'blockNum': '0x6b4491', 'uniqueId': '0xa03561d6ef30b3059a4dcce97f6d9fd6699c7703ef7aa882ebad95c1ac5da0af:log:43', 'hash': '0xa03561d6ef30b3059a4dcce97f6d9fd6699c7703ef7aa882ebad95c1ac5da0af', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x7a97fe3679c441f8092867af5dcddfae0474ec32', 'value': 7.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x012494', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T06:45:11.000Z'}}, {'blockNum': '0x6b46fd', 'uniqueId': '0x1be8d83d9c16e8b66565e09114c1b01464b524ed421f60b5b7ac4e71faefd7a4:log:27', 'hash': '0x1be8d83d9c16e8b66565e09114c1b01464b524ed421f60b5b7ac4e71faefd7a4', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc6844011ba0bd7b30c54fb377617c0bce1e806d5', 'value': 82.7547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0ca09b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T09:27:49.000Z'}}, {'blockNum': '0x6b4ac5', 'uniqueId': '0x223cf56508e2c5f30d7a3e55d1a5ba747b40b4e902ad43c7f05c884269bc2b18:log:46', 'hash': '0x223cf56508e2c5f30d7a3e55d1a5ba747b40b4e902ad43c7f05c884269bc2b18', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 6197.5799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03b1acf7', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T13:22:13.000Z'}}, {'blockNum': '0x6b4bcd', 'uniqueId': '0xde0c8ae3b162b584f85fc7e3d69167db4be8dcd81ee45dad0ac27765f6cd7ae4:log:3', 'hash': '0xde0c8ae3b162b584f85fc7e3d69167db4be8dcd81ee45dad0ac27765f6cd7ae4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x735be6c32f1d58b41c3141dfdf29f126e87a5ce2', 'value': 151.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x171240', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T14:35:34.000Z'}}, {'blockNum': '0x6b4bf5', 'uniqueId': '0x2f3f8933ce0d114706b69fb944100a0c5dee38a0ec3eaea9eba3a0b5e3b00a8d:log:20', 'hash': '0x2f3f8933ce0d114706b69fb944100a0c5dee38a0ec3eaea9eba3a0b5e3b00a8d', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa9f987c7deaea1fc2cc08f696d3fed5b960b4fae', 'value': 295.438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2d148c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T14:47:17.000Z'}}, {'blockNum': '0x6b4c2a', 'uniqueId': '0xa1c0ffb2ade5ad43cad15662d2fa06cfa549b38ebb7ab3964ce21f95991de4b4:log:17', 'hash': '0xa1c0ffb2ade5ad43cad15662d2fa06cfa549b38ebb7ab3964ce21f95991de4b4', 'from': '0xa9f987c7deaea1fc2cc08f696d3fed5b960b4fae', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 295.438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2d148c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T15:01:39.000Z'}}, {'blockNum': '0x6b4d12', 'uniqueId': '0x2ed801b94405cea84a46c7ce6d7c1aa0841d91936bd6fc79e399baccce21a41f:log:20', 'hash': '0x2ed801b94405cea84a46c7ce6d7c1aa0841d91936bd6fc79e399baccce21a41f', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01312d00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T16:03:19.000Z'}}, {'blockNum': '0x6b4d28', 'uniqueId': '0x47b24ae5f4d0f35f174ab6195aa083c995f81385ab341824e8d0009fc3db2a09:log:7', 'hash': '0x47b24ae5f4d0f35f174ab6195aa083c995f81385ab341824e8d0009fc3db2a09', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 3407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0207ddf0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T16:08:44.000Z'}}, {'blockNum': '0x6b4d40', 'uniqueId': '0x87c9036d8c57fbfc6803741223ac1d36bd3e9a0c0e3f1803b175f254bdf6d969:log:24', 'hash': '0x87c9036d8c57fbfc6803741223ac1d36bd3e9a0c0e3f1803b175f254bdf6d969', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01312d00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T16:14:32.000Z'}}, {'blockNum': '0x6b4e5e', 'uniqueId': '0x4727f7827e53d1496f3c55c275d198280cb2c126bc0b37bc28e8c0d3a5fd58fc:log:8', 'hash': '0x4727f7827e53d1496f3c55c275d198280cb2c126bc0b37bc28e8c0d3a5fd58fc', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xd3d2e6b1fd248647b296c0dd93c0b7e283b5217d', 'value': 57.5001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08c619', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T17:31:21.000Z'}}, {'blockNum': '0x6b4ec8', 'uniqueId': '0x3675a2a9d6550b71e7ff66e302680df7ad50de10ed0fb43de88ee44b4cb82a2a:log:7', 'hash': '0x3675a2a9d6550b71e7ff66e302680df7ad50de10ed0fb43de88ee44b4cb82a2a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x67b3ed835089a3f6c9159a02cf8b5a1d20365187', 'value': 1595.5989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xf37815', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T17:59:46.000Z'}}, {'blockNum': '0x6b500a', 'uniqueId': '0xc97c5caee63741e53ee0af08c7a4cd473db0ec4129d92da836bed69ce68a7908:log:16', 'hash': '0xc97c5caee63741e53ee0af08c7a4cd473db0ec4129d92da836bed69ce68a7908', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4303a8a30d81e47fb29a51354ec2729e14a70dff', 'value': 495.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4ba348', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T19:22:40.000Z'}}, {'blockNum': '0x6b5042', 'uniqueId': '0xba701f88616f48fa5f59ea76b63f596a84abfc35d4fc166ce62470d63f62c21c:log:1', 'hash': '0xba701f88616f48fa5f59ea76b63f596a84abfc35d4fc166ce62470d63f62c21c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8e7f254c1456e311c52296a3a747f50dd2f09a89', 'value': 575.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x57c4c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T19:37:59.000Z'}}, {'blockNum': '0x6b506c', 'uniqueId': '0x81e85b3cd5635c68bfdd9a686fbd8b87d39eacebab9814fe867975bcf2dcc9fe:log:7', 'hash': '0x81e85b3cd5635c68bfdd9a686fbd8b87d39eacebab9814fe867975bcf2dcc9fe', 'from': '0x4303a8a30d81e47fb29a51354ec2729e14a70dff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 495.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4ba348', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T19:52:53.000Z'}}, {'blockNum': '0x6b5088', 'uniqueId': '0xf15f6e8543d2af86282fb49b42f647b3ec71abcb1b9ae1cc2af537cc74036ddf:log:14', 'hash': '0xf15f6e8543d2af86282fb49b42f647b3ec71abcb1b9ae1cc2af537cc74036ddf', 'from': '0x8e7f254c1456e311c52296a3a747f50dd2f09a89', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 575.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x57c4c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T20:01:05.000Z'}}, {'blockNum': '0x6b5159', 'uniqueId': '0x70815476b92c222fadcc45e3a9755c8326b278b390dd2e5513aeb90f9399784b:log:0', 'hash': '0x70815476b92c222fadcc45e3a9755c8326b278b390dd2e5513aeb90f9399784b', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x37214ad3d231604a7402d52f9bbbfb11126b5c13', 'value': 77.8067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0bdf53', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T20:50:46.000Z'}}, {'blockNum': '0x6b522d', 'uniqueId': '0x4c543f0965a9764f4916e8dc10066663c56a3f8bc00c464156e1663112f60f7a:log:19', 'hash': '0x4c543f0965a9764f4916e8dc10066663c56a3f8bc00c464156e1663112f60f7a', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x4817be1733f0e508361b26bc9776b68fe8e5b977', 'value': 21.1991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033c17', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T21:43:20.000Z'}}, {'blockNum': '0x6b53db', 'uniqueId': '0x3da30ae2451aa5fa5f933fe087973303b5f584c0d73400d027aebae7b077b2d0:log:26', 'hash': '0x3da30ae2451aa5fa5f933fe087973303b5f584c0d73400d027aebae7b077b2d0', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x1605c1d29f561f436e204af0c9a51a1fe1f59710', 'value': 3112.8199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01dafa87', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T23:34:41.000Z'}}, {'blockNum': '0x6b541e', 'uniqueId': '0xff0f48b9a9ccad796b4a6c1302bf56bf273a1cd2e56918dd6ba2ed7d9b04cd29:log:9', 'hash': '0xff0f48b9a9ccad796b4a6c1302bf56bf273a1cd2e56918dd6ba2ed7d9b04cd29', 'from': '0x1605c1d29f561f436e204af0c9a51a1fe1f59710', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3112.8199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01dafa87', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T23:50:55.000Z'}}]}}
Number of returned transfers: 23
Answer is complete
symbol RDN
group BPG
date 2019-05-10
hour 15:59
exchange binance
Name: 270, dtype: object
HERE
Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps: 2019-05-10 15:59:00 2019-05-10 03:59:00 2019-05-11 03:59:00
Unix timestamps: 1557453540.0 1557539940.0
Hex Block Numbers: 0x75f347 0x760c52
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x75f347', 'uniqueId': '0x468f21680b9b7b7c737d6fac19d4b86640676d5dec4f4e2a7595c364b168db45:log:91', 'hash': '0x468f21680b9b7b7c737d6fac19d4b86640676d5dec4f4e2a7595c364b168db45', 'from': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 178.38048014901977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x09ab86c59861f1308e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T01:58:51.000Z'}}, {'blockNum': '0x75f347', 'uniqueId': '0x468f21680b9b7b7c737d6fac19d4b86640676d5dec4f4e2a7595c364b168db45:log:93', 'hash': '0x468f21680b9b7b7c737d6fac19d4b86640676d5dec4f4e2a7595c364b168db45', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 178.38048014901977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x09ab86c59861f1308e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T01:58:51.000Z'}}, {'blockNum': '0x75f347', 'uniqueId': '0x468f21680b9b7b7c737d6fac19d4b86640676d5dec4f4e2a7595c364b168db45:log:95', 'hash': '0x468f21680b9b7b7c737d6fac19d4b86640676d5dec4f4e2a7595c364b168db45', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xbd43eb8c323beaf77484784b6aade4e54e92086d', 'value': 150.95703893102015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x082ef3231a6444e549', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T01:58:51.000Z'}}, {'blockNum': '0x75f347', 'uniqueId': '0x468f21680b9b7b7c737d6fac19d4b86640676d5dec4f4e2a7595c364b168db45:log:100', 'hash': '0x468f21680b9b7b7c737d6fac19d4b86640676d5dec4f4e2a7595c364b168db45', 'from': '0xbd43eb8c323beaf77484784b6aade4e54e92086d', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 150.95703893102015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x082ef3231a6444e549', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T01:58:51.000Z'}}, {'blockNum': '0x75f35d', 'uniqueId': '0x3997678b27f1785ad1d4f9830fac76839de1a8f691a4d6c510bcec6a553e2b33:log:23', 'hash': '0x3997678b27f1785ad1d4f9830fac76839de1a8f691a4d6c510bcec6a553e2b33', 'from': '0xe14f0bc3d8faab523069bc670497c439e2777614', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 1496.299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x511d51ecc4a4378000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T02:02:45.000Z'}}, {'blockNum': '0x75f5d3', 'uniqueId': '0x828a00a29b6a9ae5afa75881ff3ea35e81905d2d2ea3b6623b53da483f1e0326:log:30', 'hash': '0x828a00a29b6a9ae5afa75881ff3ea35e81905d2d2ea3b6623b53da483f1e0326', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 1759.47888268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5f61acb1adc698b000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:30:17.000Z'}}, {'blockNum': '0x75f5de', 'uniqueId': '0xaeedfeef550d0ed6bd2030fcd450ba4cafb950099e5fc0d9194d16263a9c1649:log:7', 'hash': '0xaeedfeef550d0ed6bd2030fcd450ba4cafb950099e5fc0d9194d16263a9c1649', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1759.47888268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5f61acb1adc698b000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:32:55.000Z'}}, {'blockNum': '0x75f5de', 'uniqueId': '0xaeedfeef550d0ed6bd2030fcd450ba4cafb950099e5fc0d9194d16263a9c1649:log:9', 'hash': '0xaeedfeef550d0ed6bd2030fcd450ba4cafb950099e5fc0d9194d16263a9c1649', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1759.47888268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5f61acb1adc698b000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:32:55.000Z'}}, {'blockNum': '0x75f5df', 'uniqueId': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be:log:28', 'hash': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1140.5394756887104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dd42a324d3fdb9bbf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:32:56.000Z'}}, {'blockNum': '0x75f5df', 'uniqueId': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be:log:32', 'hash': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 1140.5394756887104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dd42a324d3fdb9bbf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:32:56.000Z'}}, {'blockNum': '0x75f5df', 'uniqueId': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be:log:33', 'hash': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1140.4653437382854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dd322d3af8444baed', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:32:56.000Z'}}, {'blockNum': '0x75f65c', 'uniqueId': '0x449871ab45f562f4c0172e567d6bc5e8e9c96922fa966e70e3bd9af55eaf2668:log:125', 'hash': '0x449871ab45f562f4c0172e567d6bc5e8e9c96922fa966e70e3bd9af55eaf2668', 'from': '0xd8b8e5635d316bd3561f0a2cabd5177870268328', 'to': '0x6b09463f42e4519c20d223cf11a0f695c543b1a6', 'value': 202.107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0af4cc4db0f3df8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T05:02:44.000Z'}}, {'blockNum': '0x75f694', 'uniqueId': '0xfa88f220b269996ee6a1c9b8973c2480fd135a331b9a431abc60dd467545224d:log:106', 'hash': '0xfa88f220b269996ee6a1c9b8973c2480fd135a331b9a431abc60dd467545224d', 'from': '0x14781b75f698b66acebc9abc2ff89343991eded1', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 636.99105882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x228806d912d20e2800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T05:14:55.000Z'}}, {'blockNum': '0x75f694', 'uniqueId': '0xcaecf56fd9ad7eab9b76e67ee8d8b41c9df8b0cd491a37f3dc0e1114e7d893c3:log:108', 'hash': '0xcaecf56fd9ad7eab9b76e67ee8d8b41c9df8b0cd491a37f3dc0e1114e7d893c3', 'from': '0x63675b1f88cf053a19e721221a93afb81e04f380', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 1696.8326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5bfc48637ede7d8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T05:14:55.000Z'}}, {'blockNum': '0x75f81b', 'uniqueId': '0x8a00bf2ab976d9b7b542f4b93f76d3701daa1e02bbe7c857b393c632fc1e1c51:log:12', 'hash': '0x8a00bf2ab976d9b7b542f4b93f76d3701daa1e02bbe7c857b393c632fc1e1c51', 'from': '0x50a32dd491485bfae6f85a6fee94ef0cadcc101c', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 7.782018706702859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6bff48c86877f975', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:42:39.000Z'}}, {'blockNum': '0x75f81b', 'uniqueId': '0x8a00bf2ab976d9b7b542f4b93f76d3701daa1e02bbe7c857b393c632fc1e1c51:log:13', 'hash': '0x8a00bf2ab976d9b7b542f4b93f76d3701daa1e02bbe7c857b393c632fc1e1c51', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 7.782018706702859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6bff48c86877f975', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:42:39.000Z'}}, {'blockNum': '0x75f823', 'uniqueId': '0xcffe553c93313cd39cd2b2f3d7ede6196d0dae561fe361750004a8fbe2168eb4:log:24', 'hash': '0xcffe553c93313cd39cd2b2f3d7ede6196d0dae561fe361750004a8fbe2168eb4', 'from': '0x2f94781daee522b2f68635e8ce7bc0578d9c56e3', 'to': '0x1d0d1e86d4ad1b87273892f77ee9cc55490d2196', 'value': 456.48922720435166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18bf0f858f0bf70b08', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:43:45.000Z'}}, {'blockNum': '0x75f849', 'uniqueId': '0x2630a46d345d988ac2f4059a6a6482e91140c27d6327ab5ac1d7470dbbb8f46e:log:111', 'hash': '0x2630a46d345d988ac2f4059a6a6482e91140c27d6327ab5ac1d7470dbbb8f46e', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 444.02153443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x181209610984072c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:52:13.000Z'}}, {'blockNum': '0x75f852', 'uniqueId': '0x5583844ac2e0355aae7dc99baaa1c402592722f658de7b0a88bc1898b05e18b8:log:118', 'hash': '0x5583844ac2e0355aae7dc99baaa1c402592722f658de7b0a88bc1898b05e18b8', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 444.02153443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x181209610984072c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:54:54.000Z'}}, {'blockNum': '0x75f852', 'uniqueId': '0x5583844ac2e0355aae7dc99baaa1c402592722f658de7b0a88bc1898b05e18b8:log:120', 'hash': '0x5583844ac2e0355aae7dc99baaa1c402592722f658de7b0a88bc1898b05e18b8', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 444.02153443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x181209610984072c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:54:54.000Z'}}, {'blockNum': '0x75f857', 'uniqueId': '0xd6bb7c8f937b0b7631ce4f0e6a0169c39f2adc4d722a5ad9a212cd9633bd19ec:log:34', 'hash': '0xd6bb7c8f937b0b7631ce4f0e6a0169c39f2adc4d722a5ad9a212cd9633bd19ec', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:55:45.000Z'}}, {'blockNum': '0x75f85a', 'uniqueId': '0x847d1478b95c71e88516cfd42e1335b951ffef646b563a813f5e2dc0953ef62c:log:34', 'hash': '0x847d1478b95c71e88516cfd42e1335b951ffef646b563a813f5e2dc0953ef62c', 'from': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:56:07.000Z'}}, {'blockNum': '0x75f861', 'uniqueId': '0x2ab1de47ee15c0359b9712604c8beaf108adbb81ac4470a4c27a40ec8f953314:log:81', 'hash': '0x2ab1de47ee15c0359b9712604c8beaf108adbb81ac4470a4c27a40ec8f953314', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:57:55.000Z'}}, {'blockNum': '0x75f862', 'uniqueId': '0x27076fac7729100e259e4a04b3260c93b63d136ef3dcd771c22e5a84514dc834:log:72', 'hash': '0x27076fac7729100e259e4a04b3260c93b63d136ef3dcd771c22e5a84514dc834', 'from': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'to': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:58:22.000Z'}}, {'blockNum': '0x75f86a', 'uniqueId': '0x244405f669c1102f0ecee02722a8c19a7eb2048325ba38d497fd7e0d532d63ae:log:6', 'hash': '0x244405f669c1102f0ecee02722a8c19a7eb2048325ba38d497fd7e0d532d63ae', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:00:29.000Z'}}, {'blockNum': '0x75f86e', 'uniqueId': '0xbfec6f2f6759a6da2c9467f9e1d75337afa8ee4ef60355a73c3812191d652415:log:4', 'hash': '0xbfec6f2f6759a6da2c9467f9e1d75337afa8ee4ef60355a73c3812191d652415', 'from': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:00:49.000Z'}}, {'blockNum': '0x75f876', 'uniqueId': '0xc72977ab5581ec3d88b65282f94c3370cc354c569912133b1ac6549d2ef84648:log:48', 'hash': '0xc72977ab5581ec3d88b65282f94c3370cc354c569912133b1ac6549d2ef84648', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:02:38.000Z'}}, {'blockNum': '0x75f879', 'uniqueId': '0x0243a4703d0773b2f8cd9aea80ce21695f935ed313d5cbc2ec2214db23d42a83:log:13', 'hash': '0x0243a4703d0773b2f8cd9aea80ce21695f935ed313d5cbc2ec2214db23d42a83', 'from': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'to': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:03:46.000Z'}}, {'blockNum': '0x75f87e', 'uniqueId': '0xf66843ccc76433cc2dc262f49e7329f640a6c3bf10f4a44ceac530b939b3af4f:log:148', 'hash': '0xf66843ccc76433cc2dc262f49e7329f640a6c3bf10f4a44ceac530b939b3af4f', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:05:13.000Z'}}, {'blockNum': '0x75f880', 'uniqueId': '0xeccddd220241ebfaffc977efd66abefb19302d2a371884588add1efebc5a5263:log:26', 'hash': '0xeccddd220241ebfaffc977efd66abefb19302d2a371884588add1efebc5a5263', 'from': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:05:44.000Z'}}, {'blockNum': '0x75f887', 'uniqueId': '0x07bf086b95f5c3bab52bdf8f348dae747a6519239c36caf242aa5f62dbd4046c:log:12', 'hash': '0x07bf086b95f5c3bab52bdf8f348dae747a6519239c36caf242aa5f62dbd4046c', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:07:00.000Z'}}, {'blockNum': '0x75f888', 'uniqueId': '0x637598a477201c382526b8331ef585e6fd89fb5ced6dc101f737db8a4ed95512:log:72', 'hash': '0x637598a477201c382526b8331ef585e6fd89fb5ced6dc101f737db8a4ed95512', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 656.9215158709343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x239c9e0e2a4e2b6e90', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:07:12.000Z'}}, {'blockNum': '0x75f888', 'uniqueId': '0x637598a477201c382526b8331ef585e6fd89fb5ced6dc101f737db8a4ed95512:log:76', 'hash': '0x637598a477201c382526b8331ef585e6fd89fb5ced6dc101f737db8a4ed95512', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 656.9215158709343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x239c9e0e2a4e2b6e90', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:07:12.000Z'}}, {'blockNum': '0x75f889', 'uniqueId': '0x1cec08c1a44dafc4ba6ab99dab220974c7ceb4372ba0ba9c8a554ade57e917fb:log:157', 'hash': '0x1cec08c1a44dafc4ba6ab99dab220974c7ceb4372ba0ba9c8a554ade57e917fb', 'from': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'to': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:07:21.000Z'}}, {'blockNum': '0x75f904', 'uniqueId': '0x629c8e63bb14276503e39ee79b09bfcbb1d144f7ae2fa214f396cd13c25eb7c9:log:114', 'hash': '0x629c8e63bb14276503e39ee79b09bfcbb1d144f7ae2fa214f396cd13c25eb7c9', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 649.8025090465147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2339d2432d3310a5f8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:31:05.000Z'}}, {'blockNum': '0x75f909', 'uniqueId': '0x1ae3bdc1c0472128a19375b1cb52390afff1462381985d722d6f9c1c76caddb4:log:60', 'hash': '0x1ae3bdc1c0472128a19375b1cb52390afff1462381985d722d6f9c1c76caddb4', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 649.9556140455707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x233bf2335cad2136a2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:31:56.000Z'}}, {'blockNum': '0x75f909', 'uniqueId': '0x1ae3bdc1c0472128a19375b1cb52390afff1462381985d722d6f9c1c76caddb4:log:64', 'hash': '0x1ae3bdc1c0472128a19375b1cb52390afff1462381985d722d6f9c1c76caddb4', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 649.9556140455707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x233bf2335cad2136a2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:31:56.000Z'}}, {'blockNum': '0x75f946', 'uniqueId': '0xd3c4478dac3e00227e3a5335a7ae9b65a0703ae8b18113650062f358a99ec40e:log:12', 'hash': '0xd3c4478dac3e00227e3a5335a7ae9b65a0703ae8b18113650062f358a99ec40e', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 659.1884793631777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23bc13ed73581f4328', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:45:57.000Z'}}, {'blockNum': '0x75f95b', 'uniqueId': '0x0bbfe19883d7bde00d216a805b626ceb697056d1f91febf200f56a5c988cb58a:log:102', 'hash': '0x0bbfe19883d7bde00d216a805b626ceb697056d1f91febf200f56a5c988cb58a', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 665.744341623271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x24170f0771115fba87', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:50:22.000Z'}}, {'blockNum': '0x75fa6f', 'uniqueId': '0xe7d3583a90eac41b125b7815cd6baf7d361fdf71637f30c926b1069bc886ca8c:log:27', 'hash': '0xe7d3583a90eac41b125b7815cd6baf7d361fdf71637f30c926b1069bc886ca8c', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 631.7468179765709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x223f3f8fcfc4de4d7b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T08:50:33.000Z'}}, {'blockNum': '0x75fa6f', 'uniqueId': '0xe7d3583a90eac41b125b7815cd6baf7d361fdf71637f30c926b1069bc886ca8c:log:29', 'hash': '0xe7d3583a90eac41b125b7815cd6baf7d361fdf71637f30c926b1069bc886ca8c', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 631.7468179765709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x223f3f8fcfc4de4d7b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T08:50:33.000Z'}}, {'blockNum': '0x75fce7', 'uniqueId': '0x998592a478f223fa00bec267ffe32421341d7cab83d18e587a414195f7c93b33:log:106', 'hash': '0x998592a478f223fa00bec267ffe32421341d7cab83d18e587a414195f7c93b33', 'from': '0x773c249cc8dd02fce180ff066823312e448c6413', 'to': '0xcbc29eb2983568683e552e156316bfe67866fce1', 'value': 7162.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x018443a16ffc2e7d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T11:07:57.000Z'}}, {'blockNum': '0x75fe58', 'uniqueId': '0xb72a25005a42f97697f9229435b55a9dcf94305ce260406bd341ae7265203700:log:0', 'hash': '0xb72a25005a42f97697f9229435b55a9dcf94305ce260406bd341ae7265203700', 'from': '0x20f72138a6cd58bf40aa3dce316e8b11586cffcb', 'to': '0x82683ef5441294a6e040eb9b0cc6ff68a54a6e64', 'value': 185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a076407d3f7440000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T12:32:16.000Z'}}, {'blockNum': '0x75fee2', 'uniqueId': '0x495eb4163f51d7d9fb0ede76aad5a49c5d42918714da4ed85eaa6c8de8abf9d1:log:149', 'hash': '0x495eb4163f51d7d9fb0ede76aad5a49c5d42918714da4ed85eaa6c8de8abf9d1', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 102.18798436396273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x058a24a65d272b8789', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T13:07:22.000Z'}}, {'blockNum': '0x75fee2', 'uniqueId': '0x495eb4163f51d7d9fb0ede76aad5a49c5d42918714da4ed85eaa6c8de8abf9d1:log:153', 'hash': '0x495eb4163f51d7d9fb0ede76aad5a49c5d42918714da4ed85eaa6c8de8abf9d1', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x3ed4587c28403d6a1b829167a1e7bd8f04cff701', 'value': 102.18798436396273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x058a24a65d272b8789', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T13:07:22.000Z'}}, {'blockNum': '0x75ffa2', 'uniqueId': '0x79347509dd8353817c0f036c745e8b35b725cc8cdf78d68ed3b02a6b5912e5cc:log:44', 'hash': '0x79347509dd8353817c0f036c745e8b35b725cc8cdf78d68ed3b02a6b5912e5cc', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 655.2045613420711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2384ca351e39c88d8d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T13:55:56.000Z'}}, {'blockNum': '0x75ffb9', 'uniqueId': '0xc7e2690acfcbc882269c62ac25d5389a1434b3a581a79a40d7aeb0a0fc91d428:log:56', 'hash': '0xc7e2690acfcbc882269c62ac25d5389a1434b3a581a79a40d7aeb0a0fc91d428', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 649.9307652234905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x233b99eb7d6ff5750f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:03:05.000Z'}}, {'blockNum': '0x75ffc4', 'uniqueId': '0xf710dd454c62eebfd31266e1a8927009e3d12daaa48cc04ea48c4386df3f7e0d:log:51', 'hash': '0xf710dd454c62eebfd31266e1a8927009e3d12daaa48cc04ea48c4386df3f7e0d', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 644.720419085663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22f34b0d4881eae623', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:05:01.000Z'}}, {'blockNum': '0x75ffc5', 'uniqueId': '0x5d0e57c640cb4143698ad36d8056405144725bd60c7a3c17b6047e76ae43032f:log:61', 'hash': '0x5d0e57c640cb4143698ad36d8056405144725bd60c7a3c17b6047e76ae43032f', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 711.9597650168635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26986d322888ba0510', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:05:26.000Z'}}, {'blockNum': '0x75ffc5', 'uniqueId': '0x5d0e57c640cb4143698ad36d8056405144725bd60c7a3c17b6047e76ae43032f:log:65', 'hash': '0x5d0e57c640cb4143698ad36d8056405144725bd60c7a3c17b6047e76ae43032f', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 711.9597650168635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26986d322888ba0510', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:05:26.000Z'}}, {'blockNum': '0x75ffc8', 'uniqueId': '0xbf2909853095d4b6c13d04c7a7d703ad242a5364022df3ba8a5f56e7834dd6ab:log:81', 'hash': '0xbf2909853095d4b6c13d04c7a7d703ad242a5364022df3ba8a5f56e7834dd6ab', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1273.1280390657753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4504336635792d5c18', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:06:15.000Z'}}, {'blockNum': '0x75ffc8', 'uniqueId': '0xbf2909853095d4b6c13d04c7a7d703ad242a5364022df3ba8a5f56e7834dd6ab:log:85', 'hash': '0xbf2909853095d4b6c13d04c7a7d703ad242a5364022df3ba8a5f56e7834dd6ab', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x0bea818348a0082457cb9e6dc7611c60ddae12af', 'value': 1273.1280390657753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4504336635792d5c18', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:06:15.000Z'}}, {'blockNum': '0x75ffc9', 'uniqueId': '0x25ae1b6a1f3d4aa26f45df96c24531278c952e295732e59e9f3049f84828e2fe:log:61', 'hash': '0x25ae1b6a1f3d4aa26f45df96c24531278c952e295732e59e9f3049f84828e2fe', 'from': '0x0bea818348a0082457cb9e6dc7611c60ddae12af', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 1273.1280390657753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4504336635792d5c18', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:06:26.000Z'}}, {'blockNum': '0x760076', 'uniqueId': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a:log:95', 'hash': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 639.4445419010534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22aa135eefc6ad7a90', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:44:57.000Z'}}, {'blockNum': '0x760076', 'uniqueId': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a:log:97', 'hash': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 639.4445419010534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22aa135eefc6ad7a90', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:44:57.000Z'}}, {'blockNum': '0x760076', 'uniqueId': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a:log:98', 'hash': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 639.4445419010534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22aa135eefc6ad7a90', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:44:57.000Z'}}, {'blockNum': '0x760106', 'uniqueId': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2:log:20', 'hash': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'value': 632.5254245559515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x224a0dba5ecca20166', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:14:34.000Z'}}, {'blockNum': '0x760106', 'uniqueId': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2:log:23', 'hash': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2', 'from': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 632.5253995189923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x224a0da3996d940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:14:34.000Z'}}, {'blockNum': '0x760106', 'uniqueId': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2:log:24', 'hash': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 632.5253995189923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x224a0da3996d940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:14:34.000Z'}}, {'blockNum': '0x76012a', 'uniqueId': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f:log:73', 'hash': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x2ce64e46fa2b40bf511e14ac73f4aae22b754dc0', 'value': 660.8197099805392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23d2b7390deeb16dfa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:22:13.000Z'}}, {'blockNum': '0x76012a', 'uniqueId': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f:log:76', 'hash': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f', 'from': '0x2ce64e46fa2b40bf511e14ac73f4aae22b754dc0', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 660.8197099805392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23d2b7390deeb16dfa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:22:13.000Z'}}, {'blockNum': '0x76012a', 'uniqueId': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f:log:77', 'hash': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 660.8197099805392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23d2b7390deeb16dfa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:22:13.000Z'}}, {'blockNum': '0x76012a', 'uniqueId': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f:log:78', 'hash': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 660.8197099805392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23d2b7390deeb16dfa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:22:13.000Z'}}, {'blockNum': '0x760133', 'uniqueId': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568:log:38', 'hash': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 702.4263541884145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26141fb785212ae7bf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:24:09.000Z'}}, {'blockNum': '0x760133', 'uniqueId': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568:log:42', 'hash': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 702.4263541884145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26141fb785212ae7bf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:24:09.000Z'}}, {'blockNum': '0x760133', 'uniqueId': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568:log:44', 'hash': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 702.4263541884145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26141fb785212ae7bf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:24:09.000Z'}}, {'blockNum': '0x760133', 'uniqueId': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568:log:45', 'hash': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 702.4263541884145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26141fb785212ae7bf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:24:09.000Z'}}, {'blockNum': '0x760133', 'uniqueId': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568:log:46', 'hash': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 702.4263541884145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26141fb785212ae7bf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:24:09.000Z'}}, {'blockNum': '0x760140', 'uniqueId': '0xa46e1f52002ec94d4450707b0c15cc282a4eb158f2fe1f5ca044346b5746a2f7:log:67', 'hash': '0xa46e1f52002ec94d4450707b0c15cc282a4eb158f2fe1f5ca044346b5746a2f7', 'from': '0x5325832cdf994b19407dadc9cb1a6d6e22ee0a23', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 100.466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05723eeeb554650000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:27:30.000Z'}}, {'blockNum': '0x760160', 'uniqueId': '0x52c829458602cb174df51d56bf5875a21788e367e442a5533e3b0aa6fe57deeb:log:48', 'hash': '0x52c829458602cb174df51d56bf5875a21788e367e442a5533e3b0aa6fe57deeb', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 355.47301465683995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13452dd774222b98c2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:35:19.000Z'}}, {'blockNum': '0x760160', 'uniqueId': '0x52c829458602cb174df51d56bf5875a21788e367e442a5533e3b0aa6fe57deeb:log:50', 'hash': '0x52c829458602cb174df51d56bf5875a21788e367e442a5533e3b0aa6fe57deeb', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xb09cd60ad551ce7ff6bc97458b483a8d50489ee7', 'value': 355.47301465683995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13452dd774222b98c2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:35:19.000Z'}}, {'blockNum': '0x760179', 'uniqueId': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2:log:123', 'hash': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x2ce64e46fa2b40bf511e14ac73f4aae22b754dc0', 'value': 525.3748949374078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c7b0a9363dc5d0ebe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:40:53.000Z'}}, {'blockNum': '0x760179', 'uniqueId': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2:log:125', 'hash': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2', 'from': '0x2ce64e46fa2b40bf511e14ac73f4aae22b754dc0', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 525.3748949374078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c7b0a9363dc5d0ebe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:40:53.000Z'}}, {'blockNum': '0x760179', 'uniqueId': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2:log:126', 'hash': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 525.3748949374078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c7b0a9363dc5d0ebe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:40:53.000Z'}}, {'blockNum': '0x76017d', 'uniqueId': '0x3b565325f94f55f3a7d439e56e71455ccc903f70e0419e7dc97d53097af13a48:log:53', 'hash': '0x3b565325f94f55f3a7d439e56e71455ccc903f70e0419e7dc97d53097af13a48', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 349.7105341760806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12f53565fcc163b142', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:41:51.000Z'}}, {'blockNum': '0x76017d', 'uniqueId': '0x3b565325f94f55f3a7d439e56e71455ccc903f70e0419e7dc97d53097af13a48:log:55', 'hash': '0x3b565325f94f55f3a7d439e56e71455ccc903f70e0419e7dc97d53097af13a48', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xb09cd60ad551ce7ff6bc97458b483a8d50489ee7', 'value': 349.7105341760806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12f53565fcc163b142', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:41:51.000Z'}}, {'blockNum': '0x760186', 'uniqueId': '0x85c3374e441bde6bc97d949a357dfc1cf0bdc66b9022e4c6144e42d51928e54f:log:65', 'hash': '0x85c3374e441bde6bc97d949a357dfc1cf0bdc66b9022e4c6144e42d51928e54f', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 634.5002393268401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x226575adf100a30737', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:45:23.000Z'}}, {'blockNum': '0x760190', 'uniqueId': '0xe705b6946cb0936140c8a001ea869052475e19984e735c7ccb813fe85c7930e1:log:102', 'hash': '0xe705b6946cb0936140c8a001ea869052475e19984e735c7ccb813fe85c7930e1', 'from': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 3914.316011085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd4320c0925916ac200', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:46:51.000Z'}}, {'blockNum': '0x7601b1', 'uniqueId': '0xb14457bd50e15b514adda22fda31d84288a41c6521b60ee5bdcb29d120c14f8f:log:20', 'hash': '0xb14457bd50e15b514adda22fda31d84288a41c6521b60ee5bdcb29d120c14f8f', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 705.1581025641026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x263a08d631bdcd6906', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:54:23.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0xc93af9c808029e2cb8776c3a25aaa408a988cbbcff5225ad962215e9ff9b9229:log:38', 'hash': '0xc93af9c808029e2cb8776c3a25aaa408a988cbbcff5225ad962215e9ff9b9229', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0xb958a8f59ac6145851729f73c7a6968311d8b633', 'value': 356.62060493156787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13551ae6ba730553ea', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0x2d6014c820addd90162cee970c8470c59f31ac96a50c6c27d2f1c7085fe9fcaa:log:40', 'hash': '0x2d6014c820addd90162cee970c8470c59f31ac96a50c6c27d2f1c7085fe9fcaa', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 2972.7839158513184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa127aa14fb88916a72', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65:log:42', 'hash': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 621.2758551457431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21adef3a98310edfbe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65:log:44', 'hash': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x778fdaf34bb5993d69968f541152451241fab7e3', 'value': 621.2758551457431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21adef3a98310edfbe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65:log:50', 'hash': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65', 'from': '0x778fdaf34bb5993d69968f541152451241fab7e3', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 621.2758551457431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21adef3a98310edfbe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0x2064a23a6372c79625ea3321f14b7767f45a011a36281e4e780a53429245d441:log:53', 'hash': '0x2064a23a6372c79625ea3321f14b7767f45a011a36281e4e780a53429245d441', 'from': '0xb958a8f59ac6145851729f73c7a6968311d8b633', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 356.62060493156787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13551ae6ba730553ea', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601ca', 'uniqueId': '0x02fcccb530f90b924ce0f47de5e4cab1c5c92e33eaca1c3ed6bbd20a73cfbe05:log:109', 'hash': '0x02fcccb530f90b924ce0f47de5e4cab1c5c92e33eaca1c3ed6bbd20a73cfbe05', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1477.6197060378133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x501a17bde06cfa21d2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:31.000Z'}}, {'blockNum': '0x7601ca', 'uniqueId': '0x02fcccb530f90b924ce0f47de5e4cab1c5c92e33eaca1c3ed6bbd20a73cfbe05:log:113', 'hash': '0x02fcccb530f90b924ce0f47de5e4cab1c5c92e33eaca1c3ed6bbd20a73cfbe05', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1477.6197060378133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x501a17bde06cfa21d2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:31.000Z'}}, {'blockNum': '0x7601cb', 'uniqueId': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b:log:0', 'hash': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x000000001e29fcd9b1469a7954dc65ff254fffc0', 'value': 1221.0552426747124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x42318ba9c8e2a1a6ac', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:34.000Z'}}, {'blockNum': '0x7601cb', 'uniqueId': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b:log:2', 'hash': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b', 'from': '0x000000001e29fcd9b1469a7954dc65ff254fffc0', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1221.0552426747124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x42318ba9c8e2a1a6ac', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:34.000Z'}}, {'blockNum': '0x7601cb', 'uniqueId': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b:log:3', 'hash': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1221.0552426747124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x42318ba9c8e2a1a6ac', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:34.000Z'}}, {'blockNum': '0x7601cd', 'uniqueId': '0x42d34d6284337bf7b16863a5574aeaa39c7ba5059ea4f1b2f84b504aef3a199c:log:35', 'hash': '0x42d34d6284337bf7b16863a5574aeaa39c7ba5059ea4f1b2f84b504aef3a199c', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1727.073971563981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5d9ff752b5162df3de', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:24.000Z'}}, {'blockNum': '0x7601cd', 'uniqueId': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46:log:37', 'hash': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 1228.8360281335117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x429d8690ef63e4587d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:24.000Z'}}, {'blockNum': '0x7601cd', 'uniqueId': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46:log:39', 'hash': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1228.8360281335117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x429d8690ef63e4587d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:24.000Z'}}, {'blockNum': '0x7601cd', 'uniqueId': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46:log:40', 'hash': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1228.8360281335117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x429d8690ef63e4587d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:24.000Z'}}, {'blockNum': '0x7601ce', 'uniqueId': '0xc81e8fa2a188264dd0886346a0164f747c45afb04b40340635d0636a8d4afdc0:log:27', 'hash': '0xc81e8fa2a188264dd0886346a0164f747c45afb04b40340635d0636a8d4afdc0', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 616.8121327014218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x216ffce6ae63598df3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:28.000Z'}}, {'blockNum': '0x7601ce', 'uniqueId': '0x60cdee18bdb1aebd49edbcb54ef9a50a925cdfddc3f38b3273b7e08b7cadf332:log:75', 'hash': '0x60cdee18bdb1aebd49edbcb54ef9a50a925cdfddc3f38b3273b7e08b7cadf332', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 816.7670975483106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2c46eba3cd79e0746c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:28.000Z'}}, {'blockNum': '0x7601ce', 'uniqueId': '0x60cdee18bdb1aebd49edbcb54ef9a50a925cdfddc3f38b3273b7e08b7cadf332:log:77', 'hash': '0x60cdee18bdb1aebd49edbcb54ef9a50a925cdfddc3f38b3273b7e08b7cadf332', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 816.7670975483106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2c46eba3cd79e0746c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:28.000Z'}}, {'blockNum': '0x7601cf', 'uniqueId': '0xa79190b5c260bbc683826b83fa1bca9ee88f35791b8e40888aa8dce66d84e002:log:70', 'hash': '0xa79190b5c260bbc683826b83fa1bca9ee88f35791b8e40888aa8dce66d84e002', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1193.7365271859924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40b66c16c9d983204f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:02:02.000Z'}}, {'blockNum': '0x7601d5', 'uniqueId': '0x260a015f3b72763513f548afaa602ebb16f9c621a1c8c31047b06e9a660a65c2:log:32', 'hash': '0x260a015f3b72763513f548afaa602ebb16f9c621a1c8c31047b06e9a660a65c2', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 636.1201201537541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x227bf0a6f89350671c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:03:58.000Z'}}, {'blockNum': '0x7601f1', 'uniqueId': '0xbb574e23255b4b26b8b8ff19783d4db56612f422ec8e2ea5866ee8fbedee1350:log:12', 'hash': '0xbb574e23255b4b26b8b8ff19783d4db56612f422ec8e2ea5866ee8fbedee1350', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 641.4434092366902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22c5d0c6301c6faf20', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:09:47.000Z'}}, {'blockNum': '0x7601f1', 'uniqueId': '0xbb574e23255b4b26b8b8ff19783d4db56612f422ec8e2ea5866ee8fbedee1350:log:14', 'hash': '0xbb574e23255b4b26b8b8ff19783d4db56612f422ec8e2ea5866ee8fbedee1350', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 641.4434092366902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22c5d0c6301c6faf20', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:09:47.000Z'}}, {'blockNum': '0x7601f3', 'uniqueId': '0x7033dba509cd768e0961f4eff8a7e88bec1626fc00a5c423f9baf356115dd671:log:86', 'hash': '0x7033dba509cd768e0961f4eff8a7e88bec1626fc00a5c423f9baf356115dd671', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 140.60753227612702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x079f524da26ed2dd0e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:09:59.000Z'}}, {'blockNum': '0x7601f7', 'uniqueId': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221:log:94', 'hash': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 639.3647831019587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22a8f802bb3eeae7d9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:11:13.000Z'}}, {'blockNum': '0x7601f7', 'uniqueId': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221:log:96', 'hash': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 639.3647831019587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22a8f802bb3eeae7d9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:11:13.000Z'}}, {'blockNum': '0x7601f7', 'uniqueId': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221:log:101', 'hash': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 639.3647831019587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22a8f802bb3eeae7d9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:11:13.000Z'}}, {'blockNum': '0x7601ff', 'uniqueId': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444:log:128', 'hash': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 159.4021721367364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x08a42647026bd7bf5c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:13:48.000Z'}}, {'blockNum': '0x7601ff', 'uniqueId': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444:log:130', 'hash': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x083a385f154a914755b051a8f586ecf4dbfbe14c', 'value': 159.4021721367364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x08a42647026bd7bf5c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:13:48.000Z'}}, {'blockNum': '0x7601ff', 'uniqueId': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444:log:136', 'hash': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444', 'from': '0x083a385f154a914755b051a8f586ecf4dbfbe14c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 159.4021721367364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x08a42647026bd7bf5c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:13:48.000Z'}}, {'blockNum': '0x7601ff', 'uniqueId': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444:log:138', 'hash': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 159.4021721367364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x08a42647026bd7bf5c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:13:48.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e:log:14', 'hash': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 651.2979175606396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x234e93054c1191bde8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e:log:16', 'hash': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 651.2979175606396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x234e93054c1191bde8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e:log:21', 'hash': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 651.2979175606396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x234e93054c1191bde8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0:log:89', 'hash': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 646.7388321377151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x230f4de542937e8bad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0:log:91', 'hash': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 646.7388321377151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x230f4de542937e8bad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0:log:96', 'hash': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 646.7388321377151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x230f4de542937e8bad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0:log:98', 'hash': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 646.7388321377151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x230f4de542937e8bad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760209', 'uniqueId': '0x9e68b31905228aa80a396104ef9defe0b64eb4fefd87cd919333a5e00d245b84:log:36', 'hash': '0x9e68b31905228aa80a396104ef9defe0b64eb4fefd87cd919333a5e00d245b84', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 470.42576256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1980780aa0350e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:16:45.000Z'}}, {'blockNum': '0x760216', 'uniqueId': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1:log:42', 'hash': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 349.3969976057253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12f0db7e23454396d5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:18:28.000Z'}}, {'blockNum': '0x760216', 'uniqueId': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1:log:44', 'hash': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x083a385f154a914755b051a8f586ecf4dbfbe14c', 'value': 349.3969976057253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12f0db7e23454396d5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:18:28.000Z'}}, {'blockNum': '0x760216', 'uniqueId': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1:log:50', 'hash': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1', 'from': '0x083a385f154a914755b051a8f586ecf4dbfbe14c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 349.3969976057253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12f0db7e23454396d5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:18:28.000Z'}}, {'blockNum': '0x76021f', 'uniqueId': '0xf3bc5b97f801ee8e4b39726b3d98c6729a37d8ebac512e758ee69f84316c48cc:log:78', 'hash': '0xf3bc5b97f801ee8e4b39726b3d98c6729a37d8ebac512e758ee69f84316c48cc', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 470.42576256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1980780aa0350e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:20:28.000Z'}}, {'blockNum': '0x76021f', 'uniqueId': '0xf3bc5b97f801ee8e4b39726b3d98c6729a37d8ebac512e758ee69f84316c48cc:log:80', 'hash': '0xf3bc5b97f801ee8e4b39726b3d98c6729a37d8ebac512e758ee69f84316c48cc', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 470.42576256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1980780aa0350e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:20:28.000Z'}}, {'blockNum': '0x760230', 'uniqueId': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4:log:16', 'hash': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 325.7143891739816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x11a831f73eb4829ef9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:25:05.000Z'}}, {'blockNum': '0x760230', 'uniqueId': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4:log:18', 'hash': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x778fdaf34bb5993d69968f541152451241fab7e3', 'value': 325.7143891739816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x11a831f73eb4829ef9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:25:05.000Z'}}, {'blockNum': '0x760230', 'uniqueId': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4:log:24', 'hash': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4', 'from': '0x778fdaf34bb5993d69968f541152451241fab7e3', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 325.7143891739816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x11a831f73eb4829ef9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:25:05.000Z'}}, {'blockNum': '0x760298', 'uniqueId': '0xf889109533c0e4aed7f686e8bbf566c0de2208ab0b76652dfcb9103a4d906656:log:9', 'hash': '0xf889109533c0e4aed7f686e8bbf566c0de2208ab0b76652dfcb9103a4d906656', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 648.37999026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23261475e086888800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:48:02.000Z'}}, {'blockNum': '0x7602a1', 'uniqueId': '0x63551b8818f550e61e5f27714f623d097f19f4c5039c99c6b5fb44c83469b1f8:log:104', 'hash': '0x63551b8818f550e61e5f27714f623d097f19f4c5039c99c6b5fb44c83469b1f8', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 159.0998551682927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x089ff43b54122eaa6a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:49:44.000Z'}}, {'blockNum': '0x7602a1', 'uniqueId': '0x63551b8818f550e61e5f27714f623d097f19f4c5039c99c6b5fb44c83469b1f8:log:108', 'hash': '0x63551b8818f550e61e5f27714f623d097f19f4c5039c99c6b5fb44c83469b1f8', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x546a6283d16f175222043d229ebb484a6dc46ccf', 'value': 159.0998551682927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x089ff43b54122eaa6a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:49:44.000Z'}}, {'blockNum': '0x7602a6', 'uniqueId': '0x3d98b1d6b0400252ca7de13e7f0a34b157a0bf1c0689b5ee67d9061d8c572c47:log:8', 'hash': '0x3d98b1d6b0400252ca7de13e7f0a34b157a0bf1c0689b5ee67d9061d8c572c47', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 648.37999026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23261475e086888800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:51:49.000Z'}}, {'blockNum': '0x7602a6', 'uniqueId': '0x3d98b1d6b0400252ca7de13e7f0a34b157a0bf1c0689b5ee67d9061d8c572c47:log:10', 'hash': '0x3d98b1d6b0400252ca7de13e7f0a34b157a0bf1c0689b5ee67d9061d8c572c47', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 648.37999026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23261475e086888800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:51:49.000Z'}}, {'blockNum': '0x7602c2', 'uniqueId': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605:log:30', 'hash': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 158.75514065968878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x089b2b8f4f27ec01ec', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:56:42.000Z'}}, {'blockNum': '0x7602c2', 'uniqueId': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605:log:32', 'hash': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x9475cec6a585cafd941d7e074d6fe5484a822be0', 'value': 158.75514065968878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x089b2b8f4f27ec01ec', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:56:42.000Z'}}, {'blockNum': '0x7602c2', 'uniqueId': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605:log:38', 'hash': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605', 'from': '0x9475cec6a585cafd941d7e074d6fe5484a822be0', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 158.75514065968878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x089b2b8f4f27ec01ec', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:56:42.000Z'}}, {'blockNum': '0x7604ab', 'uniqueId': '0x5cf8696a4f7a0b2817195012942709112c6aa4b202b155a60f3ee77715d01b6a:log:51', 'hash': '0x5cf8696a4f7a0b2817195012942709112c6aa4b202b155a60f3ee77715d01b6a', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 1286.99777608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45c4ae9a89ce202000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:38:31.000Z'}}, {'blockNum': '0x7604b7', 'uniqueId': '0xca7d6252467156c31cf71d06ddc50b49745ce0b2fb1fc2d26268e3af6bacae94:log:22', 'hash': '0xca7d6252467156c31cf71d06ddc50b49745ce0b2fb1fc2d26268e3af6bacae94', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1286.99777608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45c4ae9a89ce202000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:40:52.000Z'}}, {'blockNum': '0x7604b7', 'uniqueId': '0xca7d6252467156c31cf71d06ddc50b49745ce0b2fb1fc2d26268e3af6bacae94:log:24', 'hash': '0xca7d6252467156c31cf71d06ddc50b49745ce0b2fb1fc2d26268e3af6bacae94', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1286.99777608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45c4ae9a89ce202000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:40:52.000Z'}}, {'blockNum': '0x7604bb', 'uniqueId': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c:log:32', 'hash': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 335.7621679370516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1233a2d8cb6702d82a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:41:47.000Z'}}, {'blockNum': '0x7604bb', 'uniqueId': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c:log:36', 'hash': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'value': 335.7621679370516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1233a2d8cb6702d82a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:41:47.000Z'}}, {'blockNum': '0x7604bb', 'uniqueId': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c:log:37', 'hash': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c', 'from': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 335.7621679370516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1233a2d8cb6702d82a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:41:47.000Z'}}, {'blockNum': '0x760592', 'uniqueId': '0xbfff598a8960102e45f390e927e6e4c71f8e89d00c79225bda6485e330d0d250:log:77', 'hash': '0xbfff598a8960102e45f390e927e6e4c71f8e89d00c79225bda6485e330d0d250', 'from': '0x546a6283d16f175222043d229ebb484a6dc46ccf', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 89.099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04d47f3c6eea878000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T19:29:42.000Z'}}, {'blockNum': '0x760592', 'uniqueId': '0xbfff598a8960102e45f390e927e6e4c71f8e89d00c79225bda6485e330d0d250:log:79', 'hash': '0xbfff598a8960102e45f390e927e6e4c71f8e89d00c79225bda6485e330d0d250', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 89.099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04d47f3c6eea878000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T19:29:42.000Z'}}, {'blockNum': '0x7605db', 'uniqueId': '0x7b8295276770019f64700bab106cd4adef00ca0b1bf13679a78304c5458d9fe6:log:35', 'hash': '0x7b8295276770019f64700bab106cd4adef00ca0b1bf13679a78304c5458d9fe6', 'from': '0xf73c3c65bde10bf26c2e1763104e609a41702efe', 'to': '0xbe4dfe79790cf61490d195d4bc0082625d829c21', 'value': 59.8689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x033ed90f59d9624000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T19:50:50.000Z'}}, {'blockNum': '0x7605fd', 'uniqueId': '0xc44f13b4934429a04036acc942210574ecba11d20d4a6c931757ecd011755961:log:44', 'hash': '0xc44f13b4934429a04036acc942210574ecba11d20d4a6c931757ecd011755961', 'from': '0x546a6283d16f175222043d229ebb484a6dc46ccf', 'to': '0x4b771b02981ef44e52c7b561e9a614fa9b11def6', 'value': 70.00085516829269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03cb74fee527a72a6a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T19:57:33.000Z'}}, {'blockNum': '0x760792', 'uniqueId': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c:log:49', 'hash': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 256.60670696869727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0de922286d6bf4c329', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:23:47.000Z'}}, {'blockNum': '0x760792', 'uniqueId': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c:log:53', 'hash': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 256.60670696869727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0de922286d6bf4c329', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:23:47.000Z'}}, {'blockNum': '0x760792', 'uniqueId': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c:log:55', 'hash': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 256.60670696869727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0de922286d6bf4c329', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:23:47.000Z'}}, {'blockNum': '0x760792', 'uniqueId': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c:log:56', 'hash': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 256.60670696869727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0de922286d6bf4c329', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:23:47.000Z'}}, {'blockNum': '0x760792', 'uniqueId': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c:log:57', 'hash': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 256.60670696869727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0de922286d6bf4c329', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:23:47.000Z'}}, {'blockNum': '0x7607aa', 'uniqueId': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9:log:31', 'hash': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 294.9979791733832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ffdeb5b178796e926', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:04.000Z'}}, {'blockNum': '0x7607aa', 'uniqueId': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9:log:35', 'hash': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 294.9979791733832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ffdeb5b178796e926', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:04.000Z'}}, {'blockNum': '0x7607aa', 'uniqueId': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9:log:37', 'hash': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 294.9979791733832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ffdeb5b178796e926', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:04.000Z'}}, {'blockNum': '0x7607aa', 'uniqueId': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9:log:38', 'hash': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 294.9979791733832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ffdeb5b178796e926', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:04.000Z'}}, {'blockNum': '0x7607aa', 'uniqueId': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9:log:39', 'hash': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 294.9979791733832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ffdeb5b178796e926', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:04.000Z'}}, {'blockNum': '0x7607ad', 'uniqueId': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0:log:18', 'hash': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x320b7287b5136cddf0e6242837b0838136491689', 'value': 524.4554085478028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c6e47e763f0261f46', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:19.000Z'}}, {'blockNum': '0x7607ad', 'uniqueId': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0:log:21', 'hash': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0', 'from': '0x320b7287b5136cddf0e6242837b0838136491689', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 524.4554085478028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c6e47e763f0261f46', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:19.000Z'}}, {'blockNum': '0x7607ad', 'uniqueId': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0:log:22', 'hash': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 524.4554085478028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c6e47e763f0261f46', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:19.000Z'}}, {'blockNum': '0x7607ad', 'uniqueId': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0:log:23', 'hash': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 524.4554085478028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c6e47e763f0261f46', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:19.000Z'}}, {'blockNum': '0x7607b4', 'uniqueId': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193:log:20', 'hash': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 389.78726058581844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15216288524653d66f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:30:10.000Z'}}, {'blockNum': '0x7607b4', 'uniqueId': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193:log:24', 'hash': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 389.78726058581844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15216288524653d66f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:30:10.000Z'}}, {'blockNum': '0x7607b4', 'uniqueId': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193:log:26', 'hash': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 389.78726058581844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15216288524653d66f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:30:10.000Z'}}, {'blockNum': '0x7607b4', 'uniqueId': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193:log:27', 'hash': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 389.78726058581844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15216288524653d66f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:30:10.000Z'}}, {'blockNum': '0x7607b4', 'uniqueId': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193:log:28', 'hash': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 389.78726058581844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15216288524653d66f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:30:10.000Z'}}]}}
Number of returned transfers: 162
Answer is complete
symbol CDT
group BPG
date 2019-05-13
hour 15:00
exchange binance
Name: 271, dtype: object
HERE
{'osmosis': 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt'}
No contract for ethereum specified
Symbol: CDT, Contract: 0xcdb37a4fbc2da5b78aa4e41a432792f9533e85cc
Datetime timestamps: 2019-05-13 15:00:00 2019-05-13 03:00:00 2019-05-14 03:00:00
Unix timestamps: 1557709200.0 1557795600.0
Hex Block Numbers: 0x763da3 0x765661
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers: 0
Answer is complete
symbol PPT
group BPG
date 2019-05-31
hour 14:59
exchange binance
Name: 272, dtype: object
HERE
{'binance-smart-chain': '0xdf061250302e5ccae091b18ca2b45914d785f214'}
No contract for ethereum specified
Symbol: PPT, Contract: 0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a
Datetime timestamps: 2019-05-31 14:59:00 2019-05-31 02:59:00 2019-06-01 02:59:00
Unix timestamps: 1559264340.0 1559350740.0
Hex Block Numbers: 0x77ffae 0x7818df
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x77ffd2', 'uniqueId': '0x7244b890e3b58a4e5ef0da511572c2b4e4b68342ef60c9ac5133d4825f5e7542:log:11', 'hash': '0x7244b890e3b58a4e5ef0da511572c2b4e4b68342ef60c9ac5133d4825f5e7542', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x87b42472ab204e37cbf30293f70f21bddc65cbc0', 'value': 1078.02617899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x191989682b', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:05:30.000Z'}}, {'blockNum': '0x77ffd2', 'uniqueId': '0x93eb6977ea271ed071ed10ecdc7338b3ec588c1822002e17994613115051d8ff:log:26', 'hash': '0x93eb6977ea271ed071ed10ecdc7338b3ec588c1822002e17994613115051d8ff', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 216.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x050a153b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:05:30.000Z'}}, {'blockNum': '0x780018', 'uniqueId': '0x9cd132926a0641e8f57f652892046352982781855cdb4adc90a692cc75a532f8:log:141', 'hash': '0x9cd132926a0641e8f57f652892046352982781855cdb4adc90a692cc75a532f8', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xbf85aa4cb91e2d31ff68fc75a1b3329c6d2a041c', 'value': 320.339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07755e85e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:20:14.000Z'}}, {'blockNum': '0x780032', 'uniqueId': '0x02a06d6c3d3b34906d4c9c5bbe1e3f267e2dc30b9e19c300a50cb8e51fbfe573:log:15', 'hash': '0x02a06d6c3d3b34906d4c9c5bbe1e3f267e2dc30b9e19c300a50cb8e51fbfe573', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x87b42472ab204e37cbf30293f70f21bddc65cbc0', 'value': 1079.3564119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1921772e66', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:27:22.000Z'}}, {'blockNum': '0x780070', 'uniqueId': '0xdc515f958d1247c59804356072614a3674c809f7ac278bf2739ce4d1c57fb09b:log:51', 'hash': '0xdc515f958d1247c59804356072614a3674c809f7ac278bf2739ce4d1c57fb09b', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1227.538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1c94b25740', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:43:37.000Z'}}, {'blockNum': '0x780070', 'uniqueId': '0xd214da030c049a5a6d889a096f1660d968dbde8e3c2f1ca1df2c6076c6f5ef24:log:52', 'hash': '0xd214da030c049a5a6d889a096f1660d968dbde8e3c2f1ca1df2c6076c6f5ef24', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 379.784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08d7b06500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:43:37.000Z'}}, {'blockNum': '0x780072', 'uniqueId': '0x4b0d932a0b3d816da70f70a57d147d7e5ac946858898ab21cd3d4bd4adb375e5:log:6', 'hash': '0x4b0d932a0b3d816da70f70a57d147d7e5ac946858898ab21cd3d4bd4adb375e5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x46bfccd95aa6eaae7ce9a669135cc352aaae9dc8', 'value': 174.548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0410631c80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:44:53.000Z'}}, {'blockNum': '0x780080', 'uniqueId': '0x0ec4f133d72a776d7ccfa66ed7ebdb22ef54fa8bb855cdd4f89c46f14a04b1ce:log:45', 'hash': '0x0ec4f133d72a776d7ccfa66ed7ebdb22ef54fa8bb855cdd4f89c46f14a04b1ce', 'from': '0xbf85aa4cb91e2d31ff68fc75a1b3329c6d2a041c', 'to': '0xeea896b8da77763f3525b1587a54bd3e6a6c0d92', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:47:54.000Z'}}, {'blockNum': '0x780087', 'uniqueId': '0x52306eecbf7d556270bc175e25f17f50ce81eb2ab5ce9d86e0dd129c729853d1:log:13', 'hash': '0x52306eecbf7d556270bc175e25f17f50ce81eb2ab5ce9d86e0dd129c729853d1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x87b42472ab204e37cbf30293f70f21bddc65cbc0', 'value': 1083.58457281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x193aaad7c1', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:50:13.000Z'}}, {'blockNum': '0x780087', 'uniqueId': '0x17850e5c714c86ea4acfe5d49577cb1945cf04e6b674f175dc3012e90e35ef67:log:62', 'hash': '0x17850e5c714c86ea4acfe5d49577cb1945cf04e6b674f175dc3012e90e35ef67', 'from': '0x46bfccd95aa6eaae7ce9a669135cc352aaae9dc8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 180.548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0434266280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:50:13.000Z'}}, {'blockNum': '0x780091', 'uniqueId': '0x6a9da4acf2f49bce3fcd6acc9b1921d83e189bfab3086f63940559e33eb37425:log:17', 'hash': '0x6a9da4acf2f49bce3fcd6acc9b1921d83e189bfab3086f63940559e33eb37425', 'from': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 430.47, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a05cd17c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:52:03.000Z'}}, {'blockNum': '0x780091', 'uniqueId': '0xbfe9503d891801bd37a551c9bfca297395caec9356e6c951ce15510fd3e9fd63:log:30', 'hash': '0xbfe9503d891801bd37a551c9bfca297395caec9356e6c951ce15510fd3e9fd63', 'from': '0x36edf867eeca1fe1e02235779eebde14c5d8f3d3', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2839.47, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x421c8f60c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:52:03.000Z'}}, {'blockNum': '0x7800b7', 'uniqueId': '0xaf0a00bec2871defd6ef709f5a92f0d69ce9228da8e19807f955b4382066e237:log:38', 'hash': '0xaf0a00bec2871defd6ef709f5a92f0d69ce9228da8e19807f955b4382066e237', 'from': '0xbf85aa4cb91e2d31ff68fc75a1b3329c6d2a041c', 'to': '0xeea896b8da77763f3525b1587a54bd3e6a6c0d92', 'value': 310.339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0739c3bbe0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T02:00:51.000Z'}}, {'blockNum': '0x7800dd', 'uniqueId': '0xdfcab24b7cb41dbca6a02e6bf6c16e3c6ec6a53adcec5f6752a85f3b5cb301db:log:0', 'hash': '0xdfcab24b7cb41dbca6a02e6bf6c16e3c6ec6a53adcec5f6752a85f3b5cb301db', 'from': '0xfdc18307198ed2f631268172617ecd55dd807ce8', 'to': '0xaa1559de968affb0ccde6c8e2f47763e787762d6', 'value': 1500.13185795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x22ed7b8f03', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T02:09:06.000Z'}}, {'blockNum': '0x78015a', 'uniqueId': '0xd67586abc5c2439b3da25a7ddcffa9ea20a1a188594c42fcac17870573ab1fae:log:122', 'hash': '0xd67586abc5c2439b3da25a7ddcffa9ea20a1a188594c42fcac17870573ab1fae', 'from': '0x678da6af4a6813dcfe027446eda950ca504ea8c7', 'to': '0x472bf46d5fc2816c1a7b343442a79a89ef055ab6', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T02:39:19.000Z'}}, {'blockNum': '0x78015b', 'uniqueId': '0xd3c513add3ee394c58ffc8c58fd58ad86567c6ba79a60091fedd140930ddbe6b:log:66', 'hash': '0xd3c513add3ee394c58ffc8c58fd58ad86567c6ba79a60091fedd140930ddbe6b', 'from': '0x9c4ced9b96f9cd182b3534d6a3a33f25d09955fd', 'to': '0x48a9c504e16671692aefcc99558dd2e7c1c5b7eb', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T02:39:25.000Z'}}, {'blockNum': '0x780162', 'uniqueId': '0xa07612ab1196a0b5d7c2904e091d7824fd507f059e682349aaf73de8af8371b4:log:134', 'hash': '0xa07612ab1196a0b5d7c2904e091d7824fd507f059e682349aaf73de8af8371b4', 'from': '0x2cb76bd6f43a79d48a5f24dabfccd09bd9ab16a9', 'to': '0x794ceafca61abfe8c090853a0a23ee46b2ec8c26', 'value': 1946.27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2d50ac56c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T02:42:34.000Z'}}, {'blockNum': '0x78017e', 'uniqueId': '0x9e2ff8908a4c4d9bb454b71c19b4fe2cccf75ce283c4864a9deba695996f4b28:log:73', 'hash': '0x9e2ff8908a4c4d9bb454b71c19b4fe2cccf75ce283c4864a9deba695996f4b28', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb2bf54efb37eafe318b97a3bc644f4dfe728ca94', 'value': 301.51965705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0705327c09', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T02:49:17.000Z'}}, {'blockNum': '0x780182', 'uniqueId': '0xff1d6cd7a5bcddd8c041a2874f7bf3d5b49a3f0281a49243c1389e3cfc7650dd:log:12', 'hash': '0xff1d6cd7a5bcddd8c041a2874f7bf3d5b49a3f0281a49243c1389e3cfc7650dd', 'from': '0x48a9c504e16671692aefcc99558dd2e7c1c5b7eb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T02:50:03.000Z'}}, {'blockNum': '0x7801a8', 'uniqueId': '0xa4b91853d450219066da99e801dfb83556e08177eb3c4a0df083974047456e84:log:33', 'hash': '0xa4b91853d450219066da99e801dfb83556e08177eb3c4a0df083974047456e84', 'from': '0x3cb2668094bbc9106bfec217913b043dc2b7bdf1', 'to': '0xab71de4cfd0e00b6a05cd0e6fff1ed0b68094ff1', 'value': 87.0915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02071b1530', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:00:17.000Z'}}, {'blockNum': '0x7801d6', 'uniqueId': '0xb59701022e89182ad1b57bd9152e35d4ce8a8ad396a6e78b94084f6197d4031f:log:7', 'hash': '0xb59701022e89182ad1b57bd9152e35d4ce8a8ad396a6e78b94084f6197d4031f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1625.759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25da475d60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:09:36.000Z'}}, {'blockNum': '0x7801da', 'uniqueId': '0x7c500f1d3a0133824ecc9b6f75072b973a2f48795f8d2a6c4d2ab1a0941d0ac3:log:3', 'hash': '0x7c500f1d3a0133824ecc9b6f75072b973a2f48795f8d2a6c4d2ab1a0941d0ac3', 'from': '0xb927d1f1bfad49a976b315eb34a15b1b9f2c1437', 'to': '0xcb6b2fb4e2c3f0282c7167e014ebbd79e778cdb7', 'value': 5010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x74a5ed5200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:10:58.000Z'}}, {'blockNum': '0x780205', 'uniqueId': '0x7beb82dcfd921b99a31e0b8783518b1b43e0c9f7b867baa6556caaf5b8a26f21:log:30', 'hash': '0x7beb82dcfd921b99a31e0b8783518b1b43e0c9f7b867baa6556caaf5b8a26f21', 'from': '0xcb6b2fb4e2c3f0282c7167e014ebbd79e778cdb7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x74a5ed5200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:20:04.000Z'}}, {'blockNum': '0x78022d', 'uniqueId': '0x8c6d02662e4ff43318b7cbad1683591202c098c05e88e7d030260c690c5df787:log:6', 'hash': '0x8c6d02662e4ff43318b7cbad1683591202c098c05e88e7d030260c690c5df787', 'from': '0xa578cd67abaee60003951464fe49cb7544e41611', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1607.322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x256c62bc40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:29:08.000Z'}}, {'blockNum': '0x78024f', 'uniqueId': '0xb1f852bc971598003e1a55f588350cf7343c2a9e76d3d0d74166a45f1fdcdb6e:log:2', 'hash': '0xb1f852bc971598003e1a55f588350cf7343c2a9e76d3d0d74166a45f1fdcdb6e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 203.3761825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04bc376d4a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:37:44.000Z'}}, {'blockNum': '0x780278', 'uniqueId': '0x38aec31db3d13fd3bd4e196680683e88637e4b195b75ebdc6d1f336982f65a37:log:54', 'hash': '0x38aec31db3d13fd3bd4e196680683e88637e4b195b75ebdc6d1f336982f65a37', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xb825651f21989277d95798aab075380f353424ff', 'value': 203.3761825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04bc376d4a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:46:08.000Z'}}, {'blockNum': '0x780279', 'uniqueId': '0x00142f0dd55c0ff8ba996a37e6869094a71575604128a1a3ee46fe04aae7d15a:log:4', 'hash': '0x00142f0dd55c0ff8ba996a37e6869094a71575604128a1a3ee46fe04aae7d15a', 'from': '0xa578cd67abaee60003951464fe49cb7544e41611', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1625.759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25da475d60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:46:30.000Z'}}, {'blockNum': '0x780285', 'uniqueId': '0x3fcd07b25a4e7cce1640e5a0274f884af71c9984fcd2a060df36d14182f77a29:log:2', 'hash': '0x3fcd07b25a4e7cce1640e5a0274f884af71c9984fcd2a060df36d14182f77a29', 'from': '0x6d15db61abc98697b5c4e3e2190ed153036a9387', 'to': '0x77a2f42421cdfebb3f61eed26e15370854d48956', 'value': 152.317989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x038be2ce74', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:48:26.000Z'}}, {'blockNum': '0x78028e', 'uniqueId': '0x966a8625373db9c3825bf12e6684ebd3a4b1ded4347e37cf859407219e3641c4:log:18', 'hash': '0x966a8625373db9c3825bf12e6684ebd3a4b1ded4347e37cf859407219e3641c4', 'from': '0x426870240c7d94e4454bc3509985251134d38a56', 'to': '0x616e83660177fd508a7a939a849a288510713408', 'value': 3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:50:39.000Z'}}, {'blockNum': '0x780292', 'uniqueId': '0xd299851b9619c9bd5026dfe88378f29ecb938cfd13431c4124c9353789695150:log:107', 'hash': '0xd299851b9619c9bd5026dfe88378f29ecb938cfd13431c4124c9353789695150', 'from': '0x426870240c7d94e4454bc3509985251134d38a56', 'to': '0x616e83660177fd508a7a939a849a288510713408', 'value': 600.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0dfd0c0c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:52:11.000Z'}}, {'blockNum': '0x7802a9', 'uniqueId': '0xe55ff72f4e8160e0bb94f3bd9de166ac2d681f2c864aaf54bbd3c5ae3657da2e:log:45', 'hash': '0xe55ff72f4e8160e0bb94f3bd9de166ac2d681f2c864aaf54bbd3c5ae3657da2e', 'from': '0x616e83660177fd508a7a939a849a288510713408', 'to': '0xe384137f7baffc564265006fd332e5b9adc66864', 'value': 603.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e0eedaf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:56:19.000Z'}}, {'blockNum': '0x7802b3', 'uniqueId': '0x80f7b088f7b08084b2104dc10a16f668dbe5381e99632fafc66c48417a71ff8a:log:30', 'hash': '0x80f7b088f7b08084b2104dc10a16f668dbe5381e99632fafc66c48417a71ff8a', 'from': '0xe384137f7baffc564265006fd332e5b9adc66864', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 603.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e0eedaf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:59:02.000Z'}}, {'blockNum': '0x7802e6', 'uniqueId': '0x953cb2049b4d55a3c24bc4d303a7e95d057eb76b0abc45602e4e5c9d02806115:log:30', 'hash': '0x953cb2049b4d55a3c24bc4d303a7e95d057eb76b0abc45602e4e5c9d02806115', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 603.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e0eedaf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T04:10:01.000Z'}}, {'blockNum': '0x78030e', 'uniqueId': '0x4acf271672cb6fa5d73da9fda6aedd3ac618c33d4adb5c12bc7775e7293a9d7a:log:12', 'hash': '0x4acf271672cb6fa5d73da9fda6aedd3ac618c33d4adb5c12bc7775e7293a9d7a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1626.928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25e13f1e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T04:17:45.000Z'}}, {'blockNum': '0x780315', 'uniqueId': '0x6f3c32d3e7eed77bf148fcb5e5839b544eb46d6cfa993dbde23770b5ea90eabd:log:13', 'hash': '0x6f3c32d3e7eed77bf148fcb5e5839b544eb46d6cfa993dbde23770b5ea90eabd', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa3e0b06bfe4a25ef0fc80a20cfee6d2fb563684c', 'value': 466.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0add7b0560', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T04:19:23.000Z'}}, {'blockNum': '0x780346', 'uniqueId': '0x974a1eda13eb2f40a06072d70f48d07b49af23f5bffdc077b5b7b61149ce9864:log:23', 'hash': '0x974a1eda13eb2f40a06072d70f48d07b49af23f5bffdc077b5b7b61149ce9864', 'from': '0xa3e0b06bfe4a25ef0fc80a20cfee6d2fb563684c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 466.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0add7b0560', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T04:30:05.000Z'}}, {'blockNum': '0x78035a', 'uniqueId': '0xe3e9584223f4213400c1d73b4d0d1d1ea4c4198ba57a62c8fbe01ae0497273b8:log:63', 'hash': '0xe3e9584223f4213400c1d73b4d0d1d1ea4c4198ba57a62c8fbe01ae0497273b8', 'from': '0xe1da32fa5002d62eb1b383f9a3239015822562b3', 'to': '0xf3a71cc1be5ce833c471e3f25aa391f9cd56e1aa', 'value': 0.05487468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x53bb6c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T04:36:13.000Z'}}, {'blockNum': '0x780367', 'uniqueId': '0x7a892e9ee317c4a7c171ed73da2f429399044e35ed35502bb90aa010e2e2c5e8:log:19', 'hash': '0x7a892e9ee317c4a7c171ed73da2f429399044e35ed35502bb90aa010e2e2c5e8', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xf3a71cc1be5ce833c471e3f25aa391f9cd56e1aa', 'value': 1.87783205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b315825', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T04:38:46.000Z'}}, {'blockNum': '0x780385', 'uniqueId': '0xfea26e378f45d1c809dcbc2a7bd5441653522351010a0760572e3da08367e3e0:log:175', 'hash': '0xfea26e378f45d1c809dcbc2a7bd5441653522351010a0760572e3da08367e3e0', 'from': '0xb0703f1c87209989974ea3c7062a1f2fd233b756', 'to': '0xcbc7baca85ecb864c8bacbb649d85dc5bafbea90', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T04:46:42.000Z'}}, {'blockNum': '0x7803ac', 'uniqueId': '0x4ff5e57cb53d365f1d4fc73e2dcc321d12c7cd7cb3dd4dfc787b7574ceeceb6f:log:6', 'hash': '0x4ff5e57cb53d365f1d4fc73e2dcc321d12c7cd7cb3dd4dfc787b7574ceeceb6f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1613.104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x258ed95e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T04:54:19.000Z'}}, {'blockNum': '0x7803bf', 'uniqueId': '0x375f073ca88e2c24a08d87abca1466adecac47297f16b055202019c1d9b268e8:log:148', 'hash': '0x375f073ca88e2c24a08d87abca1466adecac47297f16b055202019c1d9b268e8', 'from': '0xcbc7baca85ecb864c8bacbb649d85dc5bafbea90', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T05:00:28.000Z'}}, {'blockNum': '0x7803c7', 'uniqueId': '0xcb8e4682d356087c08829587dc15835cdc5fa85c59360decff49309a10a45387:log:13', 'hash': '0xcb8e4682d356087c08829587dc15835cdc5fa85c59360decff49309a10a45387', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x36edf867eeca1fe1e02235779eebde14c5d8f3d3', 'value': 3216.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4ae379f300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T05:02:19.000Z'}}, {'blockNum': '0x7803cb', 'uniqueId': '0x6d7e5660bb04a7329bd53b17a2180fbb2ab94226d489fab4a9f28b9e93911b48:log:23', 'hash': '0x6d7e5660bb04a7329bd53b17a2180fbb2ab94226d489fab4a9f28b9e93911b48', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xcf9f9b2362e53fd5241dd13568037671913baa7b', 'value': 14.38, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x55b62380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T05:03:20.000Z'}}, {'blockNum': '0x7803dc', 'uniqueId': '0x0474f34bd3b1a19765d4ec873fd6a03c08b44b032a05712e17f3c85ece67e8e1:log:16', 'hash': '0x0474f34bd3b1a19765d4ec873fd6a03c08b44b032a05712e17f3c85ece67e8e1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1626.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25e1146480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T05:06:06.000Z'}}, {'blockNum': '0x7803f4', 'uniqueId': '0xa956f155bb3df07dc55ea55d2c31a99af99ec7a4a463a83f19be348c2ba67074:log:25', 'hash': '0xa956f155bb3df07dc55ea55d2c31a99af99ec7a4a463a83f19be348c2ba67074', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'value': 409.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x098873dc00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T05:10:23.000Z'}}, {'blockNum': '0x78044b', 'uniqueId': '0x633c327f86d4ded8bd55772b822dd104d5636618609520a0b722ebe14286f723:log:155', 'hash': '0x633c327f86d4ded8bd55772b822dd104d5636618609520a0b722ebe14286f723', 'from': '0x981854df9dede96490649816840d6e042d0556fb', 'to': '0x5b07d158d4a77aea303915293ce6e4be3562a5f7', 'value': 1011.93482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x178f99ff10', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T05:24:46.000Z'}}, {'blockNum': '0x780464', 'uniqueId': '0x9eafe112f50e0c7e8159cfe2893b9640a68d0c86a93e89b0cc2251fa8c9335f9:log:59', 'hash': '0x9eafe112f50e0c7e8159cfe2893b9640a68d0c86a93e89b0cc2251fa8c9335f9', 'from': '0x5b07d158d4a77aea303915293ce6e4be3562a5f7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3064.93841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x475c74de68', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T05:30:31.000Z'}}, {'blockNum': '0x7804b1', 'uniqueId': '0xc8e78b47dcc0f70c40f4da17134ddc892e8b7efa480d419744f282f1e4a54243:log:26', 'hash': '0xc8e78b47dcc0f70c40f4da17134ddc892e8b7efa480d419744f282f1e4a54243', 'from': '0x36edf867eeca1fe1e02235779eebde14c5d8f3d3', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3216.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4ae379f300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T05:46:45.000Z'}}, {'blockNum': '0x7804b1', 'uniqueId': '0x28b4a48eb884dcf2d3de445e3a6b7461a977f7dc8905dd51c7a77e080ff2f531:log:27', 'hash': '0x28b4a48eb884dcf2d3de445e3a6b7461a977f7dc8905dd51c7a77e080ff2f531', 'from': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 409.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x098873dc00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T05:46:45.000Z'}}, {'blockNum': '0x7804b1', 'uniqueId': '0xe53daa7405cdf55f0639c25cefd2df343e38ffa1e51f4c057f459df93cee92dd:log:30', 'hash': '0xe53daa7405cdf55f0639c25cefd2df343e38ffa1e51f4c057f459df93cee92dd', 'from': '0xa578cd67abaee60003951464fe49cb7544e41611', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 4866.932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x71512ce080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T05:46:45.000Z'}}, {'blockNum': '0x7804f0', 'uniqueId': '0xbc2b1bc95821b314d89495f6fe6408777b901cd6c30c6028bec4e925f85dab11:log:37', 'hash': '0xbc2b1bc95821b314d89495f6fe6408777b901cd6c30c6028bec4e925f85dab11', 'from': '0x2201697a7a9ce6e41c11d955d222b380fadb3bac', 'to': '0xce3d2662fe44918fbb585241ed8fb4ee4347d4c7', 'value': 15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x59682f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T06:00:01.000Z'}}, {'blockNum': '0x7804fc', 'uniqueId': '0xf94a472f674f62ba07dee620e8c3acaabc32c6ec0c24a837b97f96d62f215dcc:log:24', 'hash': '0xf94a472f674f62ba07dee620e8c3acaabc32c6ec0c24a837b97f96d62f215dcc', 'from': '0x268cd2d7464ac3366e0254daad6f93364d6e3507', 'to': '0x3a9d7e387fb7bbbbf6c2e277468688b6e05dafa5', 'value': 15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x59682f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T06:03:04.000Z'}}, {'blockNum': '0x780520', 'uniqueId': '0xf7a414a3e3feed5ab6a9656b308a0fc27d391afd62ff09833b7f012ad7625654:log:163', 'hash': '0xf7a414a3e3feed5ab6a9656b308a0fc27d391afd62ff09833b7f012ad7625654', 'from': '0x977b1ea1549ff6908ace041796ea9a54d6a8dec5', 'to': '0x3a9d7e387fb7bbbbf6c2e277468688b6e05dafa5', 'value': 15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x59682f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T06:10:37.000Z'}}, {'blockNum': '0x780523', 'uniqueId': '0xac1a6363f9f7c5716a3a38032f5b16857a3dd010f5659a6faac9502d8ebf49b2:log:99', 'hash': '0xac1a6363f9f7c5716a3a38032f5b16857a3dd010f5659a6faac9502d8ebf49b2', 'from': '0x81a1774a5f77fd5630b6513ca797c8dd14c1f3bf', 'to': '0x3a9d7e387fb7bbbbf6c2e277468688b6e05dafa5', 'value': 15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x59682f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T06:11:35.000Z'}}, {'blockNum': '0x780536', 'uniqueId': '0x069edea4fbd00a1e532966c2da0cbef5858a4809c55a50e62f8692476114d8b2:log:57', 'hash': '0x069edea4fbd00a1e532966c2da0cbef5858a4809c55a50e62f8692476114d8b2', 'from': '0x3a9d7e387fb7bbbbf6c2e277468688b6e05dafa5', 'to': '0x7d1d856380fcf977635b71ef69087f43ac072269', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T06:15:19.000Z'}}, {'blockNum': '0x78063d', 'uniqueId': '0x8eb884bb5e62d300b0b6ed4743c72ddd518567d064f1dd410285bbe55f5efe41:log:21', 'hash': '0x8eb884bb5e62d300b0b6ed4743c72ddd518567d064f1dd410285bbe55f5efe41', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd7f6965ddb77042a01a1e800f41cd5bc4b565776', 'value': 372.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08aea83e80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T07:14:20.000Z'}}, {'blockNum': '0x78077e', 'uniqueId': '0xf395b8d3ec5d0c199a71aef4305c6237f991528aed2ac1747414ca19d82e218f:log:9', 'hash': '0xf395b8d3ec5d0c199a71aef4305c6237f991528aed2ac1747414ca19d82e218f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x41d7ba904b4dbe8ad00b58c0937813ac0d4113bb', 'value': 271.83, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06543ba9c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T08:32:55.000Z'}}, {'blockNum': '0x780789', 'uniqueId': '0x4320efba2a3a621e2f0376b57f2625a3d9a7330bbde31e618063ac923b795962:log:26', 'hash': '0x4320efba2a3a621e2f0376b57f2625a3d9a7330bbde31e618063ac923b795962', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa65169244d72df82d42a223476fcfbfc2feb4e81', 'value': 201.91348606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04b37f877e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T08:34:39.000Z'}}, {'blockNum': '0x78079f', 'uniqueId': '0xbf6bf18bf8c7c6d4fa9d4c8e6a6b791c596479a5f2a964110833882bbc288bc1:log:8', 'hash': '0xbf6bf18bf8c7c6d4fa9d4c8e6a6b791c596479a5f2a964110833882bbc288bc1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1626.218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25dd03be40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T08:39:22.000Z'}}, {'blockNum': '0x7807aa', 'uniqueId': '0xb904663cde98841547e1f7f1f799b88da7bc293a282dadc6bfbc35b11d519878:log:1', 'hash': '0xb904663cde98841547e1f7f1f799b88da7bc293a282dadc6bfbc35b11d519878', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x37929986a2ecf7c192175b75e2b571254739792c', 'value': 892.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x14c75b5f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T08:43:00.000Z'}}, {'blockNum': '0x7807b9', 'uniqueId': '0x9158fbe291f9370938ca8748441d843337d218cdcf08df7efb991b9269a66060:log:2', 'hash': '0x9158fbe291f9370938ca8748441d843337d218cdcf08df7efb991b9269a66060', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x55f08be66905a1be1a0a6780091fe9d07346b4ca', 'value': 893.649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x14ce9028a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T08:45:07.000Z'}}, {'blockNum': '0x7807c0', 'uniqueId': '0x9b963952bf9be95636a810275d7de05187d711c6610f940884155bbfb8490be5:log:76', 'hash': '0x9b963952bf9be95636a810275d7de05187d711c6610f940884155bbfb8490be5', 'from': '0xa578cd67abaee60003951464fe49cb7544e41611', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1626.218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25dd03be40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T08:47:15.000Z'}}, {'blockNum': '0x780805', 'uniqueId': '0x408f9d07d29fbde292d1a7af88f3e3c474b38950866290c83abce29962b96f88:log:8', 'hash': '0x408f9d07d29fbde292d1a7af88f3e3c474b38950866290c83abce29962b96f88', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb970f97a6a560566c4562c1ab6a3f708339a1710', 'value': 497.94, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b97f42480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T08:59:35.000Z'}}, {'blockNum': '0x78090c', 'uniqueId': '0xc2714170d0d3846dca419b8d5b53e71b9dd94555a45e0f2360da6d4245c8be37:log:3', 'hash': '0xc2714170d0d3846dca419b8d5b53e71b9dd94555a45e0f2360da6d4245c8be37', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'value': 994.282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x172661ee40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T09:59:28.000Z'}}, {'blockNum': '0x78090f', 'uniqueId': '0x2feb4ff20e8d759bcd61cc0f293c455b57013687ccb118cec127a2d53637f8ef:log:2', 'hash': '0x2feb4ff20e8d759bcd61cc0f293c455b57013687ccb118cec127a2d53637f8ef', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 184.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x044b591b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T10:00:53.000Z'}}, {'blockNum': '0x78092b', 'uniqueId': '0x3dcbb6960184dc9ea53989e1ebeecf1fbfd5a7bedc2717ddac5d4cb0e9455a3e:log:13', 'hash': '0x3dcbb6960184dc9ea53989e1ebeecf1fbfd5a7bedc2717ddac5d4cb0e9455a3e', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'value': 445.466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a5f2f2c40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T10:08:22.000Z'}}, {'blockNum': '0x7809a6', 'uniqueId': '0x9067737eea5bfdec83c6755738e73cf5a9659467bc0c5015e64fd09e9b8b47eb:log:10', 'hash': '0x9067737eea5bfdec83c6755738e73cf5a9659467bc0c5015e64fd09e9b8b47eb', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1407.774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x20c6fca6c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T10:38:02.000Z'}}, {'blockNum': '0x7809c6', 'uniqueId': '0x99db8b59b3c78b2ee02d46ab5a5631695104c6b391446febdf30727c9fb7c3e7:log:0', 'hash': '0x99db8b59b3c78b2ee02d46ab5a5631695104c6b391446febdf30727c9fb7c3e7', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 200.128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a8db1800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T10:46:38.000Z'}}, {'blockNum': '0x7809cd', 'uniqueId': '0xfaa4f0d5ecfdd869c0fc2905eee75de95255b42f10841f2ea1ab96ad6762a245:log:25', 'hash': '0xfaa4f0d5ecfdd869c0fc2905eee75de95255b42f10841f2ea1ab96ad6762a245', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x799ec2b69296ff49d276542dccfa47a452c165bb', 'value': 6636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9a81a46c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T10:48:39.000Z'}}, {'blockNum': '0x7809e1', 'uniqueId': '0x6993a7dfbde935ab2e1544a7edb27f55637876f17a33819ea84ff938d921c90e:log:91', 'hash': '0x6993a7dfbde935ab2e1544a7edb27f55637876f17a33819ea84ff938d921c90e', 'from': '0x5eb1bea85208929bd38cad554cb74d98e9722a11', 'to': '0x799ec2b69296ff49d276542dccfa47a452c165bb', 'value': 1061.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x18b6145180', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T10:53:18.000Z'}}, {'blockNum': '0x780a13', 'uniqueId': '0x6b451f1c7e2a39e9f9fa3b15596a3d53ade292682128abda91f21e79c75d528c:log:32', 'hash': '0x6b451f1c7e2a39e9f9fa3b15596a3d53ade292682128abda91f21e79c75d528c', 'from': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1439.748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2185911a80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T11:05:07.000Z'}}, {'blockNum': '0x780a9f', 'uniqueId': '0x601e3ef151beb07008b548510c4c3bee521cdba735b3985d99b253dd9c72e251:log:83', 'hash': '0x601e3ef151beb07008b548510c4c3bee521cdba735b3985d99b253dd9c72e251', 'from': '0xa19d0a4cf4b2829b4a83c8bf1a076a5eb4f3b2ed', 'to': '0x928c341a2470e785ff2fab1c10a36dbe09012f39', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5d21dba000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T11:30:47.000Z'}}, {'blockNum': '0x780acf', 'uniqueId': '0x941502d86f49c20f847732870a98c632f3755a817aafd5cc9bd9c6a735c4d953:log:32', 'hash': '0x941502d86f49c20f847732870a98c632f3755a817aafd5cc9bd9c6a735c4d953', 'from': '0x928c341a2470e785ff2fab1c10a36dbe09012f39', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5d21dba000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T11:40:05.000Z'}}, {'blockNum': '0x780b1c', 'uniqueId': '0xce024ccf9d9aa699c528e2ee8edcec412587bc5e2b230598586ef5c80eba7df1:log:7', 'hash': '0xce024ccf9d9aa699c528e2ee8edcec412587bc5e2b230598586ef5c80eba7df1', 'from': '0x1071764fa56827c66ec5f454f105a82639575ee7', 'to': '0x4e32365ff0218e1baf13b6a63d2648d34f8b0747', 'value': 642.68913029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ef6b9c985', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T11:56:15.000Z'}}, {'blockNum': '0x780b2b', 'uniqueId': '0x729adff549568956788889a64ac3da20f0c202da3c0ae56da18eec3016546686:log:75', 'hash': '0x729adff549568956788889a64ac3da20f0c202da3c0ae56da18eec3016546686', 'from': '0x4e32365ff0218e1baf13b6a63d2648d34f8b0747', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 642.68913029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ef6b9c985', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T11:59:57.000Z'}}, {'blockNum': '0x780b3a', 'uniqueId': '0xe2cb705d93c22e99280ffd7223e7552c5d1320a524bb7e89c3fbde773a3cf01a:log:17', 'hash': '0xe2cb705d93c22e99280ffd7223e7552c5d1320a524bb7e89c3fbde773a3cf01a', 'from': '0xa578cd67abaee60003951464fe49cb7544e41611', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1607.902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x256fd7bec0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:03:56.000Z'}}, {'blockNum': '0x780b42', 'uniqueId': '0x9f45d9876cfa93f7024d5bb5bbadc8e2b644b00a305542e8980897334f257f76:log:15', 'hash': '0x9f45d9876cfa93f7024d5bb5bbadc8e2b644b00a305542e8980897334f257f76', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 184.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x044b591b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:06:11.000Z'}}, {'blockNum': '0x780b6c', 'uniqueId': '0x00b13ff959e3c478a3dddd34d4bafa1960ab1d9bfade7edfe5e9002a25eb3817:log:119', 'hash': '0x00b13ff959e3c478a3dddd34d4bafa1960ab1d9bfade7edfe5e9002a25eb3817', 'from': '0x472bf46d5fc2816c1a7b343442a79a89ef055ab6', 'to': '0x10aaed27e13fdf9c174d1b581da505bd7704ab6e', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:15:09.000Z'}}, {'blockNum': '0x780b72', 'uniqueId': '0xe0a9652cc57f9ca6d82f1fb24d1ee6a4d400e09c2327fb99c3402a7952f30afa:log:11', 'hash': '0xe0a9652cc57f9ca6d82f1fb24d1ee6a4d400e09c2327fb99c3402a7952f30afa', 'from': '0x472bf46d5fc2816c1a7b343442a79a89ef055ab6', 'to': '0x5280ec861d087b4179aa67978e8d5ad2d25f0906', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:16:53.000Z'}}, {'blockNum': '0x780b7d', 'uniqueId': '0x2f58705856bdb713516a218adc77a5167d225270081cd23849b2061da242743b:log:83', 'hash': '0x2f58705856bdb713516a218adc77a5167d225270081cd23849b2061da242743b', 'from': '0x472bf46d5fc2816c1a7b343442a79a89ef055ab6', 'to': '0xc88744baf972a421675d3ea695dcfbfd4e3a65f1', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:20:12.000Z'}}, {'blockNum': '0x780b84', 'uniqueId': '0x811493f6bbea1ce73ce4e702e762cc66919a6cd52e96c64db412630c908b8173:log:6', 'hash': '0x811493f6bbea1ce73ce4e702e762cc66919a6cd52e96c64db412630c908b8173', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1627.566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25e50ca0c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:21:51.000Z'}}, {'blockNum': '0x780b92', 'uniqueId': '0x94abd6578f55b8c3296a0f98f7f73d9cfb630320a4e59a74b34412e0231da6d0:log:5', 'hash': '0x94abd6578f55b8c3296a0f98f7f73d9cfb630320a4e59a74b34412e0231da6d0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x36edf867eeca1fe1e02235779eebde14c5d8f3d3', 'value': 2768.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4075303300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:25:58.000Z'}}, {'blockNum': '0x780b93', 'uniqueId': '0x101cbd1b9cb47b465fbd0991339aadd34553ea3011eec2e4253737a8c5490c1d:log:12', 'hash': '0x101cbd1b9cb47b465fbd0991339aadd34553ea3011eec2e4253737a8c5490c1d', 'from': '0x32e567e8b527d3194c60ea3c6a5c009d58a0b36d', 'to': '0x63498c428d27f5bc56b828fda76b8cd6091e8af0', 'value': 1003.22008142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x175ba85c4e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:26:27.000Z'}}, {'blockNum': '0x780bf6', 'uniqueId': '0x20abadaaca2a7cbb9c7f6cc0550aed3da79b0b3815b97034dc95a09a997ea6a8:log:98', 'hash': '0x20abadaaca2a7cbb9c7f6cc0550aed3da79b0b3815b97034dc95a09a997ea6a8', 'from': '0xd4ce54ac108be1e22fcd3ca01ec95232c8ee4ccd', 'to': '0x9b32f1403ac24e215d3627dff7dcd32d58cd34a3', 'value': 101.65516493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x025de978cd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:46:52.000Z'}}, {'blockNum': '0x780c14', 'uniqueId': '0x6d25b51edf4081c9383fd147fb061446ee8d0aa58e51723786dd52d1fee7bb23:log:56', 'hash': '0x6d25b51edf4081c9383fd147fb061446ee8d0aa58e51723786dd52d1fee7bb23', 'from': '0xd4ce54ac108be1e22fcd3ca01ec95232c8ee4ccd', 'to': '0x70214d41a3b738b6819ea3e0c6337fd654cdd076', 'value': 101.65516493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x025de978cd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:51:33.000Z'}}, {'blockNum': '0x780c28', 'uniqueId': '0x69643936ec07d4270f4d79b718f022e5070c09954491e9d3d03e44d5908ff9b7:log:31', 'hash': '0x69643936ec07d4270f4d79b718f022e5070c09954491e9d3d03e44d5908ff9b7', 'from': '0x9b32f1403ac24e215d3627dff7dcd32d58cd34a3', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 101.65516493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x025de978cd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:55:41.000Z'}}, {'blockNum': '0x780c28', 'uniqueId': '0x70b54b1bef7d8dbae5ddd0e189698186f4acf770ad33b83d0dba3a49fe921002:log:37', 'hash': '0x70b54b1bef7d8dbae5ddd0e189698186f4acf770ad33b83d0dba3a49fe921002', 'from': '0x70214d41a3b738b6819ea3e0c6337fd654cdd076', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 101.65516493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x025de978cd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:55:41.000Z'}}, {'blockNum': '0x780c3f', 'uniqueId': '0x781b92062d1f26d43ad85343876157bf5103fc1f07862883f382fc641c0479d4:log:35', 'hash': '0x781b92062d1f26d43ad85343876157bf5103fc1f07862883f382fc641c0479d4', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 203.31032986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04bbd2f19a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T13:01:15.000Z'}}, {'blockNum': '0x780c4e', 'uniqueId': '0x24d66d14c5c08f0cde005fc18e830d6fd71084f40f80f3fc29c9f7810723598e:log:36', 'hash': '0x24d66d14c5c08f0cde005fc18e830d6fd71084f40f80f3fc29c9f7810723598e', 'from': '0x36edf867eeca1fe1e02235779eebde14c5d8f3d3', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2768.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4075303300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T13:04:42.000Z'}}, {'blockNum': '0x780c4e', 'uniqueId': '0x814d2ca8d8b9555aa2132d79529a2cb0b0472af250568edaa33eb9bb069baea9:log:37', 'hash': '0x814d2ca8d8b9555aa2132d79529a2cb0b0472af250568edaa33eb9bb069baea9', 'from': '0xa578cd67abaee60003951464fe49cb7544e41611', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1627.566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25e50ca0c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T13:04:42.000Z'}}, {'blockNum': '0x780c92', 'uniqueId': '0xe37b6ca13c7229a2ba9c12998ffd26d590bce41b93204cb84b0b714b146a51c6:log:43', 'hash': '0xe37b6ca13c7229a2ba9c12998ffd26d590bce41b93204cb84b0b714b146a51c6', 'from': '0x0344e613e8d41bc9f7588598357d7558099a1778', 'to': '0xb1be42c354fe8e7ef46699e3e018b47df1def200', 'value': 376.075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08c194e8e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T13:19:18.000Z'}}, {'blockNum': '0x780cbe', 'uniqueId': '0x272213888a177e55258f17b8ef7dc2f25013f045ba0a0d8fb047acc6189c0861:log:98', 'hash': '0x272213888a177e55258f17b8ef7dc2f25013f045ba0a0d8fb047acc6189c0861', 'from': '0xce3d2662fe44918fbb585241ed8fb4ee4347d4c7', 'to': '0xaa6cba72075ad880d406c2beccc5ea2dae7e3ec6', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9502f900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T13:29:28.000Z'}}, {'blockNum': '0x780cdf', 'uniqueId': '0x74c0519db065fc0a64c33ada94ede421dae4d0bfe704b5ea7764afafe078a8ff:log:18', 'hash': '0x74c0519db065fc0a64c33ada94ede421dae4d0bfe704b5ea7764afafe078a8ff', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x27e3a7255724f486bb93851dc64d1968279c36ab', 'value': 158.13, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03ae873b40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T13:36:05.000Z'}}, {'blockNum': '0x780d20', 'uniqueId': '0x35de680352e54ab19fe2c482edd519d8e97be6ec28497c8e09f1d1fe9ee9a94d:log:117', 'hash': '0x35de680352e54ab19fe2c482edd519d8e97be6ec28497c8e09f1d1fe9ee9a94d', 'from': '0xb5ef47ecf266ee4dc614e9ccb88a3a7fdc4957da', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 43.09808943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0100e2772f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T13:52:43.000Z'}}, {'blockNum': '0x780d2d', 'uniqueId': '0xb53ee6a657425099035bee370c13d6bb71ab29db874a973f1526848c9eea33d9:log:70', 'hash': '0xb53ee6a657425099035bee370c13d6bb71ab29db874a973f1526848c9eea33d9', 'from': '0xd1ed9b54ca79b2ef87d13e1662ed5eb4ebbba894', 'to': '0x9559d08a64dd68ced94fc5a3802fc33e0a5eb559', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T13:55:32.000Z'}}, {'blockNum': '0x780d43', 'uniqueId': '0x623176e1abddc8513cfd198c37aaa5920f956ad757965a016cac096b55442223:log:136', 'hash': '0x623176e1abddc8513cfd198c37aaa5920f956ad757965a016cac096b55442223', 'from': '0x35f48a13528d22e3c313366130f53fb2d7302b0c', 'to': '0xf555e0136c802857e2f64d3307fb9a27f54eee36', 'value': 848.37449961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x13c0b4c0e9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:00:08.000Z'}}, {'blockNum': '0x780d55', 'uniqueId': '0x11190a8342d068920c1401bb5484744b4c8774aa7cd57575a9cf84900e410f96:log:78', 'hash': '0x11190a8342d068920c1401bb5484744b4c8774aa7cd57575a9cf84900e410f96', 'from': '0x9559d08a64dd68ced94fc5a3802fc33e0a5eb559', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:03:50.000Z'}}, {'blockNum': '0x780d79', 'uniqueId': '0xc8aac561d104bda8bf80e6d1dcd7b4fdba5fcd248bb4aff36bc5708cb72da8e7:log:103', 'hash': '0xc8aac561d104bda8bf80e6d1dcd7b4fdba5fcd248bb4aff36bc5708cb72da8e7', 'from': '0xf555e0136c802857e2f64d3307fb9a27f54eee36', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 848.37449961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x13c0b4c0e9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:09:58.000Z'}}, {'blockNum': '0x780da7', 'uniqueId': '0xf0ced0df44379768fcff64319e65f7445f4737fe40b1f11438312688a3b0a3dd:log:27', 'hash': '0xf0ced0df44379768fcff64319e65f7445f4737fe40b1f11438312688a3b0a3dd', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:20:03.000Z'}}, {'blockNum': '0x780dce', 'uniqueId': '0x078a78e45ab9b0e6aa917eaac4bde33ced51e005be5d969c2002a32e91ff2f59:log:143', 'hash': '0x078a78e45ab9b0e6aa917eaac4bde33ced51e005be5d969c2002a32e91ff2f59', 'from': '0xaa1559de968affb0ccde6c8e2f47763e787762d6', 'to': '0xfef35a7bfd422bf277cfdde1f2f6150fe5fc365b', 'value': 1000.13185795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1749401b03', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:28:53.000Z'}}, {'blockNum': '0x780dd5', 'uniqueId': '0x980b513149d72087d2dfb2493ae69098542e70d5bfdc16b667f99323eb32a50b:log:71', 'hash': '0x980b513149d72087d2dfb2493ae69098542e70d5bfdc16b667f99323eb32a50b', 'from': '0xfef35a7bfd422bf277cfdde1f2f6150fe5fc365b', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1000.13185795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1749401b03', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:32:08.000Z'}}, {'blockNum': '0x780de7', 'uniqueId': '0x1f99358054d39770e75ace2942dfcc15f4d1374956322faaef14ac18bc46c148:log:1', 'hash': '0x1f99358054d39770e75ace2942dfcc15f4d1374956322faaef14ac18bc46c148', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0x6aabd70800f218a2fed2a4e1db94daaee89d07c6', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:36:49.000Z'}}, {'blockNum': '0x780de9', 'uniqueId': '0x7a079be0724dd20f9ee4fd0d822f2e610e1ea74b324662517d9aa4f7d2aae9ae:log:41', 'hash': '0x7a079be0724dd20f9ee4fd0d822f2e610e1ea74b324662517d9aa4f7d2aae9ae', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 1608.325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25725d3120', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:38:47.000Z'}}, {'blockNum': '0x780df2', 'uniqueId': '0x640f95b8f3d2755826146326198b9e66dc6050922e93c0e0e19d6962f83473c7:log:74', 'hash': '0x640f95b8f3d2755826146326198b9e66dc6050922e93c0e0e19d6962f83473c7', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000.13185795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1749401b03', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:41:04.000Z'}}, {'blockNum': '0x780e03', 'uniqueId': '0x1d78541693e08c527ece14a4e7aedd44a7c32b11748bf0295b854664807b9e15:log:2', 'hash': '0x1d78541693e08c527ece14a4e7aedd44a7c32b11748bf0295b854664807b9e15', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 2842.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4230688e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:43:59.000Z'}}, {'blockNum': '0x780e1e', 'uniqueId': '0x43d249a83fb6d3d01ca8881d59f1480d09ccead92acab92d066d1d53b6d3d6ea:log:4', 'hash': '0x43d249a83fb6d3d01ca8881d59f1480d09ccead92acab92d066d1d53b6d3d6ea', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfe8bc9d533b22efd27583139847cd4c38953f94d', 'value': 401.97124047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x095bef6fcf', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:50:48.000Z'}}, {'blockNum': '0x780e1e', 'uniqueId': '0x06077f513534708bc8e2bf9f6479d80439719f91deb08a8447657127b2d3725c:log:7', 'hash': '0x06077f513534708bc8e2bf9f6479d80439719f91deb08a8447657127b2d3725c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 452.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a88c0a700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:50:48.000Z'}}, {'blockNum': '0x780e1e', 'uniqueId': '0x5216096f46c58b24bc562d90135dd6aa8176ed458bf43e7807cc1483afc234b1:log:65', 'hash': '0x5216096f46c58b24bc562d90135dd6aa8176ed458bf43e7807cc1483afc234b1', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2842.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4230688e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:50:48.000Z'}}, {'blockNum': '0x780e24', 'uniqueId': '0x761ae2cf4bb427f1f5cd0fa12ab2524f0bd842474260576b3eb1411662f04ab5:log:20', 'hash': '0x761ae2cf4bb427f1f5cd0fa12ab2524f0bd842474260576b3eb1411662f04ab5', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5922a79b481c9fa64355bb8baf1ff3309369e1fd', 'value': 75.63825918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01c2d6d2fe', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:52:27.000Z'}}, {'blockNum': '0x780e2f', 'uniqueId': '0x8b85c0da2a0214abefd99d526dbde7a5b8903f58d15c1bf5b68aa7f4f0a0fec9:log:102', 'hash': '0x8b85c0da2a0214abefd99d526dbde7a5b8903f58d15c1bf5b68aa7f4f0a0fec9', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5922a79b481c9fa64355bb8baf1ff3309369e1fd', 'value': 383.84609289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08efe6a809', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:54:34.000Z'}}, {'blockNum': '0x780e63', 'uniqueId': '0x59c6e29c199e72b7c5f63d5d212a696a30ab8cd9c4320a1923ac6afe46bd3697:log:30', 'hash': '0x59c6e29c199e72b7c5f63d5d212a696a30ab8cd9c4320a1923ac6afe46bd3697', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 452.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a88c0a700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T15:05:41.000Z'}}, {'blockNum': '0x780ed4', 'uniqueId': '0x5aad2ce67fe6cd94f116d5b2e306fe27317980eca8940725ae21ab088ddcc19b:log:7', 'hash': '0x5aad2ce67fe6cd94f116d5b2e306fe27317980eca8940725ae21ab088ddcc19b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 451.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a82cac600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T15:31:32.000Z'}}, {'blockNum': '0x780ee8', 'uniqueId': '0xd3480f08b89036dff4dedd1dbd6a41c096907817c8860b4102f0e714c02f5042:log:10', 'hash': '0xd3480f08b89036dff4dedd1dbd6a41c096907817c8860b4102f0e714c02f5042', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'value': 348.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x081cdd3f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T15:36:12.000Z'}}, {'blockNum': '0x780eeb', 'uniqueId': '0xde59cc3168042d2b68e836618796da99277d05099d96185b6e9e450e6146a8ca:log:11', 'hash': '0xde59cc3168042d2b68e836618796da99277d05099d96185b6e9e450e6146a8ca', 'from': '0x164632c9855308641295fac06811dd6b1f7f6bfc', 'to': '0x5462d3f892ffbdec917fbfd44d2d014b4be49f40', 'value': 550, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0cce416600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T15:36:30.000Z'}}, {'blockNum': '0x780ef7', 'uniqueId': '0xf8a62b66e5dd1a9222e0b7d0e948b6971c1307673921e46ebc75555dc4ec2bd5:log:12', 'hash': '0xf8a62b66e5dd1a9222e0b7d0e948b6971c1307673921e46ebc75555dc4ec2bd5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xea5a31be2fce24680eca4219ebd78f8df89ea73d', 'value': 50.388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012c55fc80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T15:38:49.000Z'}}, {'blockNum': '0x780f3b', 'uniqueId': '0xe6d0db14400b750584666184329623e2b721371d68ed2e5a85bdcbd847a0d6f3:log:3', 'hash': '0xe6d0db14400b750584666184329623e2b721371d68ed2e5a85bdcbd847a0d6f3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x36edf867eeca1fe1e02235779eebde14c5d8f3d3', 'value': 2652.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3dc1c63f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T15:54:55.000Z'}}, {'blockNum': '0x780f4d', 'uniqueId': '0x4daab86244d8a61008d02c6b9a4ae0a057d684248ef6e6d823ec6caca7fa48ee:log:2', 'hash': '0x4daab86244d8a61008d02c6b9a4ae0a057d684248ef6e6d823ec6caca7fa48ee', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'value': 401.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0958c4d400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T15:59:25.000Z'}}, {'blockNum': '0x780f5a', 'uniqueId': '0x71d8cb3e7f86d520c8b5bf6c396c4b8bbb7c4434440e6c208e30848676f669f3:log:1', 'hash': '0x71d8cb3e7f86d520c8b5bf6c396c4b8bbb7c4434440e6c208e30848676f669f3', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1628.076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25e816d380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:01:31.000Z'}}, {'blockNum': '0x780f67', 'uniqueId': '0x86b6b6ffdd1ae5ef897dc2ed6c6fa67d0fc98d3e4e63e9e4eb6064c3d63e00a4:log:0', 'hash': '0x86b6b6ffdd1ae5ef897dc2ed6c6fa67d0fc98d3e4e63e9e4eb6064c3d63e00a4', 'from': '0x946a2c2fa8b264002058eb5e1d2a635994e4b559', 'to': '0x15111ced8acfbc83ef6f23707c7a61437f86cf39', 'value': 41.78108226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xf908df42', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:05:00.000Z'}}, {'blockNum': '0x780f6a', 'uniqueId': '0x02376bacc2a2d2fc879d4cb6c413148df7634185740a5d82899a4361ecb85081:log:58', 'hash': '0x02376bacc2a2d2fc879d4cb6c413148df7634185740a5d82899a4361ecb85081', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 451.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a82cac600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:06:29.000Z'}}, {'blockNum': '0x780f6a', 'uniqueId': '0x58e8f54c6125476b3f51de3bd3393a478f9b1ada50974d53e180a8fcef35bd98:log:76', 'hash': '0x58e8f54c6125476b3f51de3bd3393a478f9b1ada50974d53e180a8fcef35bd98', 'from': '0xfe8bc9d533b22efd27583139847cd4c38953f94d', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 401.97124047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x095bef6fcf', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:06:29.000Z'}}, {'blockNum': '0x780f75', 'uniqueId': '0xaf921950c16d4fbfb20d5af5fe64d0ae8c08f4f897abb4b877fc6a40437cfe97:log:14', 'hash': '0xaf921950c16d4fbfb20d5af5fe64d0ae8c08f4f897abb4b877fc6a40437cfe97', 'from': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 749.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1175a21300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:08:57.000Z'}}, {'blockNum': '0x780f75', 'uniqueId': '0x9cdf48b39879cb9968ed238df627c77b37cb84166d8738622cdeb10cc73feffb:log:27', 'hash': '0x9cdf48b39879cb9968ed238df627c77b37cb84166d8738622cdeb10cc73feffb', 'from': '0x36edf867eeca1fe1e02235779eebde14c5d8f3d3', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2652.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3dc1c63f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:08:57.000Z'}}, {'blockNum': '0x780f8e', 'uniqueId': '0x0324f8df035fb9a40d1367e62c17cd85349adda07f228d7efa28b484239e62e4:log:12', 'hash': '0x0324f8df035fb9a40d1367e62c17cd85349adda07f228d7efa28b484239e62e4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xce91af5d591b0c69041e57e61e04db2eed4390d9', 'value': 59.29, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0161655c40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:14:29.000Z'}}, {'blockNum': '0x780f91', 'uniqueId': '0xd5449d521437a4f3fd0f09d24200fe6cae857578c8c0452b2eb6d17d461104fd:log:0', 'hash': '0xd5449d521437a4f3fd0f09d24200fe6cae857578c8c0452b2eb6d17d461104fd', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1629.009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25eda678a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:16:44.000Z'}}, {'blockNum': '0x780ff8', 'uniqueId': '0xdca92bb76b0d2e2d0f131faaf6b5a31672a5888c5bcb296ee95e0ab0e6f09645:log:31', 'hash': '0xdca92bb76b0d2e2d0f131faaf6b5a31672a5888c5bcb296ee95e0ab0e6f09645', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xc1f678302590f18169ce4f46e20bf14185461169', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17d78400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:38:17.000Z'}}, {'blockNum': '0x780fff', 'uniqueId': '0x2aa83ef4c6893e4a84e0133af833daa9c95e20e82791089f80d0353c338d3e81:log:188', 'hash': '0x2aa83ef4c6893e4a84e0133af833daa9c95e20e82791089f80d0353c338d3e81', 'from': '0xcf49e1ba6954f02d321e09c0f8e947957074c6b8', 'to': '0x0efea8d4b173a2a32840293f0223f9486f6b3c6d', 'value': 97.81207384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0247016158', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:39:36.000Z'}}, {'blockNum': '0x781012', 'uniqueId': '0x32c37502139e24a793cd52c48f8b0740fafc194a93e5a51f19cd1ada4d05c94f:log:3', 'hash': '0x32c37502139e24a793cd52c48f8b0740fafc194a93e5a51f19cd1ada4d05c94f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2f963758a2045270200ea89579d9718c9d03648f', 'value': 29.83317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb1d1ce08', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:44:00.000Z'}}, {'blockNum': '0x781017', 'uniqueId': '0xf7ccf5119d914f6c02631a3d2c42806f447a9e571ec13d6ffc274ec2b58e21f3:log:128', 'hash': '0xf7ccf5119d914f6c02631a3d2c42806f447a9e571ec13d6ffc274ec2b58e21f3', 'from': '0x0efea8d4b173a2a32840293f0223f9486f6b3c6d', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 97.81207384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0247016158', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:46:45.000Z'}}, {'blockNum': '0x781026', 'uniqueId': '0x605461d7cc68c13a8223025bd2a4a2ae6e888a8c3b40e822c67dd3c3764a3bc0:log:3', 'hash': '0x605461d7cc68c13a8223025bd2a4a2ae6e888a8c3b40e822c67dd3c3764a3bc0', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6e1e10175b9145bb887ac78fff35fabea2dfff6d', 'value': 280.37777999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06872e8a4f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:48:28.000Z'}}, {'blockNum': '0x78102e', 'uniqueId': '0x0e94a0032081ff1663c3616a497c645d6f40870e86f2f0ce7bae583d5da246af:log:135', 'hash': '0x0e94a0032081ff1663c3616a497c645d6f40870e86f2f0ce7bae583d5da246af', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 97.81207384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0247016158', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:50:08.000Z'}}, {'blockNum': '0x78103a', 'uniqueId': '0x80cd291d74afedea82f98580fb5e60f58d24e24b8bf23ccc373a3b6eeb0b0a11:log:8', 'hash': '0x80cd291d74afedea82f98580fb5e60f58d24e24b8bf23ccc373a3b6eeb0b0a11', 'from': '0xde1d540bb473a1ee08be6c22bc99cd1b977562c8', 'to': '0x57345ded90fcdb0734c8516d640c2d73c1e2d6e2', 'value': 52.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0139853b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:52:48.000Z'}}, {'blockNum': '0x781044', 'uniqueId': '0x8b4934c501fd031eca71d04b3b8a516a24a635e4e062b9956f00180e21588c17:log:72', 'hash': '0x8b4934c501fd031eca71d04b3b8a516a24a635e4e062b9956f00180e21588c17', 'from': '0x57345ded90fcdb0734c8516d640c2d73c1e2d6e2', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 52.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0139853b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:55:18.000Z'}}, {'blockNum': '0x78105b', 'uniqueId': '0xe29e9b3293ec74a01176c8928fdc4ee0ac0072248c9563cb29c9e9e5d6f40202:log:52', 'hash': '0xe29e9b3293ec74a01176c8928fdc4ee0ac0072248c9563cb29c9e9e5d6f40202', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 52.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0139853b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T17:00:09.000Z'}}, {'blockNum': '0x781060', 'uniqueId': '0xc6302b12f7d25cde9cf8d5096b24c45b8b9135de9f77e09a7ee883447c0e0faa:log:2', 'hash': '0xc6302b12f7d25cde9cf8d5096b24c45b8b9135de9f77e09a7ee883447c0e0faa', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x3b8c43b6c8f33f201fd0fdf23c8badd0730ec4e9', 'value': 2851.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4263128680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T17:00:52.000Z'}}, {'blockNum': '0x78107e', 'uniqueId': '0x5053529748f655534af17659b1ed7c4713c000770e4466afcad2c26a0ebd6cda:log:3', 'hash': '0x5053529748f655534af17659b1ed7c4713c000770e4466afcad2c26a0ebd6cda', 'from': '0x2f5b9109457d70ec8c1ca52c586944a6f10cbd13', 'to': '0x13d6a4b52828b711886507a240db411496fb10a3', 'value': 190.13631737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x046d4cfef9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T17:07:21.000Z'}}, {'blockNum': '0x781084', 'uniqueId': '0x63e085dac037fe195b6d94ad2c903160eee3a3d5ac4c33b47a6fb089b90fa0b3:log:8', 'hash': '0x63e085dac037fe195b6d94ad2c903160eee3a3d5ac4c33b47a6fb089b90fa0b3', 'from': '0xa578cd67abaee60003951464fe49cb7544e41611', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3257.085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4bd5bd4c20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T17:09:35.000Z'}}, {'blockNum': '0x7810c4', 'uniqueId': '0x605de7a1fda78e985e4f99d5b88b5405c4884d761c68cfd2b156fa84ad6f9ac3:log:0', 'hash': '0x605de7a1fda78e985e4f99d5b88b5405c4884d761c68cfd2b156fa84ad6f9ac3', 'from': '0xbb0ab3a2db1aad7aa356a476d76e45a5559fe33d', 'to': '0xf82d2e28eb42a9dc7c4c2751f5aca2fe17bcc963', 'value': 1577.06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x24b8029680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T17:24:38.000Z'}}, {'blockNum': '0x7810dd', 'uniqueId': '0x02c56549ef3369e966f14537cd93a536727af81301853268c3fd427943df6f76:log:24', 'hash': '0x02c56549ef3369e966f14537cd93a536727af81301853268c3fd427943df6f76', 'from': '0x13d6a4b52828b711886507a240db411496fb10a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 190.13631737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x046d4cfef9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T17:29:53.000Z'}}, {'blockNum': '0x7810dd', 'uniqueId': '0x26b1b13dd999c0a94a9dec7dee0639604881fc2f71e75947da3a4834b7ca6b6d:log:66', 'hash': '0x26b1b13dd999c0a94a9dec7dee0639604881fc2f71e75947da3a4834b7ca6b6d', 'from': '0xf82d2e28eb42a9dc7c4c2751f5aca2fe17bcc963', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1577.06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x24b8029680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T17:29:53.000Z'}}, {'blockNum': '0x781121', 'uniqueId': '0xdaec3219c84930d405a80eb0e489ebed29b9a52b81854d16ffb09bc2b04d944d:log:71', 'hash': '0xdaec3219c84930d405a80eb0e489ebed29b9a52b81854d16ffb09bc2b04d944d', 'from': '0xddaa42d8031a3e464cb096d196867730c3f7773a', 'to': '0x57a1d5541ebc0e130cffa3d7f7ec189e8f7f9b2f', 'value': 306.194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07210ef740', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T17:43:02.000Z'}}, {'blockNum': '0x78119a', 'uniqueId': '0x1dd4fc8382bd5f87870f86bba13be1dd8f38b2412eca086b33a340e93c1c2ba0:log:166', 'hash': '0x1dd4fc8382bd5f87870f86bba13be1dd8f38b2412eca086b33a340e93c1c2ba0', 'from': '0x579edcfce8cd6ed4ae2784d618e3060f09e8e5f4', 'to': '0x0ca8b7e9f68fdc67c989270aea6315bbb3d7b0e7', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:08:48.000Z'}}, {'blockNum': '0x7811a2', 'uniqueId': '0x137cc99e3a166f0ceb0492396f446b1a29a8d58de57c0b9dd00f7a89c701f058:log:56', 'hash': '0x137cc99e3a166f0ceb0492396f446b1a29a8d58de57c0b9dd00f7a89c701f058', 'from': '0x0ca8b7e9f68fdc67c989270aea6315bbb3d7b0e7', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:10:20.000Z'}}, {'blockNum': '0x7811ac', 'uniqueId': '0x581ca9a9f03bed5e9a1a844b4dbe0bf1b9fdfa463e110fe73229092f22dbdb15:log:0', 'hash': '0x581ca9a9f03bed5e9a1a844b4dbe0bf1b9fdfa463e110fe73229092f22dbdb15', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 291.6299425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06ca3ffa4a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:11:29.000Z'}}, {'blockNum': '0x7811cc', 'uniqueId': '0xf4864beffdf19283c8650913d69517b538475c7ddddcc0ee4c2afcf645636a70:log:10', 'hash': '0xf4864beffdf19283c8650913d69517b538475c7ddddcc0ee4c2afcf645636a70', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3a5420bb5a1d7dd1934b621113624c26298465d6', 'value': 2016.78963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2ef500c138', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:17:38.000Z'}}, {'blockNum': '0x7811d5', 'uniqueId': '0xcb3d9a76be9d08f73101677bb8c83b6ff3b2363e01d3bc0fb206b93a0b1c9039:log:3', 'hash': '0xcb3d9a76be9d08f73101677bb8c83b6ff3b2363e01d3bc0fb206b93a0b1c9039', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:20:06.000Z'}}, {'blockNum': '0x7811da', 'uniqueId': '0xcba8b469247b93792dc3fb6a8977f5d14b6d7ecb53f0d5e8a3cc3393639c0224:log:93', 'hash': '0xcba8b469247b93792dc3fb6a8977f5d14b6d7ecb53f0d5e8a3cc3393639c0224', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x74f60564e29f5bc4380243d476fe1e040d9834e5', 'value': 291.62994249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06ca3ffa49', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:21:09.000Z'}}, {'blockNum': '0x781208', 'uniqueId': '0x2ce790c1966ce9cdcba97e25f3ddb0005c00f60253617bc599312a6e016e6e8a:log:2', 'hash': '0x2ce790c1966ce9cdcba97e25f3ddb0005c00f60253617bc599312a6e016e6e8a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4dd63e3c8f90ced36aa5278cc88ca85306b58304', 'value': 104.17416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x026ced2740', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:31:11.000Z'}}, {'blockNum': '0x781215', 'uniqueId': '0xb260152ac50c6e51ba1a01663a7564386c4a80e3d764a2f00908a9586ec9baba:log:25', 'hash': '0xb260152ac50c6e51ba1a01663a7564386c4a80e3d764a2f00908a9586ec9baba', 'from': '0x74f60564e29f5bc4380243d476fe1e040d9834e5', 'to': '0x5be02678783b921c97fccdb58d50f6eb40f8fe65', 'value': 292.29259217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06ce3319d1', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:33:16.000Z'}}, {'blockNum': '0x781242', 'uniqueId': '0x0a72d1a2b003b198b2cefe0e0da803d076fe9c6ae8a1ecbfc349bb525a4422b9:log:9', 'hash': '0x0a72d1a2b003b198b2cefe0e0da803d076fe9c6ae8a1ecbfc349bb525a4422b9', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 19.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x76046700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:43:07.000Z'}}, {'blockNum': '0x78124b', 'uniqueId': '0xd5dd7a6a7c7354e594a4c2387a130b84c7ad8a3cbdc54c5fbda0a45bb19a9eeb:log:6', 'hash': '0xd5dd7a6a7c7354e594a4c2387a130b84c7ad8a3cbdc54c5fbda0a45bb19a9eeb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa1ffdfdcc4ff617769d0bb7b5792fa49b968e867', 'value': 33.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc7516400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:45:50.000Z'}}, {'blockNum': '0x78125c', 'uniqueId': '0xc7613d80dbf2499a62ddcac347e135139ad429f53b1d6a98478175d48a00e3fc:log:43', 'hash': '0xc7613d80dbf2499a62ddcac347e135139ad429f53b1d6a98478175d48a00e3fc', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x76046700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:49:38.000Z'}}, {'blockNum': '0x78126b', 'uniqueId': '0x07a24e9175af4f745cd2da8576b85a0e126b66467ecc2a28d2aec410f210e486:log:2', 'hash': '0x07a24e9175af4f745cd2da8576b85a0e126b66467ecc2a28d2aec410f210e486', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x71fd15e5626911c43137ec9d3b1168a03852fa01', 'value': 1112.24508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x19e57f4e60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:52:33.000Z'}}, {'blockNum': '0x781287', 'uniqueId': '0xea9f36b7d72798809a7035ee4fb562d3674414001d8f00060cb21780856efa12:log:11', 'hash': '0xea9f36b7d72798809a7035ee4fb562d3674414001d8f00060cb21780856efa12', 'from': '0xf795933ce28cedb808fe18e9f6220c9181f59d9d', 'to': '0x2a4ff51cd3992e51831ba2977102a9d5e20076e8', 'value': 12, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x47868c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:57:33.000Z'}}, {'blockNum': '0x7812b0', 'uniqueId': '0xe8fd51dcbf86d3580fc62a90fbb125abceae6311c0bd487eaa8a24d2cce8047a:log:10', 'hash': '0xe8fd51dcbf86d3580fc62a90fbb125abceae6311c0bd487eaa8a24d2cce8047a', 'from': '0xa1ffdfdcc4ff617769d0bb7b5792fa49b968e867', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 33.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc7516400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T19:05:39.000Z'}}, {'blockNum': '0x7812d9', 'uniqueId': '0x9b1b1192d5be011f94a9281df1621a33d64ad87092ed11d0e8c217b437fb8c81:log:1', 'hash': '0x9b1b1192d5be011f94a9281df1621a33d64ad87092ed11d0e8c217b437fb8c81', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 197.26247288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0497c6a578', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T19:15:36.000Z'}}, {'blockNum': '0x7812ee', 'uniqueId': '0x2aa42d2591e461018ee1c8a01601475486eb731c2e67710bb50591d12b65e603:log:2', 'hash': '0x2aa42d2591e461018ee1c8a01601475486eb731c2e67710bb50591d12b65e603', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa861c36103b9e9a8d5d7b8a7269f93c840a14ca1', 'value': 263.60457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x062334a728', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T19:20:10.000Z'}}, {'blockNum': '0x7812fa', 'uniqueId': '0x97f52a469115a2d98f6651a8dde582cd7d961fae0fcb3e25d5bf58413797741a:log:82', 'hash': '0x97f52a469115a2d98f6651a8dde582cd7d961fae0fcb3e25d5bf58413797741a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xf5a998aa24a91628774b4c60d8a21918a059cbe8', 'value': 197.26247288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0497c6a578', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T19:22:46.000Z'}}, {'blockNum': '0x78130d', 'uniqueId': '0x9d24064dc1ca888a12f5aef911f276cb56c0171767fc2d8b78a4edab12b6be38:log:70', 'hash': '0x9d24064dc1ca888a12f5aef911f276cb56c0171767fc2d8b78a4edab12b6be38', 'from': '0x3b39bf173d034ec279c9a6bb51aad4ff86086758', 'to': '0xe539aa05096a39360b525c0251b7cf64b86b0971', 'value': 101.16791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x025b01fad8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T19:27:33.000Z'}}, {'blockNum': '0x781346', 'uniqueId': '0x65a9b1ae099351e04d07a17df1d406b49f9eaceccc4d20291e58cd7860aca778:log:10', 'hash': '0x65a9b1ae099351e04d07a17df1d406b49f9eaceccc4d20291e58cd7860aca778', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6643e829767dc9251665e4150d1938606ff7a428', 'value': 1.56, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x094c5f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T19:38:35.000Z'}}, {'blockNum': '0x78137f', 'uniqueId': '0xe4400f95f9dc7f8af3dafb04fb71a377558ad0979117b17e2082a6668b819d90:log:67', 'hash': '0xe4400f95f9dc7f8af3dafb04fb71a377558ad0979117b17e2082a6668b819d90', 'from': '0xbf79e9e31b530441dc3c9daeb985a0f2f64392b1', 'to': '0xf795933ce28cedb808fe18e9f6220c9181f59d9d', 'value': 20.32663902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7927fd5e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T19:50:02.000Z'}}, {'blockNum': '0x7813de', 'uniqueId': '0x58f44de6309b47a38336f5971c9dd631cc0faf5afafc22334486fe23e7a86c27:log:0', 'hash': '0x58f44de6309b47a38336f5971c9dd631cc0faf5afafc22334486fe23e7a86c27', 'from': '0xd3d6f9328006290f963676868e087d18c07d23a6', 'to': '0x6f8d24b7824a2324d83ea908f04babf1f9ebe36a', 'value': 161.28299999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03c15253df', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T20:11:44.000Z'}}, {'blockNum': '0x781404', 'uniqueId': '0x2c2f99ce521199910845afc63f4e2a8ae96ae9d3a5b869fe08570b6d49f5ff55:log:15', 'hash': '0x2c2f99ce521199910845afc63f4e2a8ae96ae9d3a5b869fe08570b6d49f5ff55', 'from': '0x6f8d24b7824a2324d83ea908f04babf1f9ebe36a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 161.28299999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03c15253df', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T20:20:10.000Z'}}, {'blockNum': '0x78146f', 'uniqueId': '0x96b085a635707c91166502ca196d4aedb12a48b36849f0b01dc796490706adbc:log:1', 'hash': '0x96b085a635707c91166502ca196d4aedb12a48b36849f0b01dc796490706adbc', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x201a21eaf7cd640193940d71d205e04c7225b239', 'value': 19.05936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x719a4680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T20:46:34.000Z'}}, {'blockNum': '0x7814b9', 'uniqueId': '0x48adb56d0a76d1433e37f5f31e758db185170a6faa71748658dc06f4d6cbe991:log:69', 'hash': '0x48adb56d0a76d1433e37f5f31e758db185170a6faa71748658dc06f4d6cbe991', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0xf9842a274beb866d6a5814ce15f3aa80457a2de9', 'value': 1835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2ab973cb00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:02:33.000Z'}}, {'blockNum': '0x7814bd', 'uniqueId': '0xe87f27c9557f617cf809d5c51bcec6f3079430556bec3dfe54910105fd759816:log:107', 'hash': '0xe87f27c9557f617cf809d5c51bcec6f3079430556bec3dfe54910105fd759816', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0xc1bd376aeada20b028aba3b451613256394e4e2d', 'value': 2037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2f6d775500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:03:17.000Z'}}, {'blockNum': '0x7814be', 'uniqueId': '0x75a852019b314c99b4c1f9515ffd47203dcb5f08bb5b3e258526920c3d55a24a:log:77', 'hash': '0x75a852019b314c99b4c1f9515ffd47203dcb5f08bb5b3e258526920c3d55a24a', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0x0bedce35d8c4502e5d802b2e7b4b96c265b710a7', 'value': 1964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2dba5a2c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:03:31.000Z'}}, {'blockNum': '0x7814c0', 'uniqueId': '0x1b63cbcca592c9c2384e9c26a05432ee6983e6aa6680f9162a9324ba83efe593:log:97', 'hash': '0x1b63cbcca592c9c2384e9c26a05432ee6983e6aa6680f9162a9324ba83efe593', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0x34566e8f26d5a7f38063570e39538dc4226889f2', 'value': 1836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2abf69ac00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:03:51.000Z'}}, {'blockNum': '0x7814c2', 'uniqueId': '0x3f7b94b4703f1ef9a9a2a975c01a2ce1f4ce984ebf7142903bda2bc001029303:log:46', 'hash': '0x3f7b94b4703f1ef9a9a2a975c01a2ce1f4ce984ebf7142903bda2bc001029303', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0x3c93fa6f9c0d7a67a3239515fd013514d4bfed77', 'value': 2765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4060af2d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:04:08.000Z'}}, {'blockNum': '0x7814c6', 'uniqueId': '0x902497b1b9e0ebe30eea2bbf10c5214f6660d59efcbc122ca0f9d6a899351be3:log:53', 'hash': '0x902497b1b9e0ebe30eea2bbf10c5214f6660d59efcbc122ca0f9d6a899351be3', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0x1f8094aa41425f70cb654c0342e8028aaabcb94f', 'value': 1823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2a71ed3f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:05:00.000Z'}}, {'blockNum': '0x7814c7', 'uniqueId': '0x392f3173639d5fe87819052bd7ee45da304d266f00e5a6e33e9920d477e814ef:log:54', 'hash': '0x392f3173639d5fe87819052bd7ee45da304d266f00e5a6e33e9920d477e814ef', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0x98e6a1878c834ced5375e664a55e6843cfe9af2c', 'value': 3021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4656902d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:05:14.000Z'}}, {'blockNum': '0x7814c8', 'uniqueId': '0x5044dea190ded36016fa5ceaa3ade4e7514f78a3e8a15c71656b687bcb64d721:log:92', 'hash': '0x5044dea190ded36016fa5ceaa3ade4e7514f78a3e8a15c71656b687bcb64d721', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0x884fff3b487aae343910e7b074cbd013dc682138', 'value': 2911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x43c6e97f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:05:24.000Z'}}, {'blockNum': '0x7814c9', 'uniqueId': '0xc5cadb7d20b91cd559efb7afcdccacef50e8741fcb44139cea48315fb7b943bf:log:110', 'hash': '0xc5cadb7d20b91cd559efb7afcdccacef50e8741fcb44139cea48315fb7b943bf', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0x015b44099bc3ac13cf971554b242eae529f09dff', 'value': 3001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45df5a9900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:05:30.000Z'}}, {'blockNum': '0x7814cd', 'uniqueId': '0x9f7f8a55ae958926d8d177a6a87d0b4da5d741ba184cce6a5d98969ec435aaf1:log:50', 'hash': '0x9f7f8a55ae958926d8d177a6a87d0b4da5d741ba184cce6a5d98969ec435aaf1', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0x4e50200c36554201a2a371007f7c17cff1874454', 'value': 2745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3fe9799900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:07:01.000Z'}}, {'blockNum': '0x7814cd', 'uniqueId': '0x4e7642d0e7a4227699f20e2c880cbec5fbbd3d43668fbfe8d38904acbd0a198a:log:51', 'hash': '0x4e7642d0e7a4227699f20e2c880cbec5fbbd3d43668fbfe8d38904acbd0a198a', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0xbf18385b35f4466b88c14b29952f3019f76e6212', 'value': 1235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1cc12c7300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:07:01.000Z'}}, {'blockNum': '0x7814ce', 'uniqueId': '0x79e8dcc2efe415328d7d811ef1554bd7fb7deec15482002731e2971620024c5f:log:44', 'hash': '0x79e8dcc2efe415328d7d811ef1554bd7fb7deec15482002731e2971620024c5f', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0x384f2509e7065d2c52c816eaadef9b441a82a385', 'value': 1999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e8af7ef00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:07:09.000Z'}}, {'blockNum': '0x7814d0', 'uniqueId': '0x6f56b7bf5478378068cece744197856105ccf7f3c607f13a0a6ea7fea29c3477:log:45', 'hash': '0x6f56b7bf5478378068cece744197856105ccf7f3c607f13a0a6ea7fea29c3477', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0x9d47cc37300c6b63febec8eeade4e86cf37d5aa3', 'value': 3017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x463eb8a900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:07:18.000Z'}}, {'blockNum': '0x7814d0', 'uniqueId': '0xb85cbbda6dcdcb28bbc0817453b66e176d27867764c5f088cc277384fcba85ec:log:46', 'hash': '0xb85cbbda6dcdcb28bbc0817453b66e176d27867764c5f088cc277384fcba85ec', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0x5a41d0ea37090563b4a492b0e0c8136a89358c23', 'value': 1992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e613ec800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:07:18.000Z'}}, {'blockNum': '0x7814d1', 'uniqueId': '0xc14aa93984dc3207cf67aece8242ef91f7cc5d8322d599cccfdc28266b3c3162:log:120', 'hash': '0xc14aa93984dc3207cf67aece8242ef91f7cc5d8322d599cccfdc28266b3c3162', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0xbe4c64bc94878213530558f82c7a006d489790f1', 'value': 2192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3309569000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:07:38.000Z'}}, {'blockNum': '0x7814d6', 'uniqueId': '0x2c26adfa2714f19a5cf0dfc8581e5a7835451b80da3fdbd05b42716275372ad9:log:8', 'hash': '0x2c26adfa2714f19a5cf0dfc8581e5a7835451b80da3fdbd05b42716275372ad9', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0xdd47ae175e6d93122f36198f0c8ab6b073275a58', 'value': 1949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2d60f1fd00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:09:04.000Z'}}, {'blockNum': '0x7814e8', 'uniqueId': '0x917acf8c1847880039b66b20a0bd25fb22f39146662139ebfd66360fa363ab09:log:9', 'hash': '0x917acf8c1847880039b66b20a0bd25fb22f39146662139ebfd66360fa363ab09', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x84907eb9c0c539b7a44ddc9ca96e0000423798d2', 'value': 257.46, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05fe94c880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:12:53.000Z'}}, {'blockNum': '0x7814fb', 'uniqueId': '0x7d27ab1f703806a1dcba798b24142112f35bac5ff1e6199b50207d84849ca3cc:log:11', 'hash': '0x7d27ab1f703806a1dcba798b24142112f35bac5ff1e6199b50207d84849ca3cc', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'value': 1619.342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25b407ccc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:17:29.000Z'}}, {'blockNum': '0x781522', 'uniqueId': '0xed043a156205301bfc3129d8f4a3c7973556c22bbd3b19a42c56c08f9c0b3736:log:109', 'hash': '0xed043a156205301bfc3129d8f4a3c7973556c22bbd3b19a42c56c08f9c0b3736', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1571.088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x24946a0a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:28:57.000Z'}}, {'blockNum': '0x781556', 'uniqueId': '0x33e90d160480fab06f985942076c102d119bd7080a3e664f6b9de088340387ae:log:12', 'hash': '0x33e90d160480fab06f985942076c102d119bd7080a3e664f6b9de088340387ae', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1625.368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25d7f2bf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:40:21.000Z'}}, {'blockNum': '0x7815cd', 'uniqueId': '0xe1b2b4fb7a08dd555a449101a574465564ac342e2883468d6dd319f21a8399af:log:9', 'hash': '0xe1b2b4fb7a08dd555a449101a574465564ac342e2883468d6dd319f21a8399af', 'from': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1619.342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25b407ccc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T22:05:13.000Z'}}, {'blockNum': '0x7815e9', 'uniqueId': '0x43cd82243312603b9a8e7161616414df98375b52ef43ad401060a65a1e4db34f:log:12', 'hash': '0x43cd82243312603b9a8e7161616414df98375b52ef43ad401060a65a1e4db34f', 'from': '0xa578cd67abaee60003951464fe49cb7544e41611', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3196.456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4a6c5cc900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T22:11:05.000Z'}}, {'blockNum': '0x781621', 'uniqueId': '0xf3ebb6ed7ab9187aaef4ac3be5f44052c0df991d20cfb51867635f39599d9720:log:9', 'hash': '0xf3ebb6ed7ab9187aaef4ac3be5f44052c0df991d20cfb51867635f39599d9720', 'from': '0x6f08ce56341a1de156dd92f26b61aefda2a51b4c', 'to': '0x2257eb956e9307383fea1d4247d1c8c946082c46', 'value': 500.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba8c31f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T22:25:48.000Z'}}, {'blockNum': '0x781635', 'uniqueId': '0xb1041b0ceca7213be44bfd9459e55669868e8c4324b8e2e596d3ac0769ff0202:log:40', 'hash': '0xb1041b0ceca7213be44bfd9459e55669868e8c4324b8e2e596d3ac0769ff0202', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x6fb3f33e338a88a14949f131aa0e8f90745b49cc', 'value': 923.97820286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x158356d97e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T22:29:39.000Z'}}, {'blockNum': '0x781637', 'uniqueId': '0xdc68169dfbb675d4b7ee3ba60113a06f3537d7fdeb0bf16ef8b6a0b3ab7f5136:log:45', 'hash': '0xdc68169dfbb675d4b7ee3ba60113a06f3537d7fdeb0bf16ef8b6a0b3ab7f5136', 'from': '0x2257eb956e9307383fea1d4247d1c8c946082c46', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba8c31f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T22:30:18.000Z'}}, {'blockNum': '0x781683', 'uniqueId': '0x27a0d9980806f6e78fb0092f511c8947d2d333ba0a224e5c1c180f2cafb10d17:log:37', 'hash': '0x27a0d9980806f6e78fb0092f511c8947d2d333ba0a224e5c1c180f2cafb10d17', 'from': '0x0d4ee66f40077be3251a002a985c24762fa251ad', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 155.99825068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03a1d270ac', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T22:45:10.000Z'}}, {'blockNum': '0x78169c', 'uniqueId': '0xfa192a45e09c219ebd3a4f4855d3dc7477483ad9ce1619aedd9dd7713fe36c51:log:20', 'hash': '0xfa192a45e09c219ebd3a4f4855d3dc7477483ad9ce1619aedd9dd7713fe36c51', 'from': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 199.09634011, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a2b4e7db', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T22:50:14.000Z'}}, {'blockNum': '0x7816f8', 'uniqueId': '0xef9371c4ccfd7fbba9d4e80dbd6d6a8566f19509ce71657926bd80e56108af50:log:6', 'hash': '0xef9371c4ccfd7fbba9d4e80dbd6d6a8566f19509ce71657926bd80e56108af50', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'value': 943.24, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x15f6260500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T23:10:52.000Z'}}, {'blockNum': '0x781704', 'uniqueId': '0x7e691650de4f5ef366556db3d81ab93096171e5c4c31b6a72dadb3964b72897d:log:1', 'hash': '0x7e691650de4f5ef366556db3d81ab93096171e5c4c31b6a72dadb3964b72897d', 'from': '0x32e567e8b527d3194c60ea3c6a5c009d58a0b36d', 'to': '0x46862f36d7dd083bcd3f5d7328b41a9fc2c3a591', 'value': 159.47390285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03b689dd4d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T23:13:20.000Z'}}, {'blockNum': '0x78170e', 'uniqueId': '0x9413a6913908f9548f895136dd9b970316e56b24705bead925a5fdf8c4901579:log:1', 'hash': '0x9413a6913908f9548f895136dd9b970316e56b24705bead925a5fdf8c4901579', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 688.759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x100952d460', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T23:15:24.000Z'}}, {'blockNum': '0x78178e', 'uniqueId': '0x2cbaffe7fc586e50ab5561a4fff441bc2e2d2f6f695b59051e6763f5cd09eb45:log:3', 'hash': '0x2cbaffe7fc586e50ab5561a4fff441bc2e2d2f6f695b59051e6763f5cd09eb45', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x34ff6caade469eef6895eafb2d1b3a91ab4e94fd', 'value': 1124.00463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1a2b96f498', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T23:44:32.000Z'}}, {'blockNum': '0x7817c8', 'uniqueId': '0x07d37e8e5e7134aaf44e6b1da4de1b49b4293e9bc2f030faea535da764c73e62:log:4', 'hash': '0x07d37e8e5e7134aaf44e6b1da4de1b49b4293e9bc2f030faea535da764c73e62', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x34ff6caade469eef6895eafb2d1b3a91ab4e94fd', 'value': 1108.32078616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x19ce1b4f18', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T23:56:20.000Z'}}, {'blockNum': '0x7817ea', 'uniqueId': '0xfe597a42f57716bb5891fa5e792c658568ac49be1d3f0ce4f5827d346f5a8bfa:log:36', 'hash': '0xfe597a42f57716bb5891fa5e792c658568ac49be1d3f0ce4f5827d346f5a8bfa', 'from': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 943.24, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x15f6260500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-01T00:04:59.000Z'}}, {'blockNum': '0x781806', 'uniqueId': '0x3cc7212839b29cb4daa1fbbd12e8c6e7f087851469655f9835093acbf8bf5ad9:log:61', 'hash': '0x3cc7212839b29cb4daa1fbbd12e8c6e7f087851469655f9835093acbf8bf5ad9', 'from': '0x6f0402397997b710997629f847dc2c34f502f92a', 'to': '0x07c0ce8b7135670bc2b20d55603ba8cfa0506c82', 'value': 100.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0254a47a80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-01T00:10:57.000Z'}}, {'blockNum': '0x78180b', 'uniqueId': '0x16ce61dbc2cbc7f3d7477260b1d3e5f2df8b558ceb2fc5190e75abc6ab70fccb:log:4', 'hash': '0x16ce61dbc2cbc7f3d7477260b1d3e5f2df8b558ceb2fc5190e75abc6ab70fccb', 'from': '0xa578cd67abaee60003951464fe49cb7544e41611', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 688.759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x100952d460', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-01T00:11:48.000Z'}}, {'blockNum': '0x78186c', 'uniqueId': '0x525ebc2cb42242e81fa331115bef4d485ff1460f6fe92e18def1a43c4b4d4038:log:3', 'hash': '0x525ebc2cb42242e81fa331115bef4d485ff1460f6fe92e18def1a43c4b4d4038', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x36edf867eeca1fe1e02235779eebde14c5d8f3d3', 'value': 2097.38, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x30d55be680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-01T00:30:49.000Z'}}, {'blockNum': '0x781894', 'uniqueId': '0x2b0eae07705122cb3ef91f487c05a94a844b3f2c37e118d035668f0df8914f36:log:207', 'hash': '0x2b0eae07705122cb3ef91f487c05a94a844b3f2c37e118d035668f0df8914f36', 'from': '0xaa1559de968affb0ccde6c8e2f47763e787762d6', 'to': '0x8ab879033f4c06109a0d9a5298b4d0a2d3aed888', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-01T00:41:24.000Z'}}, {'blockNum': '0x78189a', 'uniqueId': '0xb46ed54990b96598f139ebbd8f146706ce094f00923670943803d5a9e7011162:log:15', 'hash': '0xb46ed54990b96598f139ebbd8f146706ce094f00923670943803d5a9e7011162', 'from': '0xf179657bd9af6cc12a10032843734f1906c7a7fb', 'to': '0xee4d1011f90bc204f35ea100c7cc80e5c037b4a2', 'value': 2692.63122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3eb1552e50', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-01T00:43:15.000Z'}}]}}
Number of returned transfers: 202
Answer is complete
symbol BRD
group BPG
date 2019-06-17
hour 14:59
exchange binance
Name: 273, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps: 2019-06-17 14:59:00 2019-06-17 02:59:00 2019-06-18 02:59:00
Unix timestamps: 1560733140.0 1560819540.0
Hex Block Numbers: 0x79a803 0x79c11e
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x79a900', 'uniqueId': '0xecbb0761efe0c0acec006de4d46b6d8a1367e3a0b720fed0daea0793e93af37b:log:117', 'hash': '0xecbb0761efe0c0acec006de4d46b6d8a1367e3a0b720fed0daea0793e93af37b', 'from': '0x336665d293dbde5d457b67975d887ecf52dde350', 'to': '0xa47e3da667218b027a723ad71dba09c4910dd85f', 'value': 107.24039167838119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05d042680c2baae714', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T01:57:26.000Z'}}, {'blockNum': '0x79a930', 'uniqueId': '0x3720a953712d9404714457c50c23781f8a088db9a1dcf638014b84797e20324f:log:130', 'hash': '0x3720a953712d9404714457c50c23781f8a088db9a1dcf638014b84797e20324f', 'from': '0x2984d8b3e71d122b07c7fdcb26ff4f4e89191599', 'to': '0x472958d150418e297cfbdc73b98a1475b4d65160', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T02:07:30.000Z'}}, {'blockNum': '0x79a969', 'uniqueId': '0xa9de2dfbc6f4b3f8b99b68b62226ff9e838651d6b058e682bbde136470516409:log:119', 'hash': '0xa9de2dfbc6f4b3f8b99b68b62226ff9e838651d6b058e682bbde136470516409', 'from': '0x170817da64532ddd155d71e6fc107605e11e1cff', 'to': '0xdab5f0407383970a4b60c3f73887850dfbeb6d87', 'value': 16811.61723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x038f5c0e7eeb6282e000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T02:21:21.000Z'}}, {'blockNum': '0x79a9be', 'uniqueId': '0xb974becc7df4b32d062cb17a9ec5a3b17116f1d413b7e7b6fb8ed53039af1d98:log:75', 'hash': '0xb974becc7df4b32d062cb17a9ec5a3b17116f1d413b7e7b6fb8ed53039af1d98', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x3c7d43acf263d738ffef95583a18ba0e63db5761', 'value': 906.50825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x312454427d0affa000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T02:38:15.000Z'}}, {'blockNum': '0x79a9df', 'uniqueId': '0x0f0a192bc17c9c5c07448e23a4b1cc187144f584571f0537df92463144155e70:log:18', 'hash': '0x0f0a192bc17c9c5c07448e23a4b1cc187144f584571f0537df92463144155e70', 'from': '0xdab5f0407383970a4b60c3f73887850dfbeb6d87', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16811.61723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x038f5c0e7eeb6282e000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T02:46:27.000Z'}}, {'blockNum': '0x79ac4f', 'uniqueId': '0x4a22565ddfecb9a5dadc6552e0aa04a843d66b26faf4dec7791a5be6c60d63d2:log:58', 'hash': '0x4a22565ddfecb9a5dadc6552e0aa04a843d66b26faf4dec7791a5be6c60d63d2', 'from': '0x05e3e7b84bd0532fe7c829652035a0250136dfb1', 'to': '0xed74a37a7894923ffb7b200f6a3ddc6cd1e3e056', 'value': 259.35014629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0e0f34cff46d0af400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T05:00:26.000Z'}}, {'blockNum': '0x79ad20', 'uniqueId': '0xd90b7e7d3d68fb55007e52550e331f024eaac3241a2d14821623c7a1cbabf831:log:17', 'hash': '0xd90b7e7d3d68fb55007e52550e331f024eaac3241a2d14821623c7a1cbabf831', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7cdca7db2be4d1cf945d7a18f783f4de610a9027', 'value': 96.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05386e53c7de1e0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T05:45:30.000Z'}}, {'blockNum': '0x79adec', 'uniqueId': '0x34d749b9fc25a3a25e40dd361cf5c41901c2b1228a0902511d914dbc57c3d9dc:log:7', 'hash': '0x34d749b9fc25a3a25e40dd361cf5c41901c2b1228a0902511d914dbc57c3d9dc', 'from': '0x6d56297604a62ef08e0f0e85ed4d4afffab1b17a', 'to': '0xfe6a83711ce9878d8918741464615ff900c1a50b', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T06:33:20.000Z'}}, {'blockNum': '0x79ae05', 'uniqueId': '0x774f4ebbdf755dd292e730b1f197353b6272521a6bd234548068c393b23b0bfc:log:45', 'hash': '0x774f4ebbdf755dd292e730b1f197353b6272521a6bd234548068c393b23b0bfc', 'from': '0x6d56297604a62ef08e0f0e85ed4d4afffab1b17a', 'to': '0xfe6a83711ce9878d8918741464615ff900c1a50b', 'value': 90029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x13107b5bc9ea3a940000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T06:38:23.000Z'}}, {'blockNum': '0x79ae3a', 'uniqueId': '0x6825115c68f7e2d822ce672a11efd917950f85374b0c444155d474a216029349:log:130', 'hash': '0x6825115c68f7e2d822ce672a11efd917950f85374b0c444155d474a216029349', 'from': '0xfe6a83711ce9878d8918741464615ff900c1a50b', 'to': '0x1b488e0c29d63541bee08b77a6049ece1d0177a5', 'value': 90030, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1310893c809de1f80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T06:49:43.000Z'}}, {'blockNum': '0x79aea9', 'uniqueId': '0x00d518ddc517ba5ad8067077d3e7866d326eef0ae80bffae42d17fccd6dfa789:log:107', 'hash': '0x00d518ddc517ba5ad8067077d3e7866d326eef0ae80bffae42d17fccd6dfa789', 'from': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 14854.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03253e0c419af1e20000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T07:15:47.000Z'}}, {'blockNum': '0x79aec1', 'uniqueId': '0x607230c163a84d2dd6c6a48585ebf6c0e4e108edbef272bad364a9ae73edfeb3:log:37', 'hash': '0x607230c163a84d2dd6c6a48585ebf6c0e4e108edbef272bad364a9ae73edfeb3', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x1d40b9c7ce71003abb3ed727d3422aecce698722', 'value': 288.56611606622755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0fa4a8c9ac65a2350d', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T07:22:59.000Z'}}, {'blockNum': '0x79af38', 'uniqueId': '0xcd8dc968b4911a0ad9094d05d388684d14c2814ef2eb3734ea5031efe446ff54:log:94', 'hash': '0xcd8dc968b4911a0ad9094d05d388684d14c2814ef2eb3734ea5031efe446ff54', 'from': '0x38160b1e26c0bc28407d7eebd0f02fd7c1559a8d', 'to': '0x8052ff99379d585e3484849ea7e6d8c2d9059ae3', 'value': 192.253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a6c0bdce6632c8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T07:53:50.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0xb86ea295304864c89509927192f7e3915aa2b9c08faf1ccb8ad0259a1347919f:log:131', 'hash': '0xb86ea295304864c89509927192f7e3915aa2b9c08faf1ccb8ad0259a1347919f', 'from': '0x2e692146ecec0c47babc1407599287a971d08cde', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 118.556964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x066d4ef29dc4c64000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0x84c5f8fa4c24035d129bf9c1b4da0320f6121abdd46715b0b88a6625e6918c15:log:132', 'hash': '0x84c5f8fa4c24035d129bf9c1b4da0320f6121abdd46715b0b88a6625e6918c15', 'from': '0x01dd3d5618f00d996c9b8f14883ab0b539b354b9', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 6168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x014e5e31f88911600000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0x0043dc1a8b5388f2ca94b5c82f486efb181908cf77af53e940c66aa7200d94cc:log:133', 'hash': '0x0043dc1a8b5388f2ca94b5c82f486efb181908cf77af53e940c66aa7200d94cc', 'from': '0x227dc13dede9ea7fae0cce4d30be2a164d763f90', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 89.204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04d5f445607ff20000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0xbfd34129f8bb2d3eaacdf30b48b02a83de310f2bb703be91ae0beafcd3f058f0:log:134', 'hash': '0xbfd34129f8bb2d3eaacdf30b48b02a83de310f2bb703be91ae0beafcd3f058f0', 'from': '0x638f7859a5b6e508c374c3894faee6b7b00227d6', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 84.99552339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x049b8cc232975aec00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0xbf988ed9168496a67b777e6970af3bb40f0d06a7220a20db48773c44dba956ab:log:135', 'hash': '0xbf988ed9168496a67b777e6970af3bb40f0d06a7220a20db48773c44dba956ab', 'from': '0xa9fff549508138074c991aa27ceb9a34b469b3b5', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 2404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x825233af0fe7100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0xad85eba600d98e9236ba0f199bcf4bdbefbc6aa860ee3637a9affde78ff9f2eb:log:136', 'hash': '0xad85eba600d98e9236ba0f199bcf4bdbefbc6aa860ee3637a9affde78ff9f2eb', 'from': '0x89506e5af46b64e1b0af80ef6c2320ae55fa49a8', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0x4eba84a375912e4eac9a125c1fc9942a7d0db77f49161aede35077da69fdb708:log:137', 'hash': '0x4eba84a375912e4eac9a125c1fc9942a7d0db77f49161aede35077da69fdb708', 'from': '0x63e05d2eb003c1750badc4845c958acf6c5f9b96', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 3000.490768990614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa2a82c991d9430e15b', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0x974ffbf0b1bc4f3e85736e24740dabf13a7f4e51a9a99a381481c53e4d827b3b:log:138', 'hash': '0x974ffbf0b1bc4f3e85736e24740dabf13a7f4e51a9a99a381481c53e4d827b3b', 'from': '0x8a373eeb2ac20e33baa051a321da58a823fc4bb5', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 2042.82886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6ebdf208cc802fc000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0x5c76cee74b15cacbec88dba894abd6bff37a79e1491623a36a7b4619063450d8:log:139', 'hash': '0x5c76cee74b15cacbec88dba894abd6bff37a79e1491623a36a7b4619063450d8', 'from': '0x24e331540bd464e58bfdde13437bc3ec511a0943', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 2725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x93b8f8c654cb740000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0xb2deb5611e34ea2a6082efbf8e2dcf8e03802c56823661b02ddba4e120d87e65:log:140', 'hash': '0xb2deb5611e34ea2a6082efbf8e2dcf8e03802c56823661b02ddba4e120d87e65', 'from': '0x472958d150418e297cfbdc73b98a1475b4d65160', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0xae308a078132b77ddd4d0ddbac6d90aa3bdac319c6999cc2d6e57ad04ad224ee:log:141', 'hash': '0xae308a078132b77ddd4d0ddbac6d90aa3bdac319c6999cc2d6e57ad04ad224ee', 'from': '0xed74a37a7894923ffb7b200f6a3ddc6cd1e3e056', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 259.35014629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0e0f34cff46d0af400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af68', 'uniqueId': '0x49d65d14e8dec5c44489b255cedbdea7f50d2c81481541ae7a4dc4d5f5f9e26c:log:133', 'hash': '0x49d65d14e8dec5c44489b255cedbdea7f50d2c81481541ae7a4dc4d5f5f9e26c', 'from': '0x8052ff99379d585e3484849ea7e6d8c2d9059ae3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 192.253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a6c0bdce6632c8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:04:14.000Z'}}, {'blockNum': '0x79afaa', 'uniqueId': '0x25dde5e1477c6e26e937670572d2a246a7d6f71b0d8ca00e0fd9bfc791b956da:log:47', 'hash': '0x25dde5e1477c6e26e937670572d2a246a7d6f71b0d8ca00e0fd9bfc791b956da', 'from': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 17132.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03a0bfcfd4a78e580000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:17:52.000Z'}}, {'blockNum': '0x79afb1', 'uniqueId': '0x971267f3bf207843e12c34d5be37f87fa214cd9e02e550aab9e0769cf50ff7b6:log:80', 'hash': '0x971267f3bf207843e12c34d5be37f87fa214cd9e02e550aab9e0769cf50ff7b6', 'from': '0x1a70983ed1ba080868b36d0f796a6406eba89591', 'to': '0xc4ae5f2b9e6005ee34dc4417d4a1ada873bf61ec', 'value': 1371.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4a5538ff122fa00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:20:20.000Z'}}, {'blockNum': '0x79afee', 'uniqueId': '0x0de7f683737d04080d45a2d6b90f31b9ed37530fb7337301632f5454db79bb00:log:112', 'hash': '0x0de7f683737d04080d45a2d6b90f31b9ed37530fb7337301632f5454db79bb00', 'from': '0xc4ae5f2b9e6005ee34dc4417d4a1ada873bf61ec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1371.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4a5538ff122fa00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:34:23.000Z'}}, {'blockNum': '0x79b00a', 'uniqueId': '0x808898f957ff981ae74e0f46b97642182b59de792305886a9f92dbd422a766c8:log:15', 'hash': '0x808898f957ff981ae74e0f46b97642182b59de792305886a9f92dbd422a766c8', 'from': '0xd0a978f2c07ea03425a9ee49e6ec49a355907fee', 'to': '0x8def0fd87c572eab755547153b03a24bc1b62e05', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:41:30.000Z'}}, {'blockNum': '0x79b044', 'uniqueId': '0x6147ac961a052305b3b46646cec6dd90d4d4f36917fa9290986c19d796e07e20:log:49', 'hash': '0x6147ac961a052305b3b46646cec6dd90d4d4f36917fa9290986c19d796e07e20', 'from': '0x1b488e0c29d63541bee08b77a6049ece1d0177a5', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 90030, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1310893c809de1f80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:54:33.000Z'}}, {'blockNum': '0x79b04d', 'uniqueId': '0x33286dbe34c91a3e7572888708e53c35b1678a3e165626fa43a85cdc69c1c110:log:7', 'hash': '0x33286dbe34c91a3e7572888708e53c35b1678a3e165626fa43a85cdc69c1c110', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x621d6641f54987e99acf061eecb23427955f1ddd', 'value': 672.1048196694596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x246f53fc86821cfa2b', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:56:03.000Z'}}, {'blockNum': '0x79b07b', 'uniqueId': '0x14aa67e8ea83234cdc40fc671cbde4f3784a1d6089ae56a341ad10cdfaddab64:log:39', 'hash': '0x14aa67e8ea83234cdc40fc671cbde4f3784a1d6089ae56a341ad10cdfaddab64', 'from': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 90030, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1310893c809de1f80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T09:07:49.000Z'}}, {'blockNum': '0x79b080', 'uniqueId': '0xe5073ee43a67e72b582e0002735cc3c7fb85cb6faffd9595e5f522a346d1c776:log:45', 'hash': '0xe5073ee43a67e72b582e0002735cc3c7fb85cb6faffd9595e5f522a346d1c776', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T09:09:51.000Z'}}, {'blockNum': '0x79b099', 'uniqueId': '0x1ab78aadaa3a08368cd73649375588b9a73ab633263b1093c4a3ecd2b413b3d7:log:61', 'hash': '0x1ab78aadaa3a08368cd73649375588b9a73ab633263b1093c4a3ecd2b413b3d7', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T09:14:33.000Z'}}, {'blockNum': '0x79b370', 'uniqueId': '0xc91f5f4cdc411928c348d1b5f8bf3389f37f7e7b028eac87c66ed0360843c04b:log:34', 'hash': '0xc91f5f4cdc411928c348d1b5f8bf3389f37f7e7b028eac87c66ed0360843c04b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x35d1cb9136cc6ff64106f9e562ca100047b72293', 'value': 507.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1b7f3af5948d630000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T12:03:57.000Z'}}, {'blockNum': '0x79b3f9', 'uniqueId': '0x6475151bb4bc8f1fde49d481a0ff35c56db1ca315afe4332c7d57f96d72ca775:log:0', 'hash': '0x6475151bb4bc8f1fde49d481a0ff35c56db1ca315afe4332c7d57f96d72ca775', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3b198ad9bcb38a23de08967ad8723150490e817c', 'value': 6.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x576e189f04f60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T12:37:03.000Z'}}, {'blockNum': '0x79b413', 'uniqueId': '0xd58cb0a90590db3c2448959da457df448197f2dbb0a36c51f886457c3eccf3d9:log:44', 'hash': '0xd58cb0a90590db3c2448959da457df448197f2dbb0a36c51f886457c3eccf3d9', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xd979ddb1beab0d637281462dcb96a3f4b71b39be', 'value': 118.21940560856943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x06689fb30c389a5b40', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T12:42:07.000Z'}}, {'blockNum': '0x79b483', 'uniqueId': '0x60cb6427870417fa3497ae832ebdf2ecbecb11ed1e84f3f396a33fd9927af890:log:6', 'hash': '0x60cb6427870417fa3497ae832ebdf2ecbecb11ed1e84f3f396a33fd9927af890', 'from': '0x25c641c4e7afedee998f29c8bb11914ca52c3d45', 'to': '0x3bd8a17382fbf8b2f587672e1d96913e8359f26d', 'value': 3702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xc8af9209f6a0180000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T13:04:33.000Z'}}, {'blockNum': '0x79b4d9', 'uniqueId': '0x8b2d34888f22c7ee6e3a3492edbaeb77c4cdc18cb0e5731a6db54eaa99209b9d:log:64', 'hash': '0x8b2d34888f22c7ee6e3a3492edbaeb77c4cdc18cb0e5731a6db54eaa99209b9d', 'from': '0x3bd8a17382fbf8b2f587672e1d96913e8359f26d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xc8af9209f6a0180000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T13:24:21.000Z'}}, {'blockNum': '0x79b521', 'uniqueId': '0x14fb48b0a306df4fc3d2969695ebfcd29673a7c64efc500556302ea929ed7617:log:29', 'hash': '0x14fb48b0a306df4fc3d2969695ebfcd29673a7c64efc500556302ea929ed7617', 'from': '0x4506462b445166f8f5ce1b82d4bf5e50489b8f73', 'to': '0xa5ff11e7fd0462409122aed0b5b274149f7b362f', 'value': 158.438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0896c4d98f3b570000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T13:38:11.000Z'}}, {'blockNum': '0x79b565', 'uniqueId': '0x175480db068c3ae5f9d1bd48f5af2f6776db96384603b78780fef5087f7a2e88:log:0', 'hash': '0x175480db068c3ae5f9d1bd48f5af2f6776db96384603b78780fef5087f7a2e88', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x3218caf5bfd5d317edef3f0f13d0f9f2cdebf61f', 'value': 98.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05542fc12f2ce60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T13:53:34.000Z'}}, {'blockNum': '0x79b61d', 'uniqueId': '0xd3accf80ea8e5b4f4592ff46a287698e991287aca3c305c0d526c8c4a9b57a63:log:18', 'hash': '0xd3accf80ea8e5b4f4592ff46a287698e991287aca3c305c0d526c8c4a9b57a63', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb5236feab9c7662579fee170b962364bf50b2c8a', 'value': 3582.077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xc22f4df4d7b8ec8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T14:36:45.000Z'}}, {'blockNum': '0x79b63a', 'uniqueId': '0x7e5c92bcb45baa0553192d6a1475fc71e1534d87a6f7c38006d41fa123ddc649:log:28', 'hash': '0x7e5c92bcb45baa0553192d6a1475fc71e1534d87a6f7c38006d41fa123ddc649', 'from': '0xb5236feab9c7662579fee170b962364bf50b2c8a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3582.077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xc22f4df4d7b8ec8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T14:43:49.000Z'}}, {'blockNum': '0x79b679', 'uniqueId': '0x7f920e75e9db9de9b834ea7ac86010f95f5d3c451109b7106106f720eb6ba443:log:139', 'hash': '0x7f920e75e9db9de9b834ea7ac86010f95f5d3c451109b7106106f720eb6ba443', 'from': '0x8def0fd87c572eab755547153b03a24bc1b62e05', 'to': '0x2fdc804a8abd4cf2a9ff3df34e958f87e3264619', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T14:55:42.000Z'}}, {'blockNum': '0x79b87e', 'uniqueId': '0x3c0eefdafbc09eca002b68097a3b3ef460a1e248254bc5e3bdbd42909583a39a:log:127', 'hash': '0x3c0eefdafbc09eca002b68097a3b3ef460a1e248254bc5e3bdbd42909583a39a', 'from': '0x057f66b1e1308fa4259631e33ff202d244c8ad9c', 'to': '0x9011134c72b9a467ee45c03f68b65c42d5919968', 'value': 115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x063bf212b431ec0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T16:49:23.000Z'}}, {'blockNum': '0x79b93b', 'uniqueId': '0x6b8d7cbb59dbae6c6748e5f493d321be20db16fa93c2aef9f1bef8bfe2e1b84c:log:15', 'hash': '0x6b8d7cbb59dbae6c6748e5f493d321be20db16fa93c2aef9f1bef8bfe2e1b84c', 'from': '0x37597f383bb4fb74f84c270598a8350b1a765530', 'to': '0x1f3b476c1633f96347dcc41c58275484baf22b26', 'value': 490.033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1a9092f131a2fe8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T17:31:22.000Z'}}, {'blockNum': '0x79b9c9', 'uniqueId': '0xdaad102af8556bc4eb9bc682428fdaba508c0f18d34403b88c5cb453c144c247:log:158', 'hash': '0xdaad102af8556bc4eb9bc682428fdaba508c0f18d34403b88c5cb453c144c247', 'from': '0x7ed1e469fcb3ee19c0366d829e291451be638e59', 'to': '0xb2bb0ea40f13e7827089f25967419af710c5b625', 'value': 106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05bf0ba6634f680000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T18:06:31.000Z'}}, {'blockNum': '0x79baab', 'uniqueId': '0xe4e52710b78c0b837cc532b3d08adefab3ad86c7df56af640886a7ef68d92959:log:96', 'hash': '0xe4e52710b78c0b837cc532b3d08adefab3ad86c7df56af640886a7ef68d92959', 'from': '0x7cd6c173e249f37d8073494d7e032b9d9282250e', 'to': '0x9feaecfb8f9bac1966c8b79a4859275c89fa7376', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T18:54:36.000Z'}}, {'blockNum': '0x79bab4', 'uniqueId': '0xdd7f4c4ba034e395890d3b684958ad78fc5d1506192b332aa3f16ba840f5b914:log:92', 'hash': '0xdd7f4c4ba034e395890d3b684958ad78fc5d1506192b332aa3f16ba840f5b914', 'from': '0x7cd6c173e249f37d8073494d7e032b9d9282250e', 'to': '0x9feaecfb8f9bac1966c8b79a4859275c89fa7376', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x25f273933db5700000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T18:57:45.000Z'}}, {'blockNum': '0x79bae2', 'uniqueId': '0x8c2b08e367cdd1bdfa1a4d58ab77191ffc68ba4eb91a03166c5cc7c785a2dbfb:log:2', 'hash': '0x8c2b08e367cdd1bdfa1a4d58ab77191ffc68ba4eb91a03166c5cc7c785a2dbfb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5741da22b26131e23c9c03926f2d98c2efd040fe', 'value': 302.2082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1061fb34bb7a348000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T19:10:11.000Z'}}, {'blockNum': '0x79bb12', 'uniqueId': '0x4fdcce13bebf9c4c743466cee1ff4b02794db23a3e08a063fc28d13b01dce3bf:log:0', 'hash': '0x4fdcce13bebf9c4c743466cee1ff4b02794db23a3e08a063fc28d13b01dce3bf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5459289a2adc8f0d64f1866b998fee914370d2ea', 'value': 12.28, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xaa6b52f011cc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T19:19:46.000Z'}}, {'blockNum': '0x79bb58', 'uniqueId': '0xc14046cc578a12aea4d2c670ee53ccc6e44bb87458edab9c5efe11dc63c739e9:log:29', 'hash': '0xc14046cc578a12aea4d2c670ee53ccc6e44bb87458edab9c5efe11dc63c739e9', 'from': '0xd33f26bf71bb87df1fe3bf52f6998eb83eadc77c', 'to': '0xc3816ea0db09d16af3f7afea2a6ae86196d27fc1', 'value': 181.615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09d86a184332918000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T19:35:50.000Z'}}, {'blockNum': '0x79bbd5', 'uniqueId': '0x503eecb425c08b769116ff88b6a6aa91e560788fde1e4a479d7a3cf5abdc6c4f:log:113', 'hash': '0x503eecb425c08b769116ff88b6a6aa91e560788fde1e4a479d7a3cf5abdc6c4f', 'from': '0xc3816ea0db09d16af3f7afea2a6ae86196d27fc1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 181.615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09d86a184332918000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:03:51.000Z'}}, {'blockNum': '0x79bc15', 'uniqueId': '0x5db503c3168574dcb7aba1453f1ebde66e5c3b4a1f69f8c704143b87e0fbe910:log:106', 'hash': '0x5db503c3168574dcb7aba1453f1ebde66e5c3b4a1f69f8c704143b87e0fbe910', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0x5f28d22f61a30f52ee99490e8fccb666771c2f75', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:15:21.000Z'}}, {'blockNum': '0x79bc18', 'uniqueId': '0x5b02d67fc90c4a87730b985e952d8541383cb9797126d126f3c49d2894a3cadc:log:158', 'hash': '0x5b02d67fc90c4a87730b985e952d8541383cb9797126d126f3c49d2894a3cadc', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0xff4dd871dd89975ea1976fd91db023c6fd860395', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:16:35.000Z'}}, {'blockNum': '0x79bc18', 'uniqueId': '0x595a6557347acc460afffb7b788bc8a0fd62678afb4d587c00199a348b882387:log:159', 'hash': '0x595a6557347acc460afffb7b788bc8a0fd62678afb4d587c00199a348b882387', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0xf891542b52f1708ce94f6df0f67c8548c4dba70f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:16:35.000Z'}}, {'blockNum': '0x79bc1c', 'uniqueId': '0x66af2c6e9c4b8d42fd40d028ab2269c3fe2a3d4e89994608257f419958d9576b:log:46', 'hash': '0x66af2c6e9c4b8d42fd40d028ab2269c3fe2a3d4e89994608257f419958d9576b', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0x0668d1ebf4610cbf002dfb4576af2e86e46251f2', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:17:13.000Z'}}, {'blockNum': '0x79bc20', 'uniqueId': '0x8ce111cd8f1fcde9e16dac4dd78785dd3931879884033194f29616703d44dca1:log:138', 'hash': '0x8ce111cd8f1fcde9e16dac4dd78785dd3931879884033194f29616703d44dca1', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0xfa06943787ffe832493055363e4bc1d1557b274b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:18:17.000Z'}}, {'blockNum': '0x79bc20', 'uniqueId': '0xe7d0a9942304057e80cf119989e609608f818191d8317b1a61c444a299e5eea1:log:139', 'hash': '0xe7d0a9942304057e80cf119989e609608f818191d8317b1a61c444a299e5eea1', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0x910b0b2092476c02f03d7880c0fbcd75ecd285d5', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:18:17.000Z'}}, {'blockNum': '0x79bc29', 'uniqueId': '0x614faa93bd1a81dd250e698b54fa17dc6c4d1a2ebbf0fa6cc8f33b7ad475b5f0:log:36', 'hash': '0x614faa93bd1a81dd250e698b54fa17dc6c4d1a2ebbf0fa6cc8f33b7ad475b5f0', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0x0b504eb2a808a2561531af37ec1b08d6235b8d70', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:20:49.000Z'}}, {'blockNum': '0x79bc2f', 'uniqueId': '0x1e2646ab021e74e53e62b7b6222d2db835f2d5e06e45a8dd27f376f4fbb001ba:log:10', 'hash': '0x1e2646ab021e74e53e62b7b6222d2db835f2d5e06e45a8dd27f376f4fbb001ba', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7764aef137f4b2f72ada1a869eb7f92844574b43', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:22:13.000Z'}}, {'blockNum': '0x79bc2f', 'uniqueId': '0x5385bba89a46376111379f47702ded4debe75f7a37828478f9b7122c21e529fd:log:58', 'hash': '0x5385bba89a46376111379f47702ded4debe75f7a37828478f9b7122c21e529fd', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0x430c489835375d872fe9be45b215f75c1d5da19d', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:22:13.000Z'}}, {'blockNum': '0x79bc2f', 'uniqueId': '0x2cfdfea07c5cea95fa6b6a1ef2af1b507f049519feb07d966e96bc6e81b03da9:log:59', 'hash': '0x2cfdfea07c5cea95fa6b6a1ef2af1b507f049519feb07d966e96bc6e81b03da9', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0x519fdc790f5bb1cc1dd55d59572a42d3e5b6ce7c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:22:13.000Z'}}, {'blockNum': '0x79bc53', 'uniqueId': '0xbc2dbb98bffe9571f31b1b10224e664b885ad8b9b7c50d4d91b69ffb9eaa235b:log:7', 'hash': '0xbc2dbb98bffe9571f31b1b10224e664b885ad8b9b7c50d4d91b69ffb9eaa235b', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x057f66b1e1308fa4259631e33ff202d244c8ad9c', 'value': 113.84486638169147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x062bea36cc5687df8b', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:29:55.000Z'}}, {'blockNum': '0x79bc83', 'uniqueId': '0x5fb4f9bee4340ca2b0fe92dcf15a1d74876c7b8f5e42bf51284ca254ed37e171:log:4', 'hash': '0x5fb4f9bee4340ca2b0fe92dcf15a1d74876c7b8f5e42bf51284ca254ed37e171', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xe2c2f01e93887a77d81f47ea16ffc94a1fa1dd8f', 'value': 102.99554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x059559a9efad894000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:42:10.000Z'}}, {'blockNum': '0x79bcf8', 'uniqueId': '0x8c67b7fd45219c85249a19d10fb42a88d88a91c489c2a9600bd79112a1065f55:log:1', 'hash': '0x8c67b7fd45219c85249a19d10fb42a88d88a91c489c2a9600bd79112a1065f55', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x58ede29b8b8de94e4604d468b56f0822639d20b7', 'value': 54.92213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02fa329a3ebdd32000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:06:03.000Z'}}, {'blockNum': '0x79bd67', 'uniqueId': '0x965d53e28041d7ea6b3b54d08f68c43726df469f7ee341e1e95a7c6a17464c51:log:17', 'hash': '0x965d53e28041d7ea6b3b54d08f68c43726df469f7ee341e1e95a7c6a17464c51', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0xa674ea657de352db1dc72e170a92daf7f8718453', 'value': 800.8287121034866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2b69bb1eaf8de3a65b', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:33:40.000Z'}}, {'blockNum': '0x79bd67', 'uniqueId': '0x38eea8a9955ab28fc41fba0877cbddd86818b2377fba600b6410e08560351c2b:log:41', 'hash': '0x38eea8a9955ab28fc41fba0877cbddd86818b2377fba600b6410e08560351c2b', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0x458a729f0b0b8a68335a437783d91c315615920b', 'value': 416.4721288718584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1693b63aa521d310d1', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:33:40.000Z'}}, {'blockNum': '0x79bd67', 'uniqueId': '0x34647fb8ae5830beda2d9e554321e15da494867947e5de5e28d7a93786ca950d:log:42', 'hash': '0x34647fb8ae5830beda2d9e554321e15da494867947e5de5e28d7a93786ca950d', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0xc4b6ae4a833274bad9bb735b3f90364ba22a4004', 'value': 415.12105901100813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1680f643c3cf1c1de3', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:33:40.000Z'}}, {'blockNum': '0x79bd67', 'uniqueId': '0x33250f8670eb448d7f36153589a88a06ef4ac8f03a4c25a22ef4f384b94a0cce:log:44', 'hash': '0x33250f8670eb448d7f36153589a88a06ef4ac8f03a4c25a22ef4f384b94a0cce', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0x792ebb9f4dc4d8ddf557b051d88e98320a5c8b95', 'value': 811.5981341791336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2bff2fcb0135123267', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:33:40.000Z'}}, {'blockNum': '0x79bd67', 'uniqueId': '0xbe1112dba24850fc3abddcab7891ec9b8e79ed674dd0717a57da018e46f33f63:log:45', 'hash': '0xbe1112dba24850fc3abddcab7891ec9b8e79ed674dd0717a57da018e46f33f63', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0x2b1826ea3a6c5c245561fcd0cbb135a0f4f6aa89', 'value': 393.49758637797623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1554e041f8a0dca4c0', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:33:40.000Z'}}, {'blockNum': '0x79bd67', 'uniqueId': '0xc77436f5a6699d3e897eebdd1f6e1f3d39ec5ab9c1897d4584429125d123a6b7:log:46', 'hash': '0xc77436f5a6699d3e897eebdd1f6e1f3d39ec5ab9c1897d4584429125d123a6b7', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0xf93fed6ec2da7f44b01390f5098df77f5d3b04a2', 'value': 416.64449399893033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x16961a97d09c9d00d3', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:33:40.000Z'}}, {'blockNum': '0x79bd67', 'uniqueId': '0xe063e90eb1fc4c34edeafe44e6ed5c57858508ea44b56a1484e60a829ed89389:log:47', 'hash': '0xe063e90eb1fc4c34edeafe44e6ed5c57858508ea44b56a1484e60a829ed89389', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0xba4b3f7cd4672c8645bd61ccda0b21c784491507', 'value': 800.6589730801496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2b676015f17f5d014e', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:33:40.000Z'}}, {'blockNum': '0x79bd79', 'uniqueId': '0x728349faa24d0396842e991ef016ebdc484f4f85ee3cdbc9ce654c9837f745da:log:168', 'hash': '0x728349faa24d0396842e991ef016ebdc484f4f85ee3cdbc9ce654c9837f745da', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0x45193f21dcd87957be6ed26e8a59b0ca586e30e4', 'value': 412.2990883206368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1659cc9c5f98f6d731', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:37:44.000Z'}}, {'blockNum': '0x79bd86', 'uniqueId': '0x0e94d50d26e67e06be0077b0c0e864adb07b00cc118b0d95d4c0882cc65a465b:log:139', 'hash': '0x0e94d50d26e67e06be0077b0c0e864adb07b00cc118b0d95d4c0882cc65a465b', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0x94432c62a90bbed35c486737091a39d4553af751', 'value': 801.9637460137021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2b797b9203704daad5', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:39:58.000Z'}}, {'blockNum': '0x79be72', 'uniqueId': '0x60a7448cfda855186b6b5fd9683307034799b54d5f64a7081af844385c167ee7:log:26', 'hash': '0x60a7448cfda855186b6b5fd9683307034799b54d5f64a7081af844385c167ee7', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x14e9426f19e5afdfcacabd7a9a5d02c5ca043459', 'value': 208.11309595208493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0b48263e2352cecc1d', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T22:34:51.000Z'}}, {'blockNum': '0x79bf22', 'uniqueId': '0x046b8ba91f7c904286b08c4ef3835ba87d125458837a14c36d587e646939bc46:log:67', 'hash': '0x046b8ba91f7c904286b08c4ef3835ba87d125458837a14c36d587e646939bc46', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xf4645b1e3cc12086f7f9bb93521c5d6f72209490', 'value': 28.4327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x018a953e01d13fc000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T23:16:05.000Z'}}, {'blockNum': '0x79bf22', 'uniqueId': '0xc7f693f8c3b503d660f3e3b0d979cc154acfa1050867b4628c587d20a9bcaf21:log:68', 'hash': '0xc7f693f8c3b503d660f3e3b0d979cc154acfa1050867b4628c587d20a9bcaf21', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xf4645b1e3cc12086f7f9bb93521c5d6f72209490', 'value': 28.4327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x018a953e01d13fc000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T23:16:05.000Z'}}, {'blockNum': '0x79c0b5', 'uniqueId': '0xc26c94daf61141ce84f1889d87ba41212863044044931372be20afa03f726b8a:log:46', 'hash': '0xc26c94daf61141ce84f1889d87ba41212863044044931372be20afa03f726b8a', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x1c976ea0d60f04b4354ec4ead3f0ce069bd1b3a5', 'value': 1476.52154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x500ada45af00b84000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-18T00:37:23.000Z'}}]}}
Number of returned transfers: 79
Answer is complete
symbol RDN
group BPG
date 2019-07-29
hour 15:00
exchange binance
Name: 274, dtype: object
HERE
Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps: 2019-07-29 15:00:00 2019-07-29 03:00:00 2019-07-30 03:00:00
Unix timestamps: 1564362000.0 1564448400.0
Hex Block Numbers: 0x7dc53c 0x7dde20
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7dc552', 'uniqueId': '0x8cfe8dafcbe2e1a9edef5cd05d67abc5e6a4bbec8c2bd300de37db05bd5cfff6:log:23', 'hash': '0x8cfe8dafcbe2e1a9edef5cd05d67abc5e6a4bbec8c2bd300de37db05bd5cfff6', 'from': '0xbef19ef7cc7e652092b0961fedfbeba29b471a9d', 'to': '0x17c304d4207da4295e45f0b2024217c882e656a1', 'value': 1995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c262fca09784c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T01:05:40.000Z'}}, {'blockNum': '0x7dc5ae', 'uniqueId': '0xf2ff3481659becbd7a2d1b4cfefffe8fd5a4b540e856c6e19c97c715edc706d7:log:11', 'hash': '0xf2ff3481659becbd7a2d1b4cfefffe8fd5a4b540e856c6e19c97c715edc706d7', 'from': '0x17c304d4207da4295e45f0b2024217c882e656a1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c262fca09784c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T01:23:53.000Z'}}, {'blockNum': '0x7dc66f', 'uniqueId': '0x7518ff37fe45005c15f3cb4567e9dda9436a339d1c785115ead85d20be64d76d:log:123', 'hash': '0x7518ff37fe45005c15f3cb4567e9dda9436a339d1c785115ead85d20be64d76d', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 189.5045670654986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a45e777b5353bac91', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:12:06.000Z'}}, {'blockNum': '0x7dc66f', 'uniqueId': '0x7518ff37fe45005c15f3cb4567e9dda9436a339d1c785115ead85d20be64d76d:log:125', 'hash': '0x7518ff37fe45005c15f3cb4567e9dda9436a339d1c785115ead85d20be64d76d', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 189.5045670654986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a45e777b5353bac91', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:12:06.000Z'}}, {'blockNum': '0x7dc66f', 'uniqueId': '0x7518ff37fe45005c15f3cb4567e9dda9436a339d1c785115ead85d20be64d76d:log:130', 'hash': '0x7518ff37fe45005c15f3cb4567e9dda9436a339d1c785115ead85d20be64d76d', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 189.5045670654986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a45e777b5353bac91', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:12:06.000Z'}}, {'blockNum': '0x7dc6ac', 'uniqueId': '0x589c82ffbf92f655c9046460b4ad097d5280dc8c89a9c2604a18be2952f2a55a:log:80', 'hash': '0x589c82ffbf92f655c9046460b4ad097d5280dc8c89a9c2604a18be2952f2a55a', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 5621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0130b70b96aa66b40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:25:50.000Z'}}, {'blockNum': '0x7dc775', 'uniqueId': '0x1d192c7b0e547175daf0c6b01a3ce75d7c8489c05b57869c1c74991cdf9a9923:log:30', 'hash': '0x1d192c7b0e547175daf0c6b01a3ce75d7c8489c05b57869c1c74991cdf9a9923', 'from': '0x5769b4b1c9494335b295d44a66eb1fe41e78a423', 'to': '0x88d531da71124781791532a36ea8395529577cae', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T03:12:55.000Z'}}, {'blockNum': '0x7dc77d', 'uniqueId': '0xbb5efcb0df28f57e1f9941d4facba9741f7302296cb1f95ad3a7f65244d09781:log:99', 'hash': '0xbb5efcb0df28f57e1f9941d4facba9741f7302296cb1f95ad3a7f65244d09781', 'from': '0x5769b4b1c9494335b295d44a66eb1fe41e78a423', 'to': '0x88d531da71124781791532a36ea8395529577cae', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T03:14:37.000Z'}}, {'blockNum': '0x7dc7ae', 'uniqueId': '0x724e753ee9d08c214303bdfe47f716054207803002ec7855c331761ea6d9a1f0:log:20', 'hash': '0x724e753ee9d08c214303bdfe47f716054207803002ec7855c331761ea6d9a1f0', 'from': '0x88d531da71124781791532a36ea8395529577cae', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T03:23:49.000Z'}}, {'blockNum': '0x7dca92', 'uniqueId': '0xf66542a9ea02e45c3fc9a08434a07480fc97ae1f14fd9b3564863882ae3b8e65:log:26', 'hash': '0xf66542a9ea02e45c3fc9a08434a07480fc97ae1f14fd9b3564863882ae3b8e65', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x9b63f600256bdacc1c0af19f2ed620c07e60865f', 'value': 43866.3907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x094a0076478d1ee6c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T06:10:02.000Z'}}, {'blockNum': '0x7dcaa0', 'uniqueId': '0xced6be35a423c9eb6528d7adeef2683af3e186fb27068fd7b45b05a63d7ea193:log:7', 'hash': '0xced6be35a423c9eb6528d7adeef2683af3e186fb27068fd7b45b05a63d7ea193', 'from': '0x9b63f600256bdacc1c0af19f2ed620c07e60865f', 'to': '0x27c9a9604467aa0340cdefa784a93e0ea4f8f4c0', 'value': 43866.3907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x094a0076478d1ee6c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T06:14:42.000Z'}}, {'blockNum': '0x7dcd18', 'uniqueId': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6:log:36', 'hash': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 353.30631433001275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13271c2cfc6ee94fc8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:35:10.000Z'}}, {'blockNum': '0x7dcd18', 'uniqueId': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6:log:38', 'hash': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 353.30631433001275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13271c2cfc6ee94fc8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:35:10.000Z'}}, {'blockNum': '0x7dcd18', 'uniqueId': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6:log:43', 'hash': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 353.30631433001264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13271c2cfc6ee80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:35:10.000Z'}}, {'blockNum': '0x7dcd18', 'uniqueId': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6:log:45', 'hash': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 353.30631433001264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13271c2cfc6ee80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:35:10.000Z'}}, {'blockNum': '0x7dcd78', 'uniqueId': '0x0838d13eb6305be052f5920f405111c0cab133ef5cad145b8ad1206211c463d4:log:48', 'hash': '0x0838d13eb6305be052f5920f405111c0cab133ef5cad145b8ad1206211c463d4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 199.473987730719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ad041f6fb8c224282', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:54:49.000Z'}}, {'blockNum': '0x7dcd78', 'uniqueId': '0x0838d13eb6305be052f5920f405111c0cab133ef5cad145b8ad1206211c463d4:log:50', 'hash': '0x0838d13eb6305be052f5920f405111c0cab133ef5cad145b8ad1206211c463d4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 199.473987730719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ad041f6fb8c224282', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:54:49.000Z'}}, {'blockNum': '0x7dcd78', 'uniqueId': '0x0838d13eb6305be052f5920f405111c0cab133ef5cad145b8ad1206211c463d4:log:55', 'hash': '0x0838d13eb6305be052f5920f405111c0cab133ef5cad145b8ad1206211c463d4', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 199.473987730719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ad041f6fb8c224282', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:54:49.000Z'}}, {'blockNum': '0x7dcd8e', 'uniqueId': '0xb1c2e7237edf626974b2bae100ba2b3ac6b849c6c48dabbf1b44c97280370f83:log:4', 'hash': '0xb1c2e7237edf626974b2bae100ba2b3ac6b849c6c48dabbf1b44c97280370f83', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2410.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x82af2edd90622e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:59:13.000Z'}}, {'blockNum': '0x7dce65', 'uniqueId': '0xa702eac9064d784c7f9916444af74991e6f8cc565d2a1955a534b88559b52240:log:34', 'hash': '0xa702eac9064d784c7f9916444af74991e6f8cc565d2a1955a534b88559b52240', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x93c990ad10bd6e41fe25571375da94f9112c7db2', 'value': 3.8770359056241515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x35cdff9d60299563', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T09:50:05.000Z'}}, {'blockNum': '0x7dce84', 'uniqueId': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420:log:62', 'hash': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 634.5126075760069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2265a19ecc6ab8711e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T09:56:40.000Z'}}, {'blockNum': '0x7dce84', 'uniqueId': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420:log:64', 'hash': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 634.5126075760069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2265a19ecc6ab8711e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T09:56:40.000Z'}}, {'blockNum': '0x7dce84', 'uniqueId': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420:log:69', 'hash': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 634.5126075760066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2265a19ecc6ab40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T09:56:40.000Z'}}, {'blockNum': '0x7dce84', 'uniqueId': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420:log:71', 'hash': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 634.5126075760066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2265a19ecc6ab40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T09:56:40.000Z'}}, {'blockNum': '0x7dcf20', 'uniqueId': '0xf375928dff70990393e4890c45ccd8b96c6524a0eb7d1c6f7552640fa5bba2bc:log:47', 'hash': '0xf375928dff70990393e4890c45ccd8b96c6524a0eb7d1c6f7552640fa5bba2bc', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 237.93581621891116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ce605d4368ed37bde', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T10:31:08.000Z'}}, {'blockNum': '0x7dcf20', 'uniqueId': '0xf375928dff70990393e4890c45ccd8b96c6524a0eb7d1c6f7552640fa5bba2bc:log:49', 'hash': '0xf375928dff70990393e4890c45ccd8b96c6524a0eb7d1c6f7552640fa5bba2bc', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 237.93581621891116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ce605d4368ed37bde', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T10:31:08.000Z'}}, {'blockNum': '0x7dcf20', 'uniqueId': '0xf375928dff70990393e4890c45ccd8b96c6524a0eb7d1c6f7552640fa5bba2bc:log:54', 'hash': '0xf375928dff70990393e4890c45ccd8b96c6524a0eb7d1c6f7552640fa5bba2bc', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 237.93581621891104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ce605d4368ed20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T10:31:08.000Z'}}, {'blockNum': '0x7dd06b', 'uniqueId': '0xb9f594d89cd1f33c80311d71c36e279a464ea6c0f016730d4aebb9bf581593bb:log:7', 'hash': '0xb9f594d89cd1f33c80311d71c36e279a464ea6c0f016730d4aebb9bf581593bb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7a6ab43aee38c562f8f0ba1890a286e28ab03896', 'value': 188.506, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a380bd8409dc90000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T11:49:06.000Z'}}, {'blockNum': '0x7dd0f4', 'uniqueId': '0x9d248bca2c1bae494140c65e6ea958be97763e91ece7af07504da90fdb3958a4:log:65', 'hash': '0x9d248bca2c1bae494140c65e6ea958be97763e91ece7af07504da90fdb3958a4', 'from': '0x16ea1f673e01419ba9af51365b88138ac492489a', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 45.648922720435166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0279818d5b1acbe780', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T12:21:44.000Z'}}, {'blockNum': '0x7dd0f4', 'uniqueId': '0x9d248bca2c1bae494140c65e6ea958be97763e91ece7af07504da90fdb3958a4:log:66', 'hash': '0x9d248bca2c1bae494140c65e6ea958be97763e91ece7af07504da90fdb3958a4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 45.648922720435166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0279818d5b1acbe780', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T12:21:44.000Z'}}, {'blockNum': '0x7dd157', 'uniqueId': '0xcebbf02a25e1697c0d6ae7b01b8dd1aca676f1c12379ef71ad6d2c3f524f226a:log:7', 'hash': '0xcebbf02a25e1697c0d6ae7b01b8dd1aca676f1c12379ef71ad6d2c3f524f226a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x34b61c1b68212b1799a3aebb1ff763f7a766aaf9', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T12:44:15.000Z'}}, {'blockNum': '0x7dd170', 'uniqueId': '0xa8b66cd3d4ca96802696060acf7cc548c041608a427494cc79b62c3bfa0bb8f1:log:26', 'hash': '0xa8b66cd3d4ca96802696060acf7cc548c041608a427494cc79b62c3bfa0bb8f1', 'from': '0x1cb5b2bb4030220ad5417229a7a1e3c373cdd2f6', 'to': '0xf36700ff798394c4a58fe861a4661f5489d90735', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T12:48:30.000Z'}}, {'blockNum': '0x7dd1b9', 'uniqueId': '0xfca6fa6f44a2fa15e2d40d7e6ee6bb9da47c23e609817c464320a463b85ab1fa:log:49', 'hash': '0xfca6fa6f44a2fa15e2d40d7e6ee6bb9da47c23e609817c464320a463b85ab1fa', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7f5be7b017a7035ec0e5e7d423a9c22dba8353d', 'value': 2976.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa15ddf47d209850000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:04:24.000Z'}}, {'blockNum': '0x7dd1bb', 'uniqueId': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7:log:118', 'hash': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 334.5484508916073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1222cadb927f7723e8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:04:53.000Z'}}, {'blockNum': '0x7dd1bb', 'uniqueId': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7:log:120', 'hash': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 334.5484508916073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1222cadb927f7723e8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:04:53.000Z'}}, {'blockNum': '0x7dd1bb', 'uniqueId': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7:log:125', 'hash': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 334.5484508916072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1222cadb927f770000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:04:53.000Z'}}, {'blockNum': '0x7dd1bb', 'uniqueId': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7:log:127', 'hash': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 334.5484508916072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1222cadb927f770000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:04:53.000Z'}}, {'blockNum': '0x7dd1c3', 'uniqueId': '0x70290aa73784e1d07f1fd0cbdc22d5b68c07f8bf9c3c69853f3891917e0143bf:log:4', 'hash': '0x70290aa73784e1d07f1fd0cbdc22d5b68c07f8bf9c3c69853f3891917e0143bf', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf7f5be7b017a7035ec0e5e7d423a9c22dba8353d', 'value': 3465.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xbbe03fcbef374a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:07:16.000Z'}}, {'blockNum': '0x7dd1c8', 'uniqueId': '0xe46917a6338b89c92cae9a44cfbf62b2406c85f035b6db1a5523dcdb91ca9ec6:log:50', 'hash': '0xe46917a6338b89c92cae9a44cfbf62b2406c85f035b6db1a5523dcdb91ca9ec6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 197.488661040306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ab4b4aae05af7327e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:08:42.000Z'}}, {'blockNum': '0x7dd1c8', 'uniqueId': '0xe46917a6338b89c92cae9a44cfbf62b2406c85f035b6db1a5523dcdb91ca9ec6:log:52', 'hash': '0xe46917a6338b89c92cae9a44cfbf62b2406c85f035b6db1a5523dcdb91ca9ec6', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 197.488661040306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ab4b4aae05af7327e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:08:42.000Z'}}, {'blockNum': '0x7dd1c8', 'uniqueId': '0xe46917a6338b89c92cae9a44cfbf62b2406c85f035b6db1a5523dcdb91ca9ec6:log:57', 'hash': '0xe46917a6338b89c92cae9a44cfbf62b2406c85f035b6db1a5523dcdb91ca9ec6', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 197.488661040306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ab4b4aae05af7327e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:08:42.000Z'}}, {'blockNum': '0x7dd1d7', 'uniqueId': '0xece55e828f186a26456296ef2c0a7018fceca5aee90f2105332b23e70971fb5e:log:28', 'hash': '0xece55e828f186a26456296ef2c0a7018fceca5aee90f2105332b23e70971fb5e', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xf7f5be7b017a7035ec0e5e7d423a9c22dba8353d', 'value': 158.3907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x08961cce75c976c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:11:58.000Z'}}, {'blockNum': '0x7dd1fa', 'uniqueId': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4:log:114', 'hash': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 372.2971628242598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x142ea93912e1c4f136', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:19:12.000Z'}}, {'blockNum': '0x7dd1fa', 'uniqueId': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4:log:116', 'hash': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 372.2971628242598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x142ea93912e1c4f136', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:19:12.000Z'}}, {'blockNum': '0x7dd1fa', 'uniqueId': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4:log:121', 'hash': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 372.29679052709696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x142ea7e678b1a0d6f1', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:19:12.000Z'}}, {'blockNum': '0x7dd1fa', 'uniqueId': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4:log:123', 'hash': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 372.29679052709696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x142ea7e678b1a0d6f1', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:19:12.000Z'}}, {'blockNum': '0x7dd204', 'uniqueId': '0x9475b5044e19071d24cd20667d1941ccb5fa6021162a56a70823f17334db5f0a:log:114', 'hash': '0x9475b5044e19071d24cd20667d1941ccb5fa6021162a56a70823f17334db5f0a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 198.61824346760994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ac461c01bf6f0cd42', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:21:01.000Z'}}, {'blockNum': '0x7dd204', 'uniqueId': '0x9475b5044e19071d24cd20667d1941ccb5fa6021162a56a70823f17334db5f0a:log:116', 'hash': '0x9475b5044e19071d24cd20667d1941ccb5fa6021162a56a70823f17334db5f0a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 198.61824346760994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ac461c01bf6f0cd42', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:21:01.000Z'}}, {'blockNum': '0x7dd204', 'uniqueId': '0x9475b5044e19071d24cd20667d1941ccb5fa6021162a56a70823f17334db5f0a:log:121', 'hash': '0x9475b5044e19071d24cd20667d1941ccb5fa6021162a56a70823f17334db5f0a', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 198.61824346760994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ac461c01bf6f0cd42', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:21:01.000Z'}}, {'blockNum': '0x7dd369', 'uniqueId': '0xe0069619f571a7ebe5641a45c29f3dd87a00bfe6b7c7757f8ac34c0c375ed1cd:log:132', 'hash': '0xe0069619f571a7ebe5641a45c29f3dd87a00bfe6b7c7757f8ac34c0c375ed1cd', 'from': '0x2af47a65da8cd66729b4209c22017d6a5c2d2400', 'to': '0xe3edbd0d3138d77baa734a783db4077906a35465', 'value': 4937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010ba2a36ea727840000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T14:40:49.000Z'}}, {'blockNum': '0x7dd3cd', 'uniqueId': '0x2fdb4778533d58e1b72cd78b6f6bc6d4193d934e139ac056fd5ebe97076a984e:log:1', 'hash': '0x2fdb4778533d58e1b72cd78b6f6bc6d4193d934e139ac056fd5ebe97076a984e', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 5142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0116bf95bc8432980000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T15:02:42.000Z'}}, {'blockNum': '0x7dd3fb', 'uniqueId': '0x9ed1903a211361f8c49f9ef9ee27b41bce9a53c45c6949c3d1fca6990b3565e3:log:38', 'hash': '0x9ed1903a211361f8c49f9ef9ee27b41bce9a53c45c6949c3d1fca6990b3565e3', 'from': '0xe3edbd0d3138d77baa734a783db4077906a35465', 'to': '0x2af47a65da8cd66729b4209c22017d6a5c2d2400', 'value': 3245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xafe96be340ce940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T15:13:14.000Z'}}, {'blockNum': '0x7dd3ff', 'uniqueId': '0xa569b4f376aaafee58ff8967b4d567e7e02e922f7136f571fb7095f15cd201d7:log:23', 'hash': '0xa569b4f376aaafee58ff8967b4d567e7e02e922f7136f571fb7095f15cd201d7', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0116bf95bc8432980000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T15:13:56.000Z'}}, {'blockNum': '0x7dd4ab', 'uniqueId': '0x77c4bf2f46217e1c02a75f0c55c253119c6d5820757098fb08248e645c3762c9:log:131', 'hash': '0x77c4bf2f46217e1c02a75f0c55c253119c6d5820757098fb08248e645c3762c9', 'from': '0x773c249cc8dd02fce180ff066823312e448c6413', 'to': '0xe3edbd0d3138d77baa734a783db4077906a35465', 'value': 5500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x012a27d53bc048700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T15:56:26.000Z'}}, {'blockNum': '0x7dd4b6', 'uniqueId': '0x4b506195c3f488e2e910a706b7178bab3367a7be78cf48b295749250721056c1:log:117', 'hash': '0x4b506195c3f488e2e910a706b7178bab3367a7be78cf48b295749250721056c1', 'from': '0xe3edbd0d3138d77baa734a783db4077906a35465', 'to': '0x2af47a65da8cd66729b4209c22017d6a5c2d2400', 'value': 5411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x012554b5b74b16ac0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T15:59:49.000Z'}}, {'blockNum': '0x7dd4e9', 'uniqueId': '0xdd8696f59fd24b4e25992161286aeeaa559aa7588a374c9ce0423dea3324d2ae:log:126', 'hash': '0xdd8696f59fd24b4e25992161286aeeaa559aa7588a374c9ce0423dea3324d2ae', 'from': '0xe3edbd0d3138d77baa734a783db4077906a35465', 'to': '0x2af47a65da8cd66729b4209c22017d6a5c2d2400', 'value': 4329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xeaacf183f99a040000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T16:13:17.000Z'}}, {'blockNum': '0x7dd5d8', 'uniqueId': '0x5dd03bde0ee17aa5551deb8533849cc53e4a6db722df346cd2aa17a955a5a451:log:17', 'hash': '0x5dd03bde0ee17aa5551deb8533849cc53e4a6db722df346cd2aa17a955a5a451', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x301ad4b114174a2e237ff3ecdd53511f80b3f8fa', 'value': 6284.0292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0154a86c7f2fb6210000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T17:07:31.000Z'}}, {'blockNum': '0x7dd7cb', 'uniqueId': '0x152134597a244e700089dde00c871fc79007b9f7cb3b1e18be7f6a8e0910b16f:log:0', 'hash': '0x152134597a244e700089dde00c871fc79007b9f7cb3b1e18be7f6a8e0910b16f', 'from': '0x67ca63d179611594c7e2c4bde379b59d35c0453e', 'to': '0x193397962bd548a45f83a1af5313bd1bb6d7e606', 'value': 346.464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12c827645ae4f00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T18:59:13.000Z'}}, {'blockNum': '0x7dd7e5', 'uniqueId': '0x13b4f27dd84ea625a7d0419195f15f19218649464bac8dd257899a8ab20959de:log:19', 'hash': '0x13b4f27dd84ea625a7d0419195f15f19218649464bac8dd257899a8ab20959de', 'from': '0x193397962bd548a45f83a1af5313bd1bb6d7e606', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 346.464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12c827645ae4f00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T19:03:41.000Z'}}, {'blockNum': '0x7dd9cd', 'uniqueId': '0x8129e91798b6ce3ac6e7ff2604c1cc015e86c0bc813d1f2bd79072744cecaf74:log:234', 'hash': '0x8129e91798b6ce3ac6e7ff2604c1cc015e86c0bc813d1f2bd79072744cecaf74', 'from': '0x93c990ad10bd6e41fe25571375da94f9112c7db2', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 15.271222809908046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd3ee483c36696691', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T20:55:16.000Z'}}, {'blockNum': '0x7ddacf', 'uniqueId': '0xafda6a5b5a5a50ea03f55ef0d3a4a8213aaf47757ffbe654c2b9e03b7ea0638b:log:36', 'hash': '0xafda6a5b5a5a50ea03f55ef0d3a4a8213aaf47757ffbe654c2b9e03b7ea0638b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 931.7380478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x32827681ea12ee3000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T21:48:54.000Z'}}, {'blockNum': '0x7ddad6', 'uniqueId': '0x910bccdd475f03a25fe5ba00c3ac617939a59f8c3040055ade4df41bd2468b4b:log:9', 'hash': '0x910bccdd475f03a25fe5ba00c3ac617939a59f8c3040055ade4df41bd2468b4b', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 931.7380478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x32827681ea12ee3000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T21:50:14.000Z'}}, {'blockNum': '0x7ddad6', 'uniqueId': '0x910bccdd475f03a25fe5ba00c3ac617939a59f8c3040055ade4df41bd2468b4b:log:11', 'hash': '0x910bccdd475f03a25fe5ba00c3ac617939a59f8c3040055ade4df41bd2468b4b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 931.7380478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x32827681ea12ee3000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T21:50:14.000Z'}}, {'blockNum': '0x7dddf0', 'uniqueId': '0xf15faa9c7552391eb9f0dc785bac41c1cd4a553327ea14effdbb8ad1211af507:log:72', 'hash': '0xf15faa9c7552391eb9f0dc785bac41c1cd4a553327ea14effdbb8ad1211af507', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x10c2dc6ddc8e98eedf6e9a9113f6223853628183', 'value': 59.220741996326176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0335da5714aa143c0b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-30T00:50:16.000Z'}}]}}
Number of returned transfers: 64
Answer is complete
symbol BRD
group BPG
date 2019-10-03
hour 14:59
exchange binance
Name: 275, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps: 2019-10-03 14:59:00 2019-10-03 02:59:00 2019-10-04 02:59:00
Unix timestamps: 1570064340.0 1570150740.0
Hex Block Numbers: 0x843c64 0x84556a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x843ccd', 'uniqueId': '0x500dedfc22812518aa437221f30c972d81ec3549d4ddb6793276e0d1857c9af9:log:72', 'hash': '0x500dedfc22812518aa437221f30c972d81ec3549d4ddb6793276e0d1857c9af9', 'from': '0xef9bbfe4ffe3789ae09fa114341fc16afe8e6ced', 'to': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T01:23:24.000Z'}}, {'blockNum': '0x843cff', 'uniqueId': '0xb4aa96a09e3fe93e1d455f0fdf2dc9854ea213bf3863785b440edd35c8605e6d:log:9', 'hash': '0xb4aa96a09e3fe93e1d455f0fdf2dc9854ea213bf3863785b440edd35c8605e6d', 'from': '0x04d73710af531a575113e65d315147247fb7088d', 'to': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'value': 4.557111647405681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3f3e1ce6116929d9', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T01:38:33.000Z'}}, {'blockNum': '0x843d4c', 'uniqueId': '0x9c8dd0708724064bd5d138b72794592eb60532c50a90b74248185b8bfda33e18:log:30', 'hash': '0x9c8dd0708724064bd5d138b72794592eb60532c50a90b74248185b8bfda33e18', 'from': '0x41ce6644b9ec14ee58c994d571970b62167ab23b', 'to': '0x3683792624a0501a75110420dfd5c84843282ef9', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x878678326eac900000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T01:55:54.000Z'}}, {'blockNum': '0x843dd4', 'uniqueId': '0xe94cdacab65d6380bd5718f68fa223e3fed6ee507e47f973c8d8741549c639cb:log:47', 'hash': '0xe94cdacab65d6380bd5718f68fa223e3fed6ee507e47f973c8d8741549c639cb', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 2722.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x9397aa430c06840000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T02:27:07.000Z'}}, {'blockNum': '0x843dd6', 'uniqueId': '0x0abdc5eb5235714ed6e0c449e5bce77fa639555b93c4c471ab01fe9ea68be8d0:log:53', 'hash': '0x0abdc5eb5235714ed6e0c449e5bce77fa639555b93c4c471ab01fe9ea68be8d0', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2896762d1639c1838edf6f21e29a89c2aca84491', 'value': 2094.31830398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x718881494bbe763800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T02:27:44.000Z'}}, {'blockNum': '0x843edd', 'uniqueId': '0x29061e37468798d8ce0192b877da45293c945b9b032b3dba98096a31a7693be5:log:93', 'hash': '0x29061e37468798d8ce0192b877da45293c945b9b032b3dba98096a31a7693be5', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 9036.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01e9e0046e0a8eec0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T03:25:53.000Z'}}, {'blockNum': '0x843edf', 'uniqueId': '0x395199186bdb0a5855222789671acaddbc1e92bbb134cb27ba8641a4e6ad9bca:log:42', 'hash': '0x395199186bdb0a5855222789671acaddbc1e92bbb134cb27ba8641a4e6ad9bca', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T03:26:21.000Z'}}, {'blockNum': '0x843fa2', 'uniqueId': '0xc2f0b217da075909fee507b1d146ea50895e0490a9a987bada5abb76acb4d4c6:log:20', 'hash': '0xc2f0b217da075909fee507b1d146ea50895e0490a9a987bada5abb76acb4d4c6', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x7a9f328d99cbfdcbd6f2a4f03f4b9d2fc63be0c8', 'value': 86.93057175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04b6676e6dc05b7c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T04:06:25.000Z'}}, {'blockNum': '0x84401c', 'uniqueId': '0xe3ccf4e6f8d9080b522f0628c292fd5753670d6ab91f2e3b71bfd44c5ab29899:log:14', 'hash': '0xe3ccf4e6f8d9080b522f0628c292fd5753670d6ab91f2e3b71bfd44c5ab29899', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x8485ce278c81e9788fe4571d966b718e15e42eee', 'value': 212.87271094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0b8a33cac0811c1800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T04:31:33.000Z'}}, {'blockNum': '0x84404b', 'uniqueId': '0x8a1c022a9ac01d15df491454fdf4669c351bf2990c818243381f038763feb11a:log:27', 'hash': '0x8a1c022a9ac01d15df491454fdf4669c351bf2990c818243381f038763feb11a', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xdcf9bcf5913d261535571f8dd58258eb611887d6', 'value': 83.4358796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0485e7ca6f1842e000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T04:42:37.000Z'}}, {'blockNum': '0x84408a', 'uniqueId': '0xb97a4815682c7c175054b46d7ac1b36fd835b5e506052db4d11b98bf1f238500:log:137', 'hash': '0xb97a4815682c7c175054b46d7ac1b36fd835b5e506052db4d11b98bf1f238500', 'from': '0x7a9f328d99cbfdcbd6f2a4f03f4b9d2fc63be0c8', 'to': '0x2c558203f4931c566e9f8af4b1b47775f58d7fd2', 'value': 86.93057175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04b6676e6dc05b7c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T04:56:55.000Z'}}, {'blockNum': '0x8440d9', 'uniqueId': '0xc74651c6865e5b31583c35ec142e0828433d7c101b2c3033a241436818e77e69:log:149', 'hash': '0xc74651c6865e5b31583c35ec142e0828433d7c101b2c3033a241436818e77e69', 'from': '0xad63ea28b762233560b38faca66c9504d1a5cf47', 'to': '0x782b3cc75980a0ac397846ad768e371ef5f54adb', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T05:16:30.000Z'}}, {'blockNum': '0x844292', 'uniqueId': '0x220fa194bcb1e1cb82d84d2659e44c4b4da7c389a062755844efa154b7989fd7:log:27', 'hash': '0x220fa194bcb1e1cb82d84d2659e44c4b4da7c389a062755844efa154b7989fd7', 'from': '0x07715f89037b891d8f7d239143f43e93a8b49781', 'to': '0xa2061074a9921fcfc0168ef91b58e69672462626', 'value': 26800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05acd4b69783b4c00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T06:54:46.000Z'}}, {'blockNum': '0x8442f5', 'uniqueId': '0xe18d4e882c62b7032464fed477922138c84b6efc10fb88dcac204daa9446dacb:log:6', 'hash': '0xe18d4e882c62b7032464fed477922138c84b6efc10fb88dcac204daa9446dacb', 'from': '0x50060f6dfb4acdbe95c2e89251bc2c1e77c2b9da', 'to': '0x720b78db122c36f5d8c8390c01e391cccfc240b4', 'value': 540.851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1d51d0bef2d6cb8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T07:16:35.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0x9aa331ec66fa2f3dbb16256a098f224f7411bf42a2580f68785a7cdc351c3ba1:log:72', 'hash': '0x9aa331ec66fa2f3dbb16256a098f224f7411bf42a2580f68785a7cdc351c3ba1', 'from': '0x782b3cc75980a0ac397846ad768e371ef5f54adb', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0xebd56568e40dcf31b2435c4162e87845de0e5b5988aa99e521b342ba68f35564:log:73', 'hash': '0xebd56568e40dcf31b2435c4162e87845de0e5b5988aa99e521b342ba68f35564', 'from': '0x8e880173e29372f73cd3b27aebd771ca1d1f361c', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 23.43338695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0145341d468f063c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0x37df0c973895c497df728b5a38b9e4803bc5db6a7f1c129e1e9191af470913a9:log:74', 'hash': '0x37df0c973895c497df728b5a38b9e4803bc5db6a7f1c129e1e9191af470913a9', 'from': '0xb21b5743352a2f065c7c4c42e2e28d86b53bb4d2', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 56.5559409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0310df109a327c6800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0x2d4e535f46d37b3a6c1aaa9c858dde922972dcea71063f6e49727fdd36691f4f:log:75', 'hash': '0x2d4e535f46d37b3a6c1aaa9c858dde922972dcea71063f6e49727fdd36691f4f', 'from': '0xc896168e717ed05ed3a5fd8a60c0a5c74dba0976', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 42.63589344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x024fb11f30649b8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0xac114612f47a31f0f83defc9240b5a92760894f26851c9a3c4817f7919a17d2b:log:76', 'hash': '0xac114612f47a31f0f83defc9240b5a92760894f26851c9a3c4817f7919a17d2b', 'from': '0xeeb3841d1c6d030288506fa2ee5b4ce4a72047b6', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0x7672f24b23d354964e97b0bf7bf3ae020a7f80609a84a54859dc7053b240fbcf:log:77', 'hash': '0x7672f24b23d354964e97b0bf7bf3ae020a7f80609a84a54859dc7053b240fbcf', 'from': '0xc5ade0d4e7bea5c00261def24b99f20227e67230', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 999.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc38a941c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0xe383569c36843fb63b1d830d78206ac38a3b57d364874238a53c3d3aa8aea44a:log:78', 'hash': '0xe383569c36843fb63b1d830d78206ac38a3b57d364874238a53c3d3aa8aea44a', 'from': '0x0b7148f348e6a063a0ffac9a0a330e36564d81c4', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0x63a2e72c2228d3dc656622ee404451b43a005fca1f4835c6a440a037f03f332c:log:79', 'hash': '0x63a2e72c2228d3dc656622ee404451b43a005fca1f4835c6a440a037f03f332c', 'from': '0xfe5e36f757607bdff2add83d40e1265659b853aa', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0xc8def6666691787ee2381112c0a63f21fe4969db69b086e2eea1fc10eb881c60:log:82', 'hash': '0xc8def6666691787ee2381112c0a63f21fe4969db69b086e2eea1fc10eb881c60', 'from': '0x3683792624a0501a75110420dfd5c84843282ef9', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x878678326eac900000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0x09ac6406c9caceeb2bca1a1995fbe16c6851a63cdf18b006b9bbfdfc9253866f:log:83', 'hash': '0x09ac6406c9caceeb2bca1a1995fbe16c6851a63cdf18b006b9bbfdfc9253866f', 'from': '0xe292179292d57304e2c13e9c6049842c8124c257', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 299.20966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x10385e407d4167c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0x73333c32b63563c01d94a1df471a424358fe9c5d8ad8cd49bba32c051c816cef:log:84', 'hash': '0x73333c32b63563c01d94a1df471a424358fe9c5d8ad8cd49bba32c051c816cef', 'from': '0x914158815a41c31c6d011d268b5cf1c65b2a5d53', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 13.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xb6e8c42b5ba60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0xb4d57dd994e13b8001cd8ef321cba66f5fa54b5f22855ee7e9d95ef7c0e162e3:log:85', 'hash': '0xb4d57dd994e13b8001cd8ef321cba66f5fa54b5f22855ee7e9d95ef7c0e162e3', 'from': '0xaab81f78fed546507fca6d76463e9fb9263d3386', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 58.82855328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0330690185688a8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0xf288a0a6b6db9c8f4e5ed7dc018ae328333ba0caecd07a718e9f0f4f1d1a2f87:log:86', 'hash': '0xf288a0a6b6db9c8f4e5ed7dc018ae328333ba0caecd07a718e9f0f4f1d1a2f87', 'from': '0x2c558203f4931c566e9f8af4b1b47775f58d7fd2', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 86.93057175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04b6676e6dc05b7c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0xbce682f1658d17b15bf28616391f84677540a807b699b59b8f1e3095243d0350:log:87', 'hash': '0xbce682f1658d17b15bf28616391f84677540a807b699b59b8f1e3095243d0350', 'from': '0x0a57f44f04f9e2fdecfe8fb31bdbeaa733491398', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01158e460913d00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0x21e93d71e1a0c69277a349bc92775e539f7c5d8c9c918be7366a615a5c643a71:log:88', 'hash': '0x21e93d71e1a0c69277a349bc92775e539f7c5d8c9c918be7366a615a5c643a71', 'from': '0x000c27f1297860a52a84ca41dc4991de8533a6e6', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x50fd6a3c72e1980000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444f4', 'uniqueId': '0x09cb7d174ed818767c6f28b587f4f10c844806e01e22644bafea2c8494ca0a28:log:84', 'hash': '0x09cb7d174ed818767c6f28b587f4f10c844806e01e22644bafea2c8494ca0a28', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 32.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01c1a3ec5662a80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:11:08.000Z'}}, {'blockNum': '0x8444f5', 'uniqueId': '0xf6b678e6429790a66066a23d9fec2c9c39db5c9091df14e6ccfd677bfb01581f:log:24', 'hash': '0xf6b678e6429790a66066a23d9fec2c9c39db5c9091df14e6ccfd677bfb01581f', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x56edbb942d15dc6532cdc2cdb4e8342b47a51525', 'value': 24.94483793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x015a2dddef15572400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:11:19.000Z'}}, {'blockNum': '0x844593', 'uniqueId': '0x0a47fdd52a0765897397935af25e2bb2569662d06f33210dd985d804b55011dd:log:86', 'hash': '0x0a47fdd52a0765897397935af25e2bb2569662d06f33210dd985d804b55011dd', 'from': '0xbce023ac4557ea3832351cbfe2a957e2bba033e6', 'to': '0x6a943f731c29685a279400ae20bdbf73e1136d1e', 'value': 43.9552944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x026200935f25b78000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:53:27.000Z'}}, {'blockNum': '0x84475c', 'uniqueId': '0xcdb53ad41632c3c4e12e010f1fea26a56dcbb0cc0423e5808203d0a9afaa58f5:log:52', 'hash': '0xcdb53ad41632c3c4e12e010f1fea26a56dcbb0cc0423e5808203d0a9afaa58f5', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xdcf9bcf5913d261535571f8dd58258eb611887d6', 'value': 2.63693547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x249846d6c0fa4c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T11:49:51.000Z'}}, {'blockNum': '0x8447ae', 'uniqueId': '0xa4e16006e3409624260652eef156d2c09968fa5df4d7c5d6aa1ded3981c8ee98:log:176', 'hash': '0xa4e16006e3409624260652eef156d2c09968fa5df4d7c5d6aa1ded3981c8ee98', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 137.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x077432217e68360000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T12:12:05.000Z'}}, {'blockNum': '0x8447b0', 'uniqueId': '0x4f751064861f69913ab39622a8e68ac53e7fa5d50e37301d99e48ea1b46ab3ab:log:9', 'hash': '0x4f751064861f69913ab39622a8e68ac53e7fa5d50e37301d99e48ea1b46ab3ab', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xdcf9bcf5913d261535571f8dd58258eb611887d6', 'value': 105.82590466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05bca123993da7c800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T12:12:14.000Z'}}, {'blockNum': '0x8447b0', 'uniqueId': '0x7781a264b8c69f23fec509727a7c75919858d917c0328a1df24d066e4ecc2c2b:log:210', 'hash': '0x7781a264b8c69f23fec509727a7c75919858d917c0328a1df24d066e4ecc2c2b', 'from': '0xdd578da44c9c4bfc96d54ef321eb1e53f0721df3', 'to': '0x01293a8fc946cd68cb50b22b81d6813da3c4fc76', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T12:12:14.000Z'}}, {'blockNum': '0x8447e5', 'uniqueId': '0x16e80cf0d2efcc79e93fe94441a64ed5ccc03ee443221a366a51b0d4386732b7:log:97', 'hash': '0x16e80cf0d2efcc79e93fe94441a64ed5ccc03ee443221a366a51b0d4386732b7', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 136.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x076bde80ac36fa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T12:21:18.000Z'}}, {'blockNum': '0x8447e7', 'uniqueId': '0x6e40c3ce6bb33dcd2fc92f166d2017c9da1e6721e13e50cefd8a835952437a70:log:42', 'hash': '0x6e40c3ce6bb33dcd2fc92f166d2017c9da1e6721e13e50cefd8a835952437a70', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5a400fce1b5dd983c7a0d1fe3ced446bec8155fa', 'value': 105.37541616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05b660aeb1d3c1c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T12:22:05.000Z'}}, {'blockNum': '0x84485b', 'uniqueId': '0xbb3234f089eb8d242a19f78e269ade0d69b3a04d24debfd07091e3a15bc38c02:log:163', 'hash': '0xbb3234f089eb8d242a19f78e269ade0d69b3a04d24debfd07091e3a15bc38c02', 'from': '0xc24f18869d9d42133b627bfde6151dc611ae4d88', 'to': '0x9ae77dd88012997f0a1f6ec0588d39ab0eb7134b', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T12:46:40.000Z'}}, {'blockNum': '0x844927', 'uniqueId': '0xcb8842dfded6c489db6d169d212982ccd8e951d1db3d700a6ebf2ec0e59c5f53:log:57', 'hash': '0xcb8842dfded6c489db6d169d212982ccd8e951d1db3d700a6ebf2ec0e59c5f53', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x33117285d6f6cbd1a3892d2cbc14f05bfacbe545', 'value': 28.38449447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0189e9fb553d63bc00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T13:31:40.000Z'}}, {'blockNum': '0x844a3d', 'uniqueId': '0x2a392c44a3b418ce6b7f49263b90e5d0efeb013683f3a03176c0e61c0bdb5bf7:log:77', 'hash': '0x2a392c44a3b418ce6b7f49263b90e5d0efeb013683f3a03176c0e61c0bdb5bf7', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 355.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x134854416bae720000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T14:26:45.000Z'}}, {'blockNum': '0x844a3f', 'uniqueId': '0x7cccbe48b83ac6bd1ae16e68c79e75a923f1851aa731646ef04d45183c126b62:log:58', 'hash': '0x7cccbe48b83ac6bd1ae16e68c79e75a923f1851aa731646ef04d45183c126b62', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2346e5124f5632fbd19c90979e8d4b8c600b54bc', 'value': 139.69340777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0792a2ae3d4aa48400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T14:27:28.000Z'}}, {'blockNum': '0x844a3f', 'uniqueId': '0xd8823b9532856dc492f0167176fbed8d133317d0042450c672725387cfbed1a7:log:59', 'hash': '0xd8823b9532856dc492f0167176fbed8d133317d0042450c672725387cfbed1a7', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xdcf9bcf5913d261535571f8dd58258eb611887d6', 'value': 133.97289065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x07433f523a35808400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T14:27:28.000Z'}}, {'blockNum': '0x844a4e', 'uniqueId': '0xca872f914e9151f1c78a430e76297d194defd7a3ca69fbc13458805d9afb5930:log:196', 'hash': '0xca872f914e9151f1c78a430e76297d194defd7a3ca69fbc13458805d9afb5930', 'from': '0x4daafb0a02b358044b47bbf0ecd295f8f33b3b40', 'to': '0xd9deb28f70cfefd512cfd3c32ce33f372c084f79', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T14:30:58.000Z'}}, {'blockNum': '0x844a9c', 'uniqueId': '0x88603713c013b560daca4e7798e42e61bfa98a54ea41cb11510d79c5ddf90541:log:68', 'hash': '0x88603713c013b560daca4e7798e42e61bfa98a54ea41cb11510d79c5ddf90541', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2346e5124f5632fbd19c90979e8d4b8c600b54bc', 'value': 70.74140794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03d5bbf7b7a6b2a800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T14:49:29.000Z'}}, {'blockNum': '0x844aa6', 'uniqueId': '0x7893c4911edc20c5dd027d9704cb574eab6f71c48efa9a0a6dc1d91890223163:log:89', 'hash': '0x7893c4911edc20c5dd027d9704cb574eab6f71c48efa9a0a6dc1d91890223163', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 3900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xd36b5f58ea17700000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T14:51:15.000Z'}}, {'blockNum': '0x844aa7', 'uniqueId': '0xb144daae3712391ba9089f7362a9626b2f97a23e652ffea48a0cfcd3bd35cdeb:log:21', 'hash': '0xb144daae3712391ba9089f7362a9626b2f97a23e652ffea48a0cfcd3bd35cdeb', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T14:51:17.000Z'}}, {'blockNum': '0x844ac1', 'uniqueId': '0xe13d4fc7b918e65ee378ed556ab7616332a6fb2f7403d9802167aad83395fcdb:log:73', 'hash': '0xe13d4fc7b918e65ee378ed556ab7616332a6fb2f7403d9802167aad83395fcdb', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x10a629411109194563f447dd926edeb97f7fed92', 'value': 962.62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x342f093dd216860000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T14:57:36.000Z'}}, {'blockNum': '0x844acd', 'uniqueId': '0xc5b67e6e5f2f172c48ee1c18d74d65bcad9a23c20830d8bc0aba2b930d36cb0c:log:187', 'hash': '0xc5b67e6e5f2f172c48ee1c18d74d65bcad9a23c20830d8bc0aba2b930d36cb0c', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 796.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2b2c452c7df1180000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T15:01:10.000Z'}}, {'blockNum': '0x844acf', 'uniqueId': '0x0c9b52c96d15fa96713826c7f9b2be9a221790334ab6ee49542a239519ad584c:log:113', 'hash': '0x0c9b52c96d15fa96713826c7f9b2be9a221790334ab6ee49542a239519ad584c', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x10a629411109194563f447dd926edeb97f7fed92', 'value': 612.62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2135cf74333bce0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T15:02:14.000Z'}}, {'blockNum': '0x844af0', 'uniqueId': '0xadc924fab3d06aa34cc0c98e4f35d7c9910ef41a88383ec229a0568f4e5c1ff7:log:40', 'hash': '0xadc924fab3d06aa34cc0c98e4f35d7c9910ef41a88383ec229a0568f4e5c1ff7', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 3249.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xb02d6c2f4ab5fe0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T15:10:54.000Z'}}, {'blockNum': '0x844af1', 'uniqueId': '0xc59990885afe2468e8110b7148dfa62d2d32da308eb775fa57f5d1252dbfae71:log:62', 'hash': '0xc59990885afe2468e8110b7148dfa62d2d32da308eb775fa57f5d1252dbfae71', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5fb9485142ebc11153f0532de52ef28d5978eb23', 'value': 999.99970497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c8a171d846e400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T15:11:02.000Z'}}, {'blockNum': '0x844af1', 'uniqueId': '0x7a13ecd37e355f319aeb5af7614110d668a026871daefe1e1eed41ff3b65695f:log:63', 'hash': '0x7a13ecd37e355f319aeb5af7614110d668a026871daefe1e1eed41ff3b65695f', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5fb9485142ebc11153f0532de52ef28d5978eb23', 'value': 1499.99981308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5150addaa819bc7000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T15:11:02.000Z'}}, {'blockNum': '0x844c64', 'uniqueId': '0xd92f75eb7a56cd7e58d0d2df203438aacfddec7b90a14e3d239d56f1e0545004:log:19', 'hash': '0xd92f75eb7a56cd7e58d0d2df203438aacfddec7b90a14e3d239d56f1e0545004', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5fb9485142ebc11153f0532de52ef28d5978eb23', 'value': 99.06646631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x055ed2ca3b78c0bc00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T16:25:43.000Z'}}, {'blockNum': '0x844d0e', 'uniqueId': '0x365030c1382bd92327d66522b7be0fc3afed2bc1ca222a6e87abac094918a458:log:52', 'hash': '0x365030c1382bd92327d66522b7be0fc3afed2bc1ca222a6e87abac094918a458', 'from': '0x00bd59ebc3e5de4aa4885fd5d9538dc98399abec', 'to': '0x9fb75d2cab815e104151892d461aa956f1a4a1b6', 'value': 177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09985e5236bc240000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T17:02:07.000Z'}}, {'blockNum': '0x844e24', 'uniqueId': '0x848df1a256ee1a8fcf1139b70087ff98ddd9de894127ce245ca02e2e17250262:log:48', 'hash': '0x848df1a256ee1a8fcf1139b70087ff98ddd9de894127ce245ca02e2e17250262', 'from': '0xa2061074a9921fcfc0168ef91b58e69672462626', 'to': '0x4e51f98332cc598fe483b6016942d0f8ff3fe58c', 'value': 26800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05acd4b69783b4c00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:09:45.000Z'}}, {'blockNum': '0x844ede', 'uniqueId': '0x7f65a8a8baeea8c764e0dfd760ea9fd64d5223e708ddb251d41f45c2d5fd06d7:log:33', 'hash': '0x7f65a8a8baeea8c764e0dfd760ea9fd64d5223e708ddb251d41f45c2d5fd06d7', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 3045.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa51e5a9821524e0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:46:11.000Z'}}, {'blockNum': '0x844ef2', 'uniqueId': '0xe0c85d6622e17b1d6deb5fb74fb29b6be5fa4a0ead4c8503cbbee2a2acf26524:log:158', 'hash': '0xe0c85d6622e17b1d6deb5fb74fb29b6be5fa4a0ead4c8503cbbee2a2acf26524', 'from': '0x4e51f98332cc598fe483b6016942d0f8ff3fe58c', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 26800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05acd4b69783b4c00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:51:41.000Z'}}, {'blockNum': '0x844ef2', 'uniqueId': '0x675dec7d17bb6e00bd7d20d6aa6316a384a3c95bfd8d3bb53ae5570723eb7653:log:160', 'hash': '0x675dec7d17bb6e00bd7d20d6aa6316a384a3c95bfd8d3bb53ae5570723eb7653', 'from': '0x9fb75d2cab815e104151892d461aa956f1a4a1b6', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09985e5236bc240000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:51:41.000Z'}}, {'blockNum': '0x844ef2', 'uniqueId': '0xae1433b1e15bb0faa82f67403e963485fd0bba208397e756c8f39726f5be4336:log:162', 'hash': '0xae1433b1e15bb0faa82f67403e963485fd0bba208397e756c8f39726f5be4336', 'from': '0x01293a8fc946cd68cb50b22b81d6813da3c4fc76', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:51:41.000Z'}}, {'blockNum': '0x844ef2', 'uniqueId': '0xd365ff1484e91ac726784ebba85f76f7c80e1e7a2efae3ca46ba55d72c561384:log:163', 'hash': '0xd365ff1484e91ac726784ebba85f76f7c80e1e7a2efae3ca46ba55d72c561384', 'from': '0xb52f1bc65937a9af61ea1a7fd049eb66c2b85666', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 9.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x81103cb9fb220000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:51:41.000Z'}}, {'blockNum': '0x844ef2', 'uniqueId': '0x58dc3310feede14cb0ba5ec985fb44fac25abd2a5f6e2cc73c2abf286560b4a9:log:164', 'hash': '0x58dc3310feede14cb0ba5ec985fb44fac25abd2a5f6e2cc73c2abf286560b4a9', 'from': '0xa52ed041627cc409d3b65791d874df824c9faf8a', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 5.22, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x48712a57df8a0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:51:41.000Z'}}, {'blockNum': '0x844ef2', 'uniqueId': '0x87932fad8ac0bfdf3eec1ee7f9bcf816f797bd00cebee0c29b24015071854d57:log:165', 'hash': '0x87932fad8ac0bfdf3eec1ee7f9bcf816f797bd00cebee0c29b24015071854d57', 'from': '0xd9deb28f70cfefd512cfd3c32ce33f372c084f79', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:51:41.000Z'}}, {'blockNum': '0x844ef2', 'uniqueId': '0xf2b13eb322cddb0a9faf4ba88beb449d8fff196e420593643dc3d48184705ebf:log:166', 'hash': '0xf2b13eb322cddb0a9faf4ba88beb449d8fff196e420593643dc3d48184705ebf', 'from': '0x9ae77dd88012997f0a1f6ec0588d39ab0eb7134b', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:51:41.000Z'}}, {'blockNum': '0x844ef2', 'uniqueId': '0x3f2b2c01a9455cfffea4a915b80c2910ef9a5c85871224785233b9221d8fa5ef:log:169', 'hash': '0x3f2b2c01a9455cfffea4a915b80c2910ef9a5c85871224785233b9221d8fa5ef', 'from': '0x267bb1f15be137ac3d87442f3d32d988a718ed74', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 6.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5cfb2e807b1e0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:51:41.000Z'}}, {'blockNum': '0x844ef2', 'uniqueId': '0x0e2687d085a8e7c28147e0db805e1855b2e8b6655ef31a73ee04570859c0fb94:log:172', 'hash': '0x0e2687d085a8e7c28147e0db805e1855b2e8b6655ef31a73ee04570859c0fb94', 'from': '0xe2674bbe6ffececbc696523adf3a7ff73a886889', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 9.82466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x885834377afd4000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:51:41.000Z'}}, {'blockNum': '0x844ef2', 'uniqueId': '0xfa8872666062ca0b2b040f7a774dcefd82f64d643248a00a9be7a5f41cbcc456:log:176', 'hash': '0xfa8872666062ca0b2b040f7a774dcefd82f64d643248a00a9be7a5f41cbcc456', 'from': '0x6a943f731c29685a279400ae20bdbf73e1136d1e', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 43.9552944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x026200935f25b78000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:51:41.000Z'}}, {'blockNum': '0x844f3f', 'uniqueId': '0x7e0eb7c05188fa749407e2fbfb141133fb7c84b3f002803b75e87e745f6f1281:log:62', 'hash': '0x7e0eb7c05188fa749407e2fbfb141133fb7c84b3f002803b75e87e745f6f1281', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x043794e5ec3e4f021774022ea041a7723a495bbd', 'value': 999.99995527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c985175add3c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T19:06:34.000Z'}}, {'blockNum': '0x844f3f', 'uniqueId': '0xabf5c70c6178b4e4d53c2062dc23bf4e415e8975232949961912ea8ead2339d3:log:63', 'hash': '0xabf5c70c6178b4e4d53c2062dc23bf4e415e8975232949961912ea8ead2339d3', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xaff7c24a48ac16b80edf0cf88fcd0c823c1b4890', 'value': 1039.67328908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x385c5d83fe3b68b000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T19:06:34.000Z'}}, {'blockNum': '0x844f54', 'uniqueId': '0xde0406ecedd6d15145435b899b4db5e0a9e0ea4d2edf0a1f8babfa978cde641e:log:72', 'hash': '0xde0406ecedd6d15145435b899b4db5e0a9e0ea4d2edf0a1f8babfa978cde641e', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 29852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x065247b8bd5350f00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T19:11:48.000Z'}}, {'blockNum': '0x844f56', 'uniqueId': '0x205663f427e61ca5d00ed91d509b54cee0971dd69ff909ee765ba9c654c49ea6:log:30', 'hash': '0x205663f427e61ca5d00ed91d509b54cee0971dd69ff909ee765ba9c654c49ea6', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T19:12:19.000Z'}}, {'blockNum': '0x844fc4', 'uniqueId': '0x1262284779b7b2704f34eae98da8af597eccc174b86e522d39a827351705c2f0:log:28', 'hash': '0x1262284779b7b2704f34eae98da8af597eccc174b86e522d39a827351705c2f0', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x85d31b85ffc08ebc9b6111f5fe6ce05e353197f8', 'value': 34.77242807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01e2907b18f22bfc00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T19:35:43.000Z'}}, {'blockNum': '0x845016', 'uniqueId': '0x1e704597470813c39695d984ac1b5d91677dd01d14bd8a3d9958795d5e1b2d3f:log:82', 'hash': '0x1e704597470813c39695d984ac1b5d91677dd01d14bd8a3d9958795d5e1b2d3f', 'from': '0x19454a70538bfbdbd7abf3ac8d274d5cb2514056', 'to': '0xf415dbe0b2aaddb50c186209db8bcc9101a9037d', 'value': 6263.381731847007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x015389e1f44bd3cd6273', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T19:52:23.000Z'}}, {'blockNum': '0x84501a', 'uniqueId': '0x8a779c5414e2cab440c4f4fb02dddfe9f03462abc622a066e71d9819d9907edb:log:0', 'hash': '0x8a779c5414e2cab440c4f4fb02dddfe9f03462abc622a066e71d9819d9907edb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xee94448c7e4766299dc232743ad3d5d62a90dab3', 'value': 59995.07, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0cb456d9d97ef6d30000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T19:52:46.000Z'}}, {'blockNum': '0x845068', 'uniqueId': '0x919977d26ce2da5ec209f7159264a2af412aac9cce71c3bd23fc709eff9eaf48:log:13', 'hash': '0x919977d26ce2da5ec209f7159264a2af412aac9cce71c3bd23fc709eff9eaf48', 'from': '0xf415dbe0b2aaddb50c186209db8bcc9101a9037d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17923.440768209068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03cba1b5303a1ff19e5d', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T20:13:43.000Z'}}, {'blockNum': '0x8450a4', 'uniqueId': '0x474949ea388e577823399dbafb6f05c3886c23485db70ecbae73a798aaced81b:log:35', 'hash': '0x474949ea388e577823399dbafb6f05c3886c23485db70ecbae73a798aaced81b', 'from': '0x7a2660ae2b1adc9c3e77d10f658991b97eb2adfe', 'to': '0xe98f26297b633311e8435b6513935726d2a4d4dc', 'value': 126.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x06d760775d1e4c0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T20:29:50.000Z'}}, {'blockNum': '0x8450fc', 'uniqueId': '0x6bd33ee8a9d00ddadc8c83809d0430ea0cb47c14eed7cf2ab36b5635c5a6d50c:log:53', 'hash': '0x6bd33ee8a9d00ddadc8c83809d0430ea0cb47c14eed7cf2ab36b5635c5a6d50c', 'from': '0x5a400fce1b5dd983c7a0d1fe3ced446bec8155fa', 'to': '0x6decf2184b34c1065ab67e60675a8636e8eeb383', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x015af1d78b58c40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T20:50:16.000Z'}}, {'blockNum': '0x84522e', 'uniqueId': '0x233c0f8bf4d44673dfac610f11d1bdbe4ad2e5d6ee020b443537998b8b0d2f25:log:71', 'hash': '0x233c0f8bf4d44673dfac610f11d1bdbe4ad2e5d6ee020b443537998b8b0d2f25', 'from': '0xc0ebee30bdeb5c2a5ac005a7fb18e03c5a5a19ce', 'to': '0x835491157e14ec3a98c58692041c0232cd1631a6', 'value': 1002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x36518b1b2d2d680000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T22:01:38.000Z'}}, {'blockNum': '0x845243', 'uniqueId': '0x8f86972a7107ffbbab4bbb5f964d70d5afb0d947773fb917470905e1e073da15:log:29', 'hash': '0x8f86972a7107ffbbab4bbb5f964d70d5afb0d947773fb917470905e1e073da15', 'from': '0xdbbca21e12430d560729f98cdba479ee695e7ab4', 'to': '0x43a0fe792d38745575f624728070b20072208d2d', 'value': 0.22225521833071574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03159bf18a144659', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T22:07:24.000Z'}}, {'blockNum': '0x845272', 'uniqueId': '0xe6d862180b0cedee45b747cbc53c76ecded69c1b64f970ebb0b15ab3522f5550:log:77', 'hash': '0xe6d862180b0cedee45b747cbc53c76ecded69c1b64f970ebb0b15ab3522f5550', 'from': '0xdbbca21e12430d560729f98cdba479ee695e7ab4', 'to': '0x43a0fe792d38745575f624728070b20072208d2d', 'value': 0.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x016345785d8a0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T22:16:39.000Z'}}, {'blockNum': '0x8452ae', 'uniqueId': '0xaa26be407c334dac265c7035c81936421b5c6ee088d20eef4932fe40e041cc80:log:3', 'hash': '0xaa26be407c334dac265c7035c81936421b5c6ee088d20eef4932fe40e041cc80', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xdbf41c85535d746c760de92ddcfac182a3ec2975', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T22:31:22.000Z'}}, {'blockNum': '0x845350', 'uniqueId': '0x6389ea090e9975fc53c6a340daf571030bd258e765be83b8075c145c6ed6a7e3:log:75', 'hash': '0x6389ea090e9975fc53c6a340daf571030bd258e765be83b8075c145c6ed6a7e3', 'from': '0xcaacd0621a0629fb269ffbafd9c3bd3f44e590f2', 'to': '0xfa28bc827f2f04ba04d43e2492b4537061f470e0', 'value': 89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04d31f847531c40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T23:02:57.000Z'}}, {'blockNum': '0x84537e', 'uniqueId': '0xf27efb2d3336dd86f38c0ba2f76a469a053b6d133ddcc7d2da4b39aa96741be7:log:18', 'hash': '0xf27efb2d3336dd86f38c0ba2f76a469a053b6d133ddcc7d2da4b39aa96741be7', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2346e5124f5632fbd19c90979e8d4b8c600b54bc', 'value': 348.36876927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x12e2967dea0a5e1c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T23:13:45.000Z'}}, {'blockNum': '0x8453b2', 'uniqueId': '0x3cbf0425296b42c41d2b93f9e1f99384a55098ee9411d7f8231f2416e3a20f0b:log:77', 'hash': '0x3cbf0425296b42c41d2b93f9e1f99384a55098ee9411d7f8231f2416e3a20f0b', 'from': '0xec80cd72910315e6c35ca389e92e89302416d815', 'to': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T23:25:11.000Z'}}, {'blockNum': '0x8453c9', 'uniqueId': '0xe2dc3d0da9532db0379bc43b26c6281f04a05cb438942f0a70bc0a21dff08448:log:6', 'hash': '0xe2dc3d0da9532db0379bc43b26c6281f04a05cb438942f0a70bc0a21dff08448', 'from': '0xec80cd72910315e6c35ca389e92e89302416d815', 'to': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'value': 245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0d480ed9ef32b40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T23:29:40.000Z'}}]}}
Number of returned transfers: 85
Answer is complete
symbol PPT
group BPS
date 2018-01-03
hour 18:00
exchange binance
Name: 276, dtype: object
HERE
{'binance-smart-chain': '0xdf061250302e5ccae091b18ca2b45914d785f214'}
No contract for ethereum specified
Symbol: PPT, Contract: 0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a
Datetime timestamps: 2018-01-03 18:00:00 2018-01-03 06:00:00 2018-01-04 06:00:00
Unix timestamps: 1514955600.0 1515042000.0
Hex Block Numbers: 0x49f001 0x4a052e
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x49f002', 'uniqueId': '0x5804bba202e5db680060bf68a49e7fb69a96a6c2adfa76daba0cea3847f9381f:log:27', 'hash': '0x5804bba202e5db680060bf68a49e7fb69a96a6c2adfa76daba0cea3847f9381f', 'from': '0xbb130ce270ad8dda54601c0c360027b84c58806d', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2faf0800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:01:22.000Z'}}, {'blockNum': '0x49f006', 'uniqueId': '0x8e287e6ece51e8315c35b69ac193f2662ef0c9d0566883cb8d163c051e83a7c2:log:1', 'hash': '0x8e287e6ece51e8315c35b69ac193f2662ef0c9d0566883cb8d163c051e83a7c2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2166ff3d4f26b705e93a2b4cf13aa455576316bf', 'value': 0.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04c4b400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:02:40.000Z'}}, {'blockNum': '0x49f00d', 'uniqueId': '0xbb33fb43c3b80c0e92e38d4f4ab9840a738b4e51d9c779638e3bafab8a54921e:log:103', 'hash': '0xbb33fb43c3b80c0e92e38d4f4ab9840a738b4e51d9c779638e3bafab8a54921e', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'value': 29.90757511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2435687', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:04:48.000Z'}}, {'blockNum': '0x49f01f', 'uniqueId': '0x3213f04bf659a4cee5ff5c35284866d421fc9f17a36a1e82774a9809dd9e45ca:log:10', 'hash': '0x3213f04bf659a4cee5ff5c35284866d421fc9f17a36a1e82774a9809dd9e45ca', 'from': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'to': '0x103bc4755848c643fb4f139449fa62d474a445c1', 'value': 29.90757511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2435687', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:10:36.000Z'}}, {'blockNum': '0x49f020', 'uniqueId': '0xfa47366f680ba5bd281b5d9e89c57c561b3ece1b65568aada073d51fda8cf8be:log:58', 'hash': '0xfa47366f680ba5bd281b5d9e89c57c561b3ece1b65568aada073d51fda8cf8be', 'from': '0x15f3719e4d502c8720e6e6ac3d01ccc888ee6f1e', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:10:49.000Z'}}, {'blockNum': '0x49f021', 'uniqueId': '0x7574f94f13d23af81e207e82f449a4c3db6ffabf3021c3af1e05104bfed85c47:log:16', 'hash': '0x7574f94f13d23af81e207e82f449a4c3db6ffabf3021c3af1e05104bfed85c47', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x81c5082b616aebacb9f5ef8defca579260a2b5ec', 'value': 0.94885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05a7d488', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:11:03.000Z'}}, {'blockNum': '0x49f02e', 'uniqueId': '0x944e37758ff1ec9f356d5ce75dd7d7e89f9048b101f99beb47e8f1d67055e5ae:log:18', 'hash': '0x944e37758ff1ec9f356d5ce75dd7d7e89f9048b101f99beb47e8f1d67055e5ae', 'from': '0xbb130ce270ad8dda54601c0c360027b84c58806d', 'to': '0x1a29ac570af45cd2c9f612e10878b20ef555a175', 'value': 14.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x540ae480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:14:04.000Z'}}, {'blockNum': '0x49f03c', 'uniqueId': '0x8af1a5fff1c3387b6dae4fc7d865df6989a726e2e902ebd378ae24cccb002f02:log:13', 'hash': '0x8af1a5fff1c3387b6dae4fc7d865df6989a726e2e902ebd378ae24cccb002f02', 'from': '0xaba1b455b57f37c55741ce1346b754417191b50c', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 30.956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb8831b80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:16:52.000Z'}}, {'blockNum': '0x49f040', 'uniqueId': '0xccba8f2deec6ef2f9c341e5012e8f45539ea45f98df6978a4e1550cb6f842bc5:log:46', 'hash': '0xccba8f2deec6ef2f9c341e5012e8f45539ea45f98df6978a4e1550cb6f842bc5', 'from': '0x55162cace8a5ce7bd21062e0a04237f1a84d1d7a', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x59682f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:17:41.000Z'}}, {'blockNum': '0x49f047', 'uniqueId': '0x3b50997298991814123a00118dad456edb023e44b66535119654b07ccba18869:log:15', 'hash': '0x3b50997298991814123a00118dad456edb023e44b66535119654b07ccba18869', 'from': '0xbb130ce270ad8dda54601c0c360027b84c58806d', 'to': '0x1e7497c7634d73ddc188daf6c4328fb3c32f5e75', 'value': 17.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6ab13b80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:20:37.000Z'}}, {'blockNum': '0x49f04d', 'uniqueId': '0xe4c961a2e387f0c64b8d57720f76c97f102b97dfdc92a09ad9f64ff2d3dbf5d7:log:40', 'hash': '0xe4c961a2e387f0c64b8d57720f76c97f102b97dfdc92a09ad9f64ff2d3dbf5d7', 'from': '0x103bc4755848c643fb4f139449fa62d474a445c1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29.90757511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2435687', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:22:14.000Z'}}, {'blockNum': '0x49f061', 'uniqueId': '0x8c4d87d3184d3cd5cd3ac38f0727fe9879c51def43e53b827c9fa9b1f7a3eace:log:86', 'hash': '0x8c4d87d3184d3cd5cd3ac38f0727fe9879c51def43e53b827c9fa9b1f7a3eace', 'from': '0x6f9b7edc35252cbf4e8dcc8e20af0badd0b9180d', 'to': '0x75d3ff408df9ebad4898b9cafbc489fba019bebd', 'value': 39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe8754700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:27:06.000Z'}}, {'blockNum': '0x49f06e', 'uniqueId': '0x35c5b598b7c50af07522894920e78fa724e175698b1c2117ed3b70cef4868935:log:2', 'hash': '0x35c5b598b7c50af07522894920e78fa724e175698b1c2117ed3b70cef4868935', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2166ff3d4f26b705e93a2b4cf13aa455576316bf', 'value': 11.95683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4744acb8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:30:45.000Z'}}, {'blockNum': '0x49f071', 'uniqueId': '0x6fc1c16e0fb78df729d36bc4b2dcf27a106b1a2a4738d43fea499203d74fe0d9:log:33', 'hash': '0x6fc1c16e0fb78df729d36bc4b2dcf27a106b1a2a4738d43fea499203d74fe0d9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb35f8c45d5272f3f6ce4bb76ac5e31b68fc0e661', 'value': 184.69341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x044cdbc748', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:31:11.000Z'}}, {'blockNum': '0x49f07a', 'uniqueId': '0x705177bd941c5ea11181007a700f61e21dbf75a3e85b1cec631408595e76aa52:log:23', 'hash': '0x705177bd941c5ea11181007a700f61e21dbf75a3e85b1cec631408595e76aa52', 'from': '0x21d1e35248b16a20a87dd22c09c527c38bf6b464', 'to': '0xa138cf3d447f94e30573b0af7e46af844cb4f2e4', 'value': 13, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4d7c6d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:34:48.000Z'}}, {'blockNum': '0x49f07e', 'uniqueId': '0xaf6ac471104797c3efcd19cd847cc84a01da342b1c4c786b14e05ca9cf1cf6cf:log:44', 'hash': '0xaf6ac471104797c3efcd19cd847cc84a01da342b1c4c786b14e05ca9cf1cf6cf', 'from': '0xb303d7c66a29ca1a71f60530eff6a2377962a10e', 'to': '0x142e562c31941d170bac90debb01149b0944d336', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01bf08eb00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:35:56.000Z'}}, {'blockNum': '0x49f08c', 'uniqueId': '0xc961c4139fb2c7647f892752dc988a0dbab0130a2ddd00b3e8031666ae6f7542:log:78', 'hash': '0xc961c4139fb2c7647f892752dc988a0dbab0130a2ddd00b3e8031666ae6f7542', 'from': '0xa17fec5fbd2f08625c6d2cf9fc209f3f8437544f', 'to': '0x1e7497c7634d73ddc188daf6c4328fb3c32f5e75', 'value': 3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:42:02.000Z'}}, {'blockNum': '0x49f0a3', 'uniqueId': '0xbcd0146d67f4237f5c4ce3b19f11ce3bda7a6d4e51668d4d342d1c68feefb463:log:41', 'hash': '0xbcd0146d67f4237f5c4ce3b19f11ce3bda7a6d4e51668d4d342d1c68feefb463', 'from': '0x142e562c31941d170bac90debb01149b0944d336', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:48:52.000Z'}}, {'blockNum': '0x49f0b0', 'uniqueId': '0x06bd133094af561830deb1344f1bf5a20763a4e30f995dda1d0dd7a5f39c6c2c:log:56', 'hash': '0x06bd133094af561830deb1344f1bf5a20763a4e30f995dda1d0dd7a5f39c6c2c', 'from': '0xdc9bf16d827973a448a09a8251efb1ca0b8f0f05', 'to': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'value': 40, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xee6b2800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:52:46.000Z'}}, {'blockNum': '0x49f0b2', 'uniqueId': '0x9554c3b6f53e9261aad4395b806711af850d62254306e8360e56d70f8fb46c8a:log:55', 'hash': '0x9554c3b6f53e9261aad4395b806711af850d62254306e8360e56d70f8fb46c8a', 'from': '0x0b08c09f7e412b90656aaf90c56b70ac8c53113c', 'to': '0xe84d0e36f458c914604fa5df1b98f9b3ef3fd3c2', 'value': 91.92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0223e2ca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:53:16.000Z'}}, {'blockNum': '0x49f0c5', 'uniqueId': '0x18193b87cd7e9df225f7d5c4307caecef59d1f8f95c9dcb922269390474cd440:log:4', 'hash': '0x18193b87cd7e9df225f7d5c4307caecef59d1f8f95c9dcb922269390474cd440', 'from': '0xe84d0e36f458c914604fa5df1b98f9b3ef3fd3c2', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 91.92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0223e2ca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:57:23.000Z'}}, {'blockNum': '0x49f0c7', 'uniqueId': '0x7a976f1a84d3d6f6128276cc0c81b82fbbd019f4dc0909737efbc3e7fa92801b:log:35', 'hash': '0x7a976f1a84d3d6f6128276cc0c81b82fbbd019f4dc0909737efbc3e7fa92801b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc2af0c3b0a4c9f552f207c966fa8daf622b749ce', 'value': 1.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0754d4c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:57:57.000Z'}}, {'blockNum': '0x49f0cf', 'uniqueId': '0x5bb8ee7dee7dba5920089cb5925de006503521a2b748541d568cca0569fd127c:log:36', 'hash': '0x5bb8ee7dee7dba5920089cb5925de006503521a2b748541d568cca0569fd127c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0733bbe26d1d42dc4a6fdea01ac04a4712de0e2e', 'value': 547.63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0cc02110c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:59:34.000Z'}}, {'blockNum': '0x49f0d3', 'uniqueId': '0x4bebf8ffe608125aee23f16592d6b0bbe32de0116dd597674499dd8046777aac:log:23', 'hash': '0x4bebf8ffe608125aee23f16592d6b0bbe32de0116dd597674499dd8046777aac', 'from': '0x142e562c31941d170bac90debb01149b0944d336', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9502f900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:00:08.000Z'}}, {'blockNum': '0x49f0e6', 'uniqueId': '0xb084ed7696a9a965a245c12e5c1facdd7b931ead1e43fb92714319ed52a21d1f:log:1', 'hash': '0xb084ed7696a9a965a245c12e5c1facdd7b931ead1e43fb92714319ed52a21d1f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xe84d0e36f458c914604fa5df1b98f9b3ef3fd3c2', 'value': 91.92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0223e2ca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:05:56.000Z'}}, {'blockNum': '0x49f0ea', 'uniqueId': '0x7a3af794139171f231fb2c8af6cf08665716281820adb0c10c7ece581e2cdf73:log:6', 'hash': '0x7a3af794139171f231fb2c8af6cf08665716281820adb0c10c7ece581e2cdf73', 'from': '0xe84d0e36f458c914604fa5df1b98f9b3ef3fd3c2', 'to': '0x79f142bf32ad9d047ddbbf217280b6cf974e1963', 'value': 91.92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0223e2ca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:08:34.000Z'}}, {'blockNum': '0x49f0ef', 'uniqueId': '0x81be9c40ded65b4c5a0becf82f57d319a1831255e937a47ad8352f926d8c2b8b:log:44', 'hash': '0x81be9c40ded65b4c5a0becf82f57d319a1831255e937a47ad8352f926d8c2b8b', 'from': '0x5e0f8cb29e194af2ab131980feda68dc015d3f45', 'to': '0xf16756e9febfc8faa04763cadac6801c4f344231', 'value': 999.99974614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17487684d6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:09:24.000Z'}}, {'blockNum': '0x49f0f3', 'uniqueId': '0x83efdae9d6946f368415a43d74fec513033438c040c65175bcb47683b90402ab:log:6', 'hash': '0x83efdae9d6946f368415a43d74fec513033438c040c65175bcb47683b90402ab', 'from': '0x39ab9541b7c4f322366e22650d5c527333940178', 'to': '0x1a1df2dd5fe632e89edc1958232133fc89cfc258', 'value': 155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x039bdf3b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:10:38.000Z'}}, {'blockNum': '0x49f0f6', 'uniqueId': '0x0696d7d56a9b1621ba85892313551f744866f0927947af9850003d770029f3fc:log:47', 'hash': '0x0696d7d56a9b1621ba85892313551f744866f0927947af9850003d770029f3fc', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x88650fdbfbb5c7933eb52008c4387050b963747d', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17d78400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:11:41.000Z'}}, {'blockNum': '0x49f0fc', 'uniqueId': '0x7e5f049fe81dafed382cbe653a6157f6d381f1fb6feb1e02a863423b6874f384:log:4', 'hash': '0x7e5f049fe81dafed382cbe653a6157f6d381f1fb6feb1e02a863423b6874f384', 'from': '0x88650fdbfbb5c7933eb52008c4387050b963747d', 'to': '0xb9e65d6cf7f9f7cf7f66933a0f8c3d455ed77879', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17d78400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:13:18.000Z'}}, {'blockNum': '0x49f10b', 'uniqueId': '0xd4fc3e26a43e8a60c7b472ec350b1dd6589cd1d4c3897a6f76222348969c5630:log:60', 'hash': '0xd4fc3e26a43e8a60c7b472ec350b1dd6589cd1d4c3897a6f76222348969c5630', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x5e0f8cb29e194af2ab131980feda68dc015d3f45', 'value': 500.001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43cfaa0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:16:51.000Z'}}, {'blockNum': '0x49f10e', 'uniqueId': '0x30658c27d37982827c8946c2346179e5cd9db142c36a5c4bb683219abf91fa3f:log:17', 'hash': '0x30658c27d37982827c8946c2346179e5cd9db142c36a5c4bb683219abf91fa3f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xdd148e7f1fd7c2af4b8f9f8042de8932eeaf23f5', 'value': 97.37582144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x024467b640', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:17:47.000Z'}}, {'blockNum': '0x49f113', 'uniqueId': '0x3aafe414924b5ee6df17dffac5c00d6315910712d815bd3b5fab046393dc45c1:log:51', 'hash': '0x3aafe414924b5ee6df17dffac5c00d6315910712d815bd3b5fab046393dc45c1', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xebab905eca331718528f7dffbc9ccb303595e841', 'value': 0.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05f5e0ff', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:19:11.000Z'}}, {'blockNum': '0x49f118', 'uniqueId': '0x8a082977c2c04b5590e6796789b03b521ed43c8372777bbb0ec43abd89524852:log:33', 'hash': '0x8a082977c2c04b5590e6796789b03b521ed43c8372777bbb0ec43abd89524852', 'from': '0xf16756e9febfc8faa04763cadac6801c4f344231', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 999.99974614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17487684d6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:20:05.000Z'}}, {'blockNum': '0x49f118', 'uniqueId': '0x01af1bf63d104125a570ecb59e4f9927394758db104779dba819b061e31b94b3:log:34', 'hash': '0x01af1bf63d104125a570ecb59e4f9927394758db104779dba819b061e31b94b3', 'from': '0x79f142bf32ad9d047ddbbf217280b6cf974e1963', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 91.92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0223e2ca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:20:05.000Z'}}, {'blockNum': '0x49f118', 'uniqueId': '0xf3065d95bb81dcb64f518f5f0acf70516db15c86146b0886c08df31f6b622bc7:log:36', 'hash': '0xf3065d95bb81dcb64f518f5f0acf70516db15c86146b0886c08df31f6b622bc7', 'from': '0x1a1df2dd5fe632e89edc1958232133fc89cfc258', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03a1d51c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:20:05.000Z'}}, {'blockNum': '0x49f132', 'uniqueId': '0x792192b78a5648bcc172672674c7ce791af1df499f19da320582def43c48764c:log:3', 'hash': '0x792192b78a5648bcc172672674c7ce791af1df499f19da320582def43c48764c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa2b632690ebe5fd4d6725bd477d864788e862ce4', 'value': 251.548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05db57c980', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:27:42.000Z'}}, {'blockNum': '0x49f14e', 'uniqueId': '0x869921e626439ade62d112df935c7917199ef633527148da62244043d8d2ab13:log:41', 'hash': '0x869921e626439ade62d112df935c7917199ef633527148da62244043d8d2ab13', 'from': '0xa0b89b4e7c19de891faae5b0844da805877afd6d', 'to': '0xfe6e442acbed264e5e0154d44b58a45e73d2be19', 'value': 5060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x75cff34400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:35:23.000Z'}}, {'blockNum': '0x49f154', 'uniqueId': '0x26d255e58144d53937e265a7f3af149531bb0bad95c0d726f9e9e407da3375dc:log:53', 'hash': '0x26d255e58144d53937e265a7f3af149531bb0bad95c0d726f9e9e407da3375dc', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x96017f30b08173ac4ae6bb2d29779cfdaa891bb9', 'value': 2.00703412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0bf67db4', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:36:24.000Z'}}, {'blockNum': '0x49f15c', 'uniqueId': '0xa4461527491201eb9d90d19ed314eee33fdde0ec8e01c06105fc1f8c33597bf0:log:11', 'hash': '0xa4461527491201eb9d90d19ed314eee33fdde0ec8e01c06105fc1f8c33597bf0', 'from': '0xbaa4d8d03513d350be5fbed2ea2bbceece3526ec', 'to': '0xaa868750d255e23bb321acde46c62e462da62788', 'value': 402.364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x095e46bd80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:38:05.000Z'}}, {'blockNum': '0x49f18f', 'uniqueId': '0x64319cb5b1258271d7a7f1e12707b26f8e0008adf5e737c3ab483c2111bf00c3:log:10', 'hash': '0x64319cb5b1258271d7a7f1e12707b26f8e0008adf5e737c3ab483c2111bf00c3', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xf72615cae003e579593a489e0607479b6636058d', 'value': 3.69303778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x160320e2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:52:00.000Z'}}, {'blockNum': '0x49f19c', 'uniqueId': '0x2ae6af697656b9c2fc3f4d9adf77a3652ce985df08a2e464f3988cef01f00620:log:1', 'hash': '0x2ae6af697656b9c2fc3f4d9adf77a3652ce985df08a2e464f3988cef01f00620', 'from': '0xf72615cae003e579593a489e0607479b6636058d', 'to': '0x2df42ea8e3f5141cdfeea4ae9e9c967fe813aedc', 'value': 3.69303778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x160320e2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:54:02.000Z'}}, {'blockNum': '0x49f19c', 'uniqueId': '0x0df7187f9a17335d65ef0026f875ce161da4803808afece5e731dbdcd5be3e8c:log:29', 'hash': '0x0df7187f9a17335d65ef0026f875ce161da4803808afece5e731dbdcd5be3e8c', 'from': '0xff46eb0f9273221e214d2e64cfec072d160062b7', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:54:02.000Z'}}, {'blockNum': '0x49f1a5', 'uniqueId': '0xa5f91f662aab550de8cbc2134a506b135c2eb327f71fb658396d1060905ef55c:log:7', 'hash': '0xa5f91f662aab550de8cbc2134a506b135c2eb327f71fb658396d1060905ef55c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x916cc54c0a6c6151f80533298ea746d42e347e85', 'value': 1.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0aba9500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:56:00.000Z'}}, {'blockNum': '0x49f1a9', 'uniqueId': '0xca90b0bc8743998cf84aaef69c81bf31dffd6ad2116b33524724288fdcc34950:log:58', 'hash': '0xca90b0bc8743998cf84aaef69c81bf31dffd6ad2116b33524724288fdcc34950', 'from': '0x72b9c8cdae3dd50096a927b7820da2ef9e21939a', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:57:48.000Z'}}, {'blockNum': '0x49f1ac', 'uniqueId': '0x3ec8bf59e061e1ec358b0ce3e9a37fbb988f23bc72db993df39c5729f66d51c0:log:24', 'hash': '0x3ec8bf59e061e1ec358b0ce3e9a37fbb988f23bc72db993df39c5729f66d51c0', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x00dfd41164697f420639626e2ec2d775d5646b2a', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:58:07.000Z'}}, {'blockNum': '0x49f1b0', 'uniqueId': '0x72cd98aae2439a717de34691dcc06102d28bbd5a2e3703fb9940bceb8045b6ff:log:37', 'hash': '0x72cd98aae2439a717de34691dcc06102d28bbd5a2e3703fb9940bceb8045b6ff', 'from': '0x00dfd41164697f420639626e2ec2d775d5646b2a', 'to': '0x271fddc66ec8cadbe32362a2a95f15af33bf298a', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:59:25.000Z'}}, {'blockNum': '0x49f1bd', 'uniqueId': '0x81f20f86f87acefae42f871d4ff458345026eb5b093c76cc097623507673a94e:log:9', 'hash': '0x81f20f86f87acefae42f871d4ff458345026eb5b093c76cc097623507673a94e', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'value': 114.58784442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02aaff2cba', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:02:06.000Z'}}, {'blockNum': '0x49f1bd', 'uniqueId': '0x4301796a86fa61fab93ff25dfdf18ba1bfadca39a8e194ee7dac40f1b3ccb493:log:19', 'hash': '0x4301796a86fa61fab93ff25dfdf18ba1bfadca39a8e194ee7dac40f1b3ccb493', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x0b419bce1cb87adea84a913fa903593fb68d33b1', 'value': 31.868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbdf2b580', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:02:06.000Z'}}, {'blockNum': '0x49f1c4', 'uniqueId': '0x28b10acf62d7fcc8199d1ed45dc841221d2ed7b85ce3576a6a6681832935a4ef:log:33', 'hash': '0x28b10acf62d7fcc8199d1ed45dc841221d2ed7b85ce3576a6a6681832935a4ef', 'from': '0x0b419bce1cb87adea84a913fa903593fb68d33b1', 'to': '0x49a3e55eff6df39ac3d95de2ccbe3719d1be00b5', 'value': 31.868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbdf2b580', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:03:42.000Z'}}, {'blockNum': '0x49f1c6', 'uniqueId': '0xb58a4b3821adebf47737362493e6e1bdc34f3f45a4683421cedf0fe714b33a05:log:16', 'hash': '0xb58a4b3821adebf47737362493e6e1bdc34f3f45a4683421cedf0fe714b33a05', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x916cc54c0a6c6151f80533298ea746d42e347e85', 'value': 18.779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6fee7ae0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:04:50.000Z'}}, {'blockNum': '0x49f1d3', 'uniqueId': '0x7f2f00c0a65e5c49edc2eaa6a60981d16448f41727b3ebfe1c8edc54a8f27d92:log:11', 'hash': '0x7f2f00c0a65e5c49edc2eaa6a60981d16448f41727b3ebfe1c8edc54a8f27d92', 'from': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'to': '0x103bc4755848c643fb4f139449fa62d474a445c1', 'value': 114.58784442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02aaff2cba', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:08:50.000Z'}}, {'blockNum': '0x49f1d8', 'uniqueId': '0x4ab894b0d89edb22b32918a17c1b7b8cb9be3c5b9b5c4843c6dac3656e22e702:log:37', 'hash': '0x4ab894b0d89edb22b32918a17c1b7b8cb9be3c5b9b5c4843c6dac3656e22e702', 'from': '0x103bc4755848c643fb4f139449fa62d474a445c1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 114.58784442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02aaff2cba', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:10:02.000Z'}}, {'blockNum': '0x49f1dd', 'uniqueId': '0x854400baffe1764aef9dc3f3158ed8bc810ceaffeb4c5d83e4d12ce234819e03:log:79', 'hash': '0x854400baffe1764aef9dc3f3158ed8bc810ceaffeb4c5d83e4d12ce234819e03', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x36555ff874c73e80564335146ece83dfb13794e2', 'value': 146.48769701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0369227ca5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:10:56.000Z'}}, {'blockNum': '0x49f1df', 'uniqueId': '0x7dfe2db923c63fd11ce517b3e74252b3ab6bb9f0dcb7f1173f312aaaf0393d89:log:63', 'hash': '0x7dfe2db923c63fd11ce517b3e74252b3ab6bb9f0dcb7f1173f312aaaf0393d89', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x0b419bce1cb87adea84a913fa903593fb68d33b1', 'value': 16.871, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x648f1a60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:11:39.000Z'}}, {'blockNum': '0x49f1e2', 'uniqueId': '0x4a3a7cc59222bcef91122d1518ad78d4de2c66659f0ba7a8868b2efa7c682098:log:54', 'hash': '0x4a3a7cc59222bcef91122d1518ad78d4de2c66659f0ba7a8868b2efa7c682098', 'from': '0x0b419bce1cb87adea84a913fa903593fb68d33b1', 'to': '0x49a3e55eff6df39ac3d95de2ccbe3719d1be00b5', 'value': 16.871, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x648f1a60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:12:27.000Z'}}, {'blockNum': '0x49f1ec', 'uniqueId': '0x28dec3ccdc8d851168992af7eb51d114291b679c9609ba9fb9f9171ffc7a4693:log:2', 'hash': '0x28dec3ccdc8d851168992af7eb51d114291b679c9609ba9fb9f9171ffc7a4693', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x674eca39e2fb1025c61e6588bfa0d80c8a23b1b5', 'value': 9.79, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a5a5ac0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:14:13.000Z'}}, {'blockNum': '0x49f1fb', 'uniqueId': '0x69f9d12c45ee02e0fdbb16778fdddb2385e24236506a2602a4aae76f5e7f1746:log:18', 'hash': '0x69f9d12c45ee02e0fdbb16778fdddb2385e24236506a2602a4aae76f5e7f1746', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x435826e998110ebcfe445ea2edbf494966def8a1', 'value': 15.76402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5df5fc50', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:19:13.000Z'}}, {'blockNum': '0x49f202', 'uniqueId': '0x3f65d5edb4a756a810ff34b09cbcf3a10078e9e1f3196457daf14079fb5cf50d:log:34', 'hash': '0x3f65d5edb4a756a810ff34b09cbcf3a10078e9e1f3196457daf14079fb5cf50d', 'from': '0x49a3e55eff6df39ac3d95de2ccbe3719d1be00b5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 65.813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018846ab20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:20:09.000Z'}}, {'blockNum': '0x49f204', 'uniqueId': '0x4bfa332d94148306542426464663ac7af5eabd6b6174b4837a25bf0d3cabbc8b:log:38', 'hash': '0x4bfa332d94148306542426464663ac7af5eabd6b6174b4837a25bf0d3cabbc8b', 'from': '0x36555ff874c73e80564335146ece83dfb13794e2', 'to': '0x5edc26e36f020326ef1d81a60be0259944320c61', 'value': 146.48769701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0369227ca5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:20:41.000Z'}}, {'blockNum': '0x49f20a', 'uniqueId': '0xaa16d962daca42f7c86b40057521bf6551ce3d2ad54afecb1645ac2a4f84c41d:log:25', 'hash': '0xaa16d962daca42f7c86b40057521bf6551ce3d2ad54afecb1645ac2a4f84c41d', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'value': 56.94404301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x015369b6cd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:22:20.000Z'}}, {'blockNum': '0x49f21a', 'uniqueId': '0x559fd1e716bcae379abb8ad7c8bd22b4deb8b6823e3d0c9f50f65718fc904061:log:68', 'hash': '0x559fd1e716bcae379abb8ad7c8bd22b4deb8b6823e3d0c9f50f65718fc904061', 'from': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'to': '0x103bc4755848c643fb4f139449fa62d474a445c1', 'value': 56.94404301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x015369b6cd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:26:45.000Z'}}, {'blockNum': '0x49f220', 'uniqueId': '0x18dd362e2286444c6e2636250e1494f5c4d9bbbae2699a3475a6f968fb5ffe82:log:10', 'hash': '0x18dd362e2286444c6e2636250e1494f5c4d9bbbae2699a3475a6f968fb5ffe82', 'from': '0x323af10790d4a37d3fc7658d0401747fc02c8874', 'to': '0x6c59f1041f43ff70f0d07a1dc19b4956a302c8d3', 'value': 265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x062b85e900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:28:11.000Z'}}, {'blockNum': '0x49f220', 'uniqueId': '0x792e4f0bfdad9a661f377499bcb377a6f3df105dfea92ab48d9aeb19aaeb2ae9:log:25', 'hash': '0x792e4f0bfdad9a661f377499bcb377a6f3df105dfea92ab48d9aeb19aaeb2ae9', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xf9bb806edbf0059cf74c48805ccda77009ea2fea', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:28:11.000Z'}}, {'blockNum': '0x49f228', 'uniqueId': '0xfb3e4dff7e5e016c6d439b977835d7ac4a6258d0a92dc3195575be174a61051d:log:88', 'hash': '0xfb3e4dff7e5e016c6d439b977835d7ac4a6258d0a92dc3195575be174a61051d', 'from': '0x5edc26e36f020326ef1d81a60be0259944320c61', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 146.48769701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0369227ca5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:30:05.000Z'}}, {'blockNum': '0x49f229', 'uniqueId': '0xb859bcc3b3ac52778d89ee75c974cd9c9d2ee42a5f6a7a90b96d34faf3f39749:log:77', 'hash': '0xb859bcc3b3ac52778d89ee75c974cd9c9d2ee42a5f6a7a90b96d34faf3f39749', 'from': '0x103bc4755848c643fb4f139449fa62d474a445c1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56.94404301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x015369b6cd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:31:14.000Z'}}, {'blockNum': '0x49f22b', 'uniqueId': '0x56c313f94f9abd776943b8044dd906b361984f88124183c7a49491d7aed56a43:log:39', 'hash': '0x56c313f94f9abd776943b8044dd906b361984f88124183c7a49491d7aed56a43', 'from': '0x6c59f1041f43ff70f0d07a1dc19b4956a302c8d3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x062b85e900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:32:09.000Z'}}, {'blockNum': '0x49f243', 'uniqueId': '0xfe92dcb4255344e3b951aa1b3e9b8e50c24e3a73a01261b4afcc16cd0bf3f954:log:56', 'hash': '0xfe92dcb4255344e3b951aa1b3e9b8e50c24e3a73a01261b4afcc16cd0bf3f954', 'from': '0xf9bb806edbf0059cf74c48805ccda77009ea2fea', 'to': '0xf3c5299352184a83e85e7df3e3dd03e36fd88c1d', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:38:06.000Z'}}, {'blockNum': '0x49f250', 'uniqueId': '0x8d9d7ed5485caf921b821fca71be7170687d971becef66464f78e831ae98bd2e:log:14', 'hash': '0x8d9d7ed5485caf921b821fca71be7170687d971becef66464f78e831ae98bd2e', 'from': '0xf3c5299352184a83e85e7df3e3dd03e36fd88c1d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:40:07.000Z'}}, {'blockNum': '0x49f25b', 'uniqueId': '0x3705f4752d262cb0157b68322836396c320bb98a1fe540eb9b441960fae9b32d:log:57', 'hash': '0x3705f4752d262cb0157b68322836396c320bb98a1fe540eb9b441960fae9b32d', 'from': '0x67c5ea88b62ee88f03ca09dd9714d6cda1beaada', 'to': '0xa33c1af148a514018efa8dedf3824505d77947fe', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:42:38.000Z'}}, {'blockNum': '0x49f273', 'uniqueId': '0xdda114f2612d82482d5edd1dbc89623fcdd563054a907e672118877bdc3d1984:log:28', 'hash': '0xdda114f2612d82482d5edd1dbc89623fcdd563054a907e672118877bdc3d1984', 'from': '0xdd148e7f1fd7c2af4b8f9f8042de8932eeaf23f5', 'to': '0x185ff98350dfc911048d4a61391717e464774f54', 'value': 97.37582144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x024467b640', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:50:03.000Z'}}, {'blockNum': '0x49f278', 'uniqueId': '0xa11659d9ee1b00d87e9e20a8ce453de080007a48f51290eb6d2103e8c6113f12:log:68', 'hash': '0xa11659d9ee1b00d87e9e20a8ce453de080007a48f51290eb6d2103e8c6113f12', 'from': '0xf46fb3a5052ab45b51f64e2672a8ccd6154349d6', 'to': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'value': 0.29153445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01bcd8a5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:52:28.000Z'}}, {'blockNum': '0x49f278', 'uniqueId': '0xa11659d9ee1b00d87e9e20a8ce453de080007a48f51290eb6d2103e8c6113f12:log:70', 'hash': '0xa11659d9ee1b00d87e9e20a8ce453de080007a48f51290eb6d2103e8c6113f12', 'from': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 0.29153445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01bcd8a5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:52:28.000Z'}}, {'blockNum': '0x49f291', 'uniqueId': '0xfb187cd83365953ee45e9117dbf37775b741ba934fe5d486862219eb43599e92:log:10', 'hash': '0xfb187cd83365953ee45e9117dbf37775b741ba934fe5d486862219eb43599e92', 'from': '0xa33c1af148a514018efa8dedf3824505d77947fe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9af8da00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:00:33.000Z'}}, {'blockNum': '0x49f297', 'uniqueId': '0xbfa199613721fec473259459c054399679b00fbb47e9e6c59879ab0980c199ab:log:86', 'hash': '0xbfa199613721fec473259459c054399679b00fbb47e9e6c59879ab0980c199ab', 'from': '0xf46fb3a5052ab45b51f64e2672a8ccd6154349d6', 'to': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'value': 0.29323793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01bf7211', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:02:38.000Z'}}, {'blockNum': '0x49f297', 'uniqueId': '0xbfa199613721fec473259459c054399679b00fbb47e9e6c59879ab0980c199ab:log:88', 'hash': '0xbfa199613721fec473259459c054399679b00fbb47e9e6c59879ab0980c199ab', 'from': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 0.29323793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01bf7211', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:02:38.000Z'}}, {'blockNum': '0x49f29d', 'uniqueId': '0xddd5f044b9c7403c66499a62ad3787dd98043558f66bff087945b4e196cc6cf9:log:23', 'hash': '0xddd5f044b9c7403c66499a62ad3787dd98043558f66bff087945b4e196cc6cf9', 'from': '0x271fddc66ec8cadbe32362a2a95f15af33bf298a', 'to': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:03:21.000Z'}}, {'blockNum': '0x49f29f', 'uniqueId': '0x3704041d363688930e7f90a43b278f326eb42f949f8902b197abde6ad08a7c7b:log:14', 'hash': '0x3704041d363688930e7f90a43b278f326eb42f949f8902b197abde6ad08a7c7b', 'from': '0xee7627f4f08574fd8330dd25404852fdd8b2f86f', 'to': '0xea0ce225a188c59f66cc9acc223190eca868c5ed', 'value': 7.23535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2b204498', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:03:48.000Z'}}, {'blockNum': '0x49f2ad', 'uniqueId': '0x66fd7f2ff0c181d2c76bdbcc5fd0c65dde00212ea12d9d66448f30759ebc1cdf:log:76', 'hash': '0x66fd7f2ff0c181d2c76bdbcc5fd0c65dde00212ea12d9d66448f30759ebc1cdf', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xc44d85575607a609c1d7f49819754722ca0bbc97', 'value': 0.98454791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05de4d07', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:06:47.000Z'}}, {'blockNum': '0x49f2af', 'uniqueId': '0xeda28e1c86ce63eab68b92f512ea2633c84f6b8a427220b27ae24466a9f45368:log:23', 'hash': '0xeda28e1c86ce63eab68b92f512ea2633c84f6b8a427220b27ae24466a9f45368', 'from': '0xb9b9d20594bc8c2399747cf9752b8aff4473234e', 'to': '0x166eef4cc8e46e448e07c8159e53f1a4251380ef', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:07:31.000Z'}}, {'blockNum': '0x49f2c6', 'uniqueId': '0xaf4e8f7e8a70f7f47706a15cd8f325c9e4bfe0363e78a516e85301121a175f7f:log:61', 'hash': '0xaf4e8f7e8a70f7f47706a15cd8f325c9e4bfe0363e78a516e85301121a175f7f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'value': 0.14955136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe43280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:14:32.000Z'}}, {'blockNum': '0x49f2c6', 'uniqueId': '0xaf4e8f7e8a70f7f47706a15cd8f325c9e4bfe0363e78a516e85301121a175f7f:log:63', 'hash': '0xaf4e8f7e8a70f7f47706a15cd8f325c9e4bfe0363e78a516e85301121a175f7f', 'from': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'to': '0xf46fb3a5052ab45b51f64e2672a8ccd6154349d6', 'value': 0.14955136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe43280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:14:32.000Z'}}, {'blockNum': '0x49f2c6', 'uniqueId': '0x894f2426cc2b7cf9ff0ccf18161792b21523627482581c34b2e97fcb1887d2a6:log:68', 'hash': '0x894f2426cc2b7cf9ff0ccf18161792b21523627482581c34b2e97fcb1887d2a6', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'value': 0.07896303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x787cef', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:14:32.000Z'}}, {'blockNum': '0x49f2c6', 'uniqueId': '0x894f2426cc2b7cf9ff0ccf18161792b21523627482581c34b2e97fcb1887d2a6:log:70', 'hash': '0x894f2426cc2b7cf9ff0ccf18161792b21523627482581c34b2e97fcb1887d2a6', 'from': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'to': '0xf46fb3a5052ab45b51f64e2672a8ccd6154349d6', 'value': 0.07896303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x787cef', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:14:32.000Z'}}, {'blockNum': '0x49f2c6', 'uniqueId': '0x6b0f7203175baba7dcba619ece5bc627733e8d16ce585d58ba24282519d80b34:log:75', 'hash': '0x6b0f7203175baba7dcba619ece5bc627733e8d16ce585d58ba24282519d80b34', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'value': 0.22816976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x015c28d0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:14:32.000Z'}}, {'blockNum': '0x49f2c6', 'uniqueId': '0x6b0f7203175baba7dcba619ece5bc627733e8d16ce585d58ba24282519d80b34:log:77', 'hash': '0x6b0f7203175baba7dcba619ece5bc627733e8d16ce585d58ba24282519d80b34', 'from': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'to': '0xf46fb3a5052ab45b51f64e2672a8ccd6154349d6', 'value': 0.22816976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x015c28d0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:14:32.000Z'}}, {'blockNum': '0x49f2c6', 'uniqueId': '0x949fd80f60eba4b87cb329dd2226e12df8085b11cd89f6a709e4890f98c38a06:log:82', 'hash': '0x949fd80f60eba4b87cb329dd2226e12df8085b11cd89f6a709e4890f98c38a06', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'value': 2.39391882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e44d48a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:14:32.000Z'}}, {'blockNum': '0x49f2c6', 'uniqueId': '0x949fd80f60eba4b87cb329dd2226e12df8085b11cd89f6a709e4890f98c38a06:log:84', 'hash': '0x949fd80f60eba4b87cb329dd2226e12df8085b11cd89f6a709e4890f98c38a06', 'from': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'to': '0xf46fb3a5052ab45b51f64e2672a8ccd6154349d6', 'value': 2.39391882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e44d48a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:14:32.000Z'}}, {'blockNum': '0x49f2d0', 'uniqueId': '0xb076f8c04da2881787a81e76f8dd6fc7f380c108b552c63f61c68e809bd3302f:log:26', 'hash': '0xb076f8c04da2881787a81e76f8dd6fc7f380c108b552c63f61c68e809bd3302f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'value': 2.84064973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10ee7ccd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:19:18.000Z'}}, {'blockNum': '0x49f2d0', 'uniqueId': '0xb076f8c04da2881787a81e76f8dd6fc7f380c108b552c63f61c68e809bd3302f:log:28', 'hash': '0xb076f8c04da2881787a81e76f8dd6fc7f380c108b552c63f61c68e809bd3302f', 'from': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'to': '0xf46fb3a5052ab45b51f64e2672a8ccd6154349d6', 'value': 2.84064973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10ee7ccd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:19:18.000Z'}}, {'blockNum': '0x49f2d1', 'uniqueId': '0x1fa594f6a66f6fe92e9529f9da8ead91cedcc20e1cc42cfdc5994008ffd3586a:log:39', 'hash': '0x1fa594f6a66f6fe92e9529f9da8ead91cedcc20e1cc42cfdc5994008ffd3586a', 'from': '0x56656b6c9c6a608214ea405fe642dc33edb8da3f', 'to': '0x1f17c980b30ee232e2264c19e273715021081ff3', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:19:23.000Z'}}, {'blockNum': '0x49f2e3', 'uniqueId': '0xa27d2e1dc386493b8145d2f6bb220f77358b140a06f3f293623fff5e8a1c46e3:log:11', 'hash': '0xa27d2e1dc386493b8145d2f6bb220f77358b140a06f3f293623fff5e8a1c46e3', 'from': '0xef5d450e3fee87bfb737204ade57c8589c7fd58a', 'to': '0xa138cf3d447f94e30573b0af7e46af844cb4f2e4', 'value': 2999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45d36ed700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:26:07.000Z'}}, {'blockNum': '0x49f2e6', 'uniqueId': '0x805439012ca988e9885263319e0e209278b1317c8a46f256f7204606b405f9aa:log:13', 'hash': '0x805439012ca988e9885263319e0e209278b1317c8a46f256f7204606b405f9aa', 'from': '0x0c9d2c087bb67c227907c2a2c44e079bd2a639d0', 'to': '0x1c20dd4e42e66a2035dd1d41a376b3e8127b14ad', 'value': 176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04190ab000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:27:37.000Z'}}, {'blockNum': '0x49f2e8', 'uniqueId': '0x6aa8a6481f2682a8556555df9aab93cceb79049abfa8c41b81f8564fb993ddc3:log:4', 'hash': '0x6aa8a6481f2682a8556555df9aab93cceb79049abfa8c41b81f8564fb993ddc3', 'from': '0x6334aff810c218c6ed9d02ce8a14d3e5fd969ffc', 'to': '0xeec5c1a4d0b88ccd9716ea67e935692c06a23b58', 'value': 35.08859581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xd124f2bd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:28:15.000Z'}}, {'blockNum': '0x49f2f7', 'uniqueId': '0x79725ea84761f7d08ba7a88e4480480dea56a6313253acea920debbac1e97de9:log:17', 'hash': '0x79725ea84761f7d08ba7a88e4480480dea56a6313253acea920debbac1e97de9', 'from': '0xeec5c1a4d0b88ccd9716ea67e935692c06a23b58', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35.08859581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xd124f2bd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:32:55.000Z'}}, {'blockNum': '0x49f2fd', 'uniqueId': '0x98e271c3971ab2de684d196cf5adc7216f20710dd181327ea3071ea7fbb7c6db:log:15', 'hash': '0x98e271c3971ab2de684d196cf5adc7216f20710dd181327ea3071ea7fbb7c6db', 'from': '0xdd21cd45af446a4bf5c35bb3a2b22eb28b2c4071', 'to': '0xfe6e442acbed264e5e0154d44b58a45e73d2be19', 'value': 140, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0342770c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:34:14.000Z'}}, {'blockNum': '0x49f337', 'uniqueId': '0x9540b98b2fc6801f49e2723a86312c5059accb4e2f68162ca37bb51c14cc2a0c:log:80', 'hash': '0x9540b98b2fc6801f49e2723a86312c5059accb4e2f68162ca37bb51c14cc2a0c', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x15e433814a8879ab68c6db00b8e1611b1987f143', 'value': 20.097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77c996a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:46:39.000Z'}}, {'blockNum': '0x49f341', 'uniqueId': '0xdaa1e41c1e69fd659b1801300a9126eb87accde66455592f44e5846586eab3c2:log:56', 'hash': '0xdaa1e41c1e69fd659b1801300a9126eb87accde66455592f44e5846586eab3c2', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xe26ffc1833adb42d66d10e7ec4f65b15610f36cd', 'value': 0.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0112a880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:49:16.000Z'}}, {'blockNum': '0x49f34f', 'uniqueId': '0xb93f1a9ff0e32010d77f620e8a224ffd06b641ce3eeadbdbb902daa928447f3b:log:35', 'hash': '0xb93f1a9ff0e32010d77f620e8a224ffd06b641ce3eeadbdbb902daa928447f3b', 'from': '0xcdbaba542f681f2708d15adfd12c875959c602fb', 'to': '0xf34d9150d7647e0ce3c3af41a7a4ac643519e43f', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:52:29.000Z'}}, {'blockNum': '0x49f35b', 'uniqueId': '0x89eaef8c74f6de1ff053309edd0dcb0ebf54bb0fe8bc04d35b4bf80d80995cba:log:70', 'hash': '0x89eaef8c74f6de1ff053309edd0dcb0ebf54bb0fe8bc04d35b4bf80d80995cba', 'from': '0xa812710abdc76de98086ae6bc8589407cc1d1eb0', 'to': '0xb4b07334e45211913f9c0f6f5d6b89e0238a4cb4', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:55:53.000Z'}}, {'blockNum': '0x49f35f', 'uniqueId': '0x1b5a3e5f281006c5e87a6f22eb644db20c606a507bf7e0b9ce9a26b8a6a358e5:log:51', 'hash': '0x1b5a3e5f281006c5e87a6f22eb644db20c606a507bf7e0b9ce9a26b8a6a358e5', 'from': '0xb4b07334e45211913f9c0f6f5d6b89e0238a4cb4', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:56:33.000Z'}}, {'blockNum': '0x49f37f', 'uniqueId': '0x544e90ac0fe4765fdec2227017aa2f73fa0a6d30d1c70c7c5072a98e734e9a2c:log:77', 'hash': '0x544e90ac0fe4765fdec2227017aa2f73fa0a6d30d1c70c7c5072a98e734e9a2c', 'from': '0x30d1811fcaf1c7c90733ef5f0c8beb9a7c9d0996', 'to': '0x8752160a3bebdd72eb7ee8c4db953d866b01f3f8', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T09:02:10.000Z'}}, {'blockNum': '0x49f382', 'uniqueId': '0x98adc4d00e3ef4ace24840e817f12686c12b722089fe6c5c90c2c0b7fad0ebac:log:5', 'hash': '0x98adc4d00e3ef4ace24840e817f12686c12b722089fe6c5c90c2c0b7fad0ebac', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xac96c4c5df55a7985635fed1e44f5c44f3e6aaea', 'value': 0.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04c4b400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T09:03:00.000Z'}}, {'blockNum': '0x49f386', 'uniqueId': '0xd4ece9d74c4a3fe8030533cd07d762a98d226cfc925eb813d8583b115e90109f:log:37', 'hash': '0xd4ece9d74c4a3fe8030533cd07d762a98d226cfc925eb813d8583b115e90109f', 'from': '0xb9b9d20594bc8c2399747cf9752b8aff4473234e', 'to': '0x166eef4cc8e46e448e07c8159e53f1a4251380ef', 'value': 266.415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0633f50760', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T09:04:01.000Z'}}, {'blockNum': '0x49f38b', 'uniqueId': '0x2c4a73a719d147d5c9c44d676230cc1f7e4d2765603c081ab85f67e8b0f628c2:log:44', 'hash': '0x2c4a73a719d147d5c9c44d676230cc1f7e4d2765603c081ab85f67e8b0f628c2', 'from': '0x8752160a3bebdd72eb7ee8c4db953d866b01f3f8', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T09:05:17.000Z'}}, {'blockNum': '0x49f3a0', 'uniqueId': '0x82b26e1995eab5429c5ae29bfb037a1ac369669193485ef438c45229afb28bfd:log:9', 'hash': '0x82b26e1995eab5429c5ae29bfb037a1ac369669193485ef438c45229afb28bfd', 'from': '0x08409a8803e93de4e73e0353262ced389f824fee', 'to': '0x230abfb2c5a157407ea084a3aada4f29ccd479c2', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T09:11:28.000Z'}}, {'blockNum': '0x49f3a5', 'uniqueId': '0xc56bf01dde13b49433e6aab59f0b1f2d88fe829cecf8e931edcbe60b9594d31f:log:94', 'hash': '0xc56bf01dde13b49433e6aab59f0b1f2d88fe829cecf8e931edcbe60b9594d31f', 'from': '0xf34d9150d7647e0ce3c3af41a7a4ac643519e43f', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T09:12:46.000Z'}}, {'blockNum': '0x49f3ed', 'uniqueId': '0x0b55b08d0a0d7d2dfc1775668538b28ed8b613b12150b255f540f19430a91b78:log:57', 'hash': '0x0b55b08d0a0d7d2dfc1775668538b28ed8b613b12150b255f540f19430a91b78', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x8a0992b80f5d642ee8f2e49a4838e21d555aaebc', 'value': 34.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xcc255a40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T09:29:39.000Z'}}, {'blockNum': '0x49f3f3', 'uniqueId': '0x9d0f58ed6a16633331ab37e61af973cebe796f1be2cb05d483fb5b32fd863699:log:33', 'hash': '0x9d0f58ed6a16633331ab37e61af973cebe796f1be2cb05d483fb5b32fd863699', 'from': '0x4b44ed479e27a8021bfabb6100f73c1bae615999', 'to': '0xf27e85561501ead277affcb212af7d2889099006', 'value': 19, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x713fb300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T09:31:34.000Z'}}, {'blockNum': '0x49f3f4', 'uniqueId': '0x7ed189c05b9e2ac9187f0eaaedcc2c170c8b12c0ae80a22eb0392ec1d68863fa:log:1', 'hash': '0x7ed189c05b9e2ac9187f0eaaedcc2c170c8b12c0ae80a22eb0392ec1d68863fa', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xcfbbec4ca9c61f6715eba68a7fbe0b7848a6ddc4', 'value': 69.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01a00a5900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T09:31:38.000Z'}}, {'blockNum': '0x49f449', 'uniqueId': '0xd06a947dcd5cfdae40f36ddf7c0172ed0d8b705a11b48f91cd5dc93db1272c9d:log:17', 'hash': '0xd06a947dcd5cfdae40f36ddf7c0172ed0d8b705a11b48f91cd5dc93db1272c9d', 'from': '0x1c20dd4e42e66a2035dd1d41a376b3e8127b14ad', 'to': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'value': 176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04190ab000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T09:53:27.000Z'}}, {'blockNum': '0x49f454', 'uniqueId': '0x3cc1ddd2b6a1ba13fd0ff93ee968b68d8486af3107cc748be9a57e80e9eb1250:log:26', 'hash': '0x3cc1ddd2b6a1ba13fd0ff93ee968b68d8486af3107cc748be9a57e80e9eb1250', 'from': '0xd7f87501c10c23d7cae9608bd0d5a3929cf83972', 'to': '0x18cd1419344ae7b4d7b40c452fa10d644edc5cc2', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T09:57:21.000Z'}}, {'blockNum': '0x49f45e', 'uniqueId': '0xe0b4528965b90a782033b1fd935f61fc1c453b321399564ef97ce91ffe15f1ed:log:26', 'hash': '0xe0b4528965b90a782033b1fd935f61fc1c453b321399564ef97ce91ffe15f1ed', 'from': '0x18cd1419344ae7b4d7b40c452fa10d644edc5cc2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:00:11.000Z'}}, {'blockNum': '0x49f460', 'uniqueId': '0x4c57b90769a58884c84ea7de0652218b68a5550e02d483d10196f420cc2003af:log:18', 'hash': '0x4c57b90769a58884c84ea7de0652218b68a5550e02d483d10196f420cc2003af', 'from': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'to': '0xf64fcf611b77a1f2ad0ebafd1e09040ad081b4d0', 'value': 52.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x013a1dd180', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:00:26.000Z'}}, {'blockNum': '0x49f473', 'uniqueId': '0xbf38b0a092e690511c8fcaea5a13c5523b3c0e2b8c1e3e85fcc67f7f84d047c4:log:20', 'hash': '0xbf38b0a092e690511c8fcaea5a13c5523b3c0e2b8c1e3e85fcc67f7f84d047c4', 'from': '0x5c737e115fa9be8b78b48828898f2feb29efe451', 'to': '0xb06ec0ef43ed41476d62fb82e99acd931196d7cf', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05d21dba00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:04:21.000Z'}}, {'blockNum': '0x49f4a6', 'uniqueId': '0x3a7d268cef3cb715e259ab050b430a1f6fee9186f4b6d99f34fcef21c8c0fb43:log:44', 'hash': '0x3a7d268cef3cb715e259ab050b430a1f6fee9186f4b6d99f34fcef21c8c0fb43', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x472bc03cd84276b0343491d0ce425c9d82b04271', 'value': 1.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x068e7780', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:16:53.000Z'}}, {'blockNum': '0x49f4df', 'uniqueId': '0x60b30a4fd25132e5b07e001f45638cc10c41316aef377e84703e7d6665e2ae27:log:35', 'hash': '0x60b30a4fd25132e5b07e001f45638cc10c41316aef377e84703e7d6665e2ae27', 'from': '0xf01d40d6ec9b2501db108e83ec6a0a89adf7f42a', 'to': '0x87d9edfbc61c639deebbb7211dd641e1dd87b5ea', 'value': 175.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0413ad6580', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:33:14.000Z'}}, {'blockNum': '0x49f4ff', 'uniqueId': '0x6bb6ce109d6090532388dcc571ba47e12c0a6992acff96db070b5292f5b11f62:log:80', 'hash': '0x6bb6ce109d6090532388dcc571ba47e12c0a6992acff96db070b5292f5b11f62', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x7bb8001b1fd57a4404d0001a411b4a94ad0e9ba6', 'value': 18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6b49d200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:40:36.000Z'}}, {'blockNum': '0x49f508', 'uniqueId': '0x131a3701e0522907e90d2cd1858596844bfd6145269b741464cb2fe4e1893936:log:42', 'hash': '0x131a3701e0522907e90d2cd1858596844bfd6145269b741464cb2fe4e1893936', 'from': '0x5f82f622bcce9a0310325d8006d0df0a29a921e7', 'to': '0x0dfd3e4714b1c0e16f73e3e5baa306953bb88093', 'value': 8.771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x34477be0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:42:25.000Z'}}, {'blockNum': '0x49f50c', 'uniqueId': '0x9f7004d0e273ea750cf0fc39c156c67738ce7476d642c3cfc70d952f3b818ce4:log:50', 'hash': '0x9f7004d0e273ea750cf0fc39c156c67738ce7476d642c3cfc70d952f3b818ce4', 'from': '0xda1c1fab0bd7743933640ed9e96f18753154ae15', 'to': '0x153faff6f0b6dbdfee616f7cdc29f97ffc95930b', 'value': 53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x013be79500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:43:38.000Z'}}, {'blockNum': '0x49f53f', 'uniqueId': '0xadd8d465a52fcbf41c39da0f2f51c2b25ddebf5f80202736fe9ace53a7579566:log:9', 'hash': '0xadd8d465a52fcbf41c39da0f2f51c2b25ddebf5f80202736fe9ace53a7579566', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x153faff6f0b6dbdfee616f7cdc29f97ffc95930b', 'value': 145.41324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0362bafee0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:55:52.000Z'}}, {'blockNum': '0x49f53f', 'uniqueId': '0x43f1e8da56271bf0c86910788dafc38996d597b86c88e4bbe3de15354658f228:log:20', 'hash': '0x43f1e8da56271bf0c86910788dafc38996d597b86c88e4bbe3de15354658f228', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x153faff6f0b6dbdfee616f7cdc29f97ffc95930b', 'value': 0.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04c4b400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:55:52.000Z'}}, {'blockNum': '0x49f542', 'uniqueId': '0xf53e96bb166322542e486834ea1f5f07b45fe061f6a49ab265327f36b9de51d5:log:59', 'hash': '0xf53e96bb166322542e486834ea1f5f07b45fe061f6a49ab265327f36b9de51d5', 'from': '0x0c4fe355d6cb9de761afbc008cfa74c07711df9f', 'to': '0xd52de4229a226b8184b2e8a2d6c330d81715e52c', 'value': 13, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4d7c6d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:56:18.000Z'}}, {'blockNum': '0x49f54e', 'uniqueId': '0x23c4f5461a64698263ef75b011fa6ed0014114f187caf68187bd724ca11c5d4c:log:34', 'hash': '0x23c4f5461a64698263ef75b011fa6ed0014114f187caf68187bd724ca11c5d4c', 'from': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'to': '0xfc8a75a3e7df41a02a9f6f71f747b15c847667c8', 'value': 48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x011e1a3000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:58:51.000Z'}}, {'blockNum': '0x49f562', 'uniqueId': '0x10a6d9491efa819747f449b0ad9902e875156a93545f325fec18ce7fc81f19dc:log:36', 'hash': '0x10a6d9491efa819747f449b0ad9902e875156a93545f325fec18ce7fc81f19dc', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x3b48189bf7ad181b0c03db6af0cf5084689cc136', 'value': 178.997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x042ae7bf20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T11:02:30.000Z'}}, {'blockNum': '0x49f57b', 'uniqueId': '0xda0eefbf827f4a72a1de580842cb4cfc2d62249fcfe4683a6da9adb65bf1eb39:log:50', 'hash': '0xda0eefbf827f4a72a1de580842cb4cfc2d62249fcfe4683a6da9adb65bf1eb39', 'from': '0x7aee88f942975b02062264e467dbcabde2e9acca', 'to': '0x47661212f2ba43c0abfd1ee941c67ed4c3c9a2c9', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17d78400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T11:09:19.000Z'}}, {'blockNum': '0x49f585', 'uniqueId': '0x0578a3a8da68cf52bf066c0a7638b10bb88a6111adf374f9ff73ec995c853ed1:log:117', 'hash': '0x0578a3a8da68cf52bf066c0a7638b10bb88a6111adf374f9ff73ec995c853ed1', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xf03251c06f6c7ff2441df9eb4aae752233859c9e', 'value': 55.55283389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x014b1ee5bd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T11:11:23.000Z'}}, {'blockNum': '0x49f5a3', 'uniqueId': '0x2f954d91835a162f26fbf9dc8ed6a9bd2236659564afff448c5eb5e9aa461613:log:15', 'hash': '0x2f954d91835a162f26fbf9dc8ed6a9bd2236659564afff448c5eb5e9aa461613', 'from': '0x3b48189bf7ad181b0c03db6af0cf5084689cc136', 'to': '0x5ff351afbf765245c27a7c705403b88e86b10bf9', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T11:17:29.000Z'}}, {'blockNum': '0x49f5a9', 'uniqueId': '0x2e928bda245cdd33413af2888b1fcaedb7bc88549d764abb1ca659d329555c37:log:62', 'hash': '0x2e928bda245cdd33413af2888b1fcaedb7bc88549d764abb1ca659d329555c37', 'from': '0x5ff351afbf765245c27a7c705403b88e86b10bf9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 157.74110018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03ac35d142', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T11:20:08.000Z'}}, {'blockNum': '0x49f5ed', 'uniqueId': '0xb8738b7c01c794c56da55bf52652a51465578d05d3705697cb86862a54048eaa:log:67', 'hash': '0xb8738b7c01c794c56da55bf52652a51465578d05d3705697cb86862a54048eaa', 'from': '0xb06ec0ef43ed41476d62fb82e99acd931196d7cf', 'to': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05d21dba00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T11:37:43.000Z'}}, {'blockNum': '0x49f5ff', 'uniqueId': '0x273301d36e093b3994fda979a0326712bba0804b1fa805cc938a38829bfe14f9:log:80', 'hash': '0x273301d36e093b3994fda979a0326712bba0804b1fa805cc938a38829bfe14f9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xefe5c1dbdc110b0804f2259fdbd2df6b4b5b0a30', 'value': 9.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a699d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T11:41:28.000Z'}}, {'blockNum': '0x49f602', 'uniqueId': '0x06e560f235269c7e39d176b21afc984cd2d5b26ded210e1f02570e39c6edd0e8:log:91', 'hash': '0x06e560f235269c7e39d176b21afc984cd2d5b26ded210e1f02570e39c6edd0e8', 'from': '0xff46eb0f9273221e214d2e64cfec072d160062b7', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T11:41:52.000Z'}}, {'blockNum': '0x49f60d', 'uniqueId': '0x184eec4c38ec0ffe92b41eae37a1988f49e8219bb89fcdfc5be1e601bf58ded1:log:54', 'hash': '0x184eec4c38ec0ffe92b41eae37a1988f49e8219bb89fcdfc5be1e601bf58ded1', 'from': '0x02e5f58bfd5b75cc9836cff9f2d0af0aaf7d82d1', 'to': '0x7c10c55a63b07430dd6df4f8351df56b5c902f05', 'value': 59.57881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01631e0ca8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T11:44:29.000Z'}}, {'blockNum': '0x49f60e', 'uniqueId': '0xf4cfc7c7ba938525a1c43ccd0507f7955d481d38c20b4a1f5e3451e7cdc38670:log:78', 'hash': '0xf4cfc7c7ba938525a1c43ccd0507f7955d481d38c20b4a1f5e3451e7cdc38670', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xabff3af4250cac8600d0a210ceb44fc4c2f25405', 'value': 131.25841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x030e5c7068', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T11:44:37.000Z'}}, {'blockNum': '0x49f622', 'uniqueId': '0x367f2c51a1029cc0eb8f7dbd4963ecdd34690e445076169957ac9e491729a6b6:log:34', 'hash': '0x367f2c51a1029cc0eb8f7dbd4963ecdd34690e445076169957ac9e491729a6b6', 'from': '0x7c10c55a63b07430dd6df4f8351df56b5c902f05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59.57881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01631e0ca8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T11:50:11.000Z'}}, {'blockNum': '0x49f658', 'uniqueId': '0xf3c3ef2fb4266fcc439d10634db611d5604c7c17e8229ed63b43918032635620:log:6', 'hash': '0xf3c3ef2fb4266fcc439d10634db611d5604c7c17e8229ed63b43918032635620', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1d88f1c6272bafc59ed3b8d52a0b595c70773076', 'value': 44.6851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x010a580d30', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:02:29.000Z'}}, {'blockNum': '0x49f65b', 'uniqueId': '0x1e85c78a38a82a942e5870c783dbd5a14b5f991b14ae997208a5cfb4dedb37eb:log:19', 'hash': '0x1e85c78a38a82a942e5870c783dbd5a14b5f991b14ae997208a5cfb4dedb37eb', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xb2c91c4dce83174095dcd753fe0e769bf3e7725a', 'value': 10.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x40f81480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:02:58.000Z'}}, {'blockNum': '0x49f667', 'uniqueId': '0xd4e897de7e7f075404b64b828c00341af28ef63ac6b2037457d2931b36802875:log:91', 'hash': '0xd4e897de7e7f075404b64b828c00341af28ef63ac6b2037457d2931b36802875', 'from': '0xee91331b0f613904f617592fd05541ca41d670ed', 'to': '0xb784e84fab00ccc1f77cacbf6f5c60f41634ff24', 'value': 680, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0fd51da800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:05:37.000Z'}}, {'blockNum': '0x49f673', 'uniqueId': '0x5ce1cdf8be463fa55d186a292cfa2fe6717d299e0588cadfeef630af672a7c2b:log:1', 'hash': '0x5ce1cdf8be463fa55d186a292cfa2fe6717d299e0588cadfeef630af672a7c2b', 'from': '0x48ef3de608ab2304dbb0c4497d266f3bf5506e7b', 'to': '0x345f47e008354603841a76be690710dcee0f0927', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:08:32.000Z'}}, {'blockNum': '0x49f675', 'uniqueId': '0xa005602ca9163368189d87354aab2d168ff4b5bac8f57b3f26d458cf1d3fae02:log:43', 'hash': '0xa005602ca9163368189d87354aab2d168ff4b5bac8f57b3f26d458cf1d3fae02', 'from': '0xb784e84fab00ccc1f77cacbf6f5c60f41634ff24', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03b9aca000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:09:10.000Z'}}, {'blockNum': '0x49f689', 'uniqueId': '0x5d48d01c6c209cda4f6637568b0b53ca03bd4fe585651210c2aa8ebf7796cee4:log:37', 'hash': '0x5d48d01c6c209cda4f6637568b0b53ca03bd4fe585651210c2aa8ebf7796cee4', 'from': '0x97a01380ba62af5627eec4c5029b16e28e62c5cb', 'to': '0xe15e6ec4bd80163ba766e434263a8deeb4575aa4', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:13:10.000Z'}}, {'blockNum': '0x49f691', 'uniqueId': '0xf041150fbb8266a12ba3afa60d3fde5cc5ff8bc70ad9d761311b6e9edbc01af8:log:0', 'hash': '0xf041150fbb8266a12ba3afa60d3fde5cc5ff8bc70ad9d761311b6e9edbc01af8', 'from': '0x48ef3de608ab2304dbb0c4497d266f3bf5506e7b', 'to': '0x345f47e008354603841a76be690710dcee0f0927', 'value': 490, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b68a0aa00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:14:27.000Z'}}, {'blockNum': '0x49f6a3', 'uniqueId': '0xcb631cf2587901e26a7b62fb2a50458c32401fbd1513d7d364dbdbfa68948846:log:24', 'hash': '0xcb631cf2587901e26a7b62fb2a50458c32401fbd1513d7d364dbdbfa68948846', 'from': '0x345f47e008354603841a76be690710dcee0f0927', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:20:24.000Z'}}, {'blockNum': '0x49f6bc', 'uniqueId': '0xd319fae52578cf4af7ea26c770f141b2352fd71d75ebe0a42f4bccd563223067:log:91', 'hash': '0xd319fae52578cf4af7ea26c770f141b2352fd71d75ebe0a42f4bccd563223067', 'from': '0xcaaa5858dc686d8c3bd78572d192e3003528c90e', 'to': '0xdf44f0d36bef35e34b350241ae43fffb73cab92e', 'value': 2800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x41314cf000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:27:55.000Z'}}, {'blockNum': '0x49f6c3', 'uniqueId': '0xbb39bdc71b8d213838122736cbcb3764dd4e9feca5afdce025125786b96804a0:log:32', 'hash': '0xbb39bdc71b8d213838122736cbcb3764dd4e9feca5afdce025125786b96804a0', 'from': '0xdf44f0d36bef35e34b350241ae43fffb73cab92e', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 2800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x41314cf000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:29:24.000Z'}}, {'blockNum': '0x49f6c7', 'uniqueId': '0xe368cd7fdda0e9175d6d9c555f8b2dc43a66307cfd327c228361d99fec03bb58:log:36', 'hash': '0xe368cd7fdda0e9175d6d9c555f8b2dc43a66307cfd327c228361d99fec03bb58', 'from': '0x5048026b3a30db4ea36055ae265c42365b396ba0', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x041314cf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:30:17.000Z'}}, {'blockNum': '0x49f6e8', 'uniqueId': '0x4e51e7943f4189f1e4061277fc71c822dbe963638f8f6c27bd72ae5a62a33e8d:log:93', 'hash': '0x4e51e7943f4189f1e4061277fc71c822dbe963638f8f6c27bd72ae5a62a33e8d', 'from': '0x020a2c1421e5887068b4e4af4ff33091d3ed6ed5', 'to': '0x0ae623f3cd7d2ea87dd66c6617dc41c8c730c7f3', 'value': 31.29827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xba8d5eb8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:38:23.000Z'}}, {'blockNum': '0x49f6eb', 'uniqueId': '0xe064ec21c73df4217923e1b4842c01e3e254b76b864b5ef57b9c197389d1fc7b:log:2', 'hash': '0xe064ec21c73df4217923e1b4842c01e3e254b76b864b5ef57b9c197389d1fc7b', 'from': '0x48ef3de608ab2304dbb0c4497d266f3bf5506e7b', 'to': '0x345f47e008354603841a76be690710dcee0f0927', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:39:02.000Z'}}, {'blockNum': '0x49f6f2', 'uniqueId': '0x0eb69b0a48c28ea68745b4da53bdd60e9f1f5944acfcd309ba258ad3bd16b4bb:log:28', 'hash': '0x0eb69b0a48c28ea68745b4da53bdd60e9f1f5944acfcd309ba258ad3bd16b4bb', 'from': '0x345f47e008354603841a76be690710dcee0f0927', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:40:18.000Z'}}, {'blockNum': '0x49f6fc', 'uniqueId': '0x2da3a46cbcc962dc2941bcef0e8cb0280d34b78839ba9af00c0184d7ce438fa9:log:65', 'hash': '0x2da3a46cbcc962dc2941bcef0e8cb0280d34b78839ba9af00c0184d7ce438fa9', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x4b44ed479e27a8021bfabb6100f73c1bae615999', 'value': 18.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x70a71c80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:43:16.000Z'}}, {'blockNum': '0x49f70b', 'uniqueId': '0x8bde24fd9b44afbc6a77f9ff13ead3669c078abd16b63be9719f1af29b2adc9a:log:71', 'hash': '0x8bde24fd9b44afbc6a77f9ff13ead3669c078abd16b63be9719f1af29b2adc9a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xac96c4c5df55a7985635fed1e44f5c44f3e6aaea', 'value': 28.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xaba95000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:46:22.000Z'}}, {'blockNum': '0x49f720', 'uniqueId': '0x3ed4f6ba9986055ca2a5bb310a2f9d7bb209c9f61f6ed9b9afcc7a62202cbfbe:log:8', 'hash': '0x3ed4f6ba9986055ca2a5bb310a2f9d7bb209c9f61f6ed9b9afcc7a62202cbfbe', 'from': '0x0ae623f3cd7d2ea87dd66c6617dc41c8c730c7f3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31.29827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xba8d5eb8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:52:23.000Z'}}, {'blockNum': '0x49f72c', 'uniqueId': '0xac73d8d235abdd08c59f91f2cc79e47cca49fd74209ebaacc5ac2008b2d72373:log:48', 'hash': '0xac73d8d235abdd08c59f91f2cc79e47cca49fd74209ebaacc5ac2008b2d72373', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xf1451e8b62b620223e07765da9815398bf8291e7', 'value': 670, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f9982de00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:55:38.000Z'}}, {'blockNum': '0x49f73a', 'uniqueId': '0x1f5df32f2f454c945959b084adccdfc8d41201f2ee64c91e4ab26d2af33f0e6b:log:39', 'hash': '0x1f5df32f2f454c945959b084adccdfc8d41201f2ee64c91e4ab26d2af33f0e6b', 'from': '0xf1451e8b62b620223e07765da9815398bf8291e7', 'to': '0x8ef22fd14515d0605820fc8afe3b5d16bdd6f996', 'value': 670, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f9982de00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:59:15.000Z'}}, {'blockNum': '0x49f746', 'uniqueId': '0x02e2a055a8de2ba39b69c8fd9fbaad92f91c25c232989207d84af1126846e708:log:26', 'hash': '0x02e2a055a8de2ba39b69c8fd9fbaad92f91c25c232989207d84af1126846e708', 'from': '0xb37425dbd25fdb1028f8589fd80fddd2d60bde01', 'to': '0x83d6478f068c12674e011c4a92051da894017694', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T13:01:49.000Z'}}, {'blockNum': '0x49f755', 'uniqueId': '0xcfd11cafb8e85be9fa88d6e6a060eac6f3214572c5106db4839cfee3150b8341:log:0', 'hash': '0xcfd11cafb8e85be9fa88d6e6a060eac6f3214572c5106db4839cfee3150b8341', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x5048026b3a30db4ea36055ae265c42365b396ba0', 'value': 62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01718c7e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T13:05:09.000Z'}}, {'blockNum': '0x49f785', 'uniqueId': '0xca1f4c9064710c77c9eea75b41205ceaae122d27700050e49e4e897313fc75f1:log:15', 'hash': '0xca1f4c9064710c77c9eea75b41205ceaae122d27700050e49e4e897313fc75f1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5531342f0d31a6a9aaaabf171bf59f568ad00c83', 'value': 9.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a699d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T13:16:18.000Z'}}, {'blockNum': '0x49f7af', 'uniqueId': '0x51ac17a1e2e8f081615be28015e667ba79369538030acad9a7184d30604293b4:log:40', 'hash': '0x51ac17a1e2e8f081615be28015e667ba79369538030acad9a7184d30604293b4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1deb50782a5d1b3d3c4534e55e56606909e6eec1', 'value': 28.51126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xa9f0baf0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T13:25:29.000Z'}}, {'blockNum': '0x49f7e0', 'uniqueId': '0x587f2a4073d08a5734d90591843b1a59f549c0e8f76e84b6d51a899a4c5ad725:log:59', 'hash': '0x587f2a4073d08a5734d90591843b1a59f549c0e8f76e84b6d51a899a4c5ad725', 'from': '0x08c54823199749c43c7793823fe7207df0381f88', 'to': '0xf968ede0bc6a3d54a69fb0ca7f33f47035810083', 'value': 226.759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x054796c660', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T13:36:49.000Z'}}, {'blockNum': '0x49f7fd', 'uniqueId': '0x1d2497bf8be00a3ef6ef41b337f696365092d71f762dade5dd314e63597028f5:log:17', 'hash': '0x1d2497bf8be00a3ef6ef41b337f696365092d71f762dade5dd314e63597028f5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2bb6db4b9acc105219c10a216e46907fc7435412', 'value': 17.782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x69fd2dc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T13:45:18.000Z'}}, {'blockNum': '0x49f816', 'uniqueId': '0x0521f35f5383d99963a4498a009ab16ee52f854aa9a2194499ea1ec763b7bb92:log:57', 'hash': '0x0521f35f5383d99963a4498a009ab16ee52f854aa9a2194499ea1ec763b7bb92', 'from': '0x2deb31b97f5240d4c7ac81a1df9786dab92564fc', 'to': '0x1aa776aaf8501ceaf8ac1ae96e99bf56d53e25c8', 'value': 2.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e7be2c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T13:51:36.000Z'}}, {'blockNum': '0x49f81a', 'uniqueId': '0x25314b24a2500bef199dbe2997edf6d4536c4925089ac91e89e1d8342981aea1:log:31', 'hash': '0x25314b24a2500bef199dbe2997edf6d4536c4925089ac91e89e1d8342981aea1', 'from': '0xb37425dbd25fdb1028f8589fd80fddd2d60bde01', 'to': '0x28d57c68e6bc1bf01825747391645ac3682b2c95', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T13:52:21.000Z'}}, {'blockNum': '0x49f82d', 'uniqueId': '0x1e7e8b80669145f8425ad1740f50cba6f2d1a25fa298e81d1e243863d4b00c0d:log:9', 'hash': '0x1e7e8b80669145f8425ad1740f50cba6f2d1a25fa298e81d1e243863d4b00c0d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xada10155ede4b5267833c1c74e5f4bc71f89e2fe', 'value': 42.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xffc376c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T13:57:44.000Z'}}, {'blockNum': '0x49f849', 'uniqueId': '0xf6117003fe66adf3c275ad0ba4ea5d1c699241bb6f2816746fb8fc440abd2348:log:10', 'hash': '0xf6117003fe66adf3c275ad0ba4ea5d1c699241bb6f2816746fb8fc440abd2348', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x12a12562192bd96c0c9bda1f564681c256d71553', 'value': 158.60811241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03b160c5e9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:03:55.000Z'}}, {'blockNum': '0x49f855', 'uniqueId': '0xd04e3fcf1a00ec436d9459f50541579133280faba86771c7606d6e856f64377c:log:43', 'hash': '0xd04e3fcf1a00ec436d9459f50541579133280faba86771c7606d6e856f64377c', 'from': '0x12a12562192bd96c0c9bda1f564681c256d71553', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 173.99437544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x040d1658e8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:07:26.000Z'}}, {'blockNum': '0x49f856', 'uniqueId': '0x010d79f9926575c089aa432985101df610dc8291050410f69b78399e48dc70fb:log:42', 'hash': '0x010d79f9926575c089aa432985101df610dc8291050410f69b78399e48dc70fb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x44d124098ca55f8844fe63dce22c7d8d3c7903c6', 'value': 20.89888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7c912900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:07:37.000Z'}}, {'blockNum': '0x49f863', 'uniqueId': '0x46d8e56ec4d890a9d6c55b56e11f596b5dab2e7829ef255b8e37e347e98d8f31:log:29', 'hash': '0x46d8e56ec4d890a9d6c55b56e11f596b5dab2e7829ef255b8e37e347e98d8f31', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 173.99437544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x040d1658e8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:11:14.000Z'}}, {'blockNum': '0x49f8a2', 'uniqueId': '0x6edfe4d49ea13a4231600283380ee1689896188b4e9a93875ec0940b8f039fbd:log:18', 'hash': '0x6edfe4d49ea13a4231600283380ee1689896188b4e9a93875ec0940b8f039fbd', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x0ef7e0ef5103979a58daf55fac5d7dce42fb3951', 'value': 26.54305881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9e357e59', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:27:15.000Z'}}, {'blockNum': '0x49f8a8', 'uniqueId': '0x4da4fe125b147ab9aa32624fde08d28b7e76f65966692ecf6b5e8f8314e34a9d:log:6', 'hash': '0x4da4fe125b147ab9aa32624fde08d28b7e76f65966692ecf6b5e8f8314e34a9d', 'from': '0x33acb520c14a360b3a16bce24f10f744bbb69783', 'to': '0x49274dab91cf3b37cc266a0126fc12855c7b94eb', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:28:29.000Z'}}, {'blockNum': '0x49f8ab', 'uniqueId': '0x8c67f08736765608a6e0b40e2c3f0d54349b3a406307d51d7087ccc01b720bc7:log:23', 'hash': '0x8c67f08736765608a6e0b40e2c3f0d54349b3a406307d51d7087ccc01b720bc7', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xfe00ed16676b6d1c7e92391658ccc5d2bee1ea0c', 'value': 19.85553504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x76592460', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:29:23.000Z'}}, {'blockNum': '0x49f8ac', 'uniqueId': '0x70118a48263ddf8911fd07fdb04c3c209ffb24c6981e2836b4df6af3f8a68bdd:log:56', 'hash': '0x70118a48263ddf8911fd07fdb04c3c209ffb24c6981e2836b4df6af3f8a68bdd', 'from': '0x0ef7e0ef5103979a58daf55fac5d7dce42fb3951', 'to': '0xc0169239a3bd3cc4e79d1669e2d04bd28873e3ed', 'value': 26.54305881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9e357e59', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:30:24.000Z'}}, {'blockNum': '0x49f8b1', 'uniqueId': '0x987e327067937f2de35a389160ddac4f81b659a99f167e04f6061bb912e3051b:log:19', 'hash': '0x987e327067937f2de35a389160ddac4f81b659a99f167e04f6061bb912e3051b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x506c69c54171d50b0f93b184dca0ba93dd8eb15d', 'value': 9.79, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a5a5ac0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:31:19.000Z'}}, {'blockNum': '0x49f8e7', 'uniqueId': '0x5e72e1ee34d59ef8f2f9c94c777ad02bab8371e43685724c74cd21ba631bd519:log:32', 'hash': '0x5e72e1ee34d59ef8f2f9c94c777ad02bab8371e43685724c74cd21ba631bd519', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5531342f0d31a6a9aaaabf171bf59f568ad00c83', 'value': 5999.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8bb1984300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:45:15.000Z'}}, {'blockNum': '0x49f90b', 'uniqueId': '0x6275cf61b447ec59e1ad9cdf650767dcc40a48ff2b32cd02c1656b098f488685:log:25', 'hash': '0x6275cf61b447ec59e1ad9cdf650767dcc40a48ff2b32cd02c1656b098f488685', 'from': '0x28d57c68e6bc1bf01825747391645ac3682b2c95', 'to': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:53:55.000Z'}}, {'blockNum': '0x49f915', 'uniqueId': '0x92aa8b4398c12e4bd19994498894d99fe9db232cc8f3e8c7932f0914ca8746fd:log:83', 'hash': '0x92aa8b4398c12e4bd19994498894d99fe9db232cc8f3e8c7932f0914ca8746fd', 'from': '0xa0ba96632269d3169349cf544d9567515d1e7964', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:56:13.000Z'}}, {'blockNum': '0x49f91f', 'uniqueId': '0xa6f461a21fa6fa45c832b15dfe5950a5ff702c5ac7f1fec20c6a5237a0af57ca:log:25', 'hash': '0xa6f461a21fa6fa45c832b15dfe5950a5ff702c5ac7f1fec20c6a5237a0af57ca', 'from': '0xa0ba96632269d3169349cf544d9567515d1e7964', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 56, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x014dc93800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:58:38.000Z'}}, {'blockNum': '0x49f92d', 'uniqueId': '0x5dc452ec71cdfdb90598f97802f75da313d7e78db435576be24751b1439fddeb:log:3', 'hash': '0x5dc452ec71cdfdb90598f97802f75da313d7e78db435576be24751b1439fddeb', 'from': '0xdacfd3720f6b1d454b746280d1754f620055b373', 'to': '0x7fa7d7d874f58859267c834f7e5e949ea92b17e6', 'value': 18.1224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6c049680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:02:24.000Z'}}, {'blockNum': '0x49f942', 'uniqueId': '0xb24a80ac63621f0bfc3731feaa184e9ac7c4743c83e83d42d083b9a314f36389:log:38', 'hash': '0xb24a80ac63621f0bfc3731feaa184e9ac7c4743c83e83d42d083b9a314f36389', 'from': '0x6f32cccbd953bb514a294cc0bb3cde9e6d1b67d2', 'to': '0xfc204b08f56f43c505a9653336d547e3e60a300a', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:08:23.000Z'}}, {'blockNum': '0x49f946', 'uniqueId': '0x4b86ff9259437a1a27d39ec14e3a0a962b1cc17c2ad0df10b7659a26be1d43be:log:43', 'hash': '0x4b86ff9259437a1a27d39ec14e3a0a962b1cc17c2ad0df10b7659a26be1d43be', 'from': '0x30d14dd10f73fd46ebe19b1e0b3802e2057b1f42', 'to': '0x92000ce4b4777e32c828d2ede8c29a17c6432c15', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:09:33.000Z'}}, {'blockNum': '0x49f94b', 'uniqueId': '0xa8bc443a3a63959643da7cd8a18c070c9d19830a59a294d0847dcd51890bd913:log:59', 'hash': '0xa8bc443a3a63959643da7cd8a18c070c9d19830a59a294d0847dcd51890bd913', 'from': '0x92000ce4b4777e32c828d2ede8c29a17c6432c15', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:10:51.000Z'}}, {'blockNum': '0x49f94e', 'uniqueId': '0xbba419b43e640bc448e40c2e3789e03fa0510907cbc66d33aed532bbec09db4c:log:45', 'hash': '0xbba419b43e640bc448e40c2e3789e03fa0510907cbc66d33aed532bbec09db4c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa7a365e8068ca901171703c3640b567b21de7666', 'value': 22.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x87e60a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:11:25.000Z'}}, {'blockNum': '0x49f962', 'uniqueId': '0x02945d044396d528007dbddd08e44133ab6ad86fbe55da3838b10a96ea630da8:log:17', 'hash': '0x02945d044396d528007dbddd08e44133ab6ad86fbe55da3838b10a96ea630da8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa6151305c93e30f340d05f97884f801fe3ba4ace', 'value': 19.8005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x76052a50', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:16:50.000Z'}}, {'blockNum': '0x49f967', 'uniqueId': '0xf1f5d97539cb53759b0f9f3b8b6d1cd1989c266be90aae190deb0b6b3de20157:log:59', 'hash': '0xf1f5d97539cb53759b0f9f3b8b6d1cd1989c266be90aae190deb0b6b3de20157', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xca6f779d0373d22d195e75f98482c9e9bfbd9b9a', 'value': 85, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01faa3b500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:18:44.000Z'}}, {'blockNum': '0x49f96d', 'uniqueId': '0xab97a8523df998cc932006bbd31dfb2f3923d58d3b21212b365b035441abb685:log:18', 'hash': '0xab97a8523df998cc932006bbd31dfb2f3923d58d3b21212b365b035441abb685', 'from': '0x62c62b5f6d4ffe12694a1f3662680af75b352caf', 'to': '0xae0c25cf0001ebfc58fa4f0fd2a746d18fd7bfca', 'value': 86.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02016f3580', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:20:11.000Z'}}, {'blockNum': '0x49f97e', 'uniqueId': '0x071022c0bcc55081a06dcbe01c0dbee0da1bda99970f401b8c4e2210e93aa8cc:log:11', 'hash': '0x071022c0bcc55081a06dcbe01c0dbee0da1bda99970f401b8c4e2210e93aa8cc', 'from': '0xa3c85443a7edef4408f415597ee18b51a74d39da', 'to': '0xb8760a26c40ee73420294061f6e3a89ae050bfc8', 'value': 52.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x013929ad80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:24:06.000Z'}}, {'blockNum': '0x49f97e', 'uniqueId': '0x5fb17da4115f62f509ca6cdcf1de3085099baca6fbd195f2eea926db9fdacbde:log:37', 'hash': '0x5fb17da4115f62f509ca6cdcf1de3085099baca6fbd195f2eea926db9fdacbde', 'from': '0xca6f779d0373d22d195e75f98482c9e9bfbd9b9a', 'to': '0x12fa6ddd15468417408628156e42e74cd0ce5866', 'value': 85, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01faa3b500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:24:06.000Z'}}, {'blockNum': '0x49f97f', 'uniqueId': '0x7bf2c3a3e56c785839452ae0c5493a8f9c9573619724160bfbdfb38d470bb5d1:log:29', 'hash': '0x7bf2c3a3e56c785839452ae0c5493a8f9c9573619724160bfbdfb38d470bb5d1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x75d3ff408df9ebad4898b9cafbc489fba019bebd', 'value': 4.72507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1c29e278', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:24:30.000Z'}}, {'blockNum': '0x49f981', 'uniqueId': '0x0493f438324ab6e8df1762427cf534f4c7341c6b1456610e9e08fa15b9252b18:log:16', 'hash': '0x0493f438324ab6e8df1762427cf534f4c7341c6b1456610e9e08fa15b9252b18', 'from': '0x6f32cccbd953bb514a294cc0bb3cde9e6d1b67d2', 'to': '0xfc204b08f56f43c505a9653336d547e3e60a300a', 'value': 690, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1010b87200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:25:02.000Z'}}, {'blockNum': '0x49f98d', 'uniqueId': '0xed748b1eda65e68e78b86b5ed6822384f309d1f4a22af05f697b919d58147e99:log:27', 'hash': '0xed748b1eda65e68e78b86b5ed6822384f309d1f4a22af05f697b919d58147e99', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1deb50782a5d1b3d3c4534e55e56606909e6eec1', 'value': 21.02875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7d575378', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:27:40.000Z'}}, {'blockNum': '0x49f99c', 'uniqueId': '0x0ed67df9e53e384e881cd0be50e8db6a259506c5625118134be5b88a8a378247:log:13', 'hash': '0x0ed67df9e53e384e881cd0be50e8db6a259506c5625118134be5b88a8a378247', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xcdef04d3c5fb5823aaa63efe94cf66abdbbc06a2', 'value': 28.314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xa8c3bc40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:32:21.000Z'}}, {'blockNum': '0x49f9a3', 'uniqueId': '0x9785ed9a423e4373637391f792230b8729680515e251fa76805b2a504a3e3234:log:15', 'hash': '0x9785ed9a423e4373637391f792230b8729680515e251fa76805b2a504a3e3234', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x12a12562192bd96c0c9bda1f564681c256d71553', 'value': 50.75590727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012e875e47', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:33:49.000Z'}}, {'blockNum': '0x49f9a4', 'uniqueId': '0xf31e945d22591861f9f84217fadfe9791d1432a0d38cb59f4c1e9462446e4409:log:37', 'hash': '0xf31e945d22591861f9f84217fadfe9791d1432a0d38cb59f4c1e9462446e4409', 'from': '0xfd73ca65852f29b674de8a4f048f9ccdecb2a007', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 46.26127182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0113bd194e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:33:57.000Z'}}, {'blockNum': '0x49f9af', 'uniqueId': '0x58640f960e8aacb9dfd7a5f6865792a15276557fef389d55f2fc8ee3d34524a1:log:22', 'hash': '0x58640f960e8aacb9dfd7a5f6865792a15276557fef389d55f2fc8ee3d34524a1', 'from': '0x12a12562192bd96c0c9bda1f564681c256d71553', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 51.01229943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01300e9777', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:35:55.000Z'}}, {'blockNum': '0x49f9ba', 'uniqueId': '0xe318243efd301026272744068245780da2dc769c9a2671d20de01a370dea9f0d:log:24', 'hash': '0xe318243efd301026272744068245780da2dc769c9a2671d20de01a370dea9f0d', 'from': '0xa62a1a841412700ce7d9f69c23f8484809be5292', 'to': '0xc31c786613f537391958d74610e468175c576d9f', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:39:41.000Z'}}, {'blockNum': '0x49f9c1', 'uniqueId': '0x241125e11a17d8d74bfb74c1fad26e601245ff7078e741f456b0c85ab4709a62:log:8', 'hash': '0x241125e11a17d8d74bfb74c1fad26e601245ff7078e741f456b0c85ab4709a62', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 51.01229943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01300e9777', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:42:22.000Z'}}, {'blockNum': '0x49f9d4', 'uniqueId': '0x30468b8075520accf840c4df4822dd11eb1f23b394c2987cf197593661fba2ad:log:66', 'hash': '0x30468b8075520accf840c4df4822dd11eb1f23b394c2987cf197593661fba2ad', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x50ebd0c3ec06199aca7588ac85902123f331433f', 'value': 64.6351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01814155f0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:48:58.000Z'}}, {'blockNum': '0x49fa04', 'uniqueId': '0x51b21ad5ef479bce787734e3675776e9fbec2bd273b555cc084cfab2f7407c39:log:40', 'hash': '0x51b21ad5ef479bce787734e3675776e9fbec2bd273b555cc084cfab2f7407c39', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x57f9ca58fbdef1f8c8715c97e346e4db5d0e89ff', 'value': 250.75829, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05d6a2c908', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T16:03:03.000Z'}}, {'blockNum': '0x49fa0f', 'uniqueId': '0xea6b306ed231e43f8aa8615167105e778a12904569ce357f53334f38f3ab4aba:log:42', 'hash': '0xea6b306ed231e43f8aa8615167105e778a12904569ce357f53334f38f3ab4aba', 'from': '0xc31c786613f537391958d74610e468175c576d9f', 'to': '0xa62a1a841412700ce7d9f69c23f8484809be5292', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T16:06:03.000Z'}}, {'blockNum': '0x49fa21', 'uniqueId': '0xe08453e9c344dee3d3f774f19b46f7a5c4cf8778ce465e7b2a2337ee2bdeded8:log:19', 'hash': '0xe08453e9c344dee3d3f774f19b46f7a5c4cf8778ce465e7b2a2337ee2bdeded8', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x7c7d5079b5d58cab28d176c686bca7fa4d791923', 'value': 6.529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x26ea76a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T16:10:01.000Z'}}, {'blockNum': '0x49fa24', 'uniqueId': '0x82a31209320542d1113610f6bb261815073d6796ca20bf32aa686553016fffe0:log:6', 'hash': '0x82a31209320542d1113610f6bb261815073d6796ca20bf32aa686553016fffe0', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x7c7d5079b5d58cab28d176c686bca7fa4d791923', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0bebc200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T16:10:59.000Z'}}, {'blockNum': '0x49fa54', 'uniqueId': '0x7721fb2d0bc8a0fd2ef4b9607383d7a0aa2457991a2718bb9c2dc2673311d225:log:30', 'hash': '0x7721fb2d0bc8a0fd2ef4b9607383d7a0aa2457991a2718bb9c2dc2673311d225', 'from': '0x21f2098fff91eeb31b857d1a861517c14073ceee', 'to': '0x7cfe38173b65b447b7afb4cee63d11f40e2537b0', 'value': 550, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0cce416600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T16:25:44.000Z'}}, {'blockNum': '0x49fa80', 'uniqueId': '0x72b8d1d5accec85ffbedb3ef79ae0f29e3331a5cfc9e4c75aa7ce9124e16172a:log:7', 'hash': '0x72b8d1d5accec85ffbedb3ef79ae0f29e3331a5cfc9e4c75aa7ce9124e16172a', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x78da64f7669bf47ced00b34b1e3037b60d252b45', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T16:38:02.000Z'}}, {'blockNum': '0x49fab0', 'uniqueId': '0xf6d77d6fc8fe9eb8044742d82c566219235202a6c3cf451d20d12091ec7f49b8:log:4', 'hash': '0xf6d77d6fc8fe9eb8044742d82c566219235202a6c3cf451d20d12091ec7f49b8', 'from': '0x78da64f7669bf47ced00b34b1e3037b60d252b45', 'to': '0x7b7722135006a0216e1ff54b5d7abfec0815de1b', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T16:49:19.000Z'}}, {'blockNum': '0x49fab3', 'uniqueId': '0x7d84331be0544dfd95c25c13edf5b150774e5f71ec97be8d5c831a1331ecded1:log:45', 'hash': '0x7d84331be0544dfd95c25c13edf5b150774e5f71ec97be8d5c831a1331ecded1', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x83e1112d76b9a94e407375d40ff419dc6e63304a', 'value': 4.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd64ff', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T16:51:06.000Z'}}, {'blockNum': '0x49fac0', 'uniqueId': '0x0311a3012fd24f468b5d6431cb537bfe983902c7f95fdd1c0da2f1b0e33a8aa5:log:24', 'hash': '0x0311a3012fd24f468b5d6431cb537bfe983902c7f95fdd1c0da2f1b0e33a8aa5', 'from': '0x83e1112d76b9a94e407375d40ff419dc6e63304a', 'to': '0x8fef458d97183cd0be62819f7cfd7ad21f95538e', 'value': 4.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd64ff', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T16:53:53.000Z'}}, {'blockNum': '0x49fad5', 'uniqueId': '0x5fb861c4d80e93ca9112bca7e5ac387e92b2b7210412d83cb87461d339cb6e7e:log:25', 'hash': '0x5fb861c4d80e93ca9112bca7e5ac387e92b2b7210412d83cb87461d339cb6e7e', 'from': '0x2a105a4f6811ad015d24399daeab190c042b72f3', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 45.876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0111713880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:01:16.000Z'}}, {'blockNum': '0x49fae8', 'uniqueId': '0xa07d9edca0e95bbd0f90040736b1e023b734685daa365248cea9d2d0b52cc115:log:60', 'hash': '0xa07d9edca0e95bbd0f90040736b1e023b734685daa365248cea9d2d0b52cc115', 'from': '0xa91c49d752907a93de8e4e075f70ff10d1e9bbdd', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 18.00681358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6b54378e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:05:50.000Z'}}, {'blockNum': '0x49fae9', 'uniqueId': '0xf9bf4c2fcc5e3868de1ec9a33900355aca17aacd18dca2b6e6b77e77167c88c1:log:42', 'hash': '0xf9bf4c2fcc5e3868de1ec9a33900355aca17aacd18dca2b6e6b77e77167c88c1', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x9065168985f414947a80020b059bc8351a503b3c', 'value': 15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x59682f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:06:51.000Z'}}, {'blockNum': '0x49faf2', 'uniqueId': '0xd1e3c5b29f00144f252132fe7b18b830700d8011cc80de26eebc060bbe799bbd:log:52', 'hash': '0xd1e3c5b29f00144f252132fe7b18b830700d8011cc80de26eebc060bbe799bbd', 'from': '0x8bdaf4cd3f54dde2469d2e78f019078aebb79711', 'to': '0xd803b2529af18a67af666ec4111da57ba4feab04', 'value': 65, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01836e2100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:08:36.000Z'}}, {'blockNum': '0x49fb01', 'uniqueId': '0x7cb2e94109b2c8653c118a3aaa98c5d2b5a1ac4cb610c23bfdc4eb8136f8a39b:log:38', 'hash': '0x7cb2e94109b2c8653c118a3aaa98c5d2b5a1ac4cb610c23bfdc4eb8136f8a39b', 'from': '0xd39492887f9586267e7af7ccb268f6ed77cf377b', 'to': '0xe92efddbf755f2ed9ebe549f51bbe72497b22e38', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0bebc200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:11:45.000Z'}}, {'blockNum': '0x49fb02', 'uniqueId': '0x645e45b7632ec34959709fe8e96bd8a38b23270c17ae4676c92767d778d4f07a:log:88', 'hash': '0x645e45b7632ec34959709fe8e96bd8a38b23270c17ae4676c92767d778d4f07a', 'from': '0x9065168985f414947a80020b059bc8351a503b3c', 'to': '0x1df0c979ad48da85d0c4516804a9e5867328b5cf', 'value': 15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x59682f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:12:49.000Z'}}, {'blockNum': '0x49fb03', 'uniqueId': '0x261ac34af4e1e3a1b7b7eed47e831b8fd199bee25d2d5744141896e33005274c:log:68', 'hash': '0x261ac34af4e1e3a1b7b7eed47e831b8fd199bee25d2d5744141896e33005274c', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x8f682727fde9cf89a45bb83ecfe122d63d45781b', 'value': 9.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9ac9ff', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:13:24.000Z'}}, {'blockNum': '0x49fb0b', 'uniqueId': '0x982eaa8bcdf5832fe9113775b97a9bfc0b1f1aa94784354f34ce9e8107e5372c:log:0', 'hash': '0x982eaa8bcdf5832fe9113775b97a9bfc0b1f1aa94784354f34ce9e8107e5372c', 'from': '0x57fecdcee640b1b6e2b64943452053de487a8a6d', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x044eaf9900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:15:24.000Z'}}, {'blockNum': '0x49fb1a', 'uniqueId': '0x4737fcfe0739f398b33377ba66011ef4a7314e3c45a6b8242ec0203ca86637e4:log:11', 'hash': '0x4737fcfe0739f398b33377ba66011ef4a7314e3c45a6b8242ec0203ca86637e4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0fd1b7efe3f15e6b14cdc417c8c0898e74391b41', 'value': 0.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01c9c380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:20:48.000Z'}}, {'blockNum': '0x49fb36', 'uniqueId': '0x0052d777be4abf27d70e3ef9e522f516fcf0afe17cde2fbe565d8b920470dd3d:log:8', 'hash': '0x0052d777be4abf27d70e3ef9e522f516fcf0afe17cde2fbe565d8b920470dd3d', 'from': '0x59d9793ef191a04de8d66c5231b6420633f019c0', 'to': '0x1fd5cfdf3c64f3d44e51fb5b3424205438192cef', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:28:44.000Z'}}, {'blockNum': '0x49fb38', 'uniqueId': '0xdd90995ec56785ce8058e15621aabc2f9d9bca78599c2b226a034d7682964627:log:3', 'hash': '0xdd90995ec56785ce8058e15621aabc2f9d9bca78599c2b226a034d7682964627', 'from': '0xa62a1a841412700ce7d9f69c23f8484809be5292', 'to': '0xc31c786613f537391958d74610e468175c576d9f', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:29:32.000Z'}}, {'blockNum': '0x49fb43', 'uniqueId': '0x6f1d6985b986bbb9e0f856626e0b857cec70579ace2d7dbfef2717acc3767be7:log:14', 'hash': '0x6f1d6985b986bbb9e0f856626e0b857cec70579ace2d7dbfef2717acc3767be7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1df0c979ad48da85d0c4516804a9e5867328b5cf', 'value': 6.41338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x263a0a90', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:31:28.000Z'}}, {'blockNum': '0x49fb53', 'uniqueId': '0x23d7c10bed5ee8c749f000ea723eeb6a9c45c533b70f4a2f82b110656b6cd519:log:13', 'hash': '0x23d7c10bed5ee8c749f000ea723eeb6a9c45c533b70f4a2f82b110656b6cd519', 'from': '0x59d9793ef191a04de8d66c5231b6420633f019c0', 'to': '0x1fd5cfdf3c64f3d44e51fb5b3424205438192cef', 'value': 39.89828688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xedcff450', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:37:15.000Z'}}, {'blockNum': '0x49fb5d', 'uniqueId': '0xcf6f5ea42aa0d4cdd8e930e640a13200fbb1a2db9189515912ad01c7d5d49800:log:42', 'hash': '0xcf6f5ea42aa0d4cdd8e930e640a13200fbb1a2db9189515912ad01c7d5d49800', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbed7ad70115262a38d6139327bb9906a7cff25e0', 'value': 18.781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6ff18820', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:40:06.000Z'}}, {'blockNum': '0x49fb62', 'uniqueId': '0x3c9581ddc6b73ef342d387147ed5b3fe0e6d13dab2d116d22c27dc96738bb80b:log:6', 'hash': '0x3c9581ddc6b73ef342d387147ed5b3fe0e6d13dab2d116d22c27dc96738bb80b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x95861fc2566e0563ad8e58b3f06148c10a931bfb', 'value': 329.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07adc2dd00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:41:38.000Z'}}, {'blockNum': '0x49fb6b', 'uniqueId': '0x7a804d699a119429dd68d5375848781e82af7a75a8850b9b3f5df90e3d84bef2:log:48', 'hash': '0x7a804d699a119429dd68d5375848781e82af7a75a8850b9b3f5df90e3d84bef2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xcd383376f2522f544bacc4814be3b934b7101f86', 'value': 79.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01dba52300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:44:10.000Z'}}, {'blockNum': '0x49fb6b', 'uniqueId': '0xcc470881be634ff85de8d935d406b0aab52657c6355943814032580599b476d3:log:114', 'hash': '0xcc470881be634ff85de8d935d406b0aab52657c6355943814032580599b476d3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9f9b0b71d17cf0502f9c8e43c839141630e7db58', 'value': 2.67712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ff4f600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:44:10.000Z'}}, {'blockNum': '0x49fb70', 'uniqueId': '0xfc105fde18009c24cea3ba14d7727719e1f0767da6cb7e21fb04091b8042208d:log:48', 'hash': '0xfc105fde18009c24cea3ba14d7727719e1f0767da6cb7e21fb04091b8042208d', 'from': '0x931b269e31f17d1f9215364e35b42c0672f4dc3d', 'to': '0x253e23cda8d3c44695a2c4d10c4918efde566763', 'value': 2035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2f618b9300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:45:17.000Z'}}, {'blockNum': '0x49fb75', 'uniqueId': '0x336ff2182dcd65f81c5f94af235bedbddfa2d7108f99735493272393b1b8c455:log:9', 'hash': '0x336ff2182dcd65f81c5f94af235bedbddfa2d7108f99735493272393b1b8c455', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x8adb01f9a5c4e8ff5fe0379521189e834c7c6bdf', 'value': 25.263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x96944760', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:46:21.000Z'}}, {'blockNum': '0x49fb81', 'uniqueId': '0x42146958ee333607c2f3537350266285404226eeb663c7dd5bdd89a89c12a95c:log:11', 'hash': '0x42146958ee333607c2f3537350266285404226eeb663c7dd5bdd89a89c12a95c', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x8adb01f9a5c4e8ff5fe0379521189e834c7c6bdf', 'value': 0.002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x030d40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:48:55.000Z'}}, {'blockNum': '0x49fb84', 'uniqueId': '0xa5f1d1d086354a1c2aafbe2ded19cc6a5707235d56b79179662d253bef62296f:log:28', 'hash': '0xa5f1d1d086354a1c2aafbe2ded19cc6a5707235d56b79179662d253bef62296f', 'from': '0x2cd0f0ec79c36d02ca9c2ecff97192abc0bd66fc', 'to': '0x490553a53898b3ef18bff3c7edd353061c718213', 'value': 13, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4d7c6d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:49:46.000Z'}}, {'blockNum': '0x49fb89', 'uniqueId': '0x8ba48c375b3f486a8974a2798f4460e82eda81cfe5c1f298ab1c2b92c3dbce8e:log:18', 'hash': '0x8ba48c375b3f486a8974a2798f4460e82eda81cfe5c1f298ab1c2b92c3dbce8e', 'from': '0x8adb01f9a5c4e8ff5fe0379521189e834c7c6bdf', 'to': '0x1bb58a7925388b7ceeb9643750db5211bdac8cb7', 'value': 25.263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x96944760', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:52:08.000Z'}}, {'blockNum': '0x49fb90', 'uniqueId': '0xf518979ab941bb434f3bb38343e4aac8898b2e712297d45320c151fc946a1adc:log:1', 'hash': '0xf518979ab941bb434f3bb38343e4aac8898b2e712297d45320c151fc946a1adc', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x005ba693b35376807eb17883951c5b9007d575ba', 'value': 222.359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x052d5ce860', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:54:18.000Z'}}, {'blockNum': '0x49fbb1', 'uniqueId': '0xfadddb35951cda48542d7f06367ada7c4458a1cb2ac1c7567ee777012e64151e:log:26', 'hash': '0xfadddb35951cda48542d7f06367ada7c4458a1cb2ac1c7567ee777012e64151e', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 14.68, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x577fe700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:05:03.000Z'}}, {'blockNum': '0x49fbb4', 'uniqueId': '0x3e9f26410881cd97f3c9bae6cd4d9033d24312e3b9c9060fc0b3d2ed7215aff6:log:85', 'hash': '0x3e9f26410881cd97f3c9bae6cd4d9033d24312e3b9c9060fc0b3d2ed7215aff6', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 14.68, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x577fe700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:05:51.000Z'}}, {'blockNum': '0x49fbbc', 'uniqueId': '0x3fa0ef57611215b0fb99f320a24bf48eb16df9dc020e10ce6d21cf7e35df1f3f:log:9', 'hash': '0x3fa0ef57611215b0fb99f320a24bf48eb16df9dc020e10ce6d21cf7e35df1f3f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x12a12562192bd96c0c9bda1f564681c256d71553', 'value': 165.2459438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03d8f14ccc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:08:01.000Z'}}, {'blockNum': '0x49fbc4', 'uniqueId': '0x9eaa49b67ed2d1c312dccd811f812fc5d2d1e2a11dc51a0f2e4ee1e47d412669:log:4', 'hash': '0x9eaa49b67ed2d1c312dccd811f812fc5d2d1e2a11dc51a0f2e4ee1e47d412669', 'from': '0xfeb6acfc316f38aa40061ed94a5f966d0a277b40', 'to': '0xe6d596641cdda066afc325ebfd0ff14c84617288', 'value': 11.19990958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x42c1b4ae', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:09:42.000Z'}}, {'blockNum': '0x49fbc6', 'uniqueId': '0xa4b5b38868fc97853afdfc2c2270cb5de2d06c80d88708455251d097a0012773:log:19', 'hash': '0xa4b5b38868fc97853afdfc2c2270cb5de2d06c80d88708455251d097a0012773', 'from': '0xb3710e97e8e864eba33f5e28b3d8fe94a94d3156', 'to': '0xcd431991cad8f0535402f2c8764565b9bb053112', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:10:48.000Z'}}, {'blockNum': '0x49fbc6', 'uniqueId': '0x36681a351b4c363eb068f9524e99ba211eeaa0ecd85cbdbe3d4d6b2a927d7897:log:21', 'hash': '0x36681a351b4c363eb068f9524e99ba211eeaa0ecd85cbdbe3d4d6b2a927d7897', 'from': '0xf9bb806edbf0059cf74c48805ccda77009ea2fea', 'to': '0xf3c5299352184a83e85e7df3e3dd03e36fd88c1d', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:10:48.000Z'}}, {'blockNum': '0x49fbcd', 'uniqueId': '0xa0cfb36c78985206f8dc45fd61bc0d352b0ec86ca44c8b6c5a55f4779cea91b7:log:1', 'hash': '0xa0cfb36c78985206f8dc45fd61bc0d352b0ec86ca44c8b6c5a55f4779cea91b7', 'from': '0xcaaa5858dc686d8c3bd78572d192e3003528c90e', 'to': '0x7d17f48a9434ade5a409f45297c9b10897a06fb7', 'value': 2800.00003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x41314cfbb8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:12:35.000Z'}}, {'blockNum': '0x49fbcd', 'uniqueId': '0x6a3deaa520466c8a55b2952b348c4567641f1abd6ecd64aad12ca1f3ae8c4b34:log:16', 'hash': '0x6a3deaa520466c8a55b2952b348c4567641f1abd6ecd64aad12ca1f3ae8c4b34', 'from': '0xb3710e97e8e864eba33f5e28b3d8fe94a94d3156', 'to': '0xcd431991cad8f0535402f2c8764565b9bb053112', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:12:35.000Z'}}, {'blockNum': '0x49fbcd', 'uniqueId': '0x0d5352359fabf55ec1406083c7af20e8d3df31659b9a9a7fbd9d94a945c07697:log:21', 'hash': '0x0d5352359fabf55ec1406083c7af20e8d3df31659b9a9a7fbd9d94a945c07697', 'from': '0x12a12562192bd96c0c9bda1f564681c256d71553', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 166.98840123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03e354143b', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:12:35.000Z'}}, {'blockNum': '0x49fbd5', 'uniqueId': '0x0a081f71457f43a39113ddb93293cb8cc37b78cd55cf2ddd5ca3aa6375f20373:log:48', 'hash': '0x0a081f71457f43a39113ddb93293cb8cc37b78cd55cf2ddd5ca3aa6375f20373', 'from': '0x3d51082f231742328d4568030618bbf0d01432cf', 'to': '0x5c847832aa0daeeae54e7f4674c68698ed21dfb5', 'value': 11, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4190ab00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:14:57.000Z'}}, {'blockNum': '0x49fbd9', 'uniqueId': '0xac04fd387ba5850613adbaf505b77c43a140d9736369c6123705e61df15cceb7:log:40', 'hash': '0xac04fd387ba5850613adbaf505b77c43a140d9736369c6123705e61df15cceb7', 'from': '0x2a105a4f6811ad015d24399daeab190c042b72f3', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9502f900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:15:56.000Z'}}, {'blockNum': '0x49fbdd', 'uniqueId': '0x0c69f63e232d0a7312627f6cd13617d5f5c6efa6a13db9b9415d7f5267fdea15:log:9', 'hash': '0x0c69f63e232d0a7312627f6cd13617d5f5c6efa6a13db9b9415d7f5267fdea15', 'from': '0x1fc4032ae026db1eeb7913d44ac0480ba78bb16e', 'to': '0x3008398423da1c19bd2b00f6994721bcf08ad3b6', 'value': 404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0968071400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:16:39.000Z'}}, {'blockNum': '0x49fbdd', 'uniqueId': '0x50a46f0d326b5fd21291269f7f44bb4a3fb539bb37887e32f6465abb0b6b13ff:log:19', 'hash': '0x50a46f0d326b5fd21291269f7f44bb4a3fb539bb37887e32f6465abb0b6b13ff', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xfcfc5ccbc8885955d9345e112c6d1553a7c54010', 'value': 155.934939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03a171d58c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:16:39.000Z'}}, {'blockNum': '0x49fbdd', 'uniqueId': '0x4004b8194098b38b747e5bc392479c634ef0b6fefe92c3ea5b4ec47a8992800d:log:27', 'hash': '0x4004b8194098b38b747e5bc392479c634ef0b6fefe92c3ea5b4ec47a8992800d', 'from': '0xc597ce61d5264d69d96128aaa8b65b1c8b87df50', 'to': '0x2bca86e5e6cfbe6a799f3849aed4e9efea684968', 'value': 5.9868182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x23af28dc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:16:39.000Z'}}, {'blockNum': '0x49fbde', 'uniqueId': '0x82fdc05c07ad79489ae48026a2f024db446690b2a9a8ef425d135588a96cc68d:log:18', 'hash': '0x82fdc05c07ad79489ae48026a2f024db446690b2a9a8ef425d135588a96cc68d', 'from': '0x005ba693b35376807eb17883951c5b9007d575ba', 'to': '0xa3e113ed3dc84f147cccf0b9ad07ae691a51c2f9', 'value': 222.359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x052d5ce860', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:16:54.000Z'}}, {'blockNum': '0x49fbe1', 'uniqueId': '0x0aa3a1b6614de808442aa45778323a96c6214d83340fbba5fc07fd55bfa378cc:log:16', 'hash': '0x0aa3a1b6614de808442aa45778323a96c6214d83340fbba5fc07fd55bfa378cc', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x557081d14fc70b9ab03bdd1d677c9abaa2c7bb25', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:17:26.000Z'}}, {'blockNum': '0x49fbe1', 'uniqueId': '0xcb53241f3ef8dca017a7ac568ad993cefa10fba1a78acae7c0a66bc2659c0856:log:25', 'hash': '0xcb53241f3ef8dca017a7ac568ad993cefa10fba1a78acae7c0a66bc2659c0856', 'from': '0x765182e53f5e8902503a184324bf0310150b0abc', 'to': '0x55a274a6164b8263606c6335ab41f3770c36cf9d', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12a05f2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:17:26.000Z'}}, {'blockNum': '0x49fbe2', 'uniqueId': '0xc64164feb4a6cab15d3995bc250a0abff57150d1650550aaba617a4f19ca6c25:log:26', 'hash': '0xc64164feb4a6cab15d3995bc250a0abff57150d1650550aaba617a4f19ca6c25', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x3dfc124d107b90c5717b3a037204fe2f5d94fd60', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:17:55.000Z'}}, {'blockNum': '0x49fbe2', 'uniqueId': '0xb7a5d6d2d911a2c1b16a8ebf4d014e4c1e4f3f976ec8ef8683b7049832ce195f:log:31', 'hash': '0xb7a5d6d2d911a2c1b16a8ebf4d014e4c1e4f3f976ec8ef8683b7049832ce195f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x00000a94230f3a5cd61bb0a3b39767e0684f7234', 'value': 395.51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x09356c5dc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:17:55.000Z'}}, {'blockNum': '0x49fbe3', 'uniqueId': '0x80835b4cfe8386978c9ae5cd6096eda6d47b8c87405627b1934dd3b8ecab577a:log:4', 'hash': '0x80835b4cfe8386978c9ae5cd6096eda6d47b8c87405627b1934dd3b8ecab577a', 'from': '0xaac8533e4d54429a1664d3f8fb6929a46fd6d019', 'to': '0x71bb9aaa09e5424f6a1846fe5c9851bb6a1b2a83', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05d21dba00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:18:20.000Z'}}, {'blockNum': '0x49fbe8', 'uniqueId': '0xbbc3291e9db4ab775c402d207ede3503e9b27c77ec97686d72f25c2dfe0c989f:log:23', 'hash': '0xbbc3291e9db4ab775c402d207ede3503e9b27c77ec97686d72f25c2dfe0c989f', 'from': '0x3dfc124d107b90c5717b3a037204fe2f5d94fd60', 'to': '0x68108a3fb03ac12e90e12f56e91b3a8e2a73876c', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:19:37.000Z'}}, {'blockNum': '0x49fbe8', 'uniqueId': '0x70bfafe78ea1657ba3226cc78c7ee83a00acaeedc10158dff3508f379fc15260:log:30', 'hash': '0x70bfafe78ea1657ba3226cc78c7ee83a00acaeedc10158dff3508f379fc15260', 'from': '0x00000a94230f3a5cd61bb0a3b39767e0684f7234', 'to': '0xcfef471878edc247692a952553f14965f78f83fd', 'value': 395.51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x09356c5dc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:19:37.000Z'}}, {'blockNum': '0x49fbec', 'uniqueId': '0x81425dd09b89d349ebbd680449dd4a7aaf7d0aa396d4429af97abbe234f9a105:log:16', 'hash': '0x81425dd09b89d349ebbd680449dd4a7aaf7d0aa396d4429af97abbe234f9a105', 'from': '0xfcfc5ccbc8885955d9345e112c6d1553a7c54010', 'to': '0x7b0b12d3009a8c9acfb87f861dbb34d43d7746cc', 'value': 155.934939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03a171d58c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:20:31.000Z'}}, {'blockNum': '0x49fbee', 'uniqueId': '0x7155da29c01e2868afd832d703ff5c0b665b1dfddccab8fd84b2b2661d8dfa66:log:17', 'hash': '0x7155da29c01e2868afd832d703ff5c0b665b1dfddccab8fd84b2b2661d8dfa66', 'from': '0x3b48189bf7ad181b0c03db6af0cf5084689cc136', 'to': '0x57cdb5c8418c2264a644bb28328f21fdb13d16ff', 'value': 28.997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xacd5e920', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:20:57.000Z'}}, {'blockNum': '0x49fbf1', 'uniqueId': '0x3963b07b1ddd3a2711b73d28ec4a6bdb8c762f9364ef5dd975908af8c3d4e8f4:log:28', 'hash': '0x3963b07b1ddd3a2711b73d28ec4a6bdb8c762f9364ef5dd975908af8c3d4e8f4', 'from': '0xf3c5299352184a83e85e7df3e3dd03e36fd88c1d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:21:26.000Z'}}, {'blockNum': '0x49fbf6', 'uniqueId': '0xd55b332c8af21a6e17ec15c2c66cfcb845be688a008d0443a133d0f9330c4f23:log:3', 'hash': '0xd55b332c8af21a6e17ec15c2c66cfcb845be688a008d0443a133d0f9330c4f23', 'from': '0x1435881b8ba4e71c8c8a1c2b682cb607a51b3bd1', 'to': '0xd32ab3b727ae81c01526dd3582e370fb7561153b', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:22:59.000Z'}}, {'blockNum': '0x49fbf9', 'uniqueId': '0x35645eb13b97d1e9f8226dbd3a35dc3bdc075a8393a5613489c753a45f92e859:log:66', 'hash': '0x35645eb13b97d1e9f8226dbd3a35dc3bdc075a8393a5613489c753a45f92e859', 'from': '0x71bb9aaa09e5424f6a1846fe5c9851bb6a1b2a83', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05d21dba00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:23:50.000Z'}}, {'blockNum': '0x49fbfb', 'uniqueId': '0x8d43edd4fffdd70bf72c4a07af53c02e1ced79a92e812b566465a8992f2cc6ce:log:9', 'hash': '0x8d43edd4fffdd70bf72c4a07af53c02e1ced79a92e812b566465a8992f2cc6ce', 'from': '0x7d17f48a9434ade5a409f45297c9b10897a06fb7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2800.00003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x41314cfbb8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:24:05.000Z'}}, {'blockNum': '0x49fbfd', 'uniqueId': '0x0a4e7b2f0d80f61fd2a923bfc8fddf53f5d092861942996b63686bd6f59d69bf:log:4', 'hash': '0x0a4e7b2f0d80f61fd2a923bfc8fddf53f5d092861942996b63686bd6f59d69bf', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 166.98840123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03e354143b', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:24:33.000Z'}}, {'blockNum': '0x49fbfe', 'uniqueId': '0x4a39430a600862118bd2851b4ab7202a72e59518a27989a7b418dc778faf6c0c:log:28', 'hash': '0x4a39430a600862118bd2851b4ab7202a72e59518a27989a7b418dc778faf6c0c', 'from': '0x55a274a6164b8263606c6335ab41f3770c36cf9d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1135.98397946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1a72fdfdfa', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:24:42.000Z'}}, {'blockNum': '0x49fbfe', 'uniqueId': '0x0d8a9282b09ef5c696abd628399d4fdf26dad648b8753602ed57630451be85fb:log:29', 'hash': '0x0d8a9282b09ef5c696abd628399d4fdf26dad648b8753602ed57630451be85fb', 'from': '0xcfef471878edc247692a952553f14965f78f83fd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 395.51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x09356c5dc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:24:42.000Z'}}, {'blockNum': '0x49fc01', 'uniqueId': '0x2d71370e73625fead0bb655a053dfab7f86b5fbe5c48319dbe4cf0084edbd7e0:log:2', 'hash': '0x2d71370e73625fead0bb655a053dfab7f86b5fbe5c48319dbe4cf0084edbd7e0', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x0072ffb8069bdd4f791fbf9352a7226c7f46ecd9', 'value': 216.00582183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05077eba27', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:25:31.000Z'}}, {'blockNum': '0x49fc02', 'uniqueId': '0x0e806a3825db39fc0551c9627c922ba59e8ba5729d7f29615f3bb47819358fd4:log:2', 'hash': '0x0e806a3825db39fc0551c9627c922ba59e8ba5729d7f29615f3bb47819358fd4', 'from': '0xdc4ec8b1471b18d52a240880271062ae4eb161a0', 'to': '0x904659de577f76d297caf7bc587243af2295cf22', 'value': 31, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb8c63f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:25:46.000Z'}}, {'blockNum': '0x49fc03', 'uniqueId': '0x8f359e955938e5c0fa1b1f974260499581095ab7816435bbfb1fa9fe92b433dc:log:2', 'hash': '0x8f359e955938e5c0fa1b1f974260499581095ab7816435bbfb1fa9fe92b433dc', 'from': '0x1ec56189772c262bbecbcc68d636c45d93264524', 'to': '0xdd3195a9c254722262d2f78050bb298f63d53981', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:26:15.000Z'}}, {'blockNum': '0x49fc03', 'uniqueId': '0xdb45676085e31162f05ec3cd08914d8130cc95a962104e9c4c2b5b19bf46aaa1:log:32', 'hash': '0xdb45676085e31162f05ec3cd08914d8130cc95a962104e9c4c2b5b19bf46aaa1', 'from': '0x390b8884f3ebb86aba8317c189e7bd2c93b92fc0', 'to': '0x3966d326b4d73dbb114ea35a177ec181d7f00708', 'value': 15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x59682f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:26:15.000Z'}}, {'blockNum': '0x49fc03', 'uniqueId': '0x0e7062b0c2b18366599b7592c47a9b8fd9780fb640dd59bcc24d2c69bb0866c5:log:61', 'hash': '0x0e7062b0c2b18366599b7592c47a9b8fd9780fb640dd59bcc24d2c69bb0866c5', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xc3cabef78d27b8c09e4677bba2b9881766615cc5', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:26:15.000Z'}}, {'blockNum': '0x49fc05', 'uniqueId': '0x8c8e22978ad3b1bc4932775ce1e33ffb4b131ed6026756de30cc4d2e89994c7d:log:27', 'hash': '0x8c8e22978ad3b1bc4932775ce1e33ffb4b131ed6026756de30cc4d2e89994c7d', 'from': '0x2a105a4f6811ad015d24399daeab190c042b72f3', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:26:54.000Z'}}, {'blockNum': '0x49fc08', 'uniqueId': '0xb8c2ac29b6823204a852c2060fe427418c46f8a3fbf32ce82224594853f0fd83:log:3', 'hash': '0xb8c2ac29b6823204a852c2060fe427418c46f8a3fbf32ce82224594853f0fd83', 'from': '0x0072ffb8069bdd4f791fbf9352a7226c7f46ecd9', 'to': '0x38db1e8aac7a6f612439e335765afdf3f1472d01', 'value': 216.00582183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05077eba27', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:27:41.000Z'}}, {'blockNum': '0x49fc08', 'uniqueId': '0xaddc3f439433d837f3332ab85eb0aef7983b35b3e012023d9c7233534670948d:log:16', 'hash': '0xaddc3f439433d837f3332ab85eb0aef7983b35b3e012023d9c7233534670948d', 'from': '0xc6133dd3cfada27fc0a1f053bc00db1b1c876431', 'to': '0xce6b62a68a719fa1fd893195cfc86d87f9640aeb', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:27:41.000Z'}}, {'blockNum': '0x49fc0a', 'uniqueId': '0x8472d4d5baa81c605e68eca5130176d20807aa14f5a4b2c5e0c6e8f96d673280:log:24', 'hash': '0x8472d4d5baa81c605e68eca5130176d20807aa14f5a4b2c5e0c6e8f96d673280', 'from': '0xc3cabef78d27b8c09e4677bba2b9881766615cc5', 'to': '0x898b2966cf1685cac737d524f911a76833a24c43', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:28:01.000Z'}}, {'blockNum': '0x49fc0e', 'uniqueId': '0x54b5e778f635b09fb030c1c76891e566aaea0eb544454132018988d4c5ff29e1:log:4', 'hash': '0x54b5e778f635b09fb030c1c76891e566aaea0eb544454132018988d4c5ff29e1', 'from': '0x244ea573f91e4bff6582f3303e3afc3db5b27904', 'to': '0x40d96322ca94d9d144a84dd5faf4208fedaba7ec', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:29:19.000Z'}}, {'blockNum': '0x49fc1a', 'uniqueId': '0x2dd113cf709bfba2481cf5ff2fca1c4f4bf643c67c83115192ed65077c7650c4:log:32', 'hash': '0x2dd113cf709bfba2481cf5ff2fca1c4f4bf643c67c83115192ed65077c7650c4', 'from': '0xdd3195a9c254722262d2f78050bb298f63d53981', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:33:08.000Z'}}, {'blockNum': '0x49fc1a', 'uniqueId': '0x99d64bf4c2e9265d1417073e437abdf87f629e950507329bceeed7a923cde120:log:33', 'hash': '0x99d64bf4c2e9265d1417073e437abdf87f629e950507329bceeed7a923cde120', 'from': '0x38db1e8aac7a6f612439e335765afdf3f1472d01', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 216.00582183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05077eba27', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:33:08.000Z'}}, {'blockNum': '0x49fc1b', 'uniqueId': '0x1d236da32a0471a58a98d78707834726aec0a65cd528a7aa8376b99acf054e9e:log:31', 'hash': '0x1d236da32a0471a58a98d78707834726aec0a65cd528a7aa8376b99acf054e9e', 'from': '0xcd431991cad8f0535402f2c8764565b9bb053112', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4614ff8200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:33:32.000Z'}}, {'blockNum': '0x49fc1b', 'uniqueId': '0x56e74dc9205537ff7d231a70ee5c5d3abb573ffc5364a858960155b4eb57a40d:log:33', 'hash': '0x56e74dc9205537ff7d231a70ee5c5d3abb573ffc5364a858960155b4eb57a40d', 'from': '0x68108a3fb03ac12e90e12f56e91b3a8e2a73876c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:33:32.000Z'}}, {'blockNum': '0x49fc1b', 'uniqueId': '0x803793f62501308c0c38db0c120e5b033ddc4e1e32e02697377b5c61e33b6f74:log:34', 'hash': '0x803793f62501308c0c38db0c120e5b033ddc4e1e32e02697377b5c61e33b6f74', 'from': '0x7b0b12d3009a8c9acfb87f861dbb34d43d7746cc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 155.934939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03a171d58c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:33:32.000Z'}}, {'blockNum': '0x49fc1b', 'uniqueId': '0x3bf47ba7d89555894759f8958f3e275d4a56068e2bd1e09366d28a387c38f4a2:log:35', 'hash': '0x3bf47ba7d89555894759f8958f3e275d4a56068e2bd1e09366d28a387c38f4a2', 'from': '0xd32ab3b727ae81c01526dd3582e370fb7561153b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:33:32.000Z'}}, {'blockNum': '0x49fc22', 'uniqueId': '0xe8b9b3886685d6562b6860bf046622202dc30693dcf785807c0203ecb8227dd8:log:14', 'hash': '0xe8b9b3886685d6562b6860bf046622202dc30693dcf785807c0203ecb8227dd8', 'from': '0xff46eb0f9273221e214d2e64cfec072d160062b7', 'to': '0xdcd04cb26a0ce1ba50422424210cf6f6285414f8', 'value': 14.75478286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x57f2030e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:35:31.000Z'}}, {'blockNum': '0x49fc22', 'uniqueId': '0xca4e95a70d8a2e3c0df7577ff69d521886814c9a70c7713e9acbbccc1769acba:log:15', 'hash': '0xca4e95a70d8a2e3c0df7577ff69d521886814c9a70c7713e9acbbccc1769acba', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xff46eb0f9273221e214d2e64cfec072d160062b7', 'value': 1.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x067f3540', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:35:31.000Z'}}, {'blockNum': '0x49fc32', 'uniqueId': '0x96169b35659c406bcf931042632b65bfef38329e921408ffbb3d70e122ed0eed:log:29', 'hash': '0x96169b35659c406bcf931042632b65bfef38329e921408ffbb3d70e122ed0eed', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x56b2fe8bc076cd5f5ef336319fe41eda1e3074a0', 'value': 12.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4c4b4000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:39:26.000Z'}}, {'blockNum': '0x49fc41', 'uniqueId': '0x9e792f2fd95337a705bc5fc54b4a2fc379012788d8bf0ea0d4b11b2a87b84e3b:log:26', 'hash': '0x9e792f2fd95337a705bc5fc54b4a2fc379012788d8bf0ea0d4b11b2a87b84e3b', 'from': '0xc31c786613f537391958d74610e468175c576d9f', 'to': '0xa62a1a841412700ce7d9f69c23f8484809be5292', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:42:34.000Z'}}, {'blockNum': '0x49fc48', 'uniqueId': '0xf20ef7730f291d1996cdb77e854eb929e691fc0fc56b176dceccf2c2e551332b:log:59', 'hash': '0xf20ef7730f291d1996cdb77e854eb929e691fc0fc56b176dceccf2c2e551332b', 'from': '0x56b2fe8bc076cd5f5ef336319fe41eda1e3074a0', 'to': '0x9ef31bfafb22421b5b53264b0c1fbbaa4a9355c6', 'value': 12.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4c4b4000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:44:23.000Z'}}, {'blockNum': '0x49fc4d', 'uniqueId': '0x9e2422052e039d483cec7e2df4e99d4286b4da277e15f44eb78f12a14d294525:log:21', 'hash': '0x9e2422052e039d483cec7e2df4e99d4286b4da277e15f44eb78f12a14d294525', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x2cb5cbe355c448c40d1c44193039ce4fdbcd2625', 'value': 0.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x042c1d80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:45:36.000Z'}}, {'blockNum': '0x49fc5f', 'uniqueId': '0xa96c8adc4e85387183f490e8c8e5cded83aea3da3693ffa796e4d08e37c4d0a2:log:52', 'hash': '0xa96c8adc4e85387183f490e8c8e5cded83aea3da3693ffa796e4d08e37c4d0a2', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x879d325832a387b2af6a5ad4ce05824bc52e381c', 'value': 0.00024887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6137', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:49:55.000Z'}}, {'blockNum': '0x49fc61', 'uniqueId': '0xbf154af6ea185294435654980eca56cc866eee980bffd645e6e79d79ef6c92d4:log:41', 'hash': '0xbf154af6ea185294435654980eca56cc866eee980bffd645e6e79d79ef6c92d4', 'from': '0x7976b4623fb8781e8836ac2092f833db16fe58fe', 'to': '0x14066b63024ce80131cea92b61a934c056b6bacb', 'value': 288.40082199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06b700bb17', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:50:08.000Z'}}, {'blockNum': '0x49fc62', 'uniqueId': '0x326ec7f5e52c239a16107c833fc1606f19b7f04bfe9d4cd05167100a6818b475:log:4', 'hash': '0x326ec7f5e52c239a16107c833fc1606f19b7f04bfe9d4cd05167100a6818b475', 'from': '0x98c6846bd8191d975cd2dfc043c85e80edc15c5f', 'to': '0x33285fbbc23401d7016a27c8e56fb7092b4d76f1', 'value': 420, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x09c7652400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:50:19.000Z'}}, {'blockNum': '0x49fc73', 'uniqueId': '0x71cceeb5c444bcfd3def5bf0f517c934417e8169c95a3c2a794023abd6d8f33d:log:0', 'hash': '0x71cceeb5c444bcfd3def5bf0f517c934417e8169c95a3c2a794023abd6d8f33d', 'from': '0x24cea444fa2919edea10e97065e280bbfc5e8793', 'to': '0xdc151ec029bc8aa8ef01ea534288df9fa79e7b8d', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:54:39.000Z'}}, {'blockNum': '0x49fc76', 'uniqueId': '0xe2d9964fbe271b3894f1c5f1a38d7ea021c7072809836d721d93e75572a0af9b:log:7', 'hash': '0xe2d9964fbe271b3894f1c5f1a38d7ea021c7072809836d721d93e75572a0af9b', 'from': '0x2cb5cbe355c448c40d1c44193039ce4fdbcd2625', 'to': '0xd0d9c1154be9398cd2e7c833d2cc47f488353067', 'value': 0.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x042c1d80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:55:44.000Z'}}, {'blockNum': '0x49fc90', 'uniqueId': '0x135bd29fff03868c4dabed49340efdcea669db4814798b2af71942aaa810b550:log:23', 'hash': '0x135bd29fff03868c4dabed49340efdcea669db4814798b2af71942aaa810b550', 'from': '0xdc151ec029bc8aa8ef01ea534288df9fa79e7b8d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:03:55.000Z'}}, {'blockNum': '0x49fc98', 'uniqueId': '0x8df2044d6151be199032ff05e391e415b442bbc8dce74898392bd776dcca04e7:log:27', 'hash': '0x8df2044d6151be199032ff05e391e415b442bbc8dce74898392bd776dcca04e7', 'from': '0xa0f56f786ed6206bf9a30d6e875dd8dcc644d6c9', 'to': '0x554265957b72a43dee3a22af13c3fc980381ae4c', 'value': 41.38052704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xf6a5ac60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:05:07.000Z'}}, {'blockNum': '0x49fca8', 'uniqueId': '0x121f586f7d2231e6fe8e0b1040562016fc76daf8cba074cee04027750a6748b0:log:1', 'hash': '0x121f586f7d2231e6fe8e0b1040562016fc76daf8cba074cee04027750a6748b0', 'from': '0x2e489afbdcbe851948158afe61aacadf671f7df4', 'to': '0xde36bd8b28afe22467ee7f04c15fd090de44a922', 'value': 900.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x14f47a4640', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:08:55.000Z'}}, {'blockNum': '0x49fcaa', 'uniqueId': '0x08b508bc43acaaf350e6d54181aa2ec9a1560c77c5b90ca3a46f81950db08c61:log:9', 'hash': '0x08b508bc43acaaf350e6d54181aa2ec9a1560c77c5b90ca3a46f81950db08c61', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x9e2e639867b84cf479967125df1cada64a1e20a1', 'value': 3556.783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x52d0142760', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:09:12.000Z'}}, {'blockNum': '0x49fcaf', 'uniqueId': '0xc21b4581c7df69ed7fce89d6796e808d66b664b6c31d3045508950c240edf99f:log:17', 'hash': '0xc21b4581c7df69ed7fce89d6796e808d66b664b6c31d3045508950c240edf99f', 'from': '0x30d14dd10f73fd46ebe19b1e0b3802e2057b1f42', 'to': '0x92000ce4b4777e32c828d2ede8c29a17c6432c15', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:10:03.000Z'}}, {'blockNum': '0x49fcb0', 'uniqueId': '0x90eb4dcc980fea06ad9fd3ea8ff624b145b70fef709733eb6470910850244eb7:log:10', 'hash': '0x90eb4dcc980fea06ad9fd3ea8ff624b145b70fef709733eb6470910850244eb7', 'from': '0x9e2e639867b84cf479967125df1cada64a1e20a1', 'to': '0xbfcc008a5225e994ea616fc08a65b267b2a62206', 'value': 3556.783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x52d0142760', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:10:20.000Z'}}, {'blockNum': '0x49fcb2', 'uniqueId': '0x3babb9223ac074ca9c44b65ba66224031822c4dc9346e782c5ff83362aabc947:log:43', 'hash': '0x3babb9223ac074ca9c44b65ba66224031822c4dc9346e782c5ff83362aabc947', 'from': '0x21e729ca55cd726233ebbddb4e41de4ab6c72d0b', 'to': '0x14066b63024ce80131cea92b61a934c056b6bacb', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:10:36.000Z'}}, {'blockNum': '0x49fcb6', 'uniqueId': '0x48142c5109318f1869e88dd01e66925d63c620454ae27540e2dd74cae07e503c:log:24', 'hash': '0x48142c5109318f1869e88dd01e66925d63c620454ae27540e2dd74cae07e503c', 'from': '0x554265957b72a43dee3a22af13c3fc980381ae4c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41.38052704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xf6a5ac60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:11:54.000Z'}}, {'blockNum': '0x49fccf', 'uniqueId': '0xd44083280116296ac0c07a21e27ccf2d4972e2cd5cad19b019ef2b3149d31692:log:19', 'hash': '0xd44083280116296ac0c07a21e27ccf2d4972e2cd5cad19b019ef2b3149d31692', 'from': '0x58c3d329b0fcb8d053b958d4616c5eb121c3c94d', 'to': '0x14066b63024ce80131cea92b61a934c056b6bacb', 'value': 285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06a2bb7d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:19:39.000Z'}}, {'blockNum': '0x49fcd3', 'uniqueId': '0x79057005bba0727d881a2778505960e8b8a0691f4253d95f1f9eac750471cfec:log:1', 'hash': '0x79057005bba0727d881a2778505960e8b8a0691f4253d95f1f9eac750471cfec', 'from': '0xe6b57f54fe3d5dbd56144a1f3dcf77bcf9e83cfb', 'to': '0x2efc555ce366546b2f5ce0d08a5373e14fc2af3a', 'value': 85, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01faa3b500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:20:39.000Z'}}, {'blockNum': '0x49fce7', 'uniqueId': '0x7bf00e94ccbea0d0d40daf6775326ac89249b8d1cdf13c593fc91e9f8d71c035:log:10', 'hash': '0x7bf00e94ccbea0d0d40daf6775326ac89249b8d1cdf13c593fc91e9f8d71c035', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x07a624a1fb32258506ea500d944aed61ae9c8fb2', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:25:26.000Z'}}, {'blockNum': '0x49fce8', 'uniqueId': '0x9f197f605b799f612a0a8ec20bdb26d46e4b5f02678bcdfbd990ca262e4f8734:log:5', 'hash': '0x9f197f605b799f612a0a8ec20bdb26d46e4b5f02678bcdfbd990ca262e4f8734', 'from': '0x92000ce4b4777e32c828d2ede8c29a17c6432c15', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:26:13.000Z'}}, {'blockNum': '0x49fcfc', 'uniqueId': '0xb0ce0d6b6812c47475fa93671355fac55581f4252a925765e89e90ee608d50e2:log:9', 'hash': '0xb0ce0d6b6812c47475fa93671355fac55581f4252a925765e89e90ee608d50e2', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xbde5c8ebdfddb83d2a6ac2e52592228138509844', 'value': 116.969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b93087a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:31:49.000Z'}}, {'blockNum': '0x49fcfd', 'uniqueId': '0x926513d06a7ea878df3d382d1b82e84f6c6b358b34099224afd8cf0814b12c12:log:37', 'hash': '0x926513d06a7ea878df3d382d1b82e84f6c6b358b34099224afd8cf0814b12c12', 'from': '0x07a624a1fb32258506ea500d944aed61ae9c8fb2', 'to': '0x0d12eee83d6ed28e6eb7cb5af385cf898caf5535', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:32:00.000Z'}}, {'blockNum': '0x49fd00', 'uniqueId': '0x42bc8c01ee28c64c86d1b288ff38a85675482b9abf002ec15f5d9e275d4382ca:log:10', 'hash': '0x42bc8c01ee28c64c86d1b288ff38a85675482b9abf002ec15f5d9e275d4382ca', 'from': '0x6941b101994624bd4be7d71883ecea31f563b53f', 'to': '0x20877861911adb00db38d41b16fe34de9f7ef2b9', 'value': 7.64596883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2d92d293', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:32:37.000Z'}}, {'blockNum': '0x49fd09', 'uniqueId': '0xff0aca0e7e926036782b97375e85070b20d7692efaa8d5b5ef56e621c7baa09b:log:0', 'hash': '0xff0aca0e7e926036782b97375e85070b20d7692efaa8d5b5ef56e621c7baa09b', 'from': '0x2ab0707042cfa47b49176888d964e3622745f3cc', 'to': '0x203053679eb15c3decf20b91d89069d0009a9254', 'value': 125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02e90edd00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:36:18.000Z'}}, {'blockNum': '0x49fd0a', 'uniqueId': '0x164a2847936197389744335102c1a37bdf65f30fed2a6bd7e1801efabb0c8cd3:log:43', 'hash': '0x164a2847936197389744335102c1a37bdf65f30fed2a6bd7e1801efabb0c8cd3', 'from': '0xe0f82df37f05a1cfb6b88cab50a59f7c3fe8c6b7', 'to': '0xbfa30807cae1d4351620d32bb7985bfaf28f74aa', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:36:54.000Z'}}, {'blockNum': '0x49fd14', 'uniqueId': '0x7592526d90cfbbed88d4df3ca72afeed1a749ff7ff4fcd0cd9e32529dab92774:log:38', 'hash': '0x7592526d90cfbbed88d4df3ca72afeed1a749ff7ff4fcd0cd9e32529dab92774', 'from': '0x1e06506ac0a8f6ccfe031b070fcab99d95e15c51', 'to': '0xb2080e9a9034ea639a99d62e5572c4aa8e757698', 'value': 1246.03633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d02f48d68', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:39:35.000Z'}}, {'blockNum': '0x49fd16', 'uniqueId': '0xc47578429debcadada24c8c86e29bccecd3a23d408387911ee3d48747aade928:log:59', 'hash': '0xc47578429debcadada24c8c86e29bccecd3a23d408387911ee3d48747aade928', 'from': '0x1d67d4c68b4003d20ca7c54ef080314260cae5c8', 'to': '0x155ea4c3308b9e4e0d8d182cf742cac3344af85f', 'value': 160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03b9aca000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:40:02.000Z'}}, {'blockNum': '0x49fd17', 'uniqueId': '0xd3d5be7ec08cda64433e8933be766310bd449cd96cc7506f9e7f1af4269e0821:log:9', 'hash': '0xd3d5be7ec08cda64433e8933be766310bd449cd96cc7506f9e7f1af4269e0821', 'from': '0x0d12eee83d6ed28e6eb7cb5af385cf898caf5535', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:40:09.000Z'}}, {'blockNum': '0x49fd17', 'uniqueId': '0x2a689e7b8cfa70c17136321e683f0dc166d5315b6a57b76d3c75ab9da00aaee4:log:10', 'hash': '0x2a689e7b8cfa70c17136321e683f0dc166d5315b6a57b76d3c75ab9da00aaee4', 'from': '0xb2080e9a9034ea639a99d62e5572c4aa8e757698', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1246.03633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d02f48d68', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:40:09.000Z'}}, {'blockNum': '0x49fd17', 'uniqueId': '0xc47415d77ef14e8a7d52e3120a7390ef119043c323ee70ef713ab591a7622288:log:45', 'hash': '0xc47415d77ef14e8a7d52e3120a7390ef119043c323ee70ef713ab591a7622288', 'from': '0x25eb666384ea7d54739d5271763e6bd3ea00e2e4', 'to': '0x1a3a8bbb31ffafd8e4e11f0580d36d1d08c5c006', 'value': 407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0979e8b700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:40:09.000Z'}}, {'blockNum': '0x49fd1d', 'uniqueId': '0x4a8efae6e78e3cb1262859efa1162218c10a65079ccd32b7809963edc9a4842b:log:89', 'hash': '0x4a8efae6e78e3cb1262859efa1162218c10a65079ccd32b7809963edc9a4842b', 'from': '0xa0f777bde97f5c3a7642686fe849723891257c5a', 'to': '0x7fcecc848ef9632ef130e3bcfb32e020a70dfff9', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:42:09.000Z'}}, {'blockNum': '0x49fd22', 'uniqueId': '0x70c70e2c1e3f4e64efa774902ea37fe11db06afc55dbabb087ee0dd030393894:log:51', 'hash': '0x70c70e2c1e3f4e64efa774902ea37fe11db06afc55dbabb087ee0dd030393894', 'from': '0xffb22880d9c4232b4369e143bfd6059eeae0502f', 'to': '0x5847d3b773f96264573305840bc3c99f01cc6fb1', 'value': 0.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02faf080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:43:15.000Z'}}, {'blockNum': '0x49fd24', 'uniqueId': '0x42668f8c83449139d87892c60b2b78e250c96fb5a10dbf753b3152599c11b0f2:log:27', 'hash': '0x42668f8c83449139d87892c60b2b78e250c96fb5a10dbf753b3152599c11b0f2', 'from': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'to': '0xebacc5a667c03ae26316c5a055d292b5f2a1e7cf', 'value': 1512.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x23356a1500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:43:30.000Z'}}, {'blockNum': '0x49fd24', 'uniqueId': '0xb64b8033b87631099e681f976728c6449550feb4654dcf55a3732e1485c5b829:log:42', 'hash': '0xb64b8033b87631099e681f976728c6449550feb4654dcf55a3732e1485c5b829', 'from': '0x443bf1cfad0d711dd2bda4a6dcdbbd03f99024c0', 'to': '0xb06ec0ef43ed41476d62fb82e99acd931196d7cf', 'value': 125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02e90edd00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:43:30.000Z'}}, {'blockNum': '0x49fd27', 'uniqueId': '0xa9808be3dd8f9539553b3662c865106f70d7e03402898f8e8fe9815e77ba68e3:log:43', 'hash': '0xa9808be3dd8f9539553b3662c865106f70d7e03402898f8e8fe9815e77ba68e3', 'from': '0x285cbde4a7ba2383e965ae4c0ec476be9034a8d3', 'to': '0x7eea4cee8899533dc505f61022714965049a5c4e', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:44:50.000Z'}}, {'blockNum': '0x49fd3b', 'uniqueId': '0xdb97d2cb3d973bd0a2f153f3ac5813dc3ac57b87f11f85f489159813fa3282de:log:64', 'hash': '0xdb97d2cb3d973bd0a2f153f3ac5813dc3ac57b87f11f85f489159813fa3282de', 'from': '0x155ea4c3308b9e4e0d8d182cf742cac3344af85f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03b9aca000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:50:43.000Z'}}, {'blockNum': '0x49fd59', 'uniqueId': '0x4549f44f55883364baf5347fca63c2c1093c0ae88f4cd1b41e1ce79f97ab9cb7:log:5', 'hash': '0x4549f44f55883364baf5347fca63c2c1093c0ae88f4cd1b41e1ce79f97ab9cb7', 'from': '0xee71f72bb9bd8e333b897661dd14ae643248dbc7', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:58:10.000Z'}}, {'blockNum': '0x49fd59', 'uniqueId': '0xd05663ff3bf923529c5771ae91ebf1c26a1dab8375e933a960b03752cf852998:log:49', 'hash': '0xd05663ff3bf923529c5771ae91ebf1c26a1dab8375e933a960b03752cf852998', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xe20d7ad742e0244e80944842744d77447824afa2', 'value': 115.849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b2838ba0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:58:10.000Z'}}, {'blockNum': '0x49fd6a', 'uniqueId': '0xa82897d87b0ae016e704e00ed5ec81f43eb8a98abb265dd5124111b9df1e0f0c:log:20', 'hash': '0xa82897d87b0ae016e704e00ed5ec81f43eb8a98abb265dd5124111b9df1e0f0c', 'from': '0x1a3a8bbb31ffafd8e4e11f0580d36d1d08c5c006', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 407.59993124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x097d7c2324', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:01:42.000Z'}}, {'blockNum': '0x49fd7b', 'uniqueId': '0xdc62bf3366a07b0a28baedbdcc71507555b5d2207d53b60f3dd73d36a5f039f0:log:14', 'hash': '0xdc62bf3366a07b0a28baedbdcc71507555b5d2207d53b60f3dd73d36a5f039f0', 'from': '0xe20d7ad742e0244e80944842744d77447824afa2', 'to': '0x474e9c1b2d3bff6d4d3c3d02553a84593b213f6f', 'value': 115.849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b2838ba0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:05:10.000Z'}}, {'blockNum': '0x49fd90', 'uniqueId': '0x7e95f369ca8848a6cb2bac05a7e1821fadd477ff4ccd55dbc684e2b622df53d0:log:0', 'hash': '0x7e95f369ca8848a6cb2bac05a7e1821fadd477ff4ccd55dbc684e2b622df53d0', 'from': '0x700fcc458148180c68554c85ded7a1d11b0d44fc', 'to': '0x84c7d7d5d9edbef8e983d21b5bf548ba06641c76', 'value': 19, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x713fb300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:09:37.000Z'}}, {'blockNum': '0x49fd99', 'uniqueId': '0x44d2655194aa2cddca2dd53218a5d1ab75b178493f6838718a0faaf5dd7149b4:log:0', 'hash': '0x44d2655194aa2cddca2dd53218a5d1ab75b178493f6838718a0faaf5dd7149b4', 'from': '0x700fcc458148180c68554c85ded7a1d11b0d44fc', 'to': '0x84c7d7d5d9edbef8e983d21b5bf548ba06641c76', 'value': 19, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x713fb300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:11:31.000Z'}}, {'blockNum': '0x49fd99', 'uniqueId': '0x5f7d33f3e140769f75667e141886aadcc138ebcac4fef2a14ba12fcce059aa14:log:38', 'hash': '0x5f7d33f3e140769f75667e141886aadcc138ebcac4fef2a14ba12fcce059aa14', 'from': '0x626309bcffe83987e346e2a89b859993e8e6e215', 'to': '0x4335b32bba1cd23c601ffe3c219a9df009a5f818', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:11:31.000Z'}}, {'blockNum': '0x49fdbd', 'uniqueId': '0xf267458a4e09c60aa1ba0b55c93e03bca42cace86a71d330b2ee07be24d424e4:log:60', 'hash': '0xf267458a4e09c60aa1ba0b55c93e03bca42cace86a71d330b2ee07be24d424e4', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xe0f82df37f05a1cfb6b88cab50a59f7c3fe8c6b7', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:19:47.000Z'}}, {'blockNum': '0x49fdc6', 'uniqueId': '0x1c58bb3dbbed498b2c710399b73e6da2684ce5d6f263b94eef18aa5b77bc2d31:log:3', 'hash': '0x1c58bb3dbbed498b2c710399b73e6da2684ce5d6f263b94eef18aa5b77bc2d31', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x850dcb0ca5e6cd1138b83a3f8eb76fd849fd3e82', 'value': 109.82263392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x028e980a60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:23:23.000Z'}}, {'blockNum': '0x49fdc6', 'uniqueId': '0xca40060b2936a61d44a6a9c316b9e324b4aae788833fd3f617ecc8b9619a2473:log:34', 'hash': '0xca40060b2936a61d44a6a9c316b9e324b4aae788833fd3f617ecc8b9619a2473', 'from': '0x16ba546d15c8cb16331164e799410f6a3d0ae88b', 'to': '0xb6cb1862122084733758a2b148501677918d03f3', 'value': 0.93074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x058c3250', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:23:23.000Z'}}, {'blockNum': '0x49fdc7', 'uniqueId': '0xdbe76d50ac9bca2bf65d1d7be7013a8dad60b58c5d289ffa35c3043bb162066f:log:18', 'hash': '0xdbe76d50ac9bca2bf65d1d7be7013a8dad60b58c5d289ffa35c3043bb162066f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x66cfa50b0b61a8edb3be8b20cad3f403e31f7a09', 'value': 44.558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0109961cc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:23:29.000Z'}}, {'blockNum': '0x49fdc7', 'uniqueId': '0xe09ed6e86c742804cac0faaccdbee1f1fe675c2431531e7dfa648479fb0c8089:log:26', 'hash': '0xe09ed6e86c742804cac0faaccdbee1f1fe675c2431531e7dfa648479fb0c8089', 'from': '0x84c7d7d5d9edbef8e983d21b5bf548ba06641c76', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe27f6600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:23:29.000Z'}}, {'blockNum': '0x49fdd0', 'uniqueId': '0xcf8d34ef981087a332dc8f1fd466623cdcd4b9c851c3c2ba8aa0c8a0bdd44cb9:log:17', 'hash': '0xcf8d34ef981087a332dc8f1fd466623cdcd4b9c851c3c2ba8aa0c8a0bdd44cb9', 'from': '0x383932e5467528999954bf192452e390e1c84795', 'to': '0x3bae7ffaf60f1a5a38fce086d701d53a0da9d1d2', 'value': 8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2faf0800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:25:56.000Z'}}, {'blockNum': '0x49fdd2', 'uniqueId': '0xa939fa59144a5e7904a205b9e09aa3d9b194a4e20f0d1553b8ffba3d51c0ca1c:log:2', 'hash': '0xa939fa59144a5e7904a205b9e09aa3d9b194a4e20f0d1553b8ffba3d51c0ca1c', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x66cfa50b0b61a8edb3be8b20cad3f403e31f7a09', 'value': 0.00032743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7fe7', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:26:23.000Z'}}, {'blockNum': '0x49fdd5', 'uniqueId': '0xbb14d7099e44a2000de957e422338929c39b9f9580a20e60b59f30c16f17a140:log:5', 'hash': '0xbb14d7099e44a2000de957e422338929c39b9f9580a20e60b59f30c16f17a140', 'from': '0x850dcb0ca5e6cd1138b83a3f8eb76fd849fd3e82', 'to': '0x81272c71c6f73280bf882cf4d170dbbefb1a5a2f', 'value': 109.82263392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x028e980a60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:27:23.000Z'}}, {'blockNum': '0x49fdd7', 'uniqueId': '0xf9c575480d7830bb6056fbc1bebc038f53393e01682dcd5152abe49d758e2c25:log:26', 'hash': '0xf9c575480d7830bb6056fbc1bebc038f53393e01682dcd5152abe49d758e2c25', 'from': '0x2efc555ce366546b2f5ce0d08a5373e14fc2af3a', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:28:25.000Z'}}, {'blockNum': '0x49fdef', 'uniqueId': '0xd0ff0229cc78494dd57fec783415268c9c0cc82719e4dc55d4e0889d710eb8f4:log:35', 'hash': '0xd0ff0229cc78494dd57fec783415268c9c0cc82719e4dc55d4e0889d710eb8f4', 'from': '0x253e23cda8d3c44695a2c4d10c4918efde566763', 'to': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'value': 2035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2f618b9300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:34:13.000Z'}}, {'blockNum': '0x49fdef', 'uniqueId': '0x3d90661606741f091036dbb49b875cc7e7e735146c2f6eef56c9a3b10623f4a6:log:75', 'hash': '0x3d90661606741f091036dbb49b875cc7e7e735146c2f6eef56c9a3b10623f4a6', 'from': '0x7440384e15c0b8aa995e033a68e901308ffd669c', 'to': '0x951ca39f35001cf4b43730442bd607f990522821', 'value': 19999.83851869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01d1a853b95d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:34:13.000Z'}}, {'blockNum': '0x49fdf3', 'uniqueId': '0xc4c1342273adff4563d3429f765f88adf0b4b9e55922eece5f6be114da51be7c:log:54', 'hash': '0xc4c1342273adff4563d3429f765f88adf0b4b9e55922eece5f6be114da51be7c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xee72dbcea547ed290f81be6296a8901d3c145127', 'value': 28.9708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xacadeec0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:35:06.000Z'}}, {'blockNum': '0x49fdf3', 'uniqueId': '0xbf7fc1ead6fb98f74123fc266ff8e7cb12ce00c6385cad96872e65544e614cdb:log:98', 'hash': '0xbf7fc1ead6fb98f74123fc266ff8e7cb12ce00c6385cad96872e65544e614cdb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x51adc3c67a1c3745373125a74c5fdbb0b0e39ec2', 'value': 24.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x93d1cc00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:35:06.000Z'}}, {'blockNum': '0x49fdfc', 'uniqueId': '0x8fd41d597e6d26ea61f298cc2e9b35854cdbcaa298fae22f4e3f633ef775eb63:log:17', 'hash': '0x8fd41d597e6d26ea61f298cc2e9b35854cdbcaa298fae22f4e3f633ef775eb63', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'value': 105.25556051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02735f3d53', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:37:49.000Z'}}, {'blockNum': '0x49fdfc', 'uniqueId': '0x1a81c83b698c740ac97bdeebaf7e10510c1c812433a0156b969eb476c65c0f3d:log:52', 'hash': '0x1a81c83b698c740ac97bdeebaf7e10510c1c812433a0156b969eb476c65c0f3d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0c894a22a97fa4afb043a523eb317e0d3df03c4d', 'value': 0.9988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05f40c40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:37:49.000Z'}}, {'blockNum': '0x49fe02', 'uniqueId': '0x99c70c68c93aa961c2464c0a3f8d8f0be18345ed418e7a69364df055e4ac53e3:log:54', 'hash': '0x99c70c68c93aa961c2464c0a3f8d8f0be18345ed418e7a69364df055e4ac53e3', 'from': '0xf2fcb844b59348fe7f07de5dd3875ccd60ab63b4', 'to': '0x5d28d57411588bdd4ccd91fae76ffc97d656e5be', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05d21dba00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:39:01.000Z'}}, {'blockNum': '0x49fe05', 'uniqueId': '0x66150b26f908052571501f42fcf8fda93972706b845f6f771c3d54bce53e2c57:log:0', 'hash': '0x66150b26f908052571501f42fcf8fda93972706b845f6f771c3d54bce53e2c57', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xff391312481660ea12d06b8048e97d3d1df1276d', 'value': 4.04575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x181d5318', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:39:30.000Z'}}, {'blockNum': '0x49fe10', 'uniqueId': '0xf783bcbf6095cbc233c621e8e9289eaf76c89acf3953e47157fc8455e29bf086:log:33', 'hash': '0xf783bcbf6095cbc233c621e8e9289eaf76c89acf3953e47157fc8455e29bf086', 'from': '0x5d28d57411588bdd4ccd91fae76ffc97d656e5be', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05d21dba00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:41:34.000Z'}}, {'blockNum': '0x49fe1a', 'uniqueId': '0xc869f354600b615a1d1f3185165b431e3475a76e54d8d93856df4ec70d51bc14:log:105', 'hash': '0xc869f354600b615a1d1f3185165b431e3475a76e54d8d93856df4ec70d51bc14', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x018baa2adf59350d2fecdd921d39364f4dbb1537', 'value': 457.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0aa42bb200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:43:25.000Z'}}, {'blockNum': '0x49fe1b', 'uniqueId': '0xf8f9d1114790b93dde8e0d90bf8c4d921bbba1dbf08c1bb55f14eaa9fddb21bd:log:40', 'hash': '0xf8f9d1114790b93dde8e0d90bf8c4d921bbba1dbf08c1bb55f14eaa9fddb21bd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3a43abc3c1d5d3e65a55ef1c65ea9b27b7d094cd', 'value': 7.17, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2abc8d40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:43:34.000Z'}}, {'blockNum': '0x49fe23', 'uniqueId': '0xe78078fe55b82eaaddde7deea74bf15441287474e1b1fd707bb088dfa490f8b8:log:15', 'hash': '0xe78078fe55b82eaaddde7deea74bf15441287474e1b1fd707bb088dfa490f8b8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x12a12562192bd96c0c9bda1f564681c256d71553', 'value': 123.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02e1e7cf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:45:30.000Z'}}, {'blockNum': '0x49fe23', 'uniqueId': '0x13d2977f9699f879741bc398baf9c35d281f3176164803739af86f99f67bb091:log:16', 'hash': '0x13d2977f9699f879741bc398baf9c35d281f3176164803739af86f99f67bb091', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc94d2ea35b65032f4634b312a4b731d8430e5c50', 'value': 4.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1c9c3800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:45:30.000Z'}}, {'blockNum': '0x49fe30', 'uniqueId': '0xea4423c216379d010e2d270174d643bcd8826d577d4aaef3581884f0feac4f44:log:42', 'hash': '0xea4423c216379d010e2d270174d643bcd8826d577d4aaef3581884f0feac4f44', 'from': '0xffb22880d9c4232b4369e143bfd6059eeae0502f', 'to': '0x5847d3b773f96264573305840bc3c99f01cc6fb1', 'value': 3.296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x13a54c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:48:58.000Z'}}, {'blockNum': '0x49fe3a', 'uniqueId': '0x05392a13eb5fc0c67b436698fe70062ffa01c927016647eaaf428a4170cb845e:log:134', 'hash': '0x05392a13eb5fc0c67b436698fe70062ffa01c927016647eaaf428a4170cb845e', 'from': '0x12a12562192bd96c0c9bda1f564681c256d71553', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 126.4162341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02f17fdd72', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:51:34.000Z'}}, {'blockNum': '0x49fe3e', 'uniqueId': '0x2dcb3f8da214be2c6131ed6f3db4b78d47ef0c4f886ddbd083d5fa2204899d9c:log:105', 'hash': '0x2dcb3f8da214be2c6131ed6f3db4b78d47ef0c4f886ddbd083d5fa2204899d9c', 'from': '0x5c891cb26ec8a1cf3af2d8bd4deff962f537922d', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:52:39.000Z'}}, {'blockNum': '0x49fe52', 'uniqueId': '0x26036d1cf8f1db6ed6be110a6f062701c3f2962b38ed14c7bacdf6a5b555c989:log:10', 'hash': '0x26036d1cf8f1db6ed6be110a6f062701c3f2962b38ed14c7bacdf6a5b555c989', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x3d51082f231742328d4568030618bbf0d01432cf', 'value': 11, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4190ab00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:57:05.000Z'}}, {'blockNum': '0x49fe53', 'uniqueId': '0x39dd29e81fd4d8bd47d260f80d5037771dcff96345486f781734cd0ef5904b7b:log:21', 'hash': '0x39dd29e81fd4d8bd47d260f80d5037771dcff96345486f781734cd0ef5904b7b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0be7a29c6f095e5427f111e9da3e1f3d1546f923', 'value': 5.75404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x224bf7e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:57:16.000Z'}}, {'blockNum': '0x49fe53', 'uniqueId': '0xd4db276533fad9b00f0b6735ecbe7e831588018e8b35a930132ef4f844012b9e:log:22', 'hash': '0xd4db276533fad9b00f0b6735ecbe7e831588018e8b35a930132ef4f844012b9e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x43d91646e2b690155638b05c9d88410abb740f87', 'value': 30.12964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb3962ea0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:57:16.000Z'}}, {'blockNum': '0x49fe54', 'uniqueId': '0x8d4313222353c4a32ab19e2548413f10c8a187ac723b5c8381ba39440a435e4e:log:29', 'hash': '0x8d4313222353c4a32ab19e2548413f10c8a187ac723b5c8381ba39440a435e4e', 'from': '0xeb07d758f4efb5713d3a88b898d1b986f1298db8', 'to': '0x6520036d7a601c062205819f4b3c6df6df4834fa', 'value': 345.90270831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x080dbda56f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:57:51.000Z'}}, {'blockNum': '0x49fe56', 'uniqueId': '0xb2129d9af3efa624abb16d87efa17dc976eb337d42ce9a0a7dac9ab1077011fa:log:12', 'hash': '0xb2129d9af3efa624abb16d87efa17dc976eb337d42ce9a0a7dac9ab1077011fa', 'from': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'to': '0x103bc4755848c643fb4f139449fa62d474a445c1', 'value': 105.25556051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02735f3d53', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:58:11.000Z'}}, {'blockNum': '0x49fe5a', 'uniqueId': '0x5d97f8dca6823fc383eff3bdc005fa1b5e579a6ccc619a55f4071697911c91db:log:31', 'hash': '0x5d97f8dca6823fc383eff3bdc005fa1b5e579a6ccc619a55f4071697911c91db', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x24d008edce3fef8715cc1effd5a2cb181b833199', 'value': 34.78498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xcf55aad0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:59:05.000Z'}}, {'blockNum': '0x49fe78', 'uniqueId': '0xa0a7e30d0d337d71dab18bab2f26e23d35bc5ffb559467aa5a5b66a52dce36aa:log:17', 'hash': '0xa0a7e30d0d337d71dab18bab2f26e23d35bc5ffb559467aa5a5b66a52dce36aa', 'from': '0x2efc555ce366546b2f5ce0d08a5373e14fc2af3a', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01bf08eb00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:07:16.000Z'}}, {'blockNum': '0x49fe79', 'uniqueId': '0x027838d7effb1abf90583287ccb13e83fa17bbe8b0e907c7a8be1bab352c14e7:log:44', 'hash': '0x027838d7effb1abf90583287ccb13e83fa17bbe8b0e907c7a8be1bab352c14e7', 'from': '0x4eef5f0cd4fe38ed6ea3446b4ed3b88e2c6a190f', 'to': '0xc32bc63a93eba6d7a331c3badbadbacf68999c38', 'value': 12, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x47868c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:07:33.000Z'}}, {'blockNum': '0x49fe7a', 'uniqueId': '0x58f7194f91090e9a234df560dda8494b06a749faa72615038451ab1c95316e2e:log:11', 'hash': '0x58f7194f91090e9a234df560dda8494b06a749faa72615038451ab1c95316e2e', 'from': '0x103bc4755848c643fb4f139449fa62d474a445c1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 105.25556051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02735f3d53', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:07:40.000Z'}}, {'blockNum': '0x49fe8a', 'uniqueId': '0x8db31829f1d3e2f372a09add01acbd1a6a060504a97a0e7d062a95b6829d17a1:log:56', 'hash': '0x8db31829f1d3e2f372a09add01acbd1a6a060504a97a0e7d062a95b6829d17a1', 'from': '0xeeedf522e3fce3937401cc31a86ebb809df0f8c8', 'to': '0x3a26cdf8d6df89861001d476f8de2185e364fccb', 'value': 19.86991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x766f1398', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:11:52.000Z'}}, {'blockNum': '0x49fea4', 'uniqueId': '0xa746f53166a621c8cfa218167c7757a06f9aeb9d49bcc1c3fce57cbb402df3f0:log:37', 'hash': '0xa746f53166a621c8cfa218167c7757a06f9aeb9d49bcc1c3fce57cbb402df3f0', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x325b004e0471c68e7ffd59936f5b7dfb21603a9f', 'value': 6.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2756cd00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:19:50.000Z'}}, {'blockNum': '0x49feb4', 'uniqueId': '0x8e8f4b7543fafd55d1ecfa30e001db1e51aa8913257cccf80f3259b64b8a8764:log:28', 'hash': '0x8e8f4b7543fafd55d1ecfa30e001db1e51aa8913257cccf80f3259b64b8a8764', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x2a105a4f6811ad015d24399daeab190c042b72f3', 'value': 50.002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a08ff40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:24:21.000Z'}}, {'blockNum': '0x49feb6', 'uniqueId': '0x511c367e9ac0e6502c61912e3de978e99b1f22ca756cfd6bd34e9a5ed60fe582:log:62', 'hash': '0x511c367e9ac0e6502c61912e3de978e99b1f22ca756cfd6bd34e9a5ed60fe582', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xd4209ca5eb53a66759ed2fbe921a7a50bf3b0d8e', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:25:34.000Z'}}, {'blockNum': '0x49fec2', 'uniqueId': '0xb09672328933430866b5a8df6fa11d40b16940c06e7d83bb24abd1019e36f1fd:log:29', 'hash': '0xb09672328933430866b5a8df6fa11d40b16940c06e7d83bb24abd1019e36f1fd', 'from': '0xc3c4edaa2538757f5bdb3d1e1bb70cff675d25db', 'to': '0x340209c8975508a8b6750c01ae290db038a275c5', 'value': 16.499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x625779e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:28:37.000Z'}}, {'blockNum': '0x49fec8', 'uniqueId': '0x74cbd6b5021cfce4610ff9511ed8e132d8502d2adeb747a2e675e7bee1dd0dff:log:66', 'hash': '0x74cbd6b5021cfce4610ff9511ed8e132d8502d2adeb747a2e675e7bee1dd0dff', 'from': '0xf87f684f78b97589809fae13018e8376d97455bb', 'to': '0x951ca39f35001cf4b43730442bd607f990522821', 'value': 0.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0112a880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:30:25.000Z'}}, {'blockNum': '0x49fecc', 'uniqueId': '0x7d41ab4ffdcbc797cc0e27c5c23ebe991c69ea4cdd9e7a9ad65e06d9d8899984:log:2', 'hash': '0x7d41ab4ffdcbc797cc0e27c5c23ebe991c69ea4cdd9e7a9ad65e06d9d8899984', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xfe7dc10140f4f1f5efeb579e8885f116f843aa3b', 'value': 57.78, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0158654880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:31:37.000Z'}}, {'blockNum': '0x49fed1', 'uniqueId': '0x90474f55880ff2d3dbf1ad9dbcb08b080098ea2d02919d190063569bc3f50825:log:4', 'hash': '0x90474f55880ff2d3dbf1ad9dbcb08b080098ea2d02919d190063569bc3f50825', 'from': '0x8dc7bb21d651540a4f36b5719c48737d158ef90c', 'to': '0x38984fec4962bb65456554b04be65966ae9742e7', 'value': 245.18671424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05b56d3c40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:33:33.000Z'}}, {'blockNum': '0x49fed3', 'uniqueId': '0x129c9a781640e76475d0ef5935f8565a94b6b1b4e2a9889c32850a00522e7a9b:log:19', 'hash': '0x129c9a781640e76475d0ef5935f8565a94b6b1b4e2a9889c32850a00522e7a9b', 'from': '0x340209c8975508a8b6750c01ae290db038a275c5', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 16.499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x625779e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:34:06.000Z'}}, {'blockNum': '0x49fed5', 'uniqueId': '0x35a779d4f2321368ba30a7aa6630b2223805a10b47b1becb809b2c4c686610f0:log:54', 'hash': '0x35a779d4f2321368ba30a7aa6630b2223805a10b47b1becb809b2c4c686610f0', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x2fef96626f5cf1f333e9cf6bb0e81be1231afd98', 'value': 45.1136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x010ce5e400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:34:18.000Z'}}, {'blockNum': '0x49fed6', 'uniqueId': '0x2a902f80323e7f2239372ca3b0c479d481cd40a9b819f9e99a329c8c579a574f:log:26', 'hash': '0x2a902f80323e7f2239372ca3b0c479d481cd40a9b819f9e99a329c8c579a574f', 'from': '0x0e40324c0a24c148d4f545a9739420b487671c6e', 'to': '0x7390c8d328167ba6432dad960faf3c301ea7d1cf', 'value': 105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0271d94900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:34:24.000Z'}}, {'blockNum': '0x49fedf', 'uniqueId': '0x7b70d70641dfc9eac55f428703353e6b6d57bdf99c896de76b6c673f2ddb035a:log:72', 'hash': '0x7b70d70641dfc9eac55f428703353e6b6d57bdf99c896de76b6c673f2ddb035a', 'from': '0xa98bbb200e21f126ceb9f866e1645c53ceebe91a', 'to': '0xda4f62d390ba0f14035b2ac299508b7eefcfc98f', 'value': 0.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02faf080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:36:45.000Z'}}, {'blockNum': '0x49fee5', 'uniqueId': '0xbc0c13234c60c402ffd3b61a31d101ddc1a00f2a5a86da1c0d558a859813b06b:log:1', 'hash': '0xbc0c13234c60c402ffd3b61a31d101ddc1a00f2a5a86da1c0d558a859813b06b', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x1dbbc44b2b33fdd6c6f7eadf51bebbccb1d6a9e0', 'value': 73.26699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01b4b491df', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:38:29.000Z'}}, {'blockNum': '0x49fee8', 'uniqueId': '0x80af908d09f1df8ffd77d32bde200286b0d903d666a6698a50942b23b6d9deb3:log:10', 'hash': '0x80af908d09f1df8ffd77d32bde200286b0d903d666a6698a50942b23b6d9deb3', 'from': '0x03a8920a900b6ff21f2d14763137a32a80f980c1', 'to': '0x2973050902b077d856d653e2c29ee49aee9dcf13', 'value': 65.571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0186d567e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:39:30.000Z'}}, {'blockNum': '0x49fef4', 'uniqueId': '0x7cb0cf7c50f4e974ed75f3e4ad2808db119db0124e867a891c1978ab41689044:log:44', 'hash': '0x7cb0cf7c50f4e974ed75f3e4ad2808db119db0124e867a891c1978ab41689044', 'from': '0xa98bbb200e21f126ceb9f866e1645c53ceebe91a', 'to': '0xda4f62d390ba0f14035b2ac299508b7eefcfc98f', 'value': 50.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012d00e280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:43:03.000Z'}}, {'blockNum': '0x49ff05', 'uniqueId': '0x4a47ee9b6606873ce3b5620bfe6e1d3f185710be4abbc1852c1183c8c6d691e6:log:11', 'hash': '0x4a47ee9b6606873ce3b5620bfe6e1d3f185710be4abbc1852c1183c8c6d691e6', 'from': '0x3f393c413a8550efe98a5568b597659b6c2cdda9', 'to': '0x0af84b6161bb52db32dd958fce647a92ed0f05d8', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:46:34.000Z'}}, {'blockNum': '0x49ff08', 'uniqueId': '0xdb3cc463dc63b98d6a0c5de910f144c07dfedce131cb8706e3a51ae1dfbcd324:log:14', 'hash': '0xdb3cc463dc63b98d6a0c5de910f144c07dfedce131cb8706e3a51ae1dfbcd324', 'from': '0x1dbbc44b2b33fdd6c6f7eadf51bebbccb1d6a9e0', 'to': '0x4bae939b18eee2cf996fee1d5880bcc5baa39195', 'value': 73.26699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01b4b491df', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:47:32.000Z'}}, {'blockNum': '0x49ff0a', 'uniqueId': '0x63dc59f643460c8dc6e634964858c327d53527c26f730be807fe5deb8ee20105:log:5', 'hash': '0x63dc59f643460c8dc6e634964858c327d53527c26f730be807fe5deb8ee20105', 'from': '0x62c62b5f6d4ffe12694a1f3662680af75b352caf', 'to': '0x2bfbc7ec6d43089fc137a9cdc55429986e2a553a', 'value': 107.62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0281771680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:48:06.000Z'}}, {'blockNum': '0x49ff0c', 'uniqueId': '0x07f80d567b0f7f92adeec78bc33d6445aae5a31d71c7d4009427d32c298d5528:log:89', 'hash': '0x07f80d567b0f7f92adeec78bc33d6445aae5a31d71c7d4009427d32c298d5528', 'from': '0xe54e8f825a35942d99023f4934e5735aa7a13718', 'to': '0x7e44b638307c93978bf65ff7286a3faae8962df3', 'value': 8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2faf0800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:48:49.000Z'}}, {'blockNum': '0x49ff1b', 'uniqueId': '0x96a8a535b5992d43d8d35432b2c0e211e3495b9bf279919acb575cb79c957034:log:113', 'hash': '0x96a8a535b5992d43d8d35432b2c0e211e3495b9bf279919acb575cb79c957034', 'from': '0x3f393c413a8550efe98a5568b597659b6c2cdda9', 'to': '0x0af84b6161bb52db32dd958fce647a92ed0f05d8', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:53:51.000Z'}}, {'blockNum': '0x49ff1f', 'uniqueId': '0x19d1c6963e5c294434e38d0e152275324f64f01f5074edd120b6729b5985a2c9:log:50', 'hash': '0x19d1c6963e5c294434e38d0e152275324f64f01f5074edd120b6729b5985a2c9', 'from': '0x0af84b6161bb52db32dd958fce647a92ed0f05d8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:55:23.000Z'}}, {'blockNum': '0x49ff3a', 'uniqueId': '0xe6452bf070e9057e7db028e52c861498656996f22077103dd7d08ea96b3c7fa7:log:20', 'hash': '0xe6452bf070e9057e7db028e52c861498656996f22077103dd7d08ea96b3c7fa7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6b923811d8968fe6587a0c06c5271f1f53b8f3c1', 'value': 540, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0c92a69c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:02:27.000Z'}}, {'blockNum': '0x49ff3d', 'uniqueId': '0x55be72cc7902b89d9660f0be79ec617c1065cb40eb29bbcbcb4467caf55fd31c:log:29', 'hash': '0x55be72cc7902b89d9660f0be79ec617c1065cb40eb29bbcbcb4467caf55fd31c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7d69f73b8257e2b388a770eb34e28640a60edc03', 'value': 99.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0252dab700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:03:16.000Z'}}, {'blockNum': '0x49ff3d', 'uniqueId': '0x0ca64c33efe221f23797cdc954dec7627b615f0e39049c5dcf959fff4047ea2f:log:75', 'hash': '0x0ca64c33efe221f23797cdc954dec7627b615f0e39049c5dcf959fff4047ea2f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ca204736b4f46076de94d4df2cf5db624238317', 'value': 56.55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01511073c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:03:16.000Z'}}, {'blockNum': '0x49ff41', 'uniqueId': '0x01e4560b587dc4ce32d856cf232e59e653ebc7b49222fec7e3701168184fa222:log:10', 'hash': '0x01e4560b587dc4ce32d856cf232e59e653ebc7b49222fec7e3701168184fa222', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1d67d4c68b4003d20ca7c54ef080314260cae5c8', 'value': 142.78334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03530e1630', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:04:14.000Z'}}, {'blockNum': '0x49ff41', 'uniqueId': '0x26dd85bf4748289b81535fb4ed24eedaede3c25cfc0f1b065792e999675378ce:log:51', 'hash': '0x26dd85bf4748289b81535fb4ed24eedaede3c25cfc0f1b065792e999675378ce', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe6867a5fd9ade14d5f90fcb2a716b629c5e9f4d8', 'value': 13.30648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4f5013c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:04:14.000Z'}}, {'blockNum': '0x49ff41', 'uniqueId': '0xfc86195dc813120fcea1e32ea968834b6a626406eeb4ee8900badbf24d9cb3d7:log:85', 'hash': '0xfc86195dc813120fcea1e32ea968834b6a626406eeb4ee8900badbf24d9cb3d7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd8c20d78c2cff963a692fff2af6599949599c2be', 'value': 25.10467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x95a2afb8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:04:14.000Z'}}, {'blockNum': '0x49ff41', 'uniqueId': '0x89c2198e949064e9d1840d9eed3a17fd5bae72a7c5148e146cb171cc64aecc03:log:119', 'hash': '0x89c2198e949064e9d1840d9eed3a17fd5bae72a7c5148e146cb171cc64aecc03', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf4b4f1e73cf81136264ed91092842b86717b50e7', 'value': 11.45559, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4447d7d8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:04:14.000Z'}}, {'blockNum': '0x49ff41', 'uniqueId': '0x21e9568c6a09bb11e98ab1296ce31e83f38bb8d4d750aae8f98777fb8f2ebca5:log:152', 'hash': '0x21e9568c6a09bb11e98ab1296ce31e83f38bb8d4d750aae8f98777fb8f2ebca5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x700fcc458148180c68554c85ded7a1d11b0d44fc', 'value': 35.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xd4c9e080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:04:14.000Z'}}, {'blockNum': '0x49ff42', 'uniqueId': '0x0977175aa90baf1a2200ca065bedbc3ee836537acb4b550ab09fc66731485105:log:22', 'hash': '0x0977175aa90baf1a2200ca065bedbc3ee836537acb4b550ab09fc66731485105', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2b4b7465ea3115297e37e0030d78dbc73074620e', 'value': 11.94784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4736f500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:04:23.000Z'}}, {'blockNum': '0x49ff43', 'uniqueId': '0xd012668fd10c5100364a07ffaaf0132a642bcc9e564b50e0b46d6df6e6266e3c:log:3', 'hash': '0xd012668fd10c5100364a07ffaaf0132a642bcc9e564b50e0b46d6df6e6266e3c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa68c7d09040808ba493672ac90f97eacadcc2e88', 'value': 61.65745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x016f81cd68', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:04:38.000Z'}}, {'blockNum': '0x49ff61', 'uniqueId': '0x47f4374bfd2010daa83caf0650a138352e8a799bb0defa45b44c67f6d75e602e:log:57', 'hash': '0x47f4374bfd2010daa83caf0650a138352e8a799bb0defa45b44c67f6d75e602e', 'from': '0x0af84b6161bb52db32dd958fce647a92ed0f05d8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:13:30.000Z'}}, {'blockNum': '0x49ff66', 'uniqueId': '0x02ac011775ecfb331155327aacbadbf90898816fa50ee8af616ff081017fcc4a:log:5', 'hash': '0x02ac011775ecfb331155327aacbadbf90898816fa50ee8af616ff081017fcc4a', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xe348c190ab375cc53352a4ce0603ba3bb03cd225', 'value': 22, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x83215600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:14:25.000Z'}}, {'blockNum': '0x49ff6c', 'uniqueId': '0x6a3f4450624dbaa30d2b453747b345dad5397d361e37a122e356f742c259a39e:log:27', 'hash': '0x6a3f4450624dbaa30d2b453747b345dad5397d361e37a122e356f742c259a39e', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x9a3d6b710c1f85cb4f44ddb40871d987233b8728', 'value': 9.26, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3731a380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:16:01.000Z'}}, {'blockNum': '0x49ff7b', 'uniqueId': '0x7d9403dc96ce841771c134d20633becfb335f09a11077e9455f56704f366aa1a:log:38', 'hash': '0x7d9403dc96ce841771c134d20633becfb335f09a11077e9455f56704f366aa1a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf136e69a602247a8ce1a63f6799c7f23604bfc0f', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:20:40.000Z'}}, {'blockNum': '0x49ff81', 'uniqueId': '0x2d8d89a81323d2d17e4cf73ebc69c4498ec66d633d3f6bae49bf7ae1dd824d30:log:2', 'hash': '0x2d8d89a81323d2d17e4cf73ebc69c4498ec66d633d3f6bae49bf7ae1dd824d30', 'from': '0xa7e6659520eb663f71dc2d92f03102167ab9485f', 'to': '0x94684a3d6ddcfda04680a3c772203b192f8fe616', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:22:51.000Z'}}, {'blockNum': '0x49ff8d', 'uniqueId': '0xf5e7d9c96976eae18cffc691d057e7b9a8beb734af0986559deeaf2aa0ab8fb7:log:1', 'hash': '0xf5e7d9c96976eae18cffc691d057e7b9a8beb734af0986559deeaf2aa0ab8fb7', 'from': '0x2973050902b077d856d653e2c29ee49aee9dcf13', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 65.571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0186d567e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:27:57.000Z'}}, {'blockNum': '0x49ffa7', 'uniqueId': '0x8198ee9f33d8835f322aa83ee973dc59bdd0ccd70880a77adaef9002fdef3e16:log:60', 'hash': '0x8198ee9f33d8835f322aa83ee973dc59bdd0ccd70880a77adaef9002fdef3e16', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb3710e97e8e864eba33f5e28b3d8fe94a94d3156', 'value': 499.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba30a4700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:33:27.000Z'}}, {'blockNum': '0x49ffcd', 'uniqueId': '0x64cee32d17ccb86fd648cfc2734d934f3635254353000906c89bef31f85b08be:log:13', 'hash': '0x64cee32d17ccb86fd648cfc2734d934f3635254353000906c89bef31f85b08be', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xf9bb806edbf0059cf74c48805ccda77009ea2fea', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12a05f2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:43:10.000Z'}}, {'blockNum': '0x49ffe6', 'uniqueId': '0xd0fae7a93c3f03a573eb6c4c035da5adecbcce5fe1a5e0e2c0a5b4fab0686b56:log:9', 'hash': '0xd0fae7a93c3f03a573eb6c4c035da5adecbcce5fe1a5e0e2c0a5b4fab0686b56', 'from': '0xa7e6659520eb663f71dc2d92f03102167ab9485f', 'to': '0x94684a3d6ddcfda04680a3c772203b192f8fe616', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01bf08eb00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:51:32.000Z'}}, {'blockNum': '0x49ffe8', 'uniqueId': '0xb304e51a4e2fe74c3933e16b48291fecf179cfc47acd3d87878afcf5428faa43:log:11', 'hash': '0xb304e51a4e2fe74c3933e16b48291fecf179cfc47acd3d87878afcf5428faa43', 'from': '0x0e81013616379e06a350e632d0df259bfe4bc8e3', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 40, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xee6b2800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:52:00.000Z'}}, {'blockNum': '0x49ffff', 'uniqueId': '0x53195b3ffde542e229ef7e57a6cb1e037abb65a279d5afbcef3b5c03d4e85db0:log:34', 'hash': '0x53195b3ffde542e229ef7e57a6cb1e037abb65a279d5afbcef3b5c03d4e85db0', 'from': '0xfd53425224057d036b4e9f00ed7b2cad013b3607', 'to': '0x21c991e3666704201bb3d49dbe0e48b22a361708', 'value': 128.55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02fe37bbc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:58:21.000Z'}}, {'blockNum': '0x4a0004', 'uniqueId': '0x3df78e31abb3f77b2f80191b70fbb6f89ba996e0c0109f3ccbcad8a07978f01b:log:3', 'hash': '0x3df78e31abb3f77b2f80191b70fbb6f89ba996e0c0109f3ccbcad8a07978f01b', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xa6ce7e4a3fa99623eeb3f4245cca462913e5f39e', 'value': 7.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2faf07ff', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:59:04.000Z'}}, {'blockNum': '0x4a000c', 'uniqueId': '0xb1f1cc4a0c79d6e47ae8b9c5935ab8aa5472ac11cbfcca56ce3696c82a3d9d8d:log:10', 'hash': '0xb1f1cc4a0c79d6e47ae8b9c5935ab8aa5472ac11cbfcca56ce3696c82a3d9d8d', 'from': '0xa6ce7e4a3fa99623eeb3f4245cca462913e5f39e', 'to': '0xeb4c7798e03997e3236ed4f8fcd0d0f6d29c5987', 'value': 7.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2faf07ff', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:01:20.000Z'}}, {'blockNum': '0x4a000e', 'uniqueId': '0x048a62582fdfd2d069a928145420d24fba8d9abb2bf4c4fed3c870327dc88e78:log:2', 'hash': '0x048a62582fdfd2d069a928145420d24fba8d9abb2bf4c4fed3c870327dc88e78', 'from': '0xdfce88f728f5abd4040f177cb84a4fc89ff0425d', 'to': '0xad901097769914ebb8a5d6ab9a21bb2ebc5d3c17', 'value': 32, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbebc2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:01:56.000Z'}}, {'blockNum': '0x4a0010', 'uniqueId': '0xfcd1293f462f86ca48a765452a685efcfa4f4a058ff017208cd09e2e4b51720d:log:15', 'hash': '0xfcd1293f462f86ca48a765452a685efcfa4f4a058ff017208cd09e2e4b51720d', 'from': '0x17806e8e5bf77dff03742cbd6b51ac6b1f98e973', 'to': '0xb0f3e13abd96711ceffc01a22a88aa4bf81d9783', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:02:32.000Z'}}, {'blockNum': '0x4a0014', 'uniqueId': '0xfd0f6051a484343c875362b69e65b4b5ef53e21d323069c71e8c866cdb805ca3:log:5', 'hash': '0xfd0f6051a484343c875362b69e65b4b5ef53e21d323069c71e8c866cdb805ca3', 'from': '0xb3809ef0c7851634b3b82956da687f997217e550', 'to': '0x70943350008b12ff9f45da2d19ec494c028dbe85', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:03:18.000Z'}}, {'blockNum': '0x4a0019', 'uniqueId': '0xc8a06ffac02a16ab5321c4a429a667b3865b1bec1304eb992096133311edaf7e:log:16', 'hash': '0xc8a06ffac02a16ab5321c4a429a667b3865b1bec1304eb992096133311edaf7e', 'from': '0x09088786cd2cb358bacb2fa7b90e0dd68f523168', 'to': '0xd3c61fa188ca510e28747391b4c2cb044b247426', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:04:52.000Z'}}, {'blockNum': '0x4a001c', 'uniqueId': '0xe6e002bec00a7da710af43c0f86c59c069ccd1df981391a4a8e7268e39f56e7c:log:3', 'hash': '0xe6e002bec00a7da710af43c0f86c59c069ccd1df981391a4a8e7268e39f56e7c', 'from': '0x04cf3aebd987aa311fc9f51bc4991638a5de4a3b', 'to': '0x83d0fb73b80e37c5aef847218dac5d850abae2e5', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12a05f2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:05:33.000Z'}}, {'blockNum': '0x4a002f', 'uniqueId': '0xe8b6c34c2f3816315b710b74de8b5c394c6e06dcee5a5c7d8e7c93d602bf4b23:log:27', 'hash': '0xe8b6c34c2f3816315b710b74de8b5c394c6e06dcee5a5c7d8e7c93d602bf4b23', 'from': '0x70943350008b12ff9f45da2d19ec494c028dbe85', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:10:15.000Z'}}, {'blockNum': '0x4a002f', 'uniqueId': '0xbe2d35d72e73f4ece75c83a06761bdf82af5c0c5a7cb6ec21fba4464034ef45f:log:33', 'hash': '0xbe2d35d72e73f4ece75c83a06761bdf82af5c0c5a7cb6ec21fba4464034ef45f', 'from': '0xb0f3e13abd96711ceffc01a22a88aa4bf81d9783', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:10:15.000Z'}}, {'blockNum': '0x4a002f', 'uniqueId': '0x668ff742a47a299ec72c96d3bc7ce6700bc8a48986842363a6682f7e6a8008a6:log:35', 'hash': '0x668ff742a47a299ec72c96d3bc7ce6700bc8a48986842363a6682f7e6a8008a6', 'from': '0xad901097769914ebb8a5d6ab9a21bb2ebc5d3c17', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbebc2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:10:15.000Z'}}, {'blockNum': '0x4a0033', 'uniqueId': '0xf2689f4e1ef7d30caa452437612540e76a833741b58b085dc478e3b14b91d7ea:log:7', 'hash': '0xf2689f4e1ef7d30caa452437612540e76a833741b58b085dc478e3b14b91d7ea', 'from': '0x83d0fb73b80e37c5aef847218dac5d850abae2e5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12a05f2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:11:07.000Z'}}, {'blockNum': '0x4a0041', 'uniqueId': '0x666347ff885459904a5a1b7157f6f2f7a631e1478d3bc6af523089430b885ed8:log:19', 'hash': '0x666347ff885459904a5a1b7157f6f2f7a631e1478d3bc6af523089430b885ed8', 'from': '0xf2fcb844b59348fe7f07de5dd3875ccd60ab63b4', 'to': '0x5d28d57411588bdd4ccd91fae76ffc97d656e5be', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:14:13.000Z'}}, {'blockNum': '0x4a0044', 'uniqueId': '0xc98a9ffd8952e8e97f006a4f4a0145c73575ba7798dcc589229f4c05b4e9bd34:log:35', 'hash': '0xc98a9ffd8952e8e97f006a4f4a0145c73575ba7798dcc589229f4c05b4e9bd34', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x2548876d60fb398c52af22fbb0fcf06ad4148783', 'value': 1.914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b688840', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:15:16.000Z'}}, {'blockNum': '0x4a004a', 'uniqueId': '0x0ac139f07b63bb5b73870485bc58cf9ff79d1c103b5d17ca602df9ccf86a9fbd:log:5', 'hash': '0x0ac139f07b63bb5b73870485bc58cf9ff79d1c103b5d17ca602df9ccf86a9fbd', 'from': '0x09088786cd2cb358bacb2fa7b90e0dd68f523168', 'to': '0xd3c61fa188ca510e28747391b4c2cb044b247426', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:15:56.000Z'}}, {'blockNum': '0x4a0054', 'uniqueId': '0x9633fa32c2080aa508c5f4485ca7e6a9fac21dfd434cd3eb4ac2c2a06781dbc3:log:0', 'hash': '0x9633fa32c2080aa508c5f4485ca7e6a9fac21dfd434cd3eb4ac2c2a06781dbc3', 'from': '0xdf48f1586f07dc4f6d02192cad51e8d56401864e', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:18:05.000Z'}}, {'blockNum': '0x4a005a', 'uniqueId': '0xb28af4f92eb5cfe3c24d6a6a8322b276cdb2be76fae8b06c3471dbda5a745535:log:26', 'hash': '0xb28af4f92eb5cfe3c24d6a6a8322b276cdb2be76fae8b06c3471dbda5a745535', 'from': '0x5d28d57411588bdd4ccd91fae76ffc97d656e5be', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:20:17.000Z'}}, {'blockNum': '0x4a0080', 'uniqueId': '0xd51975f1079a65542c55049d0575a4f59e28dc035a2b00c87ed1a0dc8faa1440:log:10', 'hash': '0xd51975f1079a65542c55049d0575a4f59e28dc035a2b00c87ed1a0dc8faa1440', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0dbd11966a196bdf9bc72ce0d997560fdfc48533', 'value': 1.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0aba9500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:31:08.000Z'}}, {'blockNum': '0x4a0081', 'uniqueId': '0x2b513100798aa074a185af858bb1045d9a2c03200073624c7a2404b440d8a5c4:log:63', 'hash': '0x2b513100798aa074a185af858bb1045d9a2c03200073624c7a2404b440d8a5c4', 'from': '0x1ce7ae555139c5ef5a57cc8d814a867ee6ee33d8', 'to': '0xb0c8851d241285f78a8ca7f97bb09252d2387552', 'value': 4.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1908b100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:31:41.000Z'}}, {'blockNum': '0x4a0088', 'uniqueId': '0x3444648f872a7a23906ef9fae80154cf41e5021399e3c3a2f7e17acc7fa3d589:log:41', 'hash': '0x3444648f872a7a23906ef9fae80154cf41e5021399e3c3a2f7e17acc7fa3d589', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x710d468a2ad7a2a2a59484aaf1c5e395ed453450', 'value': 150.605545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0381add304', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:33:12.000Z'}}, {'blockNum': '0x4a008c', 'uniqueId': '0x22cc6093ccc28c5f27411796171f1dbe96aed2b94420e9014e33661901740c95:log:18', 'hash': '0x22cc6093ccc28c5f27411796171f1dbe96aed2b94420e9014e33661901740c95', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xf2942df1196d28c6eac39815f6d540aa5e19a2eb', 'value': 0.939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0598cce0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:34:12.000Z'}}, {'blockNum': '0x4a008d', 'uniqueId': '0x77f2fbab09142edf23bc8f99195d0bff78f003f80bd7017f03c1cab0f03b0a7a:log:106', 'hash': '0x77f2fbab09142edf23bc8f99195d0bff78f003f80bd7017f03c1cab0f03b0a7a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9e1ca65864ebdbcfde446ddbadf1b1f08c73f3dc', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:34:19.000Z'}}, {'blockNum': '0x4a009a', 'uniqueId': '0xe2e298b77785bf8524f3a869f1b22a9588fd7b029086e88f8e13da68b26b5c0f:log:6', 'hash': '0xe2e298b77785bf8524f3a869f1b22a9588fd7b029086e88f8e13da68b26b5c0f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x160836c297c457439b60c51140eddd530d69a33a', 'value': 49.75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01288879c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:37:16.000Z'}}, {'blockNum': '0x4a009a', 'uniqueId': '0xa69a5c45128d0fa4df2cbd1b3cd2f8f46318d4532ece36b9500114bdb9fb817c:log:64', 'hash': '0xa69a5c45128d0fa4df2cbd1b3cd2f8f46318d4532ece36b9500114bdb9fb817c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0dbd11966a196bdf9bc72ce0d997560fdfc48533', 'value': 14.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x58370200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:37:16.000Z'}}, {'blockNum': '0x4a00b4', 'uniqueId': '0xc99bd66baadda9c09792a7ec2b13fda959c93134cfef8237c07f71dafe793738:log:15', 'hash': '0xc99bd66baadda9c09792a7ec2b13fda959c93134cfef8237c07f71dafe793738', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x3cbbbff83dc3691ff750f2d6206d57ae8967b88b', 'value': 218.31562939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05154336bb', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:47:26.000Z'}}, {'blockNum': '0x4a00b5', 'uniqueId': '0xa5def3caa3033a7208298ad21bd9fcb2a566ca1479836f190ce95bc3d8b7abc4:log:76', 'hash': '0xa5def3caa3033a7208298ad21bd9fcb2a566ca1479836f190ce95bc3d8b7abc4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf9a76a99614c382b3f465aa62509d0561a15fa8c', 'value': 55.43431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x014a6a0b58', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:47:52.000Z'}}, {'blockNum': '0x4a00cc', 'uniqueId': '0x88af7b6eb79ebc12b71ef69d9fe6542e6850303e3de57d75e9141c865915ec05:log:12', 'hash': '0x88af7b6eb79ebc12b71ef69d9fe6542e6850303e3de57d75e9141c865915ec05', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x3cbbbff83dc3691ff750f2d6206d57ae8967b88b', 'value': 0.67499999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0405f7df', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:52:38.000Z'}}, {'blockNum': '0x4a00e3', 'uniqueId': '0xd56a4887549d98e5572cc36db989c45123940321fb2c115122226032cfc90f9d:log:55', 'hash': '0xd56a4887549d98e5572cc36db989c45123940321fb2c115122226032cfc90f9d', 'from': '0xb0c8851d241285f78a8ca7f97bb09252d2387552', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 4.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1908b100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:57:16.000Z'}}, {'blockNum': '0x4a00f2', 'uniqueId': '0xdcbd3c006e936abdee68d73cf01c7c929d0db21a579b55263751892c5423aad7:log:34', 'hash': '0xdcbd3c006e936abdee68d73cf01c7c929d0db21a579b55263751892c5423aad7', 'from': '0x2e2e8f5e95ea026586e15fc6250695483f4fe0ee', 'to': '0xd35a932ca0aff814f88863f6ed02adf22e4a426a', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:01:10.000Z'}}, {'blockNum': '0x4a00f5', 'uniqueId': '0x3fcd2dfde0b8309d364ff3a3e1068bc3b3b3132b64b37c2aa7aab9f088c5f5ef:log:19', 'hash': '0x3fcd2dfde0b8309d364ff3a3e1068bc3b3b3132b64b37c2aa7aab9f088c5f5ef', 'from': '0x31df4bef162a2b78bce63b46a5e77f2eb0a0ea4d', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 298.07521739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06f0aaafcb', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:01:37.000Z'}}, {'blockNum': '0x4a00f5', 'uniqueId': '0x79ed77faac72110609024a9f7faaf5df7c77f87fc1579410c701398dd1439bbc:log:22', 'hash': '0x79ed77faac72110609024a9f7faaf5df7c77f87fc1579410c701398dd1439bbc', 'from': '0x6d02e64891678bba120a6387223d49e7ddaa81c6', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:01:37.000Z'}}, {'blockNum': '0x4a00f6', 'uniqueId': '0x809d85374484fe7c7deb04e71917a52cbe04fb59aa31dafc0a8835f7c024b0f9:log:22', 'hash': '0x809d85374484fe7c7deb04e71917a52cbe04fb59aa31dafc0a8835f7c024b0f9', 'from': '0x8d89b55f18bb3d557fdf3924893fc7547b001439', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 141.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x034b67dd80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:01:49.000Z'}}, {'blockNum': '0x4a00f6', 'uniqueId': '0x2188af30d1a2b26243241ca6e9420c59c2001c6d563322ba00afa595af4fafc6:log:27', 'hash': '0x2188af30d1a2b26243241ca6e9420c59c2001c6d563322ba00afa595af4fafc6', 'from': '0x2495c552a3a68b2909da9457ece8d19ae146e79a', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 137.41061777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x033307f691', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:01:49.000Z'}}, {'blockNum': '0x4a00f6', 'uniqueId': '0x0acd661636ed8200b11d3ec85bb9b4693e0fcd0cabcb069701bd61fd0529e0d4:log:30', 'hash': '0x0acd661636ed8200b11d3ec85bb9b4693e0fcd0cabcb069701bd61fd0529e0d4', 'from': '0xe25690a961a178efa4e69e95e5d638178b8261f8', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 135.41495556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x032722d304', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:01:49.000Z'}}, {'blockNum': '0x4a00f7', 'uniqueId': '0x2171c973b12fa95541f9810fcf6d7abf1cf4042d9c6e1f72eda6daabfb73d1bc:log:68', 'hash': '0x2171c973b12fa95541f9810fcf6d7abf1cf4042d9c6e1f72eda6daabfb73d1bc', 'from': '0x474e9c1b2d3bff6d4d3c3d02553a84593b213f6f', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 115.849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b2838ba0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:02:33.000Z'}}, {'blockNum': '0x4a00f9', 'uniqueId': '0x800f9a3373827b19e48639df14ab479a7294525b8616274f89418ec5fbbe199d:log:35', 'hash': '0x800f9a3373827b19e48639df14ab479a7294525b8616274f89418ec5fbbe199d', 'from': '0xb06ec0ef43ed41476d62fb82e99acd931196d7cf', 'to': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'value': 125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02e90edd00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:03:12.000Z'}}, {'blockNum': '0x4a00f9', 'uniqueId': '0xa19d39fa5cd76155e1f7ff61169ce21b87b3b8038206fb883a6a6b7bd73252e7:log:40', 'hash': '0xa19d39fa5cd76155e1f7ff61169ce21b87b3b8038206fb883a6a6b7bd73252e7', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x309de13e6a5b13d6d6faebebf16ae6117dd55411', 'value': 76.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01c9c38000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:03:12.000Z'}}, {'blockNum': '0x4a00f9', 'uniqueId': '0xf8dc54b7ce30540b46ad12787318936c683804d82836817c5c0f2fb549a3ad38:log:69', 'hash': '0xf8dc54b7ce30540b46ad12787318936c683804d82836817c5c0f2fb549a3ad38', 'from': '0x07c382c4070d7c3783bd7d00b604af61bab03069', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 79.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01db2b1100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:03:12.000Z'}}, {'blockNum': '0x4a00f9', 'uniqueId': '0x509540b939aaaaa0baaadfcb9e020bc38aa590d86c173705379d1dd6164f495d:log:81', 'hash': '0x509540b939aaaaa0baaadfcb9e020bc38aa590d86c173705379d1dd6164f495d', 'from': '0xb059960fce15a1850c25f2910d7959dd2b073099', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 66.8894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018eb11fe0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:03:12.000Z'}}, {'blockNum': '0x4a00fa', 'uniqueId': '0x965634705b839eca15b8e8cce9664352b91aa87abb7b010c2008db9032a53aa7:log:45', 'hash': '0x965634705b839eca15b8e8cce9664352b91aa87abb7b010c2008db9032a53aa7', 'from': '0x7390c8d328167ba6432dad960faf3c301ea7d1cf', 'to': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'value': 105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0271d94900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:03:33.000Z'}}, {'blockNum': '0x4a00fa', 'uniqueId': '0x0d7df5c741e6ca63f3bdee9be0d7809dfa219785b58e4b3a22f805432925a0ff:log:51', 'hash': '0x0d7df5c741e6ca63f3bdee9be0d7809dfa219785b58e4b3a22f805432925a0ff', 'from': '0x7a664e0ce67fe8c0779d467ee8a4ac236b65f86a', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 57.54555177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0156ff8b29', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:03:33.000Z'}}, {'blockNum': '0x4a00fa', 'uniqueId': '0xcb2e5d80d05f4db6ac6822162b8f964ef2e242e2af99bf1f95c67646de46f803:log:75', 'hash': '0xcb2e5d80d05f4db6ac6822162b8f964ef2e242e2af99bf1f95c67646de46f803', 'from': '0x0e20e410d81664f04d0ca3fccc350907bc8fc50b', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:03:33.000Z'}}, {'blockNum': '0x4a00fa', 'uniqueId': '0xf22441af8413070d001d38772125f91bcdd33319b769afb6acf9c039b797283b:log:79', 'hash': '0xf22441af8413070d001d38772125f91bcdd33319b769afb6acf9c039b797283b', 'from': '0xc5232b2ee1c249f2cbbeedf5335f753922f49b95', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:03:33.000Z'}}, {'blockNum': '0x4a00fa', 'uniqueId': '0x9c57b279004648a1d7ff16e10a218362605ab18529e54f39ea6f7aa51e4649b3:log:83', 'hash': '0x9c57b279004648a1d7ff16e10a218362605ab18529e54f39ea6f7aa51e4649b3', 'from': '0xfc8a75a3e7df41a02a9f6f71f747b15c847667c8', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x011e1a3000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:03:33.000Z'}}, {'blockNum': '0x4a00fa', 'uniqueId': '0xea852a2a50bae071a2dc53daee0117ee2f01b071246ef08da7698a1fbd499af9:log:88', 'hash': '0xea852a2a50bae071a2dc53daee0117ee2f01b071246ef08da7698a1fbd499af9', 'from': '0x599d56e3d0cc5e00adb4515356693a28e90584c0', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 43.84571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0105573e78', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:03:33.000Z'}}, {'blockNum': '0x4a00fc', 'uniqueId': '0x0dfa196406b3ea69f565aac18c942af7d31573c560b0375949be09cfd3ac97ff:log:47', 'hash': '0x0dfa196406b3ea69f565aac18c942af7d31573c560b0375949be09cfd3ac97ff', 'from': '0x211497f2a87da1b426564dd62b9a36ae5086ec27', 'to': '0x40c33681ef8bb5a5b5b507f9252fced8afb3b191', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0bebc200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:04:12.000Z'}}, {'blockNum': '0x4a00fd', 'uniqueId': '0x192090de35d2c42e004bcb2876891fc7a67023435a8dc16b30ed47c182f9bf00:log:53', 'hash': '0x192090de35d2c42e004bcb2876891fc7a67023435a8dc16b30ed47c182f9bf00', 'from': '0x20f4a5d0695fb5a8744924e8f05da01cd04774ee', 'to': '0x4512106a07ed9a7e2ea66c4c63a32ab31b57f381', 'value': 69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x019b45a500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:04:26.000Z'}}, {'blockNum': '0x4a0100', 'uniqueId': '0x857c37d8492f5915af82f97ca5446648a8473146ce157b237f6b6e76b11c2235:log:57', 'hash': '0x857c37d8492f5915af82f97ca5446648a8473146ce157b237f6b6e76b11c2235', 'from': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'to': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'value': 19.88196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x768176a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:05:30.000Z'}}, {'blockNum': '0x4a0119', 'uniqueId': '0x15a1baee5ec52d9af2c275593ae5781de38fe495a5e6a07cea75e30e4924ab99:log:57', 'hash': '0x15a1baee5ec52d9af2c275593ae5781de38fe495a5e6a07cea75e30e4924ab99', 'from': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'to': '0xe2a5b2384a70b2f53036cc0bed974d00b8fb5147', 'value': 23.98912333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8efc7f4d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:11:55.000Z'}}, {'blockNum': '0x4a0123', 'uniqueId': '0x4a97f56e6effbbcea1a31ae1c383cc760aae91a16b2240d6f807cd987ef84d0b:log:34', 'hash': '0x4a97f56e6effbbcea1a31ae1c383cc760aae91a16b2240d6f807cd987ef84d0b', 'from': '0xb784e84fab00ccc1f77cacbf6f5c60f41634ff24', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:14:30.000Z'}}, {'blockNum': '0x4a0125', 'uniqueId': '0x51ac05001c4cb8aca9bc7abfad0191c5b5bebfe1f0e38b26d05e7dcd6d832d62:log:43', 'hash': '0x51ac05001c4cb8aca9bc7abfad0191c5b5bebfe1f0e38b26d05e7dcd6d832d62', 'from': '0x211497f2a87da1b426564dd62b9a36ae5086ec27', 'to': '0x40c33681ef8bb5a5b5b507f9252fced8afb3b191', 'value': 211.786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04ee57ca40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:15:12.000Z'}}, {'blockNum': '0x4a0129', 'uniqueId': '0x85c01ec3142bdad8461a3953e2707e2e2c298db45aa0977c0acab88bd8a8db4f:log:44', 'hash': '0x85c01ec3142bdad8461a3953e2707e2e2c298db45aa0977c0acab88bd8a8db4f', 'from': '0xc063c4f10193cc256f01ef5831c851c96d33e26c', 'to': '0x8ed1bf47b979385be43b5e0be5a39c2afddcd696', 'value': 12.84675979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4c92998b', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:16:37.000Z'}}, {'blockNum': '0x4a0131', 'uniqueId': '0x9a4940043512e80d14d8ab409d5a576468026506de892b1a806e4ca5aaf4ddee:log:7', 'hash': '0x9a4940043512e80d14d8ab409d5a576468026506de892b1a806e4ca5aaf4ddee', 'from': '0xa49fdb01b57e943999aade25262cca6fc7f1b94f', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 39.912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xede4e100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:19:36.000Z'}}, {'blockNum': '0x4a0139', 'uniqueId': '0x02192e9b09cf3be06f7d6f3145c6c7d02b35f4944885420d019236061e22acd4:log:2', 'hash': '0x02192e9b09cf3be06f7d6f3145c6c7d02b35f4944885420d019236061e22acd4', 'from': '0xde36bd8b28afe22467ee7f04c15fd090de44a922', 'to': '0xa08b6d2e18c6e78fcca0b90b6467e42b69cfae9c', 'value': 450.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a7a44c440', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:21:47.000Z'}}, {'blockNum': '0x4a0146', 'uniqueId': '0x532490f7823d92453b0a73921bb359cd74a22d65073b4f142facc9ecdccd6088:log:21', 'hash': '0x532490f7823d92453b0a73921bb359cd74a22d65073b4f142facc9ecdccd6088', 'from': '0xd35a932ca0aff814f88863f6ed02adf22e4a426a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:25:42.000Z'}}, {'blockNum': '0x4a0149', 'uniqueId': '0x1849ebf5951365a2f1252afb7a35c9629aba6f238fc7845346d47aae9bf79493:log:9', 'hash': '0x1849ebf5951365a2f1252afb7a35c9629aba6f238fc7845346d47aae9bf79493', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x898efa55ce5ccec7efad8c7b77204edeb8847961', 'value': 299.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06faf27f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:26:40.000Z'}}, {'blockNum': '0x4a014c', 'uniqueId': '0xaa0e7d668d4411094d31aee7f639b5dd900e2f145893103305368a8c2e491426:log:0', 'hash': '0xaa0e7d668d4411094d31aee7f639b5dd900e2f145893103305368a8c2e491426', 'from': '0x2a105a4f6811ad015d24399daeab190c042b72f3', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 18.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6e44c280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:27:13.000Z'}}, {'blockNum': '0x4a0152', 'uniqueId': '0x4b27994fa09f1a03942bce03949e42f3e86289e14dfee6651104a92320544e1d:log:64', 'hash': '0x4b27994fa09f1a03942bce03949e42f3e86289e14dfee6651104a92320544e1d', 'from': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 145.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0365092500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:28:29.000Z'}}, {'blockNum': '0x4a0155', 'uniqueId': '0xe319babc7771cbb2f1585a1ef9daac44501bc8a33228127ed167e8d46d3dfbdc:log:1', 'hash': '0xe319babc7771cbb2f1585a1ef9daac44501bc8a33228127ed167e8d46d3dfbdc', 'from': '0x80e3d5734fc29dfcede04130ffbbb02a98df3531', 'to': '0x4aa7170114287b5e767aa07e1a4caca04f130704', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0bebc200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:29:09.000Z'}}, {'blockNum': '0x4a0158', 'uniqueId': '0xd59a8a1c5fc31c1fc7897a6b0a52b808e9698a3fa40e6e00cc6b802e0ffe626b:log:10', 'hash': '0xd59a8a1c5fc31c1fc7897a6b0a52b808e9698a3fa40e6e00cc6b802e0ffe626b', 'from': '0x8e6690b1a607ab8ff549a0e52ae6b259f0148dfb', 'to': '0xecc621120cb00a079a91bb3c4b59718e60cf59a1', 'value': 176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04190ab000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:29:52.000Z'}}, {'blockNum': '0x4a0159', 'uniqueId': '0x780fb6f5a82f54ce80834b0b4c46ee691a8415a989a9ba7b22f434a063427f5c:log:44', 'hash': '0x780fb6f5a82f54ce80834b0b4c46ee691a8415a989a9ba7b22f434a063427f5c', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 145.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0365092500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:30:10.000Z'}}, {'blockNum': '0x4a0159', 'uniqueId': '0x072e2460b496d6904921992df2ad0ccad22c09f46a700eaa7b2e27ac398f55d0:log:50', 'hash': '0x072e2460b496d6904921992df2ad0ccad22c09f46a700eaa7b2e27ac398f55d0', 'from': '0xa08b6d2e18c6e78fcca0b90b6467e42b69cfae9c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 450.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a7a44c440', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:30:10.000Z'}}, {'blockNum': '0x4a015c', 'uniqueId': '0xedaa2e7e25e24827bf0e99f9a1cc0e82515382605db83442ef466aee53f16ccc:log:25', 'hash': '0xedaa2e7e25e24827bf0e99f9a1cc0e82515382605db83442ef466aee53f16ccc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x85b5e97802e148f6ab9dc7ccc60dba1916903d2d', 'value': 20.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7bfa4800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:30:34.000Z'}}, {'blockNum': '0x4a015c', 'uniqueId': '0x4e7701e212dc8dfe475d0567131bcdc749bb7e133119ce4a1b542650820ece96:log:66', 'hash': '0x4e7701e212dc8dfe475d0567131bcdc749bb7e133119ce4a1b542650820ece96', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'value': 99.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0252dab700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:30:34.000Z'}}, {'blockNum': '0x4a015c', 'uniqueId': '0x823aa63597d5804a5fcf057a40d342e1373a6963e9ef67b219e44166428c6779:log:120', 'hash': '0x823aa63597d5804a5fcf057a40d342e1373a6963e9ef67b219e44166428c6779', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe8eb055a7b41d071403d03989a574b84debb4f28', 'value': 52.1476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0136d2ec40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:30:34.000Z'}}, {'blockNum': '0x4a0160', 'uniqueId': '0x7a6234ab1645b15d085b34128937e4113424840a79a4690f0ef3686e203401ab:log:33', 'hash': '0x7a6234ab1645b15d085b34128937e4113424840a79a4690f0ef3686e203401ab', 'from': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x024e160300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:32:11.000Z'}}, {'blockNum': '0x4a0173', 'uniqueId': '0xde5592042b411ddc5ce8f3afb1eb5eaa9522ad197f7db7e247e101fd7f1e357f:log:66', 'hash': '0xde5592042b411ddc5ce8f3afb1eb5eaa9522ad197f7db7e247e101fd7f1e357f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc84623e8bcd7ad3fed1b638e38f66065528c857f', 'value': 0.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04c4b400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:37:44.000Z'}}, {'blockNum': '0x4a0183', 'uniqueId': '0xe6f41532d066cc3f65712b6ae3a0ff4c577f36f06df577adbe2b61c47f3158fe:log:0', 'hash': '0xe6f41532d066cc3f65712b6ae3a0ff4c577f36f06df577adbe2b61c47f3158fe', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x8fb14159afaa32f827269be9b2865bb05ec8d040', 'value': 14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x53724e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:41:30.000Z'}}, {'blockNum': '0x4a0186', 'uniqueId': '0xf435bad7798f97bac55e6819074675395c393d4e6592f33ec5f72ea2c3a555dd:log:44', 'hash': '0xf435bad7798f97bac55e6819074675395c393d4e6592f33ec5f72ea2c3a555dd', 'from': '0xecc621120cb00a079a91bb3c4b59718e60cf59a1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04190ab000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:41:57.000Z'}}, {'blockNum': '0x4a0198', 'uniqueId': '0xe8596114d3d6ccbff7b60029af58cb929653d5444863f0014249bf33cfd03e2f:log:19', 'hash': '0xe8596114d3d6ccbff7b60029af58cb929653d5444863f0014249bf33cfd03e2f', 'from': '0x9a3d6b710c1f85cb4f44ddb40871d987233b8728', 'to': '0xa8e535aec2671ba9a22bd96ea2568f5739f1d6c7', 'value': 9.26, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3731a380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:47:53.000Z'}}, {'blockNum': '0x4a0198', 'uniqueId': '0x43228109378886a9d9de4444f546f11319fd177cf1a305111874d6cab107d96d:log:20', 'hash': '0x43228109378886a9d9de4444f546f11319fd177cf1a305111874d6cab107d96d', 'from': '0x21e729ca55cd726233ebbddb4e41de4ab6c72d0b', 'to': '0x14066b63024ce80131cea92b61a934c056b6bacb', 'value': 494.20657955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b81b36523', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:47:53.000Z'}}, {'blockNum': '0x4a01aa', 'uniqueId': '0x3e804a2dd70be556f9ec5d4a3f98f84d5b1da0d0a3124a8159647cda07151c20:log:10', 'hash': '0x3e804a2dd70be556f9ec5d4a3f98f84d5b1da0d0a3124a8159647cda07151c20', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xaa89f1e9a51a9604e4bf456ea57bc741b906d36f', 'value': 76.878705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01ca3b9824', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:52:40.000Z'}}, {'blockNum': '0x4a01b3', 'uniqueId': '0x86bae71da83e7ce374a9b31052288298cc8536bcd4e70e3eb07867e7024cdc2a:log:18', 'hash': '0x86bae71da83e7ce374a9b31052288298cc8536bcd4e70e3eb07867e7024cdc2a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'value': 99.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0252dab700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:55:07.000Z'}}, {'blockNum': '0x4a01b5', 'uniqueId': '0x5788557fad29b310c580144731e117efe242a42348a3d06a57fab608e91f572f:log:3', 'hash': '0x5788557fad29b310c580144731e117efe242a42348a3d06a57fab608e91f572f', 'from': '0x2a67a073a4dc54f4a3eae0a9d3227c8181db1a35', 'to': '0x66158ff54502be9db9b809e03223ebdc06f46374', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:55:23.000Z'}}, {'blockNum': '0x4a01c1', 'uniqueId': '0x6055cbbabe7ecddd4f8c4b2b91f25b412c04182cb052982bd5129f696772de54:log:23', 'hash': '0x6055cbbabe7ecddd4f8c4b2b91f25b412c04182cb052982bd5129f696772de54', 'from': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:58:00.000Z'}}, {'blockNum': '0x4a01c4', 'uniqueId': '0x1a8f2c2abc5d9cff132e3c8b510d5f6b96a21136672251fb19f41f746189ffae:log:6', 'hash': '0x1a8f2c2abc5d9cff132e3c8b510d5f6b96a21136672251fb19f41f746189ffae', 'from': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'to': '0x103bc4755848c643fb4f139449fa62d474a445c1', 'value': 80.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01e069d700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:58:37.000Z'}}, {'blockNum': '0x4a01c7', 'uniqueId': '0x94367ee71fcbe3db7474b84692919f23c7adb66bda7fe233625e3ec70705e924:log:12', 'hash': '0x94367ee71fcbe3db7474b84692919f23c7adb66bda7fe233625e3ec70705e924', 'from': '0x64f20243ca2840ea23c575dc4d27a3622de699aa', 'to': '0x297bbdf2c7d2c826ed058ce335d30b498e4f0f49', 'value': 40.17819999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xef7b115f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:59:12.000Z'}}, {'blockNum': '0x4a01cf', 'uniqueId': '0x2128b2c64e91c0979177b1784da6ace39448ea6fb47113fe128294acae1e5bc8:log:63', 'hash': '0x2128b2c64e91c0979177b1784da6ace39448ea6fb47113fe128294acae1e5bc8', 'from': '0x103bc4755848c643fb4f139449fa62d474a445c1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 80.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01e069d700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:01:17.000Z'}}, {'blockNum': '0x4a01d6', 'uniqueId': '0x57b7d969ba0c0937ac30444ffbec506de08735aef59a63f0374baf5c2f0b96cd:log:44', 'hash': '0x57b7d969ba0c0937ac30444ffbec506de08735aef59a63f0374baf5c2f0b96cd', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xb784e84fab00ccc1f77cacbf6f5c60f41634ff24', 'value': 49.88989413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01295defe5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:03:18.000Z'}}, {'blockNum': '0x4a01da', 'uniqueId': '0x9f17f98b1ffee2b08d5f53d90d8bf2540ef35cd872cf771c0d239927b597942c:log:2', 'hash': '0x9f17f98b1ffee2b08d5f53d90d8bf2540ef35cd872cf771c0d239927b597942c', 'from': '0x8e6690b1a607ab8ff549a0e52ae6b259f0148dfb', 'to': '0x332e3b5a256223ab9b422fb59e17ac4bb4a92a89', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:03:54.000Z'}}, {'blockNum': '0x4a01db', 'uniqueId': '0x07df570cee0d95b5a8b9458c91595591cb735f00a5bb4843dce46044779da8a3:log:23', 'hash': '0x07df570cee0d95b5a8b9458c91595591cb735f00a5bb4843dce46044779da8a3', 'from': '0xdbc59117313953d7b5f67db0549f96647c959b8b', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x35a4e900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:04:02.000Z'}}, {'blockNum': '0x4a01dd', 'uniqueId': '0xbb643bbe14e4d7e1cef7616c983af03f24e4fd6c0151ae7b5a6ab92ee2fc152b:log:1', 'hash': '0xbb643bbe14e4d7e1cef7616c983af03f24e4fd6c0151ae7b5a6ab92ee2fc152b', 'from': '0xac2bdd5ccded98c539cdc138ba585d577180513f', 'to': '0x875a04f31755de6ceae06d9f065a74aec7b966dd', 'value': 182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x043ccdf600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:04:16.000Z'}}, {'blockNum': '0x4a01e0', 'uniqueId': '0x429cec0986e1ba04da42aa57b87e47f7d1e21a057ce4bfdb86366fcd1f0fa076:log:22', 'hash': '0x429cec0986e1ba04da42aa57b87e47f7d1e21a057ce4bfdb86366fcd1f0fa076', 'from': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'to': '0x79e4377bf165c4b62b0316301f64ce695866bfeb', 'value': 391.358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x091caceac0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:04:31.000Z'}}, {'blockNum': '0x4a01e2', 'uniqueId': '0xd488e8154487d04a720c3c866f52b0c1876bb7c46ce851aa0a4e6c6057608692:log:13', 'hash': '0xd488e8154487d04a720c3c866f52b0c1876bb7c46ce851aa0a4e6c6057608692', 'from': '0x557081d14fc70b9ab03bdd1d677c9abaa2c7bb25', 'to': '0xe5c0fdf9a41f79f2b46ad3f861142f3e97380e3c', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:05:03.000Z'}}, {'blockNum': '0x4a01e4', 'uniqueId': '0x6d250bf1de496f4ac26f126a7353f44a5e0bf6d2f9992a56b4555253dc88e4c6:log:35', 'hash': '0x6d250bf1de496f4ac26f126a7353f44a5e0bf6d2f9992a56b4555253dc88e4c6', 'from': '0xb784e84fab00ccc1f77cacbf6f5c60f41634ff24', 'to': '0x1aec407f093dd0c485c126802a4ff71f36557ac6', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:05:29.000Z'}}, {'blockNum': '0x4a01e9', 'uniqueId': '0xd670829f1b2b228864fd5f7c7326be300a036c12305d6e36024044696a7470fb:log:5', 'hash': '0xd670829f1b2b228864fd5f7c7326be300a036c12305d6e36024044696a7470fb', 'from': '0x2ff146284eb5f7c3a176f2dd47e7a40010263996', 'to': '0x41a1ac11c6b6f4f801989d028797d4175695977f', 'value': 19, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x713fb300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:06:56.000Z'}}, {'blockNum': '0x4a01f5', 'uniqueId': '0x79df2d70e126902ad2bbc7a27635121b6e47c209504f1935f2f2bcc9b89e4a22:log:86', 'hash': '0x79df2d70e126902ad2bbc7a27635121b6e47c209504f1935f2f2bcc9b89e4a22', 'from': '0x1aec407f093dd0c485c126802a4ff71f36557ac6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:10:57.000Z'}}, {'blockNum': '0x4a01f5', 'uniqueId': '0xea11298b42fc58c25f3c84a35c2ccd4c5863c9a3f7f073fde4e28d009a22d759:log:88', 'hash': '0xea11298b42fc58c25f3c84a35c2ccd4c5863c9a3f7f073fde4e28d009a22d759', 'from': '0x79e4377bf165c4b62b0316301f64ce695866bfeb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 391.358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x091caceac0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:10:57.000Z'}}, {'blockNum': '0x4a01fa', 'uniqueId': '0x74ceb9c75d0768affc83cc57443a7dc3329dd4cd16d7d1880dc3f44dfa694332:log:8', 'hash': '0x74ceb9c75d0768affc83cc57443a7dc3329dd4cd16d7d1880dc3f44dfa694332', 'from': '0xaa89f1e9a51a9604e4bf456ea57bc741b906d36f', 'to': '0x567d8a28d23f05b3270e8a7e921e3f09cdb90b76', 'value': 76.878705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01ca3b9824', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:12:36.000Z'}}, {'blockNum': '0x4a0202', 'uniqueId': '0x63419e75b8c159cacab688f9c1f979bc24c718af45ea0ae0392383a932d35857:log:88', 'hash': '0x63419e75b8c159cacab688f9c1f979bc24c718af45ea0ae0392383a932d35857', 'from': '0xb5cfcf2c09e04312fcbeac20f8de00fcafd60376', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 3.325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x13d18c20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:14:51.000Z'}}, {'blockNum': '0x4a020c', 'uniqueId': '0x3ad480cfd51c42b7a89d6aea3bd6ee26bba3c0dfe07f4edf1b4329dac8761fc0:log:10', 'hash': '0x3ad480cfd51c42b7a89d6aea3bd6ee26bba3c0dfe07f4edf1b4329dac8761fc0', 'from': '0x4cceb464e41b3cc82d60629df076d14e873252f3', 'to': '0x49bff69994f36d546b9539d1c1daa1f65ac12ae9', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:17:34.000Z'}}, {'blockNum': '0x4a0214', 'uniqueId': '0x8ec282aad2046794a61c26a354fcfa816a345e86bca486a6b7e39c4a89e32db4:log:3', 'hash': '0x8ec282aad2046794a61c26a354fcfa816a345e86bca486a6b7e39c4a89e32db4', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x2a105a4f6811ad015d24399daeab190c042b72f3', 'value': 5.388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x201d6f80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:20:23.000Z'}}, {'blockNum': '0x4a021a', 'uniqueId': '0xcb3952575c352eb0df4426e35110e318d80c8c53f10ca761f0432401220a6bcf:log:39', 'hash': '0xcb3952575c352eb0df4426e35110e318d80c8c53f10ca761f0432401220a6bcf', 'from': '0x49bff69994f36d546b9539d1c1daa1f65ac12ae9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:22:00.000Z'}}, {'blockNum': '0x4a0225', 'uniqueId': '0xa63de4768617944dd21ff8c482da0b4806e7458f679ae4e1941ddc6d1504ba08:log:18', 'hash': '0xa63de4768617944dd21ff8c482da0b4806e7458f679ae4e1941ddc6d1504ba08', 'from': '0xe28661c53f9d1fef171b1939da09e291053723f5', 'to': '0x869ac10af3fc6cce5824eea9b7e8f24749c7436a', 'value': 260, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x060db88400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:26:01.000Z'}}, {'blockNum': '0x4a0231', 'uniqueId': '0xa714b3c85b094a46965c297f2c01d655e513b67417d421b76bb2496dbfe792bb:log:46', 'hash': '0xa714b3c85b094a46965c297f2c01d655e513b67417d421b76bb2496dbfe792bb', 'from': '0xf13ecd2c3b4e7c360ec996197699c8ea8e8f903c', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:29:54.000Z'}}, {'blockNum': '0x4a0255', 'uniqueId': '0x21e3b312f57d76f08fe04c2b96a74ca110093cf23cdc9806500dedc2895a5d78:log:5', 'hash': '0x21e3b312f57d76f08fe04c2b96a74ca110093cf23cdc9806500dedc2895a5d78', 'from': '0x51e05d0217edb909d4f943b50ea086856aaffd08', 'to': '0x0a0b9e52eef2a61ede9d1753f829bb5f95084862', 'value': 9538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xde12e90200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:38:11.000Z'}}, {'blockNum': '0x4a025f', 'uniqueId': '0xd8d2af8b0e766c20b0f2ed48446f81d1933a04969737d5111d42b66ab91fa366:log:51', 'hash': '0xd8d2af8b0e766c20b0f2ed48446f81d1933a04969737d5111d42b66ab91fa366', 'from': '0x87d7517d52f6fa3d303e85974f348e346253eac4', 'to': '0x565d78bc8c58cb77e8bdfd3231a6b82589488e85', 'value': 112.12637238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x029c534436', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:41:23.000Z'}}, {'blockNum': '0x4a0264', 'uniqueId': '0x38f1c90297948c5214a595b4642451878640928a743c720d5c5a5dfd5c1ba394:log:99', 'hash': '0x38f1c90297948c5214a595b4642451878640928a743c720d5c5a5dfd5c1ba394', 'from': '0x8855d26f160fabb8bb52e8f51904f419224a66e0', 'to': '0x60e04fd7cae7cbfb68730638a8de5f3bb2dc00d8', 'value': 94.57841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0233bb3368', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:43:40.000Z'}}, {'blockNum': '0x4a0266', 'uniqueId': '0x2bf0cbdec8e93ecab9220b4878ee5c4c5427344f6111ba3acaf25fd1c2fb4867:log:35', 'hash': '0x2bf0cbdec8e93ecab9220b4878ee5c4c5427344f6111ba3acaf25fd1c2fb4867', 'from': '0x0a0b9e52eef2a61ede9d1753f829bb5f95084862', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xde12e90200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:44:01.000Z'}}, {'blockNum': '0x4a026e', 'uniqueId': '0xeb4cc2610c04e0fd4f4f7242982f3bb97c37d8de7bc9dc5d7be25abcfeb6a24e:log:12', 'hash': '0xeb4cc2610c04e0fd4f4f7242982f3bb97c37d8de7bc9dc5d7be25abcfeb6a24e', 'from': '0x1efb863d5fdce9eb99337dffa16c4255ce280011', 'to': '0x3fe4a2e6a10c74e087d0b5a741bf3e3391794ee0', 'value': 18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6b49d200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:46:54.000Z'}}, {'blockNum': '0x4a0289', 'uniqueId': '0xd1d0d75951f3c0734fc97c733b4235db279b0230b559522706e73f4c72c4eb95:log:23', 'hash': '0xd1d0d75951f3c0734fc97c733b4235db279b0230b559522706e73f4c72c4eb95', 'from': '0x60e04fd7cae7cbfb68730638a8de5f3bb2dc00d8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 94.57841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0233bb3368', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:55:10.000Z'}}, {'blockNum': '0x4a02a4', 'uniqueId': '0x32f170aa7e62d3c98a0d6a9f6f94b382ddea278046a848f5068ef7f458fe0507:log:26', 'hash': '0x32f170aa7e62d3c98a0d6a9f6f94b382ddea278046a848f5068ef7f458fe0507', 'from': '0x525bb975837225dbc4a07ad35a0305962c023a05', 'to': '0x4605de71e288da71abce662460d0fa5a5bd2ed48', 'value': 12, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x47868c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:02:19.000Z'}}, {'blockNum': '0x4a02ae', 'uniqueId': '0xe28bfc05c3ded7c5ba2eff9b99af61351f712729ddd8ba73d7e42d7163258c78:log:65', 'hash': '0xe28bfc05c3ded7c5ba2eff9b99af61351f712729ddd8ba73d7e42d7163258c78', 'from': '0xe5ced93e71e20e4aa68fee53f1b9acd0543a47b3', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 3.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x15846c40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:05:16.000Z'}}, {'blockNum': '0x4a02b3', 'uniqueId': '0xd62930b899043199d87a0df600aca071e0e4e81c55c7742a1786ce0174ebf38e:log:16', 'hash': '0xd62930b899043199d87a0df600aca071e0e4e81c55c7742a1786ce0174ebf38e', 'from': '0xaeb1d6c19206c11b7e1188fadc6c171ada519886', 'to': '0x2c0b75352250f31b3e0439ba674fdd0bbae6f547', 'value': 105.04558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02721ed5b0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:07:00.000Z'}}, {'blockNum': '0x4a02bd', 'uniqueId': '0x48a20169c7fdf1570a44870f3a92575f3574124e4ed736cdb0c86aebd10406b6:log:28', 'hash': '0x48a20169c7fdf1570a44870f3a92575f3574124e4ed736cdb0c86aebd10406b6', 'from': '0x7f0432e9a885267ce885ed2d70be07687a0140d8', 'to': '0xc7072ff247a8f2719c2096764f2f81ca655e4e33', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01bf08eb00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:09:29.000Z'}}, {'blockNum': '0x4a02c6', 'uniqueId': '0x5c40d4a93dfef10e661812a643ef4e919a3fed35da1a121717f0433dab5feb9b:log:5', 'hash': '0x5c40d4a93dfef10e661812a643ef4e919a3fed35da1a121717f0433dab5feb9b', 'from': '0x875a04f31755de6ceae06d9f065a74aec7b966dd', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x043ccdf600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:12:16.000Z'}}, {'blockNum': '0x4a02d2', 'uniqueId': '0xc0b7c26ff7a596814bdebb0fe8ea1f9307d2a62ed7c2c9eb473cc3db02d883bd:log:98', 'hash': '0xc0b7c26ff7a596814bdebb0fe8ea1f9307d2a62ed7c2c9eb473cc3db02d883bd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7d0a8901a1973166fd970bc26bf5ef1156ef59a3', 'value': 6.24355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2536e6b8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:15:38.000Z'}}, {'blockNum': '0x4a02d2', 'uniqueId': '0x8f784b9e7a56af18b402e9716f86e3e20058eeb4a56e6736701c845e50d9b366:log:107', 'hash': '0x8f784b9e7a56af18b402e9716f86e3e20058eeb4a56e6736701c845e50d9b366', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xcf360c411bd6707909984aec96d29b43915e9959', 'value': 1.11868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06aaf860', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:15:38.000Z'}}, {'blockNum': '0x4a02db', 'uniqueId': '0x1c0072220e600c719dca09262d767974ff4aa4457201499f120b02d9cdf1a80d:log:3', 'hash': '0x1c0072220e600c719dca09262d767974ff4aa4457201499f120b02d9cdf1a80d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'value': 14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x53724e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:17:35.000Z'}}, {'blockNum': '0x4a02e0', 'uniqueId': '0xbcc57760c6aceaa23ba9bcd97a94adb378fc3e8aa73bc67c63800afb365111c2:log:22', 'hash': '0xbcc57760c6aceaa23ba9bcd97a94adb378fc3e8aa73bc67c63800afb365111c2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'value': 99.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0252dab700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:19:02.000Z'}}, {'blockNum': '0x4a02e0', 'uniqueId': '0x8d2a6248591787e2b9656c59ae466fadcdd3614b0cef7e2f6b656503007c5dd2:log:93', 'hash': '0x8d2a6248591787e2b9656c59ae466fadcdd3614b0cef7e2f6b656503007c5dd2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x531c907457798619c5d8452f471f0aa785cec166', 'value': 29.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xae57f540', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:19:02.000Z'}}, {'blockNum': '0x4a02ea', 'uniqueId': '0xcfe757728f7f55df4eb9ff6bc9bcc2432986f2b56d4d9c0513a22da2c3374ce4:log:36', 'hash': '0xcfe757728f7f55df4eb9ff6bc9bcc2432986f2b56d4d9c0513a22da2c3374ce4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc84623e8bcd7ad3fed1b638e38f66065528c857f', 'value': 272.50602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0658433010', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:22:40.000Z'}}, {'blockNum': '0x4a02ea', 'uniqueId': '0x5cadd902d9c66ae30956adb59a9704ce1390d36de30e6d7b4116914c124c759f:log:41', 'hash': '0x5cadd902d9c66ae30956adb59a9704ce1390d36de30e6d7b4116914c124c759f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8b165da07a3d684c9af89b9a17d8f073f480b9aa', 'value': 200.87872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04ad549a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:22:40.000Z'}}, {'blockNum': '0x4a02f2', 'uniqueId': '0x50f2009472ebbe8728037d830e64cdecb251232f7474faca5ced7f239c3d499e:log:18', 'hash': '0x50f2009472ebbe8728037d830e64cdecb251232f7474faca5ced7f239c3d499e', 'from': '0x7f0432e9a885267ce885ed2d70be07687a0140d8', 'to': '0xc7072ff247a8f2719c2096764f2f81ca655e4e33', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9502f900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:24:57.000Z'}}, {'blockNum': '0x4a02fa', 'uniqueId': '0x6f033ce622adf5b23f67aa2fd35b1211cb337ad26d1bd576b1e531cf0bd58d2b:log:26', 'hash': '0x6f033ce622adf5b23f67aa2fd35b1211cb337ad26d1bd576b1e531cf0bd58d2b', 'from': '0x5e0f8cb29e194af2ab131980feda68dc015d3f45', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:27:11.000Z'}}, {'blockNum': '0x4a02fc', 'uniqueId': '0x56b37f2511eb6a3de818d6775af81b368f7c8257f24608fa0a0336b734e13caa:log:33', 'hash': '0x56b37f2511eb6a3de818d6775af81b368f7c8257f24608fa0a0336b734e13caa', 'from': '0xeb4d3938608d00fe62c9d7fbbca7b090d28c0829', 'to': '0x04fa174ba7100a59cbce42c3065169a382d0d694', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:27:44.000Z'}}, {'blockNum': '0x4a030a', 'uniqueId': '0x71add9e5441c3a3dd4433c6dc5f6f6b2390a7bb9dc5f2623e7fdace02b661d33:log:13', 'hash': '0x71add9e5441c3a3dd4433c6dc5f6f6b2390a7bb9dc5f2623e7fdace02b661d33', 'from': '0xc7072ff247a8f2719c2096764f2f81ca655e4e33', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01bf08eb00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:31:32.000Z'}}, {'blockNum': '0x4a031f', 'uniqueId': '0x8a37febb6b638e85e3869f5d9b6fa2860d53c41815c566cc9fbae4aced24538c:log:40', 'hash': '0x8a37febb6b638e85e3869f5d9b6fa2860d53c41815c566cc9fbae4aced24538c', 'from': '0xc7072ff247a8f2719c2096764f2f81ca655e4e33', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9502f900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:37:43.000Z'}}, {'blockNum': '0x4a032f', 'uniqueId': '0xdb54c9a0fb9ad662d9ffa754def7ac812672bd883cba6057854b75b0ff79d39b:log:36', 'hash': '0xdb54c9a0fb9ad662d9ffa754def7ac812672bd883cba6057854b75b0ff79d39b', 'from': '0x04fa174ba7100a59cbce42c3065169a382d0d694', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:44:13.000Z'}}, {'blockNum': '0x4a0337', 'uniqueId': '0x596e49fe44cebc1f6cdd8d4e703ddf579333a7f4cca23451433f134d5bf74626:log:10', 'hash': '0x596e49fe44cebc1f6cdd8d4e703ddf579333a7f4cca23451433f134d5bf74626', 'from': '0x5e0f8cb29e194af2ab131980feda68dc015d3f45', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x09502f9000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:45:34.000Z'}}, {'blockNum': '0x4a0338', 'uniqueId': '0x3b25b2c7fff7187e08a777eaf44bbff4ee85d2a45ae2d5c832d759af0e110945:log:6', 'hash': '0x3b25b2c7fff7187e08a777eaf44bbff4ee85d2a45ae2d5c832d759af0e110945', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xbb4081d84495a1037742fffe7372ce6b67cddae5', 'value': 49.456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0126c7de00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:45:44.000Z'}}, {'blockNum': '0x4a0349', 'uniqueId': '0x116e334cd3b35b5af005a87bd2bd409ada3250495695cc2f517c17b88f39c2f7:log:29', 'hash': '0x116e334cd3b35b5af005a87bd2bd409ada3250495695cc2f517c17b88f39c2f7', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x6caba1d222113d190c8f2783c8f67c842e4b2f16', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:50:11.000Z'}}, {'blockNum': '0x4a035c', 'uniqueId': '0xb911e7a0b8b1fe89011e534734497441b18ff38bab41fb65d8ff1ffb9878362e:log:22', 'hash': '0xb911e7a0b8b1fe89011e534734497441b18ff38bab41fb65d8ff1ffb9878362e', 'from': '0x68058ece4db24ba95e033177b2a5590b72af6e64', 'to': '0xf457805b3edc34f240b598a06b346d8af6958fb1', 'value': 35.021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xd0bdce20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:54:31.000Z'}}, {'blockNum': '0x4a0364', 'uniqueId': '0x67977c87fa683fed203a86524b7bc95ea1dc804016248c2fa07f010c89b5c6fa:log:54', 'hash': '0x67977c87fa683fed203a86524b7bc95ea1dc804016248c2fa07f010c89b5c6fa', 'from': '0x50595b75062e36864860b4fd5ed06a41e95d1280', 'to': '0x7c0d19dde28e67ebd339b2edf6b737a79768cc86', 'value': 33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc4b20100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:58:04.000Z'}}, {'blockNum': '0x4a0375', 'uniqueId': '0xc9840f1393e54065ff2d184508eaa421e143d67fbe3481203b1d676b159d0faf:log:64', 'hash': '0xc9840f1393e54065ff2d184508eaa421e143d67fbe3481203b1d676b159d0faf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x72463702c309e469e4e20d91e72ba566c0b42303', 'value': 615.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e56743b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:02:27.000Z'}}, {'blockNum': '0x4a0375', 'uniqueId': '0x5f12abaa52e9acfd07f0796a9fc5b8253c87d8664b4b4c7ce98ab1a08c02ea43:log:66', 'hash': '0x5f12abaa52e9acfd07f0796a9fc5b8253c87d8664b4b4c7ce98ab1a08c02ea43', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'value': 16.21611001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x60a7d1f9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:02:27.000Z'}}, {'blockNum': '0x4a0375', 'uniqueId': '0xda04b43cd173befb72d4427368ae08a90e1d64d893d20432d9c393a57ad80631:log:68', 'hash': '0xda04b43cd173befb72d4427368ae08a90e1d64d893d20432d9c393a57ad80631', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x02d4d7224aeec3f18891ee5daa3ad619c0ae64c5', 'value': 29.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb19f3100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:02:27.000Z'}}, {'blockNum': '0x4a0375', 'uniqueId': '0x28cd260157db09ce7d5832fc96f29943e6f52848d2808e8eeebe42d181299230:log:71', 'hash': '0x28cd260157db09ce7d5832fc96f29943e6f52848d2808e8eeebe42d181299230', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd2ff98d4fe0c6bad913c560d9affe7d7bcc35026', 'value': 63.52581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x017aa4b188', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:02:27.000Z'}}, {'blockNum': '0x4a0376', 'uniqueId': '0x9d0f68b1ef3ae4e19b9a8411fe793383f6546fe72c8f732bf3d64a00610a5e4b:log:21', 'hash': '0x9d0f68b1ef3ae4e19b9a8411fe793383f6546fe72c8f732bf3d64a00610a5e4b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x12a12562192bd96c0c9bda1f564681c256d71553', 'value': 86.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0204c5b380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:02:42.000Z'}}, {'blockNum': '0x4a0376', 'uniqueId': '0x8ccb02aa7c0a03636f201525dfc4c267e0a6dd51fe2e55b7cd9b8f09ff2562c7:log:22', 'hash': '0x8ccb02aa7c0a03636f201525dfc4c267e0a6dd51fe2e55b7cd9b8f09ff2562c7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0b036b49d40abb816fe70800c054351709914bd7', 'value': 19.75003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x75b82778', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:02:42.000Z'}}, {'blockNum': '0x4a037e', 'uniqueId': '0x46a54d8dd19567e697ae56cba08a036fb7635504640b8879cacfd7d80efbfd41:log:87', 'hash': '0x46a54d8dd19567e697ae56cba08a036fb7635504640b8879cacfd7d80efbfd41', 'from': '0x24f8ca0de5e5705918ae4f883d100c09849a62d0', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 20.27373471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x78d7439f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:05:05.000Z'}}, {'blockNum': '0x4a0382', 'uniqueId': '0x8797f485acc430814d67460cb3968eec1bbcebdb20466d459de02dba971f69a9:log:10', 'hash': '0x8797f485acc430814d67460cb3968eec1bbcebdb20466d459de02dba971f69a9', 'from': '0x7c0d19dde28e67ebd339b2edf6b737a79768cc86', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc4b20100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:05:38.000Z'}}, {'blockNum': '0x4a03a2', 'uniqueId': '0x319384ea997d98ce9897459d5f0b9ae9465cae122e431b0f2f3bf4acbcc05a20:log:12', 'hash': '0x319384ea997d98ce9897459d5f0b9ae9465cae122e431b0f2f3bf4acbcc05a20', 'from': '0xef38f87549c03bceb98db5a2d6e0fbb3b6b2028e', 'to': '0xb4dc73127297d25de5660e9fe63e60630b4827e9', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:14:36.000Z'}}, {'blockNum': '0x4a03a4', 'uniqueId': '0x5723bec63dca2226c2e024e68f42a5fdf82790fcbf212eba7de7d477be3f24cf:log:18', 'hash': '0x5723bec63dca2226c2e024e68f42a5fdf82790fcbf212eba7de7d477be3f24cf', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x84a89a472136da428de6461ab9dd9ee649048091', 'value': 4.99984358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd27e6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:16:12.000Z'}}, {'blockNum': '0x4a03a9', 'uniqueId': '0x6a8ac760eaf45e4bb3a0e97dfe9e5829fbe7f74cbad3f9cca3d4f4af8fecdc0b:log:14', 'hash': '0x6a8ac760eaf45e4bb3a0e97dfe9e5829fbe7f74cbad3f9cca3d4f4af8fecdc0b', 'from': '0x84a89a472136da428de6461ab9dd9ee649048091', 'to': '0xa09b3fabb3b5dfc4c77adef884933a4e572497fe', 'value': 4.99984358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd27e6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:17:41.000Z'}}, {'blockNum': '0x4a03b7', 'uniqueId': '0x232e109c14251d517bafc422f6d00f1d41d68967311d4c2cc285846746f7ba6f:log:20', 'hash': '0x232e109c14251d517bafc422f6d00f1d41d68967311d4c2cc285846746f7ba6f', 'from': '0x3101e4eaf5837facf1ddcd6cb2803d5743cbf178', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:20:31.000Z'}}, {'blockNum': '0x4a03c7', 'uniqueId': '0x9aabec1f01a707ea5462cf9619f9cb10e3701dd1a3b0dfa2452730bb4cfafe89:log:50', 'hash': '0x9aabec1f01a707ea5462cf9619f9cb10e3701dd1a3b0dfa2452730bb4cfafe89', 'from': '0x4605de71e288da71abce662460d0fa5a5bd2ed48', 'to': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'value': 12, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x47868c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:25:47.000Z'}}, {'blockNum': '0x4a03e2', 'uniqueId': '0xfefe8feb58ba01d17117cf196c224fa5eb9c3e3a9c007de92394537d99e434f5:log:23', 'hash': '0xfefe8feb58ba01d17117cf196c224fa5eb9c3e3a9c007de92394537d99e434f5', 'from': '0x6185dc1b1fbebe5b472d583e2d840b2d3041247a', 'to': '0xdea5a7c575e02d43bb6c155f9f800422f737adea', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:31:43.000Z'}}, {'blockNum': '0x4a03f2', 'uniqueId': '0xf741cd3398a3e45d87ab441db45a0d75c9bb7d2e728669254fa8df6f7edf6904:log:20', 'hash': '0xf741cd3398a3e45d87ab441db45a0d75c9bb7d2e728669254fa8df6f7edf6904', 'from': '0xdbbdb6cd9e9389872aa3f48b79436c5f792c0e84', 'to': '0x6af4aefd5fcb1a63ecd1c0b415d837ba548a0bb9', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:36:38.000Z'}}, {'blockNum': '0x4a03f9', 'uniqueId': '0x3f4dc7acf58ec03fd046aaf08f16dbdff1d4ca52c1fe20b57760dea0b41213e6:log:1', 'hash': '0x3f4dc7acf58ec03fd046aaf08f16dbdff1d4ca52c1fe20b57760dea0b41213e6', 'from': '0xb4dc73127297d25de5660e9fe63e60630b4827e9', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a221e700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:38:30.000Z'}}, {'blockNum': '0x4a03fa', 'uniqueId': '0x04ea6a13d91d19358c461341fe8a34cf2bf10f659fe7f152ade56cfd8a5f17c9:log:75', 'hash': '0x04ea6a13d91d19358c461341fe8a34cf2bf10f659fe7f152ade56cfd8a5f17c9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7d69f73b8257e2b388a770eb34e28640a60edc03', 'value': 99.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0252dab700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:39:11.000Z'}}, {'blockNum': '0x4a03fd', 'uniqueId': '0xdb825c6edf7e112f4e789776d6a55d91e9cafa0e670a3849ac1aa9b8ddbb477f:log:14', 'hash': '0xdb825c6edf7e112f4e789776d6a55d91e9cafa0e670a3849ac1aa9b8ddbb477f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x11bd47832fb58b8b66257eda98283eb5d147e12e', 'value': 140.56499998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0345d52b1e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:39:46.000Z'}}, {'blockNum': '0x4a0404', 'uniqueId': '0x81699046463618620cba3f2f1222caef4030aabee344530d35ad14485318e751:log:46', 'hash': '0x81699046463618620cba3f2f1222caef4030aabee344530d35ad14485318e751', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xff3e5ba3c0a6ead375175d07e52bbdfa8ae1f9ce', 'value': 22.858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x883e8a40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:42:08.000Z'}}, {'blockNum': '0x4a0420', 'uniqueId': '0x443d65f4800d7bcf535ac31f3d362fe1966b3c6eda1667a08e822d968a3022be:log:14', 'hash': '0x443d65f4800d7bcf535ac31f3d362fe1966b3c6eda1667a08e822d968a3022be', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xb501732006565d18cb6a3d778937277d78ee224f', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:48:01.000Z'}}, {'blockNum': '0x4a0422', 'uniqueId': '0x562029f63adee55155346291a037389066cb3e1395690feda4cc88aea5f23291:log:45', 'hash': '0x562029f63adee55155346291a037389066cb3e1395690feda4cc88aea5f23291', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x37dd87c722ffc94296aeb8d9e74713f3c982e342', 'value': 3.77609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1681db28', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:48:35.000Z'}}, {'blockNum': '0x4a0430', 'uniqueId': '0xf15c82a3a860c0c7183f7032f11fbf2384ffa082ef254749f6e0653ef03869a6:log:13', 'hash': '0xf15c82a3a860c0c7183f7032f11fbf2384ffa082ef254749f6e0653ef03869a6', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xb4dc73127297d25de5660e9fe63e60630b4827e9', 'value': 105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0271d94900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:54:29.000Z'}}, {'blockNum': '0x4a0432', 'uniqueId': '0xc54f5e536562af144e7b73e16e12e92c228d92a31e8be68fcec8aa36fd85dcd5:log:12', 'hash': '0xc54f5e536562af144e7b73e16e12e92c228d92a31e8be68fcec8aa36fd85dcd5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9bf6c38642678937867c77db3fc5161e5b65d4cb', 'value': 99.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0252dab700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:54:52.000Z'}}, {'blockNum': '0x4a0438', 'uniqueId': '0x373c5187f03c8fa7aa97e57f8970f75925f2b50699624fa8beb6c4b56d5d070f:log:35', 'hash': '0x373c5187f03c8fa7aa97e57f8970f75925f2b50699624fa8beb6c4b56d5d070f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa3c1c1adfed82c0d5d66a8d03e9d62d0c5156ae8', 'value': 1.43836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0892c360', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:57:10.000Z'}}, {'blockNum': '0x4a0438', 'uniqueId': '0xc8a53b419a593ff6ad72e6ec2eafc74f904fd741dbbea80ff27f0e48f738600e:log:68', 'hash': '0xc8a53b419a593ff6ad72e6ec2eafc74f904fd741dbbea80ff27f0e48f738600e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3fe4a2e6a10c74e087d0b5a741bf3e3391794ee0', 'value': 103.93576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x026b816240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:57:10.000Z'}}, {'blockNum': '0x4a0439', 'uniqueId': '0x76adc69409e5c0467da65d20e85f7fd9fc6644b2597194b11dc949edf91c1621:log:15', 'hash': '0x76adc69409e5c0467da65d20e85f7fd9fc6644b2597194b11dc949edf91c1621', 'from': '0x2fe6548eaeee12b996fc969c6487416f6d3002b1', 'to': '0x2f3ff2a182674bca307279e3c9f8fd9917ef4c4d', 'value': 278.00198186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0679055c2a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:57:50.000Z'}}, {'blockNum': '0x4a0439', 'uniqueId': '0x3028ad5300f1881f6d046e9ad628b907d9af6b2826a04214f1e2c7f55c0ec37a:log:84', 'hash': '0x3028ad5300f1881f6d046e9ad628b907d9af6b2826a04214f1e2c7f55c0ec37a', 'from': '0xb4dc73127297d25de5660e9fe63e60630b4827e9', 'to': '0xa594363531a276731fdc83509e12914756480e4a', 'value': 106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0277cf2a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:57:50.000Z'}}, {'blockNum': '0x4a0442', 'uniqueId': '0xe48f7c5bf0dd2255b29dfd09603997b495eb613096a47a6920218e42075a00a3:log:46', 'hash': '0xe48f7c5bf0dd2255b29dfd09603997b495eb613096a47a6920218e42075a00a3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd4b646888825b12ac4d53bee0c0d455fe8563271', 'value': 200.0995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a8af9b30', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:00:27.000Z'}}, {'blockNum': '0x4a0444', 'uniqueId': '0x292ceb0f084b47371cd704e47af7f8d13fa24000a10f938b99146e5f9c4f76d4:log:2', 'hash': '0x292ceb0f084b47371cd704e47af7f8d13fa24000a10f938b99146e5f9c4f76d4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5a22c0e25077e41af9d0b1f4927cbc828fceed6d', 'value': 81.67804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01e6d6cc60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:00:45.000Z'}}, {'blockNum': '0x4a0447', 'uniqueId': '0x9239b860d21f75506c34497e4ca17a41d9b1660ff961cb925e102d9390ee3743:log:88', 'hash': '0x9239b860d21f75506c34497e4ca17a41d9b1660ff961cb925e102d9390ee3743', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x800009b39db2737b072670c444e3379e6ba0a738', 'value': 1.72808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a4cd740', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:02:03.000Z'}}, {'blockNum': '0x4a044d', 'uniqueId': '0xab47ad62bad0733e32bad7319c120e6133c8392762e52268fa57c9eeda5fdccb:log:18', 'hash': '0xab47ad62bad0733e32bad7319c120e6133c8392762e52268fa57c9eeda5fdccb', 'from': '0xce6937cbe66831685d412b5416d84668f1b59cef', 'to': '0x10831d621e7b9ce91ea8b8ab2663edd38b50f87c', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:03:37.000Z'}}, {'blockNum': '0x4a0452', 'uniqueId': '0xc298d5b1fbac774d297616b401030ad1a4e26be758d72b101a07951ae077b93a:log:71', 'hash': '0xc298d5b1fbac774d297616b401030ad1a4e26be758d72b101a07951ae077b93a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2c90cf19f68cf7f85b9dc0b19217e1dc12b7a85a', 'value': 0.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04c4b400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:04:57.000Z'}}, {'blockNum': '0x4a0452', 'uniqueId': '0x2cbade3e9efe300e7ed2c4000fea1cc8d2d05364fca8af4c6e4e2164b39e7480:log:91', 'hash': '0x2cbade3e9efe300e7ed2c4000fea1cc8d2d05364fca8af4c6e4e2164b39e7480', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4cceb464e41b3cc82d60629df076d14e873252f3', 'value': 100.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0258d09800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:04:57.000Z'}}, {'blockNum': '0x4a045c', 'uniqueId': '0x20c3215da8e851b66a48de48f1ccc81b9df488fd507446a6bb6e30d63ed1f25f:log:46', 'hash': '0x20c3215da8e851b66a48de48f1ccc81b9df488fd507446a6bb6e30d63ed1f25f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x16c9c1735ad07534604d9d01193d362a614950c7', 'value': 7.94185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2f564d28', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:06:52.000Z'}}, {'blockNum': '0x4a045c', 'uniqueId': '0x41cf11473b5d3fe7d2bd23f9ad9b3fc62f97a574363e494668c3402cdea1b2a4:log:96', 'hash': '0x41cf11473b5d3fe7d2bd23f9ad9b3fc62f97a574363e494668c3402cdea1b2a4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf01d40d6ec9b2501db108e83ec6a0a89adf7f42a', 'value': 143.95601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x035a0b7068', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:06:52.000Z'}}, {'blockNum': '0x4a045c', 'uniqueId': '0x1cb68a2599377c3b49a9e11f83376015914174d3443dcdd59d2582bb133789d7:log:98', 'hash': '0x1cb68a2599377c3b49a9e11f83376015914174d3443dcdd59d2582bb133789d7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2412f8511ea0cc48a22b6e1926c51916e3fccae2', 'value': 192.1088008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04790ec450', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:06:52.000Z'}}, {'blockNum': '0x4a0460', 'uniqueId': '0x3e8ebc17fead870d0acbc05f2334f0604ca95dc029d6a46c4d829ca52be12880:log:36', 'hash': '0x3e8ebc17fead870d0acbc05f2334f0604ca95dc029d6a46c4d829ca52be12880', 'from': '0xce6937cbe66831685d412b5416d84668f1b59cef', 'to': '0x10831d621e7b9ce91ea8b8ab2663edd38b50f87c', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:07:54.000Z'}}, {'blockNum': '0x4a0469', 'uniqueId': '0xef7a9bfc538a716c1e173edebe025fe88ce2256856d58dd5af8e7266c31fc8ed:log:91', 'hash': '0xef7a9bfc538a716c1e173edebe025fe88ce2256856d58dd5af8e7266c31fc8ed', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x98dbb6901641d770a71429401865729d916b3537', 'value': 1.65814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x09e21ef0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:10:27.000Z'}}, {'blockNum': '0x4a046c', 'uniqueId': '0xee4c70121635974bb930af7dd30741756e2cac46fe69d714ff950480d5343a7d:log:12', 'hash': '0xee4c70121635974bb930af7dd30741756e2cac46fe69d714ff950480d5343a7d', 'from': '0x47d18e6c90adba9d70ca6bd0df8d3a596eb01013', 'to': '0x64f3502c4b6b7e7f106e7ab1f175a4e2c2fde45f', 'value': 59.77274026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x016445f6aa', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:12:00.000Z'}}, {'blockNum': '0x4a0479', 'uniqueId': '0x3fef2c36ea8b8549941dd1a51798e8e34f607c40cd1c9a2fbeacef5e4db5cbb0:log:56', 'hash': '0x3fef2c36ea8b8549941dd1a51798e8e34f607c40cd1c9a2fbeacef5e4db5cbb0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x47397318517590545e1246aa0b17dc7a3172d749', 'value': 7.37242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2bf16b90', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:15:04.000Z'}}, {'blockNum': '0x4a0483', 'uniqueId': '0x7567a969cd71d5fb2128e87b5891ace04d888dd7222b9025396bdb2af21bf433:log:4', 'hash': '0x7567a969cd71d5fb2128e87b5891ace04d888dd7222b9025396bdb2af21bf433', 'from': '0x2412f8511ea0cc48a22b6e1926c51916e3fccae2', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 192.1088008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04790ec450', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:18:14.000Z'}}, {'blockNum': '0x4a04a2', 'uniqueId': '0x265f96e591281a718a83dde854b58f8e207f1fb9e2ce666d2cd6aae4a9f8ca7f:log:10', 'hash': '0x265f96e591281a718a83dde854b58f8e207f1fb9e2ce666d2cd6aae4a9f8ca7f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xb4dc73127297d25de5660e9fe63e60630b4827e9', 'value': 93.753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x022ecfb9a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:26:20.000Z'}}, {'blockNum': '0x4a04a3', 'uniqueId': '0xf23a557bf15d3d86a84b63fbfdf55fdf905b2c885d6550f4a78681f051793c53:log:0', 'hash': '0xf23a557bf15d3d86a84b63fbfdf55fdf905b2c885d6550f4a78681f051793c53', 'from': '0xb3389fdbdbc052a57f6ccfa1043e4bd43b44cd06', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xcaa7e200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:26:35.000Z'}}, {'blockNum': '0x4a04a6', 'uniqueId': '0x250efd730002921ce719ce104693178301b2b373405ef68e7e45784f90b4a2cd:log:36', 'hash': '0x250efd730002921ce719ce104693178301b2b373405ef68e7e45784f90b4a2cd', 'from': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x049c2c0600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:27:07.000Z'}}, {'blockNum': '0x4a04a9', 'uniqueId': '0xc650c39b01617c85779c5321f5425f55ca1af7aaaa389ea290e835d42085e86b:log:1', 'hash': '0xc650c39b01617c85779c5321f5425f55ca1af7aaaa389ea290e835d42085e86b', 'from': '0xb3389fdbdbc052a57f6ccfa1043e4bd43b44cd06', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xcaa7e200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:27:54.000Z'}}, {'blockNum': '0x4a04a9', 'uniqueId': '0x351eb12be6aaa844f9678d8f51a50a12e004957a5f2f9f7962ef710aff4970b4:log:17', 'hash': '0x351eb12be6aaa844f9678d8f51a50a12e004957a5f2f9f7962ef710aff4970b4', 'from': '0xb3389fdbdbc052a57f6ccfa1043e4bd43b44cd06', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xcaa7e200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:27:54.000Z'}}, {'blockNum': '0x4a04a9', 'uniqueId': '0xd9083450ece44eb5eb51468ff5ff1f742ba6cb662f897e2d8110d779fe83387b:log:20', 'hash': '0xd9083450ece44eb5eb51468ff5ff1f742ba6cb662f897e2d8110d779fe83387b', 'from': '0xb3389fdbdbc052a57f6ccfa1043e4bd43b44cd06', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xcaa7e200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:27:54.000Z'}}, {'blockNum': '0x4a04ae', 'uniqueId': '0x000fb5cc5cde5374e5cf96d769e88786bfe105bc08d42f351c48e3cc1581425c:log:12', 'hash': '0x000fb5cc5cde5374e5cf96d769e88786bfe105bc08d42f351c48e3cc1581425c', 'from': '0xb4dc73127297d25de5660e9fe63e60630b4827e9', 'to': '0xa594363531a276731fdc83509e12914756480e4a', 'value': 93.753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x022ecfb9a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:29:13.000Z'}}, {'blockNum': '0x4a04b5', 'uniqueId': '0x83ac45cc614b60b7aecb33a4d12dc06982da1f6de66615efcb9f7d969131a36a:log:21', 'hash': '0x83ac45cc614b60b7aecb33a4d12dc06982da1f6de66615efcb9f7d969131a36a', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x049c2c0600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:30:42.000Z'}}, {'blockNum': '0x4a04bd', 'uniqueId': '0x24d87eb3e6df57cbdf848931be3fdc21dadf2b114f84098d86610ff8a97e781a:log:30', 'hash': '0x24d87eb3e6df57cbdf848931be3fdc21dadf2b114f84098d86610ff8a97e781a', 'from': '0xce6937cbe66831685d412b5416d84668f1b59cef', 'to': '0xdd8bccda953ecd55401c34a025fc14532916668f', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:33:12.000Z'}}, {'blockNum': '0x4a04d8', 'uniqueId': '0x3bfa7b4cf9d16be31d0b61d3fa83b62e0f036f89d4ead127265a1b009ddf7a20:log:6', 'hash': '0x3bfa7b4cf9d16be31d0b61d3fa83b62e0f036f89d4ead127265a1b009ddf7a20', 'from': '0xfab786df69c253ef999f83fd0c4f8d3b43a67c3e', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:39:18.000Z'}}, {'blockNum': '0x4a04dc', 'uniqueId': '0xb1e9ada703b52dfa5ed4c5e2ac0c580f2e7bb4bdea7b95be0d0df9c405dda5da:log:23', 'hash': '0xb1e9ada703b52dfa5ed4c5e2ac0c580f2e7bb4bdea7b95be0d0df9c405dda5da', 'from': '0x85673b69d4004c45f63acb8a187646eed0effb1a', 'to': '0x6d94c360c2f3cc280bbf155c6c9296c70264792f', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:40:12.000Z'}}, {'blockNum': '0x4a04dd', 'uniqueId': '0x08f801adc868e3c9343f00c46ae624abd74580c07298c800beb31f880cba0951:log:8', 'hash': '0x08f801adc868e3c9343f00c46ae624abd74580c07298c800beb31f880cba0951', 'from': '0xdea5a7c575e02d43bb6c155f9f800422f737adea', 'to': '0x6185dc1b1fbebe5b472d583e2d840b2d3041247a', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:40:18.000Z'}}, {'blockNum': '0x4a04f0', 'uniqueId': '0xfd4f25c878877460fbf32737c68d237335f00fd6f0e4b181a2d3d1e8969119ab:log:13', 'hash': '0xfd4f25c878877460fbf32737c68d237335f00fd6f0e4b181a2d3d1e8969119ab', 'from': '0xff3e5ba3c0a6ead375175d07e52bbdfa8ae1f9ce', 'to': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'value': 22.858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x883e8a40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:46:10.000Z'}}, {'blockNum': '0x4a04f2', 'uniqueId': '0x5afe7e34a871a106fe5836092b1e1adeac6e8ab9b9e10087876a0cff7b846531:log:17', 'hash': '0x5afe7e34a871a106fe5836092b1e1adeac6e8ab9b9e10087876a0cff7b846531', 'from': '0x85673b69d4004c45f63acb8a187646eed0effb1a', 'to': '0x6d94c360c2f3cc280bbf155c6c9296c70264792f', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x517da02c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:46:22.000Z'}}, {'blockNum': '0x4a0506', 'uniqueId': '0xe9e4a31ad1cfcac117f6c403b8a20ac9c65a1ae99e9db5f943d6349f753134cc:log:58', 'hash': '0xe9e4a31ad1cfcac117f6c403b8a20ac9c65a1ae99e9db5f943d6349f753134cc', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xb04f3dc5e28c3750b8e75dbfa881b512b79af4c6', 'value': 122.9999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02dd22f3f0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:51:12.000Z'}}, {'blockNum': '0x4a0506', 'uniqueId': '0xbbe61f1e6082994a15493b1eb2414bd0d0d41f4dcd7d0dffdc9268eede4dc04e:log:69', 'hash': '0xbbe61f1e6082994a15493b1eb2414bd0d0d41f4dcd7d0dffdc9268eede4dc04e', 'from': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b984fb200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:51:12.000Z'}}, {'blockNum': '0x4a050d', 'uniqueId': '0x17c68e44ca3dfea604a2615dc328a16b3e5572296e3c66999bfe558ef91da984:log:14', 'hash': '0x17c68e44ca3dfea604a2615dc328a16b3e5572296e3c66999bfe558ef91da984', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x965e7999d34a0d978467d1627d8a055cb9997efb', 'value': 38.86, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe79fa780', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:53:02.000Z'}}, {'blockNum': '0x4a0514', 'uniqueId': '0x1debcd55940f248f696e8b8bf55ae2b0e610f9bc15617179195a2ecdda533f02:log:5', 'hash': '0x1debcd55940f248f696e8b8bf55ae2b0e610f9bc15617179195a2ecdda533f02', 'from': '0xb784e84fab00ccc1f77cacbf6f5c60f41634ff24', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:54:29.000Z'}}, {'blockNum': '0x4a0514', 'uniqueId': '0x96dfd278fefdf603be343f95d74db169a6a21e2dc3cbd9e50912f4452546a344:log:89', 'hash': '0x96dfd278fefdf603be343f95d74db169a6a21e2dc3cbd9e50912f4452546a344', 'from': '0x4e5ff835f1e62560f97c6ccd4c03abeea064f188', 'to': '0x34623bc8413b38e60f3236a8c79f81fd37817cd0', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:54:29.000Z'}}, {'blockNum': '0x4a0516', 'uniqueId': '0x9f6ba27a46797e47f0ff0d6d5e22366450748e45d4f34e26dd8100ddbc0f194d:log:19', 'hash': '0x9f6ba27a46797e47f0ff0d6d5e22366450748e45d4f34e26dd8100ddbc0f194d', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x523c00131ef14dfe144137088fca435cc38a697f', 'value': 248.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05c8d15b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:54:42.000Z'}}, {'blockNum': '0x4a0517', 'uniqueId': '0xb4cac557489d86bc860f0d1593e25310e8aeb428a96ba01193e38a80297406bf:log:9', 'hash': '0xb4cac557489d86bc860f0d1593e25310e8aeb428a96ba01193e38a80297406bf', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xabc8c349141fd3f8e3b654e5150867f96fad6aba', 'value': 9.692775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x39c6003c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:55:04.000Z'}}, {'blockNum': '0x4a051d', 'uniqueId': '0xa457649fc2e5316858b05d704ade6d8eb34b31af6cedb5de16e0cec36357cadc:log:41', 'hash': '0xa457649fc2e5316858b05d704ade6d8eb34b31af6cedb5de16e0cec36357cadc', 'from': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 610.48600422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e36c7b766', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:56:12.000Z'}}, {'blockNum': '0x4a051e', 'uniqueId': '0xaea7805125daa2e2b4b3124e58da13bdd57e428fddcb271aa613720022599db8:log:21', 'hash': '0xaea7805125daa2e2b4b3124e58da13bdd57e428fddcb271aa613720022599db8', 'from': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 95.55581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02398e9848', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:56:28.000Z'}}, {'blockNum': '0x4a0522', 'uniqueId': '0x3bd9c9bf365e6586dfd07888362037ea9acff2454c7dd21313a269a23478f7f1:log:4', 'hash': '0x3bd9c9bf365e6586dfd07888362037ea9acff2454c7dd21313a269a23478f7f1', 'from': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'to': '0x103bc4755848c643fb4f139449fa62d474a445c1', 'value': 34.46030001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xcd663eb1', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:57:21.000Z'}}, {'blockNum': '0x4a052e', 'uniqueId': '0xd9a21411bc0f806b74068638b9e41f8f3a0ce65514db6f0bdc4d6766ea03648d:log:13', 'hash': '0xd9a21411bc0f806b74068638b9e41f8f3a0ce65514db6f0bdc4d6766ea03648d', 'from': '0x7e44b638307c93978bf65ff7286a3faae8962df3', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2faf0800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T05:00:17.000Z'}}]}}
Number of returned transfers: 586
Answer is complete
symbol KMD
group BPS
date 2018-01-04
hour 16:00
exchange binance
Name: 277, dtype: object
HERE
{}
No contract for ethereum specified
Symbol: KMD, Contract:
Datetime timestamps: 2018-01-04 16:00:00 2018-01-04 04:00:00 2018-01-05 04:00:00
Unix timestamps: 1515034800.0 1515121200.0
Hex Block Numbers: 0x4a036e 0x4a18bb
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol NAV
group BPS
date 2018-01-07
hour 18:00
exchange binance
Name: 278, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
Symbol: NAV, Contract:
Datetime timestamps: 2018-01-07 18:00:00 2018-01-07 06:00:00 2018-01-08 06:00:00
Unix timestamps: 1515301200.0 1515387600.0
Hex Block Numbers: 0x4a44c8 0x4a5a34
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol DGD
group BPS
date 2018-01-09
hour 20:00
exchange binance
Name: 279, dtype: object
HERE
Symbol: DGD, Contract:
Datetime timestamps: 2018-01-09 20:00:00 2018-01-09 08:00:00 2018-01-10 08:00:00
Unix timestamps: 1515481200.0 1515567600.0
Hex Block Numbers: 0x4a7116 0x4a861c
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol GVT
group BPS
date 2018-01-13
hour 20:00
exchange binance
Name: 280, dtype: object
HERE
Symbol: GVT, Contract:
Datetime timestamps: 2018-01-13 20:00:00 2018-01-13 08:00:00 2018-01-14 08:00:00
Unix timestamps: 1515826800.0 1515913200.0
Hex Block Numbers: 0x4ac5ab 0x4adafb
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol ICN
group BPS
date 2018-01-15
hour 16:59
exchange binance
Name: 281, dtype: object
HERE
Symbol: ICN, Contract:
Datetime timestamps: 2018-01-15 16:59:00 2018-01-15 04:59:00 2018-01-16 04:59:00
Unix timestamps: 1515988740.0 1516075140.0
Hex Block Numbers: 0x4aee32 0x4b0360
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol BNT
group BPS
date 2018-01-20
hour 19:00
exchange binance
Name: 282, dtype: object
HERE
Symbol: BNT, Contract: 0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c
Datetime timestamps: 2018-01-20 19:00:00 2018-01-20 07:00:00 2018-01-21 07:00:00
Unix timestamps: 1516428000.0 1516514400.0
Hex Block Numbers: 0x4b5c95 0x4b7381
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x4b5c97', 'uniqueId': '0xdd0356e83d6cef7cd65a4f99144d5e8339ef7df09becadbeeeb7436b3b88ea33:log:63', 'hash': '0xdd0356e83d6cef7cd65a4f99144d5e8339ef7df09becadbeeeb7436b3b88ea33', 'from': '0xa10d5531ef4fbfff688e1f075e4e2efc315a5a89', 'to': '0x0f5b07f59731f96f3ee2c8c4b1c3677b143d3931', 'value': 2229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x78d596ca4079b40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:00:32.000Z'}}, {'blockNum': '0x4b5c9f', 'uniqueId': '0x8a4e1445dbf6f86af263d5694aee5bcd18cdb5f4b9ccbadfaf359d0c0707ba2d:log:47', 'hash': '0x8a4e1445dbf6f86af263d5694aee5bcd18cdb5f4b9ccbadfaf359d0c0707ba2d', 'from': '0xbbc836c264b881522fd03d38c81570374f73ad69', 'to': '0xb78dd2ea01a718bd1f189172b910aa43ae74e290', 'value': 0.18528830224812853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x029246baac88f021', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:02:39.000Z'}}, {'blockNum': '0x4b5cad', 'uniqueId': '0x4ad399fbc96376001fcc0e1af90f272228f76255a0a0043ff331a91d750a52a4:log:6', 'hash': '0x4ad399fbc96376001fcc0e1af90f272228f76255a0a0043ff331a91d750a52a4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x218d1693255a4c1e1ac13f3feb5f7e79e344283d', 'value': 299.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10378a4c090e1b0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:05:29.000Z'}}, {'blockNum': '0x4b5cb1', 'uniqueId': '0x11e4be0536dcf977fe6851c855a6204ad9e291d2a3991f181f288becb0c594d2:log:31', 'hash': '0x11e4be0536dcf977fe6851c855a6204ad9e291d2a3991f181f288becb0c594d2', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x275fd2300d41436ea3fa31240cb2fe654879fb65', 'value': 3.443865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fcb10f89b669000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:06:13.000Z'}}, {'blockNum': '0x4b5cb5', 'uniqueId': '0x1dad3e18e847bf6f32fdacc228dbd36737a8da1331509c3141980c9464a033e9:log:34', 'hash': '0x1dad3e18e847bf6f32fdacc228dbd36737a8da1331509c3141980c9464a033e9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2217.8773506892476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x783b3b33a2510e26a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:07:33.000Z'}}, {'blockNum': '0x4b5cb5', 'uniqueId': '0x1dad3e18e847bf6f32fdacc228dbd36737a8da1331509c3141980c9464a033e9:log:36', 'hash': '0x1dad3e18e847bf6f32fdacc228dbd36737a8da1331509c3141980c9464a033e9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2217.8773506892476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x783b3b33a2510e26a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:07:33.000Z'}}, {'blockNum': '0x4b5cbe', 'uniqueId': '0x29ae32f8d591889718ae65eadef6c4b500af8dbe064178eda73e6a5a1e4100f8:log:16', 'hash': '0x29ae32f8d591889718ae65eadef6c4b500af8dbe064178eda73e6a5a1e4100f8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 51.74351221348648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02ce15e23593f2aeab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:09:39.000Z'}}, {'blockNum': '0x4b5cbe', 'uniqueId': '0x29ae32f8d591889718ae65eadef6c4b500af8dbe064178eda73e6a5a1e4100f8:log:19', 'hash': '0x29ae32f8d591889718ae65eadef6c4b500af8dbe064178eda73e6a5a1e4100f8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 51.74351221348648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02ce15e23593f2aeab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:09:39.000Z'}}, {'blockNum': '0x4b5cbf', 'uniqueId': '0xb04f5152bcd17541385a43555ca75de1032f3119f88ccfd124262a62799e4177:log:13', 'hash': '0xb04f5152bcd17541385a43555ca75de1032f3119f88ccfd124262a62799e4177', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdbcb39bb4491f0fd60414067aa6d3ba3715b71d7', 'value': 87.93906765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04c466541b454b9400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:10:08.000Z'}}, {'blockNum': '0x4b5cbf', 'uniqueId': '0x546533ba2c660c33588706a386305b47037b0583b945ce1db4a6cc31302a7560:log:14', 'hash': '0x546533ba2c660c33588706a386305b47037b0583b945ce1db4a6cc31302a7560', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 335.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x122b23fd4c982b0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:10:08.000Z'}}, {'blockNum': '0x4b5cbf', 'uniqueId': '0x31d12be4275369e5bd1d0377bd7506b0d6ffaf6b4c11284699c368875e7cb81e:log:22', 'hash': '0x31d12be4275369e5bd1d0377bd7506b0d6ffaf6b4c11284699c368875e7cb81e', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x275fd2300d41436ea3fa31240cb2fe654879fb65', 'value': 2.4500196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x220037d86ebea000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:10:08.000Z'}}, {'blockNum': '0x4b5cc2', 'uniqueId': '0xb7470c7aa21e340e8d12177a7446b7b410400b0fc9f41c7c7cfdb79264113002:log:20', 'hash': '0xb7470c7aa21e340e8d12177a7446b7b410400b0fc9f41c7c7cfdb79264113002', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:10:55.000Z'}}, {'blockNum': '0x4b5cc6', 'uniqueId': '0xf2a96f1e26a8efb5f193a5f3b0e4ae4324052f602785c04e529211d67cebf0b6:log:4', 'hash': '0xf2a96f1e26a8efb5f193a5f3b0e4ae4324052f602785c04e529211d67cebf0b6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xecc20f396b3d13f8343d1af5c0a368153bf3c159', 'value': 8.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75f610f70ed20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:11:19.000Z'}}, {'blockNum': '0x4b5cc7', 'uniqueId': '0xb3dba29f472dbb8e059b155b11770266d7a36ae54f0aad5589e1ff559dd3068f:log:23', 'hash': '0xb3dba29f472dbb8e059b155b11770266d7a36ae54f0aad5589e1ff559dd3068f', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x275fd2300d41436ea3fa31240cb2fe654879fb65', 'value': 1.47001176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x146687e842726000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:11:54.000Z'}}, {'blockNum': '0x4b5cc7', 'uniqueId': '0x2aae6236fdfd11f6749ad34d5bab4c41a990bbfc8cedb71e5656ffe69f9087e6:log:92', 'hash': '0x2aae6236fdfd11f6749ad34d5bab4c41a990bbfc8cedb71e5656ffe69f9087e6', 'from': '0xcea3791725380e941f162c941af775f44aa99053', 'to': '0xe054c70be277793618b2d2ad9fd7776fdf4e8686', 'value': 3.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30927f74c9de0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:11:54.000Z'}}, {'blockNum': '0x4b5cc8', 'uniqueId': '0xfbac7db0cb613632b0eb0186e77a5cf873167805004202fa6996fe453717de98:log:62', 'hash': '0xfbac7db0cb613632b0eb0186e77a5cf873167805004202fa6996fe453717de98', 'from': '0x21d80128fe55bbb6a22701cbdfa3c28f65fb2ed3', 'to': '0x4413abc21cee458d2c226e753ce47b194da7558f', 'value': 2.94600447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28e24f74f5101c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:12:19.000Z'}}, {'blockNum': '0x4b5cd0', 'uniqueId': '0x867216f56ff4bd0b89865596f10b6335973ae97f6c5cb54ba47e8e9f58c7ad39:log:24', 'hash': '0x867216f56ff4bd0b89865596f10b6335973ae97f6c5cb54ba47e8e9f58c7ad39', 'from': '0x83c1ded540d8b6b734885ed9083a5c4e4f142e73', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 306.4956835622661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x109d7b6850ef66d470', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:14:13.000Z'}}, {'blockNum': '0x4b5cd0', 'uniqueId': '0x867216f56ff4bd0b89865596f10b6335973ae97f6c5cb54ba47e8e9f58c7ad39:log:26', 'hash': '0x867216f56ff4bd0b89865596f10b6335973ae97f6c5cb54ba47e8e9f58c7ad39', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 306.4956835622661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x109d7b6850ef66d470', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:14:13.000Z'}}, {'blockNum': '0x4b5cdc', 'uniqueId': '0xaac41e05eba1d9cd92b2f9428eeeebda354b501400adf9e83d2b75847f3e9c23:log:53', 'hash': '0xaac41e05eba1d9cd92b2f9428eeeebda354b501400adf9e83d2b75847f3e9c23', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 16.26277187216169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe1b0f8da97696ac0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:17:30.000Z'}}, {'blockNum': '0x4b5cdc', 'uniqueId': '0xaac41e05eba1d9cd92b2f9428eeeebda354b501400adf9e83d2b75847f3e9c23:log:55', 'hash': '0xaac41e05eba1d9cd92b2f9428eeeebda354b501400adf9e83d2b75847f3e9c23', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xa8d01c10d57112a233a56be6608958b6004d65da', 'value': 16.26277187216169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe1b0f8da97696ac0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:17:30.000Z'}}, {'blockNum': '0x4b5ce3', 'uniqueId': '0x3869489af8bd7f08a028c54c9cc5e22b74262f6ccb1075a581df6a1b1606cab2:log:10', 'hash': '0x3869489af8bd7f08a028c54c9cc5e22b74262f6ccb1075a581df6a1b1606cab2', 'from': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032d26d12e980b600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:19:03.000Z'}}, {'blockNum': '0x4b5ce3', 'uniqueId': '0x96e6235185d018d769af7197fed039f3f5a63f511faa4250d6389279e9cfc45f:log:11', 'hash': '0x96e6235185d018d769af7197fed039f3f5a63f511faa4250d6389279e9cfc45f', 'from': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032d26d12e980b600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:19:03.000Z'}}, {'blockNum': '0x4b5ce4', 'uniqueId': '0x4ea3fd3f1264feece544220e9cff089ebf49d496b82708ce5b783524f9b75d69:log:28', 'hash': '0x4ea3fd3f1264feece544220e9cff089ebf49d496b82708ce5b783524f9b75d69', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x1f1019fa248f94abc9f7bd8c724ffcd65e25f0ea', 'value': 128.83042933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06fbe1a0e71bb70000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:19:07.000Z'}}, {'blockNum': '0x4b5ce5', 'uniqueId': '0x7e8ef7aa392d3b3681f498d6bf982472e5f7a06e9b2eba6de1205ce4c1924fd8:log:5', 'hash': '0x7e8ef7aa392d3b3681f498d6bf982472e5f7a06e9b2eba6de1205ce4c1924fd8', 'from': '0x218d1693255a4c1e1ac13f3feb5f7e79e344283d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 299.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10378a4c090e1b0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:19:15.000Z'}}, {'blockNum': '0x4b5cec', 'uniqueId': '0xfa42072f6646c53876617f0248022606a6c14dda9d010b235522804e5daa1a84:log:10', 'hash': '0xfa42072f6646c53876617f0248022606a6c14dda9d010b235522804e5daa1a84', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfe9e8709d3215310075d67e3ed32a380ccf451c8', 'value': 112537.02409151723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17d4a4f0dc86fd91e594', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:20:32.000Z'}}, {'blockNum': '0x4b5cf0', 'uniqueId': '0xdeaeb51d701aa89f16709e1dff00ae420f8def41c322bece3748771fe579ea49:log:0', 'hash': '0xdeaeb51d701aa89f16709e1dff00ae420f8def41c322bece3748771fe579ea49', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xecc20f396b3d13f8343d1af5c0a368153bf3c159', 'value': 1873.63924379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6591f7c542c6770c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:21:18.000Z'}}, {'blockNum': '0x4b5cfb', 'uniqueId': '0x5b503c1d02fa413e017325cae5131e5ab14dedc932556ba6098f49bd7eee76ad:log:1', 'hash': '0x5b503c1d02fa413e017325cae5131e5ab14dedc932556ba6098f49bd7eee76ad', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 2259.5373518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7a7d6141eb8dd6b000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:23:37.000Z'}}, {'blockNum': '0x4b5cfc', 'uniqueId': '0xae4ed5e42a825a4a57d9e94b97f71f1579702c832c5ed1c01ceaf991f334d2cb:log:43', 'hash': '0xae4ed5e42a825a4a57d9e94b97f71f1579702c832c5ed1c01ceaf991f334d2cb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7.983531085127826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6ecb33392e5538de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:23:50.000Z'}}, {'blockNum': '0x4b5cfc', 'uniqueId': '0xae4ed5e42a825a4a57d9e94b97f71f1579702c832c5ed1c01ceaf991f334d2cb:log:46', 'hash': '0xae4ed5e42a825a4a57d9e94b97f71f1579702c832c5ed1c01ceaf991f334d2cb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 7.983531085127826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6ecb33392e5538de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:23:50.000Z'}}, {'blockNum': '0x4b5cfc', 'uniqueId': '0xaf64274b15e644f92f5a1ae514a0b2f8e6601eea057523816c265421ac7b8b2b:log:60', 'hash': '0xaf64274b15e644f92f5a1ae514a0b2f8e6601eea057523816c265421ac7b8b2b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2.999997161559597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29a2218615f09f96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:23:50.000Z'}}, {'blockNum': '0x4b5cfc', 'uniqueId': '0xaf64274b15e644f92f5a1ae514a0b2f8e6601eea057523816c265421ac7b8b2b:log:62', 'hash': '0xaf64274b15e644f92f5a1ae514a0b2f8e6601eea057523816c265421ac7b8b2b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xdecf4b112d4120b6998e5020a6b4819e490f7db6', 'value': 2.999997161559597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29a2218615f09f96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:23:50.000Z'}}, {'blockNum': '0x4b5d01', 'uniqueId': '0xbdb696726a7d3a008070271b9498d4b6f7c72c1f42ad670a225725e574228303:log:12', 'hash': '0xbdb696726a7d3a008070271b9498d4b6f7c72c1f42ad670a225725e574228303', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2259.5373518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7a7d6141eb8dd6b000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:24:43.000Z'}}, {'blockNum': '0x4b5d01', 'uniqueId': '0xbdb696726a7d3a008070271b9498d4b6f7c72c1f42ad670a225725e574228303:log:15', 'hash': '0xbdb696726a7d3a008070271b9498d4b6f7c72c1f42ad670a225725e574228303', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2259.5373518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7a7d6141eb8dd6b000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:24:43.000Z'}}, {'blockNum': '0x4b5d01', 'uniqueId': '0xbdb696726a7d3a008070271b9498d4b6f7c72c1f42ad670a225725e574228303:log:16', 'hash': '0xbdb696726a7d3a008070271b9498d4b6f7c72c1f42ad670a225725e574228303', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2259.5373518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7a7d6141eb8dd6b000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:24:43.000Z'}}, {'blockNum': '0x4b5d07', 'uniqueId': '0xbdf65f4fe4f886334eb9b8497f5610fe404dbd3fd360ee2d175e24268a997711:log:6', 'hash': '0xbdf65f4fe4f886334eb9b8497f5610fe404dbd3fd360ee2d175e24268a997711', 'from': '0x4413abc21cee458d2c226e753ce47b194da7558f', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 2.94600447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28e24f74f5101c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:25:43.000Z'}}, {'blockNum': '0x4b5d0b', 'uniqueId': '0x356715ed7354b9507051f4e0bd8368cd1061d7899c224e31a03fe7fca003220c:log:25', 'hash': '0x356715ed7354b9507051f4e0bd8368cd1061d7899c224e31a03fe7fca003220c', 'from': '0xa8d01c10d57112a233a56be6608958b6004d65da', 'to': '0xb78dd2ea01a718bd1f189172b910aa43ae74e290', 'value': 16.26277187216169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe1b0f8da97696ac0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:26:26.000Z'}}, {'blockNum': '0x4b5d0b', 'uniqueId': '0x709df01ec91ccc1e06efddb51248afcd5ed469163eae28b3f2d10b0281863590:log:55', 'hash': '0x709df01ec91ccc1e06efddb51248afcd5ed469163eae28b3f2d10b0281863590', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.78825119160954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcd3a6c1b75223f7e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:26:26.000Z'}}, {'blockNum': '0x4b5d0b', 'uniqueId': '0x709df01ec91ccc1e06efddb51248afcd5ed469163eae28b3f2d10b0281863590:log:58', 'hash': '0x709df01ec91ccc1e06efddb51248afcd5ed469163eae28b3f2d10b0281863590', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 14.78825119160954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcd3a6c1b75223f7e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:26:26.000Z'}}, {'blockNum': '0x4b5d13', 'uniqueId': '0x7daedd388c33021ec3df13c5409fc52b40dab3ce834ed6a5aa25eb2e998b790e:log:42', 'hash': '0x7daedd388c33021ec3df13c5409fc52b40dab3ce834ed6a5aa25eb2e998b790e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5897874af574d50ce88f9ca7d5a5b2f0e1dc9b20', 'value': 15.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd23f9cbb5b2b0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:27:53.000Z'}}, {'blockNum': '0x4b5d1c', 'uniqueId': '0x1d9e4343e977b3e70794fe8b7eba643eb938147dbefadcc70f6eddeb8d1ec5bb:log:44', 'hash': '0x1d9e4343e977b3e70794fe8b7eba643eb938147dbefadcc70f6eddeb8d1ec5bb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb7d4696988d863b9af07793d87e7df9a352eb353', 'value': 148.77957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0810bb36a5a55d2000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:30:13.000Z'}}, {'blockNum': '0x4b5d1d', 'uniqueId': '0x349512bbd7353182f54f9f9b25bf12ff5ea94b2a90319973006ee6373f36d957:log:2', 'hash': '0x349512bbd7353182f54f9f9b25bf12ff5ea94b2a90319973006ee6373f36d957', 'from': '0x87473fd5cf8e1756c70e023b1adf903a02233d02', 'to': '0x866b1ead4c3d651378ddd67d4bb65759f2ffcd22', 'value': 1.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d1120d7b160000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:30:21.000Z'}}, {'blockNum': '0x4b5d29', 'uniqueId': '0x807bbe27d7f423c86e1c31c21b8ed7400d3cbe02a8ad6f0638ee8edf1cc13203:log:30', 'hash': '0x807bbe27d7f423c86e1c31c21b8ed7400d3cbe02a8ad6f0638ee8edf1cc13203', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 52.49808240677635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02d88ea7cd5d169abf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:32:07.000Z'}}, {'blockNum': '0x4b5d29', 'uniqueId': '0x807bbe27d7f423c86e1c31c21b8ed7400d3cbe02a8ad6f0638ee8edf1cc13203:log:33', 'hash': '0x807bbe27d7f423c86e1c31c21b8ed7400d3cbe02a8ad6f0638ee8edf1cc13203', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 52.49808240677635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02d88ea7cd5d169abf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:32:07.000Z'}}, {'blockNum': '0x4b5d2b', 'uniqueId': '0xc0bf95f86a6130ce9885b51b630c0fbc84cc28a2c8e3681956e64b748fcd6625:log:13', 'hash': '0xc0bf95f86a6130ce9885b51b630c0fbc84cc28a2c8e3681956e64b748fcd6625', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 13.30932110329775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb8b4350713ac23f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:32:21.000Z'}}, {'blockNum': '0x4b5d2b', 'uniqueId': '0xc0bf95f86a6130ce9885b51b630c0fbc84cc28a2c8e3681956e64b748fcd6625:log:16', 'hash': '0xc0bf95f86a6130ce9885b51b630c0fbc84cc28a2c8e3681956e64b748fcd6625', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 13.30932110329775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb8b4350713ac23f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:32:21.000Z'}}, {'blockNum': '0x4b5d37', 'uniqueId': '0x174fb1fe29a50c58b8db8b7da378be6b2c224e4c53fc7b9b54145ec07a7eefc8:log:21', 'hash': '0x174fb1fe29a50c58b8db8b7da378be6b2c224e4c53fc7b9b54145ec07a7eefc8', 'from': '0x5d43c86d733f618749a8c814c7102d365b95f71f', 'to': '0x5897874af574d50ce88f9ca7d5a5b2f0e1dc9b20', 'value': 39.64047956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02261f4622b3eed000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:35:49.000Z'}}, {'blockNum': '0x4b5d43', 'uniqueId': '0x9801b9b1d0396664cca08e9385d0fa40d8b14b4c3150b627cba4dbc330f6412c:log:75', 'hash': '0x9801b9b1d0396664cca08e9385d0fa40d8b14b4c3150b627cba4dbc330f6412c', 'from': '0x92eb61bcddee5f9161c303f3cacd6d7eb8fd3b69', 'to': '0x067111af2e732aef8858580736f946624cfcb2a4', 'value': 625.13, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21e36be6eb57f10000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:39:38.000Z'}}, {'blockNum': '0x4b5d4b', 'uniqueId': '0x9d8ec515bb7e848d6ef376a1866bbb2a5f661191c53b84a0904b7020aed91d69:log:19', 'hash': '0x9d8ec515bb7e848d6ef376a1866bbb2a5f661191c53b84a0904b7020aed91d69', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xead0021a028bc43c475b8cbab7173500387f500f', 'value': 4.68593398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4107c820aed51800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:41:31.000Z'}}, {'blockNum': '0x4b5d4b', 'uniqueId': '0x54efc23f17b3541fb35dd7bf6d26f37d5e3d669b79d4827a09bbcb6d7c2c6de3:log:46', 'hash': '0x54efc23f17b3541fb35dd7bf6d26f37d5e3d669b79d4827a09bbcb6d7c2c6de3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 295.7572744395947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x100874ea1d15c299c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:41:31.000Z'}}, {'blockNum': '0x4b5d4b', 'uniqueId': '0x54efc23f17b3541fb35dd7bf6d26f37d5e3d669b79d4827a09bbcb6d7c2c6de3:log:49', 'hash': '0x54efc23f17b3541fb35dd7bf6d26f37d5e3d669b79d4827a09bbcb6d7c2c6de3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 295.7572744395947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x100874ea1d15c299c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:41:31.000Z'}}, {'blockNum': '0x4b5d4c', 'uniqueId': '0x70735a8fbbcd7725fd7d8b4090e77b12d88f78fa64fc9bf4a321ccba8b3cef6c:log:22', 'hash': '0x70735a8fbbcd7725fd7d8b4090e77b12d88f78fa64fc9bf4a321ccba8b3cef6c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.577945376012562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f882110825eee47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:41:33.000Z'}}, {'blockNum': '0x4b5d4c', 'uniqueId': '0x70735a8fbbcd7725fd7d8b4090e77b12d88f78fa64fc9bf4a321ccba8b3cef6c:log:25', 'hash': '0x70735a8fbbcd7725fd7d8b4090e77b12d88f78fa64fc9bf4a321ccba8b3cef6c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 4.577945376012562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f882110825eee47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:41:33.000Z'}}, {'blockNum': '0x4b5d4c', 'uniqueId': '0x660101d4917db161861887974a24c298ecc3ee3c97aad25c03c8638acd57b408:log:90', 'hash': '0x660101d4917db161861887974a24c298ecc3ee3c97aad25c03c8638acd57b408', 'from': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 156.65099443120832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x087df821766fde15f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:41:33.000Z'}}, {'blockNum': '0x4b5d4c', 'uniqueId': '0x660101d4917db161861887974a24c298ecc3ee3c97aad25c03c8638acd57b408:log:92', 'hash': '0x660101d4917db161861887974a24c298ecc3ee3c97aad25c03c8638acd57b408', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 156.65099443120832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x087df821766fde15f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:41:33.000Z'}}, {'blockNum': '0x4b5d5a', 'uniqueId': '0x71c99471a8bf62e9538d6b483ff7a60e715b0df8edcfc06db5b9bfb409b06ed2:log:69', 'hash': '0x71c99471a8bf62e9538d6b483ff7a60e715b0df8edcfc06db5b9bfb409b06ed2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 73.93903140675778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04021c3551943fa63a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:44:34.000Z'}}, {'blockNum': '0x4b5d5a', 'uniqueId': '0x71c99471a8bf62e9538d6b483ff7a60e715b0df8edcfc06db5b9bfb409b06ed2:log:72', 'hash': '0x71c99471a8bf62e9538d6b483ff7a60e715b0df8edcfc06db5b9bfb409b06ed2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 73.93903140675778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04021c3551943fa63a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:44:34.000Z'}}, {'blockNum': '0x4b5d64', 'uniqueId': '0x4d1c2881ff7ed6a77f6534d07c8ad8841459e3b1e7178483523687f00d397c82:log:103', 'hash': '0x4d1c2881ff7ed6a77f6534d07c8ad8841459e3b1e7178483523687f00d397c82', 'from': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 260.651348966672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e21439ce528dd75b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:46:57.000Z'}}, {'blockNum': '0x4b5d64', 'uniqueId': '0x4d1c2881ff7ed6a77f6534d07c8ad8841459e3b1e7178483523687f00d397c82:log:105', 'hash': '0x4d1c2881ff7ed6a77f6534d07c8ad8841459e3b1e7178483523687f00d397c82', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 260.651348966672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e21439ce528dd75b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:46:57.000Z'}}, {'blockNum': '0x4b5d7f', 'uniqueId': '0xc0b2daeeb27be6f4a38e30ddf986aff4844e9221a64d2e528a91ec0ad18ac780:log:80', 'hash': '0xc0b2daeeb27be6f4a38e30ddf986aff4844e9221a64d2e528a91ec0ad18ac780', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 10.508016230108174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x91d3f91661a31675', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:55:36.000Z'}}, {'blockNum': '0x4b5d7f', 'uniqueId': '0xc0b2daeeb27be6f4a38e30ddf986aff4844e9221a64d2e528a91ec0ad18ac780:log:83', 'hash': '0xc0b2daeeb27be6f4a38e30ddf986aff4844e9221a64d2e528a91ec0ad18ac780', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 10.508016230108174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x91d3f91661a31675', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:55:36.000Z'}}, {'blockNum': '0x4b5d7f', 'uniqueId': '0x4c58f95e12987d3c9ac34245722038e2263ca8d76742850c1a051a2cf238500c:log:98', 'hash': '0x4c58f95e12987d3c9ac34245722038e2263ca8d76742850c1a051a2cf238500c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 37.83004322851509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x020cff4fe25950296b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:55:36.000Z'}}, {'blockNum': '0x4b5d7f', 'uniqueId': '0x4c58f95e12987d3c9ac34245722038e2263ca8d76742850c1a051a2cf238500c:log:101', 'hash': '0x4c58f95e12987d3c9ac34245722038e2263ca8d76742850c1a051a2cf238500c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 37.83004322851509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x020cff4fe25950296b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:55:36.000Z'}}, {'blockNum': '0x4b5d80', 'uniqueId': '0x4a151e61e93d2ebdb637c2632993c6129891edb72cac9758ed954cbd00ac7520:log:48', 'hash': '0x4a151e61e93d2ebdb637c2632993c6129891edb72cac9758ed954cbd00ac7520', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 158.61572406054978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08993c40a6a472e53a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:55:40.000Z'}}, {'blockNum': '0x4b5d80', 'uniqueId': '0x4a151e61e93d2ebdb637c2632993c6129891edb72cac9758ed954cbd00ac7520:log:50', 'hash': '0x4a151e61e93d2ebdb637c2632993c6129891edb72cac9758ed954cbd00ac7520', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 158.61572406054978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08993c40a6a472e53a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:55:40.000Z'}}, {'blockNum': '0x4b5d85', 'uniqueId': '0x38d467c1f4ade63f9d0c2ec65aa346475f1e3a5ab456c09db2639560cce805ea:log:41', 'hash': '0x38d467c1f4ade63f9d0c2ec65aa346475f1e3a5ab456c09db2639560cce805ea', 'from': '0x067111af2e732aef8858580736f946624cfcb2a4', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 625.13, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21e36be6eb57f10000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:57:03.000Z'}}, {'blockNum': '0x4b5d8d', 'uniqueId': '0x1ab7ca9cebc5479b06153cd22a4089a525e0184479c350cc2a7d18a9e90987cd:log:7', 'hash': '0x1ab7ca9cebc5479b06153cd22a4089a525e0184479c350cc2a7d18a9e90987cd', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xd5a2da1fb250e58d5dd14a5dc4d835d2cd7dc4fc', 'value': 156.83185494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08807aad231c4a8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:59:01.000Z'}}, {'blockNum': '0x4b5d92', 'uniqueId': '0x13fab1a41e969edcd94a5d23cca6f77444a133518faf2a744ce8cdb75ade1f5b:log:107', 'hash': '0x13fab1a41e969edcd94a5d23cca6f77444a133518faf2a744ce8cdb75ade1f5b', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 362.5492135425771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13a7618cd9528c6722', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:00:28.000Z'}}, {'blockNum': '0x4b5d92', 'uniqueId': '0x13fab1a41e969edcd94a5d23cca6f77444a133518faf2a744ce8cdb75ade1f5b:log:109', 'hash': '0x13fab1a41e969edcd94a5d23cca6f77444a133518faf2a744ce8cdb75ade1f5b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 362.5492135425771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13a7618cd9528c6722', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:00:28.000Z'}}, {'blockNum': '0x4b5d92', 'uniqueId': '0x2c71c82c16f1fdf410988ce13f22e4c1390e17e3ff51c0c2ffc7a010ff41eaa1:log:125', 'hash': '0x2c71c82c16f1fdf410988ce13f22e4c1390e17e3ff51c0c2ffc7a010ff41eaa1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 19.772905967883414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011267793768e468a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:00:28.000Z'}}, {'blockNum': '0x4b5d92', 'uniqueId': '0x2c71c82c16f1fdf410988ce13f22e4c1390e17e3ff51c0c2ffc7a010ff41eaa1:log:128', 'hash': '0x2c71c82c16f1fdf410988ce13f22e4c1390e17e3ff51c0c2ffc7a010ff41eaa1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf3ed5b15618494ddbd0a57b3bca8b2686ac0bc04', 'value': 19.772905967883414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011267793768e468a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:00:28.000Z'}}, {'blockNum': '0x4b5d9c', 'uniqueId': '0x6913191cc28ad15823ae1cb6c96f76540c426e5130c1f6419c3051903d817c71:log:36', 'hash': '0x6913191cc28ad15823ae1cb6c96f76540c426e5130c1f6419c3051903d817c71', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 147.8886276610816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08045df34f6ac6e174', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:02:12.000Z'}}, {'blockNum': '0x4b5d9c', 'uniqueId': '0x6913191cc28ad15823ae1cb6c96f76540c426e5130c1f6419c3051903d817c71:log:38', 'hash': '0x6913191cc28ad15823ae1cb6c96f76540c426e5130c1f6419c3051903d817c71', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7b85887c9deb416c26ad76bbcf0062ad85cfa23c', 'value': 147.8886276610816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08045df34f6ac6e174', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:02:12.000Z'}}, {'blockNum': '0x4b5db0', 'uniqueId': '0x45de96a65d2dd871e653677ea084cad83f704cad2155c33fe693549c54b28ceb:log:77', 'hash': '0x45de96a65d2dd871e653677ea084cad83f704cad2155c33fe693549c54b28ceb', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 93.34934729309815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x050f7b80c6ebaff5db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:06:38.000Z'}}, {'blockNum': '0x4b5db0', 'uniqueId': '0x45de96a65d2dd871e653677ea084cad83f704cad2155c33fe693549c54b28ceb:log:79', 'hash': '0x45de96a65d2dd871e653677ea084cad83f704cad2155c33fe693549c54b28ceb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 93.34934729309815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x050f7b80c6ebaff5db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:06:38.000Z'}}, {'blockNum': '0x4b5dbb', 'uniqueId': '0x5eed58700d2985c81659e82c7cba5222aa1239bdd88f1afb4e724f433096211e:log:46', 'hash': '0x5eed58700d2985c81659e82c7cba5222aa1239bdd88f1afb4e724f433096211e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 147.88767175010648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08045a8dea0cab02e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:09:19.000Z'}}, {'blockNum': '0x4b5dbb', 'uniqueId': '0x5eed58700d2985c81659e82c7cba5222aa1239bdd88f1afb4e724f433096211e:log:49', 'hash': '0x5eed58700d2985c81659e82c7cba5222aa1239bdd88f1afb4e724f433096211e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 147.88767175010648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08045a8dea0cab02e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:09:19.000Z'}}, {'blockNum': '0x4b5dc4', 'uniqueId': '0x4dc72c1251bef654468e243cb0a36c2b55c1cc38329e4b3fdbf38e0c91b7c9e3:log:44', 'hash': '0x4dc72c1251bef654468e243cb0a36c2b55c1cc38329e4b3fdbf38e0c91b7c9e3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 69.50631031188256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03c49804f7ebd48ed3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:12:07.000Z'}}, {'blockNum': '0x4b5dc4', 'uniqueId': '0x4dc72c1251bef654468e243cb0a36c2b55c1cc38329e4b3fdbf38e0c91b7c9e3:log:47', 'hash': '0x4dc72c1251bef654468e243cb0a36c2b55c1cc38329e4b3fdbf38e0c91b7c9e3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'value': 69.50631031188256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03c49804f7ebd48ed3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:12:07.000Z'}}, {'blockNum': '0x4b5dc8', 'uniqueId': '0x5e6bdf78776a0fab92dd94a18122ce08864d47013d44f415c8218224cad796c6:log:76', 'hash': '0x5e6bdf78776a0fab92dd94a18122ce08864d47013d44f415c8218224cad796c6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 739.3933901645396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28152502e16d300a25', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:13:14.000Z'}}, {'blockNum': '0x4b5dc8', 'uniqueId': '0x5e6bdf78776a0fab92dd94a18122ce08864d47013d44f415c8218224cad796c6:log:79', 'hash': '0x5e6bdf78776a0fab92dd94a18122ce08864d47013d44f415c8218224cad796c6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 739.3933901645396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28152502e16d300a25', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:13:14.000Z'}}, {'blockNum': '0x4b5e09', 'uniqueId': '0xfc3e67b078165dadbede51afa01fdfe49b20b540c1ea3659593a0ea44bbb73ec:log:4', 'hash': '0xfc3e67b078165dadbede51afa01fdfe49b20b540c1ea3659593a0ea44bbb73ec', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfbd3f76eeb144cc9608f29e115b55cfead7b981f', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:27:51.000Z'}}, {'blockNum': '0x4b5e09', 'uniqueId': '0xe8c2a7eff44b3b3c7cdca59d02e0beb61018fe55cf9ead2135b02f6775794bd0:log:44', 'hash': '0xe8c2a7eff44b3b3c7cdca59d02e0beb61018fe55cf9ead2135b02f6775794bd0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 884.2294171573593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fef25f20e6f1891fd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:27:51.000Z'}}, {'blockNum': '0x4b5e09', 'uniqueId': '0xe8c2a7eff44b3b3c7cdca59d02e0beb61018fe55cf9ead2135b02f6775794bd0:log:47', 'hash': '0xe8c2a7eff44b3b3c7cdca59d02e0beb61018fe55cf9ead2135b02f6775794bd0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb33f5f5172fce076e9355afcf2529982260b7a4b', 'value': 884.2294171573593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fef25f20e6f1891fd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:27:51.000Z'}}, {'blockNum': '0x4b5e09', 'uniqueId': '0x7471ce59f84e487fc879ab484e95408fbf345c31a3631a03fa5e18268fa19e48:log:73', 'hash': '0x7471ce59f84e487fc879ab484e95408fbf345c31a3631a03fa5e18268fa19e48', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1205.9521617095954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x415ff2bdaa9ede8df0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:27:51.000Z'}}, {'blockNum': '0x4b5e09', 'uniqueId': '0x7471ce59f84e487fc879ab484e95408fbf345c31a3631a03fa5e18268fa19e48:log:75', 'hash': '0x7471ce59f84e487fc879ab484e95408fbf345c31a3631a03fa5e18268fa19e48', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1205.9521617095954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x415ff2bdaa9ede8df0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:27:51.000Z'}}, {'blockNum': '0x4b5e16', 'uniqueId': '0x034e2c9ecd28d37e23e24739d853001258d0a78d5ab153b4138109f4c3e8f56d:log:26', 'hash': '0x034e2c9ecd28d37e23e24739d853001258d0a78d5ab153b4138109f4c3e8f56d', 'from': '0xc9308c224a46aec3d232f40869034f2c93f339c1', 'to': '0xaa422578eadcf1922693a63917a8be375215275c', 'value': 13.07102437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb5659b694852f400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:31:30.000Z'}}, {'blockNum': '0x4b5e16', 'uniqueId': '0x8f57153ffbd23b3dfc2e8e57e8e318fa1018b087f6ec420cd7c1782ccbd5b898:log:33', 'hash': '0x8f57153ffbd23b3dfc2e8e57e8e318fa1018b087f6ec420cd7c1782ccbd5b898', 'from': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 316.766605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x112c050cf23379d000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:31:30.000Z'}}, {'blockNum': '0x4b5e16', 'uniqueId': '0x20b559be0868771d9e0d620ba77346ac1bf707ac9dc02574fa69369a9731a955:log:36', 'hash': '0x20b559be0868771d9e0d620ba77346ac1bf707ac9dc02574fa69369a9731a955', 'from': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 316.766605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x112c050cf23379d000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:31:30.000Z'}}, {'blockNum': '0x4b5e22', 'uniqueId': '0x2442fdb0de61db9a545c0b30fa050f28654ec648c0157f6d6d685fbd79fad5c3:log:25', 'hash': '0x2442fdb0de61db9a545c0b30fa050f28654ec648c0157f6d6d685fbd79fad5c3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 591.4906167459598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x201094ce142fa6dc67', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:35:27.000Z'}}, {'blockNum': '0x4b5e22', 'uniqueId': '0x2442fdb0de61db9a545c0b30fa050f28654ec648c0157f6d6d685fbd79fad5c3:log:28', 'hash': '0x2442fdb0de61db9a545c0b30fa050f28654ec648c0157f6d6d685fbd79fad5c3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 591.4906167459598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x201094ce142fa6dc67', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:35:27.000Z'}}, {'blockNum': '0x4b5e51', 'uniqueId': '0xce983e4bdff9974692909275ca2ddc6caf3efcc427d793bbff1353536ff3177c:log:79', 'hash': '0xce983e4bdff9974692909275ca2ddc6caf3efcc427d793bbff1353536ff3177c', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 323.3393664463673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11873c30a857949b3c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:45:21.000Z'}}, {'blockNum': '0x4b5e51', 'uniqueId': '0xce983e4bdff9974692909275ca2ddc6caf3efcc427d793bbff1353536ff3177c:log:81', 'hash': '0xce983e4bdff9974692909275ca2ddc6caf3efcc427d793bbff1353536ff3177c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 323.3393664463673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11873c30a857949b3c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:45:21.000Z'}}, {'blockNum': '0x4b5e52', 'uniqueId': '0x94441d21632a8c8aa4b5b4754f73ce6cddc9773cb291b88e358c2cfe9b71c57d:log:39', 'hash': '0x94441d21632a8c8aa4b5b4754f73ce6cddc9773cb291b88e358c2cfe9b71c57d', 'from': '0xeb5e251b03fc6d58cd21dbd4931a26695630ddfd', 'to': '0xe3913fdfdccc7c144f1e9143fdce2ba90c62507e', 'value': 15.89716536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xdc9e13ab0a71e000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:45:39.000Z'}}, {'blockNum': '0x4b5e5e', 'uniqueId': '0x92e8543472d415860a18cef6bf111d6bb5d92a2a8036b971218eb85f27e9a383:log:37', 'hash': '0x92e8543472d415860a18cef6bf111d6bb5d92a2a8036b971218eb85f27e9a383', 'from': '0xb33f5f5172fce076e9355afcf2529982260b7a4b', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 637.6024118390519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x229082cf67bf0204d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:48:40.000Z'}}, {'blockNum': '0x4b5e5e', 'uniqueId': '0x92e8543472d415860a18cef6bf111d6bb5d92a2a8036b971218eb85f27e9a383:log:39', 'hash': '0x92e8543472d415860a18cef6bf111d6bb5d92a2a8036b971218eb85f27e9a383', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 637.6024118390519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x229082cf67bf0204d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:48:40.000Z'}}, {'blockNum': '0x4b5e65', 'uniqueId': '0x7d5f80192667ee7da71e188c0fbf8ebeb8076944ab9373f29c40ad5a7be2d102:log:6', 'hash': '0x7d5f80192667ee7da71e188c0fbf8ebeb8076944ab9373f29c40ad5a7be2d102', 'from': '0x97a78d5e73af81ba47f446052a4ab0e07c03bf95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15af1d78b58c400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:50:13.000Z'}}, {'blockNum': '0x4b5e89', 'uniqueId': '0xc2fc2476edce3661e72765434bc87c69eda2b4207378f42bd7a0cf3e45b2b18d:log:3', 'hash': '0xc2fc2476edce3661e72765434bc87c69eda2b4207378f42bd7a0cf3e45b2b18d', 'from': '0xe3913fdfdccc7c144f1e9143fdce2ba90c62507e', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 15.89716536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xdc9e13ab0a71e000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:59:32.000Z'}}, {'blockNum': '0x4b5e8d', 'uniqueId': '0xaa3e8338179a6f9e56b541764b177b567c8c7a7423fcb62ae207f4e1c345261d:log:63', 'hash': '0xaa3e8338179a6f9e56b541764b177b567c8c7a7423fcb62ae207f4e1c345261d', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 321.26014120273595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x116a614c5090e931f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:00:27.000Z'}}, {'blockNum': '0x4b5e8d', 'uniqueId': '0xaa3e8338179a6f9e56b541764b177b567c8c7a7423fcb62ae207f4e1c345261d:log:65', 'hash': '0xaa3e8338179a6f9e56b541764b177b567c8c7a7423fcb62ae207f4e1c345261d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 321.26014120273595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x116a614c5090e931f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:00:27.000Z'}}, {'blockNum': '0x4b5ea0', 'uniqueId': '0x6bc0dc281795b99b20ee1d003f696c579ffe4a620efb09832b89177c27215167:log:59', 'hash': '0x6bc0dc281795b99b20ee1d003f696c579ffe4a620efb09832b89177c27215167', 'from': '0xa10d5531ef4fbfff688e1f075e4e2efc315a5a89', 'to': '0xf0702565bfe8b796a360bfc60a0024668c8a3fca', 'value': 402.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15d0d690d5a0730000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:05:43.000Z'}}, {'blockNum': '0x4b5ea8', 'uniqueId': '0xbb56cd4056153e85e996746f9fc777febc52420e50e247569df61703abee3e62:log:54', 'hash': '0xbb56cd4056153e85e996746f9fc777febc52420e50e247569df61703abee3e62', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x714c41c141e0a45be6b1ea59c7b7b5f0b0540e2c', 'value': 3.76261913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34378229dcbd4400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:09:42.000Z'}}, {'blockNum': '0x4b5eb5', 'uniqueId': '0x7c54d0f6b0f75506d350c8c1a758b915878d88a8f37eb4d3c92dab4645835543:log:41', 'hash': '0x7c54d0f6b0f75506d350c8c1a758b915878d88a8f37eb4d3c92dab4645835543', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 295.7747021094627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1008b2d47cad80854d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:13:10.000Z'}}, {'blockNum': '0x4b5eb5', 'uniqueId': '0x7c54d0f6b0f75506d350c8c1a758b915878d88a8f37eb4d3c92dab4645835543:log:44', 'hash': '0x7c54d0f6b0f75506d350c8c1a758b915878d88a8f37eb4d3c92dab4645835543', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 295.7747021094627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1008b2d47cad80854d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:13:10.000Z'}}, {'blockNum': '0x4b5ec2', 'uniqueId': '0xce5697768ae261046522b31e82745b538a89b893a5f525bc95af3620647f4399:log:38', 'hash': '0xce5697768ae261046522b31e82745b538a89b893a5f525bc95af3620647f4399', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 73.94205553765073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040226f3bfebe08af7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:17:15.000Z'}}, {'blockNum': '0x4b5ec2', 'uniqueId': '0xce5697768ae261046522b31e82745b538a89b893a5f525bc95af3620647f4399:log:41', 'hash': '0xce5697768ae261046522b31e82745b538a89b893a5f525bc95af3620647f4399', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 73.94205553765073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040226f3bfebe08af7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:17:15.000Z'}}, {'blockNum': '0x4b5ec3', 'uniqueId': '0x519d4b51524ad32a5773f7415160526534c7a2c0d24305e1b02ac49f553657be:log:12', 'hash': '0x519d4b51524ad32a5773f7415160526534c7a2c0d24305e1b02ac49f553657be', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x40ac9959eea8093099a42c4efbd1e125e427ed10', 'value': 12.3259866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xab0eb381bf399000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:17:43.000Z'}}, {'blockNum': '0x4b5ec5', 'uniqueId': '0x10fb6c339bf0582314e2d6a1ffc3c051cdc983306c3a9c957a6ed342cdf0327d:log:60', 'hash': '0x10fb6c339bf0582314e2d6a1ffc3c051cdc983306c3a9c957a6ed342cdf0327d', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x9e7fa6cb5e4c86e8d90eab790f105b762d9145c2', 'value': 0.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06f05b59d3b20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:18:12.000Z'}}, {'blockNum': '0x4b5ec6', 'uniqueId': '0x83cb994bb8d9a72de3b873717bc63cdc67422d5a3c2ede6fa75af1961db27f2b:log:0', 'hash': '0x83cb994bb8d9a72de3b873717bc63cdc67422d5a3c2ede6fa75af1961db27f2b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x74e3cf6244e24bc7aad8f76f44412179f8088a3d', 'value': 2.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dd6559bdb170000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:18:25.000Z'}}, {'blockNum': '0x4b5ede', 'uniqueId': '0x89c264d5b62ec1c10989fbfbddfac11244b47062fb564d064f15543b5654236e:log:38', 'hash': '0x89c264d5b62ec1c10989fbfbddfac11244b47062fb564d064f15543b5654236e', 'from': '0x9e7fa6cb5e4c86e8d90eab790f105b762d9145c2', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 0.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06f05b59d3b20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:26:21.000Z'}}, {'blockNum': '0x4b5ee0', 'uniqueId': '0x55633a64e28776bc55588242e1f2bde139b487534820cc2f6e831139abf0fa67:log:28', 'hash': '0x55633a64e28776bc55588242e1f2bde139b487534820cc2f6e831139abf0fa67', 'from': '0xb33f5f5172fce076e9355afcf2529982260b7a4b', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 143.92040248454353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07cd4bfb896676cafd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:26:47.000Z'}}, {'blockNum': '0x4b5ee0', 'uniqueId': '0x55633a64e28776bc55588242e1f2bde139b487534820cc2f6e831139abf0fa67:log:30', 'hash': '0x55633a64e28776bc55588242e1f2bde139b487534820cc2f6e831139abf0fa67', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd8c9d6b34a37851fd9f9e088b91c65cae2ca67fe', 'value': 143.92040248454353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07cd4bfb896676cafd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:26:47.000Z'}}, {'blockNum': '0x4b5ee4', 'uniqueId': '0xdab73fbea251e54b0f0e17916ae81324e1680b8abcca6a7c12d3b335e2bbe805:log:18', 'hash': '0xdab73fbea251e54b0f0e17916ae81324e1680b8abcca6a7c12d3b335e2bbe805', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 618.2909496384812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x218482b6d9b09a040c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:27:49.000Z'}}, {'blockNum': '0x4b5ee4', 'uniqueId': '0xdab73fbea251e54b0f0e17916ae81324e1680b8abcca6a7c12d3b335e2bbe805:log:20', 'hash': '0xdab73fbea251e54b0f0e17916ae81324e1680b8abcca6a7c12d3b335e2bbe805', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 618.2909496384812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x218482b6d9b09a040c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:27:49.000Z'}}, {'blockNum': '0x4b5ee4', 'uniqueId': '0xe182c8c2f5af009bc02dc807a437c07eb0d63b332c6b6390651b223c58fa6082:log:138', 'hash': '0xe182c8c2f5af009bc02dc807a437c07eb0d63b332c6b6390651b223c58fa6082', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2684.7164514114884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9189ecdc52450afc33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:27:49.000Z'}}, {'blockNum': '0x4b5ee4', 'uniqueId': '0xe182c8c2f5af009bc02dc807a437c07eb0d63b332c6b6390651b223c58fa6082:log:140', 'hash': '0xe182c8c2f5af009bc02dc807a437c07eb0d63b332c6b6390651b223c58fa6082', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2684.7164514114884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9189ecdc52450afc33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:27:49.000Z'}}, {'blockNum': '0x4b5eee', 'uniqueId': '0x5fe48f780d80e79223546d3df59847fe934393715d767670ef8a16c284243d15:log:0', 'hash': '0x5fe48f780d80e79223546d3df59847fe934393715d767670ef8a16c284243d15', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x89ee3e4e1404033cb21faae51d11238867cc15de', 'value': 102.79405748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05928ddaa6dc7c8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:29:14.000Z'}}, {'blockNum': '0x4b5eef', 'uniqueId': '0x19b01a9687901a0e3f5edebccc823cf3e5119b11c70a393db31be312f4fc104a:log:13', 'hash': '0x19b01a9687901a0e3f5edebccc823cf3e5119b11c70a393db31be312f4fc104a', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x97193af002e818d6072e98514bcac7c347a27a6f', 'value': 24.18316213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014f9bd9d450543000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:29:29.000Z'}}, {'blockNum': '0x4b5efa', 'uniqueId': '0x52fb0d3565d0c4b5c7f30665a73548cccfdc9146a6865ff5090cc6826d7943f0:log:215', 'hash': '0x52fb0d3565d0c4b5c7f30665a73548cccfdc9146a6865ff5090cc6826d7943f0', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1064.0079403719349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x39ae139069a03058c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:31:34.000Z'}}, {'blockNum': '0x4b5efa', 'uniqueId': '0x52fb0d3565d0c4b5c7f30665a73548cccfdc9146a6865ff5090cc6826d7943f0:log:217', 'hash': '0x52fb0d3565d0c4b5c7f30665a73548cccfdc9146a6865ff5090cc6826d7943f0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1064.0079403719349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x39ae139069a03058c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:31:34.000Z'}}, {'blockNum': '0x4b5f05', 'uniqueId': '0x6396636d47da461c1998a8a6e115598efd5aac10e0a9eb427cb6dae5a649bae5:log:46', 'hash': '0x6396636d47da461c1998a8a6e115598efd5aac10e0a9eb427cb6dae5a649bae5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 221.9371167613146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c07ff07d2388cc999', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:34:02.000Z'}}, {'blockNum': '0x4b5f05', 'uniqueId': '0x6396636d47da461c1998a8a6e115598efd5aac10e0a9eb427cb6dae5a649bae5:log:49', 'hash': '0x6396636d47da461c1998a8a6e115598efd5aac10e0a9eb427cb6dae5a649bae5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 221.9371167613146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c07ff07d2388cc999', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:34:02.000Z'}}, {'blockNum': '0x4b5f1e', 'uniqueId': '0x77b86cbee72e440e22289341acd8647dfc9a2622fe7628e94bd6534a905a1c10:log:29', 'hash': '0x77b86cbee72e440e22289341acd8647dfc9a2622fe7628e94bd6534a905a1c10', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 13.869294038322696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc079a171f7aaccbf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:40:09.000Z'}}, {'blockNum': '0x4b5f1e', 'uniqueId': '0x77b86cbee72e440e22289341acd8647dfc9a2622fe7628e94bd6534a905a1c10:log:32', 'hash': '0x77b86cbee72e440e22289341acd8647dfc9a2622fe7628e94bd6534a905a1c10', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 13.869294038322696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc079a171f7aaccbf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:40:09.000Z'}}, {'blockNum': '0x4b5f1f', 'uniqueId': '0xde207edd2fcbdce03ca99db6d30b91aef2c3835ac1318eb70457fdbb132eb35f:log:52', 'hash': '0xde207edd2fcbdce03ca99db6d30b91aef2c3835ac1318eb70457fdbb132eb35f', 'from': '0xd8c9d6b34a37851fd9f9e088b91c65cae2ca67fe', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 143.920402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07cd4bfb18956b2000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:40:36.000Z'}}, {'blockNum': '0x4b5f1f', 'uniqueId': '0xde207edd2fcbdce03ca99db6d30b91aef2c3835ac1318eb70457fdbb132eb35f:log:55', 'hash': '0xde207edd2fcbdce03ca99db6d30b91aef2c3835ac1318eb70457fdbb132eb35f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 143.920402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07cd4bfb18956b2000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:40:36.000Z'}}, {'blockNum': '0x4b5f1f', 'uniqueId': '0xde207edd2fcbdce03ca99db6d30b91aef2c3835ac1318eb70457fdbb132eb35f:log:57', 'hash': '0xde207edd2fcbdce03ca99db6d30b91aef2c3835ac1318eb70457fdbb132eb35f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 143.920402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07cd4bfb18956b2000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:40:36.000Z'}}, {'blockNum': '0x4b5f20', 'uniqueId': '0xf16813cbf0522f7d99a3297e5a1dd0c6d0bd8a2c00eef9ba97485e476b59aa78:log:37', 'hash': '0xf16813cbf0522f7d99a3297e5a1dd0c6d0bd8a2c00eef9ba97485e476b59aa78', 'from': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 158.67501175690728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x089a0ee27f2563b667', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:40:45.000Z'}}, {'blockNum': '0x4b5f20', 'uniqueId': '0xf16813cbf0522f7d99a3297e5a1dd0c6d0bd8a2c00eef9ba97485e476b59aa78:log:39', 'hash': '0xf16813cbf0522f7d99a3297e5a1dd0c6d0bd8a2c00eef9ba97485e476b59aa78', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 158.67501175690728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x089a0ee27f2563b667', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:40:45.000Z'}}, {'blockNum': '0x4b5f33', 'uniqueId': '0xd7cc0630dbd02943f949447f336d9635591b57c531ec0d66ff1eed270ec18199:log:68', 'hash': '0xd7cc0630dbd02943f949447f336d9635591b57c531ec0d66ff1eed270ec18199', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1413.2788180715127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4c9d2efd29f86cb39d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:46:45.000Z'}}, {'blockNum': '0x4b5f33', 'uniqueId': '0xd7cc0630dbd02943f949447f336d9635591b57c531ec0d66ff1eed270ec18199:log:70', 'hash': '0xd7cc0630dbd02943f949447f336d9635591b57c531ec0d66ff1eed270ec18199', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1413.2788180715127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4c9d2efd29f86cb39d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:46:45.000Z'}}, {'blockNum': '0x4b5f3a', 'uniqueId': '0xe0079263bfe44bbffe3f0157f577c09abc3eb557e1455fc8b175d1259a9d5218:log:38', 'hash': '0xe0079263bfe44bbffe3f0157f577c09abc3eb557e1455fc8b175d1259a9d5218', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 143.5427326364351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07c80e3acf93955e90', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:49:42.000Z'}}, {'blockNum': '0x4b5f3a', 'uniqueId': '0xe0079263bfe44bbffe3f0157f577c09abc3eb557e1455fc8b175d1259a9d5218:log:41', 'hash': '0xe0079263bfe44bbffe3f0157f577c09abc3eb557e1455fc8b175d1259a9d5218', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'value': 143.5427326364351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07c80e3acf93955e90', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:49:42.000Z'}}, {'blockNum': '0x4b5f3c', 'uniqueId': '0x254a798e5d3e9a925c9f155b19167d969e96796ed0cb7267242fb18fcf118cda:log:49', 'hash': '0x254a798e5d3e9a925c9f155b19167d969e96796ed0cb7267242fb18fcf118cda', 'from': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1542.209415775266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x539a747cac036fd2af', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:50:29.000Z'}}, {'blockNum': '0x4b5f3c', 'uniqueId': '0x254a798e5d3e9a925c9f155b19167d969e96796ed0cb7267242fb18fcf118cda:log:51', 'hash': '0x254a798e5d3e9a925c9f155b19167d969e96796ed0cb7267242fb18fcf118cda', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1542.209415775266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x539a747cac036fd2af', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:50:29.000Z'}}, {'blockNum': '0x4b5f3f', 'uniqueId': '0x62288b04e0d52a499272032a2b0ffa944923de1b79fa9fc072e088d5225e4256:log:66', 'hash': '0x62288b04e0d52a499272032a2b0ffa944923de1b79fa9fc072e088d5225e4256', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2417.876765615461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8312c7dbddfbf625e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:51:00.000Z'}}, {'blockNum': '0x4b5f3f', 'uniqueId': '0x62288b04e0d52a499272032a2b0ffa944923de1b79fa9fc072e088d5225e4256:log:68', 'hash': '0x62288b04e0d52a499272032a2b0ffa944923de1b79fa9fc072e088d5225e4256', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x6866e64b72bec90c6b5b33437ff7084052067f86', 'value': 2417.876765615461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8312c7dbddfbf625e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:51:00.000Z'}}, {'blockNum': '0x4b5f42', 'uniqueId': '0x87de6230ef4f216de041ccc3fd1eee09d0484a02a44433acd2c3f620e4a6aaf5:log:30', 'hash': '0x87de6230ef4f216de041ccc3fd1eee09d0484a02a44433acd2c3f620e4a6aaf5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 133.167972845373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x073813adbfab5246e8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:51:25.000Z'}}, {'blockNum': '0x4b5f42', 'uniqueId': '0x87de6230ef4f216de041ccc3fd1eee09d0484a02a44433acd2c3f620e4a6aaf5:log:33', 'hash': '0x87de6230ef4f216de041ccc3fd1eee09d0484a02a44433acd2c3f620e4a6aaf5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 133.167972845373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x073813adbfab5246e8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:51:25.000Z'}}, {'blockNum': '0x4b5f42', 'uniqueId': '0x90c93ad65d661e59cb1f18ca87a272e0b4d9ab649dee3823aeae2b98d2b8bf96:log:47', 'hash': '0x90c93ad65d661e59cb1f18ca87a272e0b4d9ab649dee3823aeae2b98d2b8bf96', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 142.04352102980036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07b33ff5cc3afa5abb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:51:25.000Z'}}, {'blockNum': '0x4b5f42', 'uniqueId': '0x90c93ad65d661e59cb1f18ca87a272e0b4d9ab649dee3823aeae2b98d2b8bf96:log:50', 'hash': '0x90c93ad65d661e59cb1f18ca87a272e0b4d9ab649dee3823aeae2b98d2b8bf96', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'value': 142.04352102980036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07b33ff5cc3afa5abb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:51:25.000Z'}}, {'blockNum': '0x4b5f43', 'uniqueId': '0xf42f74798a70332f11e619090329f78c553003b26757a59f304bc3cbde524b34:log:123', 'hash': '0xf42f74798a70332f11e619090329f78c553003b26757a59f304bc3cbde524b34', 'from': '0x6866e64b72bec90c6b5b33437ff7084052067f86', 'to': '0xaf52bcc41ca1af3ed5c3d2f3a27647433167b214', 'value': 2417.876765615461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8312c7dbddfbf625e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:51:27.000Z'}}, {'blockNum': '0x4b5f48', 'uniqueId': '0x0aff853cb437bfd6cc8c98cf5a460fa6e2322fab1068bc79c83e3c8e08dc7e8a:log:37', 'hash': '0x0aff853cb437bfd6cc8c98cf5a460fa6e2322fab1068bc79c83e3c8e08dc7e8a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 51.786105524915335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02cead3499b178f74d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:52:31.000Z'}}, {'blockNum': '0x4b5f48', 'uniqueId': '0x0aff853cb437bfd6cc8c98cf5a460fa6e2322fab1068bc79c83e3c8e08dc7e8a:log:40', 'hash': '0x0aff853cb437bfd6cc8c98cf5a460fa6e2322fab1068bc79c83e3c8e08dc7e8a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 51.786105524915335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02cead3499b178f74d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:52:31.000Z'}}, {'blockNum': '0x4b5f4f', 'uniqueId': '0x1f39b0992644ddcd0be06f04cdab1285ffd4c80c71d70a3cc2357307e8526d9f:log:5', 'hash': '0x1f39b0992644ddcd0be06f04cdab1285ffd4c80c71d70a3cc2357307e8526d9f', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x5d7ed74d24198ba40321bd2c0fb9649275c3b671', 'value': 150.30973325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0825f7720409f88000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:54:17.000Z'}}, {'blockNum': '0x4b5f59', 'uniqueId': '0x64fb0af1e087bc426e960e41e076f0d4263d7750fbd8f86a50a57c55f2d9c743:log:36', 'hash': '0x64fb0af1e087bc426e960e41e076f0d4263d7750fbd8f86a50a57c55f2d9c743', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 36.98988077109621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02015674949d3df0c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:58:38.000Z'}}, {'blockNum': '0x4b5f59', 'uniqueId': '0x64fb0af1e087bc426e960e41e076f0d4263d7750fbd8f86a50a57c55f2d9c743:log:39', 'hash': '0x64fb0af1e087bc426e960e41e076f0d4263d7750fbd8f86a50a57c55f2d9c743', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 36.98988077109621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02015674949d3df0c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:58:38.000Z'}}, {'blockNum': '0x4b5f5d', 'uniqueId': '0x362851e668cc9dbda83a2c4c1941bfb05bd4123a25be7f35e82a11d4972f30f1:log:31', 'hash': '0x362851e668cc9dbda83a2c4c1941bfb05bd4123a25be7f35e82a11d4972f30f1', 'from': '0xaf52bcc41ca1af3ed5c3d2f3a27647433167b214', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2417.87676562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8312c7dbdf0a840800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:59:40.000Z'}}, {'blockNum': '0x4b5f61', 'uniqueId': '0x96ff7fd8acda4f940829e915eaadced2a497b3c1bc7a2dbc12447540845868fc:log:80', 'hash': '0x96ff7fd8acda4f940829e915eaadced2a497b3c1bc7a2dbc12447540845868fc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 12.75466073790802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb101a85d31a11657', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:00:46.000Z'}}, {'blockNum': '0x4b5f61', 'uniqueId': '0x96ff7fd8acda4f940829e915eaadced2a497b3c1bc7a2dbc12447540845868fc:log:83', 'hash': '0x96ff7fd8acda4f940829e915eaadced2a497b3c1bc7a2dbc12447540845868fc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 12.75466073790802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb101a85d31a11657', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:00:46.000Z'}}, {'blockNum': '0x4b5f67', 'uniqueId': '0x15e1bb74f20cbeb48e9e04b85f8b7f706ff0b625bca8d7a38163ba7ceac12a9e:log:3', 'hash': '0x15e1bb74f20cbeb48e9e04b85f8b7f706ff0b625bca8d7a38163ba7ceac12a9e', 'from': '0x59118eb6df33ce20eaa77a2e21e51a1cecec5e28', 'to': '0x0a9ce8978151e5db9660f3a581a7f211109a94b1', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:02:02.000Z'}}, {'blockNum': '0x4b5f75', 'uniqueId': '0x52eef4429b4971dd958e574054867409925acc74988d4e98bdbd00e3c2c16fd8:log:14', 'hash': '0x52eef4429b4971dd958e574054867409925acc74988d4e98bdbd00e3c2c16fd8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x97f5e58550d15f79cec1cef14e332e9cdaeec67b', 'value': 679.73832116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24d943a1afe2305000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:04:50.000Z'}}, {'blockNum': '0x4b5f94', 'uniqueId': '0x3b28b506576e97d7e9f3d170825bd062f26c87a0c34a7c2f1bae41c345290d16:log:3', 'hash': '0x3b28b506576e97d7e9f3d170825bd062f26c87a0c34a7c2f1bae41c345290d16', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd46bc961065f56d92921a5fea66125822a7eeaa0', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:12:55.000Z'}}, {'blockNum': '0x4b5f9a', 'uniqueId': '0xef4a4434c6df49278c7a633b0111acd51f203fb6060332ec5caaa70fe7a64354:log:17', 'hash': '0xef4a4434c6df49278c7a633b0111acd51f203fb6060332ec5caaa70fe7a64354', 'from': '0x943cf58d9510fbbc2327c239cc33756dd5ed6453', 'to': '0xd602018a594dd01c0e7695fe715f3b81b0031e49', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:13:45.000Z'}}, {'blockNum': '0x4b5fa1', 'uniqueId': '0xff43b73764040a4c047b78e96b7878112dd5989b5e729e4d33eb262859f82694:log:20', 'hash': '0xff43b73764040a4c047b78e96b7878112dd5989b5e729e4d33eb262859f82694', 'from': '0x0a9ce8978151e5db9660f3a581a7f211109a94b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:15:01.000Z'}}, {'blockNum': '0x4b5fa1', 'uniqueId': '0xff43b73764040a4c047b78e96b7878112dd5989b5e729e4d33eb262859f82694:log:23', 'hash': '0xff43b73764040a4c047b78e96b7878112dd5989b5e729e4d33eb262859f82694', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:15:01.000Z'}}, {'blockNum': '0x4b5fa1', 'uniqueId': '0xff43b73764040a4c047b78e96b7878112dd5989b5e729e4d33eb262859f82694:log:25', 'hash': '0xff43b73764040a4c047b78e96b7878112dd5989b5e729e4d33eb262859f82694', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:15:01.000Z'}}, {'blockNum': '0x4b5fa3', 'uniqueId': '0x75ad928f517682cdfa3c75b6eede61eb60632a5094e10cbb752973b88c060477:log:44', 'hash': '0x75ad928f517682cdfa3c75b6eede61eb60632a5094e10cbb752973b88c060477', 'from': '0x2208bf69dcecdf9b1e229c7d155a3fe0f29e16ba', 'to': '0x875389a21efd3cf3018d4f19f2db028d6342ec63', 'value': 50.68563107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02bf6788ea07da2c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:15:30.000Z'}}, {'blockNum': '0x4b5faf', 'uniqueId': '0x73247cfbbacf5b27f07bbccb30ba93b53a9dc73bcdc729a56b615eb848132d79:log:30', 'hash': '0x73247cfbbacf5b27f07bbccb30ba93b53a9dc73bcdc729a56b615eb848132d79', 'from': '0x59118eb6df33ce20eaa77a2e21e51a1cecec5e28', 'to': '0x0a9ce8978151e5db9660f3a581a7f211109a94b1', 'value': 647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2312edc00c0dbc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:18:28.000Z'}}, {'blockNum': '0x4b5fb3', 'uniqueId': '0x1628dd8a32141f3f757ef371231a184cdb2139b2cab840b37007a743079a731a:log:31', 'hash': '0x1628dd8a32141f3f757ef371231a184cdb2139b2cab840b37007a743079a731a', 'from': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7.0481728993686295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x61d023e8be66f35b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:19:28.000Z'}}, {'blockNum': '0x4b5fb3', 'uniqueId': '0x1628dd8a32141f3f757ef371231a184cdb2139b2cab840b37007a743079a731a:log:33', 'hash': '0x1628dd8a32141f3f757ef371231a184cdb2139b2cab840b37007a743079a731a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 7.0481728993686295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x61d023e8be66f35b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:19:28.000Z'}}, {'blockNum': '0x4b5fc0', 'uniqueId': '0xfe58540e3a0b314eae5f9116b01d07a131b0b7ca946a618c7f1882371e3ff5a6:log:43', 'hash': '0xfe58540e3a0b314eae5f9116b01d07a131b0b7ca946a618c7f1882371e3ff5a6', 'from': '0x0a9ce8978151e5db9660f3a581a7f211109a94b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2312edc00c0dbc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:21:58.000Z'}}, {'blockNum': '0x4b5fc0', 'uniqueId': '0xfe58540e3a0b314eae5f9116b01d07a131b0b7ca946a618c7f1882371e3ff5a6:log:46', 'hash': '0xfe58540e3a0b314eae5f9116b01d07a131b0b7ca946a618c7f1882371e3ff5a6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2312edc00c0dbc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:21:58.000Z'}}, {'blockNum': '0x4b5fc0', 'uniqueId': '0xfe58540e3a0b314eae5f9116b01d07a131b0b7ca946a618c7f1882371e3ff5a6:log:48', 'hash': '0xfe58540e3a0b314eae5f9116b01d07a131b0b7ca946a618c7f1882371e3ff5a6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2312edc00c0dbc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:21:58.000Z'}}, {'blockNum': '0x4b5fc2', 'uniqueId': '0x239385a1dfaf3a5fb509f9b2a85591ef2ea2ed1de5c4bf5e4348159492c8e997:log:0', 'hash': '0x239385a1dfaf3a5fb509f9b2a85591ef2ea2ed1de5c4bf5e4348159492c8e997', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8718438b983d394f3d8c2bd538f91e4c316bf35a', 'value': 3248.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb019fe62b598720000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:22:13.000Z'}}, {'blockNum': '0x4b5fd5', 'uniqueId': '0x96b0bf304e123e65166c944f289ac8f1eb9508ab9be0ea409c7c24aedf1b1c10:log:25', 'hash': '0x96b0bf304e123e65166c944f289ac8f1eb9508ab9be0ea409c7c24aedf1b1c10', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 728.733588175249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x278135c97309848833', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:27:02.000Z'}}, {'blockNum': '0x4b5fd5', 'uniqueId': '0x96b0bf304e123e65166c944f289ac8f1eb9508ab9be0ea409c7c24aedf1b1c10:log:27', 'hash': '0x96b0bf304e123e65166c944f289ac8f1eb9508ab9be0ea409c7c24aedf1b1c10', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 728.733588175249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x278135c97309848833', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:27:02.000Z'}}, {'blockNum': '0x4b5fd6', 'uniqueId': '0xe9bf3f532f8c985be12fe26d7e5c95adaf17bfff3202f4cc4d872e42143adf80:log:33', 'hash': '0xe9bf3f532f8c985be12fe26d7e5c95adaf17bfff3202f4cc4d872e42143adf80', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 41.43202431615569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x023efc1e9969ce85c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:27:08.000Z'}}, {'blockNum': '0x4b5fd6', 'uniqueId': '0xe9bf3f532f8c985be12fe26d7e5c95adaf17bfff3202f4cc4d872e42143adf80:log:36', 'hash': '0xe9bf3f532f8c985be12fe26d7e5c95adaf17bfff3202f4cc4d872e42143adf80', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 41.43202431615569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x023efc1e9969ce85c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:27:08.000Z'}}, {'blockNum': '0x4b5fe1', 'uniqueId': '0x5fc90d17eeb7bfe42bff8a2827e61c2a725cad2c1d020bc2d34b4713931ec6fc:log:87', 'hash': '0x5fc90d17eeb7bfe42bff8a2827e61c2a725cad2c1d020bc2d34b4713931ec6fc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 54.489770942749985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f4328df92703ca9a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:29:25.000Z'}}, {'blockNum': '0x4b5fe1', 'uniqueId': '0x5fc90d17eeb7bfe42bff8a2827e61c2a725cad2c1d020bc2d34b4713931ec6fc:log:90', 'hash': '0x5fc90d17eeb7bfe42bff8a2827e61c2a725cad2c1d020bc2d34b4713931ec6fc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 54.489770942749985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f4328df92703ca9a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:29:25.000Z'}}, {'blockNum': '0x4b5ff1', 'uniqueId': '0xcc10297a583ad4798f770585e8e7ac54bc1abb5c605daac7af48c9b6037c878d:log:42', 'hash': '0xcc10297a583ad4798f770585e8e7ac54bc1abb5c605daac7af48c9b6037c878d', 'from': '0x1954cc7945f653d27da5f95b448ea543a7cb68f1', 'to': '0x8f14d6339cccefe9ad659510c992ab0c01653f94', 'value': 203.996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b0f03612ed0960000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:33:24.000Z'}}, {'blockNum': '0x4b5ff4', 'uniqueId': '0x84caa03878ec8537004b31c88f5c35ac3deb707155871c49aa7634403e6c968a:log:82', 'hash': '0x84caa03878ec8537004b31c88f5c35ac3deb707155871c49aa7634403e6c968a', 'from': '0x25d4aef414ea092fbcbd83fd30e89e15cf820d0a', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 173.7365081470326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x096b1411aa0ca2f607', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:34:14.000Z'}}, {'blockNum': '0x4b5ff4', 'uniqueId': '0x84caa03878ec8537004b31c88f5c35ac3deb707155871c49aa7634403e6c968a:log:85', 'hash': '0x84caa03878ec8537004b31c88f5c35ac3deb707155871c49aa7634403e6c968a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 173.7365081470326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x096b1411aa0ca2f607', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:34:14.000Z'}}, {'blockNum': '0x4b5ff4', 'uniqueId': '0xf7e1f1bb83bbd83a8ace21eb16b4f0509602e8139c67d8b0d63ab44141d06595:log:107', 'hash': '0xf7e1f1bb83bbd83a8ace21eb16b4f0509602e8139c67d8b0d63ab44141d06595', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.797006669643507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcd59872b0b2fe36d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:34:14.000Z'}}, {'blockNum': '0x4b5ff4', 'uniqueId': '0xf7e1f1bb83bbd83a8ace21eb16b4f0509602e8139c67d8b0d63ab44141d06595:log:110', 'hash': '0xf7e1f1bb83bbd83a8ace21eb16b4f0509602e8139c67d8b0d63ab44141d06595', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 14.797006669643507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcd59872b0b2fe36d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:34:14.000Z'}}, {'blockNum': '0x4b6004', 'uniqueId': '0xe8c59cd8688c6fd6538ac78239cbffbdab86c69fc4e84d73becdd4026472883a:log:77', 'hash': '0xe8c59cd8688c6fd6538ac78239cbffbdab86c69fc4e84d73becdd4026472883a', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 899.0520435991058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30bcda7e4581b42ab1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:39:32.000Z'}}, {'blockNum': '0x4b6004', 'uniqueId': '0xe8c59cd8688c6fd6538ac78239cbffbdab86c69fc4e84d73becdd4026472883a:log:79', 'hash': '0xe8c59cd8688c6fd6538ac78239cbffbdab86c69fc4e84d73becdd4026472883a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 899.0520435991058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30bcda7e4581b42ab1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:39:32.000Z'}}, {'blockNum': '0x4b600c', 'uniqueId': '0x405c932b6d3bcb925f02c83f95d2812b3348638577cb6e2764c78279e2da5e55:log:8', 'hash': '0x405c932b6d3bcb925f02c83f95d2812b3348638577cb6e2764c78279e2da5e55', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 140.58524884520256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x079f0322f8de3152d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:41:36.000Z'}}, {'blockNum': '0x4b600c', 'uniqueId': '0x405c932b6d3bcb925f02c83f95d2812b3348638577cb6e2764c78279e2da5e55:log:11', 'hash': '0x405c932b6d3bcb925f02c83f95d2812b3348638577cb6e2764c78279e2da5e55', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 140.58524884520256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x079f0322f8de3152d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:41:36.000Z'}}, {'blockNum': '0x4b6020', 'uniqueId': '0xa2663a7ee7199493daab3276e3df116b2c45211d056c8a59b2c2c188ce93b896:log:11', 'hash': '0xa2663a7ee7199493daab3276e3df116b2c45211d056c8a59b2c2c188ce93b896', 'from': '0x8f14d6339cccefe9ad659510c992ab0c01653f94', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 203.996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b0f03612ed0960000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:45:08.000Z'}}, {'blockNum': '0x4b602d', 'uniqueId': '0x1d48219e6a20e9a6a827c68a67210315571d30b8841b488fd5899316e61adc23:log:57', 'hash': '0x1d48219e6a20e9a6a827c68a67210315571d30b8841b488fd5899316e61adc23', 'from': '0x25d4aef414ea092fbcbd83fd30e89e15cf820d0a', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 190.35484564732175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a51b44392b2ece18d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:50:04.000Z'}}, {'blockNum': '0x4b602d', 'uniqueId': '0x1d48219e6a20e9a6a827c68a67210315571d30b8841b488fd5899316e61adc23:log:60', 'hash': '0x1d48219e6a20e9a6a827c68a67210315571d30b8841b488fd5899316e61adc23', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 190.35484564732175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a51b44392b2ece18d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:50:04.000Z'}}, {'blockNum': '0x4b603b', 'uniqueId': '0x1542dc5a72c8eddb3767303e4fe7a99218a34880b3ae6185ad929fd2edb01d4d:log:9', 'hash': '0x1542dc5a72c8eddb3767303e4fe7a99218a34880b3ae6185ad929fd2edb01d4d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 1485.42218571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x50865fb7cc98dfcc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:53:29.000Z'}}, {'blockNum': '0x4b603d', 'uniqueId': '0xa54165edf1b04d653d9d552015f5db9bb446c7e0c0f4191c4fa92cd305b801c0:log:34', 'hash': '0xa54165edf1b04d653d9d552015f5db9bb446c7e0c0f4191c4fa92cd305b801c0', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1485.42218571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x50865fb7cc98dfcc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:54:56.000Z'}}, {'blockNum': '0x4b603d', 'uniqueId': '0xa54165edf1b04d653d9d552015f5db9bb446c7e0c0f4191c4fa92cd305b801c0:log:37', 'hash': '0xa54165edf1b04d653d9d552015f5db9bb446c7e0c0f4191c4fa92cd305b801c0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1485.42218571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x50865fb7cc98dfcc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:54:56.000Z'}}, {'blockNum': '0x4b603d', 'uniqueId': '0xa54165edf1b04d653d9d552015f5db9bb446c7e0c0f4191c4fa92cd305b801c0:log:38', 'hash': '0xa54165edf1b04d653d9d552015f5db9bb446c7e0c0f4191c4fa92cd305b801c0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1485.42218571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x50865fb7cc98dfcc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:54:56.000Z'}}, {'blockNum': '0x4b6040', 'uniqueId': '0xba3cc0034486d5fe6a131e311b79c04a93ae6fbb7b9c5bf992030389cc336439:log:7', 'hash': '0xba3cc0034486d5fe6a131e311b79c04a93ae6fbb7b9c5bf992030389cc336439', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x218d1693255a4c1e1ac13f3feb5f7e79e344283d', 'value': 299.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10378a4c090e1b0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:55:21.000Z'}}, {'blockNum': '0x4b6044', 'uniqueId': '0xa29ffee3e80e6e2b348525f2b57511e86ea6a3973b203add52db13d5e20c9c99:log:164', 'hash': '0xa29ffee3e80e6e2b348525f2b57511e86ea6a3973b203add52db13d5e20c9c99', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.6068380915835878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x086bec07750405d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:55:49.000Z'}}, {'blockNum': '0x4b6044', 'uniqueId': '0xa29ffee3e80e6e2b348525f2b57511e86ea6a3973b203add52db13d5e20c9c99:log:167', 'hash': '0xa29ffee3e80e6e2b348525f2b57511e86ea6a3973b203add52db13d5e20c9c99', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 0.6068380915835878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x086bec07750405d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:55:49.000Z'}}, {'blockNum': '0x4b6050', 'uniqueId': '0x6818878403cc1a772b4d799f36dc6e7ea1c2a67196335d79144fbaaeea3aa5a6:log:61', 'hash': '0x6818878403cc1a772b4d799f36dc6e7ea1c2a67196335d79144fbaaeea3aa5a6', 'from': '0xebec9760681817ee735f1a855287682f7dfa1a36', 'to': '0x860aa8d022d04e45836644b14c27b5eec4b328e7', 'value': 58.108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032669162170660000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:00:23.000Z'}}, {'blockNum': '0x4b6050', 'uniqueId': '0xfa318e2ebbfd5cdf74855cb9b2816e6a20739d91afd4d459d49a167d33c45916:log:68', 'hash': '0xfa318e2ebbfd5cdf74855cb9b2816e6a20739d91afd4d459d49a167d33c45916', 'from': '0x164a853451ca0fd4d2ae3c2c961c0dbde82c9d8d', 'to': '0x51e4351adb8f2f93e712ca3c41c908c937cbc853', 'value': 6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x53444835ec580000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:00:23.000Z'}}, {'blockNum': '0x4b6059', 'uniqueId': '0x94eca1f2d0139f25170994ad94a90fc4c4a7b95dca35fdf030c566d5baffa8ee:log:45', 'hash': '0x94eca1f2d0139f25170994ad94a90fc4c4a7b95dca35fdf030c566d5baffa8ee', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 59.03733224605142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03334ebce2749c01fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:02:37.000Z'}}, {'blockNum': '0x4b6059', 'uniqueId': '0x94eca1f2d0139f25170994ad94a90fc4c4a7b95dca35fdf030c566d5baffa8ee:log:48', 'hash': '0x94eca1f2d0139f25170994ad94a90fc4c4a7b95dca35fdf030c566d5baffa8ee', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 59.03733224605142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03334ebce2749c01fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:02:37.000Z'}}, {'blockNum': '0x4b6060', 'uniqueId': '0x8bbc59a35a671685fef0f169250281f18fa1a165d8664bd7da4516eda2e72660:log:43', 'hash': '0x8bbc59a35a671685fef0f169250281f18fa1a165d8664bd7da4516eda2e72660', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 340.5882326190807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12769c790da26a701d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:04:33.000Z'}}, {'blockNum': '0x4b6060', 'uniqueId': '0x8bbc59a35a671685fef0f169250281f18fa1a165d8664bd7da4516eda2e72660:log:46', 'hash': '0x8bbc59a35a671685fef0f169250281f18fa1a165d8664bd7da4516eda2e72660', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x25d4aef414ea092fbcbd83fd30e89e15cf820d0a', 'value': 340.5882326190807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12769c790da26a701d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:04:33.000Z'}}, {'blockNum': '0x4b6064', 'uniqueId': '0x0fa7c2dd06811832b062a39304c5539cab54d858fc95f1a273f7e6bf733dbc77:log:52', 'hash': '0x0fa7c2dd06811832b062a39304c5539cab54d858fc95f1a273f7e6bf733dbc77', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 74.00081287161743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0402f7b33bcee93729', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:05:23.000Z'}}, {'blockNum': '0x4b6064', 'uniqueId': '0x0fa7c2dd06811832b062a39304c5539cab54d858fc95f1a273f7e6bf733dbc77:log:55', 'hash': '0x0fa7c2dd06811832b062a39304c5539cab54d858fc95f1a273f7e6bf733dbc77', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 74.00081287161743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0402f7b33bcee93729', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:05:23.000Z'}}, {'blockNum': '0x4b6074', 'uniqueId': '0xf3a7760c4762aa35d868bb74d44428b2ac925132b691f21d6c05fe5e1759735a:log:71', 'hash': '0xf3a7760c4762aa35d868bb74d44428b2ac925132b691f21d6c05fe5e1759735a', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 701.0682061560103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2601469b149150ec99', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:10:14.000Z'}}, {'blockNum': '0x4b6074', 'uniqueId': '0xf3a7760c4762aa35d868bb74d44428b2ac925132b691f21d6c05fe5e1759735a:log:73', 'hash': '0xf3a7760c4762aa35d868bb74d44428b2ac925132b691f21d6c05fe5e1759735a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 701.0682061560103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2601469b149150ec99', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:10:14.000Z'}}, {'blockNum': '0x4b6080', 'uniqueId': '0x463285abbdc82ae7c8a437a6f4a48ae6b38947b6e608d4ce5d40c0277b3b1714:log:23', 'hash': '0x463285abbdc82ae7c8a437a6f4a48ae6b38947b6e608d4ce5d40c0277b3b1714', 'from': '0x25d4aef414ea092fbcbd83fd30e89e15cf820d0a', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 367.02189159698355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13e573b1d79620fa98', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:13:15.000Z'}}, {'blockNum': '0x4b6080', 'uniqueId': '0x463285abbdc82ae7c8a437a6f4a48ae6b38947b6e608d4ce5d40c0277b3b1714:log:26', 'hash': '0x463285abbdc82ae7c8a437a6f4a48ae6b38947b6e608d4ce5d40c0277b3b1714', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 367.02189159698355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13e573b1d79620fa98', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:13:15.000Z'}}, {'blockNum': '0x4b608b', 'uniqueId': '0x327f9efcc2542efc559de273467c619092ae8035e20cc9eb1fd3f930cdee30e1:log:16', 'hash': '0x327f9efcc2542efc559de273467c619092ae8035e20cc9eb1fd3f930cdee30e1', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xecfb69e2bfd3dfef4d391addc36f60ca93e05118', 'value': 11.42878533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9e9b33b490d87800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:15:50.000Z'}}, {'blockNum': '0x4b6092', 'uniqueId': '0xeefde4f228f2c893a9e8b7fd26d5def735af4eab2ec1d41341517a4ba1055cb8:log:10', 'hash': '0xeefde4f228f2c893a9e8b7fd26d5def735af4eab2ec1d41341517a4ba1055cb8', 'from': '0x51e4351adb8f2f93e712ca3c41c908c937cbc853', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x53444835ec580000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:17:24.000Z'}}, {'blockNum': '0x4b6096', 'uniqueId': '0x068d885bb6627f48f63fb468213ae8ce30b3da056da1db8f9e20f02707ca81db:log:46', 'hash': '0x068d885bb6627f48f63fb468213ae8ce30b3da056da1db8f9e20f02707ca81db', 'from': '0xf0d43de11d6b4f35f60264fe9533c3d1d330654e', 'to': '0x83fc4bfbcdec3a58adadb0b231ab9a9cf2eca2ff', 'value': 2.607476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x242f9d9b645b4000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:19:05.000Z'}}, {'blockNum': '0x4b6097', 'uniqueId': '0xd10c3daad4b528f9a26b21c922cbc7819ec2e6801ccccd68a46a0667cc5809d9:log:12', 'hash': '0xd10c3daad4b528f9a26b21c922cbc7819ec2e6801ccccd68a46a0667cc5809d9', 'from': '0x0ae2b017fea73623942698084c6a5339ed204281', 'to': '0x53c4a0cb4d603ff15331a5351f80fb5c20f2384d', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:19:11.000Z'}}, {'blockNum': '0x4b60be', 'uniqueId': '0xdc0fc9b61fb9c7e67ba7acae72cfc3d53d8951f1aa048c9ce11650393ddd2967:log:30', 'hash': '0xdc0fc9b61fb9c7e67ba7acae72cfc3d53d8951f1aa048c9ce11650393ddd2967', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1595.4028253207102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x567ca970d29f843290', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:28:55.000Z'}}, {'blockNum': '0x4b60be', 'uniqueId': '0xdc0fc9b61fb9c7e67ba7acae72cfc3d53d8951f1aa048c9ce11650393ddd2967:log:32', 'hash': '0xdc0fc9b61fb9c7e67ba7acae72cfc3d53d8951f1aa048c9ce11650393ddd2967', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1595.4028253207102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x567ca970d29f843290', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:28:55.000Z'}}, {'blockNum': '0x4b60d6', 'uniqueId': '0xfa07d6f006ccfe57b38efdf6d7bd90e54443ac276390b2fda3833ba121eb518a:log:156', 'hash': '0xfa07d6f006ccfe57b38efdf6d7bd90e54443ac276390b2fda3833ba121eb518a', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1498.184384787581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51377c283e44e8d340', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:34:30.000Z'}}, {'blockNum': '0x4b60d6', 'uniqueId': '0xfa07d6f006ccfe57b38efdf6d7bd90e54443ac276390b2fda3833ba121eb518a:log:158', 'hash': '0xfa07d6f006ccfe57b38efdf6d7bd90e54443ac276390b2fda3833ba121eb518a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1498.184384787581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51377c283e44e8d340', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:34:30.000Z'}}, {'blockNum': '0x4b60d8', 'uniqueId': '0x654b58625532e4e0ea5876b52b837c681b679a7b714802bd37a0d7d3f6185226:log:31', 'hash': '0x654b58625532e4e0ea5876b52b837c681b679a7b714802bd37a0d7d3f6185226', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 36.92530325914986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02007107acf1337bb2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:34:42.000Z'}}, {'blockNum': '0x4b60d8', 'uniqueId': '0x654b58625532e4e0ea5876b52b837c681b679a7b714802bd37a0d7d3f6185226:log:34', 'hash': '0x654b58625532e4e0ea5876b52b837c681b679a7b714802bd37a0d7d3f6185226', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 36.92530325914986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02007107acf1337bb2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:34:42.000Z'}}, {'blockNum': '0x4b60dd', 'uniqueId': '0x504560a2861618faa341a077f18b279e36f556df4c54faeb694a9d9374dffe92:log:50', 'hash': '0x504560a2861618faa341a077f18b279e36f556df4c54faeb694a9d9374dffe92', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 585.2052261030154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fb95a9c972c62a269', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:35:07.000Z'}}, {'blockNum': '0x4b60dd', 'uniqueId': '0x504560a2861618faa341a077f18b279e36f556df4c54faeb694a9d9374dffe92:log:52', 'hash': '0x504560a2861618faa341a077f18b279e36f556df4c54faeb694a9d9374dffe92', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 585.2052261030154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fb95a9c972c62a269', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:35:07.000Z'}}, {'blockNum': '0x4b60e5', 'uniqueId': '0x0cf306a690387f736d97552d1b195cd69590cc61b508a0c59af5b61fd4fd5e68:log:92', 'hash': '0x0cf306a690387f736d97552d1b195cd69590cc61b508a0c59af5b61fd4fd5e68', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7.269795378657276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x64e380613ea4b3c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:36:30.000Z'}}, {'blockNum': '0x4b60e5', 'uniqueId': '0x0cf306a690387f736d97552d1b195cd69590cc61b508a0c59af5b61fd4fd5e68:log:95', 'hash': '0x0cf306a690387f736d97552d1b195cd69590cc61b508a0c59af5b61fd4fd5e68', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 7.269795378657276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x64e380613ea4b3c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:36:30.000Z'}}, {'blockNum': '0x4b60e9', 'uniqueId': '0xdc59d09f3dcc223e70bb2d8ab5ac3d2815da4e4a146e955155ed4fff7e97ec80:log:1', 'hash': '0xdc59d09f3dcc223e70bb2d8ab5ac3d2815da4e4a146e955155ed4fff7e97ec80', 'from': '0x83fc4bfbcdec3a58adadb0b231ab9a9cf2eca2ff', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 2.607476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x242f9d9b645b4000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:37:11.000Z'}}, {'blockNum': '0x4b60f8', 'uniqueId': '0xa4335385464ad4055b68834b5bf3b738775732fe8642d36f209ef0d2fe75f9a9:log:49', 'hash': '0xa4335385464ad4055b68834b5bf3b738775732fe8642d36f209ef0d2fe75f9a9', 'from': '0x866b1ead4c3d651378ddd67d4bb65759f2ffcd22', 'to': '0xc9308c224a46aec3d232f40869034f2c93f339c1', 'value': 1.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d1120d7b160000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:39:58.000Z'}}, {'blockNum': '0x4b6104', 'uniqueId': '0xa60c6b1c1a4cddf7a674f3939733b1945f3b6bb51292d6c4aeaf89e82ee42cca:log:55', 'hash': '0xa60c6b1c1a4cddf7a674f3939733b1945f3b6bb51292d6c4aeaf89e82ee42cca', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 44.42299947527726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02687e32a8dd43d105', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:42:49.000Z'}}, {'blockNum': '0x4b6104', 'uniqueId': '0xa60c6b1c1a4cddf7a674f3939733b1945f3b6bb51292d6c4aeaf89e82ee42cca:log:58', 'hash': '0xa60c6b1c1a4cddf7a674f3939733b1945f3b6bb51292d6c4aeaf89e82ee42cca', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 44.42299947527726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02687e32a8dd43d105', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:42:49.000Z'}}, {'blockNum': '0x4b611a', 'uniqueId': '0x65d17ae65ed1f8344445c27b704d362aaf3c687914ad2a235ab384d98023edfb:log:1', 'hash': '0x65d17ae65ed1f8344445c27b704d362aaf3c687914ad2a235ab384d98023edfb', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x9cfefdfecd70fa2ce222c828b14484705b564ddd', 'value': 14.4957956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc92b694bd2aba000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:46:07.000Z'}}, {'blockNum': '0x4b6127', 'uniqueId': '0xbb4d140e647e518a3952cc30522bc38551164b1b0c8596abc10454634a85dd46:log:43', 'hash': '0xbb4d140e647e518a3952cc30522bc38551164b1b0c8596abc10454634a85dd46', 'from': '0xa07c749095fb91f0adade3cd75491e8e507d9d20', 'to': '0x6fbb095e457cc7fb5cbb0b0781ced14c09c4681c', 'value': 3331.7844765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb49dcc48d377504800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:49:17.000Z'}}, {'blockNum': '0x4b612d', 'uniqueId': '0xecc2dc4cb5dfbeb58319b1385528fd7b4fbae001b49afbb6d1f864c9e819fc96:log:31', 'hash': '0xecc2dc4cb5dfbeb58319b1385528fd7b4fbae001b49afbb6d1f864c9e819fc96', 'from': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 456.3036032791565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18bc7c0d9510e4a923', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:50:44.000Z'}}, {'blockNum': '0x4b612d', 'uniqueId': '0xecc2dc4cb5dfbeb58319b1385528fd7b4fbae001b49afbb6d1f864c9e819fc96:log:33', 'hash': '0xecc2dc4cb5dfbeb58319b1385528fd7b4fbae001b49afbb6d1f864c9e819fc96', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 456.3036032791565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18bc7c0d9510e4a923', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:50:44.000Z'}}, {'blockNum': '0x4b6146', 'uniqueId': '0xba9b742a7319eafaf2e00c053b84c147d880cb88479ca55590a7ef13b2d2e6ac:log:69', 'hash': '0xba9b742a7319eafaf2e00c053b84c147d880cb88479ca55590a7ef13b2d2e6ac', 'from': '0x06da1a08f030cf89cbf869cb0e2c9078281afe19', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 58768.97343735405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c71df57d1e84f3f9a95', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:57:10.000Z'}}, {'blockNum': '0x4b6147', 'uniqueId': '0xf60d10db0b9489b325d3fc24195e4bd11fbf744561dd5592ffa7e501b925f64d:log:23', 'hash': '0xf60d10db0b9489b325d3fc24195e4bd11fbf744561dd5592ffa7e501b925f64d', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:57:18.000Z'}}, {'blockNum': '0x4b6147', 'uniqueId': '0xf60d10db0b9489b325d3fc24195e4bd11fbf744561dd5592ffa7e501b925f64d:log:26', 'hash': '0xf60d10db0b9489b325d3fc24195e4bd11fbf744561dd5592ffa7e501b925f64d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:57:18.000Z'}}, {'blockNum': '0x4b6147', 'uniqueId': '0xf60d10db0b9489b325d3fc24195e4bd11fbf744561dd5592ffa7e501b925f64d:log:27', 'hash': '0xf60d10db0b9489b325d3fc24195e4bd11fbf744561dd5592ffa7e501b925f64d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:57:18.000Z'}}, {'blockNum': '0x4b614a', 'uniqueId': '0x49ca0f2af1bf49c0c663781034a245d3c41e08d5f9f21c5de932dceb6c42ccef:log:25', 'hash': '0x49ca0f2af1bf49c0c663781034a245d3c41e08d5f9f21c5de932dceb6c42ccef', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.917280666574095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf04d3bb29f3810e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:57:39.000Z'}}, {'blockNum': '0x4b614a', 'uniqueId': '0x49ca0f2af1bf49c0c663781034a245d3c41e08d5f9f21c5de932dceb6c42ccef:log:28', 'hash': '0x49ca0f2af1bf49c0c663781034a245d3c41e08d5f9f21c5de932dceb6c42ccef', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 14.917280666574095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf04d3bb29f3810e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:57:39.000Z'}}, {'blockNum': '0x4b614d', 'uniqueId': '0x679872443393340db18034a33f98a008103e25ca4ee0654f1d456e7b6440c64f:log:18', 'hash': '0x679872443393340db18034a33f98a008103e25ca4ee0654f1d456e7b6440c64f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 64.10053308681435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x037992d73928be33d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:58:03.000Z'}}, {'blockNum': '0x4b614d', 'uniqueId': '0x679872443393340db18034a33f98a008103e25ca4ee0654f1d456e7b6440c64f:log:21', 'hash': '0x679872443393340db18034a33f98a008103e25ca4ee0654f1d456e7b6440c64f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 64.10053308681435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x037992d73928be33d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:58:03.000Z'}}, {'blockNum': '0x4b6150', 'uniqueId': '0x3c9b3d0b526d86fc8303133cb0f1fbee49322fedba1c8b63872225e84c2a4c13:log:22', 'hash': '0x3c9b3d0b526d86fc8303133cb0f1fbee49322fedba1c8b63872225e84c2a4c13', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 700.3671319146495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25f78be3c5b3d499d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:58:16.000Z'}}, {'blockNum': '0x4b6150', 'uniqueId': '0x3c9b3d0b526d86fc8303133cb0f1fbee49322fedba1c8b63872225e84c2a4c13:log:24', 'hash': '0x3c9b3d0b526d86fc8303133cb0f1fbee49322fedba1c8b63872225e84c2a4c13', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 700.3671319146495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25f78be3c5b3d499d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:58:16.000Z'}}, {'blockNum': '0x4b6150', 'uniqueId': '0xf03c66efdb55b9c8bb99a2f8bb6cd6fa98acec49c2391ab82cac7b25a7722d14:log:35', 'hash': '0xf03c66efdb55b9c8bb99a2f8bb6cd6fa98acec49c2391ab82cac7b25a7722d14', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2.196751691218107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e7c6e0636cb3ac2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:58:16.000Z'}}, {'blockNum': '0x4b6150', 'uniqueId': '0xf03c66efdb55b9c8bb99a2f8bb6cd6fa98acec49c2391ab82cac7b25a7722d14:log:38', 'hash': '0xf03c66efdb55b9c8bb99a2f8bb6cd6fa98acec49c2391ab82cac7b25a7722d14', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 2.196751691218107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e7c6e0636cb3ac2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:58:16.000Z'}}, {'blockNum': '0x4b6158', 'uniqueId': '0x63f51b09d9cb651f2fb40be915d7565e6db63edd243f752f199485a73c3cbd41:log:55', 'hash': '0x63f51b09d9cb651f2fb40be915d7565e6db63edd243f752f199485a73c3cbd41', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 301.7571790797227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x105bb8db984ece4522', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:59:32.000Z'}}, {'blockNum': '0x4b6158', 'uniqueId': '0x63f51b09d9cb651f2fb40be915d7565e6db63edd243f752f199485a73c3cbd41:log:57', 'hash': '0x63f51b09d9cb651f2fb40be915d7565e6db63edd243f752f199485a73c3cbd41', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 301.7571790797227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x105bb8db984ece4522', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:59:32.000Z'}}, {'blockNum': '0x4b6173', 'uniqueId': '0xc5875e0eb6892781279d5541ecfdb7e026a957ecaac4c788f41a6921c9005079:log:31', 'hash': '0xc5875e0eb6892781279d5541ecfdb7e026a957ecaac4c788f41a6921c9005079', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 97.09685014125088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05437d4ec3269899fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:05:58.000Z'}}, {'blockNum': '0x4b6173', 'uniqueId': '0xc5875e0eb6892781279d5541ecfdb7e026a957ecaac4c788f41a6921c9005079:log:33', 'hash': '0xc5875e0eb6892781279d5541ecfdb7e026a957ecaac4c788f41a6921c9005079', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 97.09685014125088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05437d4ec3269899fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:05:58.000Z'}}, {'blockNum': '0x4b617f', 'uniqueId': '0xff38f53e7a5e63de36e9fe075814031ae6269e78b69110875763052673d3facd:log:70', 'hash': '0xff38f53e7a5e63de36e9fe075814031ae6269e78b69110875763052673d3facd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 551.9884599378744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dec60f3c0d7f0eeaa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:08:43.000Z'}}, {'blockNum': '0x4b617f', 'uniqueId': '0xff38f53e7a5e63de36e9fe075814031ae6269e78b69110875763052673d3facd:log:73', 'hash': '0xff38f53e7a5e63de36e9fe075814031ae6269e78b69110875763052673d3facd', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 551.9884599378744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dec60f3c0d7f0eeaa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:08:43.000Z'}}, {'blockNum': '0x4b6184', 'uniqueId': '0xcb73ab0b6d518f6b819c7100e038d4ab8dbc88f5f8227fd7e8b018cf1988c87f:log:6', 'hash': '0xcb73ab0b6d518f6b819c7100e038d4ab8dbc88f5f8227fd7e8b018cf1988c87f', 'from': '0x252ffc0fed4949ecfa1744f513aa7bf373dd7862', 'to': '0x972c82fe891332d6e467176ff0dbb71f5d209451', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:10:00.000Z'}}, {'blockNum': '0x4b618c', 'uniqueId': '0x407152b545fc7485b76f3573412c219b0c81f38eb2d2a552606bba07dfe68166:log:1', 'hash': '0x407152b545fc7485b76f3573412c219b0c81f38eb2d2a552606bba07dfe68166', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x89aef2e30d5be0d3e94dbc1d5f3a4634ad0f33bf', 'value': 82.81103645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x047d3be6e64c2cd400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:11:51.000Z'}}, {'blockNum': '0x4b61a1', 'uniqueId': '0x64a909776dc5145c2c49842ca83de920e21f91da06ef9ecfd264eafcc4420acf:log:8', 'hash': '0x64a909776dc5145c2c49842ca83de920e21f91da06ef9ecfd264eafcc4420acf', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x29648ec0fc197705cddb875b3bb422b72e58f5ff', 'value': 63.215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x036d48cb9294518000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:16:08.000Z'}}, {'blockNum': '0x4b61a6', 'uniqueId': '0x006a8d86c5b3bebe9df0771c7621dece1f325885f36cbcfeb4b7f1142a29d8b6:log:38', 'hash': '0x006a8d86c5b3bebe9df0771c7621dece1f325885f36cbcfeb4b7f1142a29d8b6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 502.10073682664785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b380c27e66e3d5a87', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:17:10.000Z'}}, {'blockNum': '0x4b61a6', 'uniqueId': '0x006a8d86c5b3bebe9df0771c7621dece1f325885f36cbcfeb4b7f1142a29d8b6:log:41', 'hash': '0x006a8d86c5b3bebe9df0771c7621dece1f325885f36cbcfeb4b7f1142a29d8b6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 502.10073682664785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b380c27e66e3d5a87', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:17:10.000Z'}}, {'blockNum': '0x4b61ab', 'uniqueId': '0x9c2b3914d5d891421e24a06eaddf6f28af0f805b19a4eea3ed1cf7526322da30:log:2', 'hash': '0x9c2b3914d5d891421e24a06eaddf6f28af0f805b19a4eea3ed1cf7526322da30', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x379a2e3ff2199b974215d6428a057d48f3b952eb', 'value': 1224.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x426159e65229d20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:18:34.000Z'}}, {'blockNum': '0x4b61ae', 'uniqueId': '0xfc218ee25ce8670799a553ab408b6dc00ff64b6c5d04bfb5f5c63d9ca2004411:log:57', 'hash': '0xfc218ee25ce8670799a553ab408b6dc00ff64b6c5d04bfb5f5c63d9ca2004411', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 88.0111976188425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04c56695ee57cffeb7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:19:13.000Z'}}, {'blockNum': '0x4b61ae', 'uniqueId': '0xfc218ee25ce8670799a553ab408b6dc00ff64b6c5d04bfb5f5c63d9ca2004411:log:60', 'hash': '0xfc218ee25ce8670799a553ab408b6dc00ff64b6c5d04bfb5f5c63d9ca2004411', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 88.0111976188425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04c56695ee57cffeb7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:19:13.000Z'}}, {'blockNum': '0x4b61b0', 'uniqueId': '0xcb537ce88002723d80f9c06a686d6dd87eb3151c2f449d8049f0877830310a81:log:10', 'hash': '0xcb537ce88002723d80f9c06a686d6dd87eb3151c2f449d8049f0877830310a81', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:19:34.000Z'}}, {'blockNum': '0x4b61b5', 'uniqueId': '0x05d85e5a2fa9db0c0c40ef08644cdbf9d35d9437d630ff4a7691ca5306107a22:log:9', 'hash': '0x05d85e5a2fa9db0c0c40ef08644cdbf9d35d9437d630ff4a7691ca5306107a22', 'from': '0x85d605fe562a017b7e2d1d0e12cb2f53553e4ad1', 'to': '0xfc270ba8450fd77bf93a3d872ae3f09a80d8c7dc', 'value': 444.395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18173831fe8fb78000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:20:03.000Z'}}, {'blockNum': '0x4b61bf', 'uniqueId': '0x58af64c02e51d8bd7fbf8416ec4c226bb456a056ff9fda79184406a3284a0e07:log:13', 'hash': '0x58af64c02e51d8bd7fbf8416ec4c226bb456a056ff9fda79184406a3284a0e07', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x89b21c097a7821d9c4b515c2bcddb149b3cb873d', 'value': 634.0640051500001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x225f67dd44d3340000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:22:56.000Z'}}, {'blockNum': '0x4b61c3', 'uniqueId': '0x91a7ba3a570f1d08c5552f0c9d50353f4ad919d94564d637a07006dbaf83b16d:log:25', 'hash': '0x91a7ba3a570f1d08c5552f0c9d50353f4ad919d94564d637a07006dbaf83b16d', 'from': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 150.3945230306935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x082724addf40ca93fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:23:24.000Z'}}, {'blockNum': '0x4b61c3', 'uniqueId': '0x91a7ba3a570f1d08c5552f0c9d50353f4ad919d94564d637a07006dbaf83b16d:log:27', 'hash': '0x91a7ba3a570f1d08c5552f0c9d50353f4ad919d94564d637a07006dbaf83b16d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 150.3945230306935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x082724addf40ca93fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:23:24.000Z'}}, {'blockNum': '0x4b61c6', 'uniqueId': '0x736a52e0030c86d2ae6a2967f8c4c91d5052b051c69510db32ea47520034fab9:log:0', 'hash': '0x736a52e0030c86d2ae6a2967f8c4c91d5052b051c69510db32ea47520034fab9', 'from': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:24:19.000Z'}}, {'blockNum': '0x4b61c7', 'uniqueId': '0xb096b61c11ce9f0276ea7d3ac1ddcb587655195937351bb2a145be0a4527b839:log:7', 'hash': '0xb096b61c11ce9f0276ea7d3ac1ddcb587655195937351bb2a145be0a4527b839', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x403f8902a6657626284a56a63ba8dc9ee1cb625f', 'value': 56.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03101852a671920000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:24:31.000Z'}}, {'blockNum': '0x4b61c9', 'uniqueId': '0xa57b9eab079d9c6603f4ff678627a1973c0eaf13490692334dec64a4a7744883:log:41', 'hash': '0xa57b9eab079d9c6603f4ff678627a1973c0eaf13490692334dec64a4a7744883', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 91.53963528894784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04f65e1d4c2a8c50fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:24:41.000Z'}}, {'blockNum': '0x4b61c9', 'uniqueId': '0xa57b9eab079d9c6603f4ff678627a1973c0eaf13490692334dec64a4a7744883:log:43', 'hash': '0xa57b9eab079d9c6603f4ff678627a1973c0eaf13490692334dec64a4a7744883', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 91.53963528894784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04f65e1d4c2a8c50fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:24:41.000Z'}}, {'blockNum': '0x4b61cc', 'uniqueId': '0xe1ad05bc821f000b1862c4b1836f8f8698275ca5c14861d1c1c65d491f29c7be:log:4', 'hash': '0xe1ad05bc821f000b1862c4b1836f8f8698275ca5c14861d1c1c65d491f29c7be', 'from': '0x379a2e3ff2199b974215d6428a057d48f3b952eb', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1224.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x426159e65229d20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:25:40.000Z'}}, {'blockNum': '0x4b61cc', 'uniqueId': '0xfaffae90c32aa145ac819a665d009eb9b44b42d1b6127ad780a166aac376e572:log:6', 'hash': '0xfaffae90c32aa145ac819a665d009eb9b44b42d1b6127ad780a166aac376e572', 'from': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:25:40.000Z'}}, {'blockNum': '0x4b61f2', 'uniqueId': '0x024e9bd9737a785d4b1c16e3deb7ad3fecb3d85036e1f1e489d61fb57a3e1cf4:log:64', 'hash': '0x024e9bd9737a785d4b1c16e3deb7ad3fecb3d85036e1f1e489d61fb57a3e1cf4', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6e45e3923892311473a7e983ccb23cdf4ff4cb38', 'value': 26.444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x016efbf5e4c86e0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:34:02.000Z'}}, {'blockNum': '0x4b620b', 'uniqueId': '0x38012b3c0e3955e2c89b4f475c350ba7c8d13cdadf5e1923b0dbdabb5953f35c:log:0', 'hash': '0x38012b3c0e3955e2c89b4f475c350ba7c8d13cdadf5e1923b0dbdabb5953f35c', 'from': '0xf51f4012db91498a94cd1910b31c860f3736ec81', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1696.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5bfa714c7f85460000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:40:33.000Z'}}, {'blockNum': '0x4b620c', 'uniqueId': '0xf1c3d36fee8371978537d73563b6ef529c0c09b98d4503ac66a7e4f7b0ef2504:log:4', 'hash': '0xf1c3d36fee8371978537d73563b6ef529c0c09b98d4503ac66a7e4f7b0ef2504', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x36c3c81c62c5c48d8cd840ad3abc58f436ced775', 'value': 307.74370355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10aecd43e1f8df0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:40:41.000Z'}}, {'blockNum': '0x4b624a', 'uniqueId': '0x86939ea422941c21b2311ab67360b450010e4e64f7741431995b09902eae9bf0:log:24', 'hash': '0x86939ea422941c21b2311ab67360b450010e4e64f7741431995b09902eae9bf0', 'from': '0x29648ec0fc197705cddb875b3bb422b72e58f5ff', 'to': '0x512e2d8e36a62538ca8af3653253c44ec4899c73', 'value': 63.215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x036d48cb9294518000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:55:49.000Z'}}, {'blockNum': '0x4b6250', 'uniqueId': '0xed9e3cbf71d86637ce888dfde7b2a12455ea16c7829cd4a7da009d8ba32a1948:log:40', 'hash': '0xed9e3cbf71d86637ce888dfde7b2a12455ea16c7829cd4a7da009d8ba32a1948', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 745.8421233458214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x286ea3838ac6c2dab2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:56:34.000Z'}}, {'blockNum': '0x4b6250', 'uniqueId': '0xed9e3cbf71d86637ce888dfde7b2a12455ea16c7829cd4a7da009d8ba32a1948:log:43', 'hash': '0xed9e3cbf71d86637ce888dfde7b2a12455ea16c7829cd4a7da009d8ba32a1948', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 745.8421233458214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x286ea3838ac6c2dab2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:56:34.000Z'}}, {'blockNum': '0x4b6251', 'uniqueId': '0x1d0acaa34b1bfa474308ed2498bcd82605a100643ed2f2d580133e73b581bf8a:log:10', 'hash': '0x1d0acaa34b1bfa474308ed2498bcd82605a100643ed2f2d580133e73b581bf8a', 'from': '0xdc27819f91d67e9bff0968f7e086254f7d57c47e', 'to': '0x0169281358d5d7e8dab609cba294f270dcc1d800', 'value': 317.481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1135ef1769dfca8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:56:41.000Z'}}, {'blockNum': '0x4b6255', 'uniqueId': '0x5eaf0ec9c3e27cc09e53670de28131d3abce74c5d750b5301708db0c7d9b5a62:log:5', 'hash': '0x5eaf0ec9c3e27cc09e53670de28131d3abce74c5d750b5301708db0c7d9b5a62', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x75def611a34549874c38f5074feed432559a2f8e', 'value': 65.959754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0393601ecb1226a000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:57:43.000Z'}}, {'blockNum': '0x4b6260', 'uniqueId': '0xec1371153cd9ae2c57b3ff2b00630914298d1a3b80b8545c3a23ab6fcb07fdb9:log:69', 'hash': '0xec1371153cd9ae2c57b3ff2b00630914298d1a3b80b8545c3a23ab6fcb07fdb9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.91616937504024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf00e10470d57d6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:59:39.000Z'}}, {'blockNum': '0x4b6260', 'uniqueId': '0xec1371153cd9ae2c57b3ff2b00630914298d1a3b80b8545c3a23ab6fcb07fdb9:log:71', 'hash': '0xec1371153cd9ae2c57b3ff2b00630914298d1a3b80b8545c3a23ab6fcb07fdb9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x67fb8cf736057fe611a2637b70321a52190d1d22', 'value': 14.91616937504024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf00e10470d57d6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:59:39.000Z'}}, {'blockNum': '0x4b626b', 'uniqueId': '0x438fe07a1ca3b0921613ea7a8bb1b12609d155390e81e2ef137684ea837dfa40:log:4', 'hash': '0x438fe07a1ca3b0921613ea7a8bb1b12609d155390e81e2ef137684ea837dfa40', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x400eee3d0f80f197b9cdf3dd788f53208be010d9', 'value': 51.29017366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02c7cb4d326065a000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:01:21.000Z'}}, {'blockNum': '0x4b626f', 'uniqueId': '0x4912c3e72bc9ab8b2a0f931cb8422ac4e5a1f0cc14ea51e8da9717bf34c97d27:log:62', 'hash': '0x4912c3e72bc9ab8b2a0f931cb8422ac4e5a1f0cc14ea51e8da9717bf34c97d27', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 152.27301933613032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x084136704f263c790e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:02:51.000Z'}}, {'blockNum': '0x4b626f', 'uniqueId': '0x4912c3e72bc9ab8b2a0f931cb8422ac4e5a1f0cc14ea51e8da9717bf34c97d27:log:64', 'hash': '0x4912c3e72bc9ab8b2a0f931cb8422ac4e5a1f0cc14ea51e8da9717bf34c97d27', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 152.27301933613032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x084136704f263c790e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:02:51.000Z'}}, {'blockNum': '0x4b627c', 'uniqueId': '0x10cd4b0e548c8404a85e124d1c8b287f91a4c894d7b922f8b140928d97fe941a:log:78', 'hash': '0x10cd4b0e548c8404a85e124d1c8b287f91a4c894d7b922f8b140928d97fe941a', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 757.0611360447597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x290a557426a193b9c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:05:53.000Z'}}, {'blockNum': '0x4b627c', 'uniqueId': '0x10cd4b0e548c8404a85e124d1c8b287f91a4c894d7b922f8b140928d97fe941a:log:80', 'hash': '0x10cd4b0e548c8404a85e124d1c8b287f91a4c894d7b922f8b140928d97fe941a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 757.0611360447597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x290a557426a193b9c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:05:53.000Z'}}, {'blockNum': '0x4b628b', 'uniqueId': '0xe81521fc52b9d263246d57a8cd4a993747c8ae5c1627fb3602b8f07b1d2a79f6:log:51', 'hash': '0xe81521fc52b9d263246d57a8cd4a993747c8ae5c1627fb3602b8f07b1d2a79f6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc46b7c69fbe5787dcaea6b0300dbe7898ed82f0e', 'value': 222.276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c0cb2fc54ceba0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:09:18.000Z'}}, {'blockNum': '0x4b629e', 'uniqueId': '0x506f8fd0cbd195c3e2087ac1fd34c2745044d2aefb40cdce1491ffa926928543:log:106', 'hash': '0x506f8fd0cbd195c3e2087ac1fd34c2745044d2aefb40cdce1491ffa926928543', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 43.756355315694634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x025f3dcd5419c104db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:14:00.000Z'}}, {'blockNum': '0x4b629e', 'uniqueId': '0x506f8fd0cbd195c3e2087ac1fd34c2745044d2aefb40cdce1491ffa926928543:log:108', 'hash': '0x506f8fd0cbd195c3e2087ac1fd34c2745044d2aefb40cdce1491ffa926928543', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 43.756355315694634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x025f3dcd5419c104db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:14:00.000Z'}}, {'blockNum': '0x4b62cc', 'uniqueId': '0x5ae8c318f56560fbc1facd219c5ee8ea0811aaa7c372fb01957435ca3a9ce2d1:log:47', 'hash': '0x5ae8c318f56560fbc1facd219c5ee8ea0811aaa7c372fb01957435ca3a9ce2d1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.917829571836224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf06c6f5211da3d7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:25:45.000Z'}}, {'blockNum': '0x4b62cc', 'uniqueId': '0x5ae8c318f56560fbc1facd219c5ee8ea0811aaa7c372fb01957435ca3a9ce2d1:log:50', 'hash': '0x5ae8c318f56560fbc1facd219c5ee8ea0811aaa7c372fb01957435ca3a9ce2d1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 14.917829571836224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf06c6f5211da3d7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:25:45.000Z'}}, {'blockNum': '0x4b62cc', 'uniqueId': '0x61def1ad762ce81c2d55225dcee9486a01f54f865276fc2494ded13ed842cbd6:log:67', 'hash': '0x61def1ad762ce81c2d55225dcee9486a01f54f865276fc2494ded13ed842cbd6', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 8.715908181029805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x78f5204fd133db1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:25:45.000Z'}}, {'blockNum': '0x4b62cc', 'uniqueId': '0x61def1ad762ce81c2d55225dcee9486a01f54f865276fc2494ded13ed842cbd6:log:69', 'hash': '0x61def1ad762ce81c2d55225dcee9486a01f54f865276fc2494ded13ed842cbd6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 8.715908181029805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x78f5204fd133db1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:25:45.000Z'}}, {'blockNum': '0x4b62d9', 'uniqueId': '0xede46de8348a7c6bf69a757a41a7c23f735dd7adbb196184126995351b9b9269:log:121', 'hash': '0xede46de8348a7c6bf69a757a41a7c23f735dd7adbb196184126995351b9b9269', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.917818596218996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf06bcf9ab5987a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:29:18.000Z'}}, {'blockNum': '0x4b62d9', 'uniqueId': '0xede46de8348a7c6bf69a757a41a7c23f735dd7adbb196184126995351b9b9269:log:124', 'hash': '0xede46de8348a7c6bf69a757a41a7c23f735dd7adbb196184126995351b9b9269', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 14.917818596218996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf06bcf9ab5987a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:29:18.000Z'}}, {'blockNum': '0x4b62e6', 'uniqueId': '0x30269ca21c0b6860ce70254a2aba5c55c13b53f5ecea71ef0000f3f0e6db9ee8:log:42', 'hash': '0x30269ca21c0b6860ce70254a2aba5c55c13b53f5ecea71ef0000f3f0e6db9ee8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 44.75329738778014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026d13a6dc6e0d63b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:32:06.000Z'}}, {'blockNum': '0x4b62e6', 'uniqueId': '0x30269ca21c0b6860ce70254a2aba5c55c13b53f5ecea71ef0000f3f0e6db9ee8:log:45', 'hash': '0x30269ca21c0b6860ce70254a2aba5c55c13b53f5ecea71ef0000f3f0e6db9ee8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 44.75329738778014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026d13a6dc6e0d63b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:32:06.000Z'}}, {'blockNum': '0x4b62e8', 'uniqueId': '0x61b66a247f426480c093d7352fcccabbbecef47bf1f514883a72012e35bd9f66:log:51', 'hash': '0x61b66a247f426480c093d7352fcccabbbecef47bf1f514883a72012e35bd9f66', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x467121105adc1c0e7a75a527aef4ce00b391755a', 'value': 14.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc45ee607b3c70000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:32:28.000Z'}}, {'blockNum': '0x4b62f4', 'uniqueId': '0x3276962e7a55092fb9ddc3215f95d7e7f7b1c1e86b8bf082370c66696a05509b:log:12', 'hash': '0x3276962e7a55092fb9ddc3215f95d7e7f7b1c1e86b8bf082370c66696a05509b', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x4c8a8b5b2826a611b541561e4430810732b26c51', 'value': 27.0884027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0177ed56bc323b7000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:36:38.000Z'}}, {'blockNum': '0x4b62f8', 'uniqueId': '0xab28887e17aadc06e2f7d69c0ff7c34f521a6300a322174e53d599fa1caadf3a:log:22', 'hash': '0xab28887e17aadc06e2f7d69c0ff7c34f521a6300a322174e53d599fa1caadf3a', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x4c8a8b5b2826a611b541561e4430810732b26c51', 'value': 3.56816222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3184a8a25811b800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:37:34.000Z'}}, {'blockNum': '0x4b62f9', 'uniqueId': '0x80700caa46fcd9fa80a128f69f8b47a061fe83247c5cfe1c8516348f48846f75:log:36', 'hash': '0x80700caa46fcd9fa80a128f69f8b47a061fe83247c5cfe1c8516348f48846f75', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1044.1761595569749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x389adaecd5ad16de45', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:37:46.000Z'}}, {'blockNum': '0x4b62f9', 'uniqueId': '0x80700caa46fcd9fa80a128f69f8b47a061fe83247c5cfe1c8516348f48846f75:log:39', 'hash': '0x80700caa46fcd9fa80a128f69f8b47a061fe83247c5cfe1c8516348f48846f75', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x38a3fc625df834dd34e8ede60e10cd3024a6650e', 'value': 1044.1761595569749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x389adaecd5ad16de45', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:37:46.000Z'}}, {'blockNum': '0x4b630e', 'uniqueId': '0xe79797a0571ac5634755fb716489ef352be45d0be2edd5eee9d75ffc97def86c:log:43', 'hash': '0xe79797a0571ac5634755fb716489ef352be45d0be2edd5eee9d75ffc97def86c', 'from': '0xab5ad302579aa47dabef238fd413786e4aa1d57e', 'to': '0xc01490b357765f8e1e26286eb78f70e443cde27f', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:41:42.000Z'}}, {'blockNum': '0x4b631b', 'uniqueId': '0x98df5c64f19d5d1e828d5908931b8c15f9bea9346d0c35837df8e37b7de72503:log:10', 'hash': '0x98df5c64f19d5d1e828d5908931b8c15f9bea9346d0c35837df8e37b7de72503', 'from': '0xab5ad302579aa47dabef238fd413786e4aa1d57e', 'to': '0xc106df34108e26ba071f96a73795cbdef6123edb', 'value': 0.69856984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09b1d1917c006000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:45:18.000Z'}}, {'blockNum': '0x4b6324', 'uniqueId': '0x88f7d3bc528627611a6804f0c684f746f1c3842c29b4660c00041676683f63ab:log:30', 'hash': '0x88f7d3bc528627611a6804f0c684f746f1c3842c29b4660c00041676683f63ab', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:47:45.000Z'}}, {'blockNum': '0x4b6324', 'uniqueId': '0x88f7d3bc528627611a6804f0c684f746f1c3842c29b4660c00041676683f63ab:log:33', 'hash': '0x88f7d3bc528627611a6804f0c684f746f1c3842c29b4660c00041676683f63ab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:47:45.000Z'}}, {'blockNum': '0x4b6324', 'uniqueId': '0x88f7d3bc528627611a6804f0c684f746f1c3842c29b4660c00041676683f63ab:log:34', 'hash': '0x88f7d3bc528627611a6804f0c684f746f1c3842c29b4660c00041676683f63ab', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:47:45.000Z'}}, {'blockNum': '0x4b6335', 'uniqueId': '0x277ff1661045ef8d5d99f63200afabe5ec5a30f269260899c6f135d76007474a:log:4', 'hash': '0x277ff1661045ef8d5d99f63200afabe5ec5a30f269260899c6f135d76007474a', 'from': '0xc01490b357765f8e1e26286eb78f70e443cde27f', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:52:57.000Z'}}, {'blockNum': '0x4b6335', 'uniqueId': '0xcf41fc63cbf1eca807c0969288d205493470aebfab344b6d12a34ea9535a56ee:log:5', 'hash': '0xcf41fc63cbf1eca807c0969288d205493470aebfab344b6d12a34ea9535a56ee', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xc6e0d645aa6ba9deb0d6139c5b4a4f77b9c14417', 'value': 7.6530535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6a351b9c528f5800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:52:57.000Z'}}, {'blockNum': '0x4b6335', 'uniqueId': '0xd5e2a88fddd076b971282e47d756f63d6a1969719991fa08fa65f11744e63d50:log:82', 'hash': '0xd5e2a88fddd076b971282e47d756f63d6a1969719991fa08fa65f11744e63d50', 'from': '0x38a3fc625df834dd34e8ede60e10cd3024a6650e', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 52.88791105240113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02ddf79ae3d6d3430d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:52:57.000Z'}}, {'blockNum': '0x4b6335', 'uniqueId': '0xd5e2a88fddd076b971282e47d756f63d6a1969719991fa08fa65f11744e63d50:log:84', 'hash': '0xd5e2a88fddd076b971282e47d756f63d6a1969719991fa08fa65f11744e63d50', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 52.88791105240113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02ddf79ae3d6d3430d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:52:57.000Z'}}, {'blockNum': '0x4b6337', 'uniqueId': '0xb4a0323b64e6a1997afa5d4633a913b1b525e7d2dc8ea282af5084e4b141d837:log:30', 'hash': '0xb4a0323b64e6a1997afa5d4633a913b1b525e7d2dc8ea282af5084e4b141d837', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:53:13.000Z'}}, {'blockNum': '0x4b6337', 'uniqueId': '0xb4a0323b64e6a1997afa5d4633a913b1b525e7d2dc8ea282af5084e4b141d837:log:33', 'hash': '0xb4a0323b64e6a1997afa5d4633a913b1b525e7d2dc8ea282af5084e4b141d837', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:53:13.000Z'}}, {'blockNum': '0x4b6337', 'uniqueId': '0xb4a0323b64e6a1997afa5d4633a913b1b525e7d2dc8ea282af5084e4b141d837:log:34', 'hash': '0xb4a0323b64e6a1997afa5d4633a913b1b525e7d2dc8ea282af5084e4b141d837', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:53:13.000Z'}}, {'blockNum': '0x4b633a', 'uniqueId': '0xfd7b799631b8a7137b8dba5336a071dec16a55720522282ee52abaa9eede49a5:log:81', 'hash': '0xfd7b799631b8a7137b8dba5336a071dec16a55720522282ee52abaa9eede49a5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.4053682610617235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d230317c15d45d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:53:48.000Z'}}, {'blockNum': '0x4b633a', 'uniqueId': '0xfd7b799631b8a7137b8dba5336a071dec16a55720522282ee52abaa9eede49a5:log:84', 'hash': '0xfd7b799631b8a7137b8dba5336a071dec16a55720522282ee52abaa9eede49a5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 4.4053682610617235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d230317c15d45d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:53:48.000Z'}}, {'blockNum': '0x4b633f', 'uniqueId': '0x83a05ed0a5cd2fe67ceb490657375cad7a60df3f3cfcf59f4b40fba32203a3a6:log:2', 'hash': '0x83a05ed0a5cd2fe67ceb490657375cad7a60df3f3cfcf59f4b40fba32203a3a6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc5669a244f943c05b36a7b9931c3dc24bacda860', 'value': 200.19882267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ada51188500c50c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:55:14.000Z'}}, {'blockNum': '0x4b6348', 'uniqueId': '0xdd225115108a3f012f3dcfcde01529eb50398ec59356e86d88b0db03f435b99d:log:30', 'hash': '0xdd225115108a3f012f3dcfcde01529eb50398ec59356e86d88b0db03f435b99d', 'from': '0xdf4e8138ba453ef80d1623db998b5bb130ece33b', 'to': '0x76110779be9c603aa2b6032bed095e19c840c143', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:56:24.000Z'}}, {'blockNum': '0x4b6352', 'uniqueId': '0xa9a52fa4dc6e972837139a1b0db1e62ce7800e3d62710a1bbadd8d8e4e01b9a9:log:67', 'hash': '0xa9a52fa4dc6e972837139a1b0db1e62ce7800e3d62710a1bbadd8d8e4e01b9a9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 15998.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x036347c9ca506eea0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:59:32.000Z'}}, {'blockNum': '0x4b6355', 'uniqueId': '0x68fca94dbb4d4f461ab1dea0f15c304eaf65ae68c97362b5975387845add8d35:log:15', 'hash': '0x68fca94dbb4d4f461ab1dea0f15c304eaf65ae68c97362b5975387845add8d35', 'from': '0xa10d5531ef4fbfff688e1f075e4e2efc315a5a89', 'to': '0xc46b7c69fbe5787dcaea6b0300dbe7898ed82f0e', 'value': 198.332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ac068cf3128c60000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:59:48.000Z'}}, {'blockNum': '0x4b6358', 'uniqueId': '0x59fddf4cc421a3be37e289fe7ac849408f42fe25945bca582328bde14e4c71ff:log:11', 'hash': '0x59fddf4cc421a3be37e289fe7ac849408f42fe25945bca582328bde14e4c71ff', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x19dfb110b6f6f5f6d7c40bb580b62b3816a660f8', 'value': 5.38599641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4abee732db944400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:00:24.000Z'}}, {'blockNum': '0x4b6361', 'uniqueId': '0x5d9ccd17a24065423b31c60cda15cbddfbdac906571e39beda82bc2bde7f939a:log:11', 'hash': '0x5d9ccd17a24065423b31c60cda15cbddfbdac906571e39beda82bc2bde7f939a', 'from': '0xc106df34108e26ba071f96a73795cbdef6123edb', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 0.69856984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09b1d1917c006000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:02:46.000Z'}}, {'blockNum': '0x4b636d', 'uniqueId': '0x8ce370bb9d7dd1ce2caaba16ac9d36cbba793797c8720b18001153f2729e4b34:log:63', 'hash': '0x8ce370bb9d7dd1ce2caaba16ac9d36cbba793797c8720b18001153f2729e4b34', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 42.24213039071717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x024a3a31c82e6dfe83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:05:41.000Z'}}, {'blockNum': '0x4b636d', 'uniqueId': '0x8ce370bb9d7dd1ce2caaba16ac9d36cbba793797c8720b18001153f2729e4b34:log:66', 'hash': '0x8ce370bb9d7dd1ce2caaba16ac9d36cbba793797c8720b18001153f2729e4b34', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 42.24213039071717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x024a3a31c82e6dfe83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:05:41.000Z'}}, {'blockNum': '0x4b6384', 'uniqueId': '0xd16471610b4c930853952ab1d1588e3d544f9741e3c902b77c1daaf5efe92e70:log:67', 'hash': '0xd16471610b4c930853952ab1d1588e3d544f9741e3c902b77c1daaf5efe92e70', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 321.7305683549426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1170e8975134e2f243', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:10:36.000Z'}}, {'blockNum': '0x4b6384', 'uniqueId': '0xd16471610b4c930853952ab1d1588e3d544f9741e3c902b77c1daaf5efe92e70:log:69', 'hash': '0xd16471610b4c930853952ab1d1588e3d544f9741e3c902b77c1daaf5efe92e70', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 321.7305683549426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1170e8975134e2f243', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:10:36.000Z'}}, {'blockNum': '0x4b6386', 'uniqueId': '0x72cdd9882fa6980b0895d710184cbd7c62e3bb9a2743a4ec5717cbca0f56d706:log:9', 'hash': '0x72cdd9882fa6980b0895d710184cbd7c62e3bb9a2743a4ec5717cbca0f56d706', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x89b21c097a7821d9c4b515c2bcddb149b3cb873d', 'value': 641.11075278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22c132f0e72f2e0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:11:22.000Z'}}, {'blockNum': '0x4b6388', 'uniqueId': '0x9f80b353aee14cc0dcdf83951aceae4bc712129d0dc38d43a51f0f54a422b2d2:log:44', 'hash': '0x9f80b353aee14cc0dcdf83951aceae4bc712129d0dc38d43a51f0f54a422b2d2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3.7317692214911875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33c9e855ceb7df94', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:11:52.000Z'}}, {'blockNum': '0x4b6388', 'uniqueId': '0x9f80b353aee14cc0dcdf83951aceae4bc712129d0dc38d43a51f0f54a422b2d2:log:47', 'hash': '0x9f80b353aee14cc0dcdf83951aceae4bc712129d0dc38d43a51f0f54a422b2d2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 3.7317692214911875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33c9e855ceb7df94', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:11:52.000Z'}}, {'blockNum': '0x4b638c', 'uniqueId': '0x058550c87292eebdfd5ef6caffb119c4d26bc748ecd27e5a3234abe53bacc78d:log:12', 'hash': '0x058550c87292eebdfd5ef6caffb119c4d26bc748ecd27e5a3234abe53bacc78d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2.686872816444858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2549b09744d95fb9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:12:43.000Z'}}, {'blockNum': '0x4b638c', 'uniqueId': '0x058550c87292eebdfd5ef6caffb119c4d26bc748ecd27e5a3234abe53bacc78d:log:15', 'hash': '0x058550c87292eebdfd5ef6caffb119c4d26bc748ecd27e5a3234abe53bacc78d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 2.686872816444858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2549b09744d95fb9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:12:43.000Z'}}, {'blockNum': '0x4b6395', 'uniqueId': '0x57e6caa9d148981648a21e46cc11868e0ad608f1c70f06b2ef28500c86062855:log:72', 'hash': '0x57e6caa9d148981648a21e46cc11868e0ad608f1c70f06b2ef28500c86062855', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:16:03.000Z'}}, {'blockNum': '0x4b6395', 'uniqueId': '0x57e6caa9d148981648a21e46cc11868e0ad608f1c70f06b2ef28500c86062855:log:75', 'hash': '0x57e6caa9d148981648a21e46cc11868e0ad608f1c70f06b2ef28500c86062855', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:16:03.000Z'}}, {'blockNum': '0x4b6395', 'uniqueId': '0x57e6caa9d148981648a21e46cc11868e0ad608f1c70f06b2ef28500c86062855:log:76', 'hash': '0x57e6caa9d148981648a21e46cc11868e0ad608f1c70f06b2ef28500c86062855', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:16:03.000Z'}}, {'blockNum': '0x4b63aa', 'uniqueId': '0xe0903868f33e2f47ba3e2b3e6cc750033b6583203f6e7be8875a2aa31989a377:log:47', 'hash': '0xe0903868f33e2f47ba3e2b3e6cc750033b6583203f6e7be8875a2aa31989a377', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:20:24.000Z'}}, {'blockNum': '0x4b63aa', 'uniqueId': '0xe0903868f33e2f47ba3e2b3e6cc750033b6583203f6e7be8875a2aa31989a377:log:50', 'hash': '0xe0903868f33e2f47ba3e2b3e6cc750033b6583203f6e7be8875a2aa31989a377', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:20:24.000Z'}}, {'blockNum': '0x4b63aa', 'uniqueId': '0xe0903868f33e2f47ba3e2b3e6cc750033b6583203f6e7be8875a2aa31989a377:log:51', 'hash': '0xe0903868f33e2f47ba3e2b3e6cc750033b6583203f6e7be8875a2aa31989a377', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:20:24.000Z'}}, {'blockNum': '0x4b63aa', 'uniqueId': '0x53ae1ceaee799556ca4fb07ef29557fca55974abd9c57293ea28431b6350dabd:log:66', 'hash': '0x53ae1ceaee799556ca4fb07ef29557fca55974abd9c57293ea28431b6350dabd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 297.47491333531786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10204b3196bdbbb2fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:20:24.000Z'}}, {'blockNum': '0x4b63aa', 'uniqueId': '0x53ae1ceaee799556ca4fb07ef29557fca55974abd9c57293ea28431b6350dabd:log:69', 'hash': '0x53ae1ceaee799556ca4fb07ef29557fca55974abd9c57293ea28431b6350dabd', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 297.47491333531786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10204b3196bdbbb2fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:20:24.000Z'}}, {'blockNum': '0x4b63b5', 'uniqueId': '0xd00403c579509f53c0cce7c7e12d25f9f92aa9e2b3589770dac763890f34ee05:log:57', 'hash': '0xd00403c579509f53c0cce7c7e12d25f9f92aa9e2b3589770dac763890f34ee05', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 41.833902105816406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02448fe051d9a7112c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:22:39.000Z'}}, {'blockNum': '0x4b63b5', 'uniqueId': '0xd00403c579509f53c0cce7c7e12d25f9f92aa9e2b3589770dac763890f34ee05:log:60', 'hash': '0xd00403c579509f53c0cce7c7e12d25f9f92aa9e2b3589770dac763890f34ee05', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 41.833902105816406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02448fe051d9a7112c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:22:39.000Z'}}, {'blockNum': '0x4b63c1', 'uniqueId': '0x6ab4127d702549cbf6bbce1eedda2ca5fdd9a08aece916adbc90e6e8d34a3480:log:54', 'hash': '0x6ab4127d702549cbf6bbce1eedda2ca5fdd9a08aece916adbc90e6e8d34a3480', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:24:10.000Z'}}, {'blockNum': '0x4b63c1', 'uniqueId': '0x6ab4127d702549cbf6bbce1eedda2ca5fdd9a08aece916adbc90e6e8d34a3480:log:57', 'hash': '0x6ab4127d702549cbf6bbce1eedda2ca5fdd9a08aece916adbc90e6e8d34a3480', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:24:10.000Z'}}, {'blockNum': '0x4b63c1', 'uniqueId': '0x6ab4127d702549cbf6bbce1eedda2ca5fdd9a08aece916adbc90e6e8d34a3480:log:58', 'hash': '0x6ab4127d702549cbf6bbce1eedda2ca5fdd9a08aece916adbc90e6e8d34a3480', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:24:10.000Z'}}, {'blockNum': '0x4b63cb', 'uniqueId': '0xdcf9c4d14939c6bfbe1621076848e2967fc4ede5f4af7a1c5297bb3b572f05bf:log:30', 'hash': '0xdcf9c4d14939c6bfbe1621076848e2967fc4ede5f4af7a1c5297bb3b572f05bf', 'from': '0x49ce81b3a8102460e0d81dd600a722436a6279de', 'to': '0xc11769b7dde1ffb20463f2064ddf75a617b2b1c5', 'value': 15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd02ab486cedc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:26:22.000Z'}}, {'blockNum': '0x4b63d1', 'uniqueId': '0x1701392696644499187ec4725308f55ae8f930e84dd164b8790b2a4bccb39397:log:51', 'hash': '0x1701392696644499187ec4725308f55ae8f930e84dd164b8790b2a4bccb39397', 'from': '0xeade8b32735f9c7871da862c18bf12caeaa4e6e9', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1198.9038506367372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x40fe221c16dab44873', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:28:24.000Z'}}, {'blockNum': '0x4b63d1', 'uniqueId': '0x1701392696644499187ec4725308f55ae8f930e84dd164b8790b2a4bccb39397:log:53', 'hash': '0x1701392696644499187ec4725308f55ae8f930e84dd164b8790b2a4bccb39397', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1198.9038506367372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x40fe221c16dab44873', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:28:24.000Z'}}, {'blockNum': '0x4b63f2', 'uniqueId': '0x907982de71c92bc60804b2ebe11d11c2fa07b470939487320af7fc7152086b62:log:1', 'hash': '0x907982de71c92bc60804b2ebe11d11c2fa07b470939487320af7fc7152086b62', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xdfc670dda0e6962661f38667f65daab9a1d701ac', 'value': 73.50816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03fc21720e9c940000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:35:05.000Z'}}, {'blockNum': '0x4b63f7', 'uniqueId': '0x5400e8fd27d7154e122440788250e9265c6919a0995c35efd029af7ff35d72f3:log:78', 'hash': '0x5400e8fd27d7154e122440788250e9265c6919a0995c35efd029af7ff35d72f3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 50.753316787625266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02c05800b73b460c45', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:36:06.000Z'}}, {'blockNum': '0x4b63f7', 'uniqueId': '0x5400e8fd27d7154e122440788250e9265c6919a0995c35efd029af7ff35d72f3:log:81', 'hash': '0x5400e8fd27d7154e122440788250e9265c6919a0995c35efd029af7ff35d72f3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xeade8b32735f9c7871da862c18bf12caeaa4e6e9', 'value': 50.753316787625266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02c05800b73b460c45', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:36:06.000Z'}}, {'blockNum': '0x4b63ff', 'uniqueId': '0x61c690ee2c9083b4362f73cf0ea15d53643658ab2fe38f7399b564b0276cdc3b:log:3', 'hash': '0x61c690ee2c9083b4362f73cf0ea15d53643658ab2fe38f7399b564b0276cdc3b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xfa44a846b04f17661d67b0e9dbae85bffdf306c9', 'value': 10.40172683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x905a5b70f0cccc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:37:00.000Z'}}, {'blockNum': '0x4b640c', 'uniqueId': '0x77bbe8e36a6f1e4dced099d1482c198b4afcadcf1803fa0c30a0135be2968d69:log:9', 'hash': '0x77bbe8e36a6f1e4dced099d1482c198b4afcadcf1803fa0c30a0135be2968d69', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0ae2b017fea73623942698084c6a5339ed204281', 'value': 2729.766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x93fb1d021472f70000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:39:26.000Z'}}, {'blockNum': '0x4b641f', 'uniqueId': '0xd8a9de28c81b47963cca25951b905e661c14ba45162bac3216a150c83cb4faa6:log:99', 'hash': '0xd8a9de28c81b47963cca25951b905e661c14ba45162bac3216a150c83cb4faa6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 28689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06133bdabb29dda40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:43:21.000Z'}}, {'blockNum': '0x4b6423', 'uniqueId': '0x267d1c55e4b8da0c981c349beab228540b78d9d59b88c7e0a43dd27220e688ce:log:73', 'hash': '0x267d1c55e4b8da0c981c349beab228540b78d9d59b88c7e0a43dd27220e688ce', 'from': '0xb408cc992d0572652638f0677aac1fc35cf03070', 'to': '0x4a3e34ce7e79c47638c9053a776127271a1fffe9', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:43:42.000Z'}}, {'blockNum': '0x4b642f', 'uniqueId': '0x9cc4788cbd58217bd3312fe530cc2ec5565901f2b252fc2f75cf07ede8786771:log:258', 'hash': '0x9cc4788cbd58217bd3312fe530cc2ec5565901f2b252fc2f75cf07ede8786771', 'from': '0xff79b6660b02b4625e4faef219f297cb58c878c6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.2293467493070036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032ecda742d5a2dd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:45:57.000Z'}}, {'blockNum': '0x4b642f', 'uniqueId': '0x9cc4788cbd58217bd3312fe530cc2ec5565901f2b252fc2f75cf07ede8786771:log:261', 'hash': '0x9cc4788cbd58217bd3312fe530cc2ec5565901f2b252fc2f75cf07ede8786771', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 0.2293467493070036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032ecda742d5a2dd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:45:57.000Z'}}, {'blockNum': '0x4b6439', 'uniqueId': '0x071a070a2a92567e9ad9be7535edc160d1026e3e7675a4cd4bc9fb09609b2d68:log:13', 'hash': '0x071a070a2a92567e9ad9be7535edc160d1026e3e7675a4cd4bc9fb09609b2d68', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x5b54f91e4f806fe8775f195481b9e1ca5ecee2f9', 'value': 2.75333926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2635d3781a6fd800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:48:54.000Z'}}, {'blockNum': '0x4b643d', 'uniqueId': '0xcb63fbd55f7f128dc463e50319de1288ce3e3632a358f6f4de8d7e3e233f67fa:log:16', 'hash': '0xcb63fbd55f7f128dc463e50319de1288ce3e3632a358f6f4de8d7e3e233f67fa', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x9223261860c402713fbb21caed072ba8dfc5260f', 'value': 1001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3643aa647986040000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:50:12.000Z'}}, {'blockNum': '0x4b6440', 'uniqueId': '0x23569c743273969778d7376abf54865d4d54e3720efb850f41a93ffa4a7bd635:log:38', 'hash': '0x23569c743273969778d7376abf54865d4d54e3720efb850f41a93ffa4a7bd635', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 747.3667492483279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2883cc12b8fd054210', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:51:32.000Z'}}, {'blockNum': '0x4b6440', 'uniqueId': '0x23569c743273969778d7376abf54865d4d54e3720efb850f41a93ffa4a7bd635:log:41', 'hash': '0x23569c743273969778d7376abf54865d4d54e3720efb850f41a93ffa4a7bd635', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf3ed5b15618494ddbd0a57b3bca8b2686ac0bc04', 'value': 747.3667492483279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2883cc12b8fd054210', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:51:32.000Z'}}, {'blockNum': '0x4b6455', 'uniqueId': '0x1657d0fb20b85e7f91b311310cc46733f1c20e19e3802bee8da02e49b54e64dc:log:32', 'hash': '0x1657d0fb20b85e7f91b311310cc46733f1c20e19e3802bee8da02e49b54e64dc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2241.70267471657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7985dfc19adc3343a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:55:50.000Z'}}, {'blockNum': '0x4b6455', 'uniqueId': '0x1657d0fb20b85e7f91b311310cc46733f1c20e19e3802bee8da02e49b54e64dc:log:34', 'hash': '0x1657d0fb20b85e7f91b311310cc46733f1c20e19e3802bee8da02e49b54e64dc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2241.70267471657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7985dfc19adc3343a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:55:50.000Z'}}, {'blockNum': '0x4b6455', 'uniqueId': '0xdc81d5388bc12202f427e89da59fd2f0173037be08c443d3749745855de3ac97:log:40', 'hash': '0xdc81d5388bc12202f427e89da59fd2f0173037be08c443d3749745855de3ac97', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 8.495068463467067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75e48bc23b93f864', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:55:50.000Z'}}, {'blockNum': '0x4b6455', 'uniqueId': '0xdc81d5388bc12202f427e89da59fd2f0173037be08c443d3749745855de3ac97:log:43', 'hash': '0xdc81d5388bc12202f427e89da59fd2f0173037be08c443d3749745855de3ac97', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 8.495068463467067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75e48bc23b93f864', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:55:50.000Z'}}, {'blockNum': '0x4b645a', 'uniqueId': '0x3ce5ad342831fdab366c0cf51c5d4e039c4ca5476cddaa0a48bf526cf359cae5:log:41', 'hash': '0x3ce5ad342831fdab366c0cf51c5d4e039c4ca5476cddaa0a48bf526cf359cae5', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 119.42095950808712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06794c79f407d7168c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:56:33.000Z'}}, {'blockNum': '0x4b645a', 'uniqueId': '0x3ce5ad342831fdab366c0cf51c5d4e039c4ca5476cddaa0a48bf526cf359cae5:log:43', 'hash': '0x3ce5ad342831fdab366c0cf51c5d4e039c4ca5476cddaa0a48bf526cf359cae5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 119.42095950808712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06794c79f407d7168c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:56:33.000Z'}}, {'blockNum': '0x4b645c', 'uniqueId': '0xb0b2c935da54db8f824aeebb6df16b87a8a435cf8e516d1566cb94493e77f5cd:log:28', 'hash': '0xb0b2c935da54db8f824aeebb6df16b87a8a435cf8e516d1566cb94493e77f5cd', 'from': '0x4e0002e5c82ce539309537b3151e2a80c7a58bd1', 'to': '0xdbc07b30e8f32484b8720654cfef7c922f448ab4', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015af1d78b58c40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:57:10.000Z'}}, {'blockNum': '0x4b646a', 'uniqueId': '0x1375eb6eef14f1a1f3a09e7caea84b93ec66991dfc048a39cfa8027a615cef11:log:37', 'hash': '0x1375eb6eef14f1a1f3a09e7caea84b93ec66991dfc048a39cfa8027a615cef11', 'from': '0x61a1a51451d6e641e6e1e774d75f09f48f56c02f', 'to': '0xba348ae2dacc7cef6c3359d87f29260029f59a4c', 'value': 447.74541512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1845b742cb756a2000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:01:47.000Z'}}, {'blockNum': '0x4b6472', 'uniqueId': '0xf36878247e12c192c9b875df2eea4a93fc60d9ec0dd67a60a7153eb96b3cd35d:log:40', 'hash': '0xf36878247e12c192c9b875df2eea4a93fc60d9ec0dd67a60a7153eb96b3cd35d', 'from': '0x38a3fc625df834dd34e8ede60e10cd3024a6650e', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 169.58341480742612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0931715146a25a2e77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:03:44.000Z'}}, {'blockNum': '0x4b6472', 'uniqueId': '0xf36878247e12c192c9b875df2eea4a93fc60d9ec0dd67a60a7153eb96b3cd35d:log:42', 'hash': '0xf36878247e12c192c9b875df2eea4a93fc60d9ec0dd67a60a7153eb96b3cd35d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 169.58341480742612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0931715146a25a2e77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:03:44.000Z'}}, {'blockNum': '0x4b647d', 'uniqueId': '0x08ba07e732c3a2b679e29788979779a5f1ad383ce3442d85f408939d66445f15:log:77', 'hash': '0x08ba07e732c3a2b679e29788979779a5f1ad383ce3442d85f408939d66445f15', 'from': '0x1a305c9204184e858474e3b90105daa3f377a6ed', 'to': '0x8da657b039735b495e16a1c5c40b87837131592d', 'value': 27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0176b344f2a78c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:06:05.000Z'}}, {'blockNum': '0x4b648d', 'uniqueId': '0x811f1e0083948e000b34a60301f43c95d5446eff6d07cb902537fce5ebc05fff:log:3', 'hash': '0x811f1e0083948e000b34a60301f43c95d5446eff6d07cb902537fce5ebc05fff', 'from': '0xe5a191d687753bc29d510e1e0719847e934791cb', 'to': '0x08254c92a181e0249ae22317c9715581a5af403e', 'value': 200.6639307706807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ae0c57ddf74002ffd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:09:00.000Z'}}, {'blockNum': '0x4b6491', 'uniqueId': '0xeab19a3e447ab3d56a1b8af65e9f79948598f71c9a1439bcca3766503f267d60:log:19', 'hash': '0xeab19a3e447ab3d56a1b8af65e9f79948598f71c9a1439bcca3766503f267d60', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x5b54f91e4f806fe8775f195481b9e1ca5ecee2f9', 'value': 6.86432026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5f42f6e861d12800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:11:35.000Z'}}, {'blockNum': '0x4b6494', 'uniqueId': '0x03919bf97ed68d1716e82a386c95b53935a10dd3f95cb66ef1815a8d644a3f43:log:32', 'hash': '0x03919bf97ed68d1716e82a386c95b53935a10dd3f95cb66ef1815a8d644a3f43', 'from': '0x95c891f82bed97e307e333820b899e02a992ce99', 'to': '0x893edd2b8293053ab6abbe5dca14bcd9a06333e4', 'value': 4996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010ed56d8a0ebb900000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:12:09.000Z'}}, {'blockNum': '0x4b649d', 'uniqueId': '0x2cb0fea486262dccc14d3014ae623d61e5f5dc75e2987c541ab184b3219c2dc4:log:15', 'hash': '0x2cb0fea486262dccc14d3014ae623d61e5f5dc75e2987c541ab184b3219c2dc4', 'from': '0x95c891f82bed97e307e333820b899e02a992ce99', 'to': '0x950a53330fa298b0d6ce05c31c4f696d026bed06', 'value': 4996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010ed56d8a0ebb900000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:14:56.000Z'}}, {'blockNum': '0x4b64a4', 'uniqueId': '0x0bbffeb81528f256e76d4a08aa05dbd1f1330cc0df77d5b08dc3e8f4c5bf8f12:log:13', 'hash': '0x0bbffeb81528f256e76d4a08aa05dbd1f1330cc0df77d5b08dc3e8f4c5bf8f12', 'from': '0xba348ae2dacc7cef6c3359d87f29260029f59a4c', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 447.74541512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1845b742cb756a2000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:16:44.000Z'}}, {'blockNum': '0x4b64ab', 'uniqueId': '0x333f9338b14cdfa2b9002ee2e8f68f03253c23ffc488dcacebeac77f043645ca:log:13', 'hash': '0x333f9338b14cdfa2b9002ee2e8f68f03253c23ffc488dcacebeac77f043645ca', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xdc113710349087b9ed228091a25630f129841317', 'value': 40, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022b1c8c1227a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:18:02.000Z'}}, {'blockNum': '0x4b64b6', 'uniqueId': '0x9dfc6c1a00eb6f46a70a6aa4f3d3bcbbe4e169b250d94d303b60efdcff281692:log:40', 'hash': '0x9dfc6c1a00eb6f46a70a6aa4f3d3bcbbe4e169b250d94d303b60efdcff281692', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 177.9799969143895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09a5f7f837174de36d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:20:12.000Z'}}, {'blockNum': '0x4b64b6', 'uniqueId': '0x9dfc6c1a00eb6f46a70a6aa4f3d3bcbbe4e169b250d94d303b60efdcff281692:log:42', 'hash': '0x9dfc6c1a00eb6f46a70a6aa4f3d3bcbbe4e169b250d94d303b60efdcff281692', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 177.9799969143895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09a5f7f837174de36d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:20:12.000Z'}}, {'blockNum': '0x4b64bf', 'uniqueId': '0x32c79fd36ffbbd75c72c3714120c494fc944c1f76beae267953b4ea3406878b6:log:27', 'hash': '0x32c79fd36ffbbd75c72c3714120c494fc944c1f76beae267953b4ea3406878b6', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xa3bae6ed5a1c43b51c4d741d722742b83b93a086', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01158e460913d00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:22:31.000Z'}}, {'blockNum': '0x4b64d5', 'uniqueId': '0xda8c88fcde5ccb510855518081f846c7f796a5db70fdee6154d1fe202da61133:log:13', 'hash': '0xda8c88fcde5ccb510855518081f846c7f796a5db70fdee6154d1fe202da61133', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x93b75fa013711808b227c963caf1e60d537a2b78', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:27:45.000Z'}}, {'blockNum': '0x4b64e1', 'uniqueId': '0x3588265971f70b6f5d028454bd12d37f1699d1693cbbf7257c0c69ae47515b44:log:36', 'hash': '0x3588265971f70b6f5d028454bd12d37f1699d1693cbbf7257c0c69ae47515b44', 'from': '0x08254c92a181e0249ae22317c9715581a5af403e', 'to': '0x5eea162fee75a7635b80aa72c43ac7f9633cc8b4', 'value': 200.6639307706807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ae0c57ddf74002ffd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:30:25.000Z'}}, {'blockNum': '0x4b64e6', 'uniqueId': '0xf25f9b71221e4862775ca5ba928a4dfb6ae2de4a58121ef4367dadcd20f862cd:log:12', 'hash': '0xf25f9b71221e4862775ca5ba928a4dfb6ae2de4a58121ef4367dadcd20f862cd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1494.2185400240462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x510072a57158132065', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:31:35.000Z'}}, {'blockNum': '0x4b64e6', 'uniqueId': '0xf25f9b71221e4862775ca5ba928a4dfb6ae2de4a58121ef4367dadcd20f862cd:log:14', 'hash': '0xf25f9b71221e4862775ca5ba928a4dfb6ae2de4a58121ef4367dadcd20f862cd', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 1494.2185400240462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x510072a57158132065', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:31:35.000Z'}}, {'blockNum': '0x4b64e9', 'uniqueId': '0x4122af512c5849a4fa32c8ae6e88fdc1c6d6fc6e32cc348e1bfeb67c08462de7:log:33', 'hash': '0x4122af512c5849a4fa32c8ae6e88fdc1c6d6fc6e32cc348e1bfeb67c08462de7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 11.504455051794272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9fa808ea98a55265', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:32:14.000Z'}}, {'blockNum': '0x4b64e9', 'uniqueId': '0x4122af512c5849a4fa32c8ae6e88fdc1c6d6fc6e32cc348e1bfeb67c08462de7:log:36', 'hash': '0x4122af512c5849a4fa32c8ae6e88fdc1c6d6fc6e32cc348e1bfeb67c08462de7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 11.504455051794272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9fa808ea98a55265', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:32:14.000Z'}}, {'blockNum': '0x4b64f4', 'uniqueId': '0xd55b7e6faf72e93690cc531e0572456b6bfb188018fca07cb38b71eddcd26cdc:log:49', 'hash': '0xd55b7e6faf72e93690cc531e0572456b6bfb188018fca07cb38b71eddcd26cdc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1.9999999999999998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec7ff77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:34:26.000Z'}}, {'blockNum': '0x4b64f4', 'uniqueId': '0xd55b7e6faf72e93690cc531e0572456b6bfb188018fca07cb38b71eddcd26cdc:log:51', 'hash': '0xd55b7e6faf72e93690cc531e0572456b6bfb188018fca07cb38b71eddcd26cdc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x20db35d984ea19427035dcdfdac2c8a4a0e8f001', 'value': 1.9999999999999998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec7ff77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:34:26.000Z'}}, {'blockNum': '0x4b64f7', 'uniqueId': '0x7dd8eb2c57b0d4d3689069fde06a62001576a2cdfa5c057f2406376db5b274de:log:79', 'hash': '0x7dd8eb2c57b0d4d3689069fde06a62001576a2cdfa5c057f2406376db5b274de', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 57.342009365727556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031bc7bdb50750397d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:35:08.000Z'}}, {'blockNum': '0x4b64f7', 'uniqueId': '0x7dd8eb2c57b0d4d3689069fde06a62001576a2cdfa5c057f2406376db5b274de:log:81', 'hash': '0x7dd8eb2c57b0d4d3689069fde06a62001576a2cdfa5c057f2406376db5b274de', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 57.342009365727556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031bc7bdb50750397d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:35:08.000Z'}}, {'blockNum': '0x4b64fe', 'uniqueId': '0x4543c1f2afe7558c712e6d64e9424847fb02a84f35d8c91822fc3a6c87880060:log:22', 'hash': '0x4543c1f2afe7558c712e6d64e9424847fb02a84f35d8c91822fc3a6c87880060', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 74.70436205395367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040cbb357cc6145cb3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:36:06.000Z'}}, {'blockNum': '0x4b64fe', 'uniqueId': '0x4543c1f2afe7558c712e6d64e9424847fb02a84f35d8c91822fc3a6c87880060:log:24', 'hash': '0x4543c1f2afe7558c712e6d64e9424847fb02a84f35d8c91822fc3a6c87880060', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0a790ab519b15fb06dbb7b71ab6137890135510a', 'value': 74.70436205395367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040cbb357cc6145cb3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:36:06.000Z'}}, {'blockNum': '0x4b6502', 'uniqueId': '0x60a30a9de1bb18f24c20638e4b6195e6012e8ab8ac4a3bdd0e58451d373ab809:log:21', 'hash': '0x60a30a9de1bb18f24c20638e4b6195e6012e8ab8ac4a3bdd0e58451d373ab809', 'from': '0x5eea162fee75a7635b80aa72c43ac7f9633cc8b4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 200.66393077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ae0c57ddf4b6d3400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:37:10.000Z'}}, {'blockNum': '0x4b650d', 'uniqueId': '0xf8392e8d1ca0e5416c4fb9b287b5748e70c7a08f60a922fcc8054d1d6bdaad11:log:13', 'hash': '0xf8392e8d1ca0e5416c4fb9b287b5748e70c7a08f60a922fcc8054d1d6bdaad11', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x0b1e1e650ba4af35091cf9295bf0cbc6ebcd471f', 'value': 2.7194736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25bd82d4b00d8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:39:42.000Z'}}, {'blockNum': '0x4b651b', 'uniqueId': '0x046a5a082add1388e7321733e64f7119621cac1a80b16820ebce8d3b868724b8:log:60', 'hash': '0x046a5a082add1388e7321733e64f7119621cac1a80b16820ebce8d3b868724b8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.462514438057567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3dee093ced79211e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:43:09.000Z'}}, {'blockNum': '0x4b651b', 'uniqueId': '0x046a5a082add1388e7321733e64f7119621cac1a80b16820ebce8d3b868724b8:log:63', 'hash': '0x046a5a082add1388e7321733e64f7119621cac1a80b16820ebce8d3b868724b8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 4.462514438057567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3dee093ced79211e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:43:09.000Z'}}, {'blockNum': '0x4b651e', 'uniqueId': '0xc529c1f5024ac1df5e6338f513f4c5c5dcb4ca71b7d4a1e0bf2a96b83cf8fc29:log:54', 'hash': '0xc529c1f5024ac1df5e6338f513f4c5c5dcb4ca71b7d4a1e0bf2a96b83cf8fc29', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 62.37591905387519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0361a3c7e5d0c00e82', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:44:00.000Z'}}, {'blockNum': '0x4b651e', 'uniqueId': '0xc529c1f5024ac1df5e6338f513f4c5c5dcb4ca71b7d4a1e0bf2a96b83cf8fc29:log:57', 'hash': '0xc529c1f5024ac1df5e6338f513f4c5c5dcb4ca71b7d4a1e0bf2a96b83cf8fc29', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 62.37591905387519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0361a3c7e5d0c00e82', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:44:00.000Z'}}, {'blockNum': '0x4b6528', 'uniqueId': '0x6eb034698d19b3c7ea9eecafd90d528c9ece40acfc1d45e5b43b1ecda55eba74:log:14', 'hash': '0x6eb034698d19b3c7ea9eecafd90d528c9ece40acfc1d45e5b43b1ecda55eba74', 'from': '0x1954cc7945f653d27da5f95b448ea543a7cb68f1', 'to': '0xbda67d64bcca85609ce66386951b8be1dd2b5502', 'value': 74.29523498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04070db294cf136800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:46:40.000Z'}}, {'blockNum': '0x4b652b', 'uniqueId': '0xc96a1ac684a617e265e21c3348529dd69c2d9f475e2b640bffa9d34326d1bd34:log:44', 'hash': '0xc96a1ac684a617e265e21c3348529dd69c2d9f475e2b640bffa9d34326d1bd34', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 364.97302865200186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13c904abd95908b82d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:47:16.000Z'}}, {'blockNum': '0x4b652b', 'uniqueId': '0xc96a1ac684a617e265e21c3348529dd69c2d9f475e2b640bffa9d34326d1bd34:log:46', 'hash': '0xc96a1ac684a617e265e21c3348529dd69c2d9f475e2b640bffa9d34326d1bd34', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 364.97302865200186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13c904abd95908b82d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:47:16.000Z'}}, {'blockNum': '0x4b653e', 'uniqueId': '0xd98161e431b8b885a96da79d56f22ebafed7310941cb91724a50ae65983cd91f:log:11', 'hash': '0xd98161e431b8b885a96da79d56f22ebafed7310941cb91724a50ae65983cd91f', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x7c9cc661be3b7682d6dc76e5c48fcbaaac35c28d', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015af1d78b58c40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:50:38.000Z'}}, {'blockNum': '0x4b653e', 'uniqueId': '0x293290a2e118a24a132fdb19309008b403b9d07454eb0373b6ecff8d0dcc2073:log:75', 'hash': '0x293290a2e118a24a132fdb19309008b403b9d07454eb0373b6ecff8d0dcc2073', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 8.993536738661142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7ccf760396528e17', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:50:38.000Z'}}, {'blockNum': '0x4b653e', 'uniqueId': '0x293290a2e118a24a132fdb19309008b403b9d07454eb0373b6ecff8d0dcc2073:log:78', 'hash': '0x293290a2e118a24a132fdb19309008b403b9d07454eb0373b6ecff8d0dcc2073', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xec64bd6efff779637f10b58109ff74e4f4212918', 'value': 8.993536738661142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7ccf760396528e17', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:50:38.000Z'}}, {'blockNum': '0x4b654b', 'uniqueId': '0x315e1cb440ea8a1a8e53bcccbb0181993c009a0f6a167dd127c3c2665091c475:log:66', 'hash': '0x315e1cb440ea8a1a8e53bcccbb0181993c009a0f6a167dd127c3c2665091c475', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 25.445027467682227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01611ee5ab1741a73c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:53:18.000Z'}}, {'blockNum': '0x4b654b', 'uniqueId': '0x315e1cb440ea8a1a8e53bcccbb0181993c009a0f6a167dd127c3c2665091c475:log:69', 'hash': '0x315e1cb440ea8a1a8e53bcccbb0181993c009a0f6a167dd127c3c2665091c475', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x25d4aef414ea092fbcbd83fd30e89e15cf820d0a', 'value': 25.445027467682227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01611ee5ab1741a73c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:53:18.000Z'}}, {'blockNum': '0x4b655b', 'uniqueId': '0x3a3cb05bd6a2cc73919d393380ed3bafcdc0d18b95a9b4d9491eb5ed530b5f29:log:62', 'hash': '0x3a3cb05bd6a2cc73919d393380ed3bafcdc0d18b95a9b4d9491eb5ed530b5f29', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.94126042442978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf5a05319ebd3a4e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:56:25.000Z'}}, {'blockNum': '0x4b655b', 'uniqueId': '0x3a3cb05bd6a2cc73919d393380ed3bafcdc0d18b95a9b4d9491eb5ed530b5f29:log:65', 'hash': '0x3a3cb05bd6a2cc73919d393380ed3bafcdc0d18b95a9b4d9491eb5ed530b5f29', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff79b6660b02b4625e4faef219f297cb58c878c6', 'value': 14.94126042442978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf5a05319ebd3a4e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:56:25.000Z'}}, {'blockNum': '0x4b6560', 'uniqueId': '0xf0a500471aedd0b32796c87245758a9d95ed503b194e0c3dbcc176b27fdc923f:log:71', 'hash': '0xf0a500471aedd0b32796c87245758a9d95ed503b194e0c3dbcc176b27fdc923f', 'from': '0x7efded0e74bcacab1cd7008b129ee3c744809ecb', 'to': '0x00e1c55efd0bbb953b8d14feb54dde5d918ce0ed', 'value': 325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x119e47f21381f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:57:04.000Z'}}, {'blockNum': '0x4b656a', 'uniqueId': '0x0583eef8b5c786d129cefd0b6708908978f62c584e18852ab3c4afb242b6bb63:log:51', 'hash': '0x0583eef8b5c786d129cefd0b6708908978f62c584e18852ab3c4afb242b6bb63', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1495.6810747623656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5114be9d09d5433fe3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:00:38.000Z'}}, {'blockNum': '0x4b656a', 'uniqueId': '0x0583eef8b5c786d129cefd0b6708908978f62c584e18852ab3c4afb242b6bb63:log:54', 'hash': '0x0583eef8b5c786d129cefd0b6708908978f62c584e18852ab3c4afb242b6bb63', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1495.6810747623656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5114be9d09d5433fe3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:00:38.000Z'}}, {'blockNum': '0x4b656a', 'uniqueId': '0x2a7b4abbbba7b62a89fd9452066e913531f7967b51ce6c224da7d1d01151d8ec:log:68', 'hash': '0x2a7b4abbbba7b62a89fd9452066e913531f7967b51ce6c224da7d1d01151d8ec', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 35.90321851112539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01f241db0330dba4be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:00:38.000Z'}}, {'blockNum': '0x4b656a', 'uniqueId': '0x2a7b4abbbba7b62a89fd9452066e913531f7967b51ce6c224da7d1d01151d8ec:log:71', 'hash': '0x2a7b4abbbba7b62a89fd9452066e913531f7967b51ce6c224da7d1d01151d8ec', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 35.90321851112539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01f241db0330dba4be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:00:38.000Z'}}, {'blockNum': '0x4b656c', 'uniqueId': '0x63c61cccad9b78448a0147b20ccb8037e0f4b7997a39a3e5fa01f9425f09b258:log:4', 'hash': '0x63c61cccad9b78448a0147b20ccb8037e0f4b7997a39a3e5fa01f9425f09b258', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8104d0be75ad95ec81a8003c43cbfc8cbecef633', 'value': 8.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75f610f70ed20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:01:25.000Z'}}, {'blockNum': '0x4b6572', 'uniqueId': '0xa0c56916a4e9aa82deae7965dc597012eb98d412e95e61f58aa17254c225df3e:log:21', 'hash': '0xa0c56916a4e9aa82deae7965dc597012eb98d412e95e61f58aa17254c225df3e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 29.877011563436042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019ea077b8c4d7e7bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:02:20.000Z'}}, {'blockNum': '0x4b6572', 'uniqueId': '0xa0c56916a4e9aa82deae7965dc597012eb98d412e95e61f58aa17254c225df3e:log:24', 'hash': '0xa0c56916a4e9aa82deae7965dc597012eb98d412e95e61f58aa17254c225df3e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'value': 29.877011563436042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019ea077b8c4d7e7bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:02:20.000Z'}}, {'blockNum': '0x4b6578', 'uniqueId': '0x9aa1e8958c2eb88eaeabb7dfa7036d23b1d2af1ff64362a7a79c30ac2e4f55dc:log:15', 'hash': '0x9aa1e8958c2eb88eaeabb7dfa7036d23b1d2af1ff64362a7a79c30ac2e4f55dc', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 43.429897287696946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x025ab5fd7b50e08f06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:04:12.000Z'}}, {'blockNum': '0x4b6578', 'uniqueId': '0x9aa1e8958c2eb88eaeabb7dfa7036d23b1d2af1ff64362a7a79c30ac2e4f55dc:log:17', 'hash': '0x9aa1e8958c2eb88eaeabb7dfa7036d23b1d2af1ff64362a7a79c30ac2e4f55dc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 43.429897287696946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x025ab5fd7b50e08f06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:04:12.000Z'}}, {'blockNum': '0x4b6588', 'uniqueId': '0x71923066636ed57fff910cf94d9f38dd7bc54a23db01a2b819440c49396ff530:log:63', 'hash': '0x71923066636ed57fff910cf94d9f38dd7bc54a23db01a2b819440c49396ff530', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 8.570990814334909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x76f246bc0d917cfc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:08:51.000Z'}}, {'blockNum': '0x4b6588', 'uniqueId': '0x71923066636ed57fff910cf94d9f38dd7bc54a23db01a2b819440c49396ff530:log:66', 'hash': '0x71923066636ed57fff910cf94d9f38dd7bc54a23db01a2b819440c49396ff530', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 8.570990814334909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x76f246bc0d917cfc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:08:51.000Z'}}, {'blockNum': '0x4b6589', 'uniqueId': '0x0cbb3cc9cec9c114032c8ac1e653c058ccc819ac676491b344205da1fdc838f9:log:40', 'hash': '0x0cbb3cc9cec9c114032c8ac1e653c058ccc819ac676491b344205da1fdc838f9', 'from': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1092.7485596006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3b3ceec153a5883742', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:09:01.000Z'}}, {'blockNum': '0x4b6589', 'uniqueId': '0x0cbb3cc9cec9c114032c8ac1e653c058ccc819ac676491b344205da1fdc838f9:log:42', 'hash': '0x0cbb3cc9cec9c114032c8ac1e653c058ccc819ac676491b344205da1fdc838f9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1092.7485596006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3b3ceec153a5883742', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:09:01.000Z'}}, {'blockNum': '0x4b6594', 'uniqueId': '0xb29e61960e11c3171e0dde65fefddce3afd7e84272a445da8303bfcd11bb7bf6:log:70', 'hash': '0xb29e61960e11c3171e0dde65fefddce3afd7e84272a445da8303bfcd11bb7bf6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 141.93334650274255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07b1b88aa62e66be75', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:10:53.000Z'}}, {'blockNum': '0x4b6594', 'uniqueId': '0xb29e61960e11c3171e0dde65fefddce3afd7e84272a445da8303bfcd11bb7bf6:log:73', 'hash': '0xb29e61960e11c3171e0dde65fefddce3afd7e84272a445da8303bfcd11bb7bf6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 141.93334650274255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07b1b88aa62e66be75', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:10:53.000Z'}}, {'blockNum': '0x4b6596', 'uniqueId': '0xc2000b87e52d1686d362c65b20470e1c64ab83f936e5ed031f78ef0e9662f7fa:log:20', 'hash': '0xc2000b87e52d1686d362c65b20470e1c64ab83f936e5ed031f78ef0e9662f7fa', 'from': '0x561382c1a2a73014f275e50c653369c5e48ff0ae', 'to': '0x63d2a938242228fe27e447de4ad24f30d6d50654', 'value': 15.719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xda251b37985d8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:11:10.000Z'}}, {'blockNum': '0x4b65a9', 'uniqueId': '0xb5add4ab9de6cc199203b22aeb4f388088a70c58afc780cb0f2fd0ca39c05eb6:log:29', 'hash': '0xb5add4ab9de6cc199203b22aeb4f388088a70c58afc780cb0f2fd0ca39c05eb6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.766983873351887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4227ba938527a525', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:15:13.000Z'}}, {'blockNum': '0x4b65a9', 'uniqueId': '0xb5add4ab9de6cc199203b22aeb4f388088a70c58afc780cb0f2fd0ca39c05eb6:log:32', 'hash': '0xb5add4ab9de6cc199203b22aeb4f388088a70c58afc780cb0f2fd0ca39c05eb6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xec64bd6efff779637f10b58109ff74e4f4212918', 'value': 4.766983873351887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4227ba938527a525', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:15:13.000Z'}}, {'blockNum': '0x4b65ac', 'uniqueId': '0x8e6a6ba0a03532d15abaed68425085c16e0dab237212c2be17a88448f0e94fb4:log:5', 'hash': '0x8e6a6ba0a03532d15abaed68425085c16e0dab237212c2be17a88448f0e94fb4', 'from': '0x1dc1f9f0bc45883a4dc40a2fd71749bbbb2ff92b', 'to': '0x5ceac136540020fe8190ae07ad88da40d0a32bbb', 'value': 426.38459017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x171d465dad5f5d0400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:15:37.000Z'}}, {'blockNum': '0x4b65ac', 'uniqueId': '0x60633646b03ec0c83958164e66f34c2aa8c47f6d2e423e57e5d8baaf012ee05a:log:6', 'hash': '0x60633646b03ec0c83958164e66f34c2aa8c47f6d2e423e57e5d8baaf012ee05a', 'from': '0x5b54f91e4f806fe8775f195481b9e1ca5ecee2f9', 'to': '0x512e2d8e36a62538ca8af3653253c44ec4899c73', 'value': 9.61765952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8578ca607c410000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:15:37.000Z'}}, {'blockNum': '0x4b65b0', 'uniqueId': '0xab32328b35b4968dfd1c206ce7855c28cb96128aba6c3f2bec5e93d6ddc13c9a:log:38', 'hash': '0xab32328b35b4968dfd1c206ce7855c28cb96128aba6c3f2bec5e93d6ddc13c9a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x605111d89a1199c75b309759f6eead8b07037ebc', 'value': 32.87559, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01c83d8eec33626000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:16:46.000Z'}}, {'blockNum': '0x4b65b4', 'uniqueId': '0xdfcd4d2c220c2889b80fa098b30c7ab72e67e165eb83375013ace6c6faccccfb:log:27', 'hash': '0xdfcd4d2c220c2889b80fa098b30c7ab72e67e165eb83375013ace6c6faccccfb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3.5109505016369233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30b966e1220c6065', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:17:25.000Z'}}, {'blockNum': '0x4b65b4', 'uniqueId': '0xdfcd4d2c220c2889b80fa098b30c7ab72e67e165eb83375013ace6c6faccccfb:log:30', 'hash': '0xdfcd4d2c220c2889b80fa098b30c7ab72e67e165eb83375013ace6c6faccccfb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 3.5109505016369233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30b966e1220c6065', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:17:25.000Z'}}, {'blockNum': '0x4b65b4', 'uniqueId': '0xe67e8d6a7603dc80d32bc893250134eaef5e61ed3fa88c53ab292ffc1357769c:log:47', 'hash': '0xe67e8d6a7603dc80d32bc893250134eaef5e61ed3fa88c53ab292ffc1357769c', 'from': '0xf3ed5b15618494ddbd0a57b3bca8b2686ac0bc04', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 805.1304088185715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ba56dd10e87fcec77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:17:25.000Z'}}, {'blockNum': '0x4b65b4', 'uniqueId': '0xe67e8d6a7603dc80d32bc893250134eaef5e61ed3fa88c53ab292ffc1357769c:log:49', 'hash': '0xe67e8d6a7603dc80d32bc893250134eaef5e61ed3fa88c53ab292ffc1357769c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 805.1304088185715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ba56dd10e87fcec77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:17:25.000Z'}}, {'blockNum': '0x4b65d1', 'uniqueId': '0xeecd59b43df841f01b9eb943d59067f955968720279684ae3cfdbb7743d8a36d:log:79', 'hash': '0xeecd59b43df841f01b9eb943d59067f955968720279684ae3cfdbb7743d8a36d', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 265.64013286071156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e667f556a4248cf5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:22:54.000Z'}}, {'blockNum': '0x4b65d1', 'uniqueId': '0xeecd59b43df841f01b9eb943d59067f955968720279684ae3cfdbb7743d8a36d:log:81', 'hash': '0xeecd59b43df841f01b9eb943d59067f955968720279684ae3cfdbb7743d8a36d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 265.64013286071156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e667f556a4248cf5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:22:54.000Z'}}, {'blockNum': '0x4b65d3', 'uniqueId': '0x4d1a6947291c6fb2615d21ff7e667f7d44e63eefd66627bb3a9ccdebab8dd31a:log:0', 'hash': '0x4d1a6947291c6fb2615d21ff7e667f7d44e63eefd66627bb3a9ccdebab8dd31a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8b8ae20b2851557cb4167d06b41b3691aa7e8ddd', 'value': 230.268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c7b9c45fce3a60000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:23:19.000Z'}}, {'blockNum': '0x4b65d7', 'uniqueId': '0x6b8d5f2b94174b1e03438245a6438a561691b13af1b2e2248fab4a855e19e7d9:log:39', 'hash': '0x6b8d5f2b94174b1e03438245a6438a561691b13af1b2e2248fab4a855e19e7d9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1.494210871580035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14bc80defc0e0844', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:24:48.000Z'}}, {'blockNum': '0x4b65d7', 'uniqueId': '0x6b8d5f2b94174b1e03438245a6438a561691b13af1b2e2248fab4a855e19e7d9:log:42', 'hash': '0x6b8d5f2b94174b1e03438245a6438a561691b13af1b2e2248fab4a855e19e7d9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb018af916ed0116404537d1238b18988d652733a', 'value': 1.494210871580035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14bc80defc0e0844', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:24:48.000Z'}}, {'blockNum': '0x4b65e0', 'uniqueId': '0x018ddbbf187d2427bcd6eb0351f33129f43cfd1248bbffbbdc21f59b64dc7e30:log:22', 'hash': '0x018ddbbf187d2427bcd6eb0351f33129f43cfd1248bbffbbdc21f59b64dc7e30', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x30cd3d70ac4002c5f7ae4ec15ecbba24586af5c3', 'value': 24.5467685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0154a7a3e57a3f8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:26:26.000Z'}}, {'blockNum': '0x4b65e2', 'uniqueId': '0xfd6b15cf12af2cb45dd0f9ff2095d31d60185ee0cd5ea8d9e1c5c319fe104a13:log:55', 'hash': '0xfd6b15cf12af2cb45dd0f9ff2095d31d60185ee0cd5ea8d9e1c5c319fe104a13', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 694.8151506547845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25aa7f4a3b69f342f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:26:46.000Z'}}, {'blockNum': '0x4b65e2', 'uniqueId': '0xfd6b15cf12af2cb45dd0f9ff2095d31d60185ee0cd5ea8d9e1c5c319fe104a13:log:57', 'hash': '0xfd6b15cf12af2cb45dd0f9ff2095d31d60185ee0cd5ea8d9e1c5c319fe104a13', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 694.8151506547845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25aa7f4a3b69f342f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:26:46.000Z'}}, {'blockNum': '0x4b6604', 'uniqueId': '0x4f6916bda037d58fd9eefd773078afa51a003eab1a251ab9ca833cee1509a2f3:log:41', 'hash': '0x4f6916bda037d58fd9eefd773078afa51a003eab1a251ab9ca833cee1509a2f3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2988.138077411539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa1fcbf05925d7b0ff1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:34:50.000Z'}}, {'blockNum': '0x4b6604', 'uniqueId': '0x4f6916bda037d58fd9eefd773078afa51a003eab1a251ab9ca833cee1509a2f3:log:43', 'hash': '0x4f6916bda037d58fd9eefd773078afa51a003eab1a251ab9ca833cee1509a2f3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00a83e95a30765e4938ad86370b25f941a3caa86', 'value': 2988.138077411539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa1fcbf05925d7b0ff1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:34:50.000Z'}}, {'blockNum': '0x4b6607', 'uniqueId': '0x958e65b7b242c85ab7c14603b81c6c88f1797bd3e4b10524e3fd9d58febca4e6:log:35', 'hash': '0x958e65b7b242c85ab7c14603b81c6c88f1797bd3e4b10524e3fd9d58febca4e6', 'from': '0x00a83e95a30765e4938ad86370b25f941a3caa86', 'to': '0x24082f1de7a54e8f150541c8c615cb1dee5553ba', 'value': 2988.138077411539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa1fcbf05925d7b0ff1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:35:52.000Z'}}, {'blockNum': '0x4b6619', 'uniqueId': '0xff51eb406b0f5e7d15860dcec204641cabe85260328b98f491897e8d305e0c0b:log:45', 'hash': '0xff51eb406b0f5e7d15860dcec204641cabe85260328b98f491897e8d305e0c0b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 164.31686176042862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08e85ac32edd50b510', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:39:54.000Z'}}, {'blockNum': '0x4b6619', 'uniqueId': '0xff51eb406b0f5e7d15860dcec204641cabe85260328b98f491897e8d305e0c0b:log:47', 'hash': '0xff51eb406b0f5e7d15860dcec204641cabe85260328b98f491897e8d305e0c0b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xc22060a0e86cc0ee5c24407303aec752e2791c3a', 'value': 164.31686176042862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08e85ac32edd50b510', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:39:54.000Z'}}, {'blockNum': '0x4b661f', 'uniqueId': '0x1a6dbf0adf0085d71cb8f02d562c3dbf00da9eb61d7f41562a1fc18bb17df495:log:25', 'hash': '0x1a6dbf0adf0085d71cb8f02d562c3dbf00da9eb61d7f41562a1fc18bb17df495', 'from': '0x8432e92e57b7dfa232e6b10f6dd6c6619ec9982f', 'to': '0x3f91e32814eb3117c38a02a9145745be319faaa3', 'value': 14.59008603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xca7a65f1548a0c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:40:53.000Z'}}, {'blockNum': '0x4b6636', 'uniqueId': '0xf69fe43ab773e4977644162aa071fd8fa79df15889f6fb3bf4bff87f3e616350:log:20', 'hash': '0xf69fe43ab773e4977644162aa071fd8fa79df15889f6fb3bf4bff87f3e616350', 'from': '0x512e2d8e36a62538ca8af3653253c44ec4899c73', 'to': '0xbed26d67a4babc89f0edf155f819389c692f964e', 'value': 30.98818657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ae0c2780c2616400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:45:40.000Z'}}, {'blockNum': '0x4b6637', 'uniqueId': '0xfeee77d58f6416c39a6bceb3c2a7d1602b11f7002332cce770c8981d8ccd8880:log:58', 'hash': '0xfeee77d58f6416c39a6bceb3c2a7d1602b11f7002332cce770c8981d8ccd8880', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7.468872145834456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x67a6c3a51545b2ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:46:05.000Z'}}, {'blockNum': '0x4b6637', 'uniqueId': '0xfeee77d58f6416c39a6bceb3c2a7d1602b11f7002332cce770c8981d8ccd8880:log:61', 'hash': '0xfeee77d58f6416c39a6bceb3c2a7d1602b11f7002332cce770c8981d8ccd8880', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 7.468872145834456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x67a6c3a51545b2ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:46:05.000Z'}}, {'blockNum': '0x4b6637', 'uniqueId': '0x61d790e63c72cd80ffad89a3885e48e40cdd6e08661df557f945be8ec8cf88ba:log:81', 'hash': '0x61d790e63c72cd80ffad89a3885e48e40cdd6e08661df557f945be8ec8cf88ba', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.13443963798460185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01dda02371cde6eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:46:05.000Z'}}, {'blockNum': '0x4b6637', 'uniqueId': '0x61d790e63c72cd80ffad89a3885e48e40cdd6e08661df557f945be8ec8cf88ba:log:84', 'hash': '0x61d790e63c72cd80ffad89a3885e48e40cdd6e08661df557f945be8ec8cf88ba', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 0.13443963798460185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01dda02371cde6eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:46:05.000Z'}}, {'blockNum': '0x4b6638', 'uniqueId': '0xcea1f38d75eb0b38166fbd84a22f541b9cf41f2efd64d916a6900aee4ab22176:log:89', 'hash': '0xcea1f38d75eb0b38166fbd84a22f541b9cf41f2efd64d916a6900aee4ab22176', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 371.73799986529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1426e6ad533cd19e72', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:46:38.000Z'}}, {'blockNum': '0x4b6638', 'uniqueId': '0xcea1f38d75eb0b38166fbd84a22f541b9cf41f2efd64d916a6900aee4ab22176:log:91', 'hash': '0xcea1f38d75eb0b38166fbd84a22f541b9cf41f2efd64d916a6900aee4ab22176', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 371.73799986529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1426e6ad533cd19e72', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:46:38.000Z'}}, {'blockNum': '0x4b6645', 'uniqueId': '0xdd246f6fe98cf1ca98d70b1ab5bcecadb80b15acfe3efa64f6725766a6e48c6a:log:17', 'hash': '0xdd246f6fe98cf1ca98d70b1ab5bcecadb80b15acfe3efa64f6725766a6e48c6a', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x427f68a670fc555da8face4b8eb1161106349a00', 'value': 8.12153999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x70b5819755145c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:49:03.000Z'}}, {'blockNum': '0x4b6648', 'uniqueId': '0xc08f6d94fba8120d649b5f13f7833b46282c9941166ed211595a8d010d79f80f:log:19', 'hash': '0xc08f6d94fba8120d649b5f13f7833b46282c9941166ed211595a8d010d79f80f', 'from': '0x1954cc7945f653d27da5f95b448ea543a7cb68f1', 'to': '0x6c7d78ba52db01bac56f845eb168faf40d459c8d', 'value': 2.6918802914158317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x255b7adce3b7341b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:50:10.000Z'}}, {'blockNum': '0x4b6655', 'uniqueId': '0x9a9dcbe8132eca463b65ed971c5a993b3371eadcb1f7dc141f2cb62a0bbd3fb3:log:120', 'hash': '0x9a9dcbe8132eca463b65ed971c5a993b3371eadcb1f7dc141f2cb62a0bbd3fb3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 748.4659961684667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28930d61f8f0573f59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:52:57.000Z'}}, {'blockNum': '0x4b6655', 'uniqueId': '0x9a9dcbe8132eca463b65ed971c5a993b3371eadcb1f7dc141f2cb62a0bbd3fb3:log:123', 'hash': '0x9a9dcbe8132eca463b65ed971c5a993b3371eadcb1f7dc141f2cb62a0bbd3fb3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 748.4659961684667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28930d61f8f0573f59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:52:57.000Z'}}, {'blockNum': '0x4b665d', 'uniqueId': '0x047c5a6192b1ce75dcc86e0ac6063c34932b914e9d6074789c349fee56982c12:log:73', 'hash': '0x047c5a6192b1ce75dcc86e0ac6063c34932b914e9d6074789c349fee56982c12', 'from': '0x6bba7e98b829e3dea401d3920f6ea3ea11a86622', 'to': '0xbb2c943ceb4ac9df462e6df8be5b39fe9a13e3e6', 'value': 505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b6048686534440000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:55:58.000Z'}}, {'blockNum': '0x4b6668', 'uniqueId': '0xfef0fd5d31ce0e3bc2cae8bb4a68e1e8cbbb5b09021d5446c5da9db0878b587c:log:22', 'hash': '0xfef0fd5d31ce0e3bc2cae8bb4a68e1e8cbbb5b09021d5446c5da9db0878b587c', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x5ee526ee00295ac303e754da3786e24e79eb0ef8', 'value': 14.23356297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc587c61bcb010000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:59:14.000Z'}}, {'blockNum': '0x4b6674', 'uniqueId': '0x9acef6ae0fa74fb341d8ff2cd28d8b91ca2023ec1c0168aae0573190eb76e5d0:log:0', 'hash': '0x9acef6ae0fa74fb341d8ff2cd28d8b91ca2023ec1c0168aae0573190eb76e5d0', 'from': '0x218d1693255a4c1e1ac13f3feb5f7e79e344283d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 299.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10378a4c090e1b0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:02:04.000Z'}}, {'blockNum': '0x4b668d', 'uniqueId': '0xb40a5a93528b2b1861b279d1f1622a79c2431cd1826eecc2177175403420c1ca:log:16', 'hash': '0xb40a5a93528b2b1861b279d1f1622a79c2431cd1826eecc2177175403420c1ca', 'from': '0x0cc64f23e7b0d21e6a9c3a101bfecb58d79d462c', 'to': '0x96d32dc4085171d4cc5cc3fb02ed682df8d04b7f', 'value': 27.071093499999996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0177afd81c04e2d000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:07:13.000Z'}}, {'blockNum': '0x4b668e', 'uniqueId': '0xcd12438868c18da11d34b928fd326e39945bd36678670d904d6ac6a81e143e2d:log:50', 'hash': '0xcd12438868c18da11d34b928fd326e39945bd36678670d904d6ac6a81e143e2d', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 765.2823001184602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x297c6ce5517eb2b957', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:07:28.000Z'}}, {'blockNum': '0x4b668e', 'uniqueId': '0xcd12438868c18da11d34b928fd326e39945bd36678670d904d6ac6a81e143e2d:log:52', 'hash': '0xcd12438868c18da11d34b928fd326e39945bd36678670d904d6ac6a81e143e2d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 765.2823001184602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x297c6ce5517eb2b957', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:07:28.000Z'}}, {'blockNum': '0x4b668f', 'uniqueId': '0xa6a52f01e8e62b2335fe44e70144797861b5170943dff8b0bd39bbe7b09b816c:log:2', 'hash': '0xa6a52f01e8e62b2335fe44e70144797861b5170943dff8b0bd39bbe7b09b816c', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x30cd3d70ac4002c5f7ae4ec15ecbba24586af5c3', 'value': 50.83397281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02c1768cf0d5ea6000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:07:39.000Z'}}, {'blockNum': '0x4b6696', 'uniqueId': '0x134d5887436b134e71004df94a4e1b44f67c87fcce14a80c81a4aee8521c7ee1:log:79', 'hash': '0x134d5887436b134e71004df94a4e1b44f67c87fcce14a80c81a4aee8521c7ee1', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 126.54309414032319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06dc2361aaa4c75138', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:09:30.000Z'}}, {'blockNum': '0x4b6696', 'uniqueId': '0x134d5887436b134e71004df94a4e1b44f67c87fcce14a80c81a4aee8521c7ee1:log:81', 'hash': '0x134d5887436b134e71004df94a4e1b44f67c87fcce14a80c81a4aee8521c7ee1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 126.54309414032319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06dc2361aaa4c75138', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:09:30.000Z'}}, {'blockNum': '0x4b669b', 'uniqueId': '0x2d34fae784102000da3142506ee844744def02b0759b4cbd5dbf90553986b260:log:25', 'hash': '0x2d34fae784102000da3142506ee844744def02b0759b4cbd5dbf90553986b260', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0783c3ca86ef18d622d17ceebeeea23e273a50c8', 'value': 29.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0194899a8e82a30000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:10:21.000Z'}}, {'blockNum': '0x4b669c', 'uniqueId': '0x68b2b7c0abaee63444834d8e75e2621e0b0f70bb5ee6aee3c74a573ccaca4549:log:55', 'hash': '0x68b2b7c0abaee63444834d8e75e2621e0b0f70bb5ee6aee3c74a573ccaca4549', 'from': '0x73014f495c905fc4029adfed4faaf9c12a4a203b', 'to': '0xc07d4742a2c26c589186d353bfe4b62d34f6bd8e', 'value': 657.5380533120281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x23a52c6fb38d4b5add', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:10:43.000Z'}}, {'blockNum': '0x4b66a0', 'uniqueId': '0x7153c76759d1c99fc1cc95e9d5501b99f5d7bde26b406e811b9f9832ed50498b:log:8', 'hash': '0x7153c76759d1c99fc1cc95e9d5501b99f5d7bde26b406e811b9f9832ed50498b', 'from': '0x6c7d78ba52db01bac56f845eb168faf40d459c8d', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 2.6918802914158317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x255b7adce3b7341b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:11:05.000Z'}}, {'blockNum': '0x4b66a9', 'uniqueId': '0xafb9127bd70bdf5dacb2eed1b1d56e180a391753ae220d9c77891f75630d6e06:log:50', 'hash': '0xafb9127bd70bdf5dacb2eed1b1d56e180a391753ae220d9c77891f75630d6e06', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 32.132824976527594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01bdeeba11b3ba06e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:13:23.000Z'}}, {'blockNum': '0x4b66a9', 'uniqueId': '0xafb9127bd70bdf5dacb2eed1b1d56e180a391753ae220d9c77891f75630d6e06:log:53', 'hash': '0xafb9127bd70bdf5dacb2eed1b1d56e180a391753ae220d9c77891f75630d6e06', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'value': 32.132824976527594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01bdeeba11b3ba06e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:13:23.000Z'}}, {'blockNum': '0x4b66ae', 'uniqueId': '0xefe04b557d539cfd2688caf64b06419d1c86431dab7394de13911d278e08565c:log:59', 'hash': '0xefe04b557d539cfd2688caf64b06419d1c86431dab7394de13911d278e08565c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.938580199948468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf507f8b3a9cc1c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:14:39.000Z'}}, {'blockNum': '0x4b66ae', 'uniqueId': '0xefe04b557d539cfd2688caf64b06419d1c86431dab7394de13911d278e08565c:log:62', 'hash': '0xefe04b557d539cfd2688caf64b06419d1c86431dab7394de13911d278e08565c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'value': 14.938580199948468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf507f8b3a9cc1c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:14:39.000Z'}}, {'blockNum': '0x4b66b0', 'uniqueId': '0xad750ad4c4becba72557f8b58a808b335bdc26dbcc14d55181a646200b9952c2:log:61', 'hash': '0xad750ad4c4becba72557f8b58a808b335bdc26dbcc14d55181a646200b9952c2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 38.84018460383018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021b040e1cf1e4d3c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:15:15.000Z'}}, {'blockNum': '0x4b66b0', 'uniqueId': '0xad750ad4c4becba72557f8b58a808b335bdc26dbcc14d55181a646200b9952c2:log:64', 'hash': '0xad750ad4c4becba72557f8b58a808b335bdc26dbcc14d55181a646200b9952c2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 38.84018460383018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021b040e1cf1e4d3c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:15:15.000Z'}}, {'blockNum': '0x4b66bb', 'uniqueId': '0x7d0ff01e05792cce055e7b5aed898cbd245a67e828b5486239dd813726401034:log:8', 'hash': '0x7d0ff01e05792cce055e7b5aed898cbd245a67e828b5486239dd813726401034', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x30cd3d70ac4002c5f7ae4ec15ecbba24586af5c3', 'value': 45.52884934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0277d6f740a6fa6000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:18:44.000Z'}}, {'blockNum': '0x4b66c8', 'uniqueId': '0xcfe2104e60d8bab77e87b53db26cf52fa6a3ac4217650e97c75195704d31ab07:log:72', 'hash': '0xcfe2104e60d8bab77e87b53db26cf52fa6a3ac4217650e97c75195704d31ab07', 'from': '0xeade8b32735f9c7871da862c18bf12caeaa4e6e9', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1165.3270037751686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f2c292fc435379590', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:22:13.000Z'}}, {'blockNum': '0x4b66c8', 'uniqueId': '0xcfe2104e60d8bab77e87b53db26cf52fa6a3ac4217650e97c75195704d31ab07:log:74', 'hash': '0xcfe2104e60d8bab77e87b53db26cf52fa6a3ac4217650e97c75195704d31ab07', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1165.3270037751686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f2c292fc435379590', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:22:13.000Z'}}, {'blockNum': '0x4b66ca', 'uniqueId': '0xc42f0ae0eff44b37e8f08db7d629fb3a0513eab62bba387d83ed3b515c1ea279:log:7', 'hash': '0xc42f0ae0eff44b37e8f08db7d629fb3a0513eab62bba387d83ed3b515c1ea279', 'from': '0x96d32dc4085171d4cc5cc3fb02ed682df8d04b7f', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 27.071093499999996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0177afd81c04e2d000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:22:31.000Z'}}, {'blockNum': '0x4b66d7', 'uniqueId': '0x99fea91d0dc56208b4119aa8769af093e2c42ddf252867b762daccfbfe0d2fac:log:69', 'hash': '0x99fea91d0dc56208b4119aa8769af093e2c42ddf252867b762daccfbfe0d2fac', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3782dace9d8fff6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:25:21.000Z'}}, {'blockNum': '0x4b66d7', 'uniqueId': '0x99fea91d0dc56208b4119aa8769af093e2c42ddf252867b762daccfbfe0d2fac:log:71', 'hash': '0x99fea91d0dc56208b4119aa8769af093e2c42ddf252867b762daccfbfe0d2fac', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4bde562d91b6e9c77062a03b0190bd6829e46752', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3782dace9d8fff6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:25:21.000Z'}}, {'blockNum': '0x4b66df', 'uniqueId': '0x1e9e785fa6f1e491a76ef05c57cdb214d769d346d2d45f9fc850d6a56cb6d612:log:7', 'hash': '0x1e9e785fa6f1e491a76ef05c57cdb214d769d346d2d45f9fc850d6a56cb6d612', 'from': '0x8104d0be75ad95ec81a8003c43cbfc8cbecef633', 'to': '0x1954cc7945f653d27da5f95b448ea543a7cb68f1', 'value': 8.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75f610f70ed20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:27:48.000Z'}}, {'blockNum': '0x4b66f1', 'uniqueId': '0x566971788f69d2aae5d0961f59a4962a63e86a74d0e3ee32466437bf93d6c0a0:log:54', 'hash': '0x566971788f69d2aae5d0961f59a4962a63e86a74d0e3ee32466437bf93d6c0a0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2987.581758067369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa1f5069413628570de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:32:36.000Z'}}, {'blockNum': '0x4b66f1', 'uniqueId': '0x566971788f69d2aae5d0961f59a4962a63e86a74d0e3ee32466437bf93d6c0a0:log:56', 'hash': '0x566971788f69d2aae5d0961f59a4962a63e86a74d0e3ee32466437bf93d6c0a0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2987.581758067369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa1f5069413628570de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:32:36.000Z'}}, {'blockNum': '0x4b66f5', 'uniqueId': '0x3f3301c018f86a2db0cae00b3dbc5ba36f15962b72adf601db3b409cdd5cb37b:log:54', 'hash': '0x3f3301c018f86a2db0cae00b3dbc5ba36f15962b72adf601db3b409cdd5cb37b', 'from': '0x88733425ca833b0123e2cacfb85846f20762f970', 'to': '0xa89083d5a0e9d774ff2b378251ab3159db31c199', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:34:06.000Z'}}, {'blockNum': '0x4b66fa', 'uniqueId': '0xc9592ed4da617262c121f12341fc22f7a809e79689a6216ca49b74ca2b9714ec:log:68', 'hash': '0xc9592ed4da617262c121f12341fc22f7a809e79689a6216ca49b74ca2b9714ec', 'from': '0xdde4acb37b66d173a5407ce1e1fbc81dae18679f', 'to': '0x64c1859e25bc3a41764c4409d08c31f7efa9a1c6', 'value': 5.48391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4c1ac3170a366000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:35:05.000Z'}}, {'blockNum': '0x4b66fe', 'uniqueId': '0x26aa588e43a2e30bac599e3e784143794304f4903abf67da72b833c516d650a0:log:66', 'hash': '0x26aa588e43a2e30bac599e3e784143794304f4903abf67da72b833c516d650a0', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 306.8836141006598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10a2dd9d15e1e2abcb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:36:20.000Z'}}, {'blockNum': '0x4b66fe', 'uniqueId': '0x26aa588e43a2e30bac599e3e784143794304f4903abf67da72b833c516d650a0:log:68', 'hash': '0x26aa588e43a2e30bac599e3e784143794304f4903abf67da72b833c516d650a0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 306.8836141006598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10a2dd9d15e1e2abcb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:36:20.000Z'}}, {'blockNum': '0x4b670d', 'uniqueId': '0x321709c40f120b6ced67abec94647870ebea90bd63dc5b49b683456b944d2ca7:log:102', 'hash': '0x321709c40f120b6ced67abec94647870ebea90bd63dc5b49b683456b944d2ca7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 11.981378111997374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa64667e9ad3e6c7f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:41:23.000Z'}}, {'blockNum': '0x4b670d', 'uniqueId': '0x321709c40f120b6ced67abec94647870ebea90bd63dc5b49b683456b944d2ca7:log:105', 'hash': '0x321709c40f120b6ced67abec94647870ebea90bd63dc5b49b683456b944d2ca7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 11.981378111997374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa64667e9ad3e6c7f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:41:23.000Z'}}, {'blockNum': '0x4b6711', 'uniqueId': '0x4ff368b159f2d75692a375a93f7e814e8260794a19f02da3a9fabc4072319b13:log:104', 'hash': '0x4ff368b159f2d75692a375a93f7e814e8260794a19f02da3a9fabc4072319b13', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 29.46341586330789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0198e3149fb213740e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:42:23.000Z'}}, {'blockNum': '0x4b6711', 'uniqueId': '0x4ff368b159f2d75692a375a93f7e814e8260794a19f02da3a9fabc4072319b13:log:106', 'hash': '0x4ff368b159f2d75692a375a93f7e814e8260794a19f02da3a9fabc4072319b13', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 29.46341586330789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0198e3149fb213740e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:42:23.000Z'}}, {'blockNum': '0x4b6716', 'uniqueId': '0xf4b4db9817b2ab3484ce94898d3cca9bb7d397d5c997ce709f938ffad8dcbe98:log:57', 'hash': '0xf4b4db9817b2ab3484ce94898d3cca9bb7d397d5c997ce709f938ffad8dcbe98', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 13.442242018361066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xba8c6fe5493dbe9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:43:04.000Z'}}, {'blockNum': '0x4b6716', 'uniqueId': '0xf4b4db9817b2ab3484ce94898d3cca9bb7d397d5c997ce709f938ffad8dcbe98:log:60', 'hash': '0xf4b4db9817b2ab3484ce94898d3cca9bb7d397d5c997ce709f938ffad8dcbe98', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 13.442242018361066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xba8c6fe5493dbe9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:43:04.000Z'}}, {'blockNum': '0x4b671c', 'uniqueId': '0xcb6e5b095cbfdb8f9270368df5ebac24ab1f6779b3f569920f00c84a5012b091:log:82', 'hash': '0xcb6e5b095cbfdb8f9270368df5ebac24ab1f6779b3f569920f00c84a5012b091', 'from': '0x150f205ad0870d1a85440681b68ba9ac7ac2af37', 'to': '0xac6904631c9838e65a00d5363a60f33002413673', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:44:45.000Z'}}, {'blockNum': '0x4b671d', 'uniqueId': '0x5fb5f29b4ad4ed872c74bc76b44f76e73d9b4d90806bbce75cdfa56dc42e1487:log:65', 'hash': '0x5fb5f29b4ad4ed872c74bc76b44f76e73d9b4d90806bbce75cdfa56dc42e1487', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 625.8397940619302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21ed4598dba4f9dab9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:45:07.000Z'}}, {'blockNum': '0x4b671d', 'uniqueId': '0x5fb5f29b4ad4ed872c74bc76b44f76e73d9b4d90806bbce75cdfa56dc42e1487:log:67', 'hash': '0x5fb5f29b4ad4ed872c74bc76b44f76e73d9b4d90806bbce75cdfa56dc42e1487', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 625.8397940619302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21ed4598dba4f9dab9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:45:07.000Z'}}, {'blockNum': '0x4b671e', 'uniqueId': '0x791b1dc06a5496c4185ba64ac5f847840e8bff8ea407435ad72f71389212f390:log:78', 'hash': '0x791b1dc06a5496c4185ba64ac5f847840e8bff8ea407435ad72f71389212f390', 'from': '0x24082f1de7a54e8f150541c8c615cb1dee5553ba', 'to': '0xa10d5531ef4fbfff688e1f075e4e2efc315a5a89', 'value': 2988.138077411539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa1fcbf05925d7b0ff1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:45:41.000Z'}}, {'blockNum': '0x4b671f', 'uniqueId': '0x4fc4c3bc48729f814008e59f41d22351120870658269ba46a30313d33931c5f1:log:95', 'hash': '0x4fc4c3bc48729f814008e59f41d22351120870658269ba46a30313d33931c5f1', 'from': '0x38a3fc625df834dd34e8ede60e10cd3024a6650e', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 491.79310420728615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa90016a51df48509', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:45:45.000Z'}}, {'blockNum': '0x4b671f', 'uniqueId': '0x4fc4c3bc48729f814008e59f41d22351120870658269ba46a30313d33931c5f1:log:97', 'hash': '0x4fc4c3bc48729f814008e59f41d22351120870658269ba46a30313d33931c5f1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 491.79310420728615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa90016a51df48509', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:45:45.000Z'}}, {'blockNum': '0x4b6720', 'uniqueId': '0x9c933201cb38b3c9e6ae33a48442c32466315b8d03218f979158f664f756fb60:log:74', 'hash': '0x9c933201cb38b3c9e6ae33a48442c32466315b8d03218f979158f664f756fb60', 'from': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 198.669101602653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ac5166f50481ec9b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:46:14.000Z'}}, {'blockNum': '0x4b6720', 'uniqueId': '0x9c933201cb38b3c9e6ae33a48442c32466315b8d03218f979158f664f756fb60:log:76', 'hash': '0x9c933201cb38b3c9e6ae33a48442c32466315b8d03218f979158f664f756fb60', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 198.669101602653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ac5166f50481ec9b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:46:14.000Z'}}, {'blockNum': '0x4b6721', 'uniqueId': '0x74153332866ad5bd93543f16c345ecf6a57adc2898d36b9b14194349e6c6ee80:log:19', 'hash': '0x74153332866ad5bd93543f16c345ecf6a57adc2898d36b9b14194349e6c6ee80', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 597.5046342948798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20640ae32d0bfd5969', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:46:24.000Z'}}, {'blockNum': '0x4b6721', 'uniqueId': '0x74153332866ad5bd93543f16c345ecf6a57adc2898d36b9b14194349e6c6ee80:log:22', 'hash': '0x74153332866ad5bd93543f16c345ecf6a57adc2898d36b9b14194349e6c6ee80', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xeade8b32735f9c7871da862c18bf12caeaa4e6e9', 'value': 597.5046342948798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20640ae32d0bfd5969', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:46:24.000Z'}}, {'blockNum': '0x4b672c', 'uniqueId': '0x598572cc913080e254443ffadd8e77d0a80df2f90705bca1d47cdf19bf158f33:log:53', 'hash': '0x598572cc913080e254443ffadd8e77d0a80df2f90705bca1d47cdf19bf158f33', 'from': '0x73014f495c905fc4029adfed4faaf9c12a4a203b', 'to': '0x920030662c363aa3950cbef0a4694e1a455ab62b', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:48:35.000Z'}}, {'blockNum': '0x4b6731', 'uniqueId': '0xf8479f796bb4c2cf76e447d50e8896e26fb29f77be1ea49a043338953be6f7ec:log:3', 'hash': '0xf8479f796bb4c2cf76e447d50e8896e26fb29f77be1ea49a043338953be6f7ec', 'from': '0xe594187863257aafeff831b394acbcf84240530f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:50:38.000Z'}}, {'blockNum': '0x4b6732', 'uniqueId': '0x663825b4ea08cc80a797cef7d616cd463fd443d59f6ca06e085b1f50fa3e8a0a:log:94', 'hash': '0x663825b4ea08cc80a797cef7d616cd463fd443d59f6ca06e085b1f50fa3e8a0a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 134.43270534884098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0749a0e942806c2dd2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:50:47.000Z'}}, {'blockNum': '0x4b6732', 'uniqueId': '0x663825b4ea08cc80a797cef7d616cd463fd443d59f6ca06e085b1f50fa3e8a0a:log:97', 'hash': '0x663825b4ea08cc80a797cef7d616cd463fd443d59f6ca06e085b1f50fa3e8a0a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'value': 134.43270534884098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0749a0e942806c2dd2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:50:47.000Z'}}, {'blockNum': '0x4b6738', 'uniqueId': '0x248c0eca28fe325cf8cefa78e82ea81af6660299161e153e0192eb8a8f2ba055:log:70', 'hash': '0x248c0eca28fe325cf8cefa78e82ea81af6660299161e153e0192eb8a8f2ba055', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.23968252929747094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x035385fd91a495ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:51:39.000Z'}}, {'blockNum': '0x4b6738', 'uniqueId': '0x248c0eca28fe325cf8cefa78e82ea81af6660299161e153e0192eb8a8f2ba055:log:73', 'hash': '0x248c0eca28fe325cf8cefa78e82ea81af6660299161e153e0192eb8a8f2ba055', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 0.23968252929747094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x035385fd91a495ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:51:39.000Z'}}, {'blockNum': '0x4b673c', 'uniqueId': '0x0a01aaaae45bd2784ab70b2179eaf7bc6b81dd0bd272fd80923331b84b49d868:log:22', 'hash': '0x0a01aaaae45bd2784ab70b2179eaf7bc6b81dd0bd272fd80923331b84b49d868', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x47bedfd2b1300a388f59a52204d70c4ded33f360', 'value': 28.34553982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01895f964901ca3000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:53:09.000Z'}}, {'blockNum': '0x4b673d', 'uniqueId': '0x7a0a79ee9d63b3f3541fff054fdfb76a278132242e8111bdd1f2f1c91ff8f1ef:log:78', 'hash': '0x7a0a79ee9d63b3f3541fff054fdfb76a278132242e8111bdd1f2f1c91ff8f1ef', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.481053122849975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3e2fe612d720a8d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:53:23.000Z'}}, {'blockNum': '0x4b673d', 'uniqueId': '0x7a0a79ee9d63b3f3541fff054fdfb76a278132242e8111bdd1f2f1c91ff8f1ef:log:81', 'hash': '0x7a0a79ee9d63b3f3541fff054fdfb76a278132242e8111bdd1f2f1c91ff8f1ef', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 4.481053122849975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3e2fe612d720a8d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:53:23.000Z'}}, {'blockNum': '0x4b673e', 'uniqueId': '0xba7623fd8139748f53c1d42564e27e82860bbef9beb0b343b062e781e1416c6f:log:22', 'hash': '0xba7623fd8139748f53c1d42564e27e82860bbef9beb0b343b062e781e1416c6f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 477.9653199044443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19e919ee1594585169', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:53:26.000Z'}}, {'blockNum': '0x4b673e', 'uniqueId': '0xba7623fd8139748f53c1d42564e27e82860bbef9beb0b343b062e781e1416c6f:log:25', 'hash': '0xba7623fd8139748f53c1d42564e27e82860bbef9beb0b343b062e781e1416c6f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 477.9653199044443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19e919ee1594585169', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:53:26.000Z'}}, {'blockNum': '0x4b6742', 'uniqueId': '0x28b1464da3cc300df00f5194653b358ba514ee5457f67ae124c445fe1aaf4288:log:55', 'hash': '0x28b1464da3cc300df00f5194653b358ba514ee5457f67ae124c445fe1aaf4288', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 126.95498212599085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06e1dab39b75c02245', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:54:24.000Z'}}, {'blockNum': '0x4b6742', 'uniqueId': '0x28b1464da3cc300df00f5194653b358ba514ee5457f67ae124c445fe1aaf4288:log:58', 'hash': '0x28b1464da3cc300df00f5194653b358ba514ee5457f67ae124c445fe1aaf4288', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x8606704880234178125b2d44cbbe190ccdbde015', 'value': 126.95498212599085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06e1dab39b75c02245', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:54:24.000Z'}}, {'blockNum': '0x4b6744', 'uniqueId': '0x3debf490c6e336432f59844d7e8d861bb0a9284a9c987414687dc5f6cfa75ff3:log:12', 'hash': '0x3debf490c6e336432f59844d7e8d861bb0a9284a9c987414687dc5f6cfa75ff3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 1408.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4c5601c44d324f0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:54:46.000Z'}}, {'blockNum': '0x4b674c', 'uniqueId': '0xf5104b9031171b9f37bde189224cf3df72ae38d3076b2b5ff4ff25f2262b1376:log:23', 'hash': '0xf5104b9031171b9f37bde189224cf3df72ae38d3076b2b5ff4ff25f2262b1376', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 24.64398077969956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01560101f3218bdb15', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:56:18.000Z'}}, {'blockNum': '0x4b674c', 'uniqueId': '0xf5104b9031171b9f37bde189224cf3df72ae38d3076b2b5ff4ff25f2262b1376:log:26', 'hash': '0xf5104b9031171b9f37bde189224cf3df72ae38d3076b2b5ff4ff25f2262b1376', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 24.64398077969956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01560101f3218bdb15', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:56:18.000Z'}}, {'blockNum': '0x4b674f', 'uniqueId': '0x939de4a50dadf3d01785e512bbe3a3c4daddc8297f498abcc79f825ab043696d:log:23', 'hash': '0x939de4a50dadf3d01785e512bbe3a3c4daddc8297f498abcc79f825ab043696d', 'from': '0x7444d44f88da2d12927f0c2ee634d1674f0215b9', 'to': '0x1019d10368171459f21a22e0f9467dad62ede33a', 'value': 16500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x037e777fb340d9500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:56:44.000Z'}}, {'blockNum': '0x4b676e', 'uniqueId': '0xfb039bb3b991d508289bad5e6f59af4b6fcd51b516fe33eadaaa5813c94ab13f:log:92', 'hash': '0xfb039bb3b991d508289bad5e6f59af4b6fcd51b516fe33eadaaa5813c94ab13f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1194.7732407307237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x40c4cf3c43c10e157c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:02:37.000Z'}}, {'blockNum': '0x4b676e', 'uniqueId': '0xfb039bb3b991d508289bad5e6f59af4b6fcd51b516fe33eadaaa5813c94ab13f:log:95', 'hash': '0xfb039bb3b991d508289bad5e6f59af4b6fcd51b516fe33eadaaa5813c94ab13f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 1194.7732407307237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x40c4cf3c43c10e157c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:02:37.000Z'}}, {'blockNum': '0x4b676e', 'uniqueId': '0xd5fa673bb583ac50b8a7e60f26e6e6ccb798740a87d5c5c33b3439c5a122021f:log:113', 'hash': '0xd5fa673bb583ac50b8a7e60f26e6e6ccb798740a87d5c5c33b3439c5a122021f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 447.9963047359095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18493299923788b709', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:02:37.000Z'}}, {'blockNum': '0x4b676e', 'uniqueId': '0xd5fa673bb583ac50b8a7e60f26e6e6ccb798740a87d5c5c33b3439c5a122021f:log:116', 'hash': '0xd5fa673bb583ac50b8a7e60f26e6e6ccb798740a87d5c5c33b3439c5a122021f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 447.9963047359095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18493299923788b709', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:02:37.000Z'}}, {'blockNum': '0x4b6770', 'uniqueId': '0x232e8e5404052bc458c48ef80b73c5da2b551b97c8cd4440afb41c14ced8180d:log:43', 'hash': '0x232e8e5404052bc458c48ef80b73c5da2b551b97c8cd4440afb41c14ced8180d', 'from': '0xb538fb43f2dc93750aba48823283ae3f6d55fc16', 'to': '0x3032ed2453e4e542c543e2c70270b3b879b5a7be', 'value': 140.88168266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07a32047f4c49be800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:02:52.000Z'}}, {'blockNum': '0x4b6771', 'uniqueId': '0x0817c1f1bf6eb035b74866cd604850d20aa9b9533e6b54cda3bc271f627782ff:log:6', 'hash': '0x0817c1f1bf6eb035b74866cd604850d20aa9b9533e6b54cda3bc271f627782ff', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xa722ed95558ac09324cc2c5659f84ed95d9f6271', 'value': 3.58290568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x31b909bba0212000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:03:07.000Z'}}, {'blockNum': '0x4b6780', 'uniqueId': '0x3887dcc2abb7c22c0a46e48d84eb9e3ae3d9d5f94bd9d84ef757ed0718a9fdb8:log:76', 'hash': '0x3887dcc2abb7c22c0a46e48d84eb9e3ae3d9d5f94bd9d84ef757ed0718a9fdb8', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 142.4177472578088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07b8717a91c50e2f2b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:06:25.000Z'}}, {'blockNum': '0x4b6780', 'uniqueId': '0x3887dcc2abb7c22c0a46e48d84eb9e3ae3d9d5f94bd9d84ef757ed0718a9fdb8:log:78', 'hash': '0x3887dcc2abb7c22c0a46e48d84eb9e3ae3d9d5f94bd9d84ef757ed0718a9fdb8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 142.4177472578088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07b8717a91c50e2f2b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:06:25.000Z'}}, {'blockNum': '0x4b678a', 'uniqueId': '0x06f1007b55abb8c1c5b945616f046eb52c883b63132e705d34f6f0ec47bf356f:log:12', 'hash': '0x06f1007b55abb8c1c5b945616f046eb52c883b63132e705d34f6f0ec47bf356f', 'from': '0xc2befb6d33ba6291e89d3e37863e87104097a3ee', 'to': '0x882622ca65db0237785c88ed4a5fae240aa67d99', 'value': 16, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xde0b6b3a76400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:08:43.000Z'}}, {'blockNum': '0x4b678e', 'uniqueId': '0x4587b355d38035fb4610839c13c7718cac2c015ed3713d2565cc55873c1d0a41:log:17', 'hash': '0x4587b355d38035fb4610839c13c7718cac2c015ed3713d2565cc55873c1d0a41', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7d1fa4b3666b1b4cf5729e2b716362846076422e', 'value': 61.51447848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0355af544287cfa000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:09:11.000Z'}}, {'blockNum': '0x4b678f', 'uniqueId': '0x8226cefbf5534dd9c7c69b91773bbd55e47ed8ab85fe25aad9573220364d96a1:log:2', 'hash': '0x8226cefbf5534dd9c7c69b91773bbd55e47ed8ab85fe25aad9573220364d96a1', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x094ddfd54f9b781ed704b507a6bfecc9e04d8a8e', 'value': 5.87102854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x517a1559e0e15800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:09:15.000Z'}}, {'blockNum': '0x4b6798', 'uniqueId': '0x03972cfe8e2c987734dd4d37eabe3dc6865b69539846b9498e71582d7b3bf0ba:log:6', 'hash': '0x03972cfe8e2c987734dd4d37eabe3dc6865b69539846b9498e71582d7b3bf0ba', 'from': '0x05cf484f3ad036fb9ea24e05d0f589fb95297350', 'to': '0xbc1d9196ede0488197db38ba1d707ea3ac01cbea', 'value': 57.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031f5c4ed276800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:10:42.000Z'}}, {'blockNum': '0x4b679b', 'uniqueId': '0xaa9e1d78715e54046ca835176c17f8f807ff4383b3d1d14e3be4ca6ca9c53ddb:log:8', 'hash': '0xaa9e1d78715e54046ca835176c17f8f807ff4383b3d1d14e3be4ca6ca9c53ddb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 597.3014600800071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x206139114dd2fc9d55', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:10:57.000Z'}}, {'blockNum': '0x4b679b', 'uniqueId': '0xaa9e1d78715e54046ca835176c17f8f807ff4383b3d1d14e3be4ca6ca9c53ddb:log:11', 'hash': '0xaa9e1d78715e54046ca835176c17f8f807ff4383b3d1d14e3be4ca6ca9c53ddb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 597.3014600800071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x206139114dd2fc9d55', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:10:57.000Z'}}, {'blockNum': '0x4b67a6', 'uniqueId': '0x558f5f0ea062d0f9ef5ac78a1556814265ed2cee4af916ec2592b0dfa1aeb614:log:5', 'hash': '0x558f5f0ea062d0f9ef5ac78a1556814265ed2cee4af916ec2592b0dfa1aeb614', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e4a8c4abeee63cc45d62827c3936e1129a1b8cb', 'value': 1707.50041684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c905416641b9ed000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:13:35.000Z'}}, {'blockNum': '0x4b67a9', 'uniqueId': '0x83fdf360d969ed907bd0341f1056c94854e33110eaa2e863cbe680bdf03472f3:log:51', 'hash': '0x83fdf360d969ed907bd0341f1056c94854e33110eaa2e863cbe680bdf03472f3', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 594.9363043624613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20406658b5c42fd88a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:14:13.000Z'}}, {'blockNum': '0x4b67a9', 'uniqueId': '0x83fdf360d969ed907bd0341f1056c94854e33110eaa2e863cbe680bdf03472f3:log:53', 'hash': '0x83fdf360d969ed907bd0341f1056c94854e33110eaa2e863cbe680bdf03472f3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 594.9363043624613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20406658b5c42fd88a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:14:13.000Z'}}, {'blockNum': '0x4b67ad', 'uniqueId': '0x35c1f2752f6c65f00896f76ee133bc7bad73837eeee9c41985b25056e4d064fc:log:0', 'hash': '0x35c1f2752f6c65f00896f76ee133bc7bad73837eeee9c41985b25056e4d064fc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x17e980b69137ca8f178ba2dd372095f5373ea538', 'value': 76.41356184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04247381a3178b6000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:15:04.000Z'}}, {'blockNum': '0x4b67ad', 'uniqueId': '0x37366e7290683377e7fb48d83b276670781601aedd495e75c155edb4ea62599b:log:6', 'hash': '0x37366e7290683377e7fb48d83b276670781601aedd495e75c155edb4ea62599b', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x65bb47d0bd50ebfd205bcea1cb069ed28cc6bf78', 'value': 79.8425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0454098ab9ef204000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:15:04.000Z'}}, {'blockNum': '0x4b67be', 'uniqueId': '0x037e956a0f2baec5a5f7db12e3b5cd3b012bbad78e2e0231d08416664c65dc3a:log:79', 'hash': '0x037e956a0f2baec5a5f7db12e3b5cd3b012bbad78e2e0231d08416664c65dc3a', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 19.09084081833978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0108f04a93a0aba267', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:20:35.000Z'}}, {'blockNum': '0x4b67be', 'uniqueId': '0x037e956a0f2baec5a5f7db12e3b5cd3b012bbad78e2e0231d08416664c65dc3a:log:81', 'hash': '0x037e956a0f2baec5a5f7db12e3b5cd3b012bbad78e2e0231d08416664c65dc3a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 19.09084081833978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0108f04a93a0aba267', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:20:35.000Z'}}, {'blockNum': '0x4b67bf', 'uniqueId': '0x983a157944bfff32e4cb224638fe33dba264e9c75e8f892f9a33de65ffbeeda9:log:22', 'hash': '0x983a157944bfff32e4cb224638fe33dba264e9c75e8f892f9a33de65ffbeeda9', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 317.2799523967091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x113324d3aefeb16437', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:20:37.000Z'}}, {'blockNum': '0x4b67bf', 'uniqueId': '0x983a157944bfff32e4cb224638fe33dba264e9c75e8f892f9a33de65ffbeeda9:log:24', 'hash': '0x983a157944bfff32e4cb224638fe33dba264e9c75e8f892f9a33de65ffbeeda9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 317.2799523967091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x113324d3aefeb16437', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:20:37.000Z'}}, {'blockNum': '0x4b67ca', 'uniqueId': '0x1993e808622165146a1d0900c7184164acdbd2fdc5c5b9cc0e97b49b2521f64d:log:10', 'hash': '0x1993e808622165146a1d0900c7184164acdbd2fdc5c5b9cc0e97b49b2521f64d', 'from': '0xbc1d9196ede0488197db38ba1d707ea3ac01cbea', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 57.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031f5c4ed276800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:24:02.000Z'}}, {'blockNum': '0x4b67da', 'uniqueId': '0x1085d43ee4e35e4ab41d8223da888102f20a68a0c4518572e976cfdc6db3e469:log:46', 'hash': '0x1085d43ee4e35e4ab41d8223da888102f20a68a0c4518572e976cfdc6db3e469', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 362.39763726895313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13a5470b07f8d0a786', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:28:05.000Z'}}, {'blockNum': '0x4b67da', 'uniqueId': '0x1085d43ee4e35e4ab41d8223da888102f20a68a0c4518572e976cfdc6db3e469:log:48', 'hash': '0x1085d43ee4e35e4ab41d8223da888102f20a68a0c4518572e976cfdc6db3e469', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 362.39763726895313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13a5470b07f8d0a786', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:28:05.000Z'}}, {'blockNum': '0x4b67e0', 'uniqueId': '0x9181c8a1b766dfbe4c9d9c70be50c2950c04edf5e0d6fe7fc4ca2c208d5ba40c:log:13', 'hash': '0x9181c8a1b766dfbe4c9d9c70be50c2950c04edf5e0d6fe7fc4ca2c208d5ba40c', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 500.61728430030576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b2375dfafe47602c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:28:45.000Z'}}, {'blockNum': '0x4b67e0', 'uniqueId': '0x9181c8a1b766dfbe4c9d9c70be50c2950c04edf5e0d6fe7fc4ca2c208d5ba40c:log:15', 'hash': '0x9181c8a1b766dfbe4c9d9c70be50c2950c04edf5e0d6fe7fc4ca2c208d5ba40c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 500.61728430030576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b2375dfafe47602c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:28:45.000Z'}}, {'blockNum': '0x4b67f0', 'uniqueId': '0x8122a116b0ede525dfa066066b8f32d6af1024fed309484f689c4ee8683a31fa:log:83', 'hash': '0x8122a116b0ede525dfa066066b8f32d6af1024fed309484f689c4ee8683a31fa', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.9525661460574898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3831dce8d1cda9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:32:42.000Z'}}, {'blockNum': '0x4b67f0', 'uniqueId': '0x8122a116b0ede525dfa066066b8f32d6af1024fed309484f689c4ee8683a31fa:log:86', 'hash': '0x8122a116b0ede525dfa066066b8f32d6af1024fed309484f689c4ee8683a31fa', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 0.9525661460574898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3831dce8d1cda9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:32:42.000Z'}}, {'blockNum': '0x4b6810', 'uniqueId': '0xea7df0c820311c2ec47fd6f70e9d29c35b6b3295fdc3d3c7c8a1425fc4c0cfbe:log:2', 'hash': '0xea7df0c820311c2ec47fd6f70e9d29c35b6b3295fdc3d3c7c8a1425fc4c0cfbe', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:40:27.000Z'}}, {'blockNum': '0x4b6811', 'uniqueId': '0x8faabed7fb2780a3181ccee433a81e147c67690599dc596faedf42555a7c9ef0:log:3', 'hash': '0x8faabed7fb2780a3181ccee433a81e147c67690599dc596faedf42555a7c9ef0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x379a2e3ff2199b974215d6428a057d48f3b952eb', 'value': 1406.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4c3f1bca0b2aea0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:40:42.000Z'}}, {'blockNum': '0x4b6811', 'uniqueId': '0x1ddc5deb3d74670455ceed02750509b6841ec0f2d0c57df96a32ca448ceb3fd4:log:12', 'hash': '0x1ddc5deb3d74670455ceed02750509b6841ec0f2d0c57df96a32ca448ceb3fd4', 'from': '0x00c0a318ff56406bfb75406eb4831197776a82fe', 'to': '0x009bb5e9fcf28e5e601b7d0e9e821da6365d0a9c', 'value': 81808.03193695779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1152d282192235025de0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:40:42.000Z'}}, {'blockNum': '0x4b6818', 'uniqueId': '0xb315807a035ac47d6927a7cbffe060abbf55f4706cf605cfeb1ec82ff719f1a7:log:81', 'hash': '0xb315807a035ac47d6927a7cbffe060abbf55f4706cf605cfeb1ec82ff719f1a7', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x3480fcbc4325e34ed9dcc3241f817ef6dc8dd848', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:42:39.000Z'}}, {'blockNum': '0x4b6819', 'uniqueId': '0xb89bac42989e3c57593d8cabcd01ffb8c1b6bd5eefdf840023a1a8af5b5fc6df:log:27', 'hash': '0xb89bac42989e3c57593d8cabcd01ffb8c1b6bd5eefdf840023a1a8af5b5fc6df', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1907.9904401547674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x676eafbc5aaa1c1393', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:43:02.000Z'}}, {'blockNum': '0x4b6819', 'uniqueId': '0xb89bac42989e3c57593d8cabcd01ffb8c1b6bd5eefdf840023a1a8af5b5fc6df:log:29', 'hash': '0xb89bac42989e3c57593d8cabcd01ffb8c1b6bd5eefdf840023a1a8af5b5fc6df', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 1907.9904401547674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x676eafbc5aaa1c1393', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:43:02.000Z'}}, {'blockNum': '0x4b6819', 'uniqueId': '0xd464800d14fe157f16ccf7ccf8acc21d3ef7c8e67432cbe4bf25af5f7be7ad60:log:64', 'hash': '0xd464800d14fe157f16ccf7ccf8acc21d3ef7c8e67432cbe4bf25af5f7be7ad60', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xb03fad2c42f0a122f54ce5c55507e5a15463bbb7', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:43:02.000Z'}}, {'blockNum': '0x4b681a', 'uniqueId': '0xae710f28d7f9c4fe612edc7bba5522cab48fc8387d03652acb4906c6280f5fdc:log:20', 'hash': '0xae710f28d7f9c4fe612edc7bba5522cab48fc8387d03652acb4906c6280f5fdc', 'from': '0x7015b8a8c07fc73e968e445f4a7b236a7d90d44a', 'to': '0xb048466e9234f56a4242f80ce33087380fd957e5', 'value': 1.86388537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19ddd9de64e5c400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:43:21.000Z'}}, {'blockNum': '0x4b681b', 'uniqueId': '0xe50b57674802fd3c8ed49975078d37e13d0aa17803784d189fc6046466dc945f:log:34', 'hash': '0xe50b57674802fd3c8ed49975078d37e13d0aa17803784d189fc6046466dc945f', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 1907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6760f0fc47edec0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:43:25.000Z'}}, {'blockNum': '0x4b681d', 'uniqueId': '0x000d5627b0f13ae0d0669fc64079b87aa1f35612e6ecb721bc3a7d31a43e31c1:log:2', 'hash': '0x000d5627b0f13ae0d0669fc64079b87aa1f35612e6ecb721bc3a7d31a43e31c1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'value': 360.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x138af147fd38520000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:43:57.000Z'}}, {'blockNum': '0x4b681f', 'uniqueId': '0x9d3f16d202011b4bfb271234493024dd27309ac5383660ff1ed1ec03f97c42bf:log:31', 'hash': '0x9d3f16d202011b4bfb271234493024dd27309ac5383660ff1ed1ec03f97c42bf', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'value': 144.394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07d3de89f7c1c10000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:44:40.000Z'}}, {'blockNum': '0x4b6820', 'uniqueId': '0xe506f74017d89973b6f5d5efa39eb2f448f4db6a9ebbc2d4199ee0fa3c47f958:log:84', 'hash': '0xe506f74017d89973b6f5d5efa39eb2f448f4db6a9ebbc2d4199ee0fa3c47f958', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xb25868efd37e634cab807fe910cb168f740e7880', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:44:53.000Z'}}, {'blockNum': '0x4b6823', 'uniqueId': '0x59459f7fdba260d0bd2f13905a90579a2792e60a7b7bcd6147dabbfd87881e6b:log:63', 'hash': '0x59459f7fdba260d0bd2f13905a90579a2792e60a7b7bcd6147dabbfd87881e6b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 71.03929477568867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03d9de4637572fce08', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:45:23.000Z'}}, {'blockNum': '0x4b6823', 'uniqueId': '0x59459f7fdba260d0bd2f13905a90579a2792e60a7b7bcd6147dabbfd87881e6b:log:66', 'hash': '0x59459f7fdba260d0bd2f13905a90579a2792e60a7b7bcd6147dabbfd87881e6b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 71.03929477568867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03d9de4637572fce08', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:45:23.000Z'}}, {'blockNum': '0x4b6825', 'uniqueId': '0xb8941b08ba4913085660b282dae6436b0678e3984dfe1fb27058ab45d4035490:log:11', 'hash': '0xb8941b08ba4913085660b282dae6436b0678e3984dfe1fb27058ab45d4035490', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xef5b58cb9515355b21ddf2f8b54266fdf948456d', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:45:34.000Z'}}, {'blockNum': '0x4b6828', 'uniqueId': '0x3e8b426a758c15d4ff54db5a671c2d46e60be1fbc44b7f7865589d746b6d17a1:log:9', 'hash': '0x3e8b426a758c15d4ff54db5a671c2d46e60be1fbc44b7f7865589d746b6d17a1', 'from': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:46:31.000Z'}}, {'blockNum': '0x4b6828', 'uniqueId': '0x412fb4aaae46e82a684f53174079dcfbb47dbc346dbb73c24511a2b756ac7cd4:log:69', 'hash': '0x412fb4aaae46e82a684f53174079dcfbb47dbc346dbb73c24511a2b756ac7cd4', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xa82b1008ed14ff74d42aa4f4cb81d9e7ea672d7a', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:46:31.000Z'}}, {'blockNum': '0x4b6829', 'uniqueId': '0xc1f59f203f03e591f3084a46febc983a966b40851a8ba5212490cd32285ac083:log:55', 'hash': '0xc1f59f203f03e591f3084a46febc983a966b40851a8ba5212490cd32285ac083', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xbd2c655c9fc40af89c2c5adbc507049b24ccb9ec', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:46:53.000Z'}}, {'blockNum': '0x4b6834', 'uniqueId': '0x68ec4ac5469ccb587bc8ed55583908012007521d6407f12112d6080f5a124ec4:log:77', 'hash': '0x68ec4ac5469ccb587bc8ed55583908012007521d6407f12112d6080f5a124ec4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4329.074857716199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xeaadfb76abd8c2b2d9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:49:14.000Z'}}, {'blockNum': '0x4b6834', 'uniqueId': '0x68ec4ac5469ccb587bc8ed55583908012007521d6407f12112d6080f5a124ec4:log:79', 'hash': '0x68ec4ac5469ccb587bc8ed55583908012007521d6407f12112d6080f5a124ec4', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'value': 4329.074857716199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xeaadfb76abd8c2b2d9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:49:14.000Z'}}, {'blockNum': '0x4b6837', 'uniqueId': '0x62258efe2cd0a82e043d735afe67dedf2020774900b1b36770279116d3095bee:log:46', 'hash': '0x62258efe2cd0a82e043d735afe67dedf2020774900b1b36770279116d3095bee', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xbb3c86073bd4c05829d0d58926f71caa84686dad', 'value': 1.46667477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x145aaceebae0b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:50:48.000Z'}}, {'blockNum': '0x4b683a', 'uniqueId': '0x058f08b2a677d4ec8c6e4ff19bcb6cced043a9f6956227fff8d1567e853398a3:log:4', 'hash': '0x058f08b2a677d4ec8c6e4ff19bcb6cced043a9f6956227fff8d1567e853398a3', 'from': '0x379a2e3ff2199b974215d6428a057d48f3b952eb', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1406.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4c3f1bca0b2aea0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:51:43.000Z'}}, {'blockNum': '0x4b683a', 'uniqueId': '0x3bedd3495f90beec275331e433a83afeccb43b3687e720c9a53369bb99d1f9cc:log:43', 'hash': '0x3bedd3495f90beec275331e433a83afeccb43b3687e720c9a53369bb99d1f9cc', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x956eb928a79351bcab988dd46b61c3956c99be1e', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:51:43.000Z'}}, {'blockNum': '0x4b683b', 'uniqueId': '0x898bf357aafcbc84333fcfe78bfdfc5c2b42d7e1c70f05dd73fbd7855b58dd6b:log:21', 'hash': '0x898bf357aafcbc84333fcfe78bfdfc5c2b42d7e1c70f05dd73fbd7855b58dd6b', 'from': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6760f0fc47edec0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:52:01.000Z'}}, {'blockNum': '0x4b683b', 'uniqueId': '0x8076cb0a1c5a70f1f91927f0c0bf9cc1dccbe9dab1d5d71e0f76acff25621d9e:log:23', 'hash': '0x8076cb0a1c5a70f1f91927f0c0bf9cc1dccbe9dab1d5d71e0f76acff25621d9e', 'from': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 360.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x138af147fd38520000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:52:01.000Z'}}, {'blockNum': '0x4b6844', 'uniqueId': '0x69b270dd329d68ae77fb5c6341e3b12f7a23f2dd3a88aa68df0e166b2dfcac5d:log:18', 'hash': '0x69b270dd329d68ae77fb5c6341e3b12f7a23f2dd3a88aa68df0e166b2dfcac5d', 'from': '0x3480fcbc4325e34ed9dcc3241f817ef6dc8dd848', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:55:40.000Z'}}, {'blockNum': '0x4b6845', 'uniqueId': '0x5b8dcbabd16d5e74b3ef256a757fe0cc7dccf45e0430b930f805589ed602d186:log:24', 'hash': '0x5b8dcbabd16d5e74b3ef256a757fe0cc7dccf45e0430b930f805589ed602d186', 'from': '0xb03fad2c42f0a122f54ce5c55507e5a15463bbb7', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:56:07.000Z'}}, {'blockNum': '0x4b6845', 'uniqueId': '0x16885f240dc44f84dc6bd860a4bf7c9ed0475df764310a95e68827a5939f0f03:log:27', 'hash': '0x16885f240dc44f84dc6bd860a4bf7c9ed0475df764310a95e68827a5939f0f03', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xab0c0b8dbbe6bdc0d0a57becbf913d4d2ddf8932', 'value': 1383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4af8fb048d4d3c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:56:07.000Z'}}, {'blockNum': '0x4b6845', 'uniqueId': '0x7132666ee88bf6075af2ac0a8d579afe53889defbc5ef8d8cf997c63bb5a35e3:log:89', 'hash': '0x7132666ee88bf6075af2ac0a8d579afe53889defbc5ef8d8cf997c63bb5a35e3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 32.16118355318783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01be537a0b5be56601', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:56:07.000Z'}}, {'blockNum': '0x4b6845', 'uniqueId': '0x7132666ee88bf6075af2ac0a8d579afe53889defbc5ef8d8cf997c63bb5a35e3:log:92', 'hash': '0x7132666ee88bf6075af2ac0a8d579afe53889defbc5ef8d8cf997c63bb5a35e3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 32.16118355318783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01be537a0b5be56601', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:56:07.000Z'}}, {'blockNum': '0x4b6846', 'uniqueId': '0x9daa3bd6a0440707c8dca146d2d5cf349b67c4fd11677627fae6f4e79ea6acd9:log:11', 'hash': '0x9daa3bd6a0440707c8dca146d2d5cf349b67c4fd11677627fae6f4e79ea6acd9', 'from': '0x882622ca65db0237785c88ed4a5fae240aa67d99', 'to': '0x512e2d8e36a62538ca8af3653253c44ec4899c73', 'value': 16, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xde0b6b3a76400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:56:11.000Z'}}, {'blockNum': '0x4b6846', 'uniqueId': '0x19ff9b20fb345bf2d123254c0439e2686c23a8d27343b75f0f32f8cea314c6d2:log:71', 'hash': '0x19ff9b20fb345bf2d123254c0439e2686c23a8d27343b75f0f32f8cea314c6d2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3279.647120264448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb1ca3f2f90bb390519', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:56:11.000Z'}}, {'blockNum': '0x4b6846', 'uniqueId': '0x19ff9b20fb345bf2d123254c0439e2686c23a8d27343b75f0f32f8cea314c6d2:log:73', 'hash': '0x19ff9b20fb345bf2d123254c0439e2686c23a8d27343b75f0f32f8cea314c6d2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7f912e5f83e7e68ac9d5cc2d2b3a720c046551f7', 'value': 3279.647120264448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb1ca3f2f90bb390519', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:56:11.000Z'}}, {'blockNum': '0x4b6847', 'uniqueId': '0xf940ae8180f8ad6c1c3a1828b64b77c5a21fa2c2599aa6166cea2e661bf15ba7:log:57', 'hash': '0xf940ae8180f8ad6c1c3a1828b64b77c5a21fa2c2599aa6166cea2e661bf15ba7', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xcbf9c9c217874c9964811d9f3832b4a1baf53f2d', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:56:28.000Z'}}, {'blockNum': '0x4b684b', 'uniqueId': '0xcecf8b51de6c4cd6be084508c76ddb6286721afd36486f9cfa09fa8277f70315:log:20', 'hash': '0xcecf8b51de6c4cd6be084508c76ddb6286721afd36486f9cfa09fa8277f70315', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x010ecc753b432b8a09d727f42830b67f3f572f8a', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:57:15.000Z'}}, {'blockNum': '0x4b684d', 'uniqueId': '0xc86fad9ef825d2bdd988f7c7f679e8f3808ac4265161355f3a442053a483ca1f:log:63', 'hash': '0xc86fad9ef825d2bdd988f7c7f679e8f3808ac4265161355f3a442053a483ca1f', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x7defc3954c907fa7d5ea7913efc83f0770a8933f', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:58:10.000Z'}}, {'blockNum': '0x4b684f', 'uniqueId': '0xeac9148b82384a8bdfbc8315742d4c50228fe2b8498d719751b9333ce71317c2:log:72', 'hash': '0xeac9148b82384a8bdfbc8315742d4c50228fe2b8498d719751b9333ce71317c2', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x06b7ce5e8b711b00371c86bfc9ae1f692233ceae', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:58:37.000Z'}}, {'blockNum': '0x4b6856', 'uniqueId': '0xe0c5148b7e67df278979cd38267b85980470c7042a6b9f21ca35439a7c821ee3:log:2', 'hash': '0xe0c5148b7e67df278979cd38267b85980470c7042a6b9f21ca35439a7c821ee3', 'from': '0xb25868efd37e634cab807fe910cb168f740e7880', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:01:36.000Z'}}, {'blockNum': '0x4b6857', 'uniqueId': '0x1a2ea587eea6565c0a5068e373e2ca61bb24f86d694a5749211bd1d8ea220430:log:132', 'hash': '0x1a2ea587eea6565c0a5068e373e2ca61bb24f86d694a5749211bd1d8ea220430', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x43194d278839a37903e570cd1ad4be959cac2f83', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:01:41.000Z'}}, {'blockNum': '0x4b6859', 'uniqueId': '0xc33546d6ad85a95a61dd5ed7388a25114f3e424372046ab3960b3bf20dbb855f:log:9', 'hash': '0xc33546d6ad85a95a61dd5ed7388a25114f3e424372046ab3960b3bf20dbb855f', 'from': '0x46277982bd95632bd1949b7926248de598ca5777', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:02:18.000Z'}}, {'blockNum': '0x4b6859', 'uniqueId': '0xc5aa9f5df3c21430d053132c97cb6fdda3ea24348a1d5188368cc395355b633b:log:82', 'hash': '0xc5aa9f5df3c21430d053132c97cb6fdda3ea24348a1d5188368cc395355b633b', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x23395194df46d4c0cd4f77470bfee70b67b79e2c', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:02:18.000Z'}}, {'blockNum': '0x4b685a', 'uniqueId': '0x0131a85c60fe964f7fda8624f89cc7f40799ee70bfb6ad2efa794bed946aa3fb:log:27', 'hash': '0x0131a85c60fe964f7fda8624f89cc7f40799ee70bfb6ad2efa794bed946aa3fb', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x474985b2cc35638282377659057feda3498b9ea1', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:02:22.000Z'}}, {'blockNum': '0x4b685f', 'uniqueId': '0xc15eb838de382b4fa6d346b076d0eb081c606d6138aa3f974a7971a8b9ec12ed:log:20', 'hash': '0xc15eb838de382b4fa6d346b076d0eb081c606d6138aa3f974a7971a8b9ec12ed', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2457.3602598470097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8536b968ad9e9b8b57', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:03:19.000Z'}}, {'blockNum': '0x4b685f', 'uniqueId': '0xc15eb838de382b4fa6d346b076d0eb081c606d6138aa3f974a7971a8b9ec12ed:log:22', 'hash': '0xc15eb838de382b4fa6d346b076d0eb081c606d6138aa3f974a7971a8b9ec12ed', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x6866e64b72bec90c6b5b33437ff7084052067f86', 'value': 2457.3602598470097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8536b968ad9e9b8b57', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:03:19.000Z'}}, {'blockNum': '0x4b6860', 'uniqueId': '0xfb3d594a7616a172965d7f32b848b177d064e708c6c5966eec60e543cd6659a4:log:66', 'hash': '0xfb3d594a7616a172965d7f32b848b177d064e708c6c5966eec60e543cd6659a4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:03:43.000Z'}}, {'blockNum': '0x4b6861', 'uniqueId': '0xa8330f3f9dede67fde02d507f19803dfeec7c29af4f6cc4f30fdcd0439054fbd:log:28', 'hash': '0xa8330f3f9dede67fde02d507f19803dfeec7c29af4f6cc4f30fdcd0439054fbd', 'from': '0xab0c0b8dbbe6bdc0d0a57becbf913d4d2ddf8932', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4af8fb048d4d3c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:04:31.000Z'}}, {'blockNum': '0x4b6862', 'uniqueId': '0x753741d3d3de71487e809e0fa46b1d8c62710d7447ae6f4d5a7f3da3aa5fe244:log:2', 'hash': '0x753741d3d3de71487e809e0fa46b1d8c62710d7447ae6f4d5a7f3da3aa5fe244', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8fe580e6f488978517106f825339045dce939aa4', 'value': 53.21523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02e28279bd16b5e000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:04:46.000Z'}}, {'blockNum': '0x4b6863', 'uniqueId': '0x9cc3907de38c0a887cc80b29027a044b392a9b7321ba0593c5fa9d538bceae32:log:26', 'hash': '0x9cc3907de38c0a887cc80b29027a044b392a9b7321ba0593c5fa9d538bceae32', 'from': '0x6866e64b72bec90c6b5b33437ff7084052067f86', 'to': '0xaf52bcc41ca1af3ed5c3d2f3a27647433167b214', 'value': 2457.3602598470097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8536b968ad9e9b8b57', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:04:54.000Z'}}, {'blockNum': '0x4b6865', 'uniqueId': '0x9d187c9b0a9cd0dc05a4e5764d4aa7add27aa5ce5f08da884ffd6642dc3426ca:log:33', 'hash': '0x9d187c9b0a9cd0dc05a4e5764d4aa7add27aa5ce5f08da884ffd6642dc3426ca', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4323.893178268129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xea661270aabe9b4143', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:05:19.000Z'}}, {'blockNum': '0x4b6865', 'uniqueId': '0x9d187c9b0a9cd0dc05a4e5764d4aa7add27aa5ce5f08da884ffd6642dc3426ca:log:35', 'hash': '0x9d187c9b0a9cd0dc05a4e5764d4aa7add27aa5ce5f08da884ffd6642dc3426ca', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'value': 4323.893178268129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xea661270aabe9b4143', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:05:19.000Z'}}, {'blockNum': '0x4b6867', 'uniqueId': '0x9a6b90869ed0b5714ba9b98c26b83615023d7fe603eded3868a985370b9e0d47:log:39', 'hash': '0x9a6b90869ed0b5714ba9b98c26b83615023d7fe603eded3868a985370b9e0d47', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x3e45521f66466db692f9c96f1e7a97005b0ec10a', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:05:42.000Z'}}, {'blockNum': '0x4b6868', 'uniqueId': '0x031cf41c1f626928292c66806dc4e3cc0c81cda20de9b92ed2fbe8a9a0d9fa24:log:3', 'hash': '0x031cf41c1f626928292c66806dc4e3cc0c81cda20de9b92ed2fbe8a9a0d9fa24', 'from': '0xbe152c58f170bfff3992ccb848d865ee5b75e00e', 'to': '0x90557207a5e94da81b35c61ee28ce065e076a552', 'value': 13.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xbcbce7f1b1500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:05:49.000Z'}}, {'blockNum': '0x4b686a', 'uniqueId': '0x435a6950b2e0acf97d3f09f4e3760b7c87b70000e95f9c761635fcd9db4cd2ba:log:11', 'hash': '0x435a6950b2e0acf97d3f09f4e3760b7c87b70000e95f9c761635fcd9db4cd2ba', 'from': '0xa82b1008ed14ff74d42aa4f4cb81d9e7ea672d7a', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:06:10.000Z'}}, {'blockNum': '0x4b686a', 'uniqueId': '0xba1e63dcf7a60c658227364c36e38b0c2dafb89973f0ccb811c5888d45607df9:log:17', 'hash': '0xba1e63dcf7a60c658227364c36e38b0c2dafb89973f0ccb811c5888d45607df9', 'from': '0x956eb928a79351bcab988dd46b61c3956c99be1e', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:06:10.000Z'}}, {'blockNum': '0x4b686a', 'uniqueId': '0x5238239176598ec73117ed243a6a2ae9db4ce6831428910b25db48f3f3fb35ff:log:36', 'hash': '0x5238239176598ec73117ed243a6a2ae9db4ce6831428910b25db48f3f3fb35ff', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2487.7208261539945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x86dc0fcee0922142c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:06:10.000Z'}}, {'blockNum': '0x4b686a', 'uniqueId': '0x5238239176598ec73117ed243a6a2ae9db4ce6831428910b25db48f3f3fb35ff:log:38', 'hash': '0x5238239176598ec73117ed243a6a2ae9db4ce6831428910b25db48f3f3fb35ff', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 2487.7208261539945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x86dc0fcee0922142c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:06:10.000Z'}}, {'blockNum': '0x4b686a', 'uniqueId': '0x34e8f64b14c2e81a42142b325d5edcb85a6d5510dbf699803a8c08157a8d272b:log:61', 'hash': '0x34e8f64b14c2e81a42142b325d5edcb85a6d5510dbf699803a8c08157a8d272b', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xe688cb18d16c3fc477b05fbd425b2c2933c90558', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:06:10.000Z'}}, {'blockNum': '0x4b686b', 'uniqueId': '0x30200d2d688003c753add5f39dfd24d6e3607d229b92aca39a123aafb667fb1d:log:18', 'hash': '0x30200d2d688003c753add5f39dfd24d6e3607d229b92aca39a123aafb667fb1d', 'from': '0xef5b58cb9515355b21ddf2f8b54266fdf948456d', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:07:01.000Z'}}, {'blockNum': '0x4b686b', 'uniqueId': '0x31ceab59bdbfea6372f441a6fe70be452785a614f1e568521134f0506c9e0b78:log:19', 'hash': '0x31ceab59bdbfea6372f441a6fe70be452785a614f1e568521134f0506c9e0b78', 'from': '0xbd2c655c9fc40af89c2c5adbc507049b24ccb9ec', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:07:01.000Z'}}, {'blockNum': '0x4b686c', 'uniqueId': '0x721ca51b2b6f2ea7275f3e78eb680689f006a2978f6db3d4e62cf3f4a1f29ea6:log:33', 'hash': '0x721ca51b2b6f2ea7275f3e78eb680689f006a2978f6db3d4e62cf3f4a1f29ea6', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 2488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x86dfefa202d3e00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:07:39.000Z'}}, {'blockNum': '0x4b686e', 'uniqueId': '0x80978635267908881e409cda942389573a0a0fccb15b3ab9431e2cc3df150c59:log:50', 'hash': '0x80978635267908881e409cda942389573a0a0fccb15b3ab9431e2cc3df150c59', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xe0ec7759cd5d46a0a1085ec3457c3e37a75ac0e3', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:07:55.000Z'}}, {'blockNum': '0x4b686e', 'uniqueId': '0xfbbed366cee7027aa4b0152b81133a6b51ccee460f14ec093958721de2d30d4f:log:51', 'hash': '0xfbbed366cee7027aa4b0152b81133a6b51ccee460f14ec093958721de2d30d4f', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xcdd88911a61a49bfce1427ec78af6bc86314b242', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:07:55.000Z'}}, {'blockNum': '0x4b686e', 'uniqueId': '0x42dee54ca137cd70f5e9ab9b354b3d95df4b86117a84f0a789048b12a4ce952f:log:52', 'hash': '0x42dee54ca137cd70f5e9ab9b354b3d95df4b86117a84f0a789048b12a4ce952f', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x60265fdcbe88fa351f39dda656854333c1804f74', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:07:55.000Z'}}, {'blockNum': '0x4b6870', 'uniqueId': '0x328dfbc054b5116efeb8ce81f9062da3044d01a905f6b3cd7dc2c1e305851edc:log:30', 'hash': '0x328dfbc054b5116efeb8ce81f9062da3044d01a905f6b3cd7dc2c1e305851edc', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x19c38c345e5d5aad595c1747580c114799b93e40', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:08:14.000Z'}}, {'blockNum': '0x4b6870', 'uniqueId': '0x3d38fdb94a3586b7f24b6a66b0a2c3587a109b70effe897c9b3b5e634658ce70:log:59', 'hash': '0x3d38fdb94a3586b7f24b6a66b0a2c3587a109b70effe897c9b3b5e634658ce70', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 182.40400446408043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09e35d33a46a479b91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:08:14.000Z'}}, {'blockNum': '0x4b6870', 'uniqueId': '0x3d38fdb94a3586b7f24b6a66b0a2c3587a109b70effe897c9b3b5e634658ce70:log:61', 'hash': '0x3d38fdb94a3586b7f24b6a66b0a2c3587a109b70effe897c9b3b5e634658ce70', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 182.40400446408043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09e35d33a46a479b91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:08:14.000Z'}}, {'blockNum': '0x4b6871', 'uniqueId': '0xa37fdbbe1bd831e598485729bf738b8844f62d6ea51ecbb47712e93ce89cb9b0:log:34', 'hash': '0xa37fdbbe1bd831e598485729bf738b8844f62d6ea51ecbb47712e93ce89cb9b0', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xf484a652c95611431e9abe3f1b0f3fed555f063c', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:08:24.000Z'}}, {'blockNum': '0x4b6871', 'uniqueId': '0x853bf2a714e73963731f314c90fdf4ddca0ac6843d1360a3ed2946b4d46b8807:log:35', 'hash': '0x853bf2a714e73963731f314c90fdf4ddca0ac6843d1360a3ed2946b4d46b8807', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xc87a7117d470a7f470ec7154f2943261cfa5c8c8', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:08:24.000Z'}}, {'blockNum': '0x4b6871', 'uniqueId': '0x557af4a5c30c29cc430c37489393678f667fadcdba02cc1dac1baf1d2d1018cd:log:36', 'hash': '0x557af4a5c30c29cc430c37489393678f667fadcdba02cc1dac1baf1d2d1018cd', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x6d764f07d6daa62f340d151f93d5b5ecc87eb104', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:08:24.000Z'}}, {'blockNum': '0x4b6879', 'uniqueId': '0x199c45fa455bceadcc5901a9897aa30a7f4b46ef10b2e06f54bd2dd0911a12ed:log:67', 'hash': '0x199c45fa455bceadcc5901a9897aa30a7f4b46ef10b2e06f54bd2dd0911a12ed', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xe265b50d0c49de9a8183ba5c423ba9b9061191bf', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:10:23.000Z'}}, {'blockNum': '0x4b687d', 'uniqueId': '0x51bb72b5bf72ed2bf441c0e7d3938f930c38c610e01860de888e7ff9a34bd376:log:12', 'hash': '0x51bb72b5bf72ed2bf441c0e7d3938f930c38c610e01860de888e7ff9a34bd376', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x00e3ef121b19f47de8293f181f2ec50260982aad', 'value': 110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05f68e8131ecf80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:12:38.000Z'}}, {'blockNum': '0x4b687d', 'uniqueId': '0x09902791afc96adf7c277a38d4eb5b4bd27a19f294789f140d8834e9e620de35:log:77', 'hash': '0x09902791afc96adf7c277a38d4eb5b4bd27a19f294789f140d8834e9e620de35', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x0c7681eca92b2acadae83749e885019885d81485', 'value': 223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c16bf267ed01c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:12:38.000Z'}}, {'blockNum': '0x4b6882', 'uniqueId': '0xfdfcb6b03444613041e9b4a5836bacb39783f22a1871eec27f4b3b7d09793aef:log:68', 'hash': '0xfdfcb6b03444613041e9b4a5836bacb39783f22a1871eec27f4b3b7d09793aef', 'from': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:13:49.000Z'}}, {'blockNum': '0x4b6882', 'uniqueId': '0x8089c107974cd80714b7bbb77b37816c801630f3936fefd9bbe01dd47e45ff2e:log:87', 'hash': '0x8089c107974cd80714b7bbb77b37816c801630f3936fefd9bbe01dd47e45ff2e', 'from': '0xaf52bcc41ca1af3ed5c3d2f3a27647433167b214', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2457.36025984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8536b968abfcce0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:13:49.000Z'}}, {'blockNum': '0x4b6886', 'uniqueId': '0xa8f877152c5c83e685517fb3970346d600a62ef00318920647dc0a9e15a80454:log:70', 'hash': '0xa8f877152c5c83e685517fb3970346d600a62ef00318920647dc0a9e15a80454', 'from': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1561.5799512225674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x54a746740820f4136d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:14:29.000Z'}}, {'blockNum': '0x4b6886', 'uniqueId': '0xa8f877152c5c83e685517fb3970346d600a62ef00318920647dc0a9e15a80454:log:72', 'hash': '0xa8f877152c5c83e685517fb3970346d600a62ef00318920647dc0a9e15a80454', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1561.5799512225674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x54a746740820f4136d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:14:29.000Z'}}, {'blockNum': '0x4b688a', 'uniqueId': '0x46a360b21520047098916b25d5d6227bbd525ac8860bd8c4a1b543918f17d8de:log:25', 'hash': '0x46a360b21520047098916b25d5d6227bbd525ac8860bd8c4a1b543918f17d8de', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4470.266126760435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf255679dcdb91676dc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:15:08.000Z'}}, {'blockNum': '0x4b688a', 'uniqueId': '0x46a360b21520047098916b25d5d6227bbd525ac8860bd8c4a1b543918f17d8de:log:27', 'hash': '0x46a360b21520047098916b25d5d6227bbd525ac8860bd8c4a1b543918f17d8de', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4470.266126760435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf255679dcdb91676dc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:15:08.000Z'}}, {'blockNum': '0x4b688e', 'uniqueId': '0xf75464ae50167ac4f47a8a74666645c03b795edf71f53d0287e8f0bb8958a092:log:3', 'hash': '0xf75464ae50167ac4f47a8a74666645c03b795edf71f53d0287e8f0bb8958a092', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x01bcac86e3f04eca9714d67d4f84b69ea952e89f', 'value': 17.262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xef8ef18ac0cb0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:15:25.000Z'}}, {'blockNum': '0x4b6892', 'uniqueId': '0x7ef34531c1b088dd9f95aedf880139d2e39b48fa57b7ee1733e3a02ff2ae250c:log:13', 'hash': '0x7ef34531c1b088dd9f95aedf880139d2e39b48fa57b7ee1733e3a02ff2ae250c', 'from': '0x23395194df46d4c0cd4f77470bfee70b67b79e2c', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:16:39.000Z'}}, {'blockNum': '0x4b6893', 'uniqueId': '0x3a555b2c1d1bc8bc5349498a7939b95b8d08beb8da4e1536b1c540a73cfbbd76:log:21', 'hash': '0x3a555b2c1d1bc8bc5349498a7939b95b8d08beb8da4e1536b1c540a73cfbbd76', 'from': '0x010ecc753b432b8a09d727f42830b67f3f572f8a', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:16:46.000Z'}}, {'blockNum': '0x4b6893', 'uniqueId': '0x6b51aa6406dadd31440f6f90e8c36b6b296e39c4c3031a8d9a40690cf860a44a:log:42', 'hash': '0x6b51aa6406dadd31440f6f90e8c36b6b296e39c4c3031a8d9a40690cf860a44a', 'from': '0xa9aabbfa7d2f1a7e946186cdfe056c9693fe3841', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 9.34503512507984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x81b03bef23ee91f6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:16:46.000Z'}}, {'blockNum': '0x4b6893', 'uniqueId': '0x6b51aa6406dadd31440f6f90e8c36b6b296e39c4c3031a8d9a40690cf860a44a:log:44', 'hash': '0x6b51aa6406dadd31440f6f90e8c36b6b296e39c4c3031a8d9a40690cf860a44a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 9.34503512507984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x81b03bef23ee91f6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:16:46.000Z'}}, {'blockNum': '0x4b6894', 'uniqueId': '0x98b7627cdfbd41ecbbf8d2f9e8b09f4767e05f056d9abe14094b4a475ba84907:log:6', 'hash': '0x98b7627cdfbd41ecbbf8d2f9e8b09f4767e05f056d9abe14094b4a475ba84907', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x8ec9aed780c02f13e9865a66660b71a42f3c3817', 'value': 15.47987616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd6d3915a03d68000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:16:56.000Z'}}, {'blockNum': '0x4b6894', 'uniqueId': '0x02a429b43e087448cd3e97384adee3a048da7e8714fecbf7c7e29b127593d22f:log:9', 'hash': '0x02a429b43e087448cd3e97384adee3a048da7e8714fecbf7c7e29b127593d22f', 'from': '0x43194d278839a37903e570cd1ad4be959cac2f83', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:16:56.000Z'}}, {'blockNum': '0x4b6894', 'uniqueId': '0x28383ae305f5b6d45cc163e4ec0ffaf6c10e7a54152c3f53aa81833c1c3d041d:log:104', 'hash': '0x28383ae305f5b6d45cc163e4ec0ffaf6c10e7a54152c3f53aa81833c1c3d041d', 'from': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x86dfefa202d3e00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:16:56.000Z'}}, {'blockNum': '0x4b6895', 'uniqueId': '0xa7e09319752ff361de7346407b8717a1380110a646e6299e02672ce2da6383d1:log:28', 'hash': '0xa7e09319752ff361de7346407b8717a1380110a646e6299e02672ce2da6383d1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 12.470298730558454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xad0f669ffdf0fd41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:17:01.000Z'}}, {'blockNum': '0x4b6895', 'uniqueId': '0xa7e09319752ff361de7346407b8717a1380110a646e6299e02672ce2da6383d1:log:31', 'hash': '0xa7e09319752ff361de7346407b8717a1380110a646e6299e02672ce2da6383d1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 12.470298730558454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xad0f669ffdf0fd41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:17:01.000Z'}}, {'blockNum': '0x4b6896', 'uniqueId': '0x0e177a1b5b180ee999676fee4e0d83340ac9b68f1783304f41ba75f353758758:log:58', 'hash': '0x0e177a1b5b180ee999676fee4e0d83340ac9b68f1783304f41ba75f353758758', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4467.895462927692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf23481539ba886f54b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:17:20.000Z'}}, {'blockNum': '0x4b6896', 'uniqueId': '0x0e177a1b5b180ee999676fee4e0d83340ac9b68f1783304f41ba75f353758758:log:60', 'hash': '0x0e177a1b5b180ee999676fee4e0d83340ac9b68f1783304f41ba75f353758758', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4467.895462927692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf23481539ba886f54b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:17:20.000Z'}}, {'blockNum': '0x4b6897', 'uniqueId': '0x964a0b90d31a15c8066dcecee44d22fd8807b3d4e559c98a6d9bfd4f18d61f24:log:6', 'hash': '0x964a0b90d31a15c8066dcecee44d22fd8807b3d4e559c98a6d9bfd4f18d61f24', 'from': '0x7defc3954c907fa7d5ea7913efc83f0770a8933f', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:17:35.000Z'}}, {'blockNum': '0x4b6897', 'uniqueId': '0x1d9843322b02d0331d388d1715a17edf336752e42f8e58b7d0195f4b05cd29d6:log:8', 'hash': '0x1d9843322b02d0331d388d1715a17edf336752e42f8e58b7d0195f4b05cd29d6', 'from': '0x06b7ce5e8b711b00371c86bfc9ae1f692233ceae', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:17:35.000Z'}}, {'blockNum': '0x4b6897', 'uniqueId': '0x7a64bfd8a0b171ddbe12aeef5427170f40e5aa570e22e51c62969304d6dc5f28:log:9', 'hash': '0x7a64bfd8a0b171ddbe12aeef5427170f40e5aa570e22e51c62969304d6dc5f28', 'from': '0x474985b2cc35638282377659057feda3498b9ea1', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:17:35.000Z'}}, {'blockNum': '0x4b6897', 'uniqueId': '0x93c5b1c5909b70b3ac96227291c4a764b5a50ac3047c7e79d62584525dc84cf5:log:10', 'hash': '0x93c5b1c5909b70b3ac96227291c4a764b5a50ac3047c7e79d62584525dc84cf5', 'from': '0xcbf9c9c217874c9964811d9f3832b4a1baf53f2d', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:17:35.000Z'}}, {'blockNum': '0x4b68a0', 'uniqueId': '0xe967b64d8098a86140bec55dcb48e38de5a3e63f2dbb6bbd281fe7695968ab31:log:81', 'hash': '0xe967b64d8098a86140bec55dcb48e38de5a3e63f2dbb6bbd281fe7695968ab31', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4465.529105521237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf213aa5615992e814b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:20:10.000Z'}}, {'blockNum': '0x4b68a0', 'uniqueId': '0xe967b64d8098a86140bec55dcb48e38de5a3e63f2dbb6bbd281fe7695968ab31:log:83', 'hash': '0xe967b64d8098a86140bec55dcb48e38de5a3e63f2dbb6bbd281fe7695968ab31', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4465.529105521237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf213aa5615992e814b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:20:10.000Z'}}, {'blockNum': '0x4b68a0', 'uniqueId': '0x00879f3406d243734bc946837889597adbb0ada7be385ca972ec02b6ba202dc7:log:92', 'hash': '0x00879f3406d243734bc946837889597adbb0ada7be385ca972ec02b6ba202dc7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.7440577686094088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a536c992e55670e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:20:10.000Z'}}, {'blockNum': '0x4b68a0', 'uniqueId': '0x00879f3406d243734bc946837889597adbb0ada7be385ca972ec02b6ba202dc7:log:95', 'hash': '0x00879f3406d243734bc946837889597adbb0ada7be385ca972ec02b6ba202dc7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'value': 0.7440577686094088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a536c992e55670e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:20:10.000Z'}}, {'blockNum': '0x4b68a6', 'uniqueId': '0x5367e71a09aae5c394a09032404b15ca20f9168931443f3978884ad87fc41953:log:57', 'hash': '0x5367e71a09aae5c394a09032404b15ca20f9168931443f3978884ad87fc41953', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1.488115340242807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14a6d9047ffb6865', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:22:07.000Z'}}, {'blockNum': '0x4b68a6', 'uniqueId': '0x5367e71a09aae5c394a09032404b15ca20f9168931443f3978884ad87fc41953:log:60', 'hash': '0x5367e71a09aae5c394a09032404b15ca20f9168931443f3978884ad87fc41953', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 1.488115340242807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14a6d9047ffb6865', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:22:07.000Z'}}, {'blockNum': '0x4b68a8', 'uniqueId': '0x2f6d2a48d6272e8df1f24ed8aed3ead40e9865f0c445393cb706262d3e25910d:log:76', 'hash': '0x2f6d2a48d6272e8df1f24ed8aed3ead40e9865f0c445393cb706262d3e25910d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4463.164211234457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf1f2d88b42a24a4896', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:22:37.000Z'}}, {'blockNum': '0x4b68a8', 'uniqueId': '0x2f6d2a48d6272e8df1f24ed8aed3ead40e9865f0c445393cb706262d3e25910d:log:78', 'hash': '0x2f6d2a48d6272e8df1f24ed8aed3ead40e9865f0c445393cb706262d3e25910d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4463.164211234457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf1f2d88b42a24a4896', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:22:37.000Z'}}, {'blockNum': '0x4b68b0', 'uniqueId': '0x470b2f9be7b0d6c7ce1279e38eea82fcad58e0650652c8eccbd07c0cd5860aef:log:57', 'hash': '0x470b2f9be7b0d6c7ce1279e38eea82fcad58e0650652c8eccbd07c0cd5860aef', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4460.803139270411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf1d21454d1882b569a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:25:17.000Z'}}, {'blockNum': '0x4b68b0', 'uniqueId': '0x470b2f9be7b0d6c7ce1279e38eea82fcad58e0650652c8eccbd07c0cd5860aef:log:59', 'hash': '0x470b2f9be7b0d6c7ce1279e38eea82fcad58e0650652c8eccbd07c0cd5860aef', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4460.803139270411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf1d21454d1882b569a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:25:17.000Z'}}, {'blockNum': '0x4b68b0', 'uniqueId': '0x7c310661f34012a950bfe92e3e562cd60548825219069f7e882f426876363d4b:log:97', 'hash': '0x7c310661f34012a950bfe92e3e562cd60548825219069f7e882f426876363d4b', 'from': '0x7f912e5f83e7e68ac9d5cc2d2b3a720c046551f7', 'to': '0xdbc198992ede50a6679d42bcbdc7cb68ad06ed35', 'value': 3279.647120264448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb1ca3f2f90bb390519', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:25:17.000Z'}}, {'blockNum': '0x4b68b7', 'uniqueId': '0x0e0023f59193add1d7731fdd4d21bc63796b1aa15e97b3ff7ac8470ac3a20977:log:23', 'hash': '0x0e0023f59193add1d7731fdd4d21bc63796b1aa15e97b3ff7ac8470ac3a20977', 'from': '0x0c7681eca92b2acadae83749e885019885d81485', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c16bf267ed01c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:27:21.000Z'}}, {'blockNum': '0x4b68b8', 'uniqueId': '0x549c6e354602d7820cc78ea829a2c892c04f558aac6af543cd8494c44565bc3a:log:37', 'hash': '0x549c6e354602d7820cc78ea829a2c892c04f558aac6af543cd8494c44565bc3a', 'from': '0x19c38c345e5d5aad595c1747580c114799b93e40', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:27:31.000Z'}}, {'blockNum': '0x4b68b8', 'uniqueId': '0x4ff40cadc63cba52d510b870202fbb41c1c3baecbfc0a10d26136049e897616f:log:38', 'hash': '0x4ff40cadc63cba52d510b870202fbb41c1c3baecbfc0a10d26136049e897616f', 'from': '0xf484a652c95611431e9abe3f1b0f3fed555f063c', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:27:31.000Z'}}, {'blockNum': '0x4b68b8', 'uniqueId': '0xd39c496baa392c80c9cb8914f5cffdfd0bf1222cce717e284d88478da64e93aa:log:39', 'hash': '0xd39c496baa392c80c9cb8914f5cffdfd0bf1222cce717e284d88478da64e93aa', 'from': '0x6d764f07d6daa62f340d151f93d5b5ecc87eb104', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:27:31.000Z'}}, {'blockNum': '0x4b68b9', 'uniqueId': '0x2fd5c686a18be784b05fe6c9c6f77fc10e4a4682bffa1b15f26955d14f3a3e84:log:11', 'hash': '0x2fd5c686a18be784b05fe6c9c6f77fc10e4a4682bffa1b15f26955d14f3a3e84', 'from': '0xe265b50d0c49de9a8183ba5c423ba9b9061191bf', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:27:47.000Z'}}, {'blockNum': '0x4b68bd', 'uniqueId': '0xa6afd74ef787729b847d0edde8e20484122adb83c20437f32f4a25dbc4e096c3:log:9', 'hash': '0xa6afd74ef787729b847d0edde8e20484122adb83c20437f32f4a25dbc4e096c3', 'from': '0x3e45521f66466db692f9c96f1e7a97005b0ec10a', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:28:23.000Z'}}, {'blockNum': '0x4b68bd', 'uniqueId': '0x969d169cbcc9baccbb956d265803342e11486ee33e9b10187b6b3dbbc36cc41e:log:10', 'hash': '0x969d169cbcc9baccbb956d265803342e11486ee33e9b10187b6b3dbbc36cc41e', 'from': '0xe0ec7759cd5d46a0a1085ec3457c3e37a75ac0e3', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:28:23.000Z'}}, {'blockNum': '0x4b68bd', 'uniqueId': '0x5eb4f1e5058e9300d94a5a4642440bce8ef2c24edde1ff1d3a7dfabe52c0aa2b:log:13', 'hash': '0x5eb4f1e5058e9300d94a5a4642440bce8ef2c24edde1ff1d3a7dfabe52c0aa2b', 'from': '0x60265fdcbe88fa351f39dda656854333c1804f74', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:28:23.000Z'}}, {'blockNum': '0x4b68bd', 'uniqueId': '0x4c27289ad81a048516eadefcd314cb1991d53cccd2f807ea103f9af081b1a420:log:20', 'hash': '0x4c27289ad81a048516eadefcd314cb1991d53cccd2f807ea103f9af081b1a420', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x3b762e0062b977fb41eb3d462c0dabd29797a794', 'value': 399, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15a13cc201e4dc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:28:23.000Z'}}, {'blockNum': '0x4b68be', 'uniqueId': '0xb3403352acdd833d9524af2fa74cb5fc63667f6032a0abe143d5d89452b77ae5:log:41', 'hash': '0xb3403352acdd833d9524af2fa74cb5fc63667f6032a0abe143d5d89452b77ae5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2080.900862063924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x70ce4cf4f63c4e7bcd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:28:27.000Z'}}, {'blockNum': '0x4b68be', 'uniqueId': '0xb3403352acdd833d9524af2fa74cb5fc63667f6032a0abe143d5d89452b77ae5:log:43', 'hash': '0xb3403352acdd833d9524af2fa74cb5fc63667f6032a0abe143d5d89452b77ae5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2080.900862063924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x70ce4cf4f63c4e7bcd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:28:27.000Z'}}, {'blockNum': '0x4b68bf', 'uniqueId': '0xe818d1ccb88671680eb13852083c2bac17f1e4e0ce2293f927a6f26f5eb001ca:log:5', 'hash': '0xe818d1ccb88671680eb13852083c2bac17f1e4e0ce2293f927a6f26f5eb001ca', 'from': '0xc87a7117d470a7f470ec7154f2943261cfa5c8c8', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:28:39.000Z'}}, {'blockNum': '0x4b68bf', 'uniqueId': '0x9b1b772c0648536d146062b804dd643477fa6ef53d27638185c31677c58da966:log:6', 'hash': '0x9b1b772c0648536d146062b804dd643477fa6ef53d27638185c31677c58da966', 'from': '0xe688cb18d16c3fc477b05fbd425b2c2933c90558', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:28:39.000Z'}}, {'blockNum': '0x4b68c0', 'uniqueId': '0xf6e0e50104191c46b55271677f1a08f6ae44bed19da86c59c05338e6f89aa39e:log:8', 'hash': '0xf6e0e50104191c46b55271677f1a08f6ae44bed19da86c59c05338e6f89aa39e', 'from': '0xcdd88911a61a49bfce1427ec78af6bc86314b242', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:28:53.000Z'}}, {'blockNum': '0x4b68c2', 'uniqueId': '0xd44fa3432d47ae5fb16449eee99893661c6d753516becbf6403100b9c3421636:log:27', 'hash': '0xd44fa3432d47ae5fb16449eee99893661c6d753516becbf6403100b9c3421636', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:29:28.000Z'}}, {'blockNum': '0x4b68c4', 'uniqueId': '0x8430312ab4d667e6d48fa3fba73743ad5790b27f4d1423bd36f65a774b811714:log:65', 'hash': '0x8430312ab4d667e6d48fa3fba73743ad5790b27f4d1423bd36f65a774b811714', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'value': 355.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13458db67af35e0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:29:46.000Z'}}, {'blockNum': '0x4b68ca', 'uniqueId': '0xcafd55c3fdf2279a5e441aa8d0508025fde9f4d2c6b1644100e8940e2e5253aa:log:3', 'hash': '0xcafd55c3fdf2279a5e441aa8d0508025fde9f4d2c6b1644100e8940e2e5253aa', 'from': '0xcb0280f1b08f643bc25abcdab16a7918c8b41423', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 174.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0970d1165052470000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:31:12.000Z'}}, {'blockNum': '0x4b68ce', 'uniqueId': '0x073c48c7c311464bf11ef4e2511d0a830f337a438bf30023443eeca513406ac8:log:12', 'hash': '0x073c48c7c311464bf11ef4e2511d0a830f337a438bf30023443eeca513406ac8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2483.344634271313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x869f54738bc5fa4ca2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:32:01.000Z'}}, {'blockNum': '0x4b68ce', 'uniqueId': '0x073c48c7c311464bf11ef4e2511d0a830f337a438bf30023443eeca513406ac8:log:14', 'hash': '0x073c48c7c311464bf11ef4e2511d0a830f337a438bf30023443eeca513406ac8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 2483.344634271313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x869f54738bc5fa4ca2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:32:01.000Z'}}, {'blockNum': '0x4b68cf', 'uniqueId': '0xf9c574a866d96c1f79b03550e8f55be7aa63f07f6707ab68ccad802afa2a59cf:log:91', 'hash': '0xf9c574a866d96c1f79b03550e8f55be7aa63f07f6707ab68ccad802afa2a59cf', 'from': '0xdbc198992ede50a6679d42bcbdc7cb68ad06ed35', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 3279.64712026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb1ca3f2f8fb21e2800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:32:22.000Z'}}, {'blockNum': '0x4b68d1', 'uniqueId': '0xa232b7f5fac9ff333ba1a963e4ac2743c82d203d260a7cd504e2ff2cb91a0215:log:68', 'hash': '0xa232b7f5fac9ff333ba1a963e4ac2743c82d203d260a7cd504e2ff2cb91a0215', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 2484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x86a86cc73436500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:33:11.000Z'}}, {'blockNum': '0x4b68d2', 'uniqueId': '0x339b728c3807a4c00a3b5ae01f50d1256d7bd280d7ee8eb992754c3cf666943b:log:52', 'hash': '0x339b728c3807a4c00a3b5ae01f50d1256d7bd280d7ee8eb992754c3cf666943b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x06da1a08f030cf89cbf869cb0e2c9078281afe19', 'value': 58554.54959057854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c663f9d4954d4be6e8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:33:19.000Z'}}, {'blockNum': '0x4b68d2', 'uniqueId': '0x2246a1eb967a7da7097205163ed523ba5f5b0b28abb283498760b20d74bd05b1:log:62', 'hash': '0x2246a1eb967a7da7097205163ed523ba5f5b0b28abb283498760b20d74bd05b1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 10321.910506374765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022f8d48a5b8e02b9b6a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:33:19.000Z'}}, {'blockNum': '0x4b68d2', 'uniqueId': '0x2246a1eb967a7da7097205163ed523ba5f5b0b28abb283498760b20d74bd05b1:log:64', 'hash': '0x2246a1eb967a7da7097205163ed523ba5f5b0b28abb283498760b20d74bd05b1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0080ef2e364721695608c066b8330b1488156060', 'value': 10321.910506374765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022f8d48a5b8e02b9b6a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:33:19.000Z'}}, {'blockNum': '0x4b68d8', 'uniqueId': '0xc9056c66440d7dfa375834828c7db57960a9e1c9818e379f9975ae4b19cb939d:log:36', 'hash': '0xc9056c66440d7dfa375834828c7db57960a9e1c9818e379f9975ae4b19cb939d', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0xace649f083e9852c51eb4056fd3382a610e25e65', 'value': 6321.910506374764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0156b621eea165ab9b6a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:35:15.000Z'}}, {'blockNum': '0x4b68d8', 'uniqueId': '0x4a464a400dc0124e058d6eb5ed50690cd753741d2a0a63231a361cf2e92fd388:log:66', 'hash': '0x4a464a400dc0124e058d6eb5ed50690cd753741d2a0a63231a361cf2e92fd388', 'from': '0x4b0669f04774cd341b1fd2c01cee67ddb5151718', 'to': '0xda80cd974c4de464e37d0ff355eec05835817502', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:35:15.000Z'}}, {'blockNum': '0x4b68d8', 'uniqueId': '0x637ef2dd2fe110b628254ef3ab69426ddcc215fb4faf6a26a32e7c4a6ca067a3:log:85', 'hash': '0x637ef2dd2fe110b628254ef3ab69426ddcc215fb4faf6a26a32e7c4a6ca067a3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2946.8003716344515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9fbf11fd2f1c8ee908', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:35:15.000Z'}}, {'blockNum': '0x4b68d8', 'uniqueId': '0x637ef2dd2fe110b628254ef3ab69426ddcc215fb4faf6a26a32e7c4a6ca067a3:log:87', 'hash': '0x637ef2dd2fe110b628254ef3ab69426ddcc215fb4faf6a26a32e7c4a6ca067a3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2946.8003716344515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9fbf11fd2f1c8ee908', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:35:15.000Z'}}, {'blockNum': '0x4b68d9', 'uniqueId': '0x7d6f60fd5d5c08053ac38890773c96ef887f21a78f5c6a859aca9bc49c9690ae:log:36', 'hash': '0x7d6f60fd5d5c08053ac38890773c96ef887f21a78f5c6a859aca9bc49c9690ae', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0x591203018192cd5df17ac89c169202f2f9044d2d', 'value': 3999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8c9460063d31c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:35:46.000Z'}}, {'blockNum': '0x4b68dc', 'uniqueId': '0x34263aa740c6b2a9bf7c1e9866d758c317a702df6b96d5e945e81bc28a1f9dd9:log:29', 'hash': '0x34263aa740c6b2a9bf7c1e9866d758c317a702df6b96d5e945e81bc28a1f9dd9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:36:46.000Z'}}, {'blockNum': '0x4b68dc', 'uniqueId': '0x7909fc90e5124e3d367b8c97a8700bf23109fafe23a8833e3f14321ff9c1b176:log:36', 'hash': '0x7909fc90e5124e3d367b8c97a8700bf23109fafe23a8833e3f14321ff9c1b176', 'from': '0x3b762e0062b977fb41eb3d462c0dabd29797a794', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 399, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15a13cc201e4dc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:36:46.000Z'}}, {'blockNum': '0x4b68df', 'uniqueId': '0xb9696420cb95a141f14ee1f8834e2c8dc335e5b92c0098cb6478e314acd5cfbd:log:16', 'hash': '0xb9696420cb95a141f14ee1f8834e2c8dc335e5b92c0098cb6478e314acd5cfbd', 'from': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 659.33729138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x23be249d31011f8800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:37:37.000Z'}}, {'blockNum': '0x4b68e2', 'uniqueId': '0x303f8dccb4547e7e640b5ee6d75ea80ff26a326940d6743fa5ea62b29795645d:log:4', 'hash': '0x303f8dccb4547e7e640b5ee6d75ea80ff26a326940d6743fa5ea62b29795645d', 'from': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 355.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13458db67af35e0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:38:57.000Z'}}, {'blockNum': '0x4b68e4', 'uniqueId': '0x4359367299afff4a17387072e47729838898470972641a10aac8e6452d683af9:log:55', 'hash': '0x4359367299afff4a17387072e47729838898470972641a10aac8e6452d683af9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 36.828495543148165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ff1919921d673390', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:39:44.000Z'}}, {'blockNum': '0x4b68e4', 'uniqueId': '0x4359367299afff4a17387072e47729838898470972641a10aac8e6452d683af9:log:58', 'hash': '0x4359367299afff4a17387072e47729838898470972641a10aac8e6452d683af9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 36.828495543148165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ff1919921d673390', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:39:44.000Z'}}, {'blockNum': '0x4b68e6', 'uniqueId': '0x80486e6e118d9e1f8034f43f871b6100078fd34353ba164c9d1e236e7635eec6:log:12', 'hash': '0x80486e6e118d9e1f8034f43f871b6100078fd34353ba164c9d1e236e7635eec6', 'from': '0x591203018192cd5df17ac89c169202f2f9044d2d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8c9460063d31c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:40:20.000Z'}}, {'blockNum': '0x4b68e7', 'uniqueId': '0x7ced6a4ea990bfa0fdd51128d50c6c5e806035f8825555b938c21e55c3cea9c9:log:0', 'hash': '0x7ced6a4ea990bfa0fdd51128d50c6c5e806035f8825555b938c21e55c3cea9c9', 'from': '0x48daa2551c98cfbf725c6124e621020f199186ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ac9ae05a71ebc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:40:28.000Z'}}, {'blockNum': '0x4b68e7', 'uniqueId': '0xda052e4e9a7bcea51846a6d50693e642754eb22c8ab9d4c1e5e16ae1eb8b85ae:log:1', 'hash': '0xda052e4e9a7bcea51846a6d50693e642754eb22c8ab9d4c1e5e16ae1eb8b85ae', 'from': '0x49e1e5e94c5aeb765409ae92128904b1b96a40bf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1697.03, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5bff05b1bfed270000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:40:28.000Z'}}, {'blockNum': '0x4b68e8', 'uniqueId': '0xf9f7bfa28772372fe9f2e9dbe1c132bb2b1d3f532fea9f499b4d0fb459db16ca:log:7', 'hash': '0xf9f7bfa28772372fe9f2e9dbe1c132bb2b1d3f532fea9f499b4d0fb459db16ca', 'from': '0xdfc52bf15cf9100627d37da0f709f4fb57f0e618', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 255.07405037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd3dd115f0bf21400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:40:33.000Z'}}, {'blockNum': '0x4b68ef', 'uniqueId': '0x35ccbb3d40fc107e6c9add37258d86b18a5038325512a8525ea19e0218aa8de4:log:11', 'hash': '0x35ccbb3d40fc107e6c9add37258d86b18a5038325512a8525ea19e0218aa8de4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3dab71c6b880583f2aafdfcce64ccd27da0df3c3', 'value': 79.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x044a6d49a5342b0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:41:29.000Z'}}, {'blockNum': '0x4b68f0', 'uniqueId': '0xc740062d77b18b5b8943c37eaa77b25cc57f834fc3b746e3d5fb80feb4b5b994:log:65', 'hash': '0xc740062d77b18b5b8943c37eaa77b25cc57f834fc3b746e3d5fb80feb4b5b994', 'from': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x86a86cc73436500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:41:47.000Z'}}, {'blockNum': '0x4b68f9', 'uniqueId': '0xfdd2d8b8225ee02ed12673e7d8657e0db53009b150afb47e0b7726f8f0bfeee4:log:25', 'hash': '0xfdd2d8b8225ee02ed12673e7d8657e0db53009b150afb47e0b7726f8f0bfeee4', 'from': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 19.46066643739929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010e122d048d8d1a56', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:43:37.000Z'}}, {'blockNum': '0x4b68f9', 'uniqueId': '0xfdd2d8b8225ee02ed12673e7d8657e0db53009b150afb47e0b7726f8f0bfeee4:log:27', 'hash': '0xfdd2d8b8225ee02ed12673e7d8657e0db53009b150afb47e0b7726f8f0bfeee4', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 19.46066643739929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010e122d048d8d1a56', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:43:37.000Z'}}, {'blockNum': '0x4b68fe', 'uniqueId': '0x6b740aee8e8d998f22a23c141e393c36d202a66910bb4a58d6ea67b66ba7fdb6:log:43', 'hash': '0x6b740aee8e8d998f22a23c141e393c36d202a66910bb4a58d6ea67b66ba7fdb6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4418.26355103808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xef83b95ab4a0b3b950', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:44:35.000Z'}}, {'blockNum': '0x4b68fe', 'uniqueId': '0x6b740aee8e8d998f22a23c141e393c36d202a66910bb4a58d6ea67b66ba7fdb6:log:45', 'hash': '0x6b740aee8e8d998f22a23c141e393c36d202a66910bb4a58d6ea67b66ba7fdb6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4418.26355103808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xef83b95ab4a0b3b950', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:44:35.000Z'}}, {'blockNum': '0x4b68ff', 'uniqueId': '0x131bf15505e2e4cccf2a430a301e3e4862009a8616f6f70729cec1874f7355da:log:17', 'hash': '0x131bf15505e2e4cccf2a430a301e3e4862009a8616f6f70729cec1874f7355da', 'from': '0xace649f083e9852c51eb4056fd3382a610e25e65', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 6321.91050637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0156b621eea049b89400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:45:08.000Z'}}, {'blockNum': '0x4b68ff', 'uniqueId': '0x377b272734fc323a2a795e49144ef9dc44809d4521396baec2491fad78b02022:log:19', 'hash': '0x377b272734fc323a2a795e49144ef9dc44809d4521396baec2491fad78b02022', 'from': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:45:08.000Z'}}, {'blockNum': '0x4b6905', 'uniqueId': '0xcd79413e4e5259095bc9b326a34a227aa38767ef0eb9041891481297039b0081:log:3', 'hash': '0xcd79413e4e5259095bc9b326a34a227aa38767ef0eb9041891481297039b0081', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x42d441fde48fd56e98b3f06e16c7ce30203c0e9f', 'value': 542.26033821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d655fb895663ad400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:46:16.000Z'}}, {'blockNum': '0x4b6909', 'uniqueId': '0x34ef4da535dbd116afbeb75c3b4aaa33c84f13e00d7afcae647c398c53920786:log:48', 'hash': '0x34ef4da535dbd116afbeb75c3b4aaa33c84f13e00d7afcae647c398c53920786', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2208.264908020697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x77b5d4f1f4b64d42c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:47:26.000Z'}}, {'blockNum': '0x4b6909', 'uniqueId': '0x34ef4da535dbd116afbeb75c3b4aaa33c84f13e00d7afcae647c398c53920786:log:50', 'hash': '0x34ef4da535dbd116afbeb75c3b4aaa33c84f13e00d7afcae647c398c53920786', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2208.264908020697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x77b5d4f1f4b64d42c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:47:26.000Z'}}, {'blockNum': '0x4b6912', 'uniqueId': '0x5a28ef49433ff3afb4779497acb21529661ad757135c8f09cbf893988e880d98:log:7', 'hash': '0x5a28ef49433ff3afb4779497acb21529661ad757135c8f09cbf893988e880d98', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9574aacb471425c204a21c7a0679687d1af3b486', 'value': 27.30259524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x017ae64db726789000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:49:53.000Z'}}, {'blockNum': '0x4b6913', 'uniqueId': '0xa63adaf1e9b6d3f14f0e14202b3146e94ef7ee122c703e43683788cf933252b7:log:0', 'hash': '0xa63adaf1e9b6d3f14f0e14202b3146e94ef7ee122c703e43683788cf933252b7', 'from': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:50:09.000Z'}}, {'blockNum': '0x4b6915', 'uniqueId': '0xe34f320a13d64a7271fe77f324a47099ae5d590879b9ae8795b4056eac80bc6d:log:51', 'hash': '0xe34f320a13d64a7271fe77f324a47099ae5d590879b9ae8795b4056eac80bc6d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2943.454953845899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9f90a4ad6e1c9ee4e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:50:48.000Z'}}, {'blockNum': '0x4b6915', 'uniqueId': '0xe34f320a13d64a7271fe77f324a47099ae5d590879b9ae8795b4056eac80bc6d:log:53', 'hash': '0xe34f320a13d64a7271fe77f324a47099ae5d590879b9ae8795b4056eac80bc6d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2943.454953845899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9f90a4ad6e1c9ee4e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:50:48.000Z'}}, {'blockNum': '0x4b6916', 'uniqueId': '0xebe7ff690903db7a5b9fd029006c97c705c650cdd194fc3f44c9a8317d8a1b47:log:18', 'hash': '0xebe7ff690903db7a5b9fd029006c97c705c650cdd194fc3f44c9a8317d8a1b47', 'from': '0x8ae135005dca5757dec61cb67087f21172097e4f', 'to': '0x6dd8db5830a15e09b9680582b0c6b3608f65f972', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:51:02.000Z'}}, {'blockNum': '0x4b6925', 'uniqueId': '0xa2fd3cb90a38e81105cb1c3b60775cbf33db49b330e3277cb39a838e9d612a49:log:70', 'hash': '0xa2fd3cb90a38e81105cb1c3b60775cbf33db49b330e3277cb39a838e9d612a49', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'value': 352.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131beb925ffd320000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:54:39.000Z'}}, {'blockNum': '0x4b692a', 'uniqueId': '0xd60383b9dfb76edb0cea912ff64694274868c5374defc47738f3cfb3eb8ded9b:log:25', 'hash': '0xd60383b9dfb76edb0cea912ff64694274868c5374defc47738f3cfb3eb8ded9b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2481.1142861908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x868060a9c89d84f016', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:55:53.000Z'}}, {'blockNum': '0x4b692a', 'uniqueId': '0xd60383b9dfb76edb0cea912ff64694274868c5374defc47738f3cfb3eb8ded9b:log:27', 'hash': '0xd60383b9dfb76edb0cea912ff64694274868c5374defc47738f3cfb3eb8ded9b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 2481.1142861908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x868060a9c89d84f016', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:55:53.000Z'}}, {'blockNum': '0x4b692b', 'uniqueId': '0xa33b0d0d5f85e0b7e02b72cd23896a1c78950060b7a40ff50863ebd424205c07:log:12', 'hash': '0xa33b0d0d5f85e0b7e02b72cd23896a1c78950060b7a40ff50863ebd424205c07', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4303.241901697654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe9477a5e0a9114edb4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:55:55.000Z'}}, {'blockNum': '0x4b692b', 'uniqueId': '0xa33b0d0d5f85e0b7e02b72cd23896a1c78950060b7a40ff50863ebd424205c07:log:14', 'hash': '0xa33b0d0d5f85e0b7e02b72cd23896a1c78950060b7a40ff50863ebd424205c07', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7f912e5f83e7e68ac9d5cc2d2b3a720c046551f7', 'value': 4303.241901697654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe9477a5e0a9114edb4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:55:55.000Z'}}, {'blockNum': '0x4b692d', 'uniqueId': '0x1a41b61d5e22a4e7ff31367fff0b694fa8867ad194310346b5ac50b60fc4ecce:log:20', 'hash': '0x1a41b61d5e22a4e7ff31367fff0b694fa8867ad194310346b5ac50b60fc4ecce', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 2481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x867ecaa31940240000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:56:07.000Z'}}, {'blockNum': '0x4b6932', 'uniqueId': '0x30d2f872880de9e6f2113ef029124d171022e8d631fc7c009380158d45a4477f:log:54', 'hash': '0x30d2f872880de9e6f2113ef029124d171022e8d631fc7c009380158d45a4477f', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 110.33977716620896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05fb45a2ba3ba48b26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:57:14.000Z'}}, {'blockNum': '0x4b6932', 'uniqueId': '0x30d2f872880de9e6f2113ef029124d171022e8d631fc7c009380158d45a4477f:log:56', 'hash': '0x30d2f872880de9e6f2113ef029124d171022e8d631fc7c009380158d45a4477f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 110.33977716620896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05fb45a2ba3ba48b26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:57:14.000Z'}}, {'blockNum': '0x4b6932', 'uniqueId': '0x69fbb8159f1917fa5345d35fac24a5e7fe2c70d449f3d30d3e914aa54fbc76ac:log:87', 'hash': '0x69fbb8159f1917fa5345d35fac24a5e7fe2c70d449f3d30d3e914aa54fbc76ac', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 742.9343225975514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284648ee2af084026e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:57:14.000Z'}}, {'blockNum': '0x4b6932', 'uniqueId': '0x69fbb8159f1917fa5345d35fac24a5e7fe2c70d449f3d30d3e914aa54fbc76ac:log:89', 'hash': '0x69fbb8159f1917fa5345d35fac24a5e7fe2c70d449f3d30d3e914aa54fbc76ac', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 742.9343225975514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284648ee2af084026e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:57:14.000Z'}}, {'blockNum': '0x4b693b', 'uniqueId': '0x4e159df2b723f3d49d81c6947934f2c49b2532ed378ee96260dad5b992d4d42d:log:48', 'hash': '0x4e159df2b723f3d49d81c6947934f2c49b2532ed378ee96260dad5b992d4d42d', 'from': '0x7f912e5f83e7e68ac9d5cc2d2b3a720c046551f7', 'to': '0xdbc198992ede50a6679d42bcbdc7cb68ad06ed35', 'value': 4303.241901697654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe9477a5e0a9114edb4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:00:05.000Z'}}, {'blockNum': '0x4b6940', 'uniqueId': '0x6d60f79f6d97ce09f28c1f3b535bf9eaa02bbd09ae4a179e9b1160f38d6b36ad:log:3', 'hash': '0x6d60f79f6d97ce09f28c1f3b535bf9eaa02bbd09ae4a179e9b1160f38d6b36ad', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:16.000Z'}}, {'blockNum': '0x4b6940', 'uniqueId': '0xb9adeb2932a9f4148c05a2eb775e33f941f501beb32d299b856dc87bef8c3db3:log:47', 'hash': '0xb9adeb2932a9f4148c05a2eb775e33f941f501beb32d299b856dc87bef8c3db3', 'from': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 352.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131beb925ffd320000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:16.000Z'}}, {'blockNum': '0x4b6944', 'uniqueId': '0xa7f45dcc0ec744647fd52689a40bdf95c67d263c184ede584f3e82ab618baf34:log:1', 'hash': '0xa7f45dcc0ec744647fd52689a40bdf95c67d263c184ede584f3e82ab618baf34', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x2412f8511ea0cc48a22b6e1926c51916e3fccae2', 'value': 400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15af1d78b58c400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:39.000Z'}}, {'blockNum': '0x4b6944', 'uniqueId': '0x74ddf301541478b042f76aaa66d86d30c5288f041c07eab9685bd12118fad336:log:16', 'hash': '0x74ddf301541478b042f76aaa66d86d30c5288f041c07eab9685bd12118fad336', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 17.64523253310191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf4e075801ab4a170', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:39.000Z'}}, {'blockNum': '0x4b6944', 'uniqueId': '0x74ddf301541478b042f76aaa66d86d30c5288f041c07eab9685bd12118fad336:log:19', 'hash': '0x74ddf301541478b042f76aaa66d86d30c5288f041c07eab9685bd12118fad336', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 17.64523253310191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf4e075801ab4a170', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:39.000Z'}}, {'blockNum': '0x4b6945', 'uniqueId': '0x80f195d4dd7ad01b175c6c209f41cd1c95958460326135317c5bfaf833f5ae5e:log:3', 'hash': '0x80f195d4dd7ad01b175c6c209f41cd1c95958460326135317c5bfaf833f5ae5e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 2872.95749432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9bbe4b6380bbede000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:49.000Z'}}, {'blockNum': '0x4b6945', 'uniqueId': '0x772f94e6bc82d79bace11aea2033d7f3ea051c343be4526065db1497dd64ec1b:log:4', 'hash': '0x772f94e6bc82d79bace11aea2033d7f3ea051c343be4526065db1497dd64ec1b', 'from': '0x2412f8511ea0cc48a22b6e1926c51916e3fccae2', 'to': '0x3979b95eadda2401f6bd10f190c16f6a31e72f76', 'value': 400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15af1d78b58c400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:49.000Z'}}, {'blockNum': '0x4b6945', 'uniqueId': '0x89cff609952892eac8aa50ba2ba0e9d6971d2042fee85fc5ff536b4917aac34f:log:37', 'hash': '0x89cff609952892eac8aa50ba2ba0e9d6971d2042fee85fc5ff536b4917aac34f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7348.973368602197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018e637e3636cbc68b9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:49.000Z'}}, {'blockNum': '0x4b6945', 'uniqueId': '0x89cff609952892eac8aa50ba2ba0e9d6971d2042fee85fc5ff536b4917aac34f:log:39', 'hash': '0x89cff609952892eac8aa50ba2ba0e9d6971d2042fee85fc5ff536b4917aac34f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 7348.973368602197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018e637e3636cbc68b9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:49.000Z'}}, {'blockNum': '0x4b6945', 'uniqueId': '0x34071cdf19760c714273bfa7705ff94e317e37f633d257e86d3bc14525948bea:log:40', 'hash': '0x34071cdf19760c714273bfa7705ff94e317e37f633d257e86d3bc14525948bea', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xfb5607de3ddb810dbcad532b0935a08cae385728', 'value': 2552.90117262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8a649eeaa5d5487800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:49.000Z'}}, {'blockNum': '0x4b6945', 'uniqueId': '0xf8e2420fc69d99e3b2739e16bdd71978ae34a5e3091a07d115d3b9d4bb251085:log:47', 'hash': '0xf8e2420fc69d99e3b2739e16bdd71978ae34a5e3091a07d115d3b9d4bb251085', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 825.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cbb41b12afd930000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:49.000Z'}}, {'blockNum': '0x4b6945', 'uniqueId': '0x56685749c1707290d05e409427b5a2343cf69f49dfe8aeecd8440d0232d929fb:log:50', 'hash': '0x56685749c1707290d05e409427b5a2343cf69f49dfe8aeecd8440d0232d929fb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x703793b99b17d85cbcdc59ec14cb19b07285c24f', 'value': 16.94957236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xeb38fa423c945000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:49.000Z'}}, {'blockNum': '0x4b6945', 'uniqueId': '0x05a92b1a1f80c390a76058748e8790d79f09810c428627c667afef5818a18375:log:52', 'hash': '0x05a92b1a1f80c390a76058748e8790d79f09810c428627c667afef5818a18375', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x04f8c9cd5f3b8c9020d2fce2e60bced4829287b1', 'value': 199.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0acbc2eddbab0b0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:49.000Z'}}, {'blockNum': '0x4b694a', 'uniqueId': '0x93b22a870bee5100768c96ef555c82865db74397c90c84c4d34d84f92bdf5928:log:29', 'hash': '0x93b22a870bee5100768c96ef555c82865db74397c90c84c4d34d84f92bdf5928', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x1f309c972f6a9d190486338745f5b7c62778a856', 'value': 2.58705782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x23e71361667f1800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:03:01.000Z'}}, {'blockNum': '0x4b694a', 'uniqueId': '0x3a5dacf3490ae4dccd25491845043b63177c014270ad2ffc111bd04106302541:log:31', 'hash': '0x3a5dacf3490ae4dccd25491845043b63177c014270ad2ffc111bd04106302541', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 870.016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f29e5be752a400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:03:01.000Z'}}, {'blockNum': '0x4b6951', 'uniqueId': '0x81eb40c98becd7d62b0ccf444469dec442075ffe18265a88637920a2186e5262:log:22', 'hash': '0x81eb40c98becd7d62b0ccf444469dec442075ffe18265a88637920a2186e5262', 'from': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x867ecaa31940240000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:04:04.000Z'}}, {'blockNum': '0x4b6951', 'uniqueId': '0x3e71394a15b656f727c707f1d96867b0d107dafb4a90063bcb8c8154b7bb9253:log:43', 'hash': '0x3e71394a15b656f727c707f1d96867b0d107dafb4a90063bcb8c8154b7bb9253', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x703793b99b17d85cbcdc59ec14cb19b07285c24f', 'value': 56.99861018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031703bdf795dd2800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:04:04.000Z'}}, {'blockNum': '0x4b6951', 'uniqueId': '0xe6d98be2aac6fc9bb4a0354063c7504029317c5ca014c9348c044b685ff782bc:log:44', 'hash': '0xe6d98be2aac6fc9bb4a0354063c7504029317c5ca014c9348c044b685ff782bc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x703793b99b17d85cbcdc59ec14cb19b07285c24f', 'value': 24.35042984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0151ee1aece545a000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:04:04.000Z'}}, {'blockNum': '0x4b6951', 'uniqueId': '0xea2161bf3c9061571615852b8effdff3446b321cb940f4997043b51dda82b37f:log:45', 'hash': '0xea2161bf3c9061571615852b8effdff3446b321cb940f4997043b51dda82b37f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5faeef35dd957ff60bf97399072c9942a7ed2a34', 'value': 2385.36306336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x814f8ffbee46668000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:04:04.000Z'}}, {'blockNum': '0x4b6953', 'uniqueId': '0x8129c1dce826a5d58716745166b9105bd966f4fe6a242390c189be01bd901575:log:23', 'hash': '0x8129c1dce826a5d58716745166b9105bd966f4fe6a242390c189be01bd901575', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4406.315824730039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xeeddea80ee205e46a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:04:17.000Z'}}, {'blockNum': '0x4b6953', 'uniqueId': '0x8129c1dce826a5d58716745166b9105bd966f4fe6a242390c189be01bd901575:log:25', 'hash': '0x8129c1dce826a5d58716745166b9105bd966f4fe6a242390c189be01bd901575', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4406.315824730039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xeeddea80ee205e46a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:04:17.000Z'}}, {'blockNum': '0x4b6955', 'uniqueId': '0x8a15ee10d66821dbb24f24ab663cd24ba3b90ea711520d878507c474b00c22a7:log:51', 'hash': '0x8a15ee10d66821dbb24f24ab663cd24ba3b90ea711520d878507c474b00c22a7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2495.8920593281155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x874d75dc27f2818d8d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:05:18.000Z'}}, {'blockNum': '0x4b6955', 'uniqueId': '0x8a15ee10d66821dbb24f24ab663cd24ba3b90ea711520d878507c474b00c22a7:log:53', 'hash': '0x8a15ee10d66821dbb24f24ab663cd24ba3b90ea711520d878507c474b00c22a7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7ac34681f6aaeb691e150c43ee494177c0e2c183', 'value': 2495.8920593281155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x874d75dc27f2818d8d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:05:18.000Z'}}, {'blockNum': '0x4b6956', 'uniqueId': '0x0411038898d9e8afd98a6f102917c5a70a512c3b60b0fbf7e9a13a537e9dd80b:log:47', 'hash': '0x0411038898d9e8afd98a6f102917c5a70a512c3b60b0fbf7e9a13a537e9dd80b', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x3d697c0910fb6ccd4411163336503dc62d24a1ff', 'value': 835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d43f3ebfafb2c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:05:59.000Z'}}, {'blockNum': '0x4b6956', 'uniqueId': '0x0fb19ca258a3372362d8d27ec60ff27d2c08802a972d4db227bf798957588bf6:log:79', 'hash': '0x0fb19ca258a3372362d8d27ec60ff27d2c08802a972d4db227bf798957588bf6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 587.1615273453043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fd480ca3498ac2920', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:05:59.000Z'}}, {'blockNum': '0x4b6956', 'uniqueId': '0x0fb19ca258a3372362d8d27ec60ff27d2c08802a972d4db227bf798957588bf6:log:81', 'hash': '0x0fb19ca258a3372362d8d27ec60ff27d2c08802a972d4db227bf798957588bf6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1bd39650266b94fde58a72c0e2bb17d85708d3af', 'value': 587.1615273453043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fd480ca3498ac2920', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:05:59.000Z'}}, {'blockNum': '0x4b6957', 'uniqueId': '0xb958f7b8a5bf170533e617cb45926315d32c0a82c1c108832525ac570c31caf2:log:62', 'hash': '0xb958f7b8a5bf170533e617cb45926315d32c0a82c1c108832525ac570c31caf2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7336.076608992848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018db083b7ade6f93334', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:06:21.000Z'}}, {'blockNum': '0x4b6957', 'uniqueId': '0xb958f7b8a5bf170533e617cb45926315d32c0a82c1c108832525ac570c31caf2:log:64', 'hash': '0xb958f7b8a5bf170533e617cb45926315d32c0a82c1c108832525ac570c31caf2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'value': 7336.076608992848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018db083b7ade6f93334', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:06:21.000Z'}}, {'blockNum': '0x4b6958', 'uniqueId': '0xff23ee8658508e3b42b67040e0d43be428051c9b121a7bdd323d47dc3f541a64:log:37', 'hash': '0xff23ee8658508e3b42b67040e0d43be428051c9b121a7bdd323d47dc3f541a64', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6fffd968df5ea5557e0c180e07361eebda6dff75', 'value': 464.58072075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x192f5a481166b2cc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:06:31.000Z'}}, {'blockNum': '0x4b6958', 'uniqueId': '0x0ba82f2c8689c068271aa2054af4c6ab9b08eae8c50707badf6fe3fe4eb95a53:log:38', 'hash': '0x0ba82f2c8689c068271aa2054af4c6ab9b08eae8c50707badf6fe3fe4eb95a53', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 275.28431477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0eec5659c3b6ab3400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:06:31.000Z'}}, {'blockNum': '0x4b6958', 'uniqueId': '0x1ca04a8258b14fb9efe6005478aa212accf2729a2e4518c90192c03254267e5b:log:40', 'hash': '0x1ca04a8258b14fb9efe6005478aa212accf2729a2e4518c90192c03254267e5b', 'from': '0xdbc198992ede50a6679d42bcbdc7cb68ad06ed35', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 4303.2419017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe9477a5e0b1cec2800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:06:31.000Z'}}, {'blockNum': '0x4b6958', 'uniqueId': '0xb793c5fbbad34b0ebcb298db25643b18c817a94e7518ce4832750e2f2a8338dd:log:43', 'hash': '0xb793c5fbbad34b0ebcb298db25643b18c817a94e7518ce4832750e2f2a8338dd', 'from': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:06:31.000Z'}}, {'blockNum': '0x4b6958', 'uniqueId': '0x09c0b063ff0dd869bcc3b7ff41cd6f2e564bfe3f7cf3460f73c97a1c691c7727:log:50', 'hash': '0x09c0b063ff0dd869bcc3b7ff41cd6f2e564bfe3f7cf3460f73c97a1c691c7727', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xab0c0b8dbbe6bdc0d0a57becbf913d4d2ddf8932', 'value': 8876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e12b3e9cefbf300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:06:31.000Z'}}, {'blockNum': '0x4b6959', 'uniqueId': '0xe2ee8781fb06aeb4d90f8046f488020801b5b1a50753c7bc9b59bad70b76d87c:log:24', 'hash': '0xe2ee8781fb06aeb4d90f8046f488020801b5b1a50753c7bc9b59bad70b76d87c', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:07:03.000Z'}}, {'blockNum': '0x4b6960', 'uniqueId': '0xdef022ac813d25b5fdf9e942f05601284e95c823eea937a7db30bf368aca43f6:log:41', 'hash': '0xdef022ac813d25b5fdf9e942f05601284e95c823eea937a7db30bf368aca43f6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4398.589120931319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xee72afbcc358f27cab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:08:20.000Z'}}, {'blockNum': '0x4b6960', 'uniqueId': '0xdef022ac813d25b5fdf9e942f05601284e95c823eea937a7db30bf368aca43f6:log:44', 'hash': '0xdef022ac813d25b5fdf9e942f05601284e95c823eea937a7db30bf368aca43f6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 4398.589120931319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xee72afbcc358f27cab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:08:20.000Z'}}, {'blockNum': '0x4b6961', 'uniqueId': '0x553bb4239f0106e92aa246110ceb5d15f82a051ec8a61eb6c5fab1123ad4d516:log:32', 'hash': '0x553bb4239f0106e92aa246110ceb5d15f82a051ec8a61eb6c5fab1123ad4d516', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5128.793742420645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0116084faf37bccfbe47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:08:35.000Z'}}, {'blockNum': '0x4b6961', 'uniqueId': '0x553bb4239f0106e92aa246110ceb5d15f82a051ec8a61eb6c5fab1123ad4d516:log:34', 'hash': '0x553bb4239f0106e92aa246110ceb5d15f82a051ec8a61eb6c5fab1123ad4d516', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 5128.793742420645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0116084faf37bccfbe47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:08:35.000Z'}}, {'blockNum': '0x4b6963', 'uniqueId': '0x64d2cc3b0262a86c7c8a64492eaa34f06819d54b6050acdc2cf5378f46151002:log:10', 'hash': '0x64d2cc3b0262a86c7c8a64492eaa34f06819d54b6050acdc2cf5378f46151002', 'from': '0x1bd39650266b94fde58a72c0e2bb17d85708d3af', 'to': '0x49da3e4a9fc77d6ec54bcac841992f280e4f8136', 'value': 10625.039813474717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x023ffc0c487b4f315651', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:09:01.000Z'}}, {'blockNum': '0x4b6964', 'uniqueId': '0x83ed6dfc54718b7eea93503aebb85aef9531dc0aba76693373c71d94cff80bb2:log:21', 'hash': '0x83ed6dfc54718b7eea93503aebb85aef9531dc0aba76693373c71d94cff80bb2', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xf56a01c5b5a28fdda394ca9b7cfa6c47f7faf322', 'value': 3.3505796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e7fa664e1aba000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:09:22.000Z'}}, {'blockNum': '0x4b6964', 'uniqueId': '0xb20dcf313a7bad17805d5a8a897576642fe0305c40729cc22e3eb2a5a95baf83:log:71', 'hash': '0xb20dcf313a7bad17805d5a8a897576642fe0305c40729cc22e3eb2a5a95baf83', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1825.57502461629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x62f6f15c93d6f589a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:09:22.000Z'}}, {'blockNum': '0x4b6964', 'uniqueId': '0xb20dcf313a7bad17805d5a8a897576642fe0305c40729cc22e3eb2a5a95baf83:log:73', 'hash': '0xb20dcf313a7bad17805d5a8a897576642fe0305c40729cc22e3eb2a5a95baf83', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1825.57502461629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x62f6f15c93d6f589a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:09:22.000Z'}}, {'blockNum': '0x4b6966', 'uniqueId': '0x2522cbd74a2d2d74fe0cfeef7828cb032b98d82be97789887e9af70c49cefeff:log:66', 'hash': '0x2522cbd74a2d2d74fe0cfeef7828cb032b98d82be97789887e9af70c49cefeff', 'from': '0x7ac34681f6aaeb691e150c43ee494177c0e2c183', 'to': '0x5efdfd41565b39beba21e13e5f4f987e56a94fb0', 'value': 2495.8926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x874d77c7e4ee1f8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:09:51.000Z'}}, {'blockNum': '0x4b6966', 'uniqueId': '0x71ee3eaecdcefc9f77a8dfbfb608f01d776a09f7655d97b0f0c6a981c8edd5f7:log:93', 'hash': '0x71ee3eaecdcefc9f77a8dfbfb608f01d776a09f7655d97b0f0c6a981c8edd5f7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf95f34f311b365b31fe56b94f705cdc78edc223c', 'value': 1475.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ff7ae0e5f91ba0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:09:51.000Z'}}, {'blockNum': '0x4b6967', 'uniqueId': '0x5eb6b379603ebb79a84310db65258d03d47566ee1511d4f37632fd1883978a3f:log:3', 'hash': '0x5eb6b379603ebb79a84310db65258d03d47566ee1511d4f37632fd1883978a3f', 'from': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:10:04.000Z'}}, {'blockNum': '0x4b696f', 'uniqueId': '0xb9ae2f9bc359fad8949828a99554b4175cb6c6004fc2e9be930c12ceeb153a04:log:15', 'hash': '0xb9ae2f9bc359fad8949828a99554b4175cb6c6004fc2e9be930c12ceeb153a04', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x982b3f3403274618d6db8ba63cb6f91be5e7bd9b', 'value': 83, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x047fdb3c3f456c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:11:29.000Z'}}, {'blockNum': '0x4b6975', 'uniqueId': '0xe4050b3def153ddea13ac98c0094123f157521a7271e6b27e2e622c09c4ce01f:log:7', 'hash': '0xe4050b3def153ddea13ac98c0094123f157521a7271e6b27e2e622c09c4ce01f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5858.933458252845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013d9d090a5233ce081a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:12:35.000Z'}}, {'blockNum': '0x4b6975', 'uniqueId': '0xe4050b3def153ddea13ac98c0094123f157521a7271e6b27e2e622c09c4ce01f:log:9', 'hash': '0xe4050b3def153ddea13ac98c0094123f157521a7271e6b27e2e622c09c4ce01f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 5858.933458252845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013d9d090a5233ce081a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:12:35.000Z'}}, {'blockNum': '0x4b6976', 'uniqueId': '0x910318844e1834e6ed3aca6e7c58e0fdc11c1b62d5be8bf77d6b946c78e4b1f0:log:39', 'hash': '0x910318844e1834e6ed3aca6e7c58e0fdc11c1b62d5be8bf77d6b946c78e4b1f0', 'from': '0x22872db37d9e5123119c1e07b740b1be1ed1f050', 'to': '0x15f9e2f31c7148ee9fa182a5d81d1338d5ea8d64', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:12:51.000Z'}}, {'blockNum': '0x4b6976', 'uniqueId': '0x8dbf52e4199e37ee1a895e31a35cf0583d121ba4314d6b4d4fd686981c2a6a58:log:40', 'hash': '0x8dbf52e4199e37ee1a895e31a35cf0583d121ba4314d6b4d4fd686981c2a6a58', 'from': '0xab0c0b8dbbe6bdc0d0a57becbf913d4d2ddf8932', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 8876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e12b3e9cefbf300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:12:51.000Z'}}, {'blockNum': '0x4b6979', 'uniqueId': '0xa385352c5606cbefefc8abba653447787047435019c2042d0f36d4793d3c8b79:log:38', 'hash': '0xa385352c5606cbefefc8abba653447787047435019c2042d0f36d4793d3c8b79', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xcf41e59816eec50c1882008a6d0115458a592e86', 'value': 26.81157843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x017415dc873bacf000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:14:39.000Z'}}, {'blockNum': '0x4b697a', 'uniqueId': '0x813cc2e0b93a2725b364e54e9a6b2ba95f98048b7dca2be8b951cb1ff27a80e2:log:40', 'hash': '0x813cc2e0b93a2725b364e54e9a6b2ba95f98048b7dca2be8b951cb1ff27a80e2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 1070.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a03508b1a30470000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:14:46.000Z'}}, {'blockNum': '0x4b697a', 'uniqueId': '0xf3f8d42c5020e47a9a0a23055cc0c33632b864e5d21ddb868619c32d1da66e47:log:41', 'hash': '0xf3f8d42c5020e47a9a0a23055cc0c33632b864e5d21ddb868619c32d1da66e47', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 347.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12d1ac8db870db0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:14:46.000Z'}}, {'blockNum': '0x4b697a', 'uniqueId': '0xa5ab61d90770cc660396d8ed850453a1c6d0b75679a374ba4cb4c66ca6d50a7f:log:45', 'hash': '0xa5ab61d90770cc660396d8ed850453a1c6d0b75679a374ba4cb4c66ca6d50a7f', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x46335987897c30b466b5ef02f0b552c94aac3403', 'value': 130.18075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x070e9eee65d7eec000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:14:46.000Z'}}, {'blockNum': '0x4b697b', 'uniqueId': '0xb1388ac6065044d7e1a7ef90e7294af63880249959b17e82227056673fb17bf7:log:34', 'hash': '0xb1388ac6065044d7e1a7ef90e7294af63880249959b17e82227056673fb17bf7', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 64.835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0383c430fd4c738000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:15:03.000Z'}}, {'blockNum': '0x4b697d', 'uniqueId': '0xfc2f0f332cbcb29faf234afd80ab04390268733ca1627398869079908409cc2a:log:28', 'hash': '0xfc2f0f332cbcb29faf234afd80ab04390268733ca1627398869079908409cc2a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7cea16b6cf7dddf2f5a089877e3ec953fed67d11', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:15:48.000Z'}}, {'blockNum': '0x4b697e', 'uniqueId': '0x02da4f082909aeccf4a5e3a2348f4d29b84ce1be3fa6f90a31773a6ef88873ef:log:7', 'hash': '0x02da4f082909aeccf4a5e3a2348f4d29b84ce1be3fa6f90a31773a6ef88873ef', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x960c6e001bb8dfc9b986617852cf086181091abf', 'value': 289.67955738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fb41c86a627492800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:15:57.000Z'}}, {'blockNum': '0x4b697e', 'uniqueId': '0x8527b60fc73eda42e2739753ef12d1c9873041a8a7e8acac1476f679e9355e34:log:8', 'hash': '0x8527b60fc73eda42e2739753ef12d1c9873041a8a7e8acac1476f679e9355e34', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x92f7db0aab0077f481127f1cba27abf0130b9dfa', 'value': 152.42829891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08435e1a42479cac00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:15:57.000Z'}}, {'blockNum': '0x4b697e', 'uniqueId': '0xb1f0b91ffad76102e6442d0f431c3dfd3c59bb900a884537e1a7af5e65133970:log:9', 'hash': '0xb1f0b91ffad76102e6442d0f431c3dfd3c59bb900a884537e1a7af5e65133970', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5d67bcb6442b2af096f6fe6a3ab09076c4b0fccc', 'value': 738.01584055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x280206f8ce0213fc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:15:57.000Z'}}, {'blockNum': '0x4b6980', 'uniqueId': '0xd3d632429afdef333b562aac6143d59aaa16616a8f34a5014732f47ca95ac346:log:49', 'hash': '0xd3d632429afdef333b562aac6143d59aaa16616a8f34a5014732f47ca95ac346', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.124787663239224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x471ee73a38ad9b66', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:16:11.000Z'}}, {'blockNum': '0x4b6980', 'uniqueId': '0xd3d632429afdef333b562aac6143d59aaa16616a8f34a5014732f47ca95ac346:log:52', 'hash': '0xd3d632429afdef333b562aac6143d59aaa16616a8f34a5014732f47ca95ac346', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 5.124787663239224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x471ee73a38ad9b66', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:16:11.000Z'}}, {'blockNum': '0x4b6980', 'uniqueId': '0x4a2c531f7c64613991f983031f8940f98468efe82562471b426a3909d490103d:log:88', 'hash': '0x4a2c531f7c64613991f983031f8940f98468efe82562471b426a3909d490103d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4391.532068320464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xee10c00ccda9b992f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:16:11.000Z'}}, {'blockNum': '0x4b6980', 'uniqueId': '0x4a2c531f7c64613991f983031f8940f98468efe82562471b426a3909d490103d:log:90', 'hash': '0x4a2c531f7c64613991f983031f8940f98468efe82562471b426a3909d490103d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4391.532068320464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xee10c00ccda9b992f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:16:11.000Z'}}, {'blockNum': '0x4b6981', 'uniqueId': '0x3ddc81d9d613d63eace513b3a33079f7a71addb260c9c3a72c9451e71b76249d:log:48', 'hash': '0x3ddc81d9d613d63eace513b3a33079f7a71addb260c9c3a72c9451e71b76249d', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 616.3771533017048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2169f38b38c699d168', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:16:36.000Z'}}, {'blockNum': '0x4b6981', 'uniqueId': '0x3ddc81d9d613d63eace513b3a33079f7a71addb260c9c3a72c9451e71b76249d:log:50', 'hash': '0x3ddc81d9d613d63eace513b3a33079f7a71addb260c9c3a72c9451e71b76249d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 616.3771533017048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2169f38b38c699d168', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:16:36.000Z'}}, {'blockNum': '0x4b6984', 'uniqueId': '0xca358bad4a09211cd37fd5286e97bb2e7ef60cb82f012044c141effa6ed252ee:log:41', 'hash': '0xca358bad4a09211cd37fd5286e97bb2e7ef60cb82f012044c141effa6ed252ee', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.390709967093397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3ceeef73bc5e7543', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:17:03.000Z'}}, {'blockNum': '0x4b6984', 'uniqueId': '0xca358bad4a09211cd37fd5286e97bb2e7ef60cb82f012044c141effa6ed252ee:log:44', 'hash': '0xca358bad4a09211cd37fd5286e97bb2e7ef60cb82f012044c141effa6ed252ee', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x25d4aef414ea092fbcbd83fd30e89e15cf820d0a', 'value': 4.390709967093397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3ceeef73bc5e7543', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:17:03.000Z'}}, {'blockNum': '0x4b698a', 'uniqueId': '0xcaba0acd512ab47d36263354ef6dd6734a6bcbbc7f2577ed7529f0f00f629785:log:39', 'hash': '0xcaba0acd512ab47d36263354ef6dd6734a6bcbbc7f2577ed7529f0f00f629785', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1696.3989464048198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5bf643bdd92e346d7b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:18:32.000Z'}}, {'blockNum': '0x4b698a', 'uniqueId': '0xcaba0acd512ab47d36263354ef6dd6734a6bcbbc7f2577ed7529f0f00f629785:log:41', 'hash': '0xcaba0acd512ab47d36263354ef6dd6734a6bcbbc7f2577ed7529f0f00f629785', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 1696.3989464048198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5bf643bdd92e346d7b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:18:32.000Z'}}, {'blockNum': '0x4b698c', 'uniqueId': '0xf23bc7fe3cb2164684c3378ad6229a8dc10f736bf1542e4fafd05f543e9d31d0:log:27', 'hash': '0xf23bc7fe3cb2164684c3378ad6229a8dc10f736bf1542e4fafd05f543e9d31d0', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xf56a01c5b5a28fdda394ca9b7cfa6c47f7faf322', 'value': 4.44006872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d9e4af9f1ec6000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:19:04.000Z'}}, {'blockNum': '0x4b698c', 'uniqueId': '0x64b39583af85246282b26fcebe9cd43fe787b7c6cb70e709e70c119011c57ca4:log:47', 'hash': '0x64b39583af85246282b26fcebe9cd43fe787b7c6cb70e709e70c119011c57ca4', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 1696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5bf0ba6634f6800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:19:04.000Z'}}, {'blockNum': '0x4b698d', 'uniqueId': '0xe1a369db6e5e8494823a17c211a9c7c205b44afa7f432d77f6ad1b6d0062e1e2:log:34', 'hash': '0xe1a369db6e5e8494823a17c211a9c7c205b44afa7f432d77f6ad1b6d0062e1e2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7313.2122567934375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018c7335387e95a4a559', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:19:12.000Z'}}, {'blockNum': '0x4b698d', 'uniqueId': '0xe1a369db6e5e8494823a17c211a9c7c205b44afa7f432d77f6ad1b6d0062e1e2:log:36', 'hash': '0xe1a369db6e5e8494823a17c211a9c7c205b44afa7f432d77f6ad1b6d0062e1e2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 7313.2122567934375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018c7335387e95a4a559', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:19:12.000Z'}}, {'blockNum': '0x4b6993', 'uniqueId': '0xbe52bc62a9dcefca4d2ba8950f5276a17e4cdd97d54f71a7b7e9aaf660297206:log:36', 'hash': '0xbe52bc62a9dcefca4d2ba8950f5276a17e4cdd97d54f71a7b7e9aaf660297206', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1023.3447110048473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3779c2c0bf0ab3ab64', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:20:37.000Z'}}, {'blockNum': '0x4b6993', 'uniqueId': '0xbe52bc62a9dcefca4d2ba8950f5276a17e4cdd97d54f71a7b7e9aaf660297206:log:39', 'hash': '0xbe52bc62a9dcefca4d2ba8950f5276a17e4cdd97d54f71a7b7e9aaf660297206', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1023.3447110048473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3779c2c0bf0ab3ab64', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:20:37.000Z'}}, {'blockNum': '0x4b6995', 'uniqueId': '0xb14fa46dddf66b4ea49f14eb38dcf95c9a2f423ec5bcf22b40d93d38383be32c:log:20', 'hash': '0xb14fa46dddf66b4ea49f14eb38dcf95c9a2f423ec5bcf22b40d93d38383be32c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5fb6889e681dea9234d78117952a3f7940a4cc0d', 'value': 9.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7efb54856ed30000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:21:02.000Z'}}, {'blockNum': '0x4b6995', 'uniqueId': '0xaa2814af9b3ca7a22de33a941e940a7e6e790ecc3986e1d5b556956d5a601360:log:21', 'hash': '0xaa2814af9b3ca7a22de33a941e940a7e6e790ecc3986e1d5b556956d5a601360', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x961c2086f45adb3452e93538b7a00e19f7a2e039', 'value': 46.13624606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x028044df59ec50b800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:21:02.000Z'}}, {'blockNum': '0x4b6995', 'uniqueId': '0x002d6b23379faa78ae9e5b4b82c6c81d7d40b23c3f3186d42d289c55d0e88755:log:22', 'hash': '0x002d6b23379faa78ae9e5b4b82c6c81d7d40b23c3f3186d42d289c55d0e88755', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x218d1693255a4c1e1ac13f3feb5f7e79e344283d', 'value': 299.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10378a4c090e1b0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:21:02.000Z'}}, {'blockNum': '0x4b6996', 'uniqueId': '0xda8c4d8eaea8860148e8399041127fcedde005f61a0b6f32d93aeadbb05da75e:log:78', 'hash': '0xda8c4d8eaea8860148e8399041127fcedde005f61a0b6f32d93aeadbb05da75e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 15.349227095325542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd50368b831ae046d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:21:26.000Z'}}, {'blockNum': '0x4b6996', 'uniqueId': '0xda8c4d8eaea8860148e8399041127fcedde005f61a0b6f32d93aeadbb05da75e:log:80', 'hash': '0xda8c4d8eaea8860148e8399041127fcedde005f61a0b6f32d93aeadbb05da75e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x63ffd2a819d9d444ef0d9d64b04429ced07c37b7', 'value': 15.349227095325542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd50368b831ae046d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:21:26.000Z'}}, {'blockNum': '0x4b69a0', 'uniqueId': '0x8105a064637cbc0765c2f2093f79d5eae7030414a0db2f60200f394c87936d50:log:34', 'hash': '0x8105a064637cbc0765c2f2093f79d5eae7030414a0db2f60200f394c87936d50', 'from': '0x512e2d8e36a62538ca8af3653253c44ec4899c73', 'to': '0x9667beaf0664dd52cec248625ad5b1f92603d9e9', 'value': 6.46364257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x59b378abebf16400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:23:46.000Z'}}, {'blockNum': '0x4b69a2', 'uniqueId': '0x0e49936203cc9cbfdde100bcf4447922d563f111aeea3fd3efae7132f6b68f27:log:41', 'hash': '0x0e49936203cc9cbfdde100bcf4447922d563f111aeea3fd3efae7132f6b68f27', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 47.946825753984484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02996557fd75cbc3d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:24:00.000Z'}}, {'blockNum': '0x4b69a2', 'uniqueId': '0x0e49936203cc9cbfdde100bcf4447922d563f111aeea3fd3efae7132f6b68f27:log:44', 'hash': '0x0e49936203cc9cbfdde100bcf4447922d563f111aeea3fd3efae7132f6b68f27', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 47.946825753984484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02996557fd75cbc3d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:24:00.000Z'}}, {'blockNum': '0x4b69a5', 'uniqueId': '0x4773eea5c0a729aac926a10e68b1ce5ae04542dd9a8dac6aa3ac11b3ca3277d9:log:42', 'hash': '0x4773eea5c0a729aac926a10e68b1ce5ae04542dd9a8dac6aa3ac11b3ca3277d9', 'from': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5bf0ba6634f6800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:25:08.000Z'}}, {'blockNum': '0x4b69ac', 'uniqueId': '0x2e502184982aa21203fb99b463ef955b7ff3520d155abfed4405e7aa698d4334:log:2', 'hash': '0x2e502184982aa21203fb99b463ef955b7ff3520d155abfed4405e7aa698d4334', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1bd39650266b94fde58a72c0e2bb17d85708d3af', 'value': 10036.53981347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022014f8487be8a22c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:26:00.000Z'}}, {'blockNum': '0x4b69ac', 'uniqueId': '0xedb56748aa08d697bc5d22c5275da25123974c12ab596f5ee25a1cb1d9a979f1:log:3', 'hash': '0xedb56748aa08d697bc5d22c5275da25123974c12ab596f5ee25a1cb1d9a979f1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x379a2e3ff2199b974215d6428a057d48f3b952eb', 'value': 1131.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d56b7870e5a7e0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:26:00.000Z'}}, {'blockNum': '0x4b69ac', 'uniqueId': '0xd40eda040ff5a5db2ec192a4622ceb5cf84d3ed139d55dd63f87ff401ae47e3e:log:63', 'hash': '0xd40eda040ff5a5db2ec192a4622ceb5cf84d3ed139d55dd63f87ff401ae47e3e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'value': 336.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x123de0272586f20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:26:00.000Z'}}, {'blockNum': '0x4b69b2', 'uniqueId': '0xb6e5caef624ce25231025b4e8ced15b4a9a31eb58b6c2983be4e6746beff2785:log:27', 'hash': '0xb6e5caef624ce25231025b4e8ced15b4a9a31eb58b6c2983be4e6746beff2785', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2923.1373108843113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9e76ade8cdd5fb1215', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:26:50.000Z'}}, {'blockNum': '0x4b69b2', 'uniqueId': '0xb6e5caef624ce25231025b4e8ced15b4a9a31eb58b6c2983be4e6746beff2785:log:29', 'hash': '0xb6e5caef624ce25231025b4e8ced15b4a9a31eb58b6c2983be4e6746beff2785', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2923.1373108843113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9e76ade8cdd5fb1215', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:26:50.000Z'}}, {'blockNum': '0x4b69b7', 'uniqueId': '0x8ba4fffa262f831ae6fb5465b5d2dc181df9db66de39abd83da4721783f61003:log:50', 'hash': '0x8ba4fffa262f831ae6fb5465b5d2dc181df9db66de39abd83da4721783f61003', 'from': '0x63ffd2a819d9d444ef0d9d64b04429ced07c37b7', 'to': '0x7b0872dd5bee1cd4362b10393a11d32b4cf07b2b', 'value': 15.349227095325542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd50368b831ae046d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:28:25.000Z'}}, {'blockNum': '0x4b69b7', 'uniqueId': '0xc072dfcf6aae09db9f499de1f06bcc377d83edb559b29b5f94726b5605422a07:log:79', 'hash': '0xc072dfcf6aae09db9f499de1f06bcc377d83edb559b29b5f94726b5605422a07', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4382.810576577596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xed97b716458c976b74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:28:25.000Z'}}, {'blockNum': '0x4b69b7', 'uniqueId': '0xc072dfcf6aae09db9f499de1f06bcc377d83edb559b29b5f94726b5605422a07:log:81', 'hash': '0xc072dfcf6aae09db9f499de1f06bcc377d83edb559b29b5f94726b5605422a07', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4382.810576577596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xed97b716458c976b74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:28:25.000Z'}}, {'blockNum': '0x4b69bd', 'uniqueId': '0xfdfaf82a36b668227608e9cc4152332e831bf75f3a3864f00c6cce3f2e0b9c2f:log:33', 'hash': '0xfdfaf82a36b668227608e9cc4152332e831bf75f3a3864f00c6cce3f2e0b9c2f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4344.04321763911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xeb7db5c2b724077157', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:29:59.000Z'}}, {'blockNum': '0x4b69bd', 'uniqueId': '0xfdfaf82a36b668227608e9cc4152332e831bf75f3a3864f00c6cce3f2e0b9c2f:log:35', 'hash': '0xfdfaf82a36b668227608e9cc4152332e831bf75f3a3864f00c6cce3f2e0b9c2f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7f912e5f83e7e68ac9d5cc2d2b3a720c046551f7', 'value': 4344.04321763911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xeb7db5c2b724077157', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:29:59.000Z'}}, {'blockNum': '0x4b69bf', 'uniqueId': '0xae2d102a48abe99bdda1fa21da4c988233f7f97e30e2f9a2b8df9d25d8177469:log:3', 'hash': '0xae2d102a48abe99bdda1fa21da4c988233f7f97e30e2f9a2b8df9d25d8177469', 'from': '0x218d1693255a4c1e1ac13f3feb5f7e79e344283d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 299.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10378a4c090e1b0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:30:14.000Z'}}, {'blockNum': '0x4b69c0', 'uniqueId': '0xef6312d2e13a35089c51ffa4fdcfba5318e56300553f5fd11c9d6876f08d7b27:log:6', 'hash': '0xef6312d2e13a35089c51ffa4fdcfba5318e56300553f5fd11c9d6876f08d7b27', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:30:40.000Z'}}, {'blockNum': '0x4b69c0', 'uniqueId': '0x374485acd580bdab94df0dcb4de670c418a7a64db49fb0d3dfdb482d21764ade:log:43', 'hash': '0x374485acd580bdab94df0dcb4de670c418a7a64db49fb0d3dfdb482d21764ade', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5837.212640205067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013c6f9931637314cea0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:30:40.000Z'}}, {'blockNum': '0x4b69c0', 'uniqueId': '0x374485acd580bdab94df0dcb4de670c418a7a64db49fb0d3dfdb482d21764ade:log:45', 'hash': '0x374485acd580bdab94df0dcb4de670c418a7a64db49fb0d3dfdb482d21764ade', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 5837.212640205067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013c6f9931637314cea0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:30:40.000Z'}}, {'blockNum': '0x4b69c1', 'uniqueId': '0x6de1db337fd7bb647374a24e728a21f98155c88025206921b7e348f75dedfbf2:log:10', 'hash': '0x6de1db337fd7bb647374a24e728a21f98155c88025206921b7e348f75dedfbf2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe5a476a21e25804e2292a84ca848bc4f57171014', 'value': 82.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0478eae0e571ba0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:31:02.000Z'}}, {'blockNum': '0x4b69c3', 'uniqueId': '0x1dcfc10ecdba43ca2fdab181ec86f1ac7cc6fe74ee4dbde4b9d4d1f68a051a86:log:45', 'hash': '0x1dcfc10ecdba43ca2fdab181ec86f1ac7cc6fe74ee4dbde4b9d4d1f68a051a86', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xad43f181cb2915bca1577dff8a9e181eaa0f0e4e', 'value': 2.55662578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x237af599f0818800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:32:10.000Z'}}, {'blockNum': '0x4b69c3', 'uniqueId': '0xfd9e3c6d91ddacf52164609d8229f007865f6c02e4f3804f493899614237ff09:log:46', 'hash': '0xfd9e3c6d91ddacf52164609d8229f007865f6c02e4f3804f493899614237ff09', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7d4e021c0dcbe5d2e6721f9a09ff687186bd59ff', 'value': 414.68802275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x167af3cf946edb2c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:32:10.000Z'}}, {'blockNum': '0x4b69c4', 'uniqueId': '0xe5a8710f8c1f15ba47cdd79e941f9f7536994deec5ae1e13d6f67edf2deebb2a:log:9', 'hash': '0xe5a8710f8c1f15ba47cdd79e941f9f7536994deec5ae1e13d6f67edf2deebb2a', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:32:17.000Z'}}, {'blockNum': '0x4b69cf', 'uniqueId': '0x712f4efc8cff271ad709071b42aa2cb594af246c10c877b4ab9427abde00ab2f:log:10', 'hash': '0x712f4efc8cff271ad709071b42aa2cb594af246c10c877b4ab9427abde00ab2f', 'from': '0x379a2e3ff2199b974215d6428a057d48f3b952eb', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1131.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d56b7870e5a7e0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:34:12.000Z'}}, {'blockNum': '0x4b69cf', 'uniqueId': '0x5de439397da25e5371818020f7c634a9acfb456e1792e69cd0852cb74408ffca:log:68', 'hash': '0x5de439397da25e5371818020f7c634a9acfb456e1792e69cd0852cb74408ffca', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4375.264929265488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xed2eff900515fa9a61', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:34:12.000Z'}}, {'blockNum': '0x4b69cf', 'uniqueId': '0x5de439397da25e5371818020f7c634a9acfb456e1792e69cd0852cb74408ffca:log:70', 'hash': '0x5de439397da25e5371818020f7c634a9acfb456e1792e69cd0852cb74408ffca', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4375.264929265488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xed2eff900515fa9a61', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:34:12.000Z'}}, {'blockNum': '0x4b69d0', 'uniqueId': '0x21aaabe18c520da41df1c4e5f86b3090e5e4b68ca7e7c3e4fc3cae501a0d7be5:log:23', 'hash': '0x21aaabe18c520da41df1c4e5f86b3090e5e4b68ca7e7c3e4fc3cae501a0d7be5', 'from': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 336.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x123de0272586f20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:34:15.000Z'}}, {'blockNum': '0x4b69d2', 'uniqueId': '0x1b2398dbb04568bb3038809e9fc7689a3c96d0b515e2e73f2d3134bde40ece7d:log:11', 'hash': '0x1b2398dbb04568bb3038809e9fc7689a3c96d0b515e2e73f2d3134bde40ece7d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2475.3898532563526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8630ef645bef364731', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:34:28.000Z'}}, {'blockNum': '0x4b69d2', 'uniqueId': '0x1b2398dbb04568bb3038809e9fc7689a3c96d0b515e2e73f2d3134bde40ece7d:log:13', 'hash': '0x1b2398dbb04568bb3038809e9fc7689a3c96d0b515e2e73f2d3134bde40ece7d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 2475.3898532563526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8630ef645bef364731', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:34:28.000Z'}}, {'blockNum': '0x4b69d3', 'uniqueId': '0x6ff30508f2c8459e8214e4fe6647525c253e5b91261de5b3ae9df40c46529236:log:5', 'hash': '0x6ff30508f2c8459e8214e4fe6647525c253e5b91261de5b3ae9df40c46529236', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x70fd01e9492cf089999c2d33063b8fe78a6267b8', 'value': 3.465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3016272442ba8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:34:54.000Z'}}, {'blockNum': '0x4b69d4', 'uniqueId': '0xbdd5f514e64313d47ee64f523d1e0fa6d2811ff0bc0ca8a9a7c2833c512e28f7:log:68', 'hash': '0xbdd5f514e64313d47ee64f523d1e0fa6d2811ff0bc0ca8a9a7c2833c512e28f7', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 2475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x862b865ae353cc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:35:43.000Z'}}, {'blockNum': '0x4b69d8', 'uniqueId': '0xfead9a274ad287e932eb0ea9b0d0bc016954b2524826516d9e0a741f6ec27a25:log:5', 'hash': '0xfead9a274ad287e932eb0ea9b0d0bc016954b2524826516d9e0a741f6ec27a25', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3e83b0f1928792e208d3ed0ed8e7dfbec59e43d2', 'value': 1008.44277469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x36aaf4709f2abbd400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:36:27.000Z'}}, {'blockNum': '0x4b69d8', 'uniqueId': '0x75e6c4b012e99895fc19ef939814245b8ba56def76e2b49ea2f91b8dd8968ff2:log:27', 'hash': '0x75e6c4b012e99895fc19ef939814245b8ba56def76e2b49ea2f91b8dd8968ff2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xad43f181cb2915bca1577dff8a9e181eaa0f0e4e', 'value': 1289.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e28cd6ca62d30000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:36:27.000Z'}}, {'blockNum': '0x4b69db', 'uniqueId': '0x049e68d35b0ddb559355f638ff532392ca76b31940a4933d9af2c3d1c3c95cbe:log:148', 'hash': '0x049e68d35b0ddb559355f638ff532392ca76b31940a4933d9af2c3d1c3c95cbe', 'from': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:37:03.000Z'}}, {'blockNum': '0x4b69dd', 'uniqueId': '0x8873ceb6f4010f57a0422a1b56c790a6d506ae476de6d040eeb71b070b7a820b:log:4', 'hash': '0x8873ceb6f4010f57a0422a1b56c790a6d506ae476de6d040eeb71b070b7a820b', 'from': '0xe5a476a21e25804e2292a84ca848bc4f57171014', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 82.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0478eae0e571ba0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:37:33.000Z'}}, {'blockNum': '0x4b69e7', 'uniqueId': '0xf3b90fb6c4a40aeef22d1ad4cf743ac0135985ffa1ac62050073d3e33d0f88d5:log:45', 'hash': '0xf3b90fb6c4a40aeef22d1ad4cf743ac0135985ffa1ac62050073d3e33d0f88d5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 8741.181050907146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01d9dc417d09b8202135', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:39:14.000Z'}}, {'blockNum': '0x4b69e7', 'uniqueId': '0xf3b90fb6c4a40aeef22d1ad4cf743ac0135985ffa1ac62050073d3e33d0f88d5:log:47', 'hash': '0xf3b90fb6c4a40aeef22d1ad4cf743ac0135985ffa1ac62050073d3e33d0f88d5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00a83e95a30765e4938ad86370b25f941a3caa86', 'value': 8741.181050907146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01d9dc417d09b8202135', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:39:14.000Z'}}, {'blockNum': '0x4b69e9', 'uniqueId': '0xfced94c28abbee14a1c9280642d8236b7efbf1c4a6913bef600935ebb8d54bc0:log:14', 'hash': '0xfced94c28abbee14a1c9280642d8236b7efbf1c4a6913bef600935ebb8d54bc0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcab007003d241d7e7e8c1092ab93911b669ebd0c', 'value': 1999.76908497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c685efb8caccd2400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:40:08.000Z'}}, {'blockNum': '0x4b69ea', 'uniqueId': '0x276bcbc5b805f0e36e8d876a48c7d7921e4c29ccc2c55573b50a0c4fa94df53c:log:49', 'hash': '0x276bcbc5b805f0e36e8d876a48c7d7921e4c29ccc2c55573b50a0c4fa94df53c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 291.2170637454624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fc972d88ad8929aa9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:40:30.000Z'}}, {'blockNum': '0x4b69ea', 'uniqueId': '0x276bcbc5b805f0e36e8d876a48c7d7921e4c29ccc2c55573b50a0c4fa94df53c:log:51', 'hash': '0x276bcbc5b805f0e36e8d876a48c7d7921e4c29ccc2c55573b50a0c4fa94df53c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd297ba16f1f8124db142231aa4271bf904826ef6', 'value': 291.2170637454624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fc972d88ad8929aa9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:40:30.000Z'}}, {'blockNum': '0x4b69ea', 'uniqueId': '0x64690210c4df36abb94f4fae15cd15fd873cf56b79a97def62faf2b10555d819:log:60', 'hash': '0x64690210c4df36abb94f4fae15cd15fd873cf56b79a97def62faf2b10555d819', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 519.190333459898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c2536997e55d437b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:40:30.000Z'}}, {'blockNum': '0x4b69ea', 'uniqueId': '0x64690210c4df36abb94f4fae15cd15fd873cf56b79a97def62faf2b10555d819:log:62', 'hash': '0x64690210c4df36abb94f4fae15cd15fd873cf56b79a97def62faf2b10555d819', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 519.190333459898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c2536997e55d437b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:40:30.000Z'}}, {'blockNum': '0x4b69eb', 'uniqueId': '0x018340dc5bf574a542cef41e857fb9c86f6fdc9da2353b28716ac51c65f661e2:log:5', 'hash': '0x018340dc5bf574a542cef41e857fb9c86f6fdc9da2353b28716ac51c65f661e2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x73e588c6b9227278bdfedd8206e48490e93bdacd', 'value': 116.382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x064f1fec61b9830000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:40:37.000Z'}}, {'blockNum': '0x4b69ee', 'uniqueId': '0x036fa24e36dfa8566b31449de47b82b7e0651139e26a63ee331af5d58e139e95:log:10', 'hash': '0x036fa24e36dfa8566b31449de47b82b7e0651139e26a63ee331af5d58e139e95', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7d4e021c0dcbe5d2e6721f9a09ff687186bd59ff', 'value': 7.77045661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6bd6351dfda2d400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:42:16.000Z'}}, {'blockNum': '0x4b69ee', 'uniqueId': '0x4c871a5fc08b8d7276543de1d7233db9d46f98f3a7e23f542256e31d52727e18:log:50', 'hash': '0x4c871a5fc08b8d7276543de1d7233db9d46f98f3a7e23f542256e31d52727e18', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 15595.528655959333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x034d6f6ffbf161441b19', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:42:16.000Z'}}, {'blockNum': '0x4b69ee', 'uniqueId': '0x4c871a5fc08b8d7276543de1d7233db9d46f98f3a7e23f542256e31d52727e18:log:52', 'hash': '0x4c871a5fc08b8d7276543de1d7233db9d46f98f3a7e23f542256e31d52727e18', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0080ef2e364721695608c066b8330b1488156060', 'value': 15595.528655959333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x034d6f6ffbf161441b19', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:42:16.000Z'}}, {'blockNum': '0x4b69ef', 'uniqueId': '0x00d781a2d8b4f79d558a027ca0b75a3754d3b1b89af5e4f3aad86ab3338afda7:log:23', 'hash': '0x00d781a2d8b4f79d558a027ca0b75a3754d3b1b89af5e4f3aad86ab3338afda7', 'from': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x862b865ae353cc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:43:04.000Z'}}, {'blockNum': '0x4b69f3', 'uniqueId': '0xe03bb10fde5fad0e1a0acbd19b035fed99fcc76d2690394da36694c3672bf3b9:log:62', 'hash': '0xe03bb10fde5fad0e1a0acbd19b035fed99fcc76d2690394da36694c3672bf3b9', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0x591203018192cd5df17ac89c169202f2f9044d2d', 'value': 5596.528655959333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x012f636fe8ea56681b19', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:44:19.000Z'}}, {'blockNum': '0x4b69f7', 'uniqueId': '0x9a28fbbea7062d865cf65e856f338861adb662fd474621eae0bdafa6445ffc82:log:5', 'hash': '0x9a28fbbea7062d865cf65e856f338861adb662fd474621eae0bdafa6445ffc82', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0xace649f083e9852c51eb4056fd3382a610e25e65', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:44:43.000Z'}}, {'blockNum': '0x4b69fa', 'uniqueId': '0x7273a6be5d3f6523fb31e180e697ac3278ba99e9e2d7027b0964df77d946b938:log:43', 'hash': '0x7273a6be5d3f6523fb31e180e697ac3278ba99e9e2d7027b0964df77d946b938', 'from': '0xec64bd6efff779637f10b58109ff74e4f4212918', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 312.90750674082864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10f676c786983d3a87', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:46:03.000Z'}}, {'blockNum': '0x4b69fa', 'uniqueId': '0x7273a6be5d3f6523fb31e180e697ac3278ba99e9e2d7027b0964df77d946b938:log:45', 'hash': '0x7273a6be5d3f6523fb31e180e697ac3278ba99e9e2d7027b0964df77d946b938', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 312.90750674082864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10f676c786983d3a87', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:46:03.000Z'}}, {'blockNum': '0x4b69fc', 'uniqueId': '0xa1c1c1e54ac226c8c2d8e9c4f5a52ade844b7367aa93baf4eddaaf88247d82eb:log:29', 'hash': '0xa1c1c1e54ac226c8c2d8e9c4f5a52ade844b7367aa93baf4eddaaf88247d82eb', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x3555d8df02c54e904004d45c563812a8bda012cc', 'value': 599.1405956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x207abefd50b5f80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:46:20.000Z'}}, {'blockNum': '0x4b6a00', 'uniqueId': '0x7e973715ae4f406a4bf01035b5d3cc6ee4f00b1b1e0300897f37ce5060f67a67:log:65', 'hash': '0x7e973715ae4f406a4bf01035b5d3cc6ee4f00b1b1e0300897f37ce5060f67a67', 'from': '0x00a83e95a30765e4938ad86370b25f941a3caa86', 'to': '0x24082f1de7a54e8f150541c8c615cb1dee5553ba', 'value': 8741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01d9d9be443279740000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:47:31.000Z'}}, {'blockNum': '0x4b6a01', 'uniqueId': '0x51d221423fd274c059bfb8324d74976fa086f698568b3b2f2782b88c26401c4d:log:33', 'hash': '0x51d221423fd274c059bfb8324d74976fa086f698568b3b2f2782b88c26401c4d', 'from': '0xcab007003d241d7e7e8c1092ab93911b669ebd0c', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:47:50.000Z'}}, {'blockNum': '0x4b6a01', 'uniqueId': '0x51d221423fd274c059bfb8324d74976fa086f698568b3b2f2782b88c26401c4d:log:36', 'hash': '0x51d221423fd274c059bfb8324d74976fa086f698568b3b2f2782b88c26401c4d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:47:50.000Z'}}, {'blockNum': '0x4b6a01', 'uniqueId': '0x51d221423fd274c059bfb8324d74976fa086f698568b3b2f2782b88c26401c4d:log:37', 'hash': '0x51d221423fd274c059bfb8324d74976fa086f698568b3b2f2782b88c26401c4d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:47:50.000Z'}}, {'blockNum': '0x4b6a03', 'uniqueId': '0xf61e5964b8f43abb949589b8eaa310727f2fff29a9d2a53db920b9b31de32e5c:log:52', 'hash': '0xf61e5964b8f43abb949589b8eaa310727f2fff29a9d2a53db920b9b31de32e5c', 'from': '0xb33f5f5172fce076e9355afcf2529982260b7a4b', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 308.1533224930488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10b47c8624228ff110', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:48:54.000Z'}}, {'blockNum': '0x4b6a03', 'uniqueId': '0xf61e5964b8f43abb949589b8eaa310727f2fff29a9d2a53db920b9b31de32e5c:log:54', 'hash': '0xf61e5964b8f43abb949589b8eaa310727f2fff29a9d2a53db920b9b31de32e5c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 308.1533224930488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10b47c8624228ff110', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:48:54.000Z'}}, {'blockNum': '0x4b6a03', 'uniqueId': '0x0c78193bced75a992574af260c55b78c6a4d27e20429651c16114dd63e5edc7d:log:68', 'hash': '0x0c78193bced75a992574af260c55b78c6a4d27e20429651c16114dd63e5edc7d', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 76.28660055386301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0422b073051f1f49f1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:48:54.000Z'}}, {'blockNum': '0x4b6a03', 'uniqueId': '0x0c78193bced75a992574af260c55b78c6a4d27e20429651c16114dd63e5edc7d:log:70', 'hash': '0x0c78193bced75a992574af260c55b78c6a4d27e20429651c16114dd63e5edc7d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 76.28660055386301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0422b073051f1f49f1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:48:54.000Z'}}, {'blockNum': '0x4b6a10', 'uniqueId': '0xf431cec137dcce334918c1c43785d9fe772f2a2fbef281d6d60f190b3791dcf5:log:54', 'hash': '0xf431cec137dcce334918c1c43785d9fe772f2a2fbef281d6d60f190b3791dcf5', 'from': '0xace649f083e9852c51eb4056fd3382a610e25e65', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:52:02.000Z'}}, {'blockNum': '0x4b6a17', 'uniqueId': '0x54553c14054ba70867375aacdf599ba6c90e040c4d3546a95fee482c26f034b9:log:49', 'hash': '0x54553c14054ba70867375aacdf599ba6c90e040c4d3546a95fee482c26f034b9', 'from': '0x06da1a08f030cf89cbf869cb0e2c9078281afe19', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 58554.54959057854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c663f9d4954d4be6e8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:53:39.000Z'}}, {'blockNum': '0x4b6a17', 'uniqueId': '0xb123b57d1b1ed9f442ad0494776f57142a0c0f8306c96a4e4ba545b245b4a9f3:log:56', 'hash': '0xb123b57d1b1ed9f442ad0494776f57142a0c0f8306c96a4e4ba545b245b4a9f3', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:53:39.000Z'}}, {'blockNum': '0x4b6a17', 'uniqueId': '0xb123b57d1b1ed9f442ad0494776f57142a0c0f8306c96a4e4ba545b245b4a9f3:log:59', 'hash': '0xb123b57d1b1ed9f442ad0494776f57142a0c0f8306c96a4e4ba545b245b4a9f3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:53:39.000Z'}}, {'blockNum': '0x4b6a17', 'uniqueId': '0xb123b57d1b1ed9f442ad0494776f57142a0c0f8306c96a4e4ba545b245b4a9f3:log:60', 'hash': '0xb123b57d1b1ed9f442ad0494776f57142a0c0f8306c96a4e4ba545b245b4a9f3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:53:39.000Z'}}, {'blockNum': '0x4b6a1a', 'uniqueId': '0x37ce2ecfb14a5fc6e6d4fcc33aecb7eacc4a01e596ba7029c57de36649a8a7f5:log:7', 'hash': '0x37ce2ecfb14a5fc6e6d4fcc33aecb7eacc4a01e596ba7029c57de36649a8a7f5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa1c9753e7181313585b07bcd88a64a8ebd808ed7', 'value': 566.94857445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ebbfdf4a3d65af400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:54:12.000Z'}}, {'blockNum': '0x4b6a1c', 'uniqueId': '0x29cb1d45a94deba1656f95a25298eec4dde0014f7148d94221a3391eefd2f1ce:log:81', 'hash': '0x29cb1d45a94deba1656f95a25298eec4dde0014f7148d94221a3391eefd2f1ce', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.645578407460134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcb3f8bf74acada92', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:55:32.000Z'}}, {'blockNum': '0x4b6a1c', 'uniqueId': '0x29cb1d45a94deba1656f95a25298eec4dde0014f7148d94221a3391eefd2f1ce:log:84', 'hash': '0x29cb1d45a94deba1656f95a25298eec4dde0014f7148d94221a3391eefd2f1ce', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 14.645578407460134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcb3f8bf74acada92', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:55:32.000Z'}}, {'blockNum': '0x4b6a1c', 'uniqueId': '0x2230071e85317832b076b68607a114685feb5856b269f0ca105d3a3bc770feca:log:100', 'hash': '0x2230071e85317832b076b68607a114685feb5856b269f0ca105d3a3bc770feca', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.25681286713907236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039061f12792f16f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:55:32.000Z'}}, {'blockNum': '0x4b6a1c', 'uniqueId': '0x2230071e85317832b076b68607a114685feb5856b269f0ca105d3a3bc770feca:log:103', 'hash': '0x2230071e85317832b076b68607a114685feb5856b269f0ca105d3a3bc770feca', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 0.25681286713907236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039061f12792f16f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:55:32.000Z'}}, {'blockNum': '0x4b6a1d', 'uniqueId': '0xdc6c376a7e9b8f26930b360f6cd994e6b2f5a7bec6ad2f6e4aa9afa3be914513:log:41', 'hash': '0xdc6c376a7e9b8f26930b360f6cd994e6b2f5a7bec6ad2f6e4aa9afa3be914513', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 76.00870796122757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x041ed52d2de960073d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:55:38.000Z'}}, {'blockNum': '0x4b6a1d', 'uniqueId': '0xdc6c376a7e9b8f26930b360f6cd994e6b2f5a7bec6ad2f6e4aa9afa3be914513:log:43', 'hash': '0xdc6c376a7e9b8f26930b360f6cd994e6b2f5a7bec6ad2f6e4aa9afa3be914513', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 76.00870796122757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x041ed52d2de960073d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:55:38.000Z'}}, {'blockNum': '0x4b6a22', 'uniqueId': '0x3f509b853e3a1c63361aed5c79964f3931f5b29859f9984469d2664ad416cd47:log:13', 'hash': '0x3f509b853e3a1c63361aed5c79964f3931f5b29859f9984469d2664ad416cd47', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 11.716549517839821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2998bb5a41dec5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:56:34.000Z'}}, {'blockNum': '0x4b6a22', 'uniqueId': '0x3f509b853e3a1c63361aed5c79964f3931f5b29859f9984469d2664ad416cd47:log:16', 'hash': '0x3f509b853e3a1c63361aed5c79964f3931f5b29859f9984469d2664ad416cd47', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 11.716549517839821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2998bb5a41dec5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:56:34.000Z'}}, {'blockNum': '0x4b6a28', 'uniqueId': '0xa58b124759b4c02aeb65633ba35e18c74ddf8caaa803d12fac2ddadb42f0a8fb:log:9', 'hash': '0xa58b124759b4c02aeb65633ba35e18c74ddf8caaa803d12fac2ddadb42f0a8fb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x705eb714bab0b4e041da2a73541767e23a6f2622', 'value': 729.768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x278f90c185ff440000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:57:43.000Z'}}, {'blockNum': '0x4b6a28', 'uniqueId': '0x78fde484bd738e0118afa90643682449a16bc7f8d1a2c30d8ffcb47ac608d1a2:log:37', 'hash': '0x78fde484bd738e0118afa90643682449a16bc7f8d1a2c30d8ffcb47ac608d1a2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1172.590293051878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f90f592e18c637bbd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:57:43.000Z'}}, {'blockNum': '0x4b6a28', 'uniqueId': '0x78fde484bd738e0118afa90643682449a16bc7f8d1a2c30d8ffcb47ac608d1a2:log:39', 'hash': '0x78fde484bd738e0118afa90643682449a16bc7f8d1a2c30d8ffcb47ac608d1a2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 1172.590293051878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f90f592e18c637bbd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:57:43.000Z'}}, {'blockNum': '0x4b6a2a', 'uniqueId': '0x717b98386f121e4dff0eb6845d31ca0a97866370a2b91eae0db06ec3d4d7571d:log:22', 'hash': '0x717b98386f121e4dff0eb6845d31ca0a97866370a2b91eae0db06ec3d4d7571d', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 1173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f96a5252dfd340000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:58:36.000Z'}}, {'blockNum': '0x4b6a2a', 'uniqueId': '0x856c4dabdfabb19e349ecf06726726eca99e32735da1df7c186fab82b29343a8:log:26', 'hash': '0x856c4dabdfabb19e349ecf06726726eca99e32735da1df7c186fab82b29343a8', 'from': '0x3402d50c38202abb797819f728824068a5dafe60', 'to': '0x17d2dcfbb4281a41b9601a2291096c44ca0bafca', 'value': 274.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0edc98747db5570000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:58:36.000Z'}}, {'blockNum': '0x4b6a30', 'uniqueId': '0x90dafe82838ffa681e02a276c6ee8f2a08f743820ca839a4fdc50259c953b795:log:21', 'hash': '0x90dafe82838ffa681e02a276c6ee8f2a08f743820ca839a4fdc50259c953b795', 'from': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:00:36.000Z'}}, {'blockNum': '0x4b6a34', 'uniqueId': '0xfce8b47af0c8f649aa33d39aeed04deab218d1d788d5d3f4a40796dd685bf0cb:log:35', 'hash': '0xfce8b47af0c8f649aa33d39aeed04deab218d1d788d5d3f4a40796dd685bf0cb', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x088ce77bd4f83c0062dac606959a4bca9e9de184', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:01:54.000Z'}}, {'blockNum': '0x4b6a37', 'uniqueId': '0x1c12a56413852df24fd111ac91ab62c1ec45efb8730ca923d4ada7ce58e65611:log:17', 'hash': '0x1c12a56413852df24fd111ac91ab62c1ec45efb8730ca923d4ada7ce58e65611', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 23.23906162992774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014281bb6d3540d0bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:02:48.000Z'}}, {'blockNum': '0x4b6a37', 'uniqueId': '0x1c12a56413852df24fd111ac91ab62c1ec45efb8730ca923d4ada7ce58e65611:log:20', 'hash': '0x1c12a56413852df24fd111ac91ab62c1ec45efb8730ca923d4ada7ce58e65611', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 23.23906162992774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014281bb6d3540d0bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:02:48.000Z'}}, {'blockNum': '0x4b6a3c', 'uniqueId': '0xc55b262f5a86be612f0b47afc777fb357ae245fa8b8af10895d9585ba9a2a3d9:log:13', 'hash': '0xc55b262f5a86be612f0b47afc777fb357ae245fa8b8af10895d9585ba9a2a3d9', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 183.86373571546335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09f79f357b3c7ecb83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:03:54.000Z'}}, {'blockNum': '0x4b6a3c', 'uniqueId': '0xc55b262f5a86be612f0b47afc777fb357ae245fa8b8af10895d9585ba9a2a3d9:log:15', 'hash': '0xc55b262f5a86be612f0b47afc777fb357ae245fa8b8af10895d9585ba9a2a3d9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 183.86373571546335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09f79f357b3c7ecb83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:03:54.000Z'}}, {'blockNum': '0x4b6a3c', 'uniqueId': '0x17fcbfdbccfdc93cbea0705d74b8dbb7c7fb951c8fd53271e5f65ddf52cf14b2:log:39', 'hash': '0x17fcbfdbccfdc93cbea0705d74b8dbb7c7fb951c8fd53271e5f65ddf52cf14b2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1294.8836845831715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46321efa8a64e77886', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:03:54.000Z'}}, {'blockNum': '0x4b6a3c', 'uniqueId': '0x17fcbfdbccfdc93cbea0705d74b8dbb7c7fb951c8fd53271e5f65ddf52cf14b2:log:41', 'hash': '0x17fcbfdbccfdc93cbea0705d74b8dbb7c7fb951c8fd53271e5f65ddf52cf14b2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 1294.8836845831715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46321efa8a64e77886', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:03:54.000Z'}}, {'blockNum': '0x4b6a3c', 'uniqueId': '0x8615f5191abadcb31efd71d7eca333ea25fb57431b8d96db43c1f1a1772c0294:log:70', 'hash': '0x8615f5191abadcb31efd71d7eca333ea25fb57431b8d96db43c1f1a1772c0294', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 258.6190650445949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e050f7d6f7eb85d1e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:03:54.000Z'}}, {'blockNum': '0x4b6a3c', 'uniqueId': '0x8615f5191abadcb31efd71d7eca333ea25fb57431b8d96db43c1f1a1772c0294:log:73', 'hash': '0x8615f5191abadcb31efd71d7eca333ea25fb57431b8d96db43c1f1a1772c0294', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 258.6190650445949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e050f7d6f7eb85d1e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:03:54.000Z'}}, {'blockNum': '0x4b6a3e', 'uniqueId': '0x93daeb7d22cab94ab291119d9ce52219373b0646e4381f28d842d8886a55260b:log:46', 'hash': '0x93daeb7d22cab94ab291119d9ce52219373b0646e4381f28d842d8886a55260b', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 1295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4633bc36cbc2dc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:04:28.000Z'}}, {'blockNum': '0x4b6a42', 'uniqueId': '0x78f51212ca37c8970a099ccad06da22c3713eed8c49051f3b4ca1497c511f57c:log:74', 'hash': '0x78f51212ca37c8970a099ccad06da22c3713eed8c49051f3b4ca1497c511f57c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 62.83076064170626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0367f3b3e9787f0765', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:04:57.000Z'}}, {'blockNum': '0x4b6a42', 'uniqueId': '0x78f51212ca37c8970a099ccad06da22c3713eed8c49051f3b4ca1497c511f57c:log:77', 'hash': '0x78f51212ca37c8970a099ccad06da22c3713eed8c49051f3b4ca1497c511f57c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 62.83076064170626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0367f3b3e9787f0765', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:04:57.000Z'}}, {'blockNum': '0x4b6a49', 'uniqueId': '0x69f0777980428a7f43a9c674008945dbab62ad1242f48c0c631f3d7433abc2a0:log:35', 'hash': '0x69f0777980428a7f43a9c674008945dbab62ad1242f48c0c631f3d7433abc2a0', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1880.6263834247286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x65f2ef13bd3a84d2d0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:07:07.000Z'}}, {'blockNum': '0x4b6a49', 'uniqueId': '0x69f0777980428a7f43a9c674008945dbab62ad1242f48c0c631f3d7433abc2a0:log:37', 'hash': '0x69f0777980428a7f43a9c674008945dbab62ad1242f48c0c631f3d7433abc2a0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1880.6263834247286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x65f2ef13bd3a84d2d0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:07:07.000Z'}}, {'blockNum': '0x4b6a4c', 'uniqueId': '0x29fd26c0c704a13c198b0448239619decb7dcb74a6ea834a79f454c473895c78:log:25', 'hash': '0x29fd26c0c704a13c198b0448239619decb7dcb74a6ea834a79f454c473895c78', 'from': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x85ca615bf9c0100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:08:16.000Z'}}, {'blockNum': '0x4b6a4f', 'uniqueId': '0x41b60689beb7c893a8d3cf9a501796f5c055ff3b42cba9a9986e6d4459bd24c5:log:62', 'hash': '0x41b60689beb7c893a8d3cf9a501796f5c055ff3b42cba9a9986e6d4459bd24c5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 17.028077761497848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xec4fe28165ced5d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:08:49.000Z'}}, {'blockNum': '0x4b6a4f', 'uniqueId': '0x41b60689beb7c893a8d3cf9a501796f5c055ff3b42cba9a9986e6d4459bd24c5:log:65', 'hash': '0x41b60689beb7c893a8d3cf9a501796f5c055ff3b42cba9a9986e6d4459bd24c5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x38a3fc625df834dd34e8ede60e10cd3024a6650e', 'value': 17.028077761497848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xec4fe28165ced5d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:08:49.000Z'}}, {'blockNum': '0x4b6a57', 'uniqueId': '0x168b07bf96ecfc74ca8572879931bde2708883ca978b1b0f99486bdb09e60f7b:log:2', 'hash': '0x168b07bf96ecfc74ca8572879931bde2708883ca978b1b0f99486bdb09e60f7b', 'from': '0xf95f34f311b365b31fe56b94f705cdc78edc223c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1475.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ff7ae0e5f91ba0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:10:13.000Z'}}, {'blockNum': '0x4b6a57', 'uniqueId': '0x4d827cadfd09c93ae0c24fd39a19fe01b0403860292c85d55e52ed2a830dcca9:log:5', 'hash': '0x4d827cadfd09c93ae0c24fd39a19fe01b0403860292c85d55e52ed2a830dcca9', 'from': '0x49da3e4a9fc77d6ec54bcac841992f280e4f8136', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10625.039813474717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x023ffc0c487b4f315651', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:10:13.000Z'}}, {'blockNum': '0x4b6a57', 'uniqueId': '0xa6362b942a40d521162811b3bec544a0cc1d9c61cb4d9fa4c2d49c0b31f62cb4:log:6', 'hash': '0xa6362b942a40d521162811b3bec544a0cc1d9c61cb4d9fa4c2d49c0b31f62cb4', 'from': '0x3d697c0910fb6ccd4411163336503dc62d24a1ff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d43f3ebfafb2c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:10:13.000Z'}}, {'blockNum': '0x4b6a57', 'uniqueId': '0xabe50f5c8b3be8e8fba0347f05823689f1104768915b9ee14a995b532b05c883:log:12', 'hash': '0xabe50f5c8b3be8e8fba0347f05823689f1104768915b9ee14a995b532b05c883', 'from': '0x6fffd968df5ea5557e0c180e07361eebda6dff75', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 464.58072075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x192f5a481166b2cc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:10:13.000Z'}}, {'blockNum': '0x4b6a57', 'uniqueId': '0x1dd8e651186260160eab9328a5ef9da4a0ad15ecc31a4e41273c39452fc3b3e7:log:38', 'hash': '0x1dd8e651186260160eab9328a5ef9da4a0ad15ecc31a4e41273c39452fc3b3e7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 556.4840416540088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e2ac4778168e0d655', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:10:13.000Z'}}, {'blockNum': '0x4b6a57', 'uniqueId': '0x1dd8e651186260160eab9328a5ef9da4a0ad15ecc31a4e41273c39452fc3b3e7:log:41', 'hash': '0x1dd8e651186260160eab9328a5ef9da4a0ad15ecc31a4e41273c39452fc3b3e7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 556.4840416540088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e2ac4778168e0d655', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:10:13.000Z'}}, {'blockNum': '0x4b6a5a', 'uniqueId': '0x667295e541506b4d75776b0a48ff0422e8d6dc0f295b640bbb131a73ad629794:log:64', 'hash': '0x667295e541506b4d75776b0a48ff0422e8d6dc0f295b640bbb131a73ad629794', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7.321914081018405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x659caa1043086049', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:11:17.000Z'}}, {'blockNum': '0x4b6a5a', 'uniqueId': '0x667295e541506b4d75776b0a48ff0422e8d6dc0f295b640bbb131a73ad629794:log:67', 'hash': '0x667295e541506b4d75776b0a48ff0422e8d6dc0f295b640bbb131a73ad629794', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 7.321914081018405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x659caa1043086049', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:11:17.000Z'}}, {'blockNum': '0x4b6a5b', 'uniqueId': '0xc8173a2d027db71618a32ce05e7b4cdf26a4f855cc7ca97b29e79192a0df0eb3:log:26', 'hash': '0xc8173a2d027db71618a32ce05e7b4cdf26a4f855cc7ca97b29e79192a0df0eb3', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'value': 362.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13a6b2b564871a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:12:22.000Z'}}, {'blockNum': '0x4b6a5b', 'uniqueId': '0x01924ac2c60e8e9d2e617d7aba3190aab825f462d430133ee2cb9626b2c41d01:log:63', 'hash': '0x01924ac2c60e8e9d2e617d7aba3190aab825f462d430133ee2cb9626b2c41d01', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xf08906346ef723390e46d409e244d5c9074e1856', 'value': 1.42401136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13c31ac984ebc000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:12:22.000Z'}}, {'blockNum': '0x4b6a5c', 'uniqueId': '0xa250063188d3acd7738f5d9927c3174362c03fac800b2a8a3d04424f86340cfd:log:0', 'hash': '0xa250063188d3acd7738f5d9927c3174362c03fac800b2a8a3d04424f86340cfd', 'from': '0x591203018192cd5df17ac89c169202f2f9044d2d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5596.528655959333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x012f636fe8ea56681b19', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:12:59.000Z'}}, {'blockNum': '0x4b6a5d', 'uniqueId': '0xe15c619cf7c9f6d12662f7a95669e50b9a62a6573b2ff041783c2fbcc6beb84e:log:34', 'hash': '0xe15c619cf7c9f6d12662f7a95669e50b9a62a6573b2ff041783c2fbcc6beb84e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:13:17.000Z'}}, {'blockNum': '0x4b6a5e', 'uniqueId': '0x918702472aa37e725e9b65e5df7d536bf61f0d22c34023843e9ba6432c55a042:log:56', 'hash': '0x918702472aa37e725e9b65e5df7d536bf61f0d22c34023843e9ba6432c55a042', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 236.491074882241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cd1f9139f3a47c36b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:13:25.000Z'}}, {'blockNum': '0x4b6a5e', 'uniqueId': '0x918702472aa37e725e9b65e5df7d536bf61f0d22c34023843e9ba6432c55a042:log:59', 'hash': '0x918702472aa37e725e9b65e5df7d536bf61f0d22c34023843e9ba6432c55a042', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 236.491074882241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cd1f9139f3a47c36b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:13:25.000Z'}}, {'blockNum': '0x4b6a64', 'uniqueId': '0x882a7c0a769f9166805d59bc7aa22475afc28d3261d3eb6da89119fc00351f83:log:22', 'hash': '0x882a7c0a769f9166805d59bc7aa22475afc28d3261d3eb6da89119fc00351f83', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x379a2e3ff2199b974215d6428a057d48f3b952eb', 'value': 1061.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x398b4591ee95260000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:14:58.000Z'}}, {'blockNum': '0x4b6a6b', 'uniqueId': '0x5e52b327a5e8954b41b47f59ad39daf6515531900d751d52fe099572770fd34e:log:2', 'hash': '0x5e52b327a5e8954b41b47f59ad39daf6515531900d751d52fe099572770fd34e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfe9e8709d3215310075d67e3ed32a380ccf451c8', 'value': 106226.75042193405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x167e904d474ddf4bf96a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:16:46.000Z'}}, {'blockNum': '0x4b6a6e', 'uniqueId': '0x3c9790755a1d50015f4d7d3b733ac3308e2cd37ba2d9264a43e362a54ccb3b2f:log:3', 'hash': '0x3c9790755a1d50015f4d7d3b733ac3308e2cd37ba2d9264a43e362a54ccb3b2f', 'from': '0xc9308c224a46aec3d232f40869034f2c93f339c1', 'to': '0x66e9a02f07421ae1e8532c6186abc409906ad8f6', 'value': 6.80547746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5e71e9b1623a4800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:18:20.000Z'}}, {'blockNum': '0x4b6a6e', 'uniqueId': '0x208d2b629f753be4c2ff71736733025400cc560cb2a4ac00f0b58a0f4e0ba87e:log:88', 'hash': '0x208d2b629f753be4c2ff71736733025400cc560cb2a4ac00f0b58a0f4e0ba87e', 'from': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 788.6681073042743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ac0f7f90ceeeccaee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:18:20.000Z'}}, {'blockNum': '0x4b6a6e', 'uniqueId': '0x208d2b629f753be4c2ff71736733025400cc560cb2a4ac00f0b58a0f4e0ba87e:log:90', 'hash': '0x208d2b629f753be4c2ff71736733025400cc560cb2a4ac00f0b58a0f4e0ba87e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 788.6681073042743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ac0f7f90ceeeccaee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:18:20.000Z'}}, {'blockNum': '0x4b6a6f', 'uniqueId': '0x2939c478923fe7675df5e4fb44c5096e26556a9168c731630e595f246759f38f:log:26', 'hash': '0x2939c478923fe7675df5e4fb44c5096e26556a9168c731630e595f246759f38f', 'from': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 322.0186680064922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1174e8206c836a1266', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:18:28.000Z'}}, {'blockNum': '0x4b6a6f', 'uniqueId': '0x2939c478923fe7675df5e4fb44c5096e26556a9168c731630e595f246759f38f:log:28', 'hash': '0x2939c478923fe7675df5e4fb44c5096e26556a9168c731630e595f246759f38f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 322.0186680064922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1174e8206c836a1266', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:18:28.000Z'}}, {'blockNum': '0x4b6a75', 'uniqueId': '0x1288e3408f7e9dbfc2f982877faa71b32f97797d70e30edff8ffdccd0ea86ff5:log:23', 'hash': '0x1288e3408f7e9dbfc2f982877faa71b32f97797d70e30edff8ffdccd0ea86ff5', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 258.51497332292325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e039dae90f06cc545', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:19:03.000Z'}}, {'blockNum': '0x4b6a75', 'uniqueId': '0x1288e3408f7e9dbfc2f982877faa71b32f97797d70e30edff8ffdccd0ea86ff5:log:25', 'hash': '0x1288e3408f7e9dbfc2f982877faa71b32f97797d70e30edff8ffdccd0ea86ff5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 258.51497332292325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e039dae90f06cc545', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:19:03.000Z'}}, {'blockNum': '0x4b6a77', 'uniqueId': '0xb8fcfc8d90d976ed5230b6cfe14dd1623f900eeb70f1cdbc2c4414d71256589d:log:7', 'hash': '0xb8fcfc8d90d976ed5230b6cfe14dd1623f900eeb70f1cdbc2c4414d71256589d', 'from': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 362.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13a6b2b564871a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:19:34.000Z'}}, {'blockNum': '0x4b6a77', 'uniqueId': '0xe10fcb07041fcd70b68921b6ecedde84b3f0d11634964e8e127f5d5af835f6cc:log:9', 'hash': '0xe10fcb07041fcd70b68921b6ecedde84b3f0d11634964e8e127f5d5af835f6cc', 'from': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:19:34.000Z'}}, {'blockNum': '0x4b6a77', 'uniqueId': '0x599ed197f8119bfd7a8b2ae7b8ea002109c4a7e31c3748d2cca070e729af1454:log:55', 'hash': '0x599ed197f8119bfd7a8b2ae7b8ea002109c4a7e31c3748d2cca070e729af1454', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01043561a88293000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:19:34.000Z'}}, {'blockNum': '0x4b6a77', 'uniqueId': '0x599ed197f8119bfd7a8b2ae7b8ea002109c4a7e31c3748d2cca070e729af1454:log:58', 'hash': '0x599ed197f8119bfd7a8b2ae7b8ea002109c4a7e31c3748d2cca070e729af1454', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01043561a88293000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:19:34.000Z'}}, {'blockNum': '0x4b6a77', 'uniqueId': '0x599ed197f8119bfd7a8b2ae7b8ea002109c4a7e31c3748d2cca070e729af1454:log:59', 'hash': '0x599ed197f8119bfd7a8b2ae7b8ea002109c4a7e31c3748d2cca070e729af1454', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01043561a88293000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:19:34.000Z'}}, {'blockNum': '0x4b6a7a', 'uniqueId': '0x864c49c10bf9143afe1cbfa1b24e0623480ec0d333d5a51eb124542cfea323a1:log:12', 'hash': '0x864c49c10bf9143afe1cbfa1b24e0623480ec0d333d5a51eb124542cfea323a1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2466.62303951078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x85b74569b4c25b39ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:20:06.000Z'}}, {'blockNum': '0x4b6a7a', 'uniqueId': '0x864c49c10bf9143afe1cbfa1b24e0623480ec0d333d5a51eb124542cfea323a1:log:14', 'hash': '0x864c49c10bf9143afe1cbfa1b24e0623480ec0d333d5a51eb124542cfea323a1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 2466.62303951078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x85b74569b4c25b39ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:20:06.000Z'}}, {'blockNum': '0x4b6a7c', 'uniqueId': '0xdf5d0001311cd5b8aba99e8952763ee874cbf2332f677ec047e3cf104e1a8e3a:log:38', 'hash': '0xdf5d0001311cd5b8aba99e8952763ee874cbf2332f677ec047e3cf104e1a8e3a', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 2467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x85bc80a54618ac0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:20:34.000Z'}}, {'blockNum': '0x4b6a86', 'uniqueId': '0x92da5c720a2e2d04f3ca580db12b6333fed0afaa0747164279edb7c45aa9ff75:log:5', 'hash': '0x92da5c720a2e2d04f3ca580db12b6333fed0afaa0747164279edb7c45aa9ff75', 'from': '0x379a2e3ff2199b974215d6428a057d48f3b952eb', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1061.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x398b4591ee95260000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:23:23.000Z'}}, {'blockNum': '0x4b6a88', 'uniqueId': '0xb725cc577c034c07505300f027d90c28a2d0fe26af0544c6b2129efd5cfcd3b3:log:4', 'hash': '0xb725cc577c034c07505300f027d90c28a2d0fe26af0544c6b2129efd5cfcd3b3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 24998.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x054b2be0e645428a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:23:34.000Z'}}, {'blockNum': '0x4b6a8d', 'uniqueId': '0xbfd2f75af5701b252f0d405cff9939b70cab42f6337b32fa9bfbff1b79fd5b65:log:30', 'hash': '0xbfd2f75af5701b252f0d405cff9939b70cab42f6337b32fa9bfbff1b79fd5b65', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 248.34049781480695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d766aaeff8b3d86b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:24:31.000Z'}}, {'blockNum': '0x4b6a8d', 'uniqueId': '0xbfd2f75af5701b252f0d405cff9939b70cab42f6337b32fa9bfbff1b79fd5b65:log:32', 'hash': '0xbfd2f75af5701b252f0d405cff9939b70cab42f6337b32fa9bfbff1b79fd5b65', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 248.34049781480695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d766aaeff8b3d86b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:24:31.000Z'}}, {'blockNum': '0x4b6a8e', 'uniqueId': '0xf7fc5bd784d0d52d34c293581abf505104c8f28b6690826d993d02ce86bbdf4b:log:14', 'hash': '0xf7fc5bd784d0d52d34c293581abf505104c8f28b6690826d993d02ce86bbdf4b', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x13a6c80ff3ddf7b276cf19c951f2649c789df0bb', 'value': 4.30777887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3bc84e0f05489c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:24:44.000Z'}}, {'blockNum': '0x4b6a92', 'uniqueId': '0x5b848dbf219ae36b9cd4c21dc3c47053f56d47af8548ff3184067244f43bb697:log:4', 'hash': '0x5b848dbf219ae36b9cd4c21dc3c47053f56d47af8548ff3184067244f43bb697', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xa93bce2ecd560d5dce5d60724a905672bf931cd7', 'value': 7.56281401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x68f48345c865c400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:25:18.000Z'}}, {'blockNum': '0x4b6a97', 'uniqueId': '0x96a3220aca319782e96a71c30245ed3d554d4c56e91bbbcc37aad5f9e747d65b:log:13', 'hash': '0x96a3220aca319782e96a71c30245ed3d554d4c56e91bbbcc37aad5f9e747d65b', 'from': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x85bc80a54618ac0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:27:13.000Z'}}, {'blockNum': '0x4b6a99', 'uniqueId': '0xd0cfc5f6e531811b89241c03ba8432c6bf0e370754693ba477616000427589cf:log:132', 'hash': '0xd0cfc5f6e531811b89241c03ba8432c6bf0e370754693ba477616000427589cf', 'from': '0x15f9e2f31c7148ee9fa182a5d81d1338d5ea8d64', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:27:33.000Z'}}, {'blockNum': '0x4b6a9c', 'uniqueId': '0x810925c0901dbd1131c9a27615e4107aa8ad8c10891306abe3a6f4a6a8e0a1e0:log:5', 'hash': '0x810925c0901dbd1131c9a27615e4107aa8ad8c10891306abe3a6f4a6a8e0a1e0', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:28:02.000Z'}}, {'blockNum': '0x4b6a9c', 'uniqueId': '0x810925c0901dbd1131c9a27615e4107aa8ad8c10891306abe3a6f4a6a8e0a1e0:log:8', 'hash': '0x810925c0901dbd1131c9a27615e4107aa8ad8c10891306abe3a6f4a6a8e0a1e0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:28:02.000Z'}}, {'blockNum': '0x4b6a9c', 'uniqueId': '0x810925c0901dbd1131c9a27615e4107aa8ad8c10891306abe3a6f4a6a8e0a1e0:log:9', 'hash': '0x810925c0901dbd1131c9a27615e4107aa8ad8c10891306abe3a6f4a6a8e0a1e0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:28:02.000Z'}}, {'blockNum': '0x4b6a9e', 'uniqueId': '0x4368e7dfdde17429fd9d558d8fad413db179466a97272e42e659d3877d13b8ed:log:62', 'hash': '0x4368e7dfdde17429fd9d558d8fad413db179466a97272e42e659d3877d13b8ed', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 13181.192056957818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02ca8dc952dac33260fd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:29:14.000Z'}}, {'blockNum': '0x4b6a9e', 'uniqueId': '0x4368e7dfdde17429fd9d558d8fad413db179466a97272e42e659d3877d13b8ed:log:64', 'hash': '0x4368e7dfdde17429fd9d558d8fad413db179466a97272e42e659d3877d13b8ed', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00a83e95a30765e4938ad86370b25f941a3caa86', 'value': 13181.192056957818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02ca8dc952dac33260fd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:29:14.000Z'}}, {'blockNum': '0x4b6aa5', 'uniqueId': '0x0f0a504fa4af6c12f2a994d633e342fbd47ab3acb0f7b011b6d1787287cbf1a4:log:2', 'hash': '0x0f0a504fa4af6c12f2a994d633e342fbd47ab3acb0f7b011b6d1787287cbf1a4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:31:40.000Z'}}, {'blockNum': '0x4b6aa9', 'uniqueId': '0x7eccc0442fc547571d7a3af49526f5d8876314d440ac0ed8ddeadfac0df983c3:log:33', 'hash': '0x7eccc0442fc547571d7a3af49526f5d8876314d440ac0ed8ddeadfac0df983c3', 'from': '0x00a83e95a30765e4938ad86370b25f941a3caa86', 'to': '0x24082f1de7a54e8f150541c8c615cb1dee5553ba', 'value': 13181.373107864963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02ca904c8bb201de8232', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:32:53.000Z'}}, {'blockNum': '0x4b6ab9', 'uniqueId': '0x272477c8e322516476ee3d8bf9d43b6c6a8e5a3eb4669b49d9f43eb2dee154b3:log:72', 'hash': '0x272477c8e322516476ee3d8bf9d43b6c6a8e5a3eb4669b49d9f43eb2dee154b3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 64.39088514318317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x037d9a60e15469043e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:37:39.000Z'}}, {'blockNum': '0x4b6ab9', 'uniqueId': '0x272477c8e322516476ee3d8bf9d43b6c6a8e5a3eb4669b49d9f43eb2dee154b3:log:75', 'hash': '0x272477c8e322516476ee3d8bf9d43b6c6a8e5a3eb4669b49d9f43eb2dee154b3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xeade8b32735f9c7871da862c18bf12caeaa4e6e9', 'value': 64.39088514318317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x037d9a60e15469043e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:37:39.000Z'}}, {'blockNum': '0x4b6ac4', 'uniqueId': '0xcac212e7f20c2b004311de082190d2f62d543a2213b6c8d6d147d66906b709f2:log:7', 'hash': '0xcac212e7f20c2b004311de082190d2f62d543a2213b6c8d6d147d66906b709f2', 'from': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:41:00.000Z'}}, {'blockNum': '0x4b6ac9', 'uniqueId': '0xebabecdaa6b511d843d1e660d63e954451081f7939b9040734d8064e9aebffb3:log:43', 'hash': '0xebabecdaa6b511d843d1e660d63e954451081f7939b9040734d8064e9aebffb3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9bced9cffb39d97e51b86917879f910f12ac0cad', 'value': 8.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75f610f70ed20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:42:30.000Z'}}, {'blockNum': '0x4b6ad5', 'uniqueId': '0xc6ce2fb052386dcdeff36459a4e80d2c0fd0c829e82ef2c5bbd6b1287f9618b2:log:21', 'hash': '0xc6ce2fb052386dcdeff36459a4e80d2c0fd0c829e82ef2c5bbd6b1287f9618b2', 'from': '0x512e2d8e36a62538ca8af3653253c44ec4899c73', 'to': '0xc903073e12ad8d0a5157dbf7235b23d46f212b84', 'value': 1.0351633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e5da3896d056800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:44:11.000Z'}}, {'blockNum': '0x4b6ad8', 'uniqueId': '0xc3158f9feea535f0c5f08cc9d1f914a23a74daf8b18dbcf189539974cbe99acb:log:2', 'hash': '0xc3158f9feea535f0c5f08cc9d1f914a23a74daf8b18dbcf189539974cbe99acb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x35c6a5dd66b836409b716609d2ead0aa1fe6d7ab', 'value': 7.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x63eb89da4ed00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:44:35.000Z'}}, {'blockNum': '0x4b6adb', 'uniqueId': '0xe7f23bb64819ddfa9ac5336ead1eef1e0bde302393665d1a000de93f5ecab0ef:log:35', 'hash': '0xe7f23bb64819ddfa9ac5336ead1eef1e0bde302393665d1a000de93f5ecab0ef', 'from': '0xec64bd6efff779637f10b58109ff74e4f4212918', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 23.296240277408963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01434cdf1a811bd84c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:45:03.000Z'}}, {'blockNum': '0x4b6adb', 'uniqueId': '0xe7f23bb64819ddfa9ac5336ead1eef1e0bde302393665d1a000de93f5ecab0ef:log:37', 'hash': '0xe7f23bb64819ddfa9ac5336ead1eef1e0bde302393665d1a000de93f5ecab0ef', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 23.296240277408963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01434cdf1a811bd84c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:45:03.000Z'}}, {'blockNum': '0x4b6aeb', 'uniqueId': '0x9feb8c5d40e870a4f01be5ff86273f97bbc35b041fddad236663b1178d153a2a:log:1', 'hash': '0x9feb8c5d40e870a4f01be5ff86273f97bbc35b041fddad236663b1178d153a2a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa062f873a8830e70367e88b1646abe0be41dedd5', 'value': 4.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3997c30329df0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:48:50.000Z'}}, {'blockNum': '0x4b6aec', 'uniqueId': '0xa50d1a4245b448ebcd156951fd329738b03f4cce6d9aaacac940e66d5c9267a6:log:0', 'hash': '0xa50d1a4245b448ebcd156951fd329738b03f4cce6d9aaacac940e66d5c9267a6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x872f071574528c5900a058cb17e99a211f298e8c', 'value': 600.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2088c11d44deaf0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:49:04.000Z'}}, {'blockNum': '0x4b6aee', 'uniqueId': '0x1216b9781d306a57feccc10dd914079606b7411a552e0476fbb14e0315711a7d:log:6', 'hash': '0x1216b9781d306a57feccc10dd914079606b7411a552e0476fbb14e0315711a7d', 'from': '0xc903073e12ad8d0a5157dbf7235b23d46f212b84', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1.0351633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e5da3896d056800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:49:31.000Z'}}, {'blockNum': '0x4b6aee', 'uniqueId': '0x2b34a02b3cbe0fffa706bbdfbd7313d0c89aef0c4db65bd75395bbd16ce5cb7c:log:48', 'hash': '0x2b34a02b3cbe0fffa706bbdfbd7313d0c89aef0c4db65bd75395bbd16ce5cb7c', 'from': '0x25d4aef414ea092fbcbd83fd30e89e15cf820d0a', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 636.2432116925834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x227da5f612ca17a046', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:49:31.000Z'}}, {'blockNum': '0x4b6aee', 'uniqueId': '0x2b34a02b3cbe0fffa706bbdfbd7313d0c89aef0c4db65bd75395bbd16ce5cb7c:log:50', 'hash': '0x2b34a02b3cbe0fffa706bbdfbd7313d0c89aef0c4db65bd75395bbd16ce5cb7c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 636.2432116925834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x227da5f612ca17a046', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:49:31.000Z'}}, {'blockNum': '0x4b6af1', 'uniqueId': '0x52121ede053ac2b9366edecccbefbb47d92ca0dddd5d67bd9782c2a24137f494:log:154', 'hash': '0x52121ede053ac2b9366edecccbefbb47d92ca0dddd5d67bd9782c2a24137f494', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 92.93414494423652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0509b86870c9e1d5be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:50:08.000Z'}}, {'blockNum': '0x4b6af1', 'uniqueId': '0x52121ede053ac2b9366edecccbefbb47d92ca0dddd5d67bd9782c2a24137f494:log:157', 'hash': '0x52121ede053ac2b9366edecccbefbb47d92ca0dddd5d67bd9782c2a24137f494', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 92.93414494423652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0509b86870c9e1d5be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:50:08.000Z'}}, {'blockNum': '0x4b6af4', 'uniqueId': '0x4ce523b913d98ab9e4092abd44960e9dfec7ef683ae84d8523eb9562239bd315:log:6', 'hash': '0x4ce523b913d98ab9e4092abd44960e9dfec7ef683ae84d8523eb9562239bd315', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x5694344318d9265ccc18cf27371aedf6720dc675', 'value': 18.99283973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0107941f1b26937000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:51:24.000Z'}}, {'blockNum': '0x4b6afb', 'uniqueId': '0xcbbadaacfd777cb846c7a3ea17a707b505a7df6d1f2dfac6a79fa6ced538790c:log:2', 'hash': '0xcbbadaacfd777cb846c7a3ea17a707b505a7df6d1f2dfac6a79fa6ced538790c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa062f873a8830e70367e88b1646abe0be41dedd5', 'value': 390.50275488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x152b507a9751d68000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:52:51.000Z'}}, {'blockNum': '0x4b6afb', 'uniqueId': '0xff6a96e9f4189dc3530fec29b05f568b13353233de4f43aedb81a4d499fd291c:log:9', 'hash': '0xff6a96e9f4189dc3530fec29b05f568b13353233de4f43aedb81a4d499fd291c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1304.4772641823317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46b742385b69459c8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:52:51.000Z'}}, {'blockNum': '0x4b6afb', 'uniqueId': '0xff6a96e9f4189dc3530fec29b05f568b13353233de4f43aedb81a4d499fd291c:log:11', 'hash': '0xff6a96e9f4189dc3530fec29b05f568b13353233de4f43aedb81a4d499fd291c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 1304.4772641823317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46b742385b69459c8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:52:51.000Z'}}, {'blockNum': '0x4b6afe', 'uniqueId': '0x12b19179d2afb2ec235027e498b771877b266693829f1c4b7aad9ef7b8b94472:log:32', 'hash': '0x12b19179d2afb2ec235027e498b771877b266693829f1c4b7aad9ef7b8b94472', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 1304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46b0a2a31ca5600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:54:27.000Z'}}, {'blockNum': '0x4b6b01', 'uniqueId': '0x41d96afc0b01dc470b00e38004fda4604dc30da0f2743509d5ac4b4321015d56:log:52', 'hash': '0x41d96afc0b01dc470b00e38004fda4604dc30da0f2743509d5ac4b4321015d56', 'from': '0x24082f1de7a54e8f150541c8c615cb1dee5553ba', 'to': '0xf07232bc85d995c32c1edf1c985c84a8b7b0ded7', 'value': 21922.37310786496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04a46a0acfe47b528232', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:55:26.000Z'}}, {'blockNum': '0x4b6b08', 'uniqueId': '0x54f227d0089aa225ab5e0447b9a019a28b839ba345fba4335e7c97912e168143:log:18', 'hash': '0x54f227d0089aa225ab5e0447b9a019a28b839ba345fba4335e7c97912e168143', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 651.4928704057832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x235147a1e07c4ebc1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:57:29.000Z'}}, {'blockNum': '0x4b6b08', 'uniqueId': '0x54f227d0089aa225ab5e0447b9a019a28b839ba345fba4335e7c97912e168143:log:20', 'hash': '0x54f227d0089aa225ab5e0447b9a019a28b839ba345fba4335e7c97912e168143', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 651.4928704057832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x235147a1e07c4ebc1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:57:29.000Z'}}, {'blockNum': '0x4b6b0b', 'uniqueId': '0xdaf473bd40e06b71fcaa2811fd3da63f0d14429a5ff7584c13b38353e5f82dc0:log:30', 'hash': '0xdaf473bd40e06b71fcaa2811fd3da63f0d14429a5ff7584c13b38353e5f82dc0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2926.3104279798035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9ea2b715fd9180de4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:57:56.000Z'}}, {'blockNum': '0x4b6b0b', 'uniqueId': '0xdaf473bd40e06b71fcaa2811fd3da63f0d14429a5ff7584c13b38353e5f82dc0:log:32', 'hash': '0xdaf473bd40e06b71fcaa2811fd3da63f0d14429a5ff7584c13b38353e5f82dc0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2926.3104279798035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9ea2b715fd9180de4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:57:56.000Z'}}, {'blockNum': '0x4b6b19', 'uniqueId': '0xd59d3ea159d15b9868d698d16764e47615db4aaa7dae7d42f46142cef254354d:log:142', 'hash': '0xd59d3ea159d15b9868d698d16764e47615db4aaa7dae7d42f46142cef254354d', 'from': '0x004a8d75917ce886c0012f5cced092ddd85d01ef', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:01:04.000Z'}}, {'blockNum': '0x4b6b19', 'uniqueId': '0xd59d3ea159d15b9868d698d16764e47615db4aaa7dae7d42f46142cef254354d:log:145', 'hash': '0xd59d3ea159d15b9868d698d16764e47615db4aaa7dae7d42f46142cef254354d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:01:04.000Z'}}, {'blockNum': '0x4b6b19', 'uniqueId': '0xd59d3ea159d15b9868d698d16764e47615db4aaa7dae7d42f46142cef254354d:log:146', 'hash': '0xd59d3ea159d15b9868d698d16764e47615db4aaa7dae7d42f46142cef254354d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:01:04.000Z'}}, {'blockNum': '0x4b6b1d', 'uniqueId': '0xda179e8ff6fa68a4021df7baf5e32b25862c74b11d64cc1536a4f16db99b1ffc:log:27', 'hash': '0xda179e8ff6fa68a4021df7baf5e32b25862c74b11d64cc1536a4f16db99b1ffc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 33.610690492286295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01d27128ecf852e1de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:01:46.000Z'}}, {'blockNum': '0x4b6b1d', 'uniqueId': '0xda179e8ff6fa68a4021df7baf5e32b25862c74b11d64cc1536a4f16db99b1ffc:log:30', 'hash': '0xda179e8ff6fa68a4021df7baf5e32b25862c74b11d64cc1536a4f16db99b1ffc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 33.610690492286295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01d27128ecf852e1de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:01:46.000Z'}}, {'blockNum': '0x4b6b20', 'uniqueId': '0x924a7ff942c8d5932017c6c7bc5f5f189f84bca1aa8b70a1d8fef180fb19386f:log:36', 'hash': '0x924a7ff942c8d5932017c6c7bc5f5f189f84bca1aa8b70a1d8fef180fb19386f', 'from': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46b0a2a31ca5600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:02:27.000Z'}}, {'blockNum': '0x4b6b2a', 'uniqueId': '0x1d24ee5e043e10877b92ba948a4fb186082b378035f93b398731927f4fab737a:log:55', 'hash': '0x1d24ee5e043e10877b92ba948a4fb186082b378035f93b398731927f4fab737a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2925.4585866337334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9e96e4bcccabfe7130', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:05:01.000Z'}}, {'blockNum': '0x4b6b2a', 'uniqueId': '0x1d24ee5e043e10877b92ba948a4fb186082b378035f93b398731927f4fab737a:log:57', 'hash': '0x1d24ee5e043e10877b92ba948a4fb186082b378035f93b398731927f4fab737a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2925.4585866337334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9e96e4bcccabfe7130', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:05:01.000Z'}}, {'blockNum': '0x4b6b2a', 'uniqueId': '0x274b8b37a5aef66bbe965fdc35572605a5e7c3314048539d34c4123b2a2fe181:log:68', 'hash': '0x274b8b37a5aef66bbe965fdc35572605a5e7c3314048539d34c4123b2a2fe181', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x6b0858d65218192b21e3a506a5620fc9a32257ba', 'value': 3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29a2241af62c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:05:01.000Z'}}, {'blockNum': '0x4b6b2b', 'uniqueId': '0x342be4941748f721222f218680dab1baa9b60ad819070161fd9378f84450f467:log:44', 'hash': '0x342be4941748f721222f218680dab1baa9b60ad819070161fd9378f84450f467', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.624747925610253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcaf58ac0cba14732', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:05:52.000Z'}}, {'blockNum': '0x4b6b2b', 'uniqueId': '0x342be4941748f721222f218680dab1baa9b60ad819070161fd9378f84450f467:log:47', 'hash': '0x342be4941748f721222f218680dab1baa9b60ad819070161fd9378f84450f467', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 14.624747925610253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcaf58ac0cba14732', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:05:52.000Z'}}, {'blockNum': '0x4b6b2b', 'uniqueId': '0x6a6018edb0184fecf549a4a868184d01038c7bb11ebc6a10b93acf91788f699f:log:69', 'hash': '0x6a6018edb0184fecf549a4a868184d01038c7bb11ebc6a10b93acf91788f699f', 'from': '0x70fd01e9492cf089999c2d33063b8fe78a6267b8', 'to': '0xa10d5531ef4fbfff688e1f075e4e2efc315a5a89', 'value': 3.465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3016272442ba8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:05:52.000Z'}}, {'blockNum': '0x4b6b2e', 'uniqueId': '0x9a5aa17e76cea8c1efca3ee1824004a0ef5f5a567241672354b33b22d67d573c:log:17', 'hash': '0x9a5aa17e76cea8c1efca3ee1824004a0ef5f5a567241672354b33b22d67d573c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.624722608383669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcaf573ba2b5532b8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:06:40.000Z'}}, {'blockNum': '0x4b6b2e', 'uniqueId': '0x9a5aa17e76cea8c1efca3ee1824004a0ef5f5a567241672354b33b22d67d573c:log:20', 'hash': '0x9a5aa17e76cea8c1efca3ee1824004a0ef5f5a567241672354b33b22d67d573c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 14.624722608383669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcaf573ba2b5532b8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:06:40.000Z'}}, {'blockNum': '0x4b6b31', 'uniqueId': '0x04c9b67b4b7e47b009d348e7756e2a251f7881694b5667c51777a17f9d6ec579:log:13', 'hash': '0x04c9b67b4b7e47b009d348e7756e2a251f7881694b5667c51777a17f9d6ec579', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 212.0556328554104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b7edcf290276422f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:07:31.000Z'}}, {'blockNum': '0x4b6b31', 'uniqueId': '0x04c9b67b4b7e47b009d348e7756e2a251f7881694b5667c51777a17f9d6ec579:log:16', 'hash': '0x04c9b67b4b7e47b009d348e7756e2a251f7881694b5667c51777a17f9d6ec579', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 212.0556328554104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b7edcf290276422f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:07:31.000Z'}}, {'blockNum': '0x4b6b33', 'uniqueId': '0x23a9d22ad38c96b28f2ecf9927be579343018bb050b4bc1f97324f5f562071a9:log:18', 'hash': '0x23a9d22ad38c96b28f2ecf9927be579343018bb050b4bc1f97324f5f562071a9', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x070e6f41e3f256e8f6adea7a00c64f9bf36d6a72', 'value': 3.64495089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32957785ce31a400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:07:51.000Z'}}, {'blockNum': '0x4b6b34', 'uniqueId': '0xb59afabd661a8f14b19b41763c578b15aefac8739bac1ea7f7f05566b9ad469c:log:95', 'hash': '0xb59afabd661a8f14b19b41763c578b15aefac8739bac1ea7f7f05566b9ad469c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2924.36237968687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9e87ae3a63a7e819b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:08:26.000Z'}}, {'blockNum': '0x4b6b34', 'uniqueId': '0xb59afabd661a8f14b19b41763c578b15aefac8739bac1ea7f7f05566b9ad469c:log:97', 'hash': '0xb59afabd661a8f14b19b41763c578b15aefac8739bac1ea7f7f05566b9ad469c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2924.36237968687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9e87ae3a63a7e819b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:08:26.000Z'}}, {'blockNum': '0x4b6b35', 'uniqueId': '0x50a3a18cbc6c2c35397a92fd3e827a6ef1464331f816a5dc27ff61cd8a0324f8:log:6', 'hash': '0x50a3a18cbc6c2c35397a92fd3e827a6ef1464331f816a5dc27ff61cd8a0324f8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 3.64495089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32957785ce31a400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:08:48.000Z'}}, {'blockNum': '0x4b6b42', 'uniqueId': '0x576962d87cc2e7f0760cb2e0ecfe023bcff27ac3646689ba0af477378d2b6184:log:47', 'hash': '0x576962d87cc2e7f0760cb2e0ecfe023bcff27ac3646689ba0af477378d2b6184', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2923.3504876343363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9e79a343edc1920288', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:12:11.000Z'}}, {'blockNum': '0x4b6b42', 'uniqueId': '0x576962d87cc2e7f0760cb2e0ecfe023bcff27ac3646689ba0af477378d2b6184:log:49', 'hash': '0x576962d87cc2e7f0760cb2e0ecfe023bcff27ac3646689ba0af477378d2b6184', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2923.3504876343363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9e79a343edc1920288', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:12:11.000Z'}}, {'blockNum': '0x4b6b57', 'uniqueId': '0x88e65be26c777880c67436e5245c8d315fcd7fbca2c7be836c553fd0beb4ed7b:log:17', 'hash': '0x88e65be26c777880c67436e5245c8d315fcd7fbca2c7be836c553fd0beb4ed7b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 73.07080371593848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03f60fa4d57cce6e31', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:16:17.000Z'}}, {'blockNum': '0x4b6b57', 'uniqueId': '0x88e65be26c777880c67436e5245c8d315fcd7fbca2c7be836c553fd0beb4ed7b:log:20', 'hash': '0x88e65be26c777880c67436e5245c8d315fcd7fbca2c7be836c553fd0beb4ed7b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 73.07080371593848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03f60fa4d57cce6e31', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:16:17.000Z'}}, {'blockNum': '0x4b6b5a', 'uniqueId': '0x206b6f61ccaa5b701d80c63ec683542629df26d6084e7a1cf1a7b11f59588cd6:log:48', 'hash': '0x206b6f61ccaa5b701d80c63ec683542629df26d6084e7a1cf1a7b11f59588cd6', 'from': '0x25d4aef414ea092fbcbd83fd30e89e15cf820d0a', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 22.283184629080107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01353dc65bd8c3a2dd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:16:58.000Z'}}, {'blockNum': '0x4b6b5a', 'uniqueId': '0x206b6f61ccaa5b701d80c63ec683542629df26d6084e7a1cf1a7b11f59588cd6:log:51', 'hash': '0x206b6f61ccaa5b701d80c63ec683542629df26d6084e7a1cf1a7b11f59588cd6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 22.283184629080107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01353dc65bd8c3a2dd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:16:58.000Z'}}, {'blockNum': '0x4b6b5f', 'uniqueId': '0xd72efcebee111cbdbcc37d24866f0987ebc15f7cb4459b8078af906752505258:log:40', 'hash': '0xd72efcebee111cbdbcc37d24866f0987ebc15f7cb4459b8078af906752505258', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3068.403239317079, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa656a6290fd06cb6ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:17:30.000Z'}}, {'blockNum': '0x4b6b5f', 'uniqueId': '0xd72efcebee111cbdbcc37d24866f0987ebc15f7cb4459b8078af906752505258:log:43', 'hash': '0xd72efcebee111cbdbcc37d24866f0987ebc15f7cb4459b8078af906752505258', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'value': 3068.403239317079, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa656a6290fd06cb6ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:17:30.000Z'}}, {'blockNum': '0x4b6b66', 'uniqueId': '0xdd620a1fdee6d6c00b5397210bf21c5fd3b56a966068184e1ddc9ad0089912f0:log:41', 'hash': '0xdd620a1fdee6d6c00b5397210bf21c5fd3b56a966068184e1ddc9ad0089912f0', 'from': '0xff79b6660b02b4625e4faef219f297cb58c878c6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 415.5795770851185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1687533f86218e295e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:19:31.000Z'}}, {'blockNum': '0x4b6b66', 'uniqueId': '0xdd620a1fdee6d6c00b5397210bf21c5fd3b56a966068184e1ddc9ad0089912f0:log:43', 'hash': '0xdd620a1fdee6d6c00b5397210bf21c5fd3b56a966068184e1ddc9ad0089912f0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 415.5795770851185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1687533f86218e295e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:19:31.000Z'}}, {'blockNum': '0x4b6b67', 'uniqueId': '0x82d3ace2851602854879e827d78e3442981c934b487063c1bed9211de9d71cd8:log:32', 'hash': '0x82d3ace2851602854879e827d78e3442981c934b487063c1bed9211de9d71cd8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 146.0938338602375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07eb758fdb8a642014', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:19:39.000Z'}}, {'blockNum': '0x4b6b67', 'uniqueId': '0x82d3ace2851602854879e827d78e3442981c934b487063c1bed9211de9d71cd8:log:35', 'hash': '0x82d3ace2851602854879e827d78e3442981c934b487063c1bed9211de9d71cd8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 146.0938338602375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07eb758fdb8a642014', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:19:39.000Z'}}, {'blockNum': '0x4b6b6a', 'uniqueId': '0xcbed9b00a33689692c1a729109c5e985df61209fc4bc4349fe7c3d4d785d5257:log:21', 'hash': '0xcbed9b00a33689692c1a729109c5e985df61209fc4bc4349fe7c3d4d785d5257', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1231.957920106357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42c8d9c124d87a60a3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:20:33.000Z'}}, {'blockNum': '0x4b6b6a', 'uniqueId': '0xcbed9b00a33689692c1a729109c5e985df61209fc4bc4349fe7c3d4d785d5257:log:23', 'hash': '0xcbed9b00a33689692c1a729109c5e985df61209fc4bc4349fe7c3d4d785d5257', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 1231.957920106357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42c8d9c124d87a60a3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:20:33.000Z'}}, {'blockNum': '0x4b6b6b', 'uniqueId': '0xa23967455af642ef0bad27651f098bb18affde02e3e5a3e7b030e34efcb4dfac:log:9', 'hash': '0xa23967455af642ef0bad27651f098bb18affde02e3e5a3e7b030e34efcb4dfac', 'from': '0x512e2d8e36a62538ca8af3653253c44ec4899c73', 'to': '0xfb1700001905f468909f63aae29f07842827aa0d', 'value': 0.62360527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08a77db066695c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:20:43.000Z'}}, {'blockNum': '0x4b6b6d', 'uniqueId': '0x97b7f5fcad75f8941415db8a9d4b58fe1e6d68c44466399f293996685dd34ce2:log:56', 'hash': '0x97b7f5fcad75f8941415db8a9d4b58fe1e6d68c44466399f293996685dd34ce2', 'from': '0xedb8158d3c7d103f9bd03b4ecc81754ff1d828e1', 'to': '0x45ce96860bf46a9434cc4cd1c8d78fc6a83029a7', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:21:41.000Z'}}, {'blockNum': '0x4b6b6d', 'uniqueId': '0xb314d25775d5874e804125f5c7802a0c605d208947f0803dc4d7e57f389acc56:log:75', 'hash': '0xb314d25775d5874e804125f5c7802a0c605d208947f0803dc4d7e57f389acc56', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 1232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42c96f409591400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:21:41.000Z'}}, {'blockNum': '0x4b6b6e', 'uniqueId': '0xc9ceb940966b1950dd4047e0dbcb4e63d22c370644ce358eea8ddc8d50bf6a22:log:18', 'hash': '0xc9ceb940966b1950dd4047e0dbcb4e63d22c370644ce358eea8ddc8d50bf6a22', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x4bd3b2ddd469bda2806fbf43f57355b92f8ac583', 'value': 21.21199878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x012660288121eb5000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:21:59.000Z'}}, {'blockNum': '0x4b6b70', 'uniqueId': '0x4b766743a83b014e269d4ae00cb64e050eff5e31ee2c24cfeca3f45ea26d2d94:log:30', 'hash': '0x4b766743a83b014e269d4ae00cb64e050eff5e31ee2c24cfeca3f45ea26d2d94', 'from': '0xc1dd8ac971129c8c08333924f58ff40a50b8bb9a', 'to': '0x1472f3a91639321c205faf691dcf1dc77ee8b47c', 'value': 390, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15245655b102580000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:22:27.000Z'}}, {'blockNum': '0x4b6b74', 'uniqueId': '0x6f952f95dfd5752b61144440b95744de31da1a622495975b4590dc0aa2d78a72:log:27', 'hash': '0x6f952f95dfd5752b61144440b95744de31da1a622495975b4590dc0aa2d78a72', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1663.4271658422863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5a2cb0721e64432008', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:23:12.000Z'}}], 'pageKey': '52fb9a56-5ad7-478a-a92c-51cd54b5b754'}}
Answer is paginated. Downloading more pages...
Number of returned transfers: 1001
Answer is complete
symbol XZC
group BPS
date 2018-01-23
hour 18:00
exchange binance
Name: 283, dtype: object
HERE
Symbol: XZC, Contract:
Datetime timestamps: 2018-01-23 18:00:00 2018-01-23 06:00:00 2018-01-24 06:00:00
Unix timestamps: 1516683600.0 1516770000.0
Hex Block Numbers: 0x4ba06f 0x4bb7a8
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol BNT
group BPS
date 2018-01-27
hour 18:00
exchange binance
Name: 284, dtype: object
HERE
Symbol: BNT, Contract: 0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c
Datetime timestamps: 2018-01-27 18:00:00 2018-01-27 06:00:00 2018-01-28 06:00:00
Unix timestamps: 1517029200.0 1517115600.0
Hex Block Numbers: 0x4bfd21 0x4c1476
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x4bfd25', 'uniqueId': '0xde6b17c8d4d1d1c4a651328c80ecd53b67b06b71f5aaefbca21c12226493d6c8:log:8', 'hash': '0xde6b17c8d4d1d1c4a651328c80ecd53b67b06b71f5aaefbca21c12226493d6c8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf0b073de02cdeb738c328133caed6ddfa2b7127d', 'value': 54.344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f22cac12b9d40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:00:50.000Z'}}, {'blockNum': '0x4bfd26', 'uniqueId': '0x2356b5782c5db0302482125fb66f971b0ecc199ce148e9c907ae5694ec787526:log:36', 'hash': '0x2356b5782c5db0302482125fb66f971b0ecc199ce148e9c907ae5694ec787526', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.434121614425814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4b69e0d12e1f74c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:00:53.000Z'}}, {'blockNum': '0x4bfd26', 'uniqueId': '0x2356b5782c5db0302482125fb66f971b0ecc199ce148e9c907ae5694ec787526:log:38', 'hash': '0x2356b5782c5db0302482125fb66f971b0ecc199ce148e9c907ae5694ec787526', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.434121614425814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4b69e0d12e1f74c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:00:53.000Z'}}, {'blockNum': '0x4bfd29', 'uniqueId': '0x8e3dd65d9e9c8865cda8f3987faeab783d03f186978b450a97373b3bc0a5361a:log:22', 'hash': '0x8e3dd65d9e9c8865cda8f3987faeab783d03f186978b450a97373b3bc0a5361a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 792.4558656862694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2af588cb3b04c09d4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:01:54.000Z'}}, {'blockNum': '0x4bfd29', 'uniqueId': '0x8e3dd65d9e9c8865cda8f3987faeab783d03f186978b450a97373b3bc0a5361a:log:25', 'hash': '0x8e3dd65d9e9c8865cda8f3987faeab783d03f186978b450a97373b3bc0a5361a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 792.4558656862694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2af588cb3b04c09d4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:01:54.000Z'}}, {'blockNum': '0x4bfd29', 'uniqueId': '0x9073a0ad36f98e7fd7387443d5544dbf73bbb56a5846e71cbc3bf6fa810aab84:log:43', 'hash': '0x9073a0ad36f98e7fd7387443d5544dbf73bbb56a5846e71cbc3bf6fa810aab84', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 448.526898795945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18508fa60ebbe18dc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:01:54.000Z'}}, {'blockNum': '0x4bfd29', 'uniqueId': '0x9073a0ad36f98e7fd7387443d5544dbf73bbb56a5846e71cbc3bf6fa810aab84:log:46', 'hash': '0x9073a0ad36f98e7fd7387443d5544dbf73bbb56a5846e71cbc3bf6fa810aab84', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 448.526898795945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18508fa60ebbe18dc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:01:54.000Z'}}, {'blockNum': '0x4bfd36', 'uniqueId': '0x6b669e0def328af3c41258bdaf0b0b6c558ba966e315e3c2718f975023abdcf5:log:55', 'hash': '0x6b669e0def328af3c41258bdaf0b0b6c558ba966e315e3c2718f975023abdcf5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.50366163187346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081ac7b4265c03903d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:05:38.000Z'}}, {'blockNum': '0x4bfd36', 'uniqueId': '0x6b669e0def328af3c41258bdaf0b0b6c558ba966e315e3c2718f975023abdcf5:log:58', 'hash': '0x6b669e0def328af3c41258bdaf0b0b6c558ba966e315e3c2718f975023abdcf5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 149.50366163187346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081ac7b4265c03903d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:05:38.000Z'}}, {'blockNum': '0x4bfd36', 'uniqueId': '0x09f86856ab4d83bd3ad1a73e62a3ccf50e27222ab0b3e38edbaccd0a13673278:log:120', 'hash': '0x09f86856ab4d83bd3ad1a73e62a3ccf50e27222ab0b3e38edbaccd0a13673278', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 269.09990758317065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e9682ec31c954c348', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:05:38.000Z'}}, {'blockNum': '0x4bfd36', 'uniqueId': '0x09f86856ab4d83bd3ad1a73e62a3ccf50e27222ab0b3e38edbaccd0a13673278:log:123', 'hash': '0x09f86856ab4d83bd3ad1a73e62a3ccf50e27222ab0b3e38edbaccd0a13673278', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb018af916ed0116404537d1238b18988d652733a', 'value': 269.09990758317065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e9682ec31c954c348', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:05:38.000Z'}}, {'blockNum': '0x4bfd37', 'uniqueId': '0x1b2b4db1b405ba98869ec69ffe5954b4a8486e3534955fd8d3d32b97acfc092f:log:38', 'hash': '0x1b2b4db1b405ba98869ec69ffe5954b4a8486e3534955fd8d3d32b97acfc092f', 'from': '0xb33f5f5172fce076e9355afcf2529982260b7a4b', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 175.96034783278213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0989f0bc1377278ce1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:05:39.000Z'}}, {'blockNum': '0x4bfd37', 'uniqueId': '0x1b2b4db1b405ba98869ec69ffe5954b4a8486e3534955fd8d3d32b97acfc092f:log:40', 'hash': '0x1b2b4db1b405ba98869ec69ffe5954b4a8486e3534955fd8d3d32b97acfc092f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 175.96034783278213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0989f0bc1377278ce1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:05:39.000Z'}}, {'blockNum': '0x4bfd41', 'uniqueId': '0xcdff7abbe81c30e55c3461fd8d9e3ea2c743150123d1954a794abb38e780d20f:log:26', 'hash': '0xcdff7abbe81c30e55c3461fd8d9e3ea2c743150123d1954a794abb38e780d20f', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 615.6871221200978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2160600f849ef9c1a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:07:54.000Z'}}, {'blockNum': '0x4bfd41', 'uniqueId': '0xcdff7abbe81c30e55c3461fd8d9e3ea2c743150123d1954a794abb38e780d20f:log:28', 'hash': '0xcdff7abbe81c30e55c3461fd8d9e3ea2c743150123d1954a794abb38e780d20f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 615.6871221200978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2160600f849ef9c1a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:07:54.000Z'}}, {'blockNum': '0x4bfd51', 'uniqueId': '0xa7f62f0986e17d1d3e2fd1e91a280e0723b2ae387fa60201bee462595141be0e:log:125', 'hash': '0xa7f62f0986e17d1d3e2fd1e91a280e0723b2ae387fa60201bee462595141be0e', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.335099444855357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4a0a14adb3fcbd47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:12:43.000Z'}}, {'blockNum': '0x4bfd51', 'uniqueId': '0xa7f62f0986e17d1d3e2fd1e91a280e0723b2ae387fa60201bee462595141be0e:log:127', 'hash': '0xa7f62f0986e17d1d3e2fd1e91a280e0723b2ae387fa60201bee462595141be0e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.335099444855357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4a0a14adb3fcbd47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:12:43.000Z'}}, {'blockNum': '0x4bfd5b', 'uniqueId': '0x32fe412ff5c93f0222931fa5090339470f0428e72544e92450e5ea7b2295758f:log:16', 'hash': '0x32fe412ff5c93f0222931fa5090339470f0428e72544e92450e5ea7b2295758f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2511.422324688141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8824fc7237d6632e73', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:14:43.000Z'}}, {'blockNum': '0x4bfd5b', 'uniqueId': '0x32fe412ff5c93f0222931fa5090339470f0428e72544e92450e5ea7b2295758f:log:19', 'hash': '0x32fe412ff5c93f0222931fa5090339470f0428e72544e92450e5ea7b2295758f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 2511.422324688141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8824fc7237d6632e73', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:14:43.000Z'}}, {'blockNum': '0x4bfd5c', 'uniqueId': '0xeb1c22a0bf9fe9cb4db31bf32002840d2e2db86420a88ed5685babc8533c719d:log:48', 'hash': '0xeb1c22a0bf9fe9cb4db31bf32002840d2e2db86420a88ed5685babc8533c719d', 'from': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 162.2752785783958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08cc059a1884d66494', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:14:59.000Z'}}, {'blockNum': '0x4bfd5c', 'uniqueId': '0xeb1c22a0bf9fe9cb4db31bf32002840d2e2db86420a88ed5685babc8533c719d:log:50', 'hash': '0xeb1c22a0bf9fe9cb4db31bf32002840d2e2db86420a88ed5685babc8533c719d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 162.2752785783958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08cc059a1884d66494', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:14:59.000Z'}}, {'blockNum': '0x4bfd62', 'uniqueId': '0xd30b853da4e50a36351d76545a68883c93d213e61c9218889fec299b19f25608:log:129', 'hash': '0xd30b853da4e50a36351d76545a68883c93d213e61c9218889fec299b19f25608', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 760.9877008110981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2940d36a0086bdc60f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:16:24.000Z'}}, {'blockNum': '0x4bfd62', 'uniqueId': '0xd30b853da4e50a36351d76545a68883c93d213e61c9218889fec299b19f25608:log:131', 'hash': '0xd30b853da4e50a36351d76545a68883c93d213e61c9218889fec299b19f25608', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 760.9877008110981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2940d36a0086bdc60f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:16:24.000Z'}}, {'blockNum': '0x4bfd63', 'uniqueId': '0x6b6de77bfbfdd6e9d3a95226b2cf45b96f11e495c6f7b22de99aff2e71115f0a:log:17', 'hash': '0x6b6de77bfbfdd6e9d3a95226b2cf45b96f11e495c6f7b22de99aff2e71115f0a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 95.82212516784304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0531cc93271c4d7577', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:16:28.000Z'}}, {'blockNum': '0x4bfd63', 'uniqueId': '0x6b6de77bfbfdd6e9d3a95226b2cf45b96f11e495c6f7b22de99aff2e71115f0a:log:20', 'hash': '0x6b6de77bfbfdd6e9d3a95226b2cf45b96f11e495c6f7b22de99aff2e71115f0a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 95.82212516784304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0531cc93271c4d7577', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:16:28.000Z'}}, {'blockNum': '0x4bfd69', 'uniqueId': '0x0c3166d5108c258ac6e8e95dbeb21431bad982ef1559365b0def798f4bca4017:log:50', 'hash': '0x0c3166d5108c258ac6e8e95dbeb21431bad982ef1559365b0def798f4bca4017', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 99.21917119459917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0560f14e840ac0f434', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:17:25.000Z'}}, {'blockNum': '0x4bfd69', 'uniqueId': '0x0c3166d5108c258ac6e8e95dbeb21431bad982ef1559365b0def798f4bca4017:log:53', 'hash': '0x0c3166d5108c258ac6e8e95dbeb21431bad982ef1559365b0def798f4bca4017', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 99.21917119459917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0560f14e840ac0f434', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:17:25.000Z'}}, {'blockNum': '0x4bfd6a', 'uniqueId': '0x765c99b20a1c24a43b0ee4409f2938ff40b20b982398083b883383e75075c1b5:log:77', 'hash': '0x765c99b20a1c24a43b0ee4409f2938ff40b20b982398083b883383e75075c1b5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 20.32829216224406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011a1c9a0484ea2b21', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:17:59.000Z'}}, {'blockNum': '0x4bfd6a', 'uniqueId': '0x765c99b20a1c24a43b0ee4409f2938ff40b20b982398083b883383e75075c1b5:log:80', 'hash': '0x765c99b20a1c24a43b0ee4409f2938ff40b20b982398083b883383e75075c1b5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb33f5f5172fce076e9355afcf2529982260b7a4b', 'value': 20.32829216224406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011a1c9a0484ea2b21', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:17:59.000Z'}}, {'blockNum': '0x4bfd70', 'uniqueId': '0xd62784e6d4d4230f26844495a888690f55ea3b29c291e84060559aed21a25a1b:log:46', 'hash': '0xd62784e6d4d4230f26844495a888690f55ea3b29c291e84060559aed21a25a1b', 'from': '0x73d8bdc3ecce282de798b0903d306a5990ef445c', 'to': '0x59fec5f31fe2cdb2f034ff430c548c9e3f957e95', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:20:30.000Z'}}, {'blockNum': '0x4bfd76', 'uniqueId': '0xa5f3af21dc74e35352c2c202961b025ecdedf7ad156abf36e0e4bc3cd169111e:log:65', 'hash': '0xa5f3af21dc74e35352c2c202961b025ecdedf7ad156abf36e0e4bc3cd169111e', 'from': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 197.27726758122756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ab1c5a5a536c0e69f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:22:21.000Z'}}, {'blockNum': '0x4bfd76', 'uniqueId': '0xa5f3af21dc74e35352c2c202961b025ecdedf7ad156abf36e0e4bc3cd169111e:log:67', 'hash': '0xa5f3af21dc74e35352c2c202961b025ecdedf7ad156abf36e0e4bc3cd169111e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 197.27726758122756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ab1c5a5a536c0e69f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:22:21.000Z'}}, {'blockNum': '0x4bfd78', 'uniqueId': '0xca1ad6146f41d35953b36f5addbeebf47b1f02c7f2876feeaaa7d9877bb4fd57:log:38', 'hash': '0xca1ad6146f41d35953b36f5addbeebf47b1f02c7f2876feeaaa7d9877bb4fd57', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 42.56141758649993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x024ea887cb7c6448f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:22:46.000Z'}}, {'blockNum': '0x4bfd78', 'uniqueId': '0xca1ad6146f41d35953b36f5addbeebf47b1f02c7f2876feeaaa7d9877bb4fd57:log:41', 'hash': '0xca1ad6146f41d35953b36f5addbeebf47b1f02c7f2876feeaaa7d9877bb4fd57', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 42.56141758649993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x024ea887cb7c6448f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:22:46.000Z'}}, {'blockNum': '0x4bfd7a', 'uniqueId': '0xc43b5426b95a3418d41cfc2acf0230b6f3a0ec97c2993ffbf0299f01de076857:log:75', 'hash': '0xc43b5426b95a3418d41cfc2acf0230b6f3a0ec97c2993ffbf0299f01de076857', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.220850178739934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48742f93895413c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:23:41.000Z'}}, {'blockNum': '0x4bfd7a', 'uniqueId': '0xc43b5426b95a3418d41cfc2acf0230b6f3a0ec97c2993ffbf0299f01de076857:log:77', 'hash': '0xc43b5426b95a3418d41cfc2acf0230b6f3a0ec97c2993ffbf0299f01de076857', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.220850178739934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48742f93895413c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:23:41.000Z'}}, {'blockNum': '0x4bfd7c', 'uniqueId': '0xbba5d4675fa84c3ad1b979dc0afd5915587bfa45ae912a0287ad95f42c023f9c:log:22', 'hash': '0xbba5d4675fa84c3ad1b979dc0afd5915587bfa45ae912a0287ad95f42c023f9c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2594.648072880338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ca7f9b34000635553', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:24:18.000Z'}}, {'blockNum': '0x4bfd7c', 'uniqueId': '0xbba5d4675fa84c3ad1b979dc0afd5915587bfa45ae912a0287ad95f42c023f9c:log:25', 'hash': '0xbba5d4675fa84c3ad1b979dc0afd5915587bfa45ae912a0287ad95f42c023f9c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 2594.648072880338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ca7f9b34000635553', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:24:18.000Z'}}, {'blockNum': '0x4bfd7c', 'uniqueId': '0x0595721c8d086827e8a2634574b0b04ba3534e94151bf71292d07d51193740fd:log:48', 'hash': '0x0595721c8d086827e8a2634574b0b04ba3534e94151bf71292d07d51193740fd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 627.6174470575802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2205f116d6d099006c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:24:18.000Z'}}, {'blockNum': '0x4bfd7c', 'uniqueId': '0x0595721c8d086827e8a2634574b0b04ba3534e94151bf71292d07d51193740fd:log:51', 'hash': '0x0595721c8d086827e8a2634574b0b04ba3534e94151bf71292d07d51193740fd', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 627.6174470575802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2205f116d6d099006c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:24:18.000Z'}}, {'blockNum': '0x4bfd89', 'uniqueId': '0x42a9a7b2fa13af2134e5cf98f64c1ed41ff0c496e2d184c9b2676d9f85e4856e:log:35', 'hash': '0x42a9a7b2fa13af2134e5cf98f64c1ed41ff0c496e2d184c9b2676d9f85e4856e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1509.0792196843186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51ceae62dbc77a41c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:27:11.000Z'}}, {'blockNum': '0x4bfd89', 'uniqueId': '0x42a9a7b2fa13af2134e5cf98f64c1ed41ff0c496e2d184c9b2676d9f85e4856e:log:38', 'hash': '0x42a9a7b2fa13af2134e5cf98f64c1ed41ff0c496e2d184c9b2676d9f85e4856e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 1509.0792196843186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51ceae62dbc77a41c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:27:11.000Z'}}, {'blockNum': '0x4bfd8f', 'uniqueId': '0x3956ce00013c752ab1fe5472c5afb7a0d4efc0c9672dca42e3fc69cca27dc343:log:23', 'hash': '0x3956ce00013c752ab1fe5472c5afb7a0d4efc0c9672dca42e3fc69cca27dc343', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1359.4340740905263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x49b1f007cb7fe1d757', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:28:06.000Z'}}, {'blockNum': '0x4bfd8f', 'uniqueId': '0x3956ce00013c752ab1fe5472c5afb7a0d4efc0c9672dca42e3fc69cca27dc343:log:26', 'hash': '0x3956ce00013c752ab1fe5472c5afb7a0d4efc0c9672dca42e3fc69cca27dc343', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 1359.4340740905263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x49b1f007cb7fe1d757', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:28:06.000Z'}}, {'blockNum': '0x4bfd9d', 'uniqueId': '0x1a6c6b4fdda52fe16ce900c823a19318f38b93b5bfd73355bd7b2dbbe3791b5f:log:23', 'hash': '0x1a6c6b4fdda52fe16ce900c823a19318f38b93b5bfd73355bd7b2dbbe3791b5f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2972.064545682241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa11dae5da00ab03dc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:30:50.000Z'}}, {'blockNum': '0x4bfd9d', 'uniqueId': '0x1a6c6b4fdda52fe16ce900c823a19318f38b93b5bfd73355bd7b2dbbe3791b5f:log:26', 'hash': '0x1a6c6b4fdda52fe16ce900c823a19318f38b93b5bfd73355bd7b2dbbe3791b5f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 2972.064545682241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa11dae5da00ab03dc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:30:50.000Z'}}, {'blockNum': '0x4bfd9f', 'uniqueId': '0x5436e975f6e68219c56b7f1cdc11bf07a03fb728402937bb46416646a5861e81:log:48', 'hash': '0x5436e975f6e68219c56b7f1cdc11bf07a03fb728402937bb46416646a5861e81', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1240.7881839236616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x434365274d0fe4cf75', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:32:01.000Z'}}, {'blockNum': '0x4bfd9f', 'uniqueId': '0x5436e975f6e68219c56b7f1cdc11bf07a03fb728402937bb46416646a5861e81:log:51', 'hash': '0x5436e975f6e68219c56b7f1cdc11bf07a03fb728402937bb46416646a5861e81', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 1240.7881839236616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x434365274d0fe4cf75', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:32:01.000Z'}}, {'blockNum': '0x4bfda3', 'uniqueId': '0xba17268081f7d9b3dcc8cf1e40d28883c19d01e2084863a4ea001885fcfefd49:log:37', 'hash': '0xba17268081f7d9b3dcc8cf1e40d28883c19d01e2084863a4ea001885fcfefd49', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 231.4144084114998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c8b85225d3a9d4177', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:32:43.000Z'}}, {'blockNum': '0x4bfda3', 'uniqueId': '0xba17268081f7d9b3dcc8cf1e40d28883c19d01e2084863a4ea001885fcfefd49:log:40', 'hash': '0xba17268081f7d9b3dcc8cf1e40d28883c19d01e2084863a4ea001885fcfefd49', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 231.4144084114998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c8b85225d3a9d4177', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:32:43.000Z'}}, {'blockNum': '0x4bfda7', 'uniqueId': '0x2ff74f10f3adeb2656917aee4dcb09238c4f8c0721cd79fa7a2d334d93a9ed15:log:21', 'hash': '0x2ff74f10f3adeb2656917aee4dcb09238c4f8c0721cd79fa7a2d334d93a9ed15', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x0eb72ac1a1d9812408bc31e745f07eb7035e6739', 'value': 4.72634131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4197566155cdec00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:33:30.000Z'}}, {'blockNum': '0x4bfdaf', 'uniqueId': '0x2db8cc01c91dcafb0b62175bcd93343fe380c1e4c5ffa6c59952605297aea636:log:4', 'hash': '0x2db8cc01c91dcafb0b62175bcd93343fe380c1e4c5ffa6c59952605297aea636', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3df9293f03221ea6a0ba8e9a98f67f2f9a5cb2f6', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:36:49.000Z'}}, {'blockNum': '0x4bfdb0', 'uniqueId': '0x63ffd3a37c3137956911f081898a9b805c84a85d8a3c147be03ae2b7d73fd67b:log:69', 'hash': '0x63ffd3a37c3137956911f081898a9b805c84a85d8a3c147be03ae2b7d73fd67b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1251.0207825390974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43d166a586f218bc3b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:36:56.000Z'}}, {'blockNum': '0x4bfdb0', 'uniqueId': '0x63ffd3a37c3137956911f081898a9b805c84a85d8a3c147be03ae2b7d73fd67b:log:72', 'hash': '0x63ffd3a37c3137956911f081898a9b805c84a85d8a3c147be03ae2b7d73fd67b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 1251.0207825390974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43d166a586f218bc3b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:36:56.000Z'}}, {'blockNum': '0x4bfdb1', 'uniqueId': '0x0a96488461a19e5cac0b24039bc07f62c56a4b9dc798031b7cc390cc7c071ee5:log:144', 'hash': '0x0a96488461a19e5cac0b24039bc07f62c56a4b9dc798031b7cc390cc7c071ee5', 'from': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 295.1815218262142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1000776e2986b6354f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:37:07.000Z'}}, {'blockNum': '0x4bfdb1', 'uniqueId': '0x0a96488461a19e5cac0b24039bc07f62c56a4b9dc798031b7cc390cc7c071ee5:log:146', 'hash': '0x0a96488461a19e5cac0b24039bc07f62c56a4b9dc798031b7cc390cc7c071ee5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 295.1815218262142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1000776e2986b6354f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:37:07.000Z'}}, {'blockNum': '0x4bfdb6', 'uniqueId': '0x1f26de8be8a6b0ac44857a75860cdca851267d49781d2ef876d109c129d0e2ea:log:20', 'hash': '0x1f26de8be8a6b0ac44857a75860cdca851267d49781d2ef876d109c129d0e2ea', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3104.4655252687044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa84b1d23118f9a3047', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:37:56.000Z'}}, {'blockNum': '0x4bfdb6', 'uniqueId': '0x1f26de8be8a6b0ac44857a75860cdca851267d49781d2ef876d109c129d0e2ea:log:23', 'hash': '0x1f26de8be8a6b0ac44857a75860cdca851267d49781d2ef876d109c129d0e2ea', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 3104.4655252687044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa84b1d23118f9a3047', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:37:56.000Z'}}, {'blockNum': '0x4bfdb7', 'uniqueId': '0xb29b18d8b10a19f7cbb4525e601d297cb24ada60b440b3679e50891e46f90138:log:49', 'hash': '0xb29b18d8b10a19f7cbb4525e601d297cb24ada60b440b3679e50891e46f90138', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4490.496318842504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf36e27b2516eb0e0b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:38:16.000Z'}}, {'blockNum': '0x4bfdb7', 'uniqueId': '0xb29b18d8b10a19f7cbb4525e601d297cb24ada60b440b3679e50891e46f90138:log:52', 'hash': '0xb29b18d8b10a19f7cbb4525e601d297cb24ada60b440b3679e50891e46f90138', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 4490.496318842504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf36e27b2516eb0e0b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:38:16.000Z'}}, {'blockNum': '0x4bfdbc', 'uniqueId': '0xd44267354a3449b86dadfa5e9f13124bae857c4d3805cb6ddd7a5a3075c8a81f:log:0', 'hash': '0xd44267354a3449b86dadfa5e9f13124bae857c4d3805cb6ddd7a5a3075c8a81f', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x43808b0d7d6952f5fb4d1b118c877c88bf954f34', 'value': 2.90037642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284034fcb504e800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:40:12.000Z'}}, {'blockNum': '0x4bfdbd', 'uniqueId': '0xd8f3b25409486490d83514ddefe7741c18478577326dd96046aa7b04c1b80285:log:34', 'hash': '0xd8f3b25409486490d83514ddefe7741c18478577326dd96046aa7b04c1b80285', 'from': '0x59fec5f31fe2cdb2f034ff430c548c9e3f957e95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:40:18.000Z'}}, {'blockNum': '0x4bfdc0', 'uniqueId': '0xf1472f0b6c12f3b31bcf6cae8502bf9ba850b702963bc3937e284989069e0929:log:56', 'hash': '0xf1472f0b6c12f3b31bcf6cae8502bf9ba850b702963bc3937e284989069e0929', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2002.7954612667322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c925ed4c1c82f0b93', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:41:22.000Z'}}, {'blockNum': '0x4bfdc0', 'uniqueId': '0xf1472f0b6c12f3b31bcf6cae8502bf9ba850b702963bc3937e284989069e0929:log:59', 'hash': '0xf1472f0b6c12f3b31bcf6cae8502bf9ba850b702963bc3937e284989069e0929', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 2002.7954612667322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c925ed4c1c82f0b93', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:41:22.000Z'}}, {'blockNum': '0x4bfdc5', 'uniqueId': '0xa6047931da31d19fa1a982bbefdf195103ee9197d217e70d1102d1e3826df62a:log:22', 'hash': '0xa6047931da31d19fa1a982bbefdf195103ee9197d217e70d1102d1e3826df62a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4963.926704079024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010d18524d5959c4f3f1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:42:41.000Z'}}, {'blockNum': '0x4bfdc5', 'uniqueId': '0xa6047931da31d19fa1a982bbefdf195103ee9197d217e70d1102d1e3826df62a:log:25', 'hash': '0xa6047931da31d19fa1a982bbefdf195103ee9197d217e70d1102d1e3826df62a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 4963.926704079024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010d18524d5959c4f3f1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:42:41.000Z'}}, {'blockNum': '0x4bfdd8', 'uniqueId': '0xe508d90a6ed58bd78f948cd3f6a9dcf10358d052067d1332083db45a690d9ccb:log:13', 'hash': '0xe508d90a6ed58bd78f948cd3f6a9dcf10358d052067d1332083db45a690d9ccb', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xdafd3d7cec1a15f0e9a4c735fbe2138cbd1a727d', 'value': 6.36372627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x58507f537b2bec00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:46:52.000Z'}}, {'blockNum': '0x4bfdd8', 'uniqueId': '0xcce549dcc5826ca81f2783dc67fcd40aa5039345e4e524cd9088dbca42f9f858:log:56', 'hash': '0xcce549dcc5826ca81f2783dc67fcd40aa5039345e4e524cd9088dbca42f9f858', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 275.24951429567847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0eebdab6eae0b82897', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:46:52.000Z'}}, {'blockNum': '0x4bfdd8', 'uniqueId': '0xcce549dcc5826ca81f2783dc67fcd40aa5039345e4e524cd9088dbca42f9f858:log:58', 'hash': '0xcce549dcc5826ca81f2783dc67fcd40aa5039345e4e524cd9088dbca42f9f858', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 275.24951429567847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0eebdab6eae0b82897', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:46:52.000Z'}}, {'blockNum': '0x4bfde1', 'uniqueId': '0x74f1591d24309dd94da273c6e655bc15ea647e013d80b2fb97545ef67b832451:log:57', 'hash': '0x74f1591d24309dd94da273c6e655bc15ea647e013d80b2fb97545ef67b832451', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1311.3431346478892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x47168ab12b26ab51ec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:49:20.000Z'}}, {'blockNum': '0x4bfde1', 'uniqueId': '0x74f1591d24309dd94da273c6e655bc15ea647e013d80b2fb97545ef67b832451:log:60', 'hash': '0x74f1591d24309dd94da273c6e655bc15ea647e013d80b2fb97545ef67b832451', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 1311.3431346478892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x47168ab12b26ab51ec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:49:20.000Z'}}, {'blockNum': '0x4bfde2', 'uniqueId': '0x88f6e2bf046f0a3feb09c88fefcafba0a79bae2cbba9d491bed6a3fd0856eac7:log:73', 'hash': '0x88f6e2bf046f0a3feb09c88fefcafba0a79bae2cbba9d491bed6a3fd0856eac7', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.383745344304941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ab6e7ddc875870c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:49:29.000Z'}}, {'blockNum': '0x4bfde2', 'uniqueId': '0x88f6e2bf046f0a3feb09c88fefcafba0a79bae2cbba9d491bed6a3fd0856eac7:log:75', 'hash': '0x88f6e2bf046f0a3feb09c88fefcafba0a79bae2cbba9d491bed6a3fd0856eac7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.383745344304941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ab6e7ddc875870c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:49:29.000Z'}}, {'blockNum': '0x4bfde2', 'uniqueId': '0xe90e698d40987efcd07a46ba2da4255833954cf12231d8065c3337b8a7a91cf7:log:96', 'hash': '0xe90e698d40987efcd07a46ba2da4255833954cf12231d8065c3337b8a7a91cf7', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 27.595725200857775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x017ef7b5dc9c6c3da1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:49:29.000Z'}}, {'blockNum': '0x4bfde2', 'uniqueId': '0xe90e698d40987efcd07a46ba2da4255833954cf12231d8065c3337b8a7a91cf7:log:98', 'hash': '0xe90e698d40987efcd07a46ba2da4255833954cf12231d8065c3337b8a7a91cf7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 27.595725200857775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x017ef7b5dc9c6c3da1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:49:29.000Z'}}, {'blockNum': '0x4bfde5', 'uniqueId': '0x898f348ed2c505f25fb339537df607280de4b18b604ff028837b9b7f15762346:log:43', 'hash': '0x898f348ed2c505f25fb339537df607280de4b18b604ff028837b9b7f15762346', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2979.5786032733495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa185f5a9316e8b9cf1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:50:04.000Z'}}, {'blockNum': '0x4bfde5', 'uniqueId': '0x898f348ed2c505f25fb339537df607280de4b18b604ff028837b9b7f15762346:log:46', 'hash': '0x898f348ed2c505f25fb339537df607280de4b18b604ff028837b9b7f15762346', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 2979.5786032733495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa185f5a9316e8b9cf1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:50:04.000Z'}}, {'blockNum': '0x4bfde7', 'uniqueId': '0x55a94f5df0731eaeaa838b0c7812767c26de365d4b139b85dcfb330de50ad373:log:42', 'hash': '0x55a94f5df0731eaeaa838b0c7812767c26de365d4b139b85dcfb330de50ad373', 'from': '0xf3ed5b15618494ddbd0a57b3bca8b2686ac0bc04', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 414.1036469556015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1672d7b0e4166565f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:50:44.000Z'}}, {'blockNum': '0x4bfde7', 'uniqueId': '0x55a94f5df0731eaeaa838b0c7812767c26de365d4b139b85dcfb330de50ad373:log:44', 'hash': '0x55a94f5df0731eaeaa838b0c7812767c26de365d4b139b85dcfb330de50ad373', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 414.1036469556015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1672d7b0e4166565f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:50:44.000Z'}}, {'blockNum': '0x4bfdf2', 'uniqueId': '0x00cbe7f9110096e9127938ca343bff62dc84952b6fc8a0e45b010d5ab463a3c7:log:23', 'hash': '0x00cbe7f9110096e9127938ca343bff62dc84952b6fc8a0e45b010d5ab463a3c7', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 297.7743205970479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102472e6e83452ef1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:53:10.000Z'}}, {'blockNum': '0x4bfdf2', 'uniqueId': '0x00cbe7f9110096e9127938ca343bff62dc84952b6fc8a0e45b010d5ab463a3c7:log:25', 'hash': '0x00cbe7f9110096e9127938ca343bff62dc84952b6fc8a0e45b010d5ab463a3c7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 297.7743205970479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102472e6e83452ef1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:53:10.000Z'}}, {'blockNum': '0x4bfdfc', 'uniqueId': '0x962fb1c7edc78ee3e93d8e22745e977a5ee3da658b5d1395459ace0141de31b9:log:38', 'hash': '0x962fb1c7edc78ee3e93d8e22745e977a5ee3da658b5d1395459ace0141de31b9', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 535.9256574919199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d0d766a08778bedec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:55:28.000Z'}}, {'blockNum': '0x4bfdfc', 'uniqueId': '0x962fb1c7edc78ee3e93d8e22745e977a5ee3da658b5d1395459ace0141de31b9:log:40', 'hash': '0x962fb1c7edc78ee3e93d8e22745e977a5ee3da658b5d1395459ace0141de31b9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 535.9256574919199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d0d766a08778bedec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:55:28.000Z'}}, {'blockNum': '0x4bfdfc', 'uniqueId': '0x50f17fe9adf227b4499d2b5286030fa2ac2c577ab8c738b26ac37c9f895aa242:log:82', 'hash': '0x50f17fe9adf227b4499d2b5286030fa2ac2c577ab8c738b26ac37c9f895aa242', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1335.3031083457322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48630d9e4d264f5dd3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:55:28.000Z'}}, {'blockNum': '0x4bfdfc', 'uniqueId': '0x50f17fe9adf227b4499d2b5286030fa2ac2c577ab8c738b26ac37c9f895aa242:log:84', 'hash': '0x50f17fe9adf227b4499d2b5286030fa2ac2c577ab8c738b26ac37c9f895aa242', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1335.3031083457322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48630d9e4d264f5dd3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:55:28.000Z'}}, {'blockNum': '0x4bfdfe', 'uniqueId': '0xbd047ac3f6a6e30939489f66f040a4d9eb83f0cd6b86581f5507d17fd3b4a774:log:8', 'hash': '0xbd047ac3f6a6e30939489f66f040a4d9eb83f0cd6b86581f5507d17fd3b4a774', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3111.9990584775055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa8b3a99f9b8dc99e6e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:55:49.000Z'}}, {'blockNum': '0x4bfdfe', 'uniqueId': '0xbd047ac3f6a6e30939489f66f040a4d9eb83f0cd6b86581f5507d17fd3b4a774:log:11', 'hash': '0xbd047ac3f6a6e30939489f66f040a4d9eb83f0cd6b86581f5507d17fd3b4a774', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 3111.9990584775055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa8b3a99f9b8dc99e6e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:55:49.000Z'}}, {'blockNum': '0x4bfe09', 'uniqueId': '0xf6ed2ec0d0a8081ea894a65d203c5e998857c2d7bc5afc3fdcaa2461ea506686:log:50', 'hash': '0xf6ed2ec0d0a8081ea894a65d203c5e998857c2d7bc5afc3fdcaa2461ea506686', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5806.787184464148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013ac95c4297d43917b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:57:52.000Z'}}, {'blockNum': '0x4bfe09', 'uniqueId': '0xf6ed2ec0d0a8081ea894a65d203c5e998857c2d7bc5afc3fdcaa2461ea506686:log:53', 'hash': '0xf6ed2ec0d0a8081ea894a65d203c5e998857c2d7bc5afc3fdcaa2461ea506686', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 5806.787184464148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013ac95c4297d43917b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:57:52.000Z'}}, {'blockNum': '0x4bfe0a', 'uniqueId': '0xc864b142fd408b178fb576e07f38c86a7b2e71b2367b4cea51e5c53f525174b5:log:41', 'hash': '0xc864b142fd408b178fb576e07f38c86a7b2e71b2367b4cea51e5c53f525174b5', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 98.84945880178319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x055bcfd30da7e59b8b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:57:56.000Z'}}, {'blockNum': '0x4bfe0a', 'uniqueId': '0xc864b142fd408b178fb576e07f38c86a7b2e71b2367b4cea51e5c53f525174b5:log:44', 'hash': '0xc864b142fd408b178fb576e07f38c86a7b2e71b2367b4cea51e5c53f525174b5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 98.84945880178319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x055bcfd30da7e59b8b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:57:56.000Z'}}, {'blockNum': '0x4bfe15', 'uniqueId': '0x3afcb15ebfe66284031ecc8564ea36a001c42e9b9f4e64d65b7a948d7c112d8b:log:94', 'hash': '0x3afcb15ebfe66284031ecc8564ea36a001c42e9b9f4e64d65b7a948d7c112d8b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 19.795821972123886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0112b8e3336d511e1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:59:53.000Z'}}, {'blockNum': '0x4bfe15', 'uniqueId': '0x3afcb15ebfe66284031ecc8564ea36a001c42e9b9f4e64d65b7a948d7c112d8b:log:97', 'hash': '0x3afcb15ebfe66284031ecc8564ea36a001c42e9b9f4e64d65b7a948d7c112d8b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 19.795821972123886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0112b8e3336d511e1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:59:53.000Z'}}, {'blockNum': '0x4bfe15', 'uniqueId': '0xc0cec76ca6903ce3858f9aff6690c9b643a75be11b4e01c93c534083d4fd4e16:log:116', 'hash': '0xc0cec76ca6903ce3858f9aff6690c9b643a75be11b4e01c93c534083d4fd4e16', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 53.692266726268166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02e921401d1cbd5dda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:59:53.000Z'}}, {'blockNum': '0x4bfe15', 'uniqueId': '0xc0cec76ca6903ce3858f9aff6690c9b643a75be11b4e01c93c534083d4fd4e16:log:118', 'hash': '0xc0cec76ca6903ce3858f9aff6690c9b643a75be11b4e01c93c534083d4fd4e16', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 53.692266726268166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02e921401d1cbd5dda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:59:53.000Z'}}, {'blockNum': '0x4bfe1c', 'uniqueId': '0x19f15874c35dcb4bcd44054e3fe40957e740c9d0f289fda2dd70b91ac70ed90f:log:52', 'hash': '0x19f15874c35dcb4bcd44054e3fe40957e740c9d0f289fda2dd70b91ac70ed90f', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 53.6782006196121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02e8ef47107221c8e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:01:54.000Z'}}, {'blockNum': '0x4bfe1c', 'uniqueId': '0x19f15874c35dcb4bcd44054e3fe40957e740c9d0f289fda2dd70b91ac70ed90f:log:54', 'hash': '0x19f15874c35dcb4bcd44054e3fe40957e740c9d0f289fda2dd70b91ac70ed90f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 53.6782006196121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02e8ef47107221c8e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:01:54.000Z'}}, {'blockNum': '0x4bfe1c', 'uniqueId': '0xda6da1a618aa99d2189d36d6ef0ccc3ed25614b3fce007e001c280cd5fffe2cb:log:80', 'hash': '0xda6da1a618aa99d2189d36d6ef0ccc3ed25614b3fce007e001c280cd5fffe2cb', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.220030637043651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x487146351da4909c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:01:54.000Z'}}, {'blockNum': '0x4bfe1c', 'uniqueId': '0xda6da1a618aa99d2189d36d6ef0ccc3ed25614b3fce007e001c280cd5fffe2cb:log:82', 'hash': '0xda6da1a618aa99d2189d36d6ef0ccc3ed25614b3fce007e001c280cd5fffe2cb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.220030637043651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x487146351da4909c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:01:54.000Z'}}, {'blockNum': '0x4bfe1c', 'uniqueId': '0x6620f4c09f32ef66de1a900f915af26dc2dc9effbeb20ff38d27f088cd952b1f:log:99', 'hash': '0x6620f4c09f32ef66de1a900f915af26dc2dc9effbeb20ff38d27f088cd952b1f', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3117.882689168107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa905507a8c44a9deed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:01:54.000Z'}}, {'blockNum': '0x4bfe1c', 'uniqueId': '0x6620f4c09f32ef66de1a900f915af26dc2dc9effbeb20ff38d27f088cd952b1f:log:101', 'hash': '0x6620f4c09f32ef66de1a900f915af26dc2dc9effbeb20ff38d27f088cd952b1f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3117.882689168107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa905507a8c44a9deed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:01:54.000Z'}}, {'blockNum': '0x4bfe1e', 'uniqueId': '0x52c802f8c231a431a3c6890ee3c973e11df8b1ff5fcd6ec43da53a260b14dd32:log:69', 'hash': '0x52c802f8c231a431a3c6890ee3c973e11df8b1ff5fcd6ec43da53a260b14dd32', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:02:59.000Z'}}, {'blockNum': '0x4bfe1e', 'uniqueId': '0x52c802f8c231a431a3c6890ee3c973e11df8b1ff5fcd6ec43da53a260b14dd32:log:72', 'hash': '0x52c802f8c231a431a3c6890ee3c973e11df8b1ff5fcd6ec43da53a260b14dd32', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:02:59.000Z'}}, {'blockNum': '0x4bfe1e', 'uniqueId': '0x52c802f8c231a431a3c6890ee3c973e11df8b1ff5fcd6ec43da53a260b14dd32:log:73', 'hash': '0x52c802f8c231a431a3c6890ee3c973e11df8b1ff5fcd6ec43da53a260b14dd32', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:02:59.000Z'}}, {'blockNum': '0x4bfe2a', 'uniqueId': '0xe726f9484ab5a1b198af3db19c2deeb9de73ac4a2a7d58c2e72456063493715d:log:43', 'hash': '0xe726f9484ab5a1b198af3db19c2deeb9de73ac4a2a7d58c2e72456063493715d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe5f029e221b5f8bbbe5cb8e92fe30bae8eff13e0', 'value': 37.22114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02048c0d9fbb154000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:06:55.000Z'}}, {'blockNum': '0x4bfe2c', 'uniqueId': '0x22adb463e700cc36c424cf2f7193e88451f410839cef270c4f10445e3c769a82:log:21', 'hash': '0x22adb463e700cc36c424cf2f7193e88451f410839cef270c4f10445e3c769a82', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4563.22414539483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf75f74d73d28528472', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:07:35.000Z'}}, {'blockNum': '0x4bfe2c', 'uniqueId': '0x22adb463e700cc36c424cf2f7193e88451f410839cef270c4f10445e3c769a82:log:23', 'hash': '0x22adb463e700cc36c424cf2f7193e88451f410839cef270c4f10445e3c769a82', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4563.22414539483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf75f74d73d28528472', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:07:35.000Z'}}, {'blockNum': '0x4bfe2e', 'uniqueId': '0x066b4661e1ce189a7660727491dc9f3f399018291ffa7dd6e36b4cc596657c98:log:17', 'hash': '0x066b4661e1ce189a7660727491dc9f3f399018291ffa7dd6e36b4cc596657c98', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:08:19.000Z'}}, {'blockNum': '0x4bfe2e', 'uniqueId': '0x066b4661e1ce189a7660727491dc9f3f399018291ffa7dd6e36b4cc596657c98:log:20', 'hash': '0x066b4661e1ce189a7660727491dc9f3f399018291ffa7dd6e36b4cc596657c98', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:08:19.000Z'}}, {'blockNum': '0x4bfe2e', 'uniqueId': '0x066b4661e1ce189a7660727491dc9f3f399018291ffa7dd6e36b4cc596657c98:log:21', 'hash': '0x066b4661e1ce189a7660727491dc9f3f399018291ffa7dd6e36b4cc596657c98', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:08:19.000Z'}}, {'blockNum': '0x4bfe38', 'uniqueId': '0xac0d01939a1d4de1e32f01bf95c0d2d93ddcfdb442cd752134e45522800f4db1:log:60', 'hash': '0xac0d01939a1d4de1e32f01bf95c0d2d93ddcfdb442cd752134e45522800f4db1', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.219211288367598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x486e5d03a2dc0a60', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:10:11.000Z'}}, {'blockNum': '0x4bfe38', 'uniqueId': '0xac0d01939a1d4de1e32f01bf95c0d2d93ddcfdb442cd752134e45522800f4db1:log:62', 'hash': '0xac0d01939a1d4de1e32f01bf95c0d2d93ddcfdb442cd752134e45522800f4db1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.219211288367598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x486e5d03a2dc0a60', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:10:11.000Z'}}, {'blockNum': '0x4bfe39', 'uniqueId': '0xe41705512b0da408ed5d13ee1b5896ce04e9b7d669bbfd5177fecf9ad7274def:log:69', 'hash': '0xe41705512b0da408ed5d13ee1b5896ce04e9b7d669bbfd5177fecf9ad7274def', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2475.611210728564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x863401cfceaac2dd19', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:10:32.000Z'}}, {'blockNum': '0x4bfe39', 'uniqueId': '0xe41705512b0da408ed5d13ee1b5896ce04e9b7d669bbfd5177fecf9ad7274def:log:71', 'hash': '0xe41705512b0da408ed5d13ee1b5896ce04e9b7d669bbfd5177fecf9ad7274def', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2475.611210728564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x863401cfceaac2dd19', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:10:32.000Z'}}, {'blockNum': '0x4bfe3c', 'uniqueId': '0x2e3e23e24cd0187f94a605891dad438bcff570e480dc207ecc7a2c64fcfa1d82:log:40', 'hash': '0x2e3e23e24cd0187f94a605891dad438bcff570e480dc207ecc7a2c64fcfa1d82', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 298.17990582242714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102a13d48549334d14', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:11:13.000Z'}}, {'blockNum': '0x4bfe3c', 'uniqueId': '0x2e3e23e24cd0187f94a605891dad438bcff570e480dc207ecc7a2c64fcfa1d82:log:43', 'hash': '0x2e3e23e24cd0187f94a605891dad438bcff570e480dc207ecc7a2c64fcfa1d82', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 298.17990582242714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102a13d48549334d14', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:11:13.000Z'}}, {'blockNum': '0x4bfe48', 'uniqueId': '0xddc9b6c79830e076cdfe2bcf0288bd11f4f1d0e37152ed2f37693d0b0f747a60:log:19', 'hash': '0xddc9b6c79830e076cdfe2bcf0288bd11f4f1d0e37152ed2f37693d0b0f747a60', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:13:04.000Z'}}, {'blockNum': '0x4bfe48', 'uniqueId': '0xddc9b6c79830e076cdfe2bcf0288bd11f4f1d0e37152ed2f37693d0b0f747a60:log:22', 'hash': '0xddc9b6c79830e076cdfe2bcf0288bd11f4f1d0e37152ed2f37693d0b0f747a60', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:13:04.000Z'}}, {'blockNum': '0x4bfe48', 'uniqueId': '0xddc9b6c79830e076cdfe2bcf0288bd11f4f1d0e37152ed2f37693d0b0f747a60:log:23', 'hash': '0xddc9b6c79830e076cdfe2bcf0288bd11f4f1d0e37152ed2f37693d0b0f747a60', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:13:04.000Z'}}, {'blockNum': '0x4bfe50', 'uniqueId': '0x676fe6c894c34615b4b1588da949755394d97f2f7dbe7d568c135c8fb1171033:log:14', 'hash': '0x676fe6c894c34615b4b1588da949755394d97f2f7dbe7d568c135c8fb1171033', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 2108.04488999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7246ffea8b9f5bbc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:15:26.000Z'}}, {'blockNum': '0x4bfe52', 'uniqueId': '0x9f71edf87296511bb8533cd36e5535e45f4249ce03980ed77cbf14647414ed47:log:14', 'hash': '0x9f71edf87296511bb8533cd36e5535e45f4249ce03980ed77cbf14647414ed47', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2108.04488999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7246ffea8b9f5bbc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:15:47.000Z'}}, {'blockNum': '0x4bfe52', 'uniqueId': '0x9f71edf87296511bb8533cd36e5535e45f4249ce03980ed77cbf14647414ed47:log:17', 'hash': '0x9f71edf87296511bb8533cd36e5535e45f4249ce03980ed77cbf14647414ed47', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2108.04488999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7246ffea8b9f5bbc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:15:47.000Z'}}, {'blockNum': '0x4bfe52', 'uniqueId': '0x9f71edf87296511bb8533cd36e5535e45f4249ce03980ed77cbf14647414ed47:log:18', 'hash': '0x9f71edf87296511bb8533cd36e5535e45f4249ce03980ed77cbf14647414ed47', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2108.04488999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7246ffea8b9f5bbc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:15:47.000Z'}}, {'blockNum': '0x4bfe55', 'uniqueId': '0xf2db3b0f2c8a95f4c17e91ec5660efbd071bbfdb427eeafb338acb9d7cd4bbe1:log:12', 'hash': '0xf2db3b0f2c8a95f4c17e91ec5660efbd071bbfdb427eeafb338acb9d7cd4bbe1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe17e995e74d2feb8c0e8dcb9e9914093a4e38a3c', 'value': 31.80801026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b96cc0ce2f47c800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:17:29.000Z'}}, {'blockNum': '0x4bfe55', 'uniqueId': '0xf84c96357d8d342566ea4eab9321308f95dcebd964512d4fb3be1810c3e10cd5:log:64', 'hash': '0xf84c96357d8d342566ea4eab9321308f95dcebd964512d4fb3be1810c3e10cd5', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:17:29.000Z'}}, {'blockNum': '0x4bfe55', 'uniqueId': '0xf84c96357d8d342566ea4eab9321308f95dcebd964512d4fb3be1810c3e10cd5:log:67', 'hash': '0xf84c96357d8d342566ea4eab9321308f95dcebd964512d4fb3be1810c3e10cd5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:17:29.000Z'}}, {'blockNum': '0x4bfe55', 'uniqueId': '0xf84c96357d8d342566ea4eab9321308f95dcebd964512d4fb3be1810c3e10cd5:log:68', 'hash': '0xf84c96357d8d342566ea4eab9321308f95dcebd964512d4fb3be1810c3e10cd5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:17:29.000Z'}}, {'blockNum': '0x4bfe55', 'uniqueId': '0xa8ca33821b4a5c7297c415f1497a641be3f9c64fcde681eb7115b4f7d81506e1:log:83', 'hash': '0xa8ca33821b4a5c7297c415f1497a641be3f9c64fcde681eb7115b4f7d81506e1', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2384.0105719372295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x813ccaf825c66848c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:17:29.000Z'}}, {'blockNum': '0x4bfe55', 'uniqueId': '0xa8ca33821b4a5c7297c415f1497a641be3f9c64fcde681eb7115b4f7d81506e1:log:85', 'hash': '0xa8ca33821b4a5c7297c415f1497a641be3f9c64fcde681eb7115b4f7d81506e1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2384.0105719372295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x813ccaf825c66848c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:17:29.000Z'}}, {'blockNum': '0x4bfe6f', 'uniqueId': '0x420db7a166eb263ebd94cb0ec188e1cbc248f593be2d80c1ae432d3562e4372a:log:19', 'hash': '0x420db7a166eb263ebd94cb0ec188e1cbc248f593be2d80c1ae432d3562e4372a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcab007003d241d7e7e8c1092ab93911b669ebd0c', 'value': 3207.53432038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xade17b0e23f3e2d800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:23:09.000Z'}}, {'blockNum': '0x4bfe76', 'uniqueId': '0x4a760335331a52d4319ed87457cc81e6f80741c5cbe46a15e29413ed92e5abbb:log:65', 'hash': '0x4a760335331a52d4319ed87457cc81e6f80741c5cbe46a15e29413ed92e5abbb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 46.949261080650494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x028b8d48347b3eaf26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:25:23.000Z'}}, {'blockNum': '0x4bfe76', 'uniqueId': '0x4a760335331a52d4319ed87457cc81e6f80741c5cbe46a15e29413ed92e5abbb:log:68', 'hash': '0x4a760335331a52d4319ed87457cc81e6f80741c5cbe46a15e29413ed92e5abbb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb018af916ed0116404537d1238b18988d652733a', 'value': 46.949261080650494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x028b8d48347b3eaf26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:25:23.000Z'}}, {'blockNum': '0x4bfe78', 'uniqueId': '0x888b1645e017c1ade467adff648744f0559d7f5ab1bb169cb6e32068220c9101:log:73', 'hash': '0x888b1645e017c1ade467adff648744f0559d7f5ab1bb169cb6e32068220c9101', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.218392132651157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x486b73ff155d8685', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:26:06.000Z'}}, {'blockNum': '0x4bfe78', 'uniqueId': '0x888b1645e017c1ade467adff648744f0559d7f5ab1bb169cb6e32068220c9101:log:75', 'hash': '0x888b1645e017c1ade467adff648744f0559d7f5ab1bb169cb6e32068220c9101', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.218392132651157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x486b73ff155d8685', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:26:06.000Z'}}, {'blockNum': '0x4bfe79', 'uniqueId': '0x6f71b3fe0b969f1088d1dfa18c40e0dcac9b9626fad0a3ba332150e6aca48380:log:12', 'hash': '0x6f71b3fe0b969f1088d1dfa18c40e0dcac9b9626fad0a3ba332150e6aca48380', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2475.159312197891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x862dbc587ce7774f16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:26:23.000Z'}}, {'blockNum': '0x4bfe79', 'uniqueId': '0x6f71b3fe0b969f1088d1dfa18c40e0dcac9b9626fad0a3ba332150e6aca48380:log:14', 'hash': '0x6f71b3fe0b969f1088d1dfa18c40e0dcac9b9626fad0a3ba332150e6aca48380', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2475.159312197891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x862dbc587ce7774f16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:26:23.000Z'}}, {'blockNum': '0x4bfe8f', 'uniqueId': '0xfb21da0ead861de6d8d5b024d6d89d49fb35f59635c556dabb161f6d7e22089d:log:118', 'hash': '0xfb21da0ead861de6d8d5b024d6d89d49fb35f59635c556dabb161f6d7e22089d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.686567352709572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x410a082d42326628', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:31:29.000Z'}}, {'blockNum': '0x4bfe8f', 'uniqueId': '0xfb21da0ead861de6d8d5b024d6d89d49fb35f59635c556dabb161f6d7e22089d:log:121', 'hash': '0xfb21da0ead861de6d8d5b024d6d89d49fb35f59635c556dabb161f6d7e22089d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 4.686567352709572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x410a082d42326628', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:31:29.000Z'}}, {'blockNum': '0x4bfe92', 'uniqueId': '0x18edc5f368b13718b54a18dd99b6303e3f0fbc1551042502fbd17075b980d860:log:38', 'hash': '0x18edc5f368b13718b54a18dd99b6303e3f0fbc1551042502fbd17075b980d860', 'from': '0xcab007003d241d7e7e8c1092ab93911b669ebd0c', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xadda10c495f5bc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:31:53.000Z'}}, {'blockNum': '0x4bfe92', 'uniqueId': '0x18edc5f368b13718b54a18dd99b6303e3f0fbc1551042502fbd17075b980d860:log:41', 'hash': '0x18edc5f368b13718b54a18dd99b6303e3f0fbc1551042502fbd17075b980d860', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xadda10c495f5bc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:31:53.000Z'}}, {'blockNum': '0x4bfe92', 'uniqueId': '0x18edc5f368b13718b54a18dd99b6303e3f0fbc1551042502fbd17075b980d860:log:42', 'hash': '0x18edc5f368b13718b54a18dd99b6303e3f0fbc1551042502fbd17075b980d860', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xadda10c495f5bc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:31:53.000Z'}}, {'blockNum': '0x4bfe92', 'uniqueId': '0x31070a254441fcbf783abf61b216b06160ff60d55f84933c8042b3fbcec54522:log:53', 'hash': '0x31070a254441fcbf783abf61b216b06160ff60d55f84933c8042b3fbcec54522', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1424.4816160582204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d38a75293f09890a3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:31:53.000Z'}}, {'blockNum': '0x4bfe92', 'uniqueId': '0x31070a254441fcbf783abf61b216b06160ff60d55f84933c8042b3fbcec54522:log:56', 'hash': '0x31070a254441fcbf783abf61b216b06160ff60d55f84933c8042b3fbcec54522', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1424.4816160582204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d38a75293f09890a3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:31:53.000Z'}}, {'blockNum': '0x4bfe92', 'uniqueId': '0x6d6f2409962c13c926d91722f97d1cbe7f805e1d6ce229b15fdf038413e3184a:log:74', 'hash': '0x6d6f2409962c13c926d91722f97d1cbe7f805e1d6ce229b15fdf038413e3184a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1.1944972314931561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1093b4e740564d79', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:31:53.000Z'}}, {'blockNum': '0x4bfe92', 'uniqueId': '0x6d6f2409962c13c926d91722f97d1cbe7f805e1d6ce229b15fdf038413e3184a:log:77', 'hash': '0x6d6f2409962c13c926d91722f97d1cbe7f805e1d6ce229b15fdf038413e3184a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 1.1944972314931561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1093b4e740564d79', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:31:53.000Z'}}, {'blockNum': '0x4bfe98', 'uniqueId': '0xca43913c5855672e4a1d871995561a872b06c7d567c7022f8b79b64f52ac7495:log:19', 'hash': '0xca43913c5855672e4a1d871995561a872b06c7d567c7022f8b79b64f52ac7495', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 247.85451372027126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d6fac1f0a01f34957', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:33:15.000Z'}}, {'blockNum': '0x4bfe98', 'uniqueId': '0xca43913c5855672e4a1d871995561a872b06c7d567c7022f8b79b64f52ac7495:log:22', 'hash': '0xca43913c5855672e4a1d871995561a872b06c7d567c7022f8b79b64f52ac7495', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 247.85451372027126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d6fac1f0a01f34957', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:33:15.000Z'}}, {'blockNum': '0x4bfe99', 'uniqueId': '0x004a23cda161e9002a812b147978ed1c88272b2feb9eebcff35663c6e98d57a7:log:48', 'hash': '0x004a23cda161e9002a812b147978ed1c88272b2feb9eebcff35663c6e98d57a7', 'from': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 900.1466303388152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30cc0b3f1ca5ef88b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:33:26.000Z'}}, {'blockNum': '0x4bfe99', 'uniqueId': '0x004a23cda161e9002a812b147978ed1c88272b2feb9eebcff35663c6e98d57a7:log:50', 'hash': '0x004a23cda161e9002a812b147978ed1c88272b2feb9eebcff35663c6e98d57a7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 900.1466303388152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30cc0b3f1ca5ef88b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:33:26.000Z'}}, {'blockNum': '0x4bfe9e', 'uniqueId': '0x8b88397a29d299eddf17621a7d75c830e4ab5ffd881a821ff6eb26728b5a58f7:log:47', 'hash': '0x8b88397a29d299eddf17621a7d75c830e4ab5ffd881a821ff6eb26728b5a58f7', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:34:23.000Z'}}, {'blockNum': '0x4bfe9e', 'uniqueId': '0x8b88397a29d299eddf17621a7d75c830e4ab5ffd881a821ff6eb26728b5a58f7:log:50', 'hash': '0x8b88397a29d299eddf17621a7d75c830e4ab5ffd881a821ff6eb26728b5a58f7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:34:23.000Z'}}, {'blockNum': '0x4bfe9e', 'uniqueId': '0x8b88397a29d299eddf17621a7d75c830e4ab5ffd881a821ff6eb26728b5a58f7:log:51', 'hash': '0x8b88397a29d299eddf17621a7d75c830e4ab5ffd881a821ff6eb26728b5a58f7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:34:23.000Z'}}, {'blockNum': '0x4bfea0', 'uniqueId': '0x3a4bf7d75906c9b7eaf45c927de809d8228d37a66baae7e29d157f5f86fbd53f:log:34', 'hash': '0x3a4bf7d75906c9b7eaf45c927de809d8228d37a66baae7e29d157f5f86fbd53f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 53.171684826885986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02e1e7c5a2679115dc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:34:47.000Z'}}, {'blockNum': '0x4bfea0', 'uniqueId': '0x3a4bf7d75906c9b7eaf45c927de809d8228d37a66baae7e29d157f5f86fbd53f:log:37', 'hash': '0x3a4bf7d75906c9b7eaf45c927de809d8228d37a66baae7e29d157f5f86fbd53f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb018af916ed0116404537d1238b18988d652733a', 'value': 53.171684826885986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02e1e7c5a2679115dc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:34:47.000Z'}}, {'blockNum': '0x4bfea1', 'uniqueId': '0x64d05ceb5288230b5378c45423b2e5f29ac902be4c583c442b31485df266f67a:log:62', 'hash': '0x64d05ceb5288230b5378c45423b2e5f29ac902be4c583c442b31485df266f67a', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2795.666198638056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x978da98b9643f7ecdc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:35:07.000Z'}}, {'blockNum': '0x4bfea1', 'uniqueId': '0x64d05ceb5288230b5378c45423b2e5f29ac902be4c583c442b31485df266f67a:log:64', 'hash': '0x64d05ceb5288230b5378c45423b2e5f29ac902be4c583c442b31485df266f67a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2795.666198638056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x978da98b9643f7ecdc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:35:07.000Z'}}, {'blockNum': '0x4bfea1', 'uniqueId': '0xc66f4575fd8afbd4edd47ca5c06ff4dd6f5a502282edbd6600c478309c45f427:log:85', 'hash': '0xc66f4575fd8afbd4edd47ca5c06ff4dd6f5a502282edbd6600c478309c45f427', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 574.7970053761113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f28e92efc0969c146', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:35:07.000Z'}}, {'blockNum': '0x4bfea1', 'uniqueId': '0xc66f4575fd8afbd4edd47ca5c06ff4dd6f5a502282edbd6600c478309c45f427:log:87', 'hash': '0xc66f4575fd8afbd4edd47ca5c06ff4dd6f5a502282edbd6600c478309c45f427', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 574.7970053761113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f28e92efc0969c146', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:35:07.000Z'}}, {'blockNum': '0x4bfea9', 'uniqueId': '0x67e8962848ad8f28cba223543ab363bbc9ccb6c722874f11a8b642958c81419b:log:20', 'hash': '0x67e8962848ad8f28cba223543ab363bbc9ccb6c722874f11a8b642958c81419b', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.217573169833732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48688b27718c677e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:36:46.000Z'}}, {'blockNum': '0x4bfea9', 'uniqueId': '0x67e8962848ad8f28cba223543ab363bbc9ccb6c722874f11a8b642958c81419b:log:22', 'hash': '0x67e8962848ad8f28cba223543ab363bbc9ccb6c722874f11a8b642958c81419b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.217573169833732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48688b27718c677e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:36:46.000Z'}}, {'blockNum': '0x4bfeab', 'uniqueId': '0x84a6246fe7efac860e7b515b74d83b52024a123b64d7d612f628ca5027cb17ec:log:11', 'hash': '0x84a6246fe7efac860e7b515b74d83b52024a123b64d7d612f628ca5027cb17ec', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 1304.71154062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46ba8289892fbc7800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:37:05.000Z'}}, {'blockNum': '0x4bfeab', 'uniqueId': '0x076a1c6612da6ce4597822c6ce16ed2a826704ba6caf8676e9c3a0d8d51657dd:log:68', 'hash': '0x076a1c6612da6ce4597822c6ce16ed2a826704ba6caf8676e9c3a0d8d51657dd', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4612.46111153853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xfa0ac1af13f57a4c7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:37:05.000Z'}}, {'blockNum': '0x4bfeab', 'uniqueId': '0x076a1c6612da6ce4597822c6ce16ed2a826704ba6caf8676e9c3a0d8d51657dd:log:70', 'hash': '0x076a1c6612da6ce4597822c6ce16ed2a826704ba6caf8676e9c3a0d8d51657dd', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4612.46111153853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xfa0ac1af13f57a4c7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:37:05.000Z'}}, {'blockNum': '0x4bfeab', 'uniqueId': '0xf7529af58035fae499099d590ab5643cd7400d782ed69cc591a31dc4bf405c08:log:84', 'hash': '0xf7529af58035fae499099d590ab5643cd7400d782ed69cc591a31dc4bf405c08', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 318.87709480165626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11494f043d254811ff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:37:05.000Z'}}, {'blockNum': '0x4bfeab', 'uniqueId': '0xf7529af58035fae499099d590ab5643cd7400d782ed69cc591a31dc4bf405c08:log:87', 'hash': '0xf7529af58035fae499099d590ab5643cd7400d782ed69cc591a31dc4bf405c08', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 318.87709480165626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11494f043d254811ff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:37:05.000Z'}}, {'blockNum': '0x4bfead', 'uniqueId': '0x1fbcb92c50eb3d6e58e95943626c0f3184dd145074a7dc900f75a7b615819fb7:log:41', 'hash': '0x1fbcb92c50eb3d6e58e95943626c0f3184dd145074a7dc900f75a7b615819fb7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1474.9128118434883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ff486ebf2dbac14ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:37:34.000Z'}}, {'blockNum': '0x4bfead', 'uniqueId': '0x1fbcb92c50eb3d6e58e95943626c0f3184dd145074a7dc900f75a7b615819fb7:log:44', 'hash': '0x1fbcb92c50eb3d6e58e95943626c0f3184dd145074a7dc900f75a7b615819fb7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1474.9128118434883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ff486ebf2dbac14ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:37:34.000Z'}}, {'blockNum': '0x4bfeae', 'uniqueId': '0x99f462a0665d96f1a6b7484319c7496a01ca97040de8b3648072e97bf9f0dae2:log:19', 'hash': '0x99f462a0665d96f1a6b7484319c7496a01ca97040de8b3648072e97bf9f0dae2', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1304.71154062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46ba8289892fbc7800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:37:42.000Z'}}, {'blockNum': '0x4bfeae', 'uniqueId': '0x99f462a0665d96f1a6b7484319c7496a01ca97040de8b3648072e97bf9f0dae2:log:22', 'hash': '0x99f462a0665d96f1a6b7484319c7496a01ca97040de8b3648072e97bf9f0dae2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1304.71154062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46ba8289892fbc7800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:37:42.000Z'}}, {'blockNum': '0x4bfeae', 'uniqueId': '0x99f462a0665d96f1a6b7484319c7496a01ca97040de8b3648072e97bf9f0dae2:log:23', 'hash': '0x99f462a0665d96f1a6b7484319c7496a01ca97040de8b3648072e97bf9f0dae2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1304.71154062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46ba8289892fbc7800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:37:42.000Z'}}, {'blockNum': '0x4bfeb1', 'uniqueId': '0xb2fc5b334b83f92304025874b4f8cb8fffad21c8d023ae4e5386553aeee885de:log:69', 'hash': '0xb2fc5b334b83f92304025874b4f8cb8fffad21c8d023ae4e5386553aeee885de', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 358.567047070916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13701e0d8a96b78fad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:38:22.000Z'}}, {'blockNum': '0x4bfeb1', 'uniqueId': '0xb2fc5b334b83f92304025874b4f8cb8fffad21c8d023ae4e5386553aeee885de:log:72', 'hash': '0xb2fc5b334b83f92304025874b4f8cb8fffad21c8d023ae4e5386553aeee885de', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 358.567047070916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13701e0d8a96b78fad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:38:22.000Z'}}, {'blockNum': '0x4bfeb4', 'uniqueId': '0x8b84123f05ef754fb540f026a439feab5687c3bb0c2b0ae2a26793b3960e72cf:log:95', 'hash': '0x8b84123f05ef754fb540f026a439feab5687c3bb0c2b0ae2a26793b3960e72cf', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 28.40206213494988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018a286507fa42a4be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:39:15.000Z'}}, {'blockNum': '0x4bfeb4', 'uniqueId': '0x8b84123f05ef754fb540f026a439feab5687c3bb0c2b0ae2a26793b3960e72cf:log:98', 'hash': '0x8b84123f05ef754fb540f026a439feab5687c3bb0c2b0ae2a26793b3960e72cf', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 28.40206213494988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018a286507fa42a4be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:39:15.000Z'}}, {'blockNum': '0x4bfeb5', 'uniqueId': '0xe56b245df4079f692d5b2b136a75c8c23d6c1324a1349ebfd364f08a151f6cda:log:50', 'hash': '0xe56b245df4079f692d5b2b136a75c8c23d6c1324a1349ebfd364f08a151f6cda', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 17.468028260158555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf26ae7272d3c402a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:39:25.000Z'}}, {'blockNum': '0x4bfeb5', 'uniqueId': '0xe56b245df4079f692d5b2b136a75c8c23d6c1324a1349ebfd364f08a151f6cda:log:52', 'hash': '0xe56b245df4079f692d5b2b136a75c8c23d6c1324a1349ebfd364f08a151f6cda', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 17.468028260158555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf26ae7272d3c402a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:39:25.000Z'}}, {'blockNum': '0x4bfeb9', 'uniqueId': '0xf6edc8bc1dae229d958701d0b5ed218ac7aacef5d219b8963c5e033f69b182cc:log:84', 'hash': '0xf6edc8bc1dae229d958701d0b5ed218ac7aacef5d219b8963c5e033f69b182cc', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 260.0603085437398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e190fd0c310178b3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:40:19.000Z'}}, {'blockNum': '0x4bfeb9', 'uniqueId': '0xf6edc8bc1dae229d958701d0b5ed218ac7aacef5d219b8963c5e033f69b182cc:log:86', 'hash': '0xf6edc8bc1dae229d958701d0b5ed218ac7aacef5d219b8963c5e033f69b182cc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 260.0603085437398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e190fd0c310178b3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:40:19.000Z'}}, {'blockNum': '0x4bfebf', 'uniqueId': '0x0fca697b13fae9b596b50076d17b2e7d02c42a237a9c543288b88ba78aff0339:log:159', 'hash': '0x0fca697b13fae9b596b50076d17b2e7d02c42a237a9c543288b88ba78aff0339', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1590.8366717211993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x563d4b345106cb90d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:41:23.000Z'}}, {'blockNum': '0x4bfebf', 'uniqueId': '0x0fca697b13fae9b596b50076d17b2e7d02c42a237a9c543288b88ba78aff0339:log:161', 'hash': '0x0fca697b13fae9b596b50076d17b2e7d02c42a237a9c543288b88ba78aff0339', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1590.8366717211993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x563d4b345106cb90d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:41:23.000Z'}}, {'blockNum': '0x4bfec3', 'uniqueId': '0x23323d5e1cdb2cc1473fe1b7eb7605236c438a194c0cdc5a04835c52937d1550:log:33', 'hash': '0x23323d5e1cdb2cc1473fe1b7eb7605236c438a194c0cdc5a04835c52937d1550', 'from': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 107.98746720282932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05daa08d4762c97d4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:42:15.000Z'}}, {'blockNum': '0x4bfec3', 'uniqueId': '0x23323d5e1cdb2cc1473fe1b7eb7605236c438a194c0cdc5a04835c52937d1550:log:35', 'hash': '0x23323d5e1cdb2cc1473fe1b7eb7605236c438a194c0cdc5a04835c52937d1550', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 107.98746720282932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05daa08d4762c97d4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:42:15.000Z'}}, {'blockNum': '0x4bfec5', 'uniqueId': '0xd55bff353fb44b8ac4efc3fa43a0bea72afb281418e3220026a31a8a4781d44c:log:65', 'hash': '0xd55bff353fb44b8ac4efc3fa43a0bea72afb281418e3220026a31a8a4781d44c', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 336.1521108384029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12390c33cc1cbe44c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:43:23.000Z'}}, {'blockNum': '0x4bfec5', 'uniqueId': '0xd55bff353fb44b8ac4efc3fa43a0bea72afb281418e3220026a31a8a4781d44c:log:67', 'hash': '0xd55bff353fb44b8ac4efc3fa43a0bea72afb281418e3220026a31a8a4781d44c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 336.1521108384029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12390c33cc1cbe44c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:43:23.000Z'}}, {'blockNum': '0x4bfec5', 'uniqueId': '0xcb26855de9103475712adae1c0ccca59cb57f68421f4a0c048c0a6ae97f5b560:log:83', 'hash': '0xcb26855de9103475712adae1c0ccca59cb57f68421f4a0c048c0a6ae97f5b560', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 50.38987879709167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02bb4ccfc9f7a2fb52', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:43:23.000Z'}}, {'blockNum': '0x4bfec5', 'uniqueId': '0xcb26855de9103475712adae1c0ccca59cb57f68421f4a0c048c0a6ae97f5b560:log:86', 'hash': '0xcb26855de9103475712adae1c0ccca59cb57f68421f4a0c048c0a6ae97f5b560', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb018af916ed0116404537d1238b18988d652733a', 'value': 50.38987879709167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02bb4ccfc9f7a2fb52', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:43:23.000Z'}}, {'blockNum': '0x4bfec6', 'uniqueId': '0xd879d856bb3e7465df97d7889ae29d849ab42b69f923c0993103805c8434536c:log:58', 'hash': '0xd879d856bb3e7465df97d7889ae29d849ab42b69f923c0993103805c8434536c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 231.60221462881077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c8e205b1fb00b45c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:43:32.000Z'}}, {'blockNum': '0x4bfec6', 'uniqueId': '0xd879d856bb3e7465df97d7889ae29d849ab42b69f923c0993103805c8434536c:log:61', 'hash': '0xd879d856bb3e7465df97d7889ae29d849ab42b69f923c0993103805c8434536c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 231.60221462881077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c8e205b1fb00b45c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:43:32.000Z'}}, {'blockNum': '0x4bfeca', 'uniqueId': '0xf8f3acb17041f6ce5c1ff6a506dfd0473ae8dd981aa724b5851636a8fa317380:log:40', 'hash': '0xf8f3acb17041f6ce5c1ff6a506dfd0473ae8dd981aa724b5851636a8fa317380', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.123616972205643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x471abe7d797ad7b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:43:58.000Z'}}, {'blockNum': '0x4bfeca', 'uniqueId': '0xf8f3acb17041f6ce5c1ff6a506dfd0473ae8dd981aa724b5851636a8fa317380:log:42', 'hash': '0xf8f3acb17041f6ce5c1ff6a506dfd0473ae8dd981aa724b5851636a8fa317380', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.123616972205643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x471abe7d797ad7b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:43:58.000Z'}}, {'blockNum': '0x4bfecf', 'uniqueId': '0x481adee25358c5eb6b00dd89c8c1d9afda39e4120c4f405ad748c04de569623b:log:75', 'hash': '0x481adee25358c5eb6b00dd89c8c1d9afda39e4120c4f405ad748c04de569623b', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 8.135401656681768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x70e6c0b41ba428ff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:45:29.000Z'}}, {'blockNum': '0x4bfecf', 'uniqueId': '0x481adee25358c5eb6b00dd89c8c1d9afda39e4120c4f405ad748c04de569623b:log:77', 'hash': '0x481adee25358c5eb6b00dd89c8c1d9afda39e4120c4f405ad748c04de569623b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 8.135401656681768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x70e6c0b41ba428ff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:45:29.000Z'}}, {'blockNum': '0x4bfed0', 'uniqueId': '0x425709bbacccae7983604bf4f2b09a769d489d9d212787390a737109ea8d43bf:log:23', 'hash': '0x425709bbacccae7983604bf4f2b09a769d489d9d212787390a737109ea8d43bf', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2264.055637651237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7abc156ef68277f37a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:45:34.000Z'}}, {'blockNum': '0x4bfed0', 'uniqueId': '0x425709bbacccae7983604bf4f2b09a769d489d9d212787390a737109ea8d43bf:log:25', 'hash': '0x425709bbacccae7983604bf4f2b09a769d489d9d212787390a737109ea8d43bf', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2264.055637651237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7abc156ef68277f37a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:45:34.000Z'}}, {'blockNum': '0x4bfed3', 'uniqueId': '0x76ac17b12f16249038d12ca0a27ee3ac8d1c4d7af055063b84080660a68c175d:log:75', 'hash': '0x76ac17b12f16249038d12ca0a27ee3ac8d1c4d7af055063b84080660a68c175d', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 67.41137159927325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a7854d4f0c89f168', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:46:06.000Z'}}, {'blockNum': '0x4bfed3', 'uniqueId': '0x76ac17b12f16249038d12ca0a27ee3ac8d1c4d7af055063b84080660a68c175d:log:77', 'hash': '0x76ac17b12f16249038d12ca0a27ee3ac8d1c4d7af055063b84080660a68c175d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 67.41137159927325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a7854d4f0c89f168', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:46:06.000Z'}}, {'blockNum': '0x4bfed5', 'uniqueId': '0xe59d77c34f1381146d6e8cc44bf2f5898b076b8d4ddd20caedb26986ad8e3f0a:log:40', 'hash': '0xe59d77c34f1381146d6e8cc44bf2f5898b076b8d4ddd20caedb26986ad8e3f0a', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1309.9683684045297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4703768a8dd6084cf2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:46:21.000Z'}}, {'blockNum': '0x4bfed5', 'uniqueId': '0xe59d77c34f1381146d6e8cc44bf2f5898b076b8d4ddd20caedb26986ad8e3f0a:log:42', 'hash': '0xe59d77c34f1381146d6e8cc44bf2f5898b076b8d4ddd20caedb26986ad8e3f0a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1309.9683684045297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4703768a8dd6084cf2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:46:21.000Z'}}, {'blockNum': '0x4bfed6', 'uniqueId': '0xc389d697b059a77b4174995cdcc50ce97cca46510e2e82450757efb5d9c27aaa:log:34', 'hash': '0xc389d697b059a77b4174995cdcc50ce97cca46510e2e82450757efb5d9c27aaa', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 264.76158235012673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e5a4e186165a2ba1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:46:34.000Z'}}, {'blockNum': '0x4bfed6', 'uniqueId': '0xc389d697b059a77b4174995cdcc50ce97cca46510e2e82450757efb5d9c27aaa:log:37', 'hash': '0xc389d697b059a77b4174995cdcc50ce97cca46510e2e82450757efb5d9c27aaa', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 264.76158235012673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e5a4e186165a2ba1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:46:34.000Z'}}, {'blockNum': '0x4bfedd', 'uniqueId': '0xdf2d012c3afd1ae8a91cd4772e0c222bfb6cee3d945708d13cbfb8a1577e4dea:log:64', 'hash': '0xdf2d012c3afd1ae8a91cd4772e0c222bfb6cee3d945708d13cbfb8a1577e4dea', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 224.2020510632772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c276db19194a0a6cb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:48:58.000Z'}}, {'blockNum': '0x4bfedd', 'uniqueId': '0xdf2d012c3afd1ae8a91cd4772e0c222bfb6cee3d945708d13cbfb8a1577e4dea:log:67', 'hash': '0xdf2d012c3afd1ae8a91cd4772e0c222bfb6cee3d945708d13cbfb8a1577e4dea', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 224.2020510632772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c276db19194a0a6cb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:48:58.000Z'}}, {'blockNum': '0x4bfedf', 'uniqueId': '0x664b81f965e519db18c57513ef2742152424bbf9a2901302151f61aa281c442c:log:131', 'hash': '0x664b81f965e519db18c57513ef2742152424bbf9a2901302151f61aa281c442c', 'from': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 610.2333435945478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2114b058d82bea4281', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:49:05.000Z'}}, {'blockNum': '0x4bfedf', 'uniqueId': '0x664b81f965e519db18c57513ef2742152424bbf9a2901302151f61aa281c442c:log:133', 'hash': '0x664b81f965e519db18c57513ef2742152424bbf9a2901302151f61aa281c442c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 610.2333435945478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2114b058d82bea4281', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:49:05.000Z'}}, {'blockNum': '0x4bfedf', 'uniqueId': '0xc0a34bb46b978d204fbcfd951279407fcb646adfacd5b2cfd8c7875e4808edad:log:169', 'hash': '0xc0a34bb46b978d204fbcfd951279407fcb646adfacd5b2cfd8c7875e4808edad', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2192.468094018363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x76da9b6350de4506cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:49:05.000Z'}}, {'blockNum': '0x4bfedf', 'uniqueId': '0xc0a34bb46b978d204fbcfd951279407fcb646adfacd5b2cfd8c7875e4808edad:log:171', 'hash': '0xc0a34bb46b978d204fbcfd951279407fcb646adfacd5b2cfd8c7875e4808edad', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2192.468094018363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x76da9b6350de4506cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:49:05.000Z'}}, {'blockNum': '0x4bfee5', 'uniqueId': '0xe48207afe05291246238fa3abc69ddf74eb24c5d0ebe67fdab065596b84d869a:log:38', 'hash': '0xe48207afe05291246238fa3abc69ddf74eb24c5d0ebe67fdab065596b84d869a', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 13.390872248344435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb9d5ef5cab34d6c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:51:06.000Z'}}, {'blockNum': '0x4bfee5', 'uniqueId': '0xe48207afe05291246238fa3abc69ddf74eb24c5d0ebe67fdab065596b84d869a:log:40', 'hash': '0xe48207afe05291246238fa3abc69ddf74eb24c5d0ebe67fdab065596b84d869a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 13.390872248344435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb9d5ef5cab34d6c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:51:06.000Z'}}, {'blockNum': '0x4bfee5', 'uniqueId': '0xee6404b8e44abe6f15efd78c11d983e552d3688e953c11c454f73707f557cd13:log:76', 'hash': '0xee6404b8e44abe6f15efd78c11d983e552d3688e953c11c454f73707f557cd13', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 468.1110244237388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x196058708e0d28561b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:51:06.000Z'}}, {'blockNum': '0x4bfee5', 'uniqueId': '0xee6404b8e44abe6f15efd78c11d983e552d3688e953c11c454f73707f557cd13:log:78', 'hash': '0xee6404b8e44abe6f15efd78c11d983e552d3688e953c11c454f73707f557cd13', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 468.1110244237388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x196058708e0d28561b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:51:06.000Z'}}, {'blockNum': '0x4bfeea', 'uniqueId': '0x76ca3855084d51257a73de6e7cdc244d3920ce6043e24495455068e1d11d4e45:log:68', 'hash': '0x76ca3855084d51257a73de6e7cdc244d3920ce6043e24495455068e1d11d4e45', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1662.8351232413283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5a247916828a453b25', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:52:11.000Z'}}, {'blockNum': '0x4bfeea', 'uniqueId': '0x76ca3855084d51257a73de6e7cdc244d3920ce6043e24495455068e1d11d4e45:log:70', 'hash': '0x76ca3855084d51257a73de6e7cdc244d3920ce6043e24495455068e1d11d4e45', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1662.8351232413283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5a247916828a453b25', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:52:11.000Z'}}, {'blockNum': '0x4bfeec', 'uniqueId': '0x58c7d9e301c6cdb9a6773e2657a34863f488ff286ced46ab014e8c33012218da:log:50', 'hash': '0x58c7d9e301c6cdb9a6773e2657a34863f488ff286ced46ab014e8c33012218da', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 8.279087189795627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x72e539ef4441618d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:52:38.000Z'}}, {'blockNum': '0x4bfeec', 'uniqueId': '0x58c7d9e301c6cdb9a6773e2657a34863f488ff286ced46ab014e8c33012218da:log:52', 'hash': '0x58c7d9e301c6cdb9a6773e2657a34863f488ff286ced46ab014e8c33012218da', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 8.279087189795627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x72e539ef4441618d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:52:38.000Z'}}, {'blockNum': '0x4bfef2', 'uniqueId': '0xb5791cf9e9435b22cc21261f93d3fbc4d41d9ddb51296cdcbbfb3f4e8d41cb21:log:38', 'hash': '0xb5791cf9e9435b22cc21261f93d3fbc4d41d9ddb51296cdcbbfb3f4e8d41cb21', 'from': '0xb3d96e75aa45f97ca747d45bd1d885c69b832c14', 'to': '0x2ea900df2d84c4892972d39e14de7ba01f11e542', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:54:36.000Z'}}, {'blockNum': '0x4bfef6', 'uniqueId': '0x1ea6a6d5f749bc89c91f9c6a3be6f0c8f1ab603ba9ba824c0cc9f6edb2aa692a:log:149', 'hash': '0x1ea6a6d5f749bc89c91f9c6a3be6f0c8f1ab603ba9ba824c0cc9f6edb2aa692a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 85.30831571716993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x049fe4052974c95f9f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:56:17.000Z'}}, {'blockNum': '0x4bfef6', 'uniqueId': '0x1ea6a6d5f749bc89c91f9c6a3be6f0c8f1ab603ba9ba824c0cc9f6edb2aa692a:log:152', 'hash': '0x1ea6a6d5f749bc89c91f9c6a3be6f0c8f1ab603ba9ba824c0cc9f6edb2aa692a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb018af916ed0116404537d1238b18988d652733a', 'value': 85.30831571716993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x049fe4052974c95f9f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:56:17.000Z'}}, {'blockNum': '0x4bfefc', 'uniqueId': '0xadf0aa8247e6580efe99b91d310e683dcca4853313e73e33fd5dc547ad19e39e:log:29', 'hash': '0xadf0aa8247e6580efe99b91d310e683dcca4853313e73e33fd5dc547ad19e39e', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2105.6533595166475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7225cf7e4031a5524d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:57:46.000Z'}}, {'blockNum': '0x4bfefc', 'uniqueId': '0xadf0aa8247e6580efe99b91d310e683dcca4853313e73e33fd5dc547ad19e39e:log:31', 'hash': '0xadf0aa8247e6580efe99b91d310e683dcca4853313e73e33fd5dc547ad19e39e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2105.6533595166475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7225cf7e4031a5524d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:57:46.000Z'}}, {'blockNum': '0x4bfefc', 'uniqueId': '0xdfd7fb142be19076de2e3f1d7412ffe3918c8b6ae8026104360ec5a6c6f34c20:log:45', 'hash': '0xdfd7fb142be19076de2e3f1d7412ffe3918c8b6ae8026104360ec5a6c6f34c20', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 16.557131083888898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe5c6beff52c6af70', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:57:46.000Z'}}, {'blockNum': '0x4bfefc', 'uniqueId': '0xdfd7fb142be19076de2e3f1d7412ffe3918c8b6ae8026104360ec5a6c6f34c20:log:47', 'hash': '0xdfd7fb142be19076de2e3f1d7412ffe3918c8b6ae8026104360ec5a6c6f34c20', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 16.557131083888898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe5c6beff52c6af70', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:57:46.000Z'}}, {'blockNum': '0x4bfefc', 'uniqueId': '0x746bba82222707bfbdfc1fdb7f974ec3ba9ace611e8b914e04be55d331a3cd43:log:61', 'hash': '0x746bba82222707bfbdfc1fdb7f974ec3ba9ace611e8b914e04be55d331a3cd43', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 99.11245943559896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x055f7630bc8230723b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:57:46.000Z'}}, {'blockNum': '0x4bfefc', 'uniqueId': '0x746bba82222707bfbdfc1fdb7f974ec3ba9ace611e8b914e04be55d331a3cd43:log:64', 'hash': '0x746bba82222707bfbdfc1fdb7f974ec3ba9ace611e8b914e04be55d331a3cd43', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 99.11245943559896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x055f7630bc8230723b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:57:46.000Z'}}, {'blockNum': '0x4bff00', 'uniqueId': '0xb3c935c15c3a9048f1835c1685c883f9224d5f2f37495711b8261d576efa7076:log:3', 'hash': '0xb3c935c15c3a9048f1835c1685c883f9224d5f2f37495711b8261d576efa7076', 'from': '0xb3d96e75aa45f97ca747d45bd1d885c69b832c14', 'to': '0x2ea900df2d84c4892972d39e14de7ba01f11e542', 'value': 11357.789759399977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0267b4ff0a066cf71a5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:58:10.000Z'}}, {'blockNum': '0x4bff04', 'uniqueId': '0x6f0944d84e37142a628fa4a0b12ffa461ff421a175353a979bed4d6ed0853613:log:41', 'hash': '0x6f0944d84e37142a628fa4a0b12ffa461ff421a175353a979bed4d6ed0853613', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 57.963977230974095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0324696a2f6d0a93b6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:58:58.000Z'}}, {'blockNum': '0x4bff04', 'uniqueId': '0x6f0944d84e37142a628fa4a0b12ffa461ff421a175353a979bed4d6ed0853613:log:43', 'hash': '0x6f0944d84e37142a628fa4a0b12ffa461ff421a175353a979bed4d6ed0853613', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 57.963977230974095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0324696a2f6d0a93b6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:58:58.000Z'}}, {'blockNum': '0x4bff0c', 'uniqueId': '0x2e669361f3473718363f1e396b061ed095d665a7be66d9feed29bc3afbac510f:log:16', 'hash': '0x2e669361f3473718363f1e396b061ed095d665a7be66d9feed29bc3afbac510f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 835.5326082452959, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d4b58205b8c7acdf4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:00:46.000Z'}}, {'blockNum': '0x4bff0c', 'uniqueId': '0x2e669361f3473718363f1e396b061ed095d665a7be66d9feed29bc3afbac510f:log:19', 'hash': '0x2e669361f3473718363f1e396b061ed095d665a7be66d9feed29bc3afbac510f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 835.5326082452959, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d4b58205b8c7acdf4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:00:46.000Z'}}, {'blockNum': '0x4bff0c', 'uniqueId': '0x65458700846f3eb0152a391eb180eb5c9eed49f8d3979f77df684b754b923966:log:35', 'hash': '0x65458700846f3eb0152a391eb180eb5c9eed49f8d3979f77df684b754b923966', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1047.7427285031276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38cc59ec650b764b77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:00:46.000Z'}}, {'blockNum': '0x4bff0c', 'uniqueId': '0x65458700846f3eb0152a391eb180eb5c9eed49f8d3979f77df684b754b923966:log:38', 'hash': '0x65458700846f3eb0152a391eb180eb5c9eed49f8d3979f77df684b754b923966', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1047.7427285031276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38cc59ec650b764b77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:00:46.000Z'}}, {'blockNum': '0x4bff0c', 'uniqueId': '0xec45289d529a0a61bd16e8d26416a66179a7094435d0d540412921d313274c18:log:60', 'hash': '0xec45289d529a0a61bd16e8d26416a66179a7094435d0d540412921d313274c18', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2435.231280345776, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x84039f7b10f1afbfac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:00:46.000Z'}}, {'blockNum': '0x4bff0c', 'uniqueId': '0xec45289d529a0a61bd16e8d26416a66179a7094435d0d540412921d313274c18:log:62', 'hash': '0xec45289d529a0a61bd16e8d26416a66179a7094435d0d540412921d313274c18', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2435.231280345776, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x84039f7b10f1afbfac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:00:46.000Z'}}, {'blockNum': '0x4bff11', 'uniqueId': '0xf3b494ca2a679b86a088a9f5df2f45f1d987d271af9a336bbf0f04a8aa437ee2:log:28', 'hash': '0xf3b494ca2a679b86a088a9f5df2f45f1d987d271af9a336bbf0f04a8aa437ee2', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 825.8438281516303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cc4e2aa321eaa9c43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:01:47.000Z'}}, {'blockNum': '0x4bff11', 'uniqueId': '0xf3b494ca2a679b86a088a9f5df2f45f1d987d271af9a336bbf0f04a8aa437ee2:log:30', 'hash': '0xf3b494ca2a679b86a088a9f5df2f45f1d987d271af9a336bbf0f04a8aa437ee2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 825.8438281516303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cc4e2aa321eaa9c43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:01:47.000Z'}}, {'blockNum': '0x4bff14', 'uniqueId': '0x92b213bfefddd6da871166acae86b68e05e2f2cda3a0b8fec5dd20be67a9e390:log:18', 'hash': '0x92b213bfefddd6da871166acae86b68e05e2f2cda3a0b8fec5dd20be67a9e390', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x5a6fc2de011d93842411aa5f91a0a4acd3feffde', 'value': 52.87, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02ddb7f8e1fae70000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:02:23.000Z'}}, {'blockNum': '0x4bff1e', 'uniqueId': '0x37f797800345cd5437cd5e2ea193a76e0ae5a8096fe98ff82718eb384118f72f:log:60', 'hash': '0x37f797800345cd5437cd5e2ea193a76e0ae5a8096fe98ff82718eb384118f72f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 32.93969133381851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01c9214abf0343d9e7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:05:10.000Z'}}, {'blockNum': '0x4bff1e', 'uniqueId': '0x37f797800345cd5437cd5e2ea193a76e0ae5a8096fe98ff82718eb384118f72f:log:63', 'hash': '0x37f797800345cd5437cd5e2ea193a76e0ae5a8096fe98ff82718eb384118f72f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'value': 32.93969133381851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01c9214abf0343d9e7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:05:10.000Z'}}, {'blockNum': '0x4bff20', 'uniqueId': '0x66a6c23e1e56edeba98b566447928aa00d36764e71b1fd0d6f4ec239cc0447c4:log:54', 'hash': '0x66a6c23e1e56edeba98b566447928aa00d36764e71b1fd0d6f4ec239cc0447c4', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 67.82206959270337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03ad3864f534e8163d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:05:35.000Z'}}, {'blockNum': '0x4bff20', 'uniqueId': '0x66a6c23e1e56edeba98b566447928aa00d36764e71b1fd0d6f4ec239cc0447c4:log:56', 'hash': '0x66a6c23e1e56edeba98b566447928aa00d36764e71b1fd0d6f4ec239cc0447c4', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 67.82206959270337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03ad3864f534e8163d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:05:35.000Z'}}, {'blockNum': '0x4bff24', 'uniqueId': '0x963c12f3f22b1387c5fbbab952039c6feb8db3437cbe46a0fc491bc2b3957ff3:log:35', 'hash': '0x963c12f3f22b1387c5fbbab952039c6feb8db3437cbe46a0fc491bc2b3957ff3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 898.3128066270586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30b29832297e000cab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:06:15.000Z'}}, {'blockNum': '0x4bff24', 'uniqueId': '0x963c12f3f22b1387c5fbbab952039c6feb8db3437cbe46a0fc491bc2b3957ff3:log:38', 'hash': '0x963c12f3f22b1387c5fbbab952039c6feb8db3437cbe46a0fc491bc2b3957ff3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 898.3128066270586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30b29832297e000cab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:06:15.000Z'}}, {'blockNum': '0x4bff26', 'uniqueId': '0x27d3ad2bed9e301c13aa9c00c555cabfb0ae32e54993a03cde259da35406d3ad:log:60', 'hash': '0x27d3ad2bed9e301c13aa9c00c555cabfb0ae32e54993a03cde259da35406d3ad', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 826.525670051239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cce590dca79d1e857', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:07:11.000Z'}}, {'blockNum': '0x4bff26', 'uniqueId': '0x27d3ad2bed9e301c13aa9c00c555cabfb0ae32e54993a03cde259da35406d3ad:log:63', 'hash': '0x27d3ad2bed9e301c13aa9c00c555cabfb0ae32e54993a03cde259da35406d3ad', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 826.525670051239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cce590dca79d1e857', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:07:11.000Z'}}, {'blockNum': '0x4bff2a', 'uniqueId': '0x564dadd048c7cb65903e58726cd1d8a4b306e5e134927329e3c53477f7c5af0a:log:55', 'hash': '0x564dadd048c7cb65903e58726cd1d8a4b306e5e134927329e3c53477f7c5af0a', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 26.196035838339643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x016b8b03cd6ba2f5fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:08:09.000Z'}}, {'blockNum': '0x4bff2a', 'uniqueId': '0x564dadd048c7cb65903e58726cd1d8a4b306e5e134927329e3c53477f7c5af0a:log:57', 'hash': '0x564dadd048c7cb65903e58726cd1d8a4b306e5e134927329e3c53477f7c5af0a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 26.196035838339643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x016b8b03cd6ba2f5fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:08:09.000Z'}}, {'blockNum': '0x4bff2c', 'uniqueId': '0xe63f4d2fe1ff25496b48ceee047b689c52a6e20108bad8b54b875d8b20eb2caa:log:13', 'hash': '0xe63f4d2fe1ff25496b48ceee047b689c52a6e20108bad8b54b875d8b20eb2caa', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 224.54191062631594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2c251e0a651231fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:08:27.000Z'}}, {'blockNum': '0x4bff2c', 'uniqueId': '0xe63f4d2fe1ff25496b48ceee047b689c52a6e20108bad8b54b875d8b20eb2caa:log:16', 'hash': '0xe63f4d2fe1ff25496b48ceee047b689c52a6e20108bad8b54b875d8b20eb2caa', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 224.54191062631594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2c251e0a651231fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:08:27.000Z'}}, {'blockNum': '0x4bff30', 'uniqueId': '0x48198f21fc7120dbdc60f4862e061abb4d79571768cc9304a312cedcc7f32f76:log:31', 'hash': '0x48198f21fc7120dbdc60f4862e061abb4d79571768cc9304a312cedcc7f32f76', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 858.0481250249018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e83cf4f938b3b9e86', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:09:52.000Z'}}, {'blockNum': '0x4bff30', 'uniqueId': '0x48198f21fc7120dbdc60f4862e061abb4d79571768cc9304a312cedcc7f32f76:log:34', 'hash': '0x48198f21fc7120dbdc60f4862e061abb4d79571768cc9304a312cedcc7f32f76', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 858.0481250249018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e83cf4f938b3b9e86', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:09:52.000Z'}}, {'blockNum': '0x4bff38', 'uniqueId': '0xa33f5928d2b1bc02b0f0959fffc535ee8f96ad4204c9778e984e1e1ebe354c1b:log:88', 'hash': '0xa33f5928d2b1bc02b0f0959fffc535ee8f96ad4204c9778e984e1e1ebe354c1b', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 608.6089826984048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20fe2575373246b646', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:11:04.000Z'}}, {'blockNum': '0x4bff38', 'uniqueId': '0xa33f5928d2b1bc02b0f0959fffc535ee8f96ad4204c9778e984e1e1ebe354c1b:log:90', 'hash': '0xa33f5928d2b1bc02b0f0959fffc535ee8f96ad4204c9778e984e1e1ebe354c1b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 608.6089826984048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20fe2575373246b646', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:11:04.000Z'}}, {'blockNum': '0x4bff3d', 'uniqueId': '0x4068b5df381e71e2a0fca752f6b9385dc4ffdb97bd7a6d1d40e2bf01a5a658d8:log:40', 'hash': '0x4068b5df381e71e2a0fca752f6b9385dc4ffdb97bd7a6d1d40e2bf01a5a658d8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 276.918585252068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f0304721bf53c9524', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:11:44.000Z'}}, {'blockNum': '0x4bff3d', 'uniqueId': '0x4068b5df381e71e2a0fca752f6b9385dc4ffdb97bd7a6d1d40e2bf01a5a658d8:log:43', 'hash': '0x4068b5df381e71e2a0fca752f6b9385dc4ffdb97bd7a6d1d40e2bf01a5a658d8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 276.918585252068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f0304721bf53c9524', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:11:44.000Z'}}, {'blockNum': '0x4bff40', 'uniqueId': '0xbc8b0656ca660f0c02a0ad97434e9ce55fc36e549e1c3a6d1a993d82e1542a8b:log:97', 'hash': '0xbc8b0656ca660f0c02a0ad97434e9ce55fc36e549e1c3a6d1a993d82e1542a8b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.68193274011668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081d410cc73c90fa71', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:12:41.000Z'}}, {'blockNum': '0x4bff40', 'uniqueId': '0xbc8b0656ca660f0c02a0ad97434e9ce55fc36e549e1c3a6d1a993d82e1542a8b:log:100', 'hash': '0xbc8b0656ca660f0c02a0ad97434e9ce55fc36e549e1c3a6d1a993d82e1542a8b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 149.68193274011668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081d410cc73c90fa71', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:12:41.000Z'}}, {'blockNum': '0x4bff43', 'uniqueId': '0xb7dc07d91bcd3fdf42370f74068799db2659b989319dfd08423e97e903556cdc:log:28', 'hash': '0xb7dc07d91bcd3fdf42370f74068799db2659b989319dfd08423e97e903556cdc', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 98.51589544549047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05572ec4f2b5fb9d58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:12:54.000Z'}}, {'blockNum': '0x4bff43', 'uniqueId': '0xb7dc07d91bcd3fdf42370f74068799db2659b989319dfd08423e97e903556cdc:log:30', 'hash': '0xb7dc07d91bcd3fdf42370f74068799db2659b989319dfd08423e97e903556cdc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 98.51589544549047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05572ec4f2b5fb9d58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:12:54.000Z'}}, {'blockNum': '0x4bff43', 'uniqueId': '0xf765d35f248bd31cb1b62977a5f76e9b5db45cf1f7d67520c3742c17728c3860:log:49', 'hash': '0xf765d35f248bd31cb1b62977a5f76e9b5db45cf1f7d67520c3742c17728c3860', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 16.414510140009984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe3cc0e012957ab07', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:12:54.000Z'}}, {'blockNum': '0x4bff43', 'uniqueId': '0xf765d35f248bd31cb1b62977a5f76e9b5db45cf1f7d67520c3742c17728c3860:log:51', 'hash': '0xf765d35f248bd31cb1b62977a5f76e9b5db45cf1f7d67520c3742c17728c3860', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 16.414510140009984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe3cc0e012957ab07', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:12:54.000Z'}}, {'blockNum': '0x4bff43', 'uniqueId': '0xb34a50d10e139f8c1e930207e40d05f2448bb9a2abd53c0152033bc182e2d6e7:log:72', 'hash': '0xb34a50d10e139f8c1e930207e40d05f2448bb9a2abd53c0152033bc182e2d6e7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 79.03053797702461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0448c4df918091dea4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:12:54.000Z'}}, {'blockNum': '0x4bff43', 'uniqueId': '0xb34a50d10e139f8c1e930207e40d05f2448bb9a2abd53c0152033bc182e2d6e7:log:75', 'hash': '0xb34a50d10e139f8c1e930207e40d05f2448bb9a2abd53c0152033bc182e2d6e7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'value': 79.03053797702461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0448c4df918091dea4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:12:54.000Z'}}, {'blockNum': '0x4bff46', 'uniqueId': '0x06a7917fa44af673e34c54089630c00351897d2f480623092e736c787dbbe96e:log:9', 'hash': '0x06a7917fa44af673e34c54089630c00351897d2f480623092e736c787dbbe96e', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x1b80169e0230832311c2b34a300732a627243540', 'value': 2.90354801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284b79880c57a400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:13:42.000Z'}}, {'blockNum': '0x4bff4e', 'uniqueId': '0xbdd50aa7afea6abecdab624491ff745e7e1ef686625f5007c5c281145a044460:log:3', 'hash': '0xbdd50aa7afea6abecdab624491ff745e7e1ef686625f5007c5c281145a044460', 'from': '0xb3d96e75aa45f97ca747d45bd1d885c69b832c14', 'to': '0x94740e6762f81fefaa0ec1789bc5df9d2acdd339', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:14:17.000Z'}}, {'blockNum': '0x4bff50', 'uniqueId': '0x71e333f1abbd92ab1e8e082d3b980b09cb8a4e122c4a05a2bb5403d04750a880:log:93', 'hash': '0x71e333f1abbd92ab1e8e082d3b980b09cb8a4e122c4a05a2bb5403d04750a880', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 942.9390575356056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x331de87cec6363a34d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:15:14.000Z'}}, {'blockNum': '0x4bff50', 'uniqueId': '0x71e333f1abbd92ab1e8e082d3b980b09cb8a4e122c4a05a2bb5403d04750a880:log:96', 'hash': '0x71e333f1abbd92ab1e8e082d3b980b09cb8a4e122c4a05a2bb5403d04750a880', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 942.9390575356056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x331de87cec6363a34d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:15:14.000Z'}}, {'blockNum': '0x4bff50', 'uniqueId': '0x25a0466fcdb2944a0e040380df3081ea374ce2c667d39e61302ac97cea699071:log:113', 'hash': '0x25a0466fcdb2944a0e040380df3081ea374ce2c667d39e61302ac97cea699071', 'from': '0x5a6fc2de011d93842411aa5f91a0a4acd3feffde', 'to': '0x2ea38df81968758b95732fc317b428dccd40bf5b', 'value': 52.86, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02dd9471ef8b260000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:15:14.000Z'}}, {'blockNum': '0x4bff52', 'uniqueId': '0x81371b47870f64c634c3937166875b07b83d1f21512c72a9d33810c7db25edde:log:69', 'hash': '0x81371b47870f64c634c3937166875b07b83d1f21512c72a9d33810c7db25edde', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 82.40626814516848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04779de0455a5b1990', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:16:15.000Z'}}, {'blockNum': '0x4bff52', 'uniqueId': '0x81371b47870f64c634c3937166875b07b83d1f21512c72a9d33810c7db25edde:log:72', 'hash': '0x81371b47870f64c634c3937166875b07b83d1f21512c72a9d33810c7db25edde', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 82.40626814516848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04779de0455a5b1990', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:16:15.000Z'}}, {'blockNum': '0x4bff54', 'uniqueId': '0xcd971339e4dd0dd9e873d2457ef585523ca5e06ed01c1fd03ee8367b0d2b57cb:log:75', 'hash': '0xcd971339e4dd0dd9e873d2457ef585523ca5e06ed01c1fd03ee8367b0d2b57cb', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 8042.113095343142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b3f6bd3345f526a169', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:17:04.000Z'}}, {'blockNum': '0x4bff54', 'uniqueId': '0xcd971339e4dd0dd9e873d2457ef585523ca5e06ed01c1fd03ee8367b0d2b57cb:log:77', 'hash': '0xcd971339e4dd0dd9e873d2457ef585523ca5e06ed01c1fd03ee8367b0d2b57cb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 8042.113095343142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b3f6bd3345f526a169', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:17:04.000Z'}}, {'blockNum': '0x4bff55', 'uniqueId': '0xd9738d2fc567f4f069fc23ccde8027d24ae82c3311ae0047b0009a4b78ff629f:log:38', 'hash': '0xd9738d2fc567f4f069fc23ccde8027d24ae82c3311ae0047b0009a4b78ff629f', 'from': '0xa9aabbfa7d2f1a7e946186cdfe056c9693fe3841', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.344264089035764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c49ed2c0d767155', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:17:08.000Z'}}, {'blockNum': '0x4bff55', 'uniqueId': '0xd9738d2fc567f4f069fc23ccde8027d24ae82c3311ae0047b0009a4b78ff629f:log:40', 'hash': '0xd9738d2fc567f4f069fc23ccde8027d24ae82c3311ae0047b0009a4b78ff629f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4.344264089035764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c49ed2c0d767155', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:17:08.000Z'}}, {'blockNum': '0x4bff58', 'uniqueId': '0xbff144ddefe7f292893e1006ca2c0de2e511a658b9625e7d04c5c7e7ea6cf849:log:50', 'hash': '0xbff144ddefe7f292893e1006ca2c0de2e511a658b9625e7d04c5c7e7ea6cf849', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 224.7060305207318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2e6c30370c4d8234', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:17:44.000Z'}}, {'blockNum': '0x4bff58', 'uniqueId': '0xbff144ddefe7f292893e1006ca2c0de2e511a658b9625e7d04c5c7e7ea6cf849:log:53', 'hash': '0xbff144ddefe7f292893e1006ca2c0de2e511a658b9625e7d04c5c7e7ea6cf849', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 224.7060305207318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2e6c30370c4d8234', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:17:44.000Z'}}, {'blockNum': '0x4bff5d', 'uniqueId': '0x04c66fba8730549b656754fe4236c8b28a8585d3ebaf20523549a9843fea47c4:log:120', 'hash': '0x04c66fba8730549b656754fe4236c8b28a8585d3ebaf20523549a9843fea47c4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1497.887074991487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51335be68f147b30d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:19:34.000Z'}}, {'blockNum': '0x4bff5d', 'uniqueId': '0x04c66fba8730549b656754fe4236c8b28a8585d3ebaf20523549a9843fea47c4:log:123', 'hash': '0x04c66fba8730549b656754fe4236c8b28a8585d3ebaf20523549a9843fea47c4', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1497.887074991487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51335be68f147b30d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:19:34.000Z'}}, {'blockNum': '0x4bff5e', 'uniqueId': '0xfb27a642b50358cf5d6761c0c6353ecf88c31c420faf9d91ea9694426d25d15c:log:88', 'hash': '0xfb27a642b50358cf5d6761c0c6353ecf88c31c420faf9d91ea9694426d25d15c', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1084.0167138401232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3ac3c101def2d134b8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:20:00.000Z'}}, {'blockNum': '0x4bff5e', 'uniqueId': '0xfb27a642b50358cf5d6761c0c6353ecf88c31c420faf9d91ea9694426d25d15c:log:90', 'hash': '0xfb27a642b50358cf5d6761c0c6353ecf88c31c420faf9d91ea9694426d25d15c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1084.0167138401232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3ac3c101def2d134b8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:20:00.000Z'}}, {'blockNum': '0x4bff61', 'uniqueId': '0x02dc0640e152fb29b8d8773f994fc910937eed75e5f437c2a8e233b450b0ad56:log:92', 'hash': '0x02dc0640e152fb29b8d8773f994fc910937eed75e5f437c2a8e233b450b0ad56', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2994436442849c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:21:13.000Z'}}, {'blockNum': '0x4bff61', 'uniqueId': '0x02dc0640e152fb29b8d8773f994fc910937eed75e5f437c2a8e233b450b0ad56:log:95', 'hash': '0x02dc0640e152fb29b8d8773f994fc910937eed75e5f437c2a8e233b450b0ad56', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2994436442849c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:21:13.000Z'}}, {'blockNum': '0x4bff61', 'uniqueId': '0x02dc0640e152fb29b8d8773f994fc910937eed75e5f437c2a8e233b450b0ad56:log:96', 'hash': '0x02dc0640e152fb29b8d8773f994fc910937eed75e5f437c2a8e233b450b0ad56', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2994436442849c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:21:13.000Z'}}, {'blockNum': '0x4bff62', 'uniqueId': '0x0c2fa6e48c32b6f36cfbc76c6a981e125e5d332158ca5b6faa06779b8120e9b9:log:50', 'hash': '0x0c2fa6e48c32b6f36cfbc76c6a981e125e5d332158ca5b6faa06779b8120e9b9', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7676.207850908328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a020c8a21bdf92a977', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:21:30.000Z'}}, {'blockNum': '0x4bff62', 'uniqueId': '0x0c2fa6e48c32b6f36cfbc76c6a981e125e5d332158ca5b6faa06779b8120e9b9:log:52', 'hash': '0x0c2fa6e48c32b6f36cfbc76c6a981e125e5d332158ca5b6faa06779b8120e9b9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 7676.207850908328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a020c8a21bdf92a977', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:21:30.000Z'}}, {'blockNum': '0x4bff62', 'uniqueId': '0x393be937f493b6614092e357e013416d09a17714998f5b4b4fa98e8bb400c1f7:log:102', 'hash': '0x393be937f493b6614092e357e013416d09a17714998f5b4b4fa98e8bb400c1f7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 464.8162277304664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19329ef86b3f859319', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:21:30.000Z'}}, {'blockNum': '0x4bff62', 'uniqueId': '0x393be937f493b6614092e357e013416d09a17714998f5b4b4fa98e8bb400c1f7:log:105', 'hash': '0x393be937f493b6614092e357e013416d09a17714998f5b4b4fa98e8bb400c1f7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 464.8162277304664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19329ef86b3f859319', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:21:30.000Z'}}, {'blockNum': '0x4bff63', 'uniqueId': '0x1478456552317083ff9040a7597035e29d6a9499fbd20c19994e3363f203955c:log:67', 'hash': '0x1478456552317083ff9040a7597035e29d6a9499fbd20c19994e3363f203955c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.9352481762038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0820c501d344a98e27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:21:43.000Z'}}, {'blockNum': '0x4bff63', 'uniqueId': '0x1478456552317083ff9040a7597035e29d6a9499fbd20c19994e3363f203955c:log:70', 'hash': '0x1478456552317083ff9040a7597035e29d6a9499fbd20c19994e3363f203955c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 149.9352481762038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0820c501d344a98e27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:21:43.000Z'}}, {'blockNum': '0x4bff68', 'uniqueId': '0x6b0d9cfe1f706f785a74117301a73febc58403bb51d83d647ae0bbdb996e1659:log:47', 'hash': '0x6b0d9cfe1f706f785a74117301a73febc58403bb51d83d647ae0bbdb996e1659', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 11.864093831192484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa4a5ba7b162197a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:22:41.000Z'}}, {'blockNum': '0x4bff68', 'uniqueId': '0x6b0d9cfe1f706f785a74117301a73febc58403bb51d83d647ae0bbdb996e1659:log:50', 'hash': '0x6b0d9cfe1f706f785a74117301a73febc58403bb51d83d647ae0bbdb996e1659', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 11.864093831192484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa4a5ba7b162197a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:22:41.000Z'}}, {'blockNum': '0x4bff6b', 'uniqueId': '0x5dc8017413497a2c58dd14e9b3987f76b54086cfb5cba8a795c75844f154dea0:log:8', 'hash': '0x5dc8017413497a2c58dd14e9b3987f76b54086cfb5cba8a795c75844f154dea0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3e2f13412ad0fb51632c08eb21638a482e7161d5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:24:08.000Z'}}, {'blockNum': '0x4bff6c', 'uniqueId': '0xb51b8a928bddf7663fc2762544f6d4d3680e87c979be0408df899105eb99a416:log:111', 'hash': '0xb51b8a928bddf7663fc2762544f6d4d3680e87c979be0408df899105eb99a416', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.9323686976699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0820bac6f46d8281b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:24:17.000Z'}}, {'blockNum': '0x4bff6c', 'uniqueId': '0xb51b8a928bddf7663fc2762544f6d4d3680e87c979be0408df899105eb99a416:log:114', 'hash': '0xb51b8a928bddf7663fc2762544f6d4d3680e87c979be0408df899105eb99a416', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 149.9323686976699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0820bac6f46d8281b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:24:17.000Z'}}, {'blockNum': '0x4bff6d', 'uniqueId': '0x0f899e3202c832fab41a88913b27c1ca49b3e0dcc96b75b07ea6e6850ffc1999:log:6', 'hash': '0x0f899e3202c832fab41a88913b27c1ca49b3e0dcc96b75b07ea6e6850ffc1999', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb4bd55b3d6c00c62ecd1dc63f374286b614b699c', 'value': 53.395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02e5012599e5fb8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:24:28.000Z'}}, {'blockNum': '0x4bff6d', 'uniqueId': '0x27895feadc65f24ba1e2c9b0c5dc5e5b8c381687555c2a856ddfd52725eed23e:log:153', 'hash': '0x27895feadc65f24ba1e2c9b0c5dc5e5b8c381687555c2a856ddfd52725eed23e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 13.643713097615471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xbd5834c658b6f4aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:24:28.000Z'}}, {'blockNum': '0x4bff6d', 'uniqueId': '0x27895feadc65f24ba1e2c9b0c5dc5e5b8c381687555c2a856ddfd52725eed23e:log:156', 'hash': '0x27895feadc65f24ba1e2c9b0c5dc5e5b8c381687555c2a856ddfd52725eed23e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 13.643713097615471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xbd5834c658b6f4aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:24:28.000Z'}}, {'blockNum': '0x4bff6e', 'uniqueId': '0xf76f469a86b51c310f4cbce99757c64083c1fa9fcd5854e88b4f9b162852969d:log:123', 'hash': '0xf76f469a86b51c310f4cbce99757c64083c1fa9fcd5854e88b4f9b162852969d', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 38.717819932370084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0219515417ba752531', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:24:31.000Z'}}, {'blockNum': '0x4bff6e', 'uniqueId': '0xf76f469a86b51c310f4cbce99757c64083c1fa9fcd5854e88b4f9b162852969d:log:126', 'hash': '0xf76f469a86b51c310f4cbce99757c64083c1fa9fcd5854e88b4f9b162852969d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 38.717819932370084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0219515417ba752531', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:24:31.000Z'}}, {'blockNum': '0x4bff71', 'uniqueId': '0xb85c44e73681f62efaa8e29ba58ec23442cbf8f2d7fce5fc0f9b985c5874f196:log:143', 'hash': '0xb85c44e73681f62efaa8e29ba58ec23442cbf8f2d7fce5fc0f9b985c5874f196', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 6.2687847877789595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56ff328d10effa1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:25:13.000Z'}}, {'blockNum': '0x4bff71', 'uniqueId': '0xb85c44e73681f62efaa8e29ba58ec23442cbf8f2d7fce5fc0f9b985c5874f196:log:146', 'hash': '0xb85c44e73681f62efaa8e29ba58ec23442cbf8f2d7fce5fc0f9b985c5874f196', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 6.2687847877789595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56ff328d10effa1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:25:13.000Z'}}, {'blockNum': '0x4bff7c', 'uniqueId': '0xec72c1221ad02bea9fdebdf3f6f2c1cdc76c49215eaa44a00460ce20894f48af:log:137', 'hash': '0xec72c1221ad02bea9fdebdf3f6f2c1cdc76c49215eaa44a00460ce20894f48af', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.9293461022377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0820b009eb9679794c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:27:06.000Z'}}, {'blockNum': '0x4bff7c', 'uniqueId': '0xec72c1221ad02bea9fdebdf3f6f2c1cdc76c49215eaa44a00460ce20894f48af:log:140', 'hash': '0xec72c1221ad02bea9fdebdf3f6f2c1cdc76c49215eaa44a00460ce20894f48af', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 149.9293461022377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0820b009eb9679794c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:27:06.000Z'}}, {'blockNum': '0x4bff86', 'uniqueId': '0x2a80fe060c75d8dbd3e6ad0822c8aa2b203e0d6ba8df12e51459fb9395ef68ce:log:60', 'hash': '0x2a80fe060c75d8dbd3e6ad0822c8aa2b203e0d6ba8df12e51459fb9395ef68ce', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 38.418805373150796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02152b03ef7185a5d7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:28:42.000Z'}}, {'blockNum': '0x4bff86', 'uniqueId': '0x2a80fe060c75d8dbd3e6ad0822c8aa2b203e0d6ba8df12e51459fb9395ef68ce:log:63', 'hash': '0x2a80fe060c75d8dbd3e6ad0822c8aa2b203e0d6ba8df12e51459fb9395ef68ce', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 38.418805373150796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02152b03ef7185a5d7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:28:42.000Z'}}, {'blockNum': '0x4bff87', 'uniqueId': '0x06fa342783649ce1cda76190032ab826059fc0902c34764293682bc77ccff932:log:36', 'hash': '0x06fa342783649ce1cda76190032ab826059fc0902c34764293682bc77ccff932', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 869.5375952621029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f23421be21d061c37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:28:54.000Z'}}, {'blockNum': '0x4bff87', 'uniqueId': '0x06fa342783649ce1cda76190032ab826059fc0902c34764293682bc77ccff932:log:39', 'hash': '0x06fa342783649ce1cda76190032ab826059fc0902c34764293682bc77ccff932', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 869.5375952621029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f23421be21d061c37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:28:54.000Z'}}, {'blockNum': '0x4bff89', 'uniqueId': '0x34d2fdffbd9b204309e9680301608925e0018eed85fa70f197a2c20217d7301b:log:26', 'hash': '0x34d2fdffbd9b204309e9680301608925e0018eed85fa70f197a2c20217d7301b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1.2892477335374641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11e453fba0fa5edd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:29:04.000Z'}}, {'blockNum': '0x4bff89', 'uniqueId': '0x34d2fdffbd9b204309e9680301608925e0018eed85fa70f197a2c20217d7301b:log:29', 'hash': '0x34d2fdffbd9b204309e9680301608925e0018eed85fa70f197a2c20217d7301b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb33f5f5172fce076e9355afcf2529982260b7a4b', 'value': 1.2892477335374641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11e453fba0fa5edd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:29:04.000Z'}}, {'blockNum': '0x4bff8b', 'uniqueId': '0xdc5abd71cf4cf6fbe98bcb5a626cffd6aa4a703d8b75ee1b66eae1bca036f8fe:log:166', 'hash': '0xdc5abd71cf4cf6fbe98bcb5a626cffd6aa4a703d8b75ee1b66eae1bca036f8fe', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.623689172502214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcaf1c7d2a0b87878', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:29:23.000Z'}}, {'blockNum': '0x4bff8b', 'uniqueId': '0xdc5abd71cf4cf6fbe98bcb5a626cffd6aa4a703d8b75ee1b66eae1bca036f8fe:log:169', 'hash': '0xdc5abd71cf4cf6fbe98bcb5a626cffd6aa4a703d8b75ee1b66eae1bca036f8fe', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 14.623689172502214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcaf1c7d2a0b87878', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:29:23.000Z'}}, {'blockNum': '0x4bff8e', 'uniqueId': '0x9e984deacc29678362c934b1c4b9127c2b34bf238621e21acc3cf30fd8dacaf0:log:54', 'hash': '0x9e984deacc29678362c934b1c4b9127c2b34bf238621e21acc3cf30fd8dacaf0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.8191760250796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1040d3b015b12f72ae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:30:14.000Z'}}, {'blockNum': '0x4bff8e', 'uniqueId': '0x9e984deacc29678362c934b1c4b9127c2b34bf238621e21acc3cf30fd8dacaf0:log:57', 'hash': '0x9e984deacc29678362c934b1c4b9127c2b34bf238621e21acc3cf30fd8dacaf0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 299.8191760250796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1040d3b015b12f72ae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:30:14.000Z'}}, {'blockNum': '0x4bff93', 'uniqueId': '0xee58afb0d57a4fe501865f7c8a07dfcbeb166530bdfdee38dcf2c61452b8c97b:log:69', 'hash': '0xee58afb0d57a4fe501865f7c8a07dfcbeb166530bdfdee38dcf2c61452b8c97b', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1509.1331379553371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51cf6df13d86721d50', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:31:18.000Z'}}, {'blockNum': '0x4bff93', 'uniqueId': '0xee58afb0d57a4fe501865f7c8a07dfcbeb166530bdfdee38dcf2c61452b8c97b:log:71', 'hash': '0xee58afb0d57a4fe501865f7c8a07dfcbeb166530bdfdee38dcf2c61452b8c97b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1509.1331379553371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51cf6df13d86721d50', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:31:18.000Z'}}, {'blockNum': '0x4bff97', 'uniqueId': '0x1e2493159ff6d440ffc19fa4abbb75267229c703b6e7d6d00bc0bc22335c6ab1:log:152', 'hash': '0x1e2493159ff6d440ffc19fa4abbb75267229c703b6e7d6d00bc0bc22335c6ab1', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 120.41120606475184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06870a89f331e4f5c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:31:41.000Z'}}, {'blockNum': '0x4bff97', 'uniqueId': '0x1e2493159ff6d440ffc19fa4abbb75267229c703b6e7d6d00bc0bc22335c6ab1:log:155', 'hash': '0x1e2493159ff6d440ffc19fa4abbb75267229c703b6e7d6d00bc0bc22335c6ab1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 120.41120606475184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06870a89f331e4f5c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:31:41.000Z'}}, {'blockNum': '0x4bffa3', 'uniqueId': '0xe159ccebfafe3bb58ea3c11ba655c7cea2e5e9d7646d916a382eee47a7a6fbde:log:145', 'hash': '0xe159ccebfafe3bb58ea3c11ba655c7cea2e5e9d7646d916a382eee47a7a6fbde', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5917.633984221049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0140cbab33ae332e2652', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:34:15.000Z'}}, {'blockNum': '0x4bffa3', 'uniqueId': '0xe159ccebfafe3bb58ea3c11ba655c7cea2e5e9d7646d916a382eee47a7a6fbde:log:147', 'hash': '0xe159ccebfafe3bb58ea3c11ba655c7cea2e5e9d7646d916a382eee47a7a6fbde', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5917.633984221049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0140cbab33ae332e2652', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:34:15.000Z'}}, {'blockNum': '0x4bffb1', 'uniqueId': '0x1e0a44b36f72488e232eeacbfb45bf7a86beececa4176730edac2f58d58d30fc:log:3', 'hash': '0x1e0a44b36f72488e232eeacbfb45bf7a86beececa4176730edac2f58d58d30fc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x09122e1e318164e4e3a98788b3b9068eeec3489e', 'value': 8.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7492cb7eb1480000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:37:49.000Z'}}, {'blockNum': '0x4bffbc', 'uniqueId': '0x90fa7db04b7189119e24a159a285e68f66aa6ca42ff896e5e27a0f165be02f47:log:145', 'hash': '0x90fa7db04b7189119e24a159a285e68f66aa6ca42ff896e5e27a0f165be02f47', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 30.007772838232416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a07106688b755c07', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:40:00.000Z'}}, {'blockNum': '0x4bffbc', 'uniqueId': '0x90fa7db04b7189119e24a159a285e68f66aa6ca42ff896e5e27a0f165be02f47:log:148', 'hash': '0x90fa7db04b7189119e24a159a285e68f66aa6ca42ff896e5e27a0f165be02f47', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 30.007772838232416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a07106688b755c07', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:40:00.000Z'}}, {'blockNum': '0x4bffbe', 'uniqueId': '0x4d2afd1b3e01ad7beaf1f2bc716ccdca9caf8b3882040d74f562ed9248df5253:log:5', 'hash': '0x4d2afd1b3e01ad7beaf1f2bc716ccdca9caf8b3882040d74f562ed9248df5253', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 12.5659146203046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xae6318c52524aa4a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:40:44.000Z'}}, {'blockNum': '0x4bffbe', 'uniqueId': '0x4d2afd1b3e01ad7beaf1f2bc716ccdca9caf8b3882040d74f562ed9248df5253:log:8', 'hash': '0x4d2afd1b3e01ad7beaf1f2bc716ccdca9caf8b3882040d74f562ed9248df5253', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 12.5659146203046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xae6318c52524aa4a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:40:44.000Z'}}, {'blockNum': '0x4bffc7', 'uniqueId': '0x0bfe98abd94b225c28fe6a91e7bf8998e906fbd56436a6a8a05d35bf0d8b26bb:log:76', 'hash': '0x0bfe98abd94b225c28fe6a91e7bf8998e906fbd56436a6a8a05d35bf0d8b26bb', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46791fc84e07d00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:43:03.000Z'}}, {'blockNum': '0x4bffc7', 'uniqueId': '0x0bfe98abd94b225c28fe6a91e7bf8998e906fbd56436a6a8a05d35bf0d8b26bb:log:79', 'hash': '0x0bfe98abd94b225c28fe6a91e7bf8998e906fbd56436a6a8a05d35bf0d8b26bb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46791fc84e07d00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:43:03.000Z'}}, {'blockNum': '0x4bffc7', 'uniqueId': '0x0bfe98abd94b225c28fe6a91e7bf8998e906fbd56436a6a8a05d35bf0d8b26bb:log:80', 'hash': '0x0bfe98abd94b225c28fe6a91e7bf8998e906fbd56436a6a8a05d35bf0d8b26bb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46791fc84e07d00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:43:03.000Z'}}, {'blockNum': '0x4bffc7', 'uniqueId': '0xfef063ab051c36b58ee14536c03e78fdbd4a3a4a5845f48d1eb3d284fc6be949:log:107', 'hash': '0xfef063ab051c36b58ee14536c03e78fdbd4a3a4a5845f48d1eb3d284fc6be949', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1.5006151549374678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d34188669d937a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:43:03.000Z'}}, {'blockNum': '0x4bffc7', 'uniqueId': '0xfef063ab051c36b58ee14536c03e78fdbd4a3a4a5845f48d1eb3d284fc6be949:log:110', 'hash': '0xfef063ab051c36b58ee14536c03e78fdbd4a3a4a5845f48d1eb3d284fc6be949', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1.5006151549374678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d34188669d937a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:43:03.000Z'}}, {'blockNum': '0x4bffd2', 'uniqueId': '0xb4fb0a4ac196c8cca89250fe06588e3dcd72ce4f88e7768d92302dc9af873c8d:log:31', 'hash': '0xb4fb0a4ac196c8cca89250fe06588e3dcd72ce4f88e7768d92302dc9af873c8d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 255.10069101859352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd43bb6e667f2dc91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:44:51.000Z'}}, {'blockNum': '0x4bffd2', 'uniqueId': '0xb4fb0a4ac196c8cca89250fe06588e3dcd72ce4f88e7768d92302dc9af873c8d:log:34', 'hash': '0xb4fb0a4ac196c8cca89250fe06588e3dcd72ce4f88e7768d92302dc9af873c8d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 255.10069101859352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd43bb6e667f2dc91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:44:51.000Z'}}, {'blockNum': '0x4bffd2', 'uniqueId': '0xf85f1d6192f61bced0d8ab86ab6525ea211231ab6226173299ca76b1e20b5ff4:log:166', 'hash': '0xf85f1d6192f61bced0d8ab86ab6525ea211231ab6226173299ca76b1e20b5ff4', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 72.78285317908842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03f210a358a6f9bbc0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:44:51.000Z'}}, {'blockNum': '0x4bffd2', 'uniqueId': '0xf85f1d6192f61bced0d8ab86ab6525ea211231ab6226173299ca76b1e20b5ff4:log:168', 'hash': '0xf85f1d6192f61bced0d8ab86ab6525ea211231ab6226173299ca76b1e20b5ff4', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 72.78285317908842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03f210a358a6f9bbc0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:44:51.000Z'}}, {'blockNum': '0x4bffd5', 'uniqueId': '0x0ef6b30679d0ca314f514d6a26699a3a5332c9318a014e66592b82b86b8d6dc9:log:13', 'hash': '0x0ef6b30679d0ca314f514d6a26699a3a5332c9318a014e66592b82b86b8d6dc9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2175.563739717604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75f0030ea4782ff060', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:45:29.000Z'}}, {'blockNum': '0x4bffd5', 'uniqueId': '0x0ef6b30679d0ca314f514d6a26699a3a5332c9318a014e66592b82b86b8d6dc9:log:16', 'hash': '0x0ef6b30679d0ca314f514d6a26699a3a5332c9318a014e66592b82b86b8d6dc9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 2175.563739717604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75f0030ea4782ff060', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:45:29.000Z'}}, {'blockNum': '0x4bffd8', 'uniqueId': '0xa3ed1e283df797a204a82f6f1193263271b82621bc9c5648290a8f1c55d209b5:log:14', 'hash': '0xa3ed1e283df797a204a82f6f1193263271b82621bc9c5648290a8f1c55d209b5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 14998.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032d109cd71232c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:47:38.000Z'}}, {'blockNum': '0x4bffd8', 'uniqueId': '0x70229a6f9ae8ac6148cfb9f09ce487646bc8c2eb97027a27da6bd431b0ed21bd:log:55', 'hash': '0x70229a6f9ae8ac6148cfb9f09ce487646bc8c2eb97027a27da6bd431b0ed21bd', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x54bb3831a77868c7a117c5b77429a53fbc6255b2', 'value': 115.7428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x064641075e4d150000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:47:38.000Z'}}, {'blockNum': '0x4bffe5', 'uniqueId': '0xa03a3249d9ef8b4105f2c2beb1a98171bb16b4710dc9684508d0c6b4f2d0afae:log:12', 'hash': '0xa03a3249d9ef8b4105f2c2beb1a98171bb16b4710dc9684508d0c6b4f2d0afae', 'from': '0x642ae7eb0215e6459c5420a874452d723cde5acf', 'to': '0x46f4b65922e4326669f17137dd9f3810bea1a472', 'value': 4.0386423544124e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24bb326dd93c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:50:52.000Z'}}, {'blockNum': '0x4bffe7', 'uniqueId': '0x12a9564a5a049a4aafb1dbdd572b5280383e85ed09dd069cce296e86ad87403d:log:133', 'hash': '0x12a9564a5a049a4aafb1dbdd572b5280383e85ed09dd069cce296e86ad87403d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1624.5546024376624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5811395ba86ad08936', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:51:10.000Z'}}, {'blockNum': '0x4bffe7', 'uniqueId': '0x12a9564a5a049a4aafb1dbdd572b5280383e85ed09dd069cce296e86ad87403d:log:136', 'hash': '0x12a9564a5a049a4aafb1dbdd572b5280383e85ed09dd069cce296e86ad87403d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 1624.5546024376624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5811395ba86ad08936', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:51:10.000Z'}}, {'blockNum': '0x4bffe7', 'uniqueId': '0xd2d6296e0dec718ec2c56f1f86796ed07c73e92af9f9d26b58a089deebbf142c:log:159', 'hash': '0xd2d6296e0dec718ec2c56f1f86796ed07c73e92af9f9d26b58a089deebbf142c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.98924400366917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x082184d6be8816b19f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:51:10.000Z'}}, {'blockNum': '0x4bffe7', 'uniqueId': '0xd2d6296e0dec718ec2c56f1f86796ed07c73e92af9f9d26b58a089deebbf142c:log:162', 'hash': '0xd2d6296e0dec718ec2c56f1f86796ed07c73e92af9f9d26b58a089deebbf142c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 149.98924400366917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x082184d6be8816b19f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:51:10.000Z'}}, {'blockNum': '0x4bffe8', 'uniqueId': '0x4381e1912201161c3a1c640576216eac6936bc3e12843f7d04ee85c5dd99fa7a:log:75', 'hash': '0x4381e1912201161c3a1c640576216eac6936bc3e12843f7d04ee85c5dd99fa7a', 'from': '0x54bb3831a77868c7a117c5b77429a53fbc6255b2', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 115.7428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x064641075e4d150000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:52:04.000Z'}}, {'blockNum': '0x4bffef', 'uniqueId': '0x1ff60edfdb59200047051a77f141bba3aacabab66a4bbeb2493132518ef9db03:log:209', 'hash': '0x1ff60edfdb59200047051a77f141bba3aacabab66a4bbeb2493132518ef9db03', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 460.96528955058994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18fd2db08c27ffba04', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:53:14.000Z'}}, {'blockNum': '0x4bffef', 'uniqueId': '0x1ff60edfdb59200047051a77f141bba3aacabab66a4bbeb2493132518ef9db03:log:212', 'hash': '0x1ff60edfdb59200047051a77f141bba3aacabab66a4bbeb2493132518ef9db03', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 460.96528955058994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18fd2db08c27ffba04', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:53:14.000Z'}}, {'blockNum': '0x4bfff5', 'uniqueId': '0x1d27485d81ab28e7522cafa06dbf4cb1a1068339774d1286007d8329596158f7:log:63', 'hash': '0x1d27485d81ab28e7522cafa06dbf4cb1a1068339774d1286007d8329596158f7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2496.4921457410587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8755c9cb91b884dd04', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:54:47.000Z'}}, {'blockNum': '0x4bfff5', 'uniqueId': '0x1d27485d81ab28e7522cafa06dbf4cb1a1068339774d1286007d8329596158f7:log:66', 'hash': '0x1d27485d81ab28e7522cafa06dbf4cb1a1068339774d1286007d8329596158f7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 2496.4921457410587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8755c9cb91b884dd04', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:54:47.000Z'}}, {'blockNum': '0x4bfffb', 'uniqueId': '0x32f7e957329d688ebcc151405cc1c471f8e0fd59e707dd4b0014b48a6202e3ed:log:153', 'hash': '0x32f7e957329d688ebcc151405cc1c471f8e0fd59e707dd4b0014b48a6202e3ed', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 284.87218680065604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f71655093e1d2d9fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:56:00.000Z'}}, {'blockNum': '0x4bfffb', 'uniqueId': '0x32f7e957329d688ebcc151405cc1c471f8e0fd59e707dd4b0014b48a6202e3ed:log:156', 'hash': '0x32f7e957329d688ebcc151405cc1c471f8e0fd59e707dd4b0014b48a6202e3ed', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 284.87218680065604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f71655093e1d2d9fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:56:00.000Z'}}, {'blockNum': '0x4bfffd', 'uniqueId': '0x976c0e35f8b2138be2d4e308687bc7f05ee4a22657b8ed6dd3edfd820977bf87:log:15', 'hash': '0x976c0e35f8b2138be2d4e308687bc7f05ee4a22657b8ed6dd3edfd820977bf87', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 319.4951874377254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1151e2ec377077fa67', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:56:08.000Z'}}, {'blockNum': '0x4bfffd', 'uniqueId': '0x976c0e35f8b2138be2d4e308687bc7f05ee4a22657b8ed6dd3edfd820977bf87:log:18', 'hash': '0x976c0e35f8b2138be2d4e308687bc7f05ee4a22657b8ed6dd3edfd820977bf87', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 319.4951874377254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1151e2ec377077fa67', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:56:08.000Z'}}, {'blockNum': '0x4c0001', 'uniqueId': '0x4817942fce108d67d29eeca9bc187aa79d7d6feba8b6e1773e1207d9610c125e:log:2', 'hash': '0x4817942fce108d67d29eeca9bc187aa79d7d6feba8b6e1773e1207d9610c125e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0bf5fd3d657b40cca170fdd2beb458bbb3e14ff5', 'value': 421.177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16d5014a0234b28000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:57:12.000Z'}}, {'blockNum': '0x4c0001', 'uniqueId': '0x72dce9b39cd7a247bb93ca9cf1c38c433c532b006ca9e6c9c07bf1a155420eaa:log:15', 'hash': '0x72dce9b39cd7a247bb93ca9cf1c38c433c532b006ca9e6c9c07bf1a155420eaa', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x43741f41faeb5638389884931bb463cbf9ebcec3', 'value': 1.82396754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x195008d0578b0800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:57:12.000Z'}}, {'blockNum': '0x4c0001', 'uniqueId': '0xabba24edafafe29ebcfe86535a9429896f2ca458b5949a06d2947b7e6bea5c33:log:80', 'hash': '0xabba24edafafe29ebcfe86535a9429896f2ca458b5949a06d2947b7e6bea5c33', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7.44633796933661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6756b4ee43cfed69', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:57:12.000Z'}}, {'blockNum': '0x4c0001', 'uniqueId': '0xabba24edafafe29ebcfe86535a9429896f2ca458b5949a06d2947b7e6bea5c33:log:82', 'hash': '0xabba24edafafe29ebcfe86535a9429896f2ca458b5949a06d2947b7e6bea5c33', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 7.44633796933661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6756b4ee43cfed69', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:57:12.000Z'}}, {'blockNum': '0x4c0012', 'uniqueId': '0xaaabcfb74c6ddec3e1f80e856e372aa1863eaec41a0a601a447ee1f1a2aacc47:log:45', 'hash': '0xaaabcfb74c6ddec3e1f80e856e372aa1863eaec41a0a601a447ee1f1a2aacc47', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5994.852349111682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0144fb49f16d95dcc0ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:01:09.000Z'}}, {'blockNum': '0x4c0012', 'uniqueId': '0xaaabcfb74c6ddec3e1f80e856e372aa1863eaec41a0a601a447ee1f1a2aacc47:log:48', 'hash': '0xaaabcfb74c6ddec3e1f80e856e372aa1863eaec41a0a601a447ee1f1a2aacc47', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 5994.852349111682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0144fb49f16d95dcc0ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:01:09.000Z'}}, {'blockNum': '0x4c0013', 'uniqueId': '0xc46c36b9707d2b1d2b7157ec04699299d48f23c19a5b84bcfbb13a243ccd0b95:log:1', 'hash': '0xc46c36b9707d2b1d2b7157ec04699299d48f23c19a5b84bcfbb13a243ccd0b95', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3eb1ffa8206eaac6162446f8e89d6a4d619c82e4', 'value': 38.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0214e8348c4f000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:01:55.000Z'}}, {'blockNum': '0x4c0026', 'uniqueId': '0x4dce77be07be968487dff2c84fe9370c83658fa7ad9260fdff37568a29714165:log:82', 'hash': '0x4dce77be07be968487dff2c84fe9370c83658fa7ad9260fdff37568a29714165', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 164.79819084529632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08ef08c96f80eb1418', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:07:08.000Z'}}, {'blockNum': '0x4c0026', 'uniqueId': '0x4dce77be07be968487dff2c84fe9370c83658fa7ad9260fdff37568a29714165:log:85', 'hash': '0x4dce77be07be968487dff2c84fe9370c83658fa7ad9260fdff37568a29714165', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 164.79819084529632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08ef08c96f80eb1418', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:07:08.000Z'}}, {'blockNum': '0x4c002b', 'uniqueId': '0xc66d6990eb3fd0f3b3d446a4a613c521b0ee359ddddc22aca081ebbd2a8190bb:log:129', 'hash': '0xc66d6990eb3fd0f3b3d446a4a613c521b0ee359ddddc22aca081ebbd2a8190bb', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 21.539345814577143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x012aeb20e5e42ad994', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:07:38.000Z'}}, {'blockNum': '0x4c002b', 'uniqueId': '0xc66d6990eb3fd0f3b3d446a4a613c521b0ee359ddddc22aca081ebbd2a8190bb:log:131', 'hash': '0xc66d6990eb3fd0f3b3d446a4a613c521b0ee359ddddc22aca081ebbd2a8190bb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 21.539345814577143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x012aeb20e5e42ad994', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:07:38.000Z'}}, {'blockNum': '0x4c002f', 'uniqueId': '0xc4ca6d0ea0b69318faf3a69b9df8782b6dd75e854ee648dc21268fa4b1b1ac32:log:76', 'hash': '0xc4ca6d0ea0b69318faf3a69b9df8782b6dd75e854ee648dc21268fa4b1b1ac32', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 121.91472308439583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x069be81ab69f8749f6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:09:12.000Z'}}, {'blockNum': '0x4c002f', 'uniqueId': '0xc4ca6d0ea0b69318faf3a69b9df8782b6dd75e854ee648dc21268fa4b1b1ac32:log:79', 'hash': '0xc4ca6d0ea0b69318faf3a69b9df8782b6dd75e854ee648dc21268fa4b1b1ac32', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb018af916ed0116404537d1238b18988d652733a', 'value': 121.91472308439583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x069be81ab69f8749f6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:09:12.000Z'}}, {'blockNum': '0x4c002f', 'uniqueId': '0x5a5aa6115cdcc2da48cb8f3e858996fba7b00a73c38288db65e2fa0878f91364:log:97', 'hash': '0x5a5aa6115cdcc2da48cb8f3e858996fba7b00a73c38288db65e2fa0878f91364', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7.490661030569074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x67f42c8523ee5d3d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:09:12.000Z'}}, {'blockNum': '0x4c002f', 'uniqueId': '0x5a5aa6115cdcc2da48cb8f3e858996fba7b00a73c38288db65e2fa0878f91364:log:100', 'hash': '0x5a5aa6115cdcc2da48cb8f3e858996fba7b00a73c38288db65e2fa0878f91364', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 7.490661030569074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x67f42c8523ee5d3d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:09:12.000Z'}}, {'blockNum': '0x4c0032', 'uniqueId': '0x0ab8869bf73903c3e740f92dde8cddddd3d7c067b4943ea34482379618a90efa:log:11', 'hash': '0x0ab8869bf73903c3e740f92dde8cddddd3d7c067b4943ea34482379618a90efa', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 179.21235066304578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09b7122b6b9995b716', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:09:25.000Z'}}, {'blockNum': '0x4c0032', 'uniqueId': '0x0ab8869bf73903c3e740f92dde8cddddd3d7c067b4943ea34482379618a90efa:log:13', 'hash': '0x0ab8869bf73903c3e740f92dde8cddddd3d7c067b4943ea34482379618a90efa', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 179.21235066304578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09b7122b6b9995b716', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:09:25.000Z'}}, {'blockNum': '0x4c0037', 'uniqueId': '0xbd6a044eca5ab96a3d723b0b7aa21006817c4615d6dbff781f7154e3d60c419b:log:75', 'hash': '0xbd6a044eca5ab96a3d723b0b7aa21006817c4615d6dbff781f7154e3d60c419b', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 472.9077739835177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19a2e9eadd80499ab0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:10:42.000Z'}}, {'blockNum': '0x4c0037', 'uniqueId': '0xbd6a044eca5ab96a3d723b0b7aa21006817c4615d6dbff781f7154e3d60c419b:log:77', 'hash': '0xbd6a044eca5ab96a3d723b0b7aa21006817c4615d6dbff781f7154e3d60c419b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 472.9077739835177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19a2e9eadd80499ab0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:10:42.000Z'}}, {'blockNum': '0x4c0038', 'uniqueId': '0x09e58a4df25af2e4eb1baa0b85eca035bab405b433d862cfaf6eb4536fa5b859:log:53', 'hash': '0x09e58a4df25af2e4eb1baa0b85eca035bab405b433d862cfaf6eb4536fa5b859', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.82341766058727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081f37b490564a7fd0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:11:01.000Z'}}, {'blockNum': '0x4c0038', 'uniqueId': '0x09e58a4df25af2e4eb1baa0b85eca035bab405b433d862cfaf6eb4536fa5b859:log:56', 'hash': '0x09e58a4df25af2e4eb1baa0b85eca035bab405b433d862cfaf6eb4536fa5b859', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 149.82341766058727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081f37b490564a7fd0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:11:01.000Z'}}, {'blockNum': '0x4c0039', 'uniqueId': '0x2074768659cfa06e989ed8939da7a62b4bf8ddfb0b8cf1dd9b74282f9cc148ce:log:8', 'hash': '0x2074768659cfa06e989ed8939da7a62b4bf8ddfb0b8cf1dd9b74282f9cc148ce', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xc856faef18f6677b94dfea8ba0437f8c05365e81', 'value': 5.11032912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46eb89424aef4000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:11:10.000Z'}}, {'blockNum': '0x4c003b', 'uniqueId': '0xa2eb047a74e7e276006aa345bd337d74c211c4ebbbd1a20dc33a6342a7935a9e:log:139', 'hash': '0xa2eb047a74e7e276006aa345bd337d74c211c4ebbbd1a20dc33a6342a7935a9e', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 144.01916450602462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07ceaadb126e24ed4e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:11:20.000Z'}}, {'blockNum': '0x4c003b', 'uniqueId': '0xa2eb047a74e7e276006aa345bd337d74c211c4ebbbd1a20dc33a6342a7935a9e:log:141', 'hash': '0xa2eb047a74e7e276006aa345bd337d74c211c4ebbbd1a20dc33a6342a7935a9e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 144.01916450602462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07ceaadb126e24ed4e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:11:20.000Z'}}, {'blockNum': '0x4c003e', 'uniqueId': '0x50871de8e144bdee738635349be0d9dc4f6edd9edc34aa900feb8c9eb9910edc:log:46', 'hash': '0x50871de8e144bdee738635349be0d9dc4f6edd9edc34aa900feb8c9eb9910edc', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 282.46552570345824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f4fff230f909975b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:11:38.000Z'}}, {'blockNum': '0x4c003e', 'uniqueId': '0x50871de8e144bdee738635349be0d9dc4f6edd9edc34aa900feb8c9eb9910edc:log:48', 'hash': '0x50871de8e144bdee738635349be0d9dc4f6edd9edc34aa900feb8c9eb9910edc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 282.46552570345824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f4fff230f909975b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:11:38.000Z'}}, {'blockNum': '0x4c0044', 'uniqueId': '0x5f51fa3ab271811f05e36e42749438c2248dd13173cab06b695e81802705b1e3:log:80', 'hash': '0x5f51fa3ab271811f05e36e42749438c2248dd13173cab06b695e81802705b1e3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.8283373532816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081f492eff8dbda363', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:13:14.000Z'}}, {'blockNum': '0x4c0044', 'uniqueId': '0x5f51fa3ab271811f05e36e42749438c2248dd13173cab06b695e81802705b1e3:log:83', 'hash': '0x5f51fa3ab271811f05e36e42749438c2248dd13173cab06b695e81802705b1e3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 149.8283373532816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081f492eff8dbda363', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:13:14.000Z'}}, {'blockNum': '0x4c004d', 'uniqueId': '0x003b933f8abe7741baff929f44aabd9e56587666a8f90b754e9757184d68b24d:log:22', 'hash': '0x003b933f8abe7741baff929f44aabd9e56587666a8f90b754e9757184d68b24d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 235.21013225830447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cc03241179ce2cfe9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:14:35.000Z'}}, {'blockNum': '0x4c004d', 'uniqueId': '0x003b933f8abe7741baff929f44aabd9e56587666a8f90b754e9757184d68b24d:log:25', 'hash': '0x003b933f8abe7741baff929f44aabd9e56587666a8f90b754e9757184d68b24d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 235.21013225830447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cc03241179ce2cfe9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:14:35.000Z'}}, {'blockNum': '0x4c004f', 'uniqueId': '0x513fc0f7d89de87fb16c075e3c49ce7f8f718ede3ca12279d602b83b799be31b:log:28', 'hash': '0x513fc0f7d89de87fb16c075e3c49ce7f8f718ede3ca12279d602b83b799be31b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 139.33407288739588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x078da61111499e35ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:14:44.000Z'}}, {'blockNum': '0x4c004f', 'uniqueId': '0x513fc0f7d89de87fb16c075e3c49ce7f8f718ede3ca12279d602b83b799be31b:log:31', 'hash': '0x513fc0f7d89de87fb16c075e3c49ce7f8f718ede3ca12279d602b83b799be31b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 139.33407288739588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x078da61111499e35ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:14:44.000Z'}}, {'blockNum': '0x4c0052', 'uniqueId': '0x4070b46b3d3a2f41284b508172f77ade2fc56f748f59d739c554508ff120e03a:log:72', 'hash': '0x4070b46b3d3a2f41284b508172f77ade2fc56f748f59d739c554508ff120e03a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 35.56620621308668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ed948c1ceb52938d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:15:39.000Z'}}, {'blockNum': '0x4c0052', 'uniqueId': '0x4070b46b3d3a2f41284b508172f77ade2fc56f748f59d739c554508ff120e03a:log:75', 'hash': '0x4070b46b3d3a2f41284b508172f77ade2fc56f748f59d739c554508ff120e03a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 35.56620621308668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ed948c1ceb52938d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:15:39.000Z'}}, {'blockNum': '0x4c0052', 'uniqueId': '0x9be16a339ce76e438256466db529f685a855122db35cb5c4a8d6d56146cc22c3:log:109', 'hash': '0x9be16a339ce76e438256466db529f685a855122db35cb5c4a8d6d56146cc22c3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 449.4471497526527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185d55096d4ea8c1fd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:15:39.000Z'}}, {'blockNum': '0x4c0052', 'uniqueId': '0x9be16a339ce76e438256466db529f685a855122db35cb5c4a8d6d56146cc22c3:log:112', 'hash': '0x9be16a339ce76e438256466db529f685a855122db35cb5c4a8d6d56146cc22c3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'value': 449.4471497526527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185d55096d4ea8c1fd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:15:39.000Z'}}, {'blockNum': '0x4c005e', 'uniqueId': '0xe9870fb43627fcda8c464d195048b96f3d6d8529fdc6cc73ca81baf9a70cbb5a:log:75', 'hash': '0xe9870fb43627fcda8c464d195048b96f3d6d8529fdc6cc73ca81baf9a70cbb5a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 34.45662532968279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01de2e862da6782a34', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:19:06.000Z'}}, {'blockNum': '0x4c005e', 'uniqueId': '0xe9870fb43627fcda8c464d195048b96f3d6d8529fdc6cc73ca81baf9a70cbb5a:log:78', 'hash': '0xe9870fb43627fcda8c464d195048b96f3d6d8529fdc6cc73ca81baf9a70cbb5a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 34.45662532968279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01de2e862da6782a34', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:19:06.000Z'}}, {'blockNum': '0x4c005e', 'uniqueId': '0x653a7c45b454712f2a12242e7f78338a178dbf7fe87779d88ea42e85fea62545:log:103', 'hash': '0x653a7c45b454712f2a12242e7f78338a178dbf7fe87779d88ea42e85fea62545', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 404.4802830361955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15ed4aa2649de3d5f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:19:06.000Z'}}, {'blockNum': '0x4c005e', 'uniqueId': '0x653a7c45b454712f2a12242e7f78338a178dbf7fe87779d88ea42e85fea62545:log:106', 'hash': '0x653a7c45b454712f2a12242e7f78338a178dbf7fe87779d88ea42e85fea62545', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 404.4802830361955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15ed4aa2649de3d5f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:19:06.000Z'}}, {'blockNum': '0x4c005f', 'uniqueId': '0xaf9cf150e9c1fe2e56f76924be2ee0d1b2d9133c0e98f11cc3ba01f15cf978c6:log:48', 'hash': '0xaf9cf150e9c1fe2e56f76924be2ee0d1b2d9133c0e98f11cc3ba01f15cf978c6', 'from': '0xf3ed5b15618494ddbd0a57b3bca8b2686ac0bc04', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 757.8734169642611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29159b4157f24914a4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:19:24.000Z'}}, {'blockNum': '0x4c005f', 'uniqueId': '0xaf9cf150e9c1fe2e56f76924be2ee0d1b2d9133c0e98f11cc3ba01f15cf978c6:log:50', 'hash': '0xaf9cf150e9c1fe2e56f76924be2ee0d1b2d9133c0e98f11cc3ba01f15cf978c6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 757.8734169642611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29159b4157f24914a4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:19:24.000Z'}}, {'blockNum': '0x4c005f', 'uniqueId': '0x50d25ab25436b868e9fd61a4dc10bd1a391f1b2628662b89b783ec3ecb2ca69e:log:69', 'hash': '0x50d25ab25436b868e9fd61a4dc10bd1a391f1b2628662b89b783ec3ecb2ca69e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 179.77895216845135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09beef247ccc7c33ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:19:24.000Z'}}, {'blockNum': '0x4c005f', 'uniqueId': '0x50d25ab25436b868e9fd61a4dc10bd1a391f1b2628662b89b783ec3ecb2ca69e:log:72', 'hash': '0x50d25ab25436b868e9fd61a4dc10bd1a391f1b2628662b89b783ec3ecb2ca69e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 179.77895216845135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09beef247ccc7c33ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:19:24.000Z'}}, {'blockNum': '0x4c0072', 'uniqueId': '0x0ad5d82fc82048efb4b883d19a72166ce40433ca30060a24d12b6a95fd633b41:log:25', 'hash': '0x0ad5d82fc82048efb4b883d19a72166ce40433ca30060a24d12b6a95fd633b41', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.62306273160925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103e1af41558269fb7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:23:27.000Z'}}, {'blockNum': '0x4c0072', 'uniqueId': '0x0ad5d82fc82048efb4b883d19a72166ce40433ca30060a24d12b6a95fd633b41:log:28', 'hash': '0x0ad5d82fc82048efb4b883d19a72166ce40433ca30060a24d12b6a95fd633b41', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 299.62306273160925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103e1af41558269fb7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:23:27.000Z'}}, {'blockNum': '0x4c0079', 'uniqueId': '0x734ae673462658031282fb57c04ac68d3c09d891ee00b4e12b26f75363ee2f6b:log:77', 'hash': '0x734ae673462658031282fb57c04ac68d3c09d891ee00b4e12b26f75363ee2f6b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.6124081550941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103df519cd6fbb931c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:25:58.000Z'}}, {'blockNum': '0x4c0079', 'uniqueId': '0x734ae673462658031282fb57c04ac68d3c09d891ee00b4e12b26f75363ee2f6b:log:80', 'hash': '0x734ae673462658031282fb57c04ac68d3c09d891ee00b4e12b26f75363ee2f6b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xa6f89e1d3de44691ef031706e13c1ad091fd60f6', 'value': 299.6124081550941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103df519cd6fbb931c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:25:58.000Z'}}, {'blockNum': '0x4c007b', 'uniqueId': '0x35202815de58eb33d1247c388bd62b189b987257c714de329729904851adaa1a:log:36', 'hash': '0x35202815de58eb33d1247c388bd62b189b987257c714de329729904851adaa1a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.6017543783968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103dcf403fc02c00c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:26:12.000Z'}}, {'blockNum': '0x4c007b', 'uniqueId': '0x35202815de58eb33d1247c388bd62b189b987257c714de329729904851adaa1a:log:39', 'hash': '0x35202815de58eb33d1247c388bd62b189b987257c714de329729904851adaa1a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 299.6017543783968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103dcf403fc02c00c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:26:12.000Z'}}, {'blockNum': '0x4c007b', 'uniqueId': '0x0f917e9888e1d483db4926031e3703b4d5607cc7cf6e72e48c5c7bc7ef0e4512:log:67', 'hash': '0x0f917e9888e1d483db4926031e3703b4d5607cc7cf6e72e48c5c7bc7ef0e4512', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7.692031877462905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6abf963d09285128', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:26:12.000Z'}}, {'blockNum': '0x4c007b', 'uniqueId': '0x0f917e9888e1d483db4926031e3703b4d5607cc7cf6e72e48c5c7bc7ef0e4512:log:69', 'hash': '0x0f917e9888e1d483db4926031e3703b4d5607cc7cf6e72e48c5c7bc7ef0e4512', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 7.692031877462905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6abf963d09285128', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:26:12.000Z'}}, {'blockNum': '0x4c007f', 'uniqueId': '0xad6a6b2cb4a6783b7e715ecd8c8e937745deb49b853fad2fa7b05caa19fdd5ca:log:39', 'hash': '0xad6a6b2cb4a6783b7e715ecd8c8e937745deb49b853fad2fa7b05caa19fdd5ca', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 511.90511106683965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc01c4a5365dc740c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:26:56.000Z'}}, {'blockNum': '0x4c007f', 'uniqueId': '0xad6a6b2cb4a6783b7e715ecd8c8e937745deb49b853fad2fa7b05caa19fdd5ca:log:41', 'hash': '0xad6a6b2cb4a6783b7e715ecd8c8e937745deb49b853fad2fa7b05caa19fdd5ca', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 511.90511106683965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc01c4a5365dc740c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:26:56.000Z'}}, {'blockNum': '0x4c007f', 'uniqueId': '0x3442c8530b907ff3bc2df4ebcede9c2ab85c1bd8f00dc0bd34adac022fa65a3f:log:56', 'hash': '0x3442c8530b907ff3bc2df4ebcede9c2ab85c1bd8f00dc0bd34adac022fa65a3f', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 701.3097409906163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2604a0b5bb92e3e3c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:26:56.000Z'}}, {'blockNum': '0x4c007f', 'uniqueId': '0x3442c8530b907ff3bc2df4ebcede9c2ab85c1bd8f00dc0bd34adac022fa65a3f:log:58', 'hash': '0x3442c8530b907ff3bc2df4ebcede9c2ab85c1bd8f00dc0bd34adac022fa65a3f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 701.3097409906163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2604a0b5bb92e3e3c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:26:56.000Z'}}, {'blockNum': '0x4c0082', 'uniqueId': '0x50329f779caed8c072c2c040afe2459a6237c18028907a995c0d77d05b4e9766:log:85', 'hash': '0x50329f779caed8c072c2c040afe2459a6237c18028907a995c0d77d05b4e9766', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 61.29818070881484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0352aee2953e9c58d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:27:25.000Z'}}, {'blockNum': '0x4c0082', 'uniqueId': '0x50329f779caed8c072c2c040afe2459a6237c18028907a995c0d77d05b4e9766:log:87', 'hash': '0x50329f779caed8c072c2c040afe2459a6237c18028907a995c0d77d05b4e9766', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 61.29818070881484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0352aee2953e9c58d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:27:25.000Z'}}, {'blockNum': '0x4c0091', 'uniqueId': '0xd21a359f4d6bb62892f6e02cab79da47a888c63a2b9e58edb54fcf80705dde5a:log:18', 'hash': '0xd21a359f4d6bb62892f6e02cab79da47a888c63a2b9e58edb54fcf80705dde5a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1048.6818190828524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38d9623e4d2bde6f9e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:30:44.000Z'}}, {'blockNum': '0x4c0091', 'uniqueId': '0xd21a359f4d6bb62892f6e02cab79da47a888c63a2b9e58edb54fcf80705dde5a:log:21', 'hash': '0xd21a359f4d6bb62892f6e02cab79da47a888c63a2b9e58edb54fcf80705dde5a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x578f3c8454f316293dbd31d8c7806050f3b3e2d8', 'value': 1048.6818190828524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38d9623e4d2bde6f9e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:30:44.000Z'}}, {'blockNum': '0x4c0096', 'uniqueId': '0x8076dee3bed9f71a5959d7ba3a4eff090c3582dfc4f6bfa7c0d166fd7f5d5fb3:log:33', 'hash': '0x8076dee3bed9f71a5959d7ba3a4eff090c3582dfc4f6bfa7c0d166fd7f5d5fb3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 19.298153891636247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010bd0d0b7ebccfe05', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:31:52.000Z'}}, {'blockNum': '0x4c0096', 'uniqueId': '0x8076dee3bed9f71a5959d7ba3a4eff090c3582dfc4f6bfa7c0d166fd7f5d5fb3:log:36', 'hash': '0x8076dee3bed9f71a5959d7ba3a4eff090c3582dfc4f6bfa7c0d166fd7f5d5fb3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 19.298153891636247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010bd0d0b7ebccfe05', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:31:52.000Z'}}, {'blockNum': '0x4c0098', 'uniqueId': '0x1385c1aa650533513fc0f382011f2ce8c39b309cad39b7b217794d86b61d4b8b:log:49', 'hash': '0x1385c1aa650533513fc0f382011f2ce8c39b309cad39b7b217794d86b61d4b8b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 670.3373846939801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2456cccbc78d0e5d82', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:32:41.000Z'}}, {'blockNum': '0x4c0098', 'uniqueId': '0x1385c1aa650533513fc0f382011f2ce8c39b309cad39b7b217794d86b61d4b8b:log:52', 'hash': '0x1385c1aa650533513fc0f382011f2ce8c39b309cad39b7b217794d86b61d4b8b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 670.3373846939801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2456cccbc78d0e5d82', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:32:41.000Z'}}, {'blockNum': '0x4c0099', 'uniqueId': '0x187ae6754f51ed81f886f4f049913438fe9c30e9099d40b568ef4032349cdea0:log:40', 'hash': '0x187ae6754f51ed81f886f4f049913438fe9c30e9099d40b568ef4032349cdea0', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 782.8325002349774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a6ffbbb56e0b921ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:33:01.000Z'}}, {'blockNum': '0x4c0099', 'uniqueId': '0x187ae6754f51ed81f886f4f049913438fe9c30e9099d40b568ef4032349cdea0:log:42', 'hash': '0x187ae6754f51ed81f886f4f049913438fe9c30e9099d40b568ef4032349cdea0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 782.8325002349774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a6ffbbb56e0b921ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:33:01.000Z'}}, {'blockNum': '0x4c009b', 'uniqueId': '0x0bb1af354aa020525077408ac5f3703d640392f9d86fd4989d7a09ecb1efe0f6:log:78', 'hash': '0x0bb1af354aa020525077408ac5f3703d640392f9d86fd4989d7a09ecb1efe0f6', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 15.168241714344406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd2806b7972c2ab4e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:33:26.000Z'}}, {'blockNum': '0x4c009b', 'uniqueId': '0x0bb1af354aa020525077408ac5f3703d640392f9d86fd4989d7a09ecb1efe0f6:log:80', 'hash': '0x0bb1af354aa020525077408ac5f3703d640392f9d86fd4989d7a09ecb1efe0f6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 15.168241714344406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd2806b7972c2ab4e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:33:26.000Z'}}, {'blockNum': '0x4c009e', 'uniqueId': '0x1a58f385b62df1533544f144f1fc2add638a5a753658895c7439a8a788f81365:log:46', 'hash': '0x1a58f385b62df1533544f144f1fc2add638a5a753658895c7439a8a788f81365', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 6403.98994248772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015b2936aae652cbd007', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:33:48.000Z'}}, {'blockNum': '0x4c009e', 'uniqueId': '0x1a58f385b62df1533544f144f1fc2add638a5a753658895c7439a8a788f81365:log:48', 'hash': '0x1a58f385b62df1533544f144f1fc2add638a5a753658895c7439a8a788f81365', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 6403.98994248772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015b2936aae652cbd007', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:33:48.000Z'}}, {'blockNum': '0x4c00a7', 'uniqueId': '0x3ce631e50c18ce648f0aa82d51ca37ae6cf942be723a6419431cf9bb820d7fc1:log:31', 'hash': '0x3ce631e50c18ce648f0aa82d51ca37ae6cf942be723a6419431cf9bb820d7fc1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 112.43790074826917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x061863ab024f361d90', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:35:00.000Z'}}, {'blockNum': '0x4c00a7', 'uniqueId': '0x3ce631e50c18ce648f0aa82d51ca37ae6cf942be723a6419431cf9bb820d7fc1:log:34', 'hash': '0x3ce631e50c18ce648f0aa82d51ca37ae6cf942be723a6419431cf9bb820d7fc1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 112.43790074826917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x061863ab024f361d90', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:35:00.000Z'}}, {'blockNum': '0x4c00a8', 'uniqueId': '0x74ab10e5646c6b6291307ef08ff96a1d2aceda4713784f4a7915c785a0a390d7:log:19', 'hash': '0x74ab10e5646c6b6291307ef08ff96a1d2aceda4713784f4a7915c785a0a390d7', 'from': '0x578f3c8454f316293dbd31d8c7806050f3b3e2d8', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1049.4927753600098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38e4a356bd2834f5d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:35:08.000Z'}}, {'blockNum': '0x4c00a8', 'uniqueId': '0x74ab10e5646c6b6291307ef08ff96a1d2aceda4713784f4a7915c785a0a390d7:log:21', 'hash': '0x74ab10e5646c6b6291307ef08ff96a1d2aceda4713784f4a7915c785a0a390d7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1049.4927753600098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38e4a356bd2834f5d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:35:08.000Z'}}, {'blockNum': '0x4c00c3', 'uniqueId': '0x33a7d4eac4c533413b84daa4dfdcfef8ccd133edddb55c8695b38e90c10d941e:log:39', 'hash': '0x33a7d4eac4c533413b84daa4dfdcfef8ccd133edddb55c8695b38e90c10d941e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 374.8288541787021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1451cb98f2783af895', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:39:45.000Z'}}, {'blockNum': '0x4c00c3', 'uniqueId': '0x33a7d4eac4c533413b84daa4dfdcfef8ccd133edddb55c8695b38e90c10d941e:log:42', 'hash': '0x33a7d4eac4c533413b84daa4dfdcfef8ccd133edddb55c8695b38e90c10d941e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 374.8288541787021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1451cb98f2783af895', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:39:45.000Z'}}, {'blockNum': '0x4c00c6', 'uniqueId': '0x10d7303c95e2a2a7b2b887eae0e9407b9aba1ab9fa4e2ec5dc6ed18a34a5e35f:log:49', 'hash': '0x10d7303c95e2a2a7b2b887eae0e9407b9aba1ab9fa4e2ec5dc6ed18a34a5e35f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.8510767024478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1041450594efcf0d59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:41:06.000Z'}}, {'blockNum': '0x4c00c6', 'uniqueId': '0x10d7303c95e2a2a7b2b887eae0e9407b9aba1ab9fa4e2ec5dc6ed18a34a5e35f:log:52', 'hash': '0x10d7303c95e2a2a7b2b887eae0e9407b9aba1ab9fa4e2ec5dc6ed18a34a5e35f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 299.8510767024478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1041450594efcf0d59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:41:06.000Z'}}, {'blockNum': '0x4c00c9', 'uniqueId': '0x15a4bb857e5240ae1a1825cccac364e9701e9933224d9a68fb4c3465d7a6b3cf:log:16', 'hash': '0x15a4bb857e5240ae1a1825cccac364e9701e9933224d9a68fb4c3465d7a6b3cf', 'from': '0x8967172b067b9427392aa667a3996f90df01aff4', 'to': '0x65b4aa0e88e4239d1d61254a2331791167fbdc77', 'value': 107.27928018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05d0cc90ef08810000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:42:47.000Z'}}, {'blockNum': '0x4c00cf', 'uniqueId': '0xf1daae493e6fb2510b68236e434401fe7397937a5ed1c84811b888719ad774a6:log:0', 'hash': '0xf1daae493e6fb2510b68236e434401fe7397937a5ed1c84811b888719ad774a6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4a76fce55eeb323ed52b2ae14db59589c0f98e81', 'value': 2791.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x975941caeecd550000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:43:39.000Z'}}, {'blockNum': '0x4c00d1', 'uniqueId': '0xb11f75c9c10a80c668d66d00ac834d4c7336d6b6adf2ade85ac23ad47417213a:log:233', 'hash': '0xb11f75c9c10a80c668d66d00ac834d4c7336d6b6adf2ade85ac23ad47417213a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 134.92950282580773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x075085e3eed455d830', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:44:06.000Z'}}, {'blockNum': '0x4c00d1', 'uniqueId': '0xb11f75c9c10a80c668d66d00ac834d4c7336d6b6adf2ade85ac23ad47417213a:log:236', 'hash': '0xb11f75c9c10a80c668d66d00ac834d4c7336d6b6adf2ade85ac23ad47417213a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 134.92950282580773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x075085e3eed455d830', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:44:06.000Z'}}, {'blockNum': '0x4c00d8', 'uniqueId': '0xf7f40b26c85f04807bb42cf4e12632195e2a0484e63acad44e2af24f516771d7:log:25', 'hash': '0xf7f40b26c85f04807bb42cf4e12632195e2a0484e63acad44e2af24f516771d7', 'from': '0x4a76fce55eeb323ed52b2ae14db59589c0f98e81', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2791.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x975941caeecd550000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:45:23.000Z'}}, {'blockNum': '0x4c00d8', 'uniqueId': '0xf7f40b26c85f04807bb42cf4e12632195e2a0484e63acad44e2af24f516771d7:log:28', 'hash': '0xf7f40b26c85f04807bb42cf4e12632195e2a0484e63acad44e2af24f516771d7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2791.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x975941caeecd550000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:45:23.000Z'}}, {'blockNum': '0x4c00d8', 'uniqueId': '0xf7f40b26c85f04807bb42cf4e12632195e2a0484e63acad44e2af24f516771d7:log:29', 'hash': '0xf7f40b26c85f04807bb42cf4e12632195e2a0484e63acad44e2af24f516771d7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2791.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x975941caeecd550000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:45:23.000Z'}}, {'blockNum': '0x4c00d8', 'uniqueId': '0xdce973974b0ef62024769c8358dd8ee210111d3c5ce08baafaeb914e9159be86:log:45', 'hash': '0xdce973974b0ef62024769c8358dd8ee210111d3c5ce08baafaeb914e9159be86', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 502.78518645573564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b418bcf361ea9cc21', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:45:23.000Z'}}, {'blockNum': '0x4c00d8', 'uniqueId': '0xdce973974b0ef62024769c8358dd8ee210111d3c5ce08baafaeb914e9159be86:log:47', 'hash': '0xdce973974b0ef62024769c8358dd8ee210111d3c5ce08baafaeb914e9159be86', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 502.78518645573564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b418bcf361ea9cc21', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:45:23.000Z'}}, {'blockNum': '0x4c00f0', 'uniqueId': '0x012c04b7fca80e04e365036cb7ae3ac5b1638d65b5756445622cd84b82bca620:log:131', 'hash': '0x012c04b7fca80e04e365036cb7ae3ac5b1638d65b5756445622cd84b82bca620', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4553.226232495292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf6d4b51e6d9007b6cb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:50:17.000Z'}}, {'blockNum': '0x4c00f0', 'uniqueId': '0x012c04b7fca80e04e365036cb7ae3ac5b1638d65b5756445622cd84b82bca620:log:133', 'hash': '0x012c04b7fca80e04e365036cb7ae3ac5b1638d65b5756445622cd84b82bca620', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4553.226232495292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf6d4b51e6d9007b6cb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:50:17.000Z'}}, {'blockNum': '0x4c00fa', 'uniqueId': '0xb95aed8c914679f80f5d9ebf4c7f72195602e52dd4bc046085dbfc27f4d1504f:log:23', 'hash': '0xb95aed8c914679f80f5d9ebf4c7f72195602e52dd4bc046085dbfc27f4d1504f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xba341b3da395f64715f5a844b9618714c9dfbd4e', 'value': 829.44832716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cf6e86af249c9b000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:53:37.000Z'}}, {'blockNum': '0x4c00ff', 'uniqueId': '0x41ccc6c36baa053657f613918ac8b17ed115f51b54514e105a4bdf9548464256:log:23', 'hash': '0x41ccc6c36baa053657f613918ac8b17ed115f51b54514e105a4bdf9548464256', 'from': '0xa10d5531ef4fbfff688e1f075e4e2efc315a5a89', 'to': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'value': 570.13014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ee82525a6abb9c000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:55:31.000Z'}}, {'blockNum': '0x4c0102', 'uniqueId': '0xc0bf065b6607ecfed3ae65849d92bac5fe5e931e378404fcc53d80e989da7c7f:log:95', 'hash': '0xc0bf065b6607ecfed3ae65849d92bac5fe5e931e378404fcc53d80e989da7c7f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 90.03563583783672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04e17ed5c3e8b007be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:56:08.000Z'}}, {'blockNum': '0x4c0102', 'uniqueId': '0xc0bf065b6607ecfed3ae65849d92bac5fe5e931e378404fcc53d80e989da7c7f:log:98', 'hash': '0xc0bf065b6607ecfed3ae65849d92bac5fe5e931e378404fcc53d80e989da7c7f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 90.03563583783672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04e17ed5c3e8b007be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:56:08.000Z'}}, {'blockNum': '0x4c0106', 'uniqueId': '0xcdcf334b0d518cfb529d4257c2d3affdf0c8e208a154b3396c788224f0a20e8d:log:36', 'hash': '0xcdcf334b0d518cfb529d4257c2d3affdf0c8e208a154b3396c788224f0a20e8d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 360.1329206731804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1385d9274948d974da', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:58:10.000Z'}}, {'blockNum': '0x4c0106', 'uniqueId': '0xcdcf334b0d518cfb529d4257c2d3affdf0c8e208a154b3396c788224f0a20e8d:log:39', 'hash': '0xcdcf334b0d518cfb529d4257c2d3affdf0c8e208a154b3396c788224f0a20e8d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 360.1329206731804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1385d9274948d974da', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:58:10.000Z'}}, {'blockNum': '0x4c0107', 'uniqueId': '0x09ab2b0e54059b1c0e3915cb6b87756bab67a0f408dcb66439e41f60ce3f450a:log:56', 'hash': '0x09ab2b0e54059b1c0e3915cb6b87756bab67a0f408dcb66439e41f60ce3f450a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1290.3498861608957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45f333b0e589eca2b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:58:21.000Z'}}, {'blockNum': '0x4c0107', 'uniqueId': '0x09ab2b0e54059b1c0e3915cb6b87756bab67a0f408dcb66439e41f60ce3f450a:log:59', 'hash': '0x09ab2b0e54059b1c0e3915cb6b87756bab67a0f408dcb66439e41f60ce3f450a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1290.3498861608957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45f333b0e589eca2b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:58:21.000Z'}}, {'blockNum': '0x4c0107', 'uniqueId': '0x72f2d53df4d7088e821a5b676e0bfb1a1fb6c454978332279764e93635182055:log:97', 'hash': '0x72f2d53df4d7088e821a5b676e0bfb1a1fb6c454978332279764e93635182055', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 330.0577607932523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11e478b8b872a83d30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:58:21.000Z'}}, {'blockNum': '0x4c0107', 'uniqueId': '0x72f2d53df4d7088e821a5b676e0bfb1a1fb6c454978332279764e93635182055:log:100', 'hash': '0x72f2d53df4d7088e821a5b676e0bfb1a1fb6c454978332279764e93635182055', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 330.0577607932523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11e478b8b872a83d30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:58:21.000Z'}}, {'blockNum': '0x4c0109', 'uniqueId': '0xa14f5e723c4913ec80ae02e044fc0a2c438d2bcc023b377fbbf14c00ee6ec1ce:log:4', 'hash': '0xa14f5e723c4913ec80ae02e044fc0a2c438d2bcc023b377fbbf14c00ee6ec1ce', 'from': '0x642ae7eb0215e6459c5420a874452d723cde5acf', 'to': '0x6ff11a135c59f2ac5e272fd1424ec0316ac44d20', 'value': 0.000122419879416756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f57196d13b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:58:45.000Z'}}, {'blockNum': '0x4c010a', 'uniqueId': '0x214b8b1cfc35876eb672854f2ec65a79717af23ad991bea100f01ff626972713:log:65', 'hash': '0x214b8b1cfc35876eb672854f2ec65a79717af23ad991bea100f01ff626972713', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4356.883360751894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xec2fe71cd8b2b5cba7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:59:07.000Z'}}, {'blockNum': '0x4c010a', 'uniqueId': '0x214b8b1cfc35876eb672854f2ec65a79717af23ad991bea100f01ff626972713:log:67', 'hash': '0x214b8b1cfc35876eb672854f2ec65a79717af23ad991bea100f01ff626972713', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4356.883360751894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xec2fe71cd8b2b5cba7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:59:07.000Z'}}, {'blockNum': '0x4c010a', 'uniqueId': '0xb22353cb7dbf8c012964d90e997bf888d555509b064f04c0ca41488e59998a6f:log:83', 'hash': '0xb22353cb7dbf8c012964d90e997bf888d555509b064f04c0ca41488e59998a6f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.14441255219927684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02010e737af20924', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:59:07.000Z'}}, {'blockNum': '0x4c010a', 'uniqueId': '0xb22353cb7dbf8c012964d90e997bf888d555509b064f04c0ca41488e59998a6f:log:86', 'hash': '0xb22353cb7dbf8c012964d90e997bf888d555509b064f04c0ca41488e59998a6f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 0.14441255219927684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02010e737af20924', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:59:07.000Z'}}, {'blockNum': '0x4c010b', 'uniqueId': '0x9e431aa60b693206af28d9de031d297942279ee73b147db830728add818c2c65:log:63', 'hash': '0x9e431aa60b693206af28d9de031d297942279ee73b147db830728add818c2c65', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 120.07988454966481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06827172c994b0382c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:59:30.000Z'}}, {'blockNum': '0x4c010b', 'uniqueId': '0x9e431aa60b693206af28d9de031d297942279ee73b147db830728add818c2c65:log:66', 'hash': '0x9e431aa60b693206af28d9de031d297942279ee73b147db830728add818c2c65', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 120.07988454966481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06827172c994b0382c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:59:30.000Z'}}, {'blockNum': '0x4c010b', 'uniqueId': '0x58161d4580c5caf99993c968950471ebbc9434dd79581625c4314bbc44345042:log:89', 'hash': '0x58161d4580c5caf99993c968950471ebbc9434dd79581625c4314bbc44345042', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 300.19222277976036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1046010421b28a8683', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:59:30.000Z'}}, {'blockNum': '0x4c010b', 'uniqueId': '0x58161d4580c5caf99993c968950471ebbc9434dd79581625c4314bbc44345042:log:92', 'hash': '0x58161d4580c5caf99993c968950471ebbc9434dd79581625c4314bbc44345042', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 300.19222277976036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1046010421b28a8683', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:59:30.000Z'}}, {'blockNum': '0x4c010c', 'uniqueId': '0x0c7fdeaf7341e1310debc35041a9593f38e1763f1abc588d8396178d6aed2205:log:51', 'hash': '0x0c7fdeaf7341e1310debc35041a9593f38e1763f1abc588d8396178d6aed2205', 'from': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 570.13014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ee82525a6abb9c000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:00:05.000Z'}}, {'blockNum': '0x4c010d', 'uniqueId': '0x1ef30e851630d67279080850e1f3027405a1cb5d9b1ed4c27af88e3dd583d727:log:48', 'hash': '0x1ef30e851630d67279080850e1f3027405a1cb5d9b1ed4c27af88e3dd583d727', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 300.1815254315996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1045db02f33d61e9ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:00:22.000Z'}}, {'blockNum': '0x4c010d', 'uniqueId': '0x1ef30e851630d67279080850e1f3027405a1cb5d9b1ed4c27af88e3dd583d727:log:51', 'hash': '0x1ef30e851630d67279080850e1f3027405a1cb5d9b1ed4c27af88e3dd583d727', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 300.1815254315996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1045db02f33d61e9ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:00:22.000Z'}}, {'blockNum': '0x4c011b', 'uniqueId': '0x145db39d4999a9b58d01668af0f53dedd8c5775c81511f9dc91ba1e6ade5a32e:log:35', 'hash': '0x145db39d4999a9b58d01668af0f53dedd8c5775c81511f9dc91ba1e6ade5a32e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 155.93726033939163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0874107016710c24b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:02:53.000Z'}}, {'blockNum': '0x4c011b', 'uniqueId': '0x145db39d4999a9b58d01668af0f53dedd8c5775c81511f9dc91ba1e6ade5a32e:log:38', 'hash': '0x145db39d4999a9b58d01668af0f53dedd8c5775c81511f9dc91ba1e6ade5a32e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 155.93726033939163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0874107016710c24b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:02:53.000Z'}}, {'blockNum': '0x4c0120', 'uniqueId': '0x094711801271021a5b85f540957dae524bd976486e88b26f8e1eb457f3d4b1bf:log:71', 'hash': '0x094711801271021a5b85f540957dae524bd976486e88b26f8e1eb457f3d4b1bf', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1020.5182909592315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3752894ab095bb0fec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:04:01.000Z'}}, {'blockNum': '0x4c0120', 'uniqueId': '0x094711801271021a5b85f540957dae524bd976486e88b26f8e1eb457f3d4b1bf:log:74', 'hash': '0x094711801271021a5b85f540957dae524bd976486e88b26f8e1eb457f3d4b1bf', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1020.5182909592315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3752894ab095bb0fec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:04:01.000Z'}}, {'blockNum': '0x4c0121', 'uniqueId': '0x7cf8fa35898df1a093cc1c264a2a1fb4bab24e12a10141f34ff98b67957109c1:log:40', 'hash': '0x7cf8fa35898df1a093cc1c264a2a1fb4bab24e12a10141f34ff98b67957109c1', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1620.1412319827973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x57d3f9ea9cba5d5c68', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:04:16.000Z'}}, {'blockNum': '0x4c0121', 'uniqueId': '0x7cf8fa35898df1a093cc1c264a2a1fb4bab24e12a10141f34ff98b67957109c1:log:42', 'hash': '0x7cf8fa35898df1a093cc1c264a2a1fb4bab24e12a10141f34ff98b67957109c1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1620.1412319827973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x57d3f9ea9cba5d5c68', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:04:16.000Z'}}, {'blockNum': '0x4c012b', 'uniqueId': '0x71b95d0b5339f53f40d27ced5b29824bf0c9b8e19131378cf86052b4db4817e9:log:17', 'hash': '0x71b95d0b5339f53f40d27ced5b29824bf0c9b8e19131378cf86052b4db4817e9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1500.8262345076819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x515c25e491097c797a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:06:22.000Z'}}, {'blockNum': '0x4c012b', 'uniqueId': '0x71b95d0b5339f53f40d27ced5b29824bf0c9b8e19131378cf86052b4db4817e9:log:20', 'hash': '0x71b95d0b5339f53f40d27ced5b29824bf0c9b8e19131378cf86052b4db4817e9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1500.8262345076819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x515c25e491097c797a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:06:22.000Z'}}, {'blockNum': '0x4c0137', 'uniqueId': '0xd4670f19f2833ea4a95fcc984740c92f2cc65d0cac0f386e86be71d4008c3b25:log:76', 'hash': '0xd4670f19f2833ea4a95fcc984740c92f2cc65d0cac0f386e86be71d4008c3b25', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 600.2556322018286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x208a3865326984d605', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:10:00.000Z'}}, {'blockNum': '0x4c0137', 'uniqueId': '0xd4670f19f2833ea4a95fcc984740c92f2cc65d0cac0f386e86be71d4008c3b25:log:79', 'hash': '0xd4670f19f2833ea4a95fcc984740c92f2cc65d0cac0f386e86be71d4008c3b25', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 600.2556322018286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x208a3865326984d605', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:10:00.000Z'}}, {'blockNum': '0x4c0138', 'uniqueId': '0xffdddc58844db8b0ab865f1b27626c10d5fed5ee27fc2d5df3a68fd8d51d94d1:log:7', 'hash': '0xffdddc58844db8b0ab865f1b27626c10d5fed5ee27fc2d5df3a68fd8d51d94d1', 'from': '0xba341b3da395f64715f5a844b9618714c9dfbd4e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 829.44832716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cf6e86af249c9b000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:10:04.000Z'}}, {'blockNum': '0x4c0145', 'uniqueId': '0x878afa493586b11211dfccac9326621598fd94a42f752b135959be7e6e64cb7b:log:124', 'hash': '0x878afa493586b11211dfccac9326621598fd94a42f752b135959be7e6e64cb7b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 121.03105345578459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x068fa4adde375aa6e7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:13:11.000Z'}}, {'blockNum': '0x4c0145', 'uniqueId': '0x878afa493586b11211dfccac9326621598fd94a42f752b135959be7e6e64cb7b:log:127', 'hash': '0x878afa493586b11211dfccac9326621598fd94a42f752b135959be7e6e64cb7b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 121.03105345578459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x068fa4adde375aa6e7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:13:11.000Z'}}, {'blockNum': '0x4c0149', 'uniqueId': '0x8becc4aa27db3a6c8b733154b962d39604b472b3532302071352aa5fe0275dbf:log:10', 'hash': '0x8becc4aa27db3a6c8b733154b962d39604b472b3532302071352aa5fe0275dbf', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1500.4304275034146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5156a7b4317884f038', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:14:09.000Z'}}, {'blockNum': '0x4c0149', 'uniqueId': '0x8becc4aa27db3a6c8b733154b962d39604b472b3532302071352aa5fe0275dbf:log:13', 'hash': '0x8becc4aa27db3a6c8b733154b962d39604b472b3532302071352aa5fe0275dbf', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 1500.4304275034146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5156a7b4317884f038', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:14:09.000Z'}}, {'blockNum': '0x4c0149', 'uniqueId': '0x99c526fe4aa79a6e35b23eb5d42e9191d93fc8300e565f50a1c7ff7d00493b47:log:94', 'hash': '0x99c526fe4aa79a6e35b23eb5d42e9191d93fc8300e565f50a1c7ff7d00493b47', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 150.02834542576596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08220fc147ce619f92', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:14:09.000Z'}}, {'blockNum': '0x4c0149', 'uniqueId': '0x99c526fe4aa79a6e35b23eb5d42e9191d93fc8300e565f50a1c7ff7d00493b47:log:97', 'hash': '0x99c526fe4aa79a6e35b23eb5d42e9191d93fc8300e565f50a1c7ff7d00493b47', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 150.02834542576596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08220fc147ce619f92', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:14:09.000Z'}}, {'blockNum': '0x4c014b', 'uniqueId': '0x4b84f79eb1e2b3f749879ac18ed1d834a4b17d969f4e84cdcb2fb8d1bb9483ef:log:20', 'hash': '0x4b84f79eb1e2b3f749879ac18ed1d834a4b17d969f4e84cdcb2fb8d1bb9483ef', 'from': '0xb0e83c2d71a991017e0116d58c5765abc57384af', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:14:35.000Z'}}, {'blockNum': '0x4c014b', 'uniqueId': '0x4b84f79eb1e2b3f749879ac18ed1d834a4b17d969f4e84cdcb2fb8d1bb9483ef:log:23', 'hash': '0x4b84f79eb1e2b3f749879ac18ed1d834a4b17d969f4e84cdcb2fb8d1bb9483ef', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:14:35.000Z'}}, {'blockNum': '0x4c014b', 'uniqueId': '0x4b84f79eb1e2b3f749879ac18ed1d834a4b17d969f4e84cdcb2fb8d1bb9483ef:log:25', 'hash': '0x4b84f79eb1e2b3f749879ac18ed1d834a4b17d969f4e84cdcb2fb8d1bb9483ef', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x578f3c8454f316293dbd31d8c7806050f3b3e2d8', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:14:35.000Z'}}, {'blockNum': '0x4c0154', 'uniqueId': '0x0ae4f1fdb6b4547e4fecfa904bc8fda6e204251a7e0dc0bcf4ebc45f0b9f4676:log:32', 'hash': '0x0ae4f1fdb6b4547e4fecfa904bc8fda6e204251a7e0dc0bcf4ebc45f0b9f4676', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xf7f3c83c824e8ff09736eda5875be6381b2fa486', 'value': 51.20327124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02c6968fe7fe2cd000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:16:01.000Z'}}, {'blockNum': '0x4c015b', 'uniqueId': '0x8f755b763ffc4df6124d86af3cd94b6f70acd5b1d36bb2087946d93396da5ac0:log:46', 'hash': '0x8f755b763ffc4df6124d86af3cd94b6f70acd5b1d36bb2087946d93396da5ac0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 300.04867543511045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10440308950c3b8089', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:17:33.000Z'}}, {'blockNum': '0x4c015b', 'uniqueId': '0x8f755b763ffc4df6124d86af3cd94b6f70acd5b1d36bb2087946d93396da5ac0:log:49', 'hash': '0x8f755b763ffc4df6124d86af3cd94b6f70acd5b1d36bb2087946d93396da5ac0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 300.04867543511045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10440308950c3b8089', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:17:33.000Z'}}, {'blockNum': '0x4c0162', 'uniqueId': '0x1fb62bf809fbb76a28dc8349e81d6a59390fc7a5179f1dd5ab7eb344e9c3ac46:log:70', 'hash': '0x1fb62bf809fbb76a28dc8349e81d6a59390fc7a5179f1dd5ab7eb344e9c3ac46', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.5775037191697272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0803b492a5941add', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:19:12.000Z'}}, {'blockNum': '0x4c0162', 'uniqueId': '0x1fb62bf809fbb76a28dc8349e81d6a59390fc7a5179f1dd5ab7eb344e9c3ac46:log:73', 'hash': '0x1fb62bf809fbb76a28dc8349e81d6a59390fc7a5179f1dd5ab7eb344e9c3ac46', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 0.5775037191697272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0803b492a5941add', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:19:12.000Z'}}, {'blockNum': '0x4c016e', 'uniqueId': '0xc4ba553c689c55519bdf3cbeaa2e2e3e6f194f7c49df6a2e4b23abfaa0e84ec2:log:85', 'hash': '0xc4ba553c689c55519bdf3cbeaa2e2e3e6f194f7c49df6a2e4b23abfaa0e84ec2', 'from': '0x578f3c8454f316293dbd31d8c7806050f3b3e2d8', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 573.1789987567836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f1274de896c25a3aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:22:14.000Z'}}, {'blockNum': '0x4c016e', 'uniqueId': '0xc4ba553c689c55519bdf3cbeaa2e2e3e6f194f7c49df6a2e4b23abfaa0e84ec2:log:87', 'hash': '0xc4ba553c689c55519bdf3cbeaa2e2e3e6f194f7c49df6a2e4b23abfaa0e84ec2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 573.1789987567836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f1274de896c25a3aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:22:14.000Z'}}, {'blockNum': '0x4c0174', 'uniqueId': '0xd145a81c34be608ac51ef42d3c6b0149ee86799dbd76cf33fb6baaa186c8e3fd:log:107', 'hash': '0xd145a81c34be608ac51ef42d3c6b0149ee86799dbd76cf33fb6baaa186c8e3fd', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7341.563378571396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018dfca8a38a74b87bf7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:24:30.000Z'}}, {'blockNum': '0x4c0174', 'uniqueId': '0xd145a81c34be608ac51ef42d3c6b0149ee86799dbd76cf33fb6baaa186c8e3fd:log:109', 'hash': '0xd145a81c34be608ac51ef42d3c6b0149ee86799dbd76cf33fb6baaa186c8e3fd', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 7341.563378571396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018dfca8a38a74b87bf7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:24:30.000Z'}}, {'blockNum': '0x4c0178', 'uniqueId': '0xdc2045d0b1faf195fdc8126d336617c9f4ab42a46ea1f1d8f6737a5ca4e5c45a:log:57', 'hash': '0xdc2045d0b1faf195fdc8126d336617c9f4ab42a46ea1f1d8f6737a5ca4e5c45a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 240.25685806668687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d063bd379ec50a20c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:25:46.000Z'}}, {'blockNum': '0x4c0178', 'uniqueId': '0xdc2045d0b1faf195fdc8126d336617c9f4ab42a46ea1f1d8f6737a5ca4e5c45a:log:60', 'hash': '0xdc2045d0b1faf195fdc8126d336617c9f4ab42a46ea1f1d8f6737a5ca4e5c45a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 240.25685806668687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d063bd379ec50a20c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:25:46.000Z'}}, {'blockNum': '0x4c017a', 'uniqueId': '0xbcc49766cd3a82251e3c4ec1712d7cfc86a571f919ba80a4d213d5426ebd5896:log:78', 'hash': '0xbcc49766cd3a82251e3c4ec1712d7cfc86a571f919ba80a4d213d5426ebd5896', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 18.018988106069376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xfa104e36ba40fca1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:26:10.000Z'}}, {'blockNum': '0x4c017a', 'uniqueId': '0xbcc49766cd3a82251e3c4ec1712d7cfc86a571f919ba80a4d213d5426ebd5896:log:81', 'hash': '0xbcc49766cd3a82251e3c4ec1712d7cfc86a571f919ba80a4d213d5426ebd5896', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 18.018988106069376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xfa104e36ba40fca1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:26:10.000Z'}}, {'blockNum': '0x4c017e', 'uniqueId': '0xf6e17cff30ab7f9e5851c1457c772affeb4af4f4ceec989b50b909b0719aa2bb:log:84', 'hash': '0xf6e17cff30ab7f9e5851c1457c772affeb4af4f4ceec989b50b909b0719aa2bb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 252.26178628951712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dacd5e617102c6a14', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:27:32.000Z'}}, {'blockNum': '0x4c017e', 'uniqueId': '0xf6e17cff30ab7f9e5851c1457c772affeb4af4f4ceec989b50b909b0719aa2bb:log:87', 'hash': '0xf6e17cff30ab7f9e5851c1457c772affeb4af4f4ceec989b50b909b0719aa2bb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 252.26178628951712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dacd5e617102c6a14', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:27:32.000Z'}}, {'blockNum': '0x4c017f', 'uniqueId': '0x45b136d4cf2963792f8f5d6029d171cc241b18cba890982fc394dc25f7ad7a6b:log:14', 'hash': '0x45b136d4cf2963792f8f5d6029d171cc241b18cba890982fc394dc25f7ad7a6b', 'from': '0xb0e83c2d71a991017e0116d58c5765abc57384af', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:27:46.000Z'}}, {'blockNum': '0x4c017f', 'uniqueId': '0x45b136d4cf2963792f8f5d6029d171cc241b18cba890982fc394dc25f7ad7a6b:log:17', 'hash': '0x45b136d4cf2963792f8f5d6029d171cc241b18cba890982fc394dc25f7ad7a6b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:27:46.000Z'}}, {'blockNum': '0x4c017f', 'uniqueId': '0x45b136d4cf2963792f8f5d6029d171cc241b18cba890982fc394dc25f7ad7a6b:log:19', 'hash': '0x45b136d4cf2963792f8f5d6029d171cc241b18cba890982fc394dc25f7ad7a6b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x578f3c8454f316293dbd31d8c7806050f3b3e2d8', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:27:46.000Z'}}, {'blockNum': '0x4c0181', 'uniqueId': '0xab88f51ab53728e46823a89b192d0b9fef5cf4b16282a03e9222f7eb3b1161ce:log:6', 'hash': '0xab88f51ab53728e46823a89b192d0b9fef5cf4b16282a03e9222f7eb3b1161ce', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xd205d2bb94ff42ab66b369e17087b87c27bbc06e', 'value': 28.85324551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01906b51eb98af4000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:28:13.000Z'}}, {'blockNum': '0x4c0185', 'uniqueId': '0x6d231479b319608906c386df994002402a00ac6b7765d7636749fa3d5b78f8ca:log:0', 'hash': '0x6d231479b319608906c386df994002402a00ac6b7765d7636749fa3d5b78f8ca', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0bfd6edd1730ae0eeff3f3dd3d7f4b4bab1abb59', 'value': 6.57819149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5b4a6e4eb1f29400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:28:25.000Z'}}, {'blockNum': '0x4c018a', 'uniqueId': '0x6708d0b61ba5f5c3b658379e363c7969404bd6f01ee2029b9512aabb984964bb:log:28', 'hash': '0x6708d0b61ba5f5c3b658379e363c7969404bd6f01ee2029b9512aabb984964bb', 'from': '0x578f3c8454f316293dbd31d8c7806050f3b3e2d8', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 374.974020356013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1453cf54d0f83f3da8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:30:41.000Z'}}, {'blockNum': '0x4c018a', 'uniqueId': '0x6708d0b61ba5f5c3b658379e363c7969404bd6f01ee2029b9512aabb984964bb:log:30', 'hash': '0x6708d0b61ba5f5c3b658379e363c7969404bd6f01ee2029b9512aabb984964bb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 374.974020356013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1453cf54d0f83f3da8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:30:41.000Z'}}, {'blockNum': '0x4c018b', 'uniqueId': '0x1f1caf17d25f0939dd5568056fe7ab1bca4fcb9deb4a955bd915a2a5cca4b427:log:62', 'hash': '0x1f1caf17d25f0939dd5568056fe7ab1bca4fcb9deb4a955bd915a2a5cca4b427', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1126.1266791802177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d0c25a83d5328feca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:30:45.000Z'}}, {'blockNum': '0x4c018b', 'uniqueId': '0x1f1caf17d25f0939dd5568056fe7ab1bca4fcb9deb4a955bd915a2a5cca4b427:log:65', 'hash': '0x1f1caf17d25f0939dd5568056fe7ab1bca4fcb9deb4a955bd915a2a5cca4b427', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1126.1266791802177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d0c25a83d5328feca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:30:45.000Z'}}, {'blockNum': '0x4c0194', 'uniqueId': '0x93d40ac68b807d940c183bf3e75847dca1fea5864c9aa5c23919fac9ac663b05:log:15', 'hash': '0x93d40ac68b807d940c183bf3e75847dca1fea5864c9aa5c23919fac9ac663b05', 'from': '0xb0e83c2d71a991017e0116d58c5765abc57384af', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:33:01.000Z'}}, {'blockNum': '0x4c0194', 'uniqueId': '0x93d40ac68b807d940c183bf3e75847dca1fea5864c9aa5c23919fac9ac663b05:log:18', 'hash': '0x93d40ac68b807d940c183bf3e75847dca1fea5864c9aa5c23919fac9ac663b05', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:33:01.000Z'}}, {'blockNum': '0x4c0194', 'uniqueId': '0x93d40ac68b807d940c183bf3e75847dca1fea5864c9aa5c23919fac9ac663b05:log:20', 'hash': '0x93d40ac68b807d940c183bf3e75847dca1fea5864c9aa5c23919fac9ac663b05', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x578f3c8454f316293dbd31d8c7806050f3b3e2d8', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:33:01.000Z'}}, {'blockNum': '0x4c0194', 'uniqueId': '0x8dfc7385a939ada53d74b7e9bcdc5f2cb725355576248f5770a3486c39d48ec5:log:59', 'hash': '0x8dfc7385a939ada53d74b7e9bcdc5f2cb725355576248f5770a3486c39d48ec5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 402.6147705799815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15d36700b2b13054cd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:33:01.000Z'}}, {'blockNum': '0x4c0194', 'uniqueId': '0x8dfc7385a939ada53d74b7e9bcdc5f2cb725355576248f5770a3486c39d48ec5:log:62', 'hash': '0x8dfc7385a939ada53d74b7e9bcdc5f2cb725355576248f5770a3486c39d48ec5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 402.6147705799815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15d36700b2b13054cd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:33:01.000Z'}}, {'blockNum': '0x4c0197', 'uniqueId': '0x0bca205ea0c38d451cb9abe50c08c5dac634909d013eb61cba02caf0f8779c12:log:227', 'hash': '0x0bca205ea0c38d451cb9abe50c08c5dac634909d013eb61cba02caf0f8779c12', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 109.59638548570886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05f0f493eec6741721', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:33:36.000Z'}}, {'blockNum': '0x4c0197', 'uniqueId': '0x0bca205ea0c38d451cb9abe50c08c5dac634909d013eb61cba02caf0f8779c12:log:230', 'hash': '0x0bca205ea0c38d451cb9abe50c08c5dac634909d013eb61cba02caf0f8779c12', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 109.59638548570886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05f0f493eec6741721', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:33:36.000Z'}}, {'blockNum': '0x4c019d', 'uniqueId': '0x8a002799b1a3e7695d9b6a87208fc8beb0800b8fc32d7fceefab9013fabba1fc:log:56', 'hash': '0x8a002799b1a3e7695d9b6a87208fc8beb0800b8fc32d7fceefab9013fabba1fc', 'from': '0x578f3c8454f316293dbd31d8c7806050f3b3e2d8', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 380.57780307693866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14a193f782c77ee087', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:35:02.000Z'}}, {'blockNum': '0x4c019d', 'uniqueId': '0x8a002799b1a3e7695d9b6a87208fc8beb0800b8fc32d7fceefab9013fabba1fc:log:58', 'hash': '0x8a002799b1a3e7695d9b6a87208fc8beb0800b8fc32d7fceefab9013fabba1fc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 380.57780307693866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14a193f782c77ee087', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:35:02.000Z'}}, {'blockNum': '0x4c019e', 'uniqueId': '0xa808f5c50552747e1b63cab5637bd43dca7d08c5ce9bb52a3c64d8ddbdb9ad37:log:41', 'hash': '0xa808f5c50552747e1b63cab5637bd43dca7d08c5ce9bb52a3c64d8ddbdb9ad37', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 450.401482549733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186a93820cb621fa14', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:35:34.000Z'}}, {'blockNum': '0x4c019e', 'uniqueId': '0xa808f5c50552747e1b63cab5637bd43dca7d08c5ce9bb52a3c64d8ddbdb9ad37:log:44', 'hash': '0xa808f5c50552747e1b63cab5637bd43dca7d08c5ce9bb52a3c64d8ddbdb9ad37', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 450.401482549733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186a93820cb621fa14', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:35:34.000Z'}}, {'blockNum': '0x4c01a0', 'uniqueId': '0xd23f48a527a4a0b870cb055091aaf1ef98e2af33adbe329d7af95d9c5a56f5f2:log:251', 'hash': '0xd23f48a527a4a0b870cb055091aaf1ef98e2af33adbe329d7af95d9c5a56f5f2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 45.03882373587312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02710a0b8fd6263d16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:36:18.000Z'}}, {'blockNum': '0x4c01a0', 'uniqueId': '0xd23f48a527a4a0b870cb055091aaf1ef98e2af33adbe329d7af95d9c5a56f5f2:log:254', 'hash': '0xd23f48a527a4a0b870cb055091aaf1ef98e2af33adbe329d7af95d9c5a56f5f2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 45.03882373587312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02710a0b8fd6263d16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:36:18.000Z'}}, {'blockNum': '0x4c01a6', 'uniqueId': '0xb8bf7d37ae2998e78f6e97a180e5e29bd5e959cb19c74e4a12ddcc3de3a4c55d:log:9', 'hash': '0xb8bf7d37ae2998e78f6e97a180e5e29bd5e959cb19c74e4a12ddcc3de3a4c55d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 360.3019209271743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x138831901f331b9506', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:37:37.000Z'}}, {'blockNum': '0x4c01a6', 'uniqueId': '0xb8bf7d37ae2998e78f6e97a180e5e29bd5e959cb19c74e4a12ddcc3de3a4c55d:log:12', 'hash': '0xb8bf7d37ae2998e78f6e97a180e5e29bd5e959cb19c74e4a12ddcc3de3a4c55d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 360.3019209271743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x138831901f331b9506', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:37:37.000Z'}}, {'blockNum': '0x4c01a6', 'uniqueId': '0x078eb22194620b4d603892f089216b380fd157d03f1b154178aca81b6ebb3460:log:114', 'hash': '0x078eb22194620b4d603892f089216b380fd157d03f1b154178aca81b6ebb3460', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 42.68436963272383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02505d58078bf97786', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:37:37.000Z'}}, {'blockNum': '0x4c01a6', 'uniqueId': '0x078eb22194620b4d603892f089216b380fd157d03f1b154178aca81b6ebb3460:log:117', 'hash': '0x078eb22194620b4d603892f089216b380fd157d03f1b154178aca81b6ebb3460', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 42.68436963272383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02505d58078bf97786', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:37:37.000Z'}}, {'blockNum': '0x4c01a8', 'uniqueId': '0x3d6dbf36c392104c6fc863784843e27d8657b20077c42575c6e0e26a6bf51481:log:233', 'hash': '0x3d6dbf36c392104c6fc863784843e27d8657b20077c42575c6e0e26a6bf51481', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 300.2383074539597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1046a4bde60dc84d75', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:38:02.000Z'}}, {'blockNum': '0x4c01a8', 'uniqueId': '0x3d6dbf36c392104c6fc863784843e27d8657b20077c42575c6e0e26a6bf51481:log:236', 'hash': '0x3d6dbf36c392104c6fc863784843e27d8657b20077c42575c6e0e26a6bf51481', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'value': 300.2383074539597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1046a4bde60dc84d75', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:38:02.000Z'}}, {'blockNum': '0x4c01ac', 'uniqueId': '0x083ea6a1ab42e83efb68d2f612d6c1c464d334adbd322b4ccbcd525f047b2e29:log:78', 'hash': '0x083ea6a1ab42e83efb68d2f612d6c1c464d334adbd322b4ccbcd525f047b2e29', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 750.5489543290892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28aff589622e3e7e2d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:39:44.000Z'}}, {'blockNum': '0x4c01ac', 'uniqueId': '0x083ea6a1ab42e83efb68d2f612d6c1c464d334adbd322b4ccbcd525f047b2e29:log:81', 'hash': '0x083ea6a1ab42e83efb68d2f612d6c1c464d334adbd322b4ccbcd525f047b2e29', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 750.5489543290892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28aff589622e3e7e2d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:39:44.000Z'}}, {'blockNum': '0x4c01b5', 'uniqueId': '0x141c9cf04d7de3a2be60d550408f5a0b407601089fbdd08e803f879344bdcfa8:log:16', 'hash': '0x141c9cf04d7de3a2be60d550408f5a0b407601089fbdd08e803f879344bdcfa8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 128.29740918968028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06f47bf5e8c1d45684', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:41:54.000Z'}}, {'blockNum': '0x4c01b5', 'uniqueId': '0x141c9cf04d7de3a2be60d550408f5a0b407601089fbdd08e803f879344bdcfa8:log:19', 'hash': '0x141c9cf04d7de3a2be60d550408f5a0b407601089fbdd08e803f879344bdcfa8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 128.29740918968028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06f47bf5e8c1d45684', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:41:54.000Z'}}, {'blockNum': '0x4c01c5', 'uniqueId': '0xb04ba0cb0b2efcbc8aae2101c282898bd1961a3057676c5766389cce6d8c208d:log:93', 'hash': '0xb04ba0cb0b2efcbc8aae2101c282898bd1961a3057676c5766389cce6d8c208d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 450.29041740026577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186908ece2793748a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:47:43.000Z'}}, {'blockNum': '0x4c01c5', 'uniqueId': '0xb04ba0cb0b2efcbc8aae2101c282898bd1961a3057676c5766389cce6d8c208d:log:96', 'hash': '0xb04ba0cb0b2efcbc8aae2101c282898bd1961a3057676c5766389cce6d8c208d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 450.29041740026577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186908ece2793748a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:47:43.000Z'}}, {'blockNum': '0x4c01c8', 'uniqueId': '0x6bc26872957d56041d2f06e2c7d3582acba7ea9001d33167f63cae512de36744:log:25', 'hash': '0x6bc26872957d56041d2f06e2c7d3582acba7ea9001d33167f63cae512de36744', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 450.2663485844965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1868b36a6c9b1fa217', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:48:37.000Z'}}, {'blockNum': '0x4c01c8', 'uniqueId': '0x6bc26872957d56041d2f06e2c7d3582acba7ea9001d33167f63cae512de36744:log:28', 'hash': '0x6bc26872957d56041d2f06e2c7d3582acba7ea9001d33167f63cae512de36744', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 450.2663485844965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1868b36a6c9b1fa217', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:48:37.000Z'}}, {'blockNum': '0x4c01d3', 'uniqueId': '0x1decca16c733753b28ceab0e1c6b2164931ad0f2544cad48aef8f2624d1b87bd:log:15', 'hash': '0x1decca16c733753b28ceab0e1c6b2164931ad0f2544cad48aef8f2624d1b87bd', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 911.754439464986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x316d227802e7e2c9db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:50:08.000Z'}}, {'blockNum': '0x4c01d3', 'uniqueId': '0x1decca16c733753b28ceab0e1c6b2164931ad0f2544cad48aef8f2624d1b87bd:log:17', 'hash': '0x1decca16c733753b28ceab0e1c6b2164931ad0f2544cad48aef8f2624d1b87bd', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb0e83c2d71a991017e0116d58c5765abc57384af', 'value': 911.754439464986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x316d227802e7e2c9db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:50:08.000Z'}}, {'blockNum': '0x4c01d4', 'uniqueId': '0xf564ce97fc899e0c7827ebe93485920089a42b4e35e67a2904e7d83941014385:log:127', 'hash': '0xf564ce97fc899e0c7827ebe93485920089a42b4e35e67a2904e7d83941014385', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7.204065960851889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x63f9fbd2970f5886', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:50:17.000Z'}}, {'blockNum': '0x4c01d4', 'uniqueId': '0xf564ce97fc899e0c7827ebe93485920089a42b4e35e67a2904e7d83941014385:log:130', 'hash': '0xf564ce97fc899e0c7827ebe93485920089a42b4e35e67a2904e7d83941014385', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 7.204065960851889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x63f9fbd2970f5886', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:50:17.000Z'}}, {'blockNum': '0x4c01d7', 'uniqueId': '0xe4dc913ac5bd3bbaefbb06b56f9b546f85331c44f2d9712de4492ade507e32db:log:36', 'hash': '0xe4dc913ac5bd3bbaefbb06b56f9b546f85331c44f2d9712de4492ade507e32db', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 525.2798741257066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c79b8fe771ca3a56c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:51:24.000Z'}}, {'blockNum': '0x4c01d7', 'uniqueId': '0xe4dc913ac5bd3bbaefbb06b56f9b546f85331c44f2d9712de4492ade507e32db:log:39', 'hash': '0xe4dc913ac5bd3bbaefbb06b56f9b546f85331c44f2d9712de4492ade507e32db', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 525.2798741257066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c79b8fe771ca3a56c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:51:24.000Z'}}, {'blockNum': '0x4c01d9', 'uniqueId': '0x40ccc291b49a249e9a403c429e307c268b5da38077f67df4db153147edd39848:log:20', 'hash': '0x40ccc291b49a249e9a403c429e307c268b5da38077f67df4db153147edd39848', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 600.2797515806382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x208a8e15a4e7aa061d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:51:45.000Z'}}, {'blockNum': '0x4c01d9', 'uniqueId': '0x40ccc291b49a249e9a403c429e307c268b5da38077f67df4db153147edd39848:log:23', 'hash': '0x40ccc291b49a249e9a403c429e307c268b5da38077f67df4db153147edd39848', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 600.2797515806382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x208a8e15a4e7aa061d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:51:45.000Z'}}, {'blockNum': '0x4c01e2', 'uniqueId': '0x9f6326d52fcbfd716d551245e765fedda9c5621f410e1aa2642d7f6ed6f9f40b:log:43', 'hash': '0x9f6326d52fcbfd716d551245e765fedda9c5621f410e1aa2642d7f6ed6f9f40b', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x155cbe8dfb1c23b603776c8edca2c054fb616098', 'value': 14.04774548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc2f39e15fe7fd000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:54:07.000Z'}}, {'blockNum': '0x4c01f8', 'uniqueId': '0xcb58a0014c7691448a3160aeb807de0e9fc523256dc5496185a4bf53e61c5083:log:15', 'hash': '0xcb58a0014c7691448a3160aeb807de0e9fc523256dc5496185a4bf53e61c5083', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe90e640b09fdef82c3e33f2ba2d80d4a784ba0f5', 'value': 334.26848336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x121ee83695e95f4000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:00:58.000Z'}}, {'blockNum': '0x4c01f8', 'uniqueId': '0x57e0324242ff91b0dfe093df00f9c926c5952ff3cf074b74ecc8bc95e58d3980:log:16', 'hash': '0x57e0324242ff91b0dfe093df00f9c926c5952ff3cf074b74ecc8bc95e58d3980', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0096ecc5c5a46e1d9647bf845094698fe1cf7da1', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:00:58.000Z'}}, {'blockNum': '0x4c01fb', 'uniqueId': '0x1ae97f97d840910e7ff1e18d501077faf1a64f23266ad6e636dbab1eede259fa:log:74', 'hash': '0x1ae97f97d840910e7ff1e18d501077faf1a64f23266ad6e636dbab1eede259fa', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 80.71606311742183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0460290fc0d5efd710', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:01:47.000Z'}}, {'blockNum': '0x4c01fb', 'uniqueId': '0x1ae97f97d840910e7ff1e18d501077faf1a64f23266ad6e636dbab1eede259fa:log:76', 'hash': '0x1ae97f97d840910e7ff1e18d501077faf1a64f23266ad6e636dbab1eede259fa', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 80.71606311742183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0460290fc0d5efd710', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:01:47.000Z'}}, {'blockNum': '0x4c0207', 'uniqueId': '0x395345016a3028dad50230e3524a52e3d386203961a5e36701c8163d52ee0f7a:log:22', 'hash': '0x395345016a3028dad50230e3524a52e3d386203961a5e36701c8163d52ee0f7a', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.21724037197257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0816ce21880f807f5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:03:40.000Z'}}, {'blockNum': '0x4c0207', 'uniqueId': '0x395345016a3028dad50230e3524a52e3d386203961a5e36701c8163d52ee0f7a:log:24', 'hash': '0x395345016a3028dad50230e3524a52e3d386203961a5e36701c8163d52ee0f7a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 149.21724037197257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0816ce21880f807f5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:03:40.000Z'}}, {'blockNum': '0x4c0220', 'uniqueId': '0xebc58298614683f03b4b7e947f208a6eab4ba5a50e09e0f9a66a4cd91888641c:log:36', 'hash': '0xebc58298614683f03b4b7e947f208a6eab4ba5a50e09e0f9a66a4cd91888641c', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x9c31d140d8cb10cfbde2db973acf42365176ee85', 'value': 4.10840174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3903f99d834bf600', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:10:40.000Z'}}, {'blockNum': '0x4c022b', 'uniqueId': '0x12e94d867a2898f42c3ab0a101f8a51b3b77f25792e26336e75dda0e51a05fc8:log:135', 'hash': '0x12e94d867a2898f42c3ab0a101f8a51b3b77f25792e26336e75dda0e51a05fc8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 30.013683975829064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a086068e84200ed1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:13:04.000Z'}}, {'blockNum': '0x4c022b', 'uniqueId': '0x12e94d867a2898f42c3ab0a101f8a51b3b77f25792e26336e75dda0e51a05fc8:log:138', 'hash': '0x12e94d867a2898f42c3ab0a101f8a51b3b77f25792e26336e75dda0e51a05fc8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 30.013683975829064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a086068e84200ed1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:13:04.000Z'}}, {'blockNum': '0x4c022d', 'uniqueId': '0xebe4472c6e0f07587711714784f989431ac08ea57119a09829da738c7170c557:log:4', 'hash': '0xebe4472c6e0f07587711714784f989431ac08ea57119a09829da738c7170c557', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x6df2ae57619a58c4ac8db1b849e6a2af1beff51f', 'value': 12.37995831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xabce727db9b1f800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:13:13.000Z'}}, {'blockNum': '0x4c0232', 'uniqueId': '0x1cfa2c5dfd99bcc9a6d54160471dd35c2a56c60ae0ccfd1e15e049f734e50d10:log:20', 'hash': '0x1cfa2c5dfd99bcc9a6d54160471dd35c2a56c60ae0ccfd1e15e049f734e50d10', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 255.11199635727286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd463e10bafff062c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:14:59.000Z'}}, {'blockNum': '0x4c0232', 'uniqueId': '0x1cfa2c5dfd99bcc9a6d54160471dd35c2a56c60ae0ccfd1e15e049f734e50d10:log:23', 'hash': '0x1cfa2c5dfd99bcc9a6d54160471dd35c2a56c60ae0ccfd1e15e049f734e50d10', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 255.11199635727286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd463e10bafff062c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:14:59.000Z'}}, {'blockNum': '0x4c0240', 'uniqueId': '0x9f764d8e27f0f20f8e6fc1a576849e903ea92553c6359e441d43f779b7e7ec19:log:136', 'hash': '0x9f764d8e27f0f20f8e6fc1a576849e903ea92553c6359e441d43f779b7e7ec19', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7.5031770549269545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6820a3c725c85f0f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:18:17.000Z'}}, {'blockNum': '0x4c0240', 'uniqueId': '0x9f764d8e27f0f20f8e6fc1a576849e903ea92553c6359e441d43f779b7e7ec19:log:139', 'hash': '0x9f764d8e27f0f20f8e6fc1a576849e903ea92553c6359e441d43f779b7e7ec19', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 7.5031770549269545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6820a3c725c85f0f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:18:17.000Z'}}, {'blockNum': '0x4c0248', 'uniqueId': '0x1d51af5703aef8a2c1c562e6d6c69ed49bf5dc361d7362c318c7bfd1aa300c37:log:81', 'hash': '0x1d51af5703aef8a2c1c562e6d6c69ed49bf5dc361d7362c318c7bfd1aa300c37', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1320.4550782821188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4794fed1a0724efc35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:19:49.000Z'}}, {'blockNum': '0x4c0248', 'uniqueId': '0x1d51af5703aef8a2c1c562e6d6c69ed49bf5dc361d7362c318c7bfd1aa300c37:log:84', 'hash': '0x1d51af5703aef8a2c1c562e6d6c69ed49bf5dc361d7362c318c7bfd1aa300c37', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1320.4550782821188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4794fed1a0724efc35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:19:49.000Z'}}, {'blockNum': '0x4c0250', 'uniqueId': '0x300bbdb6cf090033b193c68b2a91d8a8538bb6bab06698d1f3665bfada11d549:log:87', 'hash': '0x300bbdb6cf090033b193c68b2a91d8a8538bb6bab06698d1f3665bfada11d549', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 450.1078367204822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18668044b947de0535', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:21:23.000Z'}}, {'blockNum': '0x4c0250', 'uniqueId': '0x300bbdb6cf090033b193c68b2a91d8a8538bb6bab06698d1f3665bfada11d549:log:90', 'hash': '0x300bbdb6cf090033b193c68b2a91d8a8538bb6bab06698d1f3665bfada11d549', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 450.1078367204822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18668044b947de0535', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:21:23.000Z'}}, {'blockNum': '0x4c0252', 'uniqueId': '0xc6d9f7627114c5529dcc5de5693a9794b19146ff711f2e10cb15e5b57c5f4ee6:log:121', 'hash': '0xc6d9f7627114c5529dcc5de5693a9794b19146ff711f2e10cb15e5b57c5f4ee6', 'from': '0xc52a136c05ca1b20d57bd10f0294a56d4193c6c6', 'to': '0x52d4ec0a365297fcc1b07d385b804c4fd26edd7a', 'value': 39.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02242c30b853ee0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:21:37.000Z'}}, {'blockNum': '0x4c0253', 'uniqueId': '0xcb59e0c16ff9ae950a20137f3313d4f6947c383a3383bd6e2d8cade3daaaf582:log:16', 'hash': '0xcb59e0c16ff9ae950a20137f3313d4f6947c383a3383bd6e2d8cade3daaaf582', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xdbea8e1663b36d4df6192009ca8312db9a4b36c4', 'value': 1.87736904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a0dc131f5842000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:22:05.000Z'}}, {'blockNum': '0x4c0269', 'uniqueId': '0x330a11ee5273a7a70594d10379de9b47d5a3b7e1adf05d311bee9082b4fd6df0:log:149', 'hash': '0x330a11ee5273a7a70594d10379de9b47d5a3b7e1adf05d311bee9082b4fd6df0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 353.1589291980881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1325108efd4d5f3882', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:25:41.000Z'}}, {'blockNum': '0x4c0269', 'uniqueId': '0x330a11ee5273a7a70594d10379de9b47d5a3b7e1adf05d311bee9082b4fd6df0:log:152', 'hash': '0x330a11ee5273a7a70594d10379de9b47d5a3b7e1adf05d311bee9082b4fd6df0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 353.1589291980881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1325108efd4d5f3882', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:25:41.000Z'}}, {'blockNum': '0x4c0278', 'uniqueId': '0x63a5bcb029087a2ced8471354f0e250aee9d479a01f7b39e6218c401fea35987:log:54', 'hash': '0x63a5bcb029087a2ced8471354f0e250aee9d479a01f7b39e6218c401fea35987', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1500.1229061241474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5152632b20cc77d040', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:28:57.000Z'}}, {'blockNum': '0x4c0278', 'uniqueId': '0x63a5bcb029087a2ced8471354f0e250aee9d479a01f7b39e6218c401fea35987:log:57', 'hash': '0x63a5bcb029087a2ced8471354f0e250aee9d479a01f7b39e6218c401fea35987', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1500.1229061241474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5152632b20cc77d040', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:28:57.000Z'}}, {'blockNum': '0x4c028d', 'uniqueId': '0x4968b6ea736cf3c90b8fa86f989682f2f93408880729660ae7f7bf3464650e30:log:151', 'hash': '0x4968b6ea736cf3c90b8fa86f989682f2f93408880729660ae7f7bf3464650e30', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 391.4881238804905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1538fd3679f0c1b344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:32:37.000Z'}}, {'blockNum': '0x4c028d', 'uniqueId': '0x4968b6ea736cf3c90b8fa86f989682f2f93408880729660ae7f7bf3464650e30:log:154', 'hash': '0x4968b6ea736cf3c90b8fa86f989682f2f93408880729660ae7f7bf3464650e30', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 391.4881238804905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1538fd3679f0c1b344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:32:37.000Z'}}, {'blockNum': '0x4c0290', 'uniqueId': '0x8e3378a13e8050d72533c51d54a2afb15d7f5d8cc2aac26eb6005b5b457d9d02:log:149', 'hash': '0x8e3378a13e8050d72533c51d54a2afb15d7f5d8cc2aac26eb6005b5b457d9d02', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 294.7143735016202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff9fbc93c6ddd7534', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:33:08.000Z'}}, {'blockNum': '0x4c0290', 'uniqueId': '0x8e3378a13e8050d72533c51d54a2afb15d7f5d8cc2aac26eb6005b5b457d9d02:log:152', 'hash': '0x8e3378a13e8050d72533c51d54a2afb15d7f5d8cc2aac26eb6005b5b457d9d02', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 294.7143735016202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff9fbc93c6ddd7534', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:33:08.000Z'}}, {'blockNum': '0x4c0293', 'uniqueId': '0x367df2225e152e6c87c0b2b73e0dc725ad46cdfccc030e35989be74fcef994b1:log:64', 'hash': '0x367df2225e152e6c87c0b2b73e0dc725ad46cdfccc030e35989be74fcef994b1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1499.7336754925088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x514cfc57ee4df33cf3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:34:21.000Z'}}, {'blockNum': '0x4c0293', 'uniqueId': '0x367df2225e152e6c87c0b2b73e0dc725ad46cdfccc030e35989be74fcef994b1:log:66', 'hash': '0x367df2225e152e6c87c0b2b73e0dc725ad46cdfccc030e35989be74fcef994b1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 1499.7336754925088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x514cfc57ee4df33cf3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:34:21.000Z'}}, {'blockNum': '0x4c0294', 'uniqueId': '0x26b7104fc3a0414c61d04735b6efe9dbdbbf79c9dc2e9d96c80823cc21a1d677:log:60', 'hash': '0x26b7104fc3a0414c61d04735b6efe9dbdbbf79c9dc2e9d96c80823cc21a1d677', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 391.3865587575886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1537946189009e4ac0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:34:36.000Z'}}, {'blockNum': '0x4c0294', 'uniqueId': '0x26b7104fc3a0414c61d04735b6efe9dbdbbf79c9dc2e9d96c80823cc21a1d677:log:63', 'hash': '0x26b7104fc3a0414c61d04735b6efe9dbdbbf79c9dc2e9d96c80823cc21a1d677', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 391.3865587575886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1537946189009e4ac0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:34:36.000Z'}}, {'blockNum': '0x4c02a0', 'uniqueId': '0x07dfc44174d937c16e235d721cb00fb6c79a0df37912c2b9865ca3040dbdbb74:log:157', 'hash': '0x07dfc44174d937c16e235d721cb00fb6c79a0df37912c2b9865ca3040dbdbb74', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.6185947507319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103e0b147a7b1877cf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:36:28.000Z'}}, {'blockNum': '0x4c02a0', 'uniqueId': '0x07dfc44174d937c16e235d721cb00fb6c79a0df37912c2b9865ca3040dbdbb74:log:159', 'hash': '0x07dfc44174d937c16e235d721cb00fb6c79a0df37912c2b9865ca3040dbdbb74', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 299.6185947507319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103e0b147a7b1877cf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:36:28.000Z'}}, {'blockNum': '0x4c02ba', 'uniqueId': '0xd51e7ea1c5a886f42aff9730a15b10dcda7b35df788865411c283639aefc593f:log:144', 'hash': '0xd51e7ea1c5a886f42aff9730a15b10dcda7b35df788865411c283639aefc593f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1.4995837244628774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14cf9773c7912aff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:41:15.000Z'}}, {'blockNum': '0x4c02ba', 'uniqueId': '0xd51e7ea1c5a886f42aff9730a15b10dcda7b35df788865411c283639aefc593f:log:147', 'hash': '0xd51e7ea1c5a886f42aff9730a15b10dcda7b35df788865411c283639aefc593f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1.4995837244628774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14cf9773c7912aff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:41:15.000Z'}}, {'blockNum': '0x4c02bf', 'uniqueId': '0x403ed92961284ecda02b9e6aad6ff48e57d7336cd3d51eb593e133d2ea56034f:log:38', 'hash': '0x403ed92961284ecda02b9e6aad6ff48e57d7336cd3d51eb593e133d2ea56034f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.911379816579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10421b42f1d0723b61', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:42:39.000Z'}}, {'blockNum': '0x4c02bf', 'uniqueId': '0x403ed92961284ecda02b9e6aad6ff48e57d7336cd3d51eb593e133d2ea56034f:log:41', 'hash': '0x403ed92961284ecda02b9e6aad6ff48e57d7336cd3d51eb593e133d2ea56034f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 299.911379816579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10421b42f1d0723b61', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:42:39.000Z'}}, {'blockNum': '0x4c02cb', 'uniqueId': '0xfc7ac2fd9cc5078d2e23a71482153a5c1a35ab757f145174fa0086cff40efac2:log:98', 'hash': '0xfc7ac2fd9cc5078d2e23a71482153a5c1a35ab757f145174fa0086cff40efac2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1499.3967716489904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51484f6bab918f9ab8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:46:53.000Z'}}, {'blockNum': '0x4c02cb', 'uniqueId': '0xfc7ac2fd9cc5078d2e23a71482153a5c1a35ab757f145174fa0086cff40efac2:log:100', 'hash': '0xfc7ac2fd9cc5078d2e23a71482153a5c1a35ab757f145174fa0086cff40efac2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 1499.3967716489904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51484f6bab918f9ab8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:46:53.000Z'}}, {'blockNum': '0x4c02ce', 'uniqueId': '0xc6ca3cad7360ec6cd22131bcbc14714d0561e4411168d9bfa760a742ffc0dc58:log:21', 'hash': '0xc6ca3cad7360ec6cd22131bcbc14714d0561e4411168d9bfa760a742ffc0dc58', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 194.90198131259848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a90ceef5e6d4130a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:48:00.000Z'}}, {'blockNum': '0x4c02ce', 'uniqueId': '0xc6ca3cad7360ec6cd22131bcbc14714d0561e4411168d9bfa760a742ffc0dc58:log:24', 'hash': '0xc6ca3cad7360ec6cd22131bcbc14714d0561e4411168d9bfa760a742ffc0dc58', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x25d4aef414ea092fbcbd83fd30e89e15cf820d0a', 'value': 194.90198131259848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a90ceef5e6d4130a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:48:00.000Z'}}, {'blockNum': '0x4c02d0', 'uniqueId': '0x80f3d0eea2bcd98e0fb66784ef534189104320ebb681728bc407d9714a92fe77:log:67', 'hash': '0x80f3d0eea2bcd98e0fb66784ef534189104320ebb681728bc407d9714a92fe77', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 40.17923250028955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022d994f148f96c545', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:48:21.000Z'}}, {'blockNum': '0x4c02d0', 'uniqueId': '0x80f3d0eea2bcd98e0fb66784ef534189104320ebb681728bc407d9714a92fe77:log:70', 'hash': '0x80f3d0eea2bcd98e0fb66784ef534189104320ebb681728bc407d9714a92fe77', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x8606704880234178125b2d44cbbe190ccdbde015', 'value': 40.17923250028955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022d994f148f96c545', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:48:21.000Z'}}, {'blockNum': '0x4c02d9', 'uniqueId': '0x2edc9c9a79c6e614200b72637927057d2802a1e8f52fcfdbe4ac167c65d2e1a5:log:21', 'hash': '0x2edc9c9a79c6e614200b72637927057d2802a1e8f52fcfdbe4ac167c65d2e1a5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 254.86380308002174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd0f21e9331cd7d7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:49:37.000Z'}}, {'blockNum': '0x4c02d9', 'uniqueId': '0x2edc9c9a79c6e614200b72637927057d2802a1e8f52fcfdbe4ac167c65d2e1a5:log:24', 'hash': '0x2edc9c9a79c6e614200b72637927057d2802a1e8f52fcfdbe4ac167c65d2e1a5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 254.86380308002174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd0f21e9331cd7d7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:49:37.000Z'}}, {'blockNum': '0x4c02db', 'uniqueId': '0x6fc2b3af6b57fef6ef9cff00fe25cfa8ba0517f5f1a691f21541327d65fefcd4:log:23', 'hash': '0x6fc2b3af6b57fef6ef9cff00fe25cfa8ba0517f5f1a691f21541327d65fefcd4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 58.467667573944716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032b66e1e22e9981a3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:50:16.000Z'}}, {'blockNum': '0x4c02db', 'uniqueId': '0x6fc2b3af6b57fef6ef9cff00fe25cfa8ba0517f5f1a691f21541327d65fefcd4:log:26', 'hash': '0x6fc2b3af6b57fef6ef9cff00fe25cfa8ba0517f5f1a691f21541327d65fefcd4', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 58.467667573944716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032b66e1e22e9981a3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:50:16.000Z'}}, {'blockNum': '0x4c02e4', 'uniqueId': '0x8267c6d4e70e29a3d2a6129e06e142cc6fbd48072fe8edc562f58314744fb58d:log:80', 'hash': '0x8267c6d4e70e29a3d2a6129e06e142cc6fbd48072fe8edc562f58314744fb58d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1499.0323936809637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x514340e3d6bd59db90', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:52:54.000Z'}}, {'blockNum': '0x4c02e4', 'uniqueId': '0x8267c6d4e70e29a3d2a6129e06e142cc6fbd48072fe8edc562f58314744fb58d:log:82', 'hash': '0x8267c6d4e70e29a3d2a6129e06e142cc6fbd48072fe8edc562f58314744fb58d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 1499.0323936809637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x514340e3d6bd59db90', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:52:54.000Z'}}, {'blockNum': '0x4c02e4', 'uniqueId': '0xedb2b0a5bcad654618021f959c7a03708deaa142e282375996b6ea37d2ccd6b6:log:90', 'hash': '0xedb2b0a5bcad654618021f959c7a03708deaa142e282375996b6ea37d2ccd6b6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.88857093762078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08201f2d1fc3d32fb3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:52:54.000Z'}}, {'blockNum': '0x4c02e4', 'uniqueId': '0xedb2b0a5bcad654618021f959c7a03708deaa142e282375996b6ea37d2ccd6b6:log:93', 'hash': '0xedb2b0a5bcad654618021f959c7a03708deaa142e282375996b6ea37d2ccd6b6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 149.88857093762078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08201f2d1fc3d32fb3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:52:54.000Z'}}, {'blockNum': '0x4c02e5', 'uniqueId': '0x1fdfbfb3191cf0bd4fdd649d77aaad56bb86319a3871285bfde3488d331f60e3:log:67', 'hash': '0x1fdfbfb3191cf0bd4fdd649d77aaad56bb86319a3871285bfde3488d331f60e3', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 24.91856307206538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0159d08516ff9f9de2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:53:04.000Z'}}, {'blockNum': '0x4c02e5', 'uniqueId': '0x1fdfbfb3191cf0bd4fdd649d77aaad56bb86319a3871285bfde3488d331f60e3:log:70', 'hash': '0x1fdfbfb3191cf0bd4fdd649d77aaad56bb86319a3871285bfde3488d331f60e3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'value': 24.91856307206538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0159d08516ff9f9de2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:53:04.000Z'}}, {'blockNum': '0x4c02ee', 'uniqueId': '0x291ddb9962166e02a14e0b208b28e6960b6b4bf506c6ef6f941866319cc557d3:log:17', 'hash': '0x291ddb9962166e02a14e0b208b28e6960b6b4bf506c6ef6f941866319cc557d3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 719.4280233796109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x270011c7921b1fe256', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:54:56.000Z'}}, {'blockNum': '0x4c02ee', 'uniqueId': '0x291ddb9962166e02a14e0b208b28e6960b6b4bf506c6ef6f941866319cc557d3:log:20', 'hash': '0x291ddb9962166e02a14e0b208b28e6960b6b4bf506c6ef6f941866319cc557d3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 719.4280233796109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x270011c7921b1fe256', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:54:56.000Z'}}, {'blockNum': '0x4c02ef', 'uniqueId': '0x2cbd6b496c58b0dd26e47295659f8752d6e520b05f9885321d84bacf94bf894e:log:38', 'hash': '0x2cbd6b496c58b0dd26e47295659f8752d6e520b05f9885321d84bacf94bf894e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 412.3127942680013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1659fd4ddc24ef0548', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:55:10.000Z'}}, {'blockNum': '0x4c02ef', 'uniqueId': '0x2cbd6b496c58b0dd26e47295659f8752d6e520b05f9885321d84bacf94bf894e:log:41', 'hash': '0x2cbd6b496c58b0dd26e47295659f8752d6e520b05f9885321d84bacf94bf894e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 412.3127942680013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1659fd4ddc24ef0548', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:55:10.000Z'}}, {'blockNum': '0x4c02f8', 'uniqueId': '0x7adc95653d4002fbeb477b5f90b3323b2516084ce899da561edd9fb8f3863885:log:7', 'hash': '0x7adc95653d4002fbeb477b5f90b3323b2516084ce899da561edd9fb8f3863885', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xbed8e4df57dd14395eba5fd520fce2eea4b67212', 'value': 11.73728079, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2e332b114f75800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:56:48.000Z'}}, {'blockNum': '0x4c0304', 'uniqueId': '0x0b24c99dee15a40afafefc01ad528bcd0c452e9bca0ed3ae94483c47fc12f261:log:15', 'hash': '0x0b24c99dee15a40afafefc01ad528bcd0c452e9bca0ed3ae94483c47fc12f261', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 8.992021487154023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7cca13e69a7ec944', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:59:50.000Z'}}, {'blockNum': '0x4c0304', 'uniqueId': '0x0b24c99dee15a40afafefc01ad528bcd0c452e9bca0ed3ae94483c47fc12f261:log:18', 'hash': '0x0b24c99dee15a40afafefc01ad528bcd0c452e9bca0ed3ae94483c47fc12f261', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x25d4aef414ea092fbcbd83fd30e89e15cf820d0a', 'value': 8.992021487154023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7cca13e69a7ec944', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:59:50.000Z'}}, {'blockNum': '0x4c030d', 'uniqueId': '0x58faa223836ce583b5a40ce508bc1757eb95eff805a08fe5ab5e2329544855a4:log:65', 'hash': '0x58faa223836ce583b5a40ce508bc1757eb95eff805a08fe5ab5e2329544855a4', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3341.4209380351595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb52387df893e346523', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:01:55.000Z'}}, {'blockNum': '0x4c030d', 'uniqueId': '0x58faa223836ce583b5a40ce508bc1757eb95eff805a08fe5ab5e2329544855a4:log:67', 'hash': '0x58faa223836ce583b5a40ce508bc1757eb95eff805a08fe5ab5e2329544855a4', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3341.4209380351595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb52387df893e346523', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:01:55.000Z'}}, {'blockNum': '0x4c030e', 'uniqueId': '0x14bb21f73a7abc94494183d9114c6d87770bd1781f791992356887bac7dbc2d2:log:56', 'hash': '0x14bb21f73a7abc94494183d9114c6d87770bd1781f791992356887bac7dbc2d2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.84745384344086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x104138269c57a12159', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:02:23.000Z'}}, {'blockNum': '0x4c030e', 'uniqueId': '0x14bb21f73a7abc94494183d9114c6d87770bd1781f791992356887bac7dbc2d2:log:59', 'hash': '0x14bb21f73a7abc94494183d9114c6d87770bd1781f791992356887bac7dbc2d2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 299.84745384344086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x104138269c57a12159', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:02:23.000Z'}}, {'blockNum': '0x4c0312', 'uniqueId': '0x4f29cbf49167e15de6964a0a6bac4a875c5410f7b72ce84e060e64e7580c9e99:log:22', 'hash': '0x4f29cbf49167e15de6964a0a6bac4a875c5410f7b72ce84e060e64e7580c9e99', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.8367824149911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1041123d00c9a20159', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:03:19.000Z'}}, {'blockNum': '0x4c0312', 'uniqueId': '0x4f29cbf49167e15de6964a0a6bac4a875c5410f7b72ce84e060e64e7580c9e99:log:25', 'hash': '0x4f29cbf49167e15de6964a0a6bac4a875c5410f7b72ce84e060e64e7580c9e99', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 299.8367824149911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1041123d00c9a20159', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:03:19.000Z'}}, {'blockNum': '0x4c0317', 'uniqueId': '0x64677e4c5b6d67bdd0632aef4858e1fba37bc8b99d25e2de984bf20d7c233dbc:log:47', 'hash': '0x64677e4c5b6d67bdd0632aef4858e1fba37bc8b99d25e2de984bf20d7c233dbc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.8261117882907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1040ec541fe7a08094', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:04:41.000Z'}}, {'blockNum': '0x4c0317', 'uniqueId': '0x64677e4c5b6d67bdd0632aef4858e1fba37bc8b99d25e2de984bf20d7c233dbc:log:50', 'hash': '0x64677e4c5b6d67bdd0632aef4858e1fba37bc8b99d25e2de984bf20d7c233dbc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 299.8261117882907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1040ec541fe7a08094', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:04:41.000Z'}}, {'blockNum': '0x4c0317', 'uniqueId': '0x987360ce0bea0a4bea467f31cecda3ef8dcdd4fec1233318ab867e9603d03c7d:log:66', 'hash': '0x987360ce0bea0a4bea467f31cecda3ef8dcdd4fec1233318ab867e9603d03c7d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 202.37659362253518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0af88a17a99ccb3bcb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:04:41.000Z'}}, {'blockNum': '0x4c0317', 'uniqueId': '0x987360ce0bea0a4bea467f31cecda3ef8dcdd4fec1233318ab867e9603d03c7d:log:69', 'hash': '0x987360ce0bea0a4bea467f31cecda3ef8dcdd4fec1233318ab867e9603d03c7d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 202.37659362253518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0af88a17a99ccb3bcb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:04:41.000Z'}}, {'blockNum': '0x4c0321', 'uniqueId': '0x1a8ae4fcdcc5747b145145e80a370e0602a4fe955e774d57d73785899ca31a6e:log:22', 'hash': '0x1a8ae4fcdcc5747b145145e80a370e0602a4fe955e774d57d73785899ca31a6e', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xfb5e97b1c721f233f78c652727ea4a306d8b65ec', 'value': 10.94681106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x97eae2a90e9e0800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:07:16.000Z'}}, {'blockNum': '0x4c0326', 'uniqueId': '0xbdf1a68bfc1b37d247528ab671f9afdc51edf87ae3045cfc656d0c11dcd84092:log:267', 'hash': '0xbdf1a68bfc1b37d247528ab671f9afdc51edf87ae3045cfc656d0c11dcd84092', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 405.5722315039989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15fc7203bd3658d5f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:08:05.000Z'}}, {'blockNum': '0x4c0326', 'uniqueId': '0xbdf1a68bfc1b37d247528ab671f9afdc51edf87ae3045cfc656d0c11dcd84092:log:269', 'hash': '0xbdf1a68bfc1b37d247528ab671f9afdc51edf87ae3045cfc656d0c11dcd84092', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 405.5722315039989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15fc7203bd3658d5f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:08:05.000Z'}}, {'blockNum': '0x4c032c', 'uniqueId': '0xf90ba90df2c70e0b08417b53b7370f9227dd42562736fbc62fabca95b2c4f3ba:log:63', 'hash': '0xf90ba90df2c70e0b08417b53b7370f9227dd42562736fbc62fabca95b2c4f3ba', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.9965580265687395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x53380dc108a5aa31', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:09:49.000Z'}}, {'blockNum': '0x4c032c', 'uniqueId': '0xf90ba90df2c70e0b08417b53b7370f9227dd42562736fbc62fabca95b2c4f3ba:log:66', 'hash': '0xf90ba90df2c70e0b08417b53b7370f9227dd42562736fbc62fabca95b2c4f3ba', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 5.9965580265687395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x53380dc108a5aa31', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:09:49.000Z'}}, {'blockNum': '0x4c0335', 'uniqueId': '0x96c8d44aea621688e58d2af5339bd3f99782e0333d71ab545de9188876821147:log:145', 'hash': '0x96c8d44aea621688e58d2af5339bd3f99782e0333d71ab545de9188876821147', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 559.8179937805729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e59090b4cf2e2eec7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:13:23.000Z'}}, {'blockNum': '0x4c0335', 'uniqueId': '0x96c8d44aea621688e58d2af5339bd3f99782e0333d71ab545de9188876821147:log:147', 'hash': '0x96c8d44aea621688e58d2af5339bd3f99782e0333d71ab545de9188876821147', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 559.8179937805729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e59090b4cf2e2eec7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:13:23.000Z'}}, {'blockNum': '0x4c033b', 'uniqueId': '0xe0d09dc625c88c95664fc68797d9c2ee17c8d35b44b8a6dc6013860d7bf58153:log:60', 'hash': '0xe0d09dc625c88c95664fc68797d9c2ee17c8d35b44b8a6dc6013860d7bf58153', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 393.2758601235915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1551cc871e1ae13a58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:15:39.000Z'}}, {'blockNum': '0x4c033b', 'uniqueId': '0xe0d09dc625c88c95664fc68797d9c2ee17c8d35b44b8a6dc6013860d7bf58153:log:62', 'hash': '0xe0d09dc625c88c95664fc68797d9c2ee17c8d35b44b8a6dc6013860d7bf58153', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 393.2758601235915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1551cc871e1ae13a58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:15:39.000Z'}}, {'blockNum': '0x4c033e', 'uniqueId': '0x43888bff7bb73c2447440e16a93b26de1b70be3ad722b4004b29af2b8f5d30ab:log:20', 'hash': '0x43888bff7bb73c2447440e16a93b26de1b70be3ad722b4004b29af2b8f5d30ab', 'from': '0xcbc11045932ab142a8d0ddb1f6728107471d8c2f', 'to': '0x292522e1901e09ad2a0039632b63ea79466f21f4', 'value': 4.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45400a8fd5330000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:16:04.000Z'}}, {'blockNum': '0x4c0341', 'uniqueId': '0x1e753bdfc5439b4c4d474af6005af00f12fb8e901eedfdfcd27820f886712f03:log:78', 'hash': '0x1e753bdfc5439b4c4d474af6005af00f12fb8e901eedfdfcd27820f886712f03', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1.499308445175932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14ce9d1653746434', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:17:18.000Z'}}, {'blockNum': '0x4c0341', 'uniqueId': '0x1e753bdfc5439b4c4d474af6005af00f12fb8e901eedfdfcd27820f886712f03:log:81', 'hash': '0x1e753bdfc5439b4c4d474af6005af00f12fb8e901eedfdfcd27820f886712f03', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 1.499308445175932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14ce9d1653746434', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:17:18.000Z'}}, {'blockNum': '0x4c0342', 'uniqueId': '0x5d9fcf5b5d06b99c935684fc4d7509ab15c397b213fd039467545e8ad1afff71:log:34', 'hash': '0x5d9fcf5b5d06b99c935684fc4d7509ab15c397b213fd039467545e8ad1afff71', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.85632603811933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x104157abd323d1195c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:17:27.000Z'}}, {'blockNum': '0x4c0342', 'uniqueId': '0x5d9fcf5b5d06b99c935684fc4d7509ab15c397b213fd039467545e8ad1afff71:log:37', 'hash': '0x5d9fcf5b5d06b99c935684fc4d7509ab15c397b213fd039467545e8ad1afff71', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 299.85632603811933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x104157abd323d1195c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:17:27.000Z'}}, {'blockNum': '0x4c0348', 'uniqueId': '0x47ce8d0e2541992605c68d7d4e9ac1ec1507614299a086ad7d9db042ba05e7ae:log:42', 'hash': '0x47ce8d0e2541992605c68d7d4e9ac1ec1507614299a086ad7d9db042ba05e7ae', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 622.259437171473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21bb959d3c5425b1d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:19:13.000Z'}}, {'blockNum': '0x4c0348', 'uniqueId': '0x47ce8d0e2541992605c68d7d4e9ac1ec1507614299a086ad7d9db042ba05e7ae:log:44', 'hash': '0x47ce8d0e2541992605c68d7d4e9ac1ec1507614299a086ad7d9db042ba05e7ae', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 622.259437171473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21bb959d3c5425b1d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:19:13.000Z'}}, {'blockNum': '0x4c034e', 'uniqueId': '0x28497901fd5a2677589aae24de03f544a8bda11460026d0f589acfef1f28e5d2:log:141', 'hash': '0x28497901fd5a2677589aae24de03f544a8bda11460026d0f589acfef1f28e5d2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.069259590731324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3878ea09b464596c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:20:35.000Z'}}, {'blockNum': '0x4c034e', 'uniqueId': '0x28497901fd5a2677589aae24de03f544a8bda11460026d0f589acfef1f28e5d2:log:144', 'hash': '0x28497901fd5a2677589aae24de03f544a8bda11460026d0f589acfef1f28e5d2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xe86d3a9bada1b7adcc32abde0522861b1dc7973a', 'value': 4.069259590731324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3878ea09b464596c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:20:35.000Z'}}, {'blockNum': '0x4c0352', 'uniqueId': '0x2927752f5f6d1b813c7f79ec81422ad145198ccef4ef820a3c17a12bd4018034:log:140', 'hash': '0x2927752f5f6d1b813c7f79ec81422ad145198ccef4ef820a3c17a12bd4018034', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 8.835451247447011, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7a9dd418ea5c71a4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:21:41.000Z'}}, {'blockNum': '0x4c0352', 'uniqueId': '0x2927752f5f6d1b813c7f79ec81422ad145198ccef4ef820a3c17a12bd4018034:log:142', 'hash': '0x2927752f5f6d1b813c7f79ec81422ad145198ccef4ef820a3c17a12bd4018034', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 8.835451247447011, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7a9dd418ea5c71a4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:21:41.000Z'}}, {'blockNum': '0x4c035e', 'uniqueId': '0x02f49b4f81309471cc975d31d3f29082f5c7072322a743ed5c526a360bb337ae:log:70', 'hash': '0x02f49b4f81309471cc975d31d3f29082f5c7072322a743ed5c526a360bb337ae', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 224.9019786490967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c312455ffe5e53a1b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:25:29.000Z'}}, {'blockNum': '0x4c035e', 'uniqueId': '0x02f49b4f81309471cc975d31d3f29082f5c7072322a743ed5c526a360bb337ae:log:73', 'hash': '0x02f49b4f81309471cc975d31d3f29082f5c7072322a743ed5c526a360bb337ae', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 224.9019786490967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c312455ffe5e53a1b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:25:29.000Z'}}, {'blockNum': '0x4c0360', 'uniqueId': '0xfa2aee36e2fe792f18da54537d8457ff65cc518ac45886b682973c2c37994619:log:52', 'hash': '0xfa2aee36e2fe792f18da54537d8457ff65cc518ac45886b682973c2c37994619', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 17.63408462883857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf4b8da8a611954ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:25:51.000Z'}}, {'blockNum': '0x4c0360', 'uniqueId': '0xfa2aee36e2fe792f18da54537d8457ff65cc518ac45886b682973c2c37994619:log:54', 'hash': '0xfa2aee36e2fe792f18da54537d8457ff65cc518ac45886b682973c2c37994619', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 17.63408462883857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf4b8da8a611954ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:25:51.000Z'}}, {'blockNum': '0x4c0362', 'uniqueId': '0xff4e8578201764312edd08073fda82f975ddeaf92663b45258fd77b5f3b57f72:log:33', 'hash': '0xff4e8578201764312edd08073fda82f975ddeaf92663b45258fd77b5f3b57f72', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 355.03624922497903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x133f1e239b81ede60d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:25:57.000Z'}}, {'blockNum': '0x4c0362', 'uniqueId': '0xff4e8578201764312edd08073fda82f975ddeaf92663b45258fd77b5f3b57f72:log:36', 'hash': '0xff4e8578201764312edd08073fda82f975ddeaf92663b45258fd77b5f3b57f72', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'value': 355.03624922497903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x133f1e239b81ede60d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:25:57.000Z'}}, {'blockNum': '0x4c0362', 'uniqueId': '0xcb2d1ae84a9d7f1222209d359d7259738df6284100511fc393e69c8d6ec2fc43:log:51', 'hash': '0xcb2d1ae84a9d7f1222209d359d7259738df6284100511fc393e69c8d6ec2fc43', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.93163086743442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0820b827e6f06bbfe6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:25:57.000Z'}}, {'blockNum': '0x4c0362', 'uniqueId': '0xcb2d1ae84a9d7f1222209d359d7259738df6284100511fc393e69c8d6ec2fc43:log:54', 'hash': '0xcb2d1ae84a9d7f1222209d359d7259738df6284100511fc393e69c8d6ec2fc43', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 149.93163086743442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0820b827e6f06bbfe6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:25:57.000Z'}}, {'blockNum': '0x4c0362', 'uniqueId': '0xb361f658cef8b9a759e85f0e14ca2089e5216f1d698abdd49ce358ca58786487:log:68', 'hash': '0xb361f658cef8b9a759e85f0e14ca2089e5216f1d698abdd49ce358ca58786487', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 494.755451499264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ad21c75cfd5a25cd6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:25:57.000Z'}}, {'blockNum': '0x4c0362', 'uniqueId': '0xb361f658cef8b9a759e85f0e14ca2089e5216f1d698abdd49ce358ca58786487:log:71', 'hash': '0xb361f658cef8b9a759e85f0e14ca2089e5216f1d698abdd49ce358ca58786487', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xc11cce040583640001f5a7e945dfd82f662cc0ae', 'value': 494.755451499264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ad21c75cfd5a25cd6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:25:57.000Z'}}, {'blockNum': '0x4c0366', 'uniqueId': '0xb2181f00867c91a3383de8129338fc95109b5ec1e92c6540de99de98e0e6bd10:log:15', 'hash': '0xb2181f00867c91a3383de8129338fc95109b5ec1e92c6540de99de98e0e6bd10', 'from': '0xd8e2823cbaf8db721443235cbca5d78b7a536b73', 'to': '0xf8c92faa9ff833e1abe1917a13a060fc0586089f', 'value': 605.6429314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20d4fbed464745d000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:27:01.000Z'}}, {'blockNum': '0x4c0369', 'uniqueId': '0x385f77d55dd9dd7d9db56c40a5d8d4344dd2387ea27f5f41d6e1afb01b1910df:log:120', 'hash': '0x385f77d55dd9dd7d9db56c40a5d8d4344dd2387ea27f5f41d6e1afb01b1910df', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 16.31702098103147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe271b42186fa0117', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:27:33.000Z'}}, {'blockNum': '0x4c0369', 'uniqueId': '0x385f77d55dd9dd7d9db56c40a5d8d4344dd2387ea27f5f41d6e1afb01b1910df:log:123', 'hash': '0x385f77d55dd9dd7d9db56c40a5d8d4344dd2387ea27f5f41d6e1afb01b1910df', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xe86d3a9bada1b7adcc32abde0522861b1dc7973a', 'value': 16.31702098103147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe271b42186fa0117', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:27:33.000Z'}}, {'blockNum': '0x4c037d', 'uniqueId': '0x427c5036f733a2c6613e52ff7d5bf3482ddd92a021844951d3e6b613b1cb40cd:log:131', 'hash': '0x427c5036f733a2c6613e52ff7d5bf3482ddd92a021844951d3e6b613b1cb40cd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1499.0786421519863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5143e5329404106d5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:32:32.000Z'}}, {'blockNum': '0x4c037d', 'uniqueId': '0x427c5036f733a2c6613e52ff7d5bf3482ddd92a021844951d3e6b613b1cb40cd:log:133', 'hash': '0x427c5036f733a2c6613e52ff7d5bf3482ddd92a021844951d3e6b613b1cb40cd', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 1499.0786421519863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5143e5329404106d5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:32:32.000Z'}}, {'blockNum': '0x4c0383', 'uniqueId': '0x2aebc160da6c40ddff2e499c7a78ea4ba52b75d504bb5d0cca6e3e6136fa4fc7:log:77', 'hash': '0x2aebc160da6c40ddff2e499c7a78ea4ba52b75d504bb5d0cca6e3e6136fa4fc7', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 334.06354062721334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x121c101c4186534973', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:34:07.000Z'}}, {'blockNum': '0x4c0383', 'uniqueId': '0x2aebc160da6c40ddff2e499c7a78ea4ba52b75d504bb5d0cca6e3e6136fa4fc7:log:79', 'hash': '0x2aebc160da6c40ddff2e499c7a78ea4ba52b75d504bb5d0cca6e3e6136fa4fc7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 334.06354062721334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x121c101c4186534973', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:34:07.000Z'}}, {'blockNum': '0x4c0385', 'uniqueId': '0xa58133c64cbde8a4c37a38b1dacd332560d345878daf0b19677594d796a8068e:log:35', 'hash': '0xa58133c64cbde8a4c37a38b1dacd332560d345878daf0b19677594d796a8068e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2997.4761546243108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa27e5689524de5f323', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:34:45.000Z'}}, {'blockNum': '0x4c0385', 'uniqueId': '0xa58133c64cbde8a4c37a38b1dacd332560d345878daf0b19677594d796a8068e:log:37', 'hash': '0xa58133c64cbde8a4c37a38b1dacd332560d345878daf0b19677594d796a8068e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2997.4761546243108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa27e5689524de5f323', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:34:45.000Z'}}, {'blockNum': '0x4c0387', 'uniqueId': '0x03540a6bb81d773d0e70edf71f2e7c6f85305bc4f7ebf8ec5cc2035123eb9b0d:log:1', 'hash': '0x03540a6bb81d773d0e70edf71f2e7c6f85305bc4f7ebf8ec5cc2035123eb9b0d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x84bc7f0528179dfdc072349f9aede07185e23a42', 'value': 28.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0189fd8a9555570000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:34:59.000Z'}}, {'blockNum': '0x4c0387', 'uniqueId': '0xc8193686c3bbac4632ca56f128327ef07135e5fb159ee0dee6eb7460807d1f63:log:55', 'hash': '0xc8193686c3bbac4632ca56f128327ef07135e5fb159ee0dee6eb7460807d1f63', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 97.39954597473809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0547b0b304e4978989', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:34:59.000Z'}}, {'blockNum': '0x4c0387', 'uniqueId': '0xc8193686c3bbac4632ca56f128327ef07135e5fb159ee0dee6eb7460807d1f63:log:57', 'hash': '0xc8193686c3bbac4632ca56f128327ef07135e5fb159ee0dee6eb7460807d1f63', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 97.39954597473809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0547b0b304e4978989', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:34:59.000Z'}}, {'blockNum': '0x4c0388', 'uniqueId': '0xe0c2c0de018c6645e5040553403cf2fa5f8dba8b19d5a8623bbe03a3981542c0:log:71', 'hash': '0xe0c2c0de018c6645e5040553403cf2fa5f8dba8b19d5a8623bbe03a3981542c0', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 57.9201907945183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0323cddaa73e1cff7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:35:05.000Z'}}, {'blockNum': '0x4c0388', 'uniqueId': '0xe0c2c0de018c6645e5040553403cf2fa5f8dba8b19d5a8623bbe03a3981542c0:log:73', 'hash': '0xe0c2c0de018c6645e5040553403cf2fa5f8dba8b19d5a8623bbe03a3981542c0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 57.9201907945183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0323cddaa73e1cff7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:35:05.000Z'}}, {'blockNum': '0x4c038d', 'uniqueId': '0x8c3ef0962c6cf9c2a66f8f8603bb24186692d6907812a2f11830bc7a5c0539cf:log:43', 'hash': '0x8c3ef0962c6cf9c2a66f8f8603bb24186692d6907812a2f11830bc7a5c0539cf', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4494.298497457877, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf3a2ebbf9fbc96b1c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:36:18.000Z'}}, {'blockNum': '0x4c038d', 'uniqueId': '0x8c3ef0962c6cf9c2a66f8f8603bb24186692d6907812a2f11830bc7a5c0539cf:log:45', 'hash': '0x8c3ef0962c6cf9c2a66f8f8603bb24186692d6907812a2f11830bc7a5c0539cf', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4494.298497457877, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf3a2ebbf9fbc96b1c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:36:18.000Z'}}, {'blockNum': '0x4c039a', 'uniqueId': '0xc17245802bf060331b8f09c94e73f5899cbb9f77cfc44f78b8a7c8824df1d2c6:log:88', 'hash': '0xc17245802bf060331b8f09c94e73f5899cbb9f77cfc44f78b8a7c8824df1d2c6', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3169.093756213147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xabcc02bcb2910525ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:40:10.000Z'}}, {'blockNum': '0x4c039a', 'uniqueId': '0xc17245802bf060331b8f09c94e73f5899cbb9f77cfc44f78b8a7c8824df1d2c6:log:90', 'hash': '0xc17245802bf060331b8f09c94e73f5899cbb9f77cfc44f78b8a7c8824df1d2c6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3169.093756213147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xabcc02bcb2910525ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:40:10.000Z'}}, {'blockNum': '0x4c03a1', 'uniqueId': '0x1255e7d0e545a9739e4f94bf7acd0a5eb3aa57a83d239b4aa20a7468c0f3e974:log:29', 'hash': '0x1255e7d0e545a9739e4f94bf7acd0a5eb3aa57a83d239b4aa20a7468c0f3e974', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 74.91283949303381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040f9fde9d1a225288', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:41:38.000Z'}}, {'blockNum': '0x4c03a1', 'uniqueId': '0x1255e7d0e545a9739e4f94bf7acd0a5eb3aa57a83d239b4aa20a7468c0f3e974:log:32', 'hash': '0x1255e7d0e545a9739e4f94bf7acd0a5eb3aa57a83d239b4aa20a7468c0f3e974', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 74.91283949303381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040f9fde9d1a225288', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:41:38.000Z'}}, {'blockNum': '0x4c03a2', 'uniqueId': '0x332a0c0ab33bbcd6dea083637d85e0cccb73bbf711707866067b3d9357d2e21a:log:59', 'hash': '0x332a0c0ab33bbcd6dea083637d85e0cccb73bbf711707866067b3d9357d2e21a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 55.4628583090615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0301b3a7c6fb6ee9de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:41:52.000Z'}}, {'blockNum': '0x4c03a2', 'uniqueId': '0x332a0c0ab33bbcd6dea083637d85e0cccb73bbf711707866067b3d9357d2e21a:log:62', 'hash': '0x332a0c0ab33bbcd6dea083637d85e0cccb73bbf711707866067b3d9357d2e21a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 55.4628583090615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0301b3a7c6fb6ee9de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:41:52.000Z'}}, {'blockNum': '0x4c03a2', 'uniqueId': '0x31d2454a317400e68608eeb522a480bf012862470906dc33f6dd90d6f5da0f58:log:82', 'hash': '0x31d2454a317400e68608eeb522a480bf012862470906dc33f6dd90d6f5da0f58', 'from': '0xff79b6660b02b4625e4faef219f297cb58c878c6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1705.7538979283893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c781734b1c38fb6ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:41:52.000Z'}}, {'blockNum': '0x4c03a2', 'uniqueId': '0x31d2454a317400e68608eeb522a480bf012862470906dc33f6dd90d6f5da0f58:log:84', 'hash': '0x31d2454a317400e68608eeb522a480bf012862470906dc33f6dd90d6f5da0f58', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x858a5e79f27b938be9944c642c5305a829f4cb96', 'value': 1705.7538979283893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c781734b1c38fb6ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:41:52.000Z'}}, {'blockNum': '0x4c03a4', 'uniqueId': '0x37f30f34e692085fa2c303adbaab2ca7b09cce25b8728ad1cfb17b64e13171d7:log:58', 'hash': '0x37f30f34e692085fa2c303adbaab2ca7b09cce25b8728ad1cfb17b64e13171d7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1498.107072603685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5136697d38bafb2fe8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:42:43.000Z'}}, {'blockNum': '0x4c03a4', 'uniqueId': '0x37f30f34e692085fa2c303adbaab2ca7b09cce25b8728ad1cfb17b64e13171d7:log:60', 'hash': '0x37f30f34e692085fa2c303adbaab2ca7b09cce25b8728ad1cfb17b64e13171d7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 1498.107072603685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5136697d38bafb2fe8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:42:43.000Z'}}, {'blockNum': '0x4c03ab', 'uniqueId': '0x50665bfdf6406b3f73e1e0d2d1887cdd9c7586b59807be0f2685309f30ba09ab:log:48', 'hash': '0x50665bfdf6406b3f73e1e0d2d1887cdd9c7586b59807be0f2685309f30ba09ab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 37.44926415675875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0207b68355fb5faa8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:44:02.000Z'}}, {'blockNum': '0x4c03ab', 'uniqueId': '0x50665bfdf6406b3f73e1e0d2d1887cdd9c7586b59807be0f2685309f30ba09ab:log:51', 'hash': '0x50665bfdf6406b3f73e1e0d2d1887cdd9c7586b59807be0f2685309f30ba09ab', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 37.44926415675875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0207b68355fb5faa8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:44:02.000Z'}}, {'blockNum': '0x4c03ac', 'uniqueId': '0x77a13e8f9642be7ffe2a50ded8cf44b4663757f57356fa229da3cc58fc45af9a:log:22', 'hash': '0x77a13e8f9642be7ffe2a50ded8cf44b4663757f57356fa229da3cc58fc45af9a', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x1958f11200c9c5e4b1e185ddef8acd22b05de89a', 'value': 96.54811778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x053bdfd1964979c000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:44:28.000Z'}}, {'blockNum': '0x4c03af', 'uniqueId': '0x76c82a2132c06b6c762f7153536e77bc37374493486c35a6981f763c17e34712:log:42', 'hash': '0x76c82a2132c06b6c762f7153536e77bc37374493486c35a6981f763c17e34712', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 243.36346010320668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3158b191a994f7bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:45:22.000Z'}}, {'blockNum': '0x4c03af', 'uniqueId': '0x76c82a2132c06b6c762f7153536e77bc37374493486c35a6981f763c17e34712:log:45', 'hash': '0x76c82a2132c06b6c762f7153536e77bc37374493486c35a6981f763c17e34712', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 243.36346010320668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3158b191a994f7bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:45:22.000Z'}}, {'blockNum': '0x4c03b5', 'uniqueId': '0xac6928d7a457f6895e157aa620e1c894e1784b2c2db73322400168b8d9a4391d:log:45', 'hash': '0xac6928d7a457f6895e157aa620e1c894e1784b2c2db73322400168b8d9a4391d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 898.7064518231048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30b80eb461dbde73af', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:47:16.000Z'}}, {'blockNum': '0x4c03b5', 'uniqueId': '0xac6928d7a457f6895e157aa620e1c894e1784b2c2db73322400168b8d9a4391d:log:48', 'hash': '0xac6928d7a457f6895e157aa620e1c894e1784b2c2db73322400168b8d9a4391d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff79b6660b02b4625e4faef219f297cb58c878c6', 'value': 898.7064518231048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30b80eb461dbde73af', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:47:16.000Z'}}, {'blockNum': '0x4c03b9', 'uniqueId': '0xef808f28019a49880f1006f5522fe57e52efeac24b342118a0488b1042c20bcb:log:2', 'hash': '0xef808f28019a49880f1006f5522fe57e52efeac24b342118a0488b1042c20bcb', 'from': '0x858a5e79f27b938be9944c642c5305a829f4cb96', 'to': '0x7dc0b9f537e6839c25f5188079a226e886d4a91e', 'value': 1705.7538979283893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c781734b1c38fb6ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:47:56.000Z'}}, {'blockNum': '0x4c03bf', 'uniqueId': '0xcbf7e5dc08f4fd229bff63908cdb199a25466775624b3d19add7817930d7adfc:log:76', 'hash': '0xcbf7e5dc08f4fd229bff63908cdb199a25466775624b3d19add7817930d7adfc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 449.31728180693705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185b87a737ea91036e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:49:56.000Z'}}, {'blockNum': '0x4c03bf', 'uniqueId': '0xcbf7e5dc08f4fd229bff63908cdb199a25466775624b3d19add7817930d7adfc:log:79', 'hash': '0xcbf7e5dc08f4fd229bff63908cdb199a25466775624b3d19add7817930d7adfc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff79b6660b02b4625e4faef219f297cb58c878c6', 'value': 449.31728180693705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185b87a737ea91036e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:49:56.000Z'}}, {'blockNum': '0x4c03c8', 'uniqueId': '0x48ac081267eb6ad739eb3cbfcb327f2bd8995605dcbacda3e9b511e268b2fdc1:log:58', 'hash': '0x48ac081267eb6ad739eb3cbfcb327f2bd8995605dcbacda3e9b511e268b2fdc1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.365788456677789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4a771c2c142bce65', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:53:00.000Z'}}, {'blockNum': '0x4c03c8', 'uniqueId': '0x48ac081267eb6ad739eb3cbfcb327f2bd8995605dcbacda3e9b511e268b2fdc1:log:61', 'hash': '0x48ac081267eb6ad739eb3cbfcb327f2bd8995605dcbacda3e9b511e268b2fdc1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 5.365788456677789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4a771c2c142bce65', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:53:00.000Z'}}, {'blockNum': '0x4c03d2', 'uniqueId': '0x3e49fb3f0e8ccc98627ff7af43195a8377d5c930b40c9bf5189299f7bf72ac90:log:8', 'hash': '0x3e49fb3f0e8ccc98627ff7af43195a8377d5c930b40c9bf5189299f7bf72ac90', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x75899b563abe70a150eaf578918e613de6e2bc99', 'value': 162.74721578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08d292427aeebf8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:54:16.000Z'}}, {'blockNum': '0x4c03d9', 'uniqueId': '0x7f410fb2bf63c2b78cf778d564f143c32094d95f2238fadf4346b3fa3f89697e:log:12', 'hash': '0x7f410fb2bf63c2b78cf778d564f143c32094d95f2238fadf4346b3fa3f89697e', 'from': '0xa10d5531ef4fbfff688e1f075e4e2efc315a5a89', 'to': '0xd47b885d78b1de415a50cc8d2e1dfbf9f1b524a7', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02c3c465ca58ec0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:55:27.000Z'}}, {'blockNum': '0x4c03e2', 'uniqueId': '0x8f61c3a91e55ad7c833e7c4d1fcb4df8f188b5943a71796d17fb869313cf9ccc:log:43', 'hash': '0x8f61c3a91e55ad7c833e7c4d1fcb4df8f188b5943a71796d17fb869313cf9ccc', 'from': '0x00e39906dfe73c8bf88be8781627149268bfe504', 'to': '0x5a301fa4cadd44106ffbab13df73134c3217620a', 'value': 1e-17, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:57:28.000Z'}}, {'blockNum': '0x4c03e3', 'uniqueId': '0xb36e26e1ae0a9bea3649d12d7913addacc1a1115c77e82b84eebda183ebb4758:log:55', 'hash': '0xb36e26e1ae0a9bea3649d12d7913addacc1a1115c77e82b84eebda183ebb4758', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1423.0189295372834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d245ad0efce65780f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:57:39.000Z'}}, {'blockNum': '0x4c03e3', 'uniqueId': '0xb36e26e1ae0a9bea3649d12d7913addacc1a1115c77e82b84eebda183ebb4758:log:57', 'hash': '0xb36e26e1ae0a9bea3649d12d7913addacc1a1115c77e82b84eebda183ebb4758', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1423.0189295372834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d245ad0efce65780f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:57:39.000Z'}}, {'blockNum': '0x4c03e8', 'uniqueId': '0xdee3e2249730d451a087bbf10cc1c8361871474b47e937ea46f1e3de5d4b3d05:log:19', 'hash': '0xdee3e2249730d451a087bbf10cc1c8361871474b47e937ea46f1e3de5d4b3d05', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 37.786185670255286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x020c637faad4858faf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:58:36.000Z'}}, {'blockNum': '0x4c03e8', 'uniqueId': '0xdee3e2249730d451a087bbf10cc1c8361871474b47e937ea46f1e3de5d4b3d05:log:22', 'hash': '0xdee3e2249730d451a087bbf10cc1c8361871474b47e937ea46f1e3de5d4b3d05', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'value': 37.786185670255286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x020c637faad4858faf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:58:36.000Z'}}, {'blockNum': '0x4c03ec', 'uniqueId': '0xa3297853163a9cdcb8a8253198cc802c880c8aaf09b8dc7792a1ae47908e0875:log:44', 'hash': '0xa3297853163a9cdcb8a8253198cc802c880c8aaf09b8dc7792a1ae47908e0875', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.7184770205051825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x417b65d9c00e0f60', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:00:00.000Z'}}, {'blockNum': '0x4c03ec', 'uniqueId': '0xa3297853163a9cdcb8a8253198cc802c880c8aaf09b8dc7792a1ae47908e0875:log:47', 'hash': '0xa3297853163a9cdcb8a8253198cc802c880c8aaf09b8dc7792a1ae47908e0875', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 4.7184770205051825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x417b65d9c00e0f60', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:00:00.000Z'}}, {'blockNum': '0x4c03ec', 'uniqueId': '0xdf64cdf9b683f61943668ef8abd0afb3fdbeda6d3c2b6ee9252a1baf719c9690:log:71', 'hash': '0xdf64cdf9b683f61943668ef8abd0afb3fdbeda6d3c2b6ee9252a1baf719c9690', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.9999949553437326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b21d1a721f9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:00:00.000Z'}}, {'blockNum': '0x4c03ec', 'uniqueId': '0xdf64cdf9b683f61943668ef8abd0afb3fdbeda6d3c2b6ee9252a1baf719c9690:log:73', 'hash': '0xdf64cdf9b683f61943668ef8abd0afb3fdbeda6d3c2b6ee9252a1baf719c9690', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x17c80c566f02fedf3fd292c36a3e4403a2c4abc4', 'value': 0.9999949553437326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b21d1a721f9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:00:00.000Z'}}, {'blockNum': '0x4c03ec', 'uniqueId': '0xfe1ad9705e37630d8b44ae1d9c6de0c4890c56728124e28cc8a6b519d3587f0f:log:88', 'hash': '0xfe1ad9705e37630d8b44ae1d9c6de0c4890c56728124e28cc8a6b519d3587f0f', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4203.459027673772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe3deb662c9f40a5dcd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:00:00.000Z'}}, {'blockNum': '0x4c03ec', 'uniqueId': '0xfe1ad9705e37630d8b44ae1d9c6de0c4890c56728124e28cc8a6b519d3587f0f:log:90', 'hash': '0xfe1ad9705e37630d8b44ae1d9c6de0c4890c56728124e28cc8a6b519d3587f0f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4203.459027673772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe3deb662c9f40a5dcd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:00:00.000Z'}}, {'blockNum': '0x4c03f6', 'uniqueId': '0xbfbd2a7a517097a0c86238ca5b685aff09b26543f922e3f429bea9b6bcfac12d:log:31', 'hash': '0xbfbd2a7a517097a0c86238ca5b685aff09b26543f922e3f429bea9b6bcfac12d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.885682737930152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43cd6e908f95a65b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:01:43.000Z'}}, {'blockNum': '0x4c03f6', 'uniqueId': '0xbfbd2a7a517097a0c86238ca5b685aff09b26543f922e3f429bea9b6bcfac12d:log:34', 'hash': '0xbfbd2a7a517097a0c86238ca5b685aff09b26543f922e3f429bea9b6bcfac12d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 4.885682737930152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43cd6e908f95a65b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:01:43.000Z'}}, {'blockNum': '0x4c03f8', 'uniqueId': '0xf4fd8da6955ea0bf604fd64508c43c6261b2d77baeaa1226eef93e33f01721bd:log:23', 'hash': '0xf4fd8da6955ea0bf604fd64508c43c6261b2d77baeaa1226eef93e33f01721bd', 'from': '0x4fd499dbb195b1fed1e8efb69f84319c8f9b8439', 'to': '0xf5a3ac900cfe35d30f305c3a332c8e6513dabe95', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:02:17.000Z'}}, {'blockNum': '0x4c03fc', 'uniqueId': '0x2ba1ba5b0030bf3c0300b7fc1bf041ff0e4a59bb5e72b91d5a66bee37556a5f7:log:23', 'hash': '0x2ba1ba5b0030bf3c0300b7fc1bf041ff0e4a59bb5e72b91d5a66bee37556a5f7', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 263.2635271964027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e4583ef27b9f90f1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:02:49.000Z'}}, {'blockNum': '0x4c03fc', 'uniqueId': '0x2ba1ba5b0030bf3c0300b7fc1bf041ff0e4a59bb5e72b91d5a66bee37556a5f7:log:25', 'hash': '0x2ba1ba5b0030bf3c0300b7fc1bf041ff0e4a59bb5e72b91d5a66bee37556a5f7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 263.2635271964027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e4583ef27b9f90f1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:02:49.000Z'}}, {'blockNum': '0x4c0401', 'uniqueId': '0x204181dc3e7ace611cd635d1e2ffe81b7eb554be60c3cff65a7926f5e3a4a028:log:6', 'hash': '0x204181dc3e7ace611cd635d1e2ffe81b7eb554be60c3cff65a7926f5e3a4a028', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x77a11e1f057f5464ce5d135da4e30b2b18b29343', 'value': 47.80419158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02976a9af6ec9ea000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:04:03.000Z'}}, {'blockNum': '0x4c0404', 'uniqueId': '0x59bbe40a5ebc51382f886b0c3b389f766183c00ec9e29062be3c9232ab1e7abf:log:73', 'hash': '0x59bbe40a5ebc51382f886b0c3b389f766183c00ec9e29062be3c9232ab1e7abf', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 536.7490510565946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d18e3b21e1c540b2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:04:57.000Z'}}, {'blockNum': '0x4c0404', 'uniqueId': '0x59bbe40a5ebc51382f886b0c3b389f766183c00ec9e29062be3c9232ab1e7abf:log:75', 'hash': '0x59bbe40a5ebc51382f886b0c3b389f766183c00ec9e29062be3c9232ab1e7abf', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 536.7490510565946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d18e3b21e1c540b2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:04:57.000Z'}}, {'blockNum': '0x4c0406', 'uniqueId': '0x7a246fa84d55b1d7ca79910af61d093001d3052b7e81bd0628c7a916e2bcae80:log:56', 'hash': '0x7a246fa84d55b1d7ca79910af61d093001d3052b7e81bd0628c7a916e2bcae80', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.75818054087955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103ffafd03d888e81a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:05:30.000Z'}}, {'blockNum': '0x4c0406', 'uniqueId': '0x7a246fa84d55b1d7ca79910af61d093001d3052b7e81bd0628c7a916e2bcae80:log:59', 'hash': '0x7a246fa84d55b1d7ca79910af61d093001d3052b7e81bd0628c7a916e2bcae80', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 299.75818054087955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103ffafd03d888e81a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:05:30.000Z'}}, {'blockNum': '0x4c0406', 'uniqueId': '0x7cfb2f6a96f34b5ed4d810b8e551f91c3523256b51954ba66258d79ef8c5ce8b:log:75', 'hash': '0x7cfb2f6a96f34b5ed4d810b8e551f91c3523256b51954ba66258d79ef8c5ce8b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.87509094952085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081fef4925758d59d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:05:30.000Z'}}, {'blockNum': '0x4c0406', 'uniqueId': '0x7cfb2f6a96f34b5ed4d810b8e551f91c3523256b51954ba66258d79ef8c5ce8b:log:77', 'hash': '0x7cfb2f6a96f34b5ed4d810b8e551f91c3523256b51954ba66258d79ef8c5ce8b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0e0193a44c0d7e36b8faff8fd3d9004d5bb5ff09', 'value': 149.87509094952085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081fef4925758d59d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:05:30.000Z'}}, {'blockNum': '0x4c040c', 'uniqueId': '0xae46ffa13cb3c3c077762b21f99dffc54d04cae34475b73b08ecb53b9e72d58d:log:53', 'hash': '0xae46ffa13cb3c3c077762b21f99dffc54d04cae34475b73b08ecb53b9e72d58d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 27.81345411504183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0181fd3d27d7b1dc58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:06:59.000Z'}}, {'blockNum': '0x4c040c', 'uniqueId': '0xae46ffa13cb3c3c077762b21f99dffc54d04cae34475b73b08ecb53b9e72d58d:log:56', 'hash': '0xae46ffa13cb3c3c077762b21f99dffc54d04cae34475b73b08ecb53b9e72d58d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 27.81345411504183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0181fd3d27d7b1dc58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:06:59.000Z'}}, {'blockNum': '0x4c040e', 'uniqueId': '0x16fcc4313b216a99a54dc9dcefcf5e7d476c4b0841a1db33da67a6927a6f1564:log:49', 'hash': '0x16fcc4313b216a99a54dc9dcefcf5e7d476c4b0841a1db33da67a6927a6f1564', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.8724972575593964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1bbba210549090', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:07:17.000Z'}}, {'blockNum': '0x4c040e', 'uniqueId': '0x16fcc4313b216a99a54dc9dcefcf5e7d476c4b0841a1db33da67a6927a6f1564:log:52', 'hash': '0x16fcc4313b216a99a54dc9dcefcf5e7d476c4b0841a1db33da67a6927a6f1564', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x83c1ded540d8b6b734885ed9083a5c4e4f142e73', 'value': 0.8724972575593964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1bbba210549090', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:07:17.000Z'}}, {'blockNum': '0x4c0411', 'uniqueId': '0xd877ea4be49b26baa0cc69bf6951ba5350b0c8cd5b303605f3e9c04bea3ff71e:log:10', 'hash': '0xd877ea4be49b26baa0cc69bf6951ba5350b0c8cd5b303605f3e9c04bea3ff71e', 'from': '0xe9b994bb1559cd308aec1796e6963e21c0996f2f', 'to': '0x1dadc56283961b9be74d4c22a1bc6c19d3c998eb', 'value': 1200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x410d586a20a4c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:07:57.000Z'}}, {'blockNum': '0x4c0413', 'uniqueId': '0x6239701fa96f786002d4540fb3f97b4709742994ca85761573945b5024dd26be:log:18', 'hash': '0x6239701fa96f786002d4540fb3f97b4709742994ca85761573945b5024dd26be', 'from': '0x0a0780920a76beb1a6f43cf672cb1ec29ebcc1db', 'to': '0x16b112e808c7b6325dbc900d99d15843a4ae8392', 'value': 63.7443081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0374a1467c318e2800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:08:14.000Z'}}, {'blockNum': '0x4c0416', 'uniqueId': '0xda70c61f523720eff78ca20c115b63aba1d324419bbe8f56e57e4babdbdcc5da:log:25', 'hash': '0xda70c61f523720eff78ca20c115b63aba1d324419bbe8f56e57e4babdbdcc5da', 'from': '0x00e39906dfe73c8bf88be8781627149268bfe504', 'to': '0x5a301fa4cadd44106ffbab13df73134c3217620a', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e7fff6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:09:01.000Z'}}, {'blockNum': '0x4c0417', 'uniqueId': '0x4c4f901b251fa4ab162677dfdd7bfa7edf6bf40ef1fce4fa2602f3153a5d1778:log:27', 'hash': '0x4c4f901b251fa4ab162677dfdd7bfa7edf6bf40ef1fce4fa2602f3153a5d1778', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:10:01.000Z'}}, {'blockNum': '0x4c041b', 'uniqueId': '0x542efe5c391b989f28d84ddaa86d488fae313674863d4f2431bc612f21d9d645:log:27', 'hash': '0x542efe5c391b989f28d84ddaa86d488fae313674863d4f2431bc612f21d9d645', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 164.7389804653915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08ee366de8a3ad33cf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:10:52.000Z'}}, {'blockNum': '0x4c041b', 'uniqueId': '0x542efe5c391b989f28d84ddaa86d488fae313674863d4f2431bc612f21d9d645:log:29', 'hash': '0x542efe5c391b989f28d84ddaa86d488fae313674863d4f2431bc612f21d9d645', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 164.7389804653915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08ee366de8a3ad33cf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:10:52.000Z'}}, {'blockNum': '0x4c041e', 'uniqueId': '0xf91710e2973321eecc04cf2234bef04f7965fa12d4f3b01685af338b2daf388d:log:17', 'hash': '0xf91710e2973321eecc04cf2234bef04f7965fa12d4f3b01685af338b2daf388d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2.3634522502899236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20ccab4cae20e555', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:11:02.000Z'}}, {'blockNum': '0x4c041e', 'uniqueId': '0xf91710e2973321eecc04cf2234bef04f7965fa12d4f3b01685af338b2daf388d:log:20', 'hash': '0xf91710e2973321eecc04cf2234bef04f7965fa12d4f3b01685af338b2daf388d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 2.3634522502899236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20ccab4cae20e555', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:11:02.000Z'}}, {'blockNum': '0x4c0424', 'uniqueId': '0x2aae24f04bf14de952894db2cbc6e335726e682e28f9eb206cf5edad55e06263:log:65', 'hash': '0x2aae24f04bf14de952894db2cbc6e335726e682e28f9eb206cf5edad55e06263', 'from': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 76.09911422979734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0420165d339cf1cc2f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:12:10.000Z'}}, {'blockNum': '0x4c0424', 'uniqueId': '0x2aae24f04bf14de952894db2cbc6e335726e682e28f9eb206cf5edad55e06263:log:67', 'hash': '0x2aae24f04bf14de952894db2cbc6e335726e682e28f9eb206cf5edad55e06263', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 76.09911422979734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0420165d339cf1cc2f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:12:10.000Z'}}, {'blockNum': '0x4c0424', 'uniqueId': '0x3894e433cc6b260bd213531756740dd01de9f4ada1fdd96efe829b06ac6db61b:log:114', 'hash': '0x3894e433cc6b260bd213531756740dd01de9f4ada1fdd96efe829b06ac6db61b', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 194.81410823127007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a8f96bf44575aeac7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:12:10.000Z'}}, {'blockNum': '0x4c0424', 'uniqueId': '0x3894e433cc6b260bd213531756740dd01de9f4ada1fdd96efe829b06ac6db61b:log:116', 'hash': '0x3894e433cc6b260bd213531756740dd01de9f4ada1fdd96efe829b06ac6db61b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 194.81410823127007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a8f96bf44575aeac7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:12:10.000Z'}}, {'blockNum': '0x4c0425', 'uniqueId': '0xe247bee6dc727b6c6628a09bb1b4dfe391ab9eacbbeec56ef87b2e2efb736baf:log:33', 'hash': '0xe247bee6dc727b6c6628a09bb1b4dfe391ab9eacbbeec56ef87b2e2efb736baf', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xd7b69a37104ba4e9f8b3b418d73bc7c7ced13c1a', 'value': 3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29a2241af62c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:12:26.000Z'}}, {'blockNum': '0x4c0427', 'uniqueId': '0x5bbc79d6f739c829fe14cf532253775f7ecb103aa45aeda66aea9ba5641f2c69:log:55', 'hash': '0x5bbc79d6f739c829fe14cf532253775f7ecb103aa45aeda66aea9ba5641f2c69', 'from': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 680.0892435064229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24de225bb3ac798471', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:12:45.000Z'}}, {'blockNum': '0x4c0427', 'uniqueId': '0x5bbc79d6f739c829fe14cf532253775f7ecb103aa45aeda66aea9ba5641f2c69:log:57', 'hash': '0x5bbc79d6f739c829fe14cf532253775f7ecb103aa45aeda66aea9ba5641f2c69', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 680.0892435064229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24de225bb3ac798471', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:12:45.000Z'}}, {'blockNum': '0x4c0431', 'uniqueId': '0xc4196d68564d45f279e30021d54b17a85f509a18f2ec76b8adb97bc03c8ecfc0:log:66', 'hash': '0xc4196d68564d45f279e30021d54b17a85f509a18f2ec76b8adb97bc03c8ecfc0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 104.92448491937401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05b01ea71ed41e426e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:15:42.000Z'}}, {'blockNum': '0x4c0431', 'uniqueId': '0xc4196d68564d45f279e30021d54b17a85f509a18f2ec76b8adb97bc03c8ecfc0:log:69', 'hash': '0xc4196d68564d45f279e30021d54b17a85f509a18f2ec76b8adb97bc03c8ecfc0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 104.92448491937401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05b01ea71ed41e426e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:15:42.000Z'}}, {'blockNum': '0x4c0431', 'uniqueId': '0xa71d5645350bc9316a74463b4166042cf5e44286f300dc34e7048276913717f7:log:88', 'hash': '0xa71d5645350bc9316a74463b4166042cf5e44286f300dc34e7048276913717f7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 74.13874128903826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0404e1b86603b650ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:15:42.000Z'}}, {'blockNum': '0x4c0431', 'uniqueId': '0xa71d5645350bc9316a74463b4166042cf5e44286f300dc34e7048276913717f7:log:91', 'hash': '0xa71d5645350bc9316a74463b4166042cf5e44286f300dc34e7048276913717f7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb018af916ed0116404537d1238b18988d652733a', 'value': 74.13874128903826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0404e1b86603b650ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:15:42.000Z'}}, {'blockNum': '0x4c0434', 'uniqueId': '0x542a9ba44174057fa08317e34895bb5b06ffb764a0731baba8fdd86a236cc85c:log:16', 'hash': '0x542a9ba44174057fa08317e34895bb5b06ffb764a0731baba8fdd86a236cc85c', 'from': '0xf5a3ac900cfe35d30f305c3a332c8e6513dabe95', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:16:24.000Z'}}, {'blockNum': '0x4c0436', 'uniqueId': '0xe5efe18b8baa614da4fca8e00c8fa3c7cea84166bb372774d5ff3234a5310d9f:log:78', 'hash': '0xe5efe18b8baa614da4fca8e00c8fa3c7cea84166bb372774d5ff3234a5310d9f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 344.73964538579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12b03940f82e256f1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:16:40.000Z'}}, {'blockNum': '0x4c0436', 'uniqueId': '0xe5efe18b8baa614da4fca8e00c8fa3c7cea84166bb372774d5ff3234a5310d9f:log:81', 'hash': '0xe5efe18b8baa614da4fca8e00c8fa3c7cea84166bb372774d5ff3234a5310d9f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'value': 344.73964538579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12b03940f82e256f1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:16:40.000Z'}}, {'blockNum': '0x4c043e', 'uniqueId': '0xeb799137878fe3fcb493678a0a826d8895b43030ebda3547048a3ad55d845dde:log:26', 'hash': '0xeb799137878fe3fcb493678a0a826d8895b43030ebda3547048a3ad55d845dde', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1049.120828381987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38df79eaeedbe2d344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:19:04.000Z'}}, {'blockNum': '0x4c043e', 'uniqueId': '0xeb799137878fe3fcb493678a0a826d8895b43030ebda3547048a3ad55d845dde:log:29', 'hash': '0xeb799137878fe3fcb493678a0a826d8895b43030ebda3547048a3ad55d845dde', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 1049.120828381987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38df79eaeedbe2d344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:19:04.000Z'}}, {'blockNum': '0x4c043f', 'uniqueId': '0xc439f6339ffd240be5ba66770fcec984ea8fe8875274830a5248f46d037cada3:log:29', 'hash': '0xc439f6339ffd240be5ba66770fcec984ea8fe8875274830a5248f46d037cada3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 44.95940197058073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026fefe1e31a763446', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:19:24.000Z'}}, {'blockNum': '0x4c043f', 'uniqueId': '0xc439f6339ffd240be5ba66770fcec984ea8fe8875274830a5248f46d037cada3:log:32', 'hash': '0xc439f6339ffd240be5ba66770fcec984ea8fe8875274830a5248f46d037cada3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 44.95940197058073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026fefe1e31a763446', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:19:24.000Z'}}, {'blockNum': '0x4c0440', 'uniqueId': '0xbb90453340b36c5aa4840c616d4ebb9346eb4b0ae7c595f80e9cc6140963f1b0:log:77', 'hash': '0xbb90453340b36c5aa4840c616d4ebb9346eb4b0ae7c595f80e9cc6140963f1b0', 'from': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:20:11.000Z'}}, {'blockNum': '0x4c0440', 'uniqueId': '0x701e3a5d3839b9b974ce48143bb4ae92415256e9fcc5c8cfde2aef565fdeadfa:log:90', 'hash': '0x701e3a5d3839b9b974ce48143bb4ae92415256e9fcc5c8cfde2aef565fdeadfa', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1048.9846091031602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38dd95f8387dd9ff08', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:20:11.000Z'}}, {'blockNum': '0x4c0440', 'uniqueId': '0x701e3a5d3839b9b974ce48143bb4ae92415256e9fcc5c8cfde2aef565fdeadfa:log:93', 'hash': '0x701e3a5d3839b9b974ce48143bb4ae92415256e9fcc5c8cfde2aef565fdeadfa', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 1048.9846091031602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38dd95f8387dd9ff08', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:20:11.000Z'}}, {'blockNum': '0x4c044d', 'uniqueId': '0x7d127492c108a9562b8a37afec6d06b12693eabbc78799fe3aeab0febd31c3e5:log:58', 'hash': '0x7d127492c108a9562b8a37afec6d06b12693eabbc78799fe3aeab0febd31c3e5', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2280.4322905256668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b9f5afdfc28c1da4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:23:18.000Z'}}, {'blockNum': '0x4c044d', 'uniqueId': '0x7d127492c108a9562b8a37afec6d06b12693eabbc78799fe3aeab0febd31c3e5:log:60', 'hash': '0x7d127492c108a9562b8a37afec6d06b12693eabbc78799fe3aeab0febd31c3e5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2280.4322905256668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b9f5afdfc28c1da4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:23:18.000Z'}}, {'blockNum': '0x4c044d', 'uniqueId': '0x8d7e01fa80badb7bf86fee36492913b94e5a7c69f518663109b50780996cdb2c:log:69', 'hash': '0x8d7e01fa80badb7bf86fee36492913b94e5a7c69f518663109b50780996cdb2c', 'from': '0x17c80c566f02fedf3fd292c36a3e4403a2c4abc4', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 0.9999949553437326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b21d1a721f9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:23:18.000Z'}}, {'blockNum': '0x4c044d', 'uniqueId': '0x8d7e01fa80badb7bf86fee36492913b94e5a7c69f518663109b50780996cdb2c:log:72', 'hash': '0x8d7e01fa80badb7bf86fee36492913b94e5a7c69f518663109b50780996cdb2c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.9999949553437326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b21d1a721f9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:23:18.000Z'}}, {'blockNum': '0x4c044d', 'uniqueId': '0x8d7e01fa80badb7bf86fee36492913b94e5a7c69f518663109b50780996cdb2c:log:73', 'hash': '0x8d7e01fa80badb7bf86fee36492913b94e5a7c69f518663109b50780996cdb2c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 0.9999949553437326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b21d1a721f9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:23:18.000Z'}}, {'blockNum': '0x4c0452', 'uniqueId': '0x475d09adc3259216adeabe6e2b2684defb9d588f45567bbbb7598cfa7e5a6dfb:log:17', 'hash': '0x475d09adc3259216adeabe6e2b2684defb9d588f45567bbbb7598cfa7e5a6dfb', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x5dcc4bd3b28c199c95ecdd457e1fbfd716001754', 'value': 10.19629637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8d808586b6747800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:24:23.000Z'}}, {'blockNum': '0x4c0453', 'uniqueId': '0x93aac19db54998ebbbc086037b14d888adc7f98ec59fa6f4f59b31fa05213dbd:log:20', 'hash': '0x93aac19db54998ebbbc086037b14d888adc7f98ec59fa6f4f59b31fa05213dbd', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xc61609b1d7aa8eb3f630becdb13026de95b9c1d7', 'value': 16.19421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe0bd6431c4142800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:24:43.000Z'}}, {'blockNum': '0x4c045a', 'uniqueId': '0x808c0651a3da539a139721fc639b081c8dadb5de8b1dd5874ef44db54f0d3096:log:18', 'hash': '0x808c0651a3da539a139721fc639b081c8dadb5de8b1dd5874ef44db54f0d3096', 'from': '0x16b112e808c7b6325dbc900d99d15843a4ae8392', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 63.7443081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0374a1467c318e2800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:26:14.000Z'}}, {'blockNum': '0x4c046d', 'uniqueId': '0x00a90a091495c69e71efe15f85745a6c1cc590df2e0a81cae7c688e6fa7ebd59:log:59', 'hash': '0x00a90a091495c69e71efe15f85745a6c1cc590df2e0a81cae7c688e6fa7ebd59', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.988606410371917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd0023a1e005c62f3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:31:28.000Z'}}, {'blockNum': '0x4c046d', 'uniqueId': '0x00a90a091495c69e71efe15f85745a6c1cc590df2e0a81cae7c688e6fa7ebd59:log:62', 'hash': '0x00a90a091495c69e71efe15f85745a6c1cc590df2e0a81cae7c688e6fa7ebd59', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 14.988606410371917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd0023a1e005c62f3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:31:28.000Z'}}, {'blockNum': '0x4c046e', 'uniqueId': '0x66c1c32a359b112b951b1860403c0d35acd6a4745cb56f75853100ba29e37088:log:44', 'hash': '0x66c1c32a359b112b951b1860403c0d35acd6a4745cb56f75853100ba29e37088', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 217.41525587688076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bc93e274dfc22f61c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:31:38.000Z'}}, {'blockNum': '0x4c046e', 'uniqueId': '0x66c1c32a359b112b951b1860403c0d35acd6a4745cb56f75853100ba29e37088:log:47', 'hash': '0x66c1c32a359b112b951b1860403c0d35acd6a4745cb56f75853100ba29e37088', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'value': 217.41525587688076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bc93e274dfc22f61c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:31:38.000Z'}}, {'blockNum': '0x4c0472', 'uniqueId': '0xda140adc6b2d4473c86a5c8f34a0dc0f89e37c5475b308fab12cec3cd1097ca7:log:8', 'hash': '0xda140adc6b2d4473c86a5c8f34a0dc0f89e37c5475b308fab12cec3cd1097ca7', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x4aca40ccf83d3bea7cce571c965e1aca7bfc11be', 'value': 16.37624948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe344202310934800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:31:57.000Z'}}, {'blockNum': '0x4c0475', 'uniqueId': '0x13ee4a8c093ec2e09e84b1b2ddaea7015f22cfa345849e4acf511d7853817d52:log:9', 'hash': '0x13ee4a8c093ec2e09e84b1b2ddaea7015f22cfa345849e4acf511d7853817d52', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x4aca40ccf83d3bea7cce571c965e1aca7bfc11be', 'value': 16.47951474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe4b2ff5804838800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:32:21.000Z'}}, {'blockNum': '0x4c0475', 'uniqueId': '0x60a2f04c81c4fb8d9cb3c953a26ef81a6cb18d1609dd4c0065b63f46fe687a49:log:52', 'hash': '0x60a2f04c81c4fb8d9cb3c953a26ef81a6cb18d1609dd4c0065b63f46fe687a49', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2997.1081133677444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2793afdbfa59795b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:32:21.000Z'}}, {'blockNum': '0x4c0475', 'uniqueId': '0x60a2f04c81c4fb8d9cb3c953a26ef81a6cb18d1609dd4c0065b63f46fe687a49:log:54', 'hash': '0x60a2f04c81c4fb8d9cb3c953a26ef81a6cb18d1609dd4c0065b63f46fe687a49', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2997.1081133677444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2793afdbfa59795b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:32:21.000Z'}}, {'blockNum': '0x4c047b', 'uniqueId': '0xfd2049942b9f9a7b3d768ffe861f776cbea6ab911aafcd29b8a9778c4fdeeeab:log:15', 'hash': '0xfd2049942b9f9a7b3d768ffe861f776cbea6ab911aafcd29b8a9778c4fdeeeab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 74.91404449889691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040fa4268f648e6b90', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:33:55.000Z'}}, {'blockNum': '0x4c047b', 'uniqueId': '0xfd2049942b9f9a7b3d768ffe861f776cbea6ab911aafcd29b8a9778c4fdeeeab:log:18', 'hash': '0xfd2049942b9f9a7b3d768ffe861f776cbea6ab911aafcd29b8a9778c4fdeeeab', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 74.91404449889691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040fa4268f648e6b90', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:33:55.000Z'}}, {'blockNum': '0x4c047b', 'uniqueId': '0x37cb335df3171d38deda4089f3a0d73e5aae7af121fb1486a6d3aaeda5cf97c1:log:38', 'hash': '0x37cb335df3171d38deda4089f3a0d73e5aae7af121fb1486a6d3aaeda5cf97c1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.10103598962742312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0166f3b27f45c990', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:33:55.000Z'}}, {'blockNum': '0x4c047b', 'uniqueId': '0x37cb335df3171d38deda4089f3a0d73e5aae7af121fb1486a6d3aaeda5cf97c1:log:41', 'hash': '0x37cb335df3171d38deda4089f3a0d73e5aae7af121fb1486a6d3aaeda5cf97c1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 0.10103598962742312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0166f3b27f45c990', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:33:55.000Z'}}, {'blockNum': '0x4c0485', 'uniqueId': '0x7300ed350446e2a320ef7bc45870a7bc30c179bc32175f2b13277ef4af277f56:log:67', 'hash': '0x7300ed350446e2a320ef7bc45870a7bc30c179bc32175f2b13277ef4af277f56', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4493.624129992345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf3998fe9fcad7cd494', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:35:52.000Z'}}, {'blockNum': '0x4c0485', 'uniqueId': '0x7300ed350446e2a320ef7bc45870a7bc30c179bc32175f2b13277ef4af277f56:log:69', 'hash': '0x7300ed350446e2a320ef7bc45870a7bc30c179bc32175f2b13277ef4af277f56', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4493.624129992345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf3998fe9fcad7cd494', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:35:52.000Z'}}, {'blockNum': '0x4c0485', 'uniqueId': '0xc6eb8072e27b33294d73548ab0b92eefe879b7ef2acd008bb8df9bd65cabd324:log:79', 'hash': '0xc6eb8072e27b33294d73548ab0b92eefe879b7ef2acd008bb8df9bd65cabd324', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'value': 298.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102d21c30250900000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:35:52.000Z'}}, {'blockNum': '0x4c0486', 'uniqueId': '0x33d875b0cec9cc99e05da73e9c9f0062eca5f89d751dd98fab9d1a2393b4b862:log:47', 'hash': '0x33d875b0cec9cc99e05da73e9c9f0062eca5f89d751dd98fab9d1a2393b4b862', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 74.8734352734032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040f13e0af48668d72', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:36:03.000Z'}}, {'blockNum': '0x4c0486', 'uniqueId': '0x33d875b0cec9cc99e05da73e9c9f0062eca5f89d751dd98fab9d1a2393b4b862:log:50', 'hash': '0x33d875b0cec9cc99e05da73e9c9f0062eca5f89d751dd98fab9d1a2393b4b862', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 74.8734352734032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040f13e0af48668d72', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:36:03.000Z'}}, {'blockNum': '0x4c048a', 'uniqueId': '0x7680b9b5e1a0fafd18e64497c257eb570198a9799c0c711e684d6941addc96d7:log:8', 'hash': '0x7680b9b5e1a0fafd18e64497c257eb570198a9799c0c711e684d6941addc96d7', 'from': '0x1dadc56283961b9be74d4c22a1bc6c19d3c998eb', 'to': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'value': 1200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x410d586a20a4bfffff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:37:10.000Z'}}, {'blockNum': '0x4c048c', 'uniqueId': '0xeede734e06bfe62b99352282839bcfdd730e40cd44fad38a32adc42641905ff2:log:6', 'hash': '0xeede734e06bfe62b99352282839bcfdd730e40cd44fad38a32adc42641905ff2', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x366b087f773a9ffdf762720cb722c47fd8daaf0c', 'value': 70.99276573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03d938f84baf2ce000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:37:32.000Z'}}, {'blockNum': '0x4c049c', 'uniqueId': '0x0f3c432a9b8da5b3ed25deb1d13aa7c0b40b94f34497c0b2ddec4ccc15fa0428:log:44', 'hash': '0x0f3c432a9b8da5b3ed25deb1d13aa7c0b40b94f34497c0b2ddec4ccc15fa0428', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5987.720239165467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0144984f993832a8702e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:40:44.000Z'}}, {'blockNum': '0x4c049c', 'uniqueId': '0x0f3c432a9b8da5b3ed25deb1d13aa7c0b40b94f34497c0b2ddec4ccc15fa0428:log:46', 'hash': '0x0f3c432a9b8da5b3ed25deb1d13aa7c0b40b94f34497c0b2ddec4ccc15fa0428', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 5987.720239165467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0144984f993832a8702e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:40:44.000Z'}}, {'blockNum': '0x4c049f', 'uniqueId': '0x12b19afcc71b4fa1dca86a9de2904e19cc18750a5d42232ef5bd5b4853997a81:log:2', 'hash': '0x12b19afcc71b4fa1dca86a9de2904e19cc18750a5d42232ef5bd5b4853997a81', 'from': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 298.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102d21c30250900000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:41:18.000Z'}}, {'blockNum': '0x4c049f', 'uniqueId': '0x0941f71bb77c2c6e62c4b030e0f44bfa74066900b4263ca5d37b0830932b3ba1:log:62', 'hash': '0x0941f71bb77c2c6e62c4b030e0f44bfa74066900b4263ca5d37b0830932b3ba1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 819.9863894661294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c7398dcbecfc0ba88', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:41:18.000Z'}}, {'blockNum': '0x4c049f', 'uniqueId': '0x0941f71bb77c2c6e62c4b030e0f44bfa74066900b4263ca5d37b0830932b3ba1:log:65', 'hash': '0x0941f71bb77c2c6e62c4b030e0f44bfa74066900b4263ca5d37b0830932b3ba1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 819.9863894661294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c7398dcbecfc0ba88', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:41:18.000Z'}}, {'blockNum': '0x4c04a2', 'uniqueId': '0x79b5315dc6da60b99853964fbffed749e53cad9be6231d3cec7f9c13d7e2a215:log:9', 'hash': '0x79b5315dc6da60b99853964fbffed749e53cad9be6231d3cec7f9c13d7e2a215', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x68a013a56f17b12410784af9f91f4771b1faa490', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:42:16.000Z'}}, {'blockNum': '0x4c04a4', 'uniqueId': '0x75240e297f041d878566276c2668f157312a929e11eab17010c118cedcfef839:log:50', 'hash': '0x75240e297f041d878566276c2668f157312a929e11eab17010c118cedcfef839', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.039881397444297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38108aba0d604410', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:42:49.000Z'}}, {'blockNum': '0x4c04a4', 'uniqueId': '0x75240e297f041d878566276c2668f157312a929e11eab17010c118cedcfef839:log:53', 'hash': '0x75240e297f041d878566276c2668f157312a929e11eab17010c118cedcfef839', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 4.039881397444297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38108aba0d604410', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:42:49.000Z'}}, {'blockNum': '0x4c04a5', 'uniqueId': '0xfa893b744b69f0afe9d42fc7ed3b156e92717c89bae203427613f542b2ff090e:log:69', 'hash': '0xfa893b744b69f0afe9d42fc7ed3b156e92717c89bae203427613f542b2ff090e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 742.108319155044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x283ad26069c29c4c5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:43:14.000Z'}}, {'blockNum': '0x4c04a5', 'uniqueId': '0xfa893b744b69f0afe9d42fc7ed3b156e92717c89bae203427613f542b2ff090e:log:72', 'hash': '0xfa893b744b69f0afe9d42fc7ed3b156e92717c89bae203427613f542b2ff090e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 742.108319155044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x283ad26069c29c4c5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:43:14.000Z'}}, {'blockNum': '0x4c04a6', 'uniqueId': '0x13fe169cd443df2d9f10c357cc2b2fde886beac611262edba8d4d9ea353967af:log:35', 'hash': '0x13fe169cd443df2d9f10c357cc2b2fde886beac611262edba8d4d9ea353967af', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 89.7667367553472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04ddc3837974788a28', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:43:19.000Z'}}, {'blockNum': '0x4c04a6', 'uniqueId': '0x13fe169cd443df2d9f10c357cc2b2fde886beac611262edba8d4d9ea353967af:log:38', 'hash': '0x13fe169cd443df2d9f10c357cc2b2fde886beac611262edba8d4d9ea353967af', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 89.7667367553472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04ddc3837974788a28', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:43:19.000Z'}}, {'blockNum': '0x4c04a7', 'uniqueId': '0xbe270328a2879c43fb866d0e72d5de0d98713e9fbd3086d0a5f61cbaa2bea2ea:log:11', 'hash': '0xbe270328a2879c43fb866d0e72d5de0d98713e9fbd3086d0a5f61cbaa2bea2ea', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032d26d12e980b600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:43:41.000Z'}}, {'blockNum': '0x4c04ba', 'uniqueId': '0x6df39b4d47fe44551a733b714fc587892f9042c81758e566849e4201ccc5cab8:log:67', 'hash': '0x6df39b4d47fe44551a733b714fc587892f9042c81758e566849e4201ccc5cab8', 'from': '0x570d467968999db90b61199adfef1dfc0a290fa3', 'to': '0x292522e1901e09ad2a0039632b63ea79466f21f4', 'value': 1.26120563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1180b3d69cdf6c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:48:53.000Z'}}, {'blockNum': '0x4c04c3', 'uniqueId': '0x16cadd9b5e03af6c4c1043d2d364d44aaae85441ec7a90e2cd9d23bafdaa6a1d:log:35', 'hash': '0x16cadd9b5e03af6c4c1043d2d364d44aaae85441ec7a90e2cd9d23bafdaa6a1d', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x366b087f773a9ffdf762720cb722c47fd8daaf0c', 'value': 70.89604107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03d7e155bad6dac000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:50:35.000Z'}}, {'blockNum': '0x4c04c3', 'uniqueId': '0xb6ce1f53e54dc79b5b67f220cd26a5f87c1c0f0602ab52015b8e08d455249d6d:log:36', 'hash': '0xb6ce1f53e54dc79b5b67f220cd26a5f87c1c0f0602ab52015b8e08d455249d6d', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x266654aefc0e9fc53d046633dbe0d98afb1abfac', 'value': 2.18409445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e4f76549826f400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:50:35.000Z'}}, {'blockNum': '0x4c04cb', 'uniqueId': '0x7038f8924a5eb109ae43d129c70bc3b0144e08d249e06872887310271bbca0bb:log:3', 'hash': '0x7038f8924a5eb109ae43d129c70bc3b0144e08d249e06872887310271bbca0bb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 1380.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ad16dc8a6e35f0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:52:10.000Z'}}, {'blockNum': '0x4c04d0', 'uniqueId': '0xdd4349f1e2336dab0a76ac80b9fb058ef827835c76c2ac82ade94b479a34786f:log:36', 'hash': '0xdd4349f1e2336dab0a76ac80b9fb058ef827835c76c2ac82ade94b479a34786f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 448.8193407210711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18549e9c70647464ec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:53:06.000Z'}}, {'blockNum': '0x4c04d0', 'uniqueId': '0xdd4349f1e2336dab0a76ac80b9fb058ef827835c76c2ac82ade94b479a34786f:log:39', 'hash': '0xdd4349f1e2336dab0a76ac80b9fb058ef827835c76c2ac82ade94b479a34786f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'value': 448.8193407210711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18549e9c70647464ec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:53:06.000Z'}}, {'blockNum': '0x4c04db', 'uniqueId': '0x5c96adae06d994859554d184ded9753bca4eedf8d9a647736737dc4b45bd4973:log:79', 'hash': '0x5c96adae06d994859554d184ded9753bca4eedf8d9a647736737dc4b45bd4973', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1078.5647314074008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a7817acbbf2ba0faa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:55:33.000Z'}}, {'blockNum': '0x4c04db', 'uniqueId': '0x5c96adae06d994859554d184ded9753bca4eedf8d9a647736737dc4b45bd4973:log:82', 'hash': '0x5c96adae06d994859554d184ded9753bca4eedf8d9a647736737dc4b45bd4973', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 1078.5647314074008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a7817acbbf2ba0faa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:55:33.000Z'}}, {'blockNum': '0x4c04de', 'uniqueId': '0x02a0da9f14fdbcb904e56c3448f9fcfb4f940a604e12ba10431d29a442a3cbc3:log:61', 'hash': '0x02a0da9f14fdbcb904e56c3448f9fcfb4f940a604e12ba10431d29a442a3cbc3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2.991665797654104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2984883143dbc754', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:56:29.000Z'}}, {'blockNum': '0x4c04de', 'uniqueId': '0x02a0da9f14fdbcb904e56c3448f9fcfb4f940a604e12ba10431d29a442a3cbc3:log:64', 'hash': '0x02a0da9f14fdbcb904e56c3448f9fcfb4f940a604e12ba10431d29a442a3cbc3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'value': 2.991665797654104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2984883143dbc754', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:56:29.000Z'}}, {'blockNum': '0x4c04de', 'uniqueId': '0x529f7183f6b0350cf5c1acf63fbb4ba129edc2cdb359e1b6fc33e25ed8f6f2e0:log:81', 'hash': '0x529f7183f6b0350cf5c1acf63fbb4ba129edc2cdb359e1b6fc33e25ed8f6f2e0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.58193575600612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081bddca0d100bc10d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:56:29.000Z'}}, {'blockNum': '0x4c04de', 'uniqueId': '0x529f7183f6b0350cf5c1acf63fbb4ba129edc2cdb359e1b6fc33e25ed8f6f2e0:log:84', 'hash': '0x529f7183f6b0350cf5c1acf63fbb4ba129edc2cdb359e1b6fc33e25ed8f6f2e0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 149.58193575600612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081bddca0d100bc10d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:56:29.000Z'}}, {'blockNum': '0x4c04ee', 'uniqueId': '0xd8868aaf18a677bc7f68332351cc1e497b26ccca119f45fa59f17819ccf45970:log:19', 'hash': '0xd8868aaf18a677bc7f68332351cc1e497b26ccca119f45fa59f17819ccf45970', 'from': '0x7d8bae5c14d651634593ec06bfbfbf48e57b6b0a', 'to': '0x0768fe4ce8dc8d1d643d3081a2da3662ba67cc5d', 'value': 23.413458428998226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0144ed50642fd08966', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:00:11.000Z'}}, {'blockNum': '0x4c04ee', 'uniqueId': '0x025c3ccc3efab5915a31f208b1c08ff1265827e572851ab1dccdb80ee06c8a49:log:27', 'hash': '0x025c3ccc3efab5915a31f208b1c08ff1265827e572851ab1dccdb80ee06c8a49', 'from': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032d26d12e980b600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:00:11.000Z'}}, {'blockNum': '0x4c04f9', 'uniqueId': '0xe632d8624cc7c933a42305bc3ceafdde0b041e975366814ac431e3d105372e8f:log:30', 'hash': '0xe632d8624cc7c933a42305bc3ceafdde0b041e975366814ac431e3d105372e8f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 598.3011931849218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x206f18d5441fa02719', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:02:54.000Z'}}, {'blockNum': '0x4c04f9', 'uniqueId': '0xe632d8624cc7c933a42305bc3ceafdde0b041e975366814ac431e3d105372e8f:log:33', 'hash': '0xe632d8624cc7c933a42305bc3ceafdde0b041e975366814ac431e3d105372e8f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'value': 598.3011931849218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x206f18d5441fa02719', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:02:54.000Z'}}, {'blockNum': '0x4c04fd', 'uniqueId': '0xa6732d198efe658e1efbc538715f2ced01c3e6346b8b892ea214d3ebaf37635b:log:25', 'hash': '0xa6732d198efe658e1efbc538715f2ced01c3e6346b8b892ea214d3ebaf37635b', 'from': '0xd2605d77c5d290444232296b7dd8e6a16a460a3f', 'to': '0x52ff305d13c13f27399847b0c2705fe7bb257ae8', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:04:13.000Z'}}, {'blockNum': '0x4c04fe', 'uniqueId': '0x9d7dca2bd6e35ebba7708960f436976ce4da0075038fea8f6c61c75774e93ad8:log:2', 'hash': '0x9d7dca2bd6e35ebba7708960f436976ce4da0075038fea8f6c61c75774e93ad8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x36aff7df516641afcca74010a6de34e6170df1c7', 'value': 48.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x029faf5790d8e80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:04:52.000Z'}}, {'blockNum': '0x4c0500', 'uniqueId': '0x7af43b26149989f2ad566ba1fda6ddc4b83afcc50c34274c82f2838e0240666d:log:37', 'hash': '0x7af43b26149989f2ad566ba1fda6ddc4b83afcc50c34274c82f2838e0240666d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1098.132454728165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3b87a6316b8ffe80d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:05:23.000Z'}}, {'blockNum': '0x4c0500', 'uniqueId': '0x7af43b26149989f2ad566ba1fda6ddc4b83afcc50c34274c82f2838e0240666d:log:40', 'hash': '0x7af43b26149989f2ad566ba1fda6ddc4b83afcc50c34274c82f2838e0240666d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf3ed5b15618494ddbd0a57b3bca8b2686ac0bc04', 'value': 1098.132454728165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3b87a6316b8ffe80d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:05:23.000Z'}}, {'blockNum': '0x4c050b', 'uniqueId': '0x3db6f82024fa0e59c25bfc9588fa20d769724bceffc43deb5e1d4f51c7c161ff:log:10', 'hash': '0x3db6f82024fa0e59c25bfc9588fa20d769724bceffc43deb5e1d4f51c7c161ff', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x3c200c37476b85ae4ccd9c967bd0e4c13a1e4e1e', 'value': 99.60910476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05665aa1070e788000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:09:07.000Z'}}, {'blockNum': '0x4c050e', 'uniqueId': '0x70adbe58ed2158f7d4ad6e76a59848fb88571e5a5b242dc8e120609257e5416d:log:52', 'hash': '0x70adbe58ed2158f7d4ad6e76a59848fb88571e5a5b242dc8e120609257e5416d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 29.91004683199698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019f15d51f9c7a4be8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:09:29.000Z'}}, {'blockNum': '0x4c050e', 'uniqueId': '0x70adbe58ed2158f7d4ad6e76a59848fb88571e5a5b242dc8e120609257e5416d:log:54', 'hash': '0x70adbe58ed2158f7d4ad6e76a59848fb88571e5a5b242dc8e120609257e5416d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb1e73b6be3c551753793c9abea850ad85f384138', 'value': 29.91004683199698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019f15d51f9c7a4be8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:09:29.000Z'}}, {'blockNum': '0x4c0510', 'uniqueId': '0x2c3e98cb99c3810faaca7660caa013833b3533eddfce68e9d46ccc7ba207c1fc:log:35', 'hash': '0x2c3e98cb99c3810faaca7660caa013833b3533eddfce68e9d46ccc7ba207c1fc', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 41.75714665174304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02437f2fa4130931dc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:09:43.000Z'}}, {'blockNum': '0x4c0510', 'uniqueId': '0x2c3e98cb99c3810faaca7660caa013833b3533eddfce68e9d46ccc7ba207c1fc:log:37', 'hash': '0x2c3e98cb99c3810faaca7660caa013833b3533eddfce68e9d46ccc7ba207c1fc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 41.75714665174304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02437f2fa4130931dc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:09:43.000Z'}}, {'blockNum': '0x4c0521', 'uniqueId': '0xf1cc53fb06704ca848baa9d71356dc93a8a4d04957477919662e2db1cc3c0859:log:8', 'hash': '0xf1cc53fb06704ca848baa9d71356dc93a8a4d04957477919662e2db1cc3c0859', 'from': '0xf3e36ad56aa85abdacc18c02d19509ae4f7d5899', 'to': '0x4a7e5fc2517d4f29566cd3f4dbc7dd24123adc7d', 'value': 126.252014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06d81941d237a4e000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:12:27.000Z'}}, {'blockNum': '0x4c0536', 'uniqueId': '0xfe0b876e858f4d33348c5c6c17450041ca6f4903f409689a5eb45049a8c7e83e:log:53', 'hash': '0xfe0b876e858f4d33348c5c6c17450041ca6f4903f409689a5eb45049a8c7e83e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 29.760538699775164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019d02ac44f45d454a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:17:39.000Z'}}, {'blockNum': '0x4c0536', 'uniqueId': '0xfe0b876e858f4d33348c5c6c17450041ca6f4903f409689a5eb45049a8c7e83e:log:56', 'hash': '0xfe0b876e858f4d33348c5c6c17450041ca6f4903f409689a5eb45049a8c7e83e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 29.760538699775164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019d02ac44f45d454a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:17:39.000Z'}}, {'blockNum': '0x4c0539', 'uniqueId': '0x7eca76f2c6f6dce0a697a7bd87ff29a739651e881e9269411a2814e7fb1bd247:log:37', 'hash': '0x7eca76f2c6f6dce0a697a7bd87ff29a739651e881e9269411a2814e7fb1bd247', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 40.08593549091432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022c4dd9f1d12c198a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:18:01.000Z'}}, {'blockNum': '0x4c0539', 'uniqueId': '0x7eca76f2c6f6dce0a697a7bd87ff29a739651e881e9269411a2814e7fb1bd247:log:40', 'hash': '0x7eca76f2c6f6dce0a697a7bd87ff29a739651e881e9269411a2814e7fb1bd247', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 40.08593549091432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022c4dd9f1d12c198a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:18:01.000Z'}}, {'blockNum': '0x4c053b', 'uniqueId': '0xc766965b37971a287cb1ba75a1acaee69c6e1e6fc9299804deebe3250bd17575:log:17', 'hash': '0xc766965b37971a287cb1ba75a1acaee69c6e1e6fc9299804deebe3250bd17575', 'from': '0x52ff305d13c13f27399847b0c2705fe7bb257ae8', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:18:23.000Z'}}, {'blockNum': '0x4c053b', 'uniqueId': '0x34ba7b424a9a636b35339624b963b556fc174944506da6f06234a64de50aea7b:log:75', 'hash': '0x34ba7b424a9a636b35339624b963b556fc174944506da6f06234a64de50aea7b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 74.77440340719961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040db40bba21e42765', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:18:23.000Z'}}, {'blockNum': '0x4c053b', 'uniqueId': '0x34ba7b424a9a636b35339624b963b556fc174944506da6f06234a64de50aea7b:log:78', 'hash': '0x34ba7b424a9a636b35339624b963b556fc174944506da6f06234a64de50aea7b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 74.77440340719961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040db40bba21e42765', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:18:23.000Z'}}, {'blockNum': '0x4c0545', 'uniqueId': '0xa06928af26155b92d5b431bed81e28900fe0d6c3bf8c7b57cebd7dc8d90af20d:log:60', 'hash': '0xa06928af26155b92d5b431bed81e28900fe0d6c3bf8c7b57cebd7dc8d90af20d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 491.81911379592754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa95c7e3a61adb11c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:21:11.000Z'}}, {'blockNum': '0x4c0545', 'uniqueId': '0xa06928af26155b92d5b431bed81e28900fe0d6c3bf8c7b57cebd7dc8d90af20d:log:63', 'hash': '0xa06928af26155b92d5b431bed81e28900fe0d6c3bf8c7b57cebd7dc8d90af20d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 491.81911379592754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa95c7e3a61adb11c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:21:11.000Z'}}, {'blockNum': '0x4c0548', 'uniqueId': '0x41f944406613e1fa9777ffc3ab10dcecaaf8d45be959bf68789a03cae04db091:log:48', 'hash': '0x41f944406613e1fa9777ffc3ab10dcecaaf8d45be959bf68789a03cae04db091', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 95.55690226687389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052e1e50545dbccf32', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:22:06.000Z'}}, {'blockNum': '0x4c0548', 'uniqueId': '0x41f944406613e1fa9777ffc3ab10dcecaaf8d45be959bf68789a03cae04db091:log:50', 'hash': '0x41f944406613e1fa9777ffc3ab10dcecaaf8d45be959bf68789a03cae04db091', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 95.55690226687389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052e1e50545dbccf32', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:22:06.000Z'}}, {'blockNum': '0x4c054c', 'uniqueId': '0x2409ef07a5db23054868321af7d145c6c42d2fd1cda2f6ac98e588e91084328e:log:59', 'hash': '0x2409ef07a5db23054868321af7d145c6c42d2fd1cda2f6ac98e588e91084328e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 29.908169227265695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019f0f2973b170e46e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:23:08.000Z'}}, {'blockNum': '0x4c054c', 'uniqueId': '0x2409ef07a5db23054868321af7d145c6c42d2fd1cda2f6ac98e588e91084328e:log:62', 'hash': '0x2409ef07a5db23054868321af7d145c6c42d2fd1cda2f6ac98e588e91084328e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 29.908169227265695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019f0f2973b170e46e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:23:08.000Z'}}, {'blockNum': '0x4c054d', 'uniqueId': '0x891c94fda49a37f25080bd4b216a647e60fc65ebcadd07c945db49084a95e62f:log:59', 'hash': '0x891c94fda49a37f25080bd4b216a647e60fc65ebcadd07c945db49084a95e62f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 65.4985198447937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x038cf97cc5d6cd4e94', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:23:21.000Z'}}, {'blockNum': '0x4c054d', 'uniqueId': '0x891c94fda49a37f25080bd4b216a647e60fc65ebcadd07c945db49084a95e62f:log:62', 'hash': '0x891c94fda49a37f25080bd4b216a647e60fc65ebcadd07c945db49084a95e62f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 65.4985198447937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x038cf97cc5d6cd4e94', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:23:21.000Z'}}, {'blockNum': '0x4c0562', 'uniqueId': '0x368f2ad808bdcaf057d2617fbce0fa7a60c11aff00f794c904ca83896dbb4f95:log:1', 'hash': '0x368f2ad808bdcaf057d2617fbce0fa7a60c11aff00f794c904ca83896dbb4f95', 'from': '0x8cd797b09b6719c19cf0f14bcf66fafd66bb504c', 'to': '0xe18fe5df4dc5aef12e40873b36b6763386d41c3e', 'value': 5.81757539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x50bc2dfe8f012c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:29:01.000Z'}}, {'blockNum': '0x4c056d', 'uniqueId': '0x5cf9e5c957c893afa14a6f6d39230c4f1cc3253f88c82516c1655f528b9a4e22:log:11', 'hash': '0x5cf9e5c957c893afa14a6f6d39230c4f1cc3253f88c82516c1655f528b9a4e22', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xe77df16aca3f09e698bb5b2e7f88635aa14f374e', 'value': 29.26531177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019623460023e88000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:32:04.000Z'}}, {'blockNum': '0x4c056e', 'uniqueId': '0x448c5f7df2f854c449a1e50eac215345958df11b718ff7ec6a254714d85d6592:log:241', 'hash': '0x448c5f7df2f854c449a1e50eac215345958df11b718ff7ec6a254714d85d6592', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04c53ecdc18a600001', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:32:14.000Z'}}, {'blockNum': '0x4c056e', 'uniqueId': '0x448c5f7df2f854c449a1e50eac215345958df11b718ff7ec6a254714d85d6592:log:243', 'hash': '0x448c5f7df2f854c449a1e50eac215345958df11b718ff7ec6a254714d85d6592', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x24b980e795ce48812bdebd982f0c5bcfe8f4adee', 'value': 88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04c53ecdc18a600001', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:32:14.000Z'}}, {'blockNum': '0x4c0575', 'uniqueId': '0xfd8386b4cc0391c8396a1effd421a3c07571155c2c80543e88ad3af04099f64b:log:24', 'hash': '0xfd8386b4cc0391c8396a1effd421a3c07571155c2c80543e88ad3af04099f64b', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xb1d76a7efba901887327661734dedd79b86577f8', 'value': 1.98377519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b87c9065a2edc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:33:13.000Z'}}, {'blockNum': '0x4c0576', 'uniqueId': '0x9766796597fa6656b49207e4dbc315012cd7b03df984df01c63c4c2eedda79b9:log:17', 'hash': '0x9766796597fa6656b49207e4dbc315012cd7b03df984df01c63c4c2eedda79b9', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x46491b7c775183ba87d9eb1b6c47ebdc689d4a43', 'value': 86.50519031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b0802c43471d0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:33:47.000Z'}}, {'blockNum': '0x4c0577', 'uniqueId': '0x27a7aabf79fd67ddab9f9c053ddf20a14e81ea373ea5d2bfa7afb8cc9f234532:log:55', 'hash': '0x27a7aabf79fd67ddab9f9c053ddf20a14e81ea373ea5d2bfa7afb8cc9f234532', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 747.6639254048139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2887ebdadcc815d0c0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:34:17.000Z'}}, {'blockNum': '0x4c0577', 'uniqueId': '0x27a7aabf79fd67ddab9f9c053ddf20a14e81ea373ea5d2bfa7afb8cc9f234532:log:57', 'hash': '0x27a7aabf79fd67ddab9f9c053ddf20a14e81ea373ea5d2bfa7afb8cc9f234532', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 747.6639254048139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2887ebdadcc815d0c0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:34:17.000Z'}}, {'blockNum': '0x4c0584', 'uniqueId': '0x52bd83bb288a3cdf509cc7ebcf332f35624bedbf10019cf2f25ee50558a91bab:log:42', 'hash': '0x52bd83bb288a3cdf509cc7ebcf332f35624bedbf10019cf2f25ee50558a91bab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 448.56651792941864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18511c677314e39994', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:36:39.000Z'}}, {'blockNum': '0x4c0584', 'uniqueId': '0x52bd83bb288a3cdf509cc7ebcf332f35624bedbf10019cf2f25ee50558a91bab:log:45', 'hash': '0x52bd83bb288a3cdf509cc7ebcf332f35624bedbf10019cf2f25ee50558a91bab', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 448.56651792941864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18511c677314e39994', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:36:39.000Z'}}, {'blockNum': '0x4c0584', 'uniqueId': '0x1667acdb9d4c7a597aabd0e3b3f1cb905d880d02ea3a5723f02e0e179dfb6c72:log:68', 'hash': '0x1667acdb9d4c7a597aabd0e3b3f1cb905d880d02ea3a5723f02e0e179dfb6c72', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 78.5730085336688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04426b66f6b7108d49', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:36:39.000Z'}}, {'blockNum': '0x4c0584', 'uniqueId': '0x1667acdb9d4c7a597aabd0e3b3f1cb905d880d02ea3a5723f02e0e179dfb6c72:log:71', 'hash': '0x1667acdb9d4c7a597aabd0e3b3f1cb905d880d02ea3a5723f02e0e179dfb6c72', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 78.5730085336688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04426b66f6b7108d49', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:36:39.000Z'}}, {'blockNum': '0x4c058e', 'uniqueId': '0x000c6cc30cb03544bacf5508281124dd2da1555a6ade757fee4b413fe6b7fe60:log:70', 'hash': '0x000c6cc30cb03544bacf5508281124dd2da1555a6ade757fee4b413fe6b7fe60', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 566.6496186456295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1eb7d7d9eb7b4f4d2c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:40:35.000Z'}}, {'blockNum': '0x4c058e', 'uniqueId': '0x000c6cc30cb03544bacf5508281124dd2da1555a6ade757fee4b413fe6b7fe60:log:73', 'hash': '0x000c6cc30cb03544bacf5508281124dd2da1555a6ade757fee4b413fe6b7fe60', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 566.6496186456295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1eb7d7d9eb7b4f4d2c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:40:35.000Z'}}, {'blockNum': '0x4c058f', 'uniqueId': '0xceb538343c4cc642ceea46844169110b13484931a09bf5f606f612a34d1979d5:log:72', 'hash': '0xceb538343c4cc642ceea46844169110b13484931a09bf5f606f612a34d1979d5', 'from': '0x689d643572fdaadfa00a12e772a4d0e6159bae87', 'to': '0x292522e1901e09ad2a0039632b63ea79466f21f4', 'value': 11.324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9d26ee00bc860000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:40:53.000Z'}}, {'blockNum': '0x4c0592', 'uniqueId': '0x4a585e523cf366c6441de07dbb414910afc47880c647b5bfbcb500fc1bcffaa8:log:35', 'hash': '0x4a585e523cf366c6441de07dbb414910afc47880c647b5bfbcb500fc1bcffaa8', 'from': '0x1a39014059c62599555f3bca2f24d5d9e3fb8803', 'to': '0x26f13ba2085ff20931d3048bb01ac08403f5c673', 'value': 17.262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xef8ef18ac0cb0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:41:22.000Z'}}, {'blockNum': '0x4c0596', 'uniqueId': '0x463d78323a9dce052d1b0961a741e60ec7c0bef8571d6df138dd83b32b2d95fc:log:101', 'hash': '0x463d78323a9dce052d1b0961a741e60ec7c0bef8571d6df138dd83b32b2d95fc', 'from': '0xeade8b32735f9c7871da862c18bf12caeaa4e6e9', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1167.794813674066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f4e689bcb622f3455', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:43:02.000Z'}}, {'blockNum': '0x4c0596', 'uniqueId': '0x463d78323a9dce052d1b0961a741e60ec7c0bef8571d6df138dd83b32b2d95fc:log:103', 'hash': '0x463d78323a9dce052d1b0961a741e60ec7c0bef8571d6df138dd83b32b2d95fc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1167.794813674066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f4e689bcb622f3455', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:43:02.000Z'}}, {'blockNum': '0x4c05a5', 'uniqueId': '0xc4d57977d98dea18d7396d28adcc63ad21653bd4cfd32fa7a0be95a45e0c8d49:log:11', 'hash': '0xc4d57977d98dea18d7396d28adcc63ad21653bd4cfd32fa7a0be95a45e0c8d49', 'from': '0x10eb123404632ee42eb491b06982d0f200d748bf', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x029a2241af62c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:47:04.000Z'}}, {'blockNum': '0x4c05a5', 'uniqueId': '0x6cc971f8027c8dcabd86893e7f5c7c6a808927f61c2f2bf4a61bb6244fe9e587:log:69', 'hash': '0x6cc971f8027c8dcabd86893e7f5c7c6a808927f61c2f2bf4a61bb6244fe9e587', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 53.54779821007107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02e71ffec37f958141', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:47:04.000Z'}}, {'blockNum': '0x4c05a5', 'uniqueId': '0x6cc971f8027c8dcabd86893e7f5c7c6a808927f61c2f2bf4a61bb6244fe9e587:log:71', 'hash': '0x6cc971f8027c8dcabd86893e7f5c7c6a808927f61c2f2bf4a61bb6244fe9e587', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 53.54779821007107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02e71ffec37f958141', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:47:04.000Z'}}, {'blockNum': '0x4c05aa', 'uniqueId': '0x1f9b82a99887f6265c99de24e56c68d9a3e16d091894d3cb02c2eaa944f54a4c:log:32', 'hash': '0x1f9b82a99887f6265c99de24e56c68d9a3e16d091894d3cb02c2eaa944f54a4c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 448.57330715027035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1851348635be0e8c6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:48:37.000Z'}}, {'blockNum': '0x4c05aa', 'uniqueId': '0x1f9b82a99887f6265c99de24e56c68d9a3e16d091894d3cb02c2eaa944f54a4c:log:35', 'hash': '0x1f9b82a99887f6265c99de24e56c68d9a3e16d091894d3cb02c2eaa944f54a4c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 448.57330715027035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1851348635be0e8c6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:48:37.000Z'}}, {'blockNum': '0x4c05ad', 'uniqueId': '0xe787bd59be3f6b6378a3bf7e372dd2e5c4532b55c90a9587d3c1c759f708d2d0:log:21', 'hash': '0xe787bd59be3f6b6378a3bf7e372dd2e5c4532b55c90a9587d3c1c759f708d2d0', 'from': '0xe18fe5df4dc5aef12e40873b36b6763386d41c3e', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 5.81757539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x50bc2dfe8f012c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:49:18.000Z'}}, {'blockNum': '0x4c05b7', 'uniqueId': '0xaf13c6af4c8a425b3c371ed6dbf37ef583c89707e2c5ace212464ffb0c4540a7:log:47', 'hash': '0xaf13c6af4c8a425b3c371ed6dbf37ef583c89707e2c5ace212464ffb0c4540a7', 'from': '0x1c58225bc4313ba011af4cfc250fb7e62591222c', 'to': '0x4152978314478feae6262fa06d14dd8874e0cae2', 'value': 8.12649325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x70c71a8e0bdc1000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:53:04.000Z'}}, {'blockNum': '0x4c05c2', 'uniqueId': '0x2d3afc84a84153d8c67c383c57e55cdd15790f0b9242d54cf5b60460d9b7fcc5:log:86', 'hash': '0x2d3afc84a84153d8c67c383c57e55cdd15790f0b9242d54cf5b60460d9b7fcc5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 172.8635407304831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x095ef6aa6c90b6a566', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:55:15.000Z'}}, {'blockNum': '0x4c05c2', 'uniqueId': '0x2d3afc84a84153d8c67c383c57e55cdd15790f0b9242d54cf5b60460d9b7fcc5:log:89', 'hash': '0x2d3afc84a84153d8c67c383c57e55cdd15790f0b9242d54cf5b60460d9b7fcc5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 172.8635407304831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x095ef6aa6c90b6a566', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:55:15.000Z'}}, {'blockNum': '0x4c05cc', 'uniqueId': '0x4fbe8aec0531ad8fb830e889ddf509874a7f739894a789cfd53f48f37bc0ca81:log:48', 'hash': '0x4fbe8aec0531ad8fb830e889ddf509874a7f739894a789cfd53f48f37bc0ca81', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.951725673351612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf7f33484336058e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:57:53.000Z'}}, {'blockNum': '0x4c05cc', 'uniqueId': '0x4fbe8aec0531ad8fb830e889ddf509874a7f739894a789cfd53f48f37bc0ca81:log:51', 'hash': '0x4fbe8aec0531ad8fb830e889ddf509874a7f739894a789cfd53f48f37bc0ca81', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 14.951725673351612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf7f33484336058e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:57:53.000Z'}}, {'blockNum': '0x4c05d4', 'uniqueId': '0x332a0f19ab5b8d08db84959061f47ad85a22a5dfd5623b03dc20ac2818b26042:log:22', 'hash': '0x332a0f19ab5b8d08db84959061f47ad85a22a5dfd5623b03dc20ac2818b26042', 'from': '0x26f13ba2085ff20931d3048bb01ac08403f5c673', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 17.262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xef8ef18ac0cb0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:59:54.000Z'}}, {'blockNum': '0x4c05d4', 'uniqueId': '0x8426228904abf77a553bf9cee5f560f12c4bda1bf3b84abc562f8da7a1dc2ac8:log:62', 'hash': '0x8426228904abf77a553bf9cee5f560f12c4bda1bf3b84abc562f8da7a1dc2ac8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 448.53943556868904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1850bc302f99eba02b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:59:54.000Z'}}, {'blockNum': '0x4c05d4', 'uniqueId': '0x8426228904abf77a553bf9cee5f560f12c4bda1bf3b84abc562f8da7a1dc2ac8:log:65', 'hash': '0x8426228904abf77a553bf9cee5f560f12c4bda1bf3b84abc562f8da7a1dc2ac8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 448.53943556868904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1850bc302f99eba02b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:59:54.000Z'}}, {'blockNum': '0x4c05d7', 'uniqueId': '0x0f4472d594d7e05d6d9a7bc1804b000c390c6c381256b6512f759f874debee3c:log:38', 'hash': '0x0f4472d594d7e05d6d9a7bc1804b000c390c6c381256b6512f759f874debee3c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 209.31023368864308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b58c354911192125b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:00:59.000Z'}}, {'blockNum': '0x4c05d7', 'uniqueId': '0x0f4472d594d7e05d6d9a7bc1804b000c390c6c381256b6512f759f874debee3c:log:41', 'hash': '0x0f4472d594d7e05d6d9a7bc1804b000c390c6c381256b6512f759f874debee3c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 209.31023368864308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b58c354911192125b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:00:59.000Z'}}, {'blockNum': '0x4c05ff', 'uniqueId': '0x79445177c3543ef5f691a53c50759d5ac204ccfac5be49ea92d97bb3be13ca15:log:52', 'hash': '0x79445177c3543ef5f691a53c50759d5ac204ccfac5be49ea92d97bb3be13ca15', 'from': '0x4152978314478feae6262fa06d14dd8874e0cae2', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 8.12649325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x70c71a8e0bdc1000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:10:34.000Z'}}, {'blockNum': '0x4c0605', 'uniqueId': '0x494b94cd41001a9039b94cb1ba9f805b59828de33218747394d74ade522d85a2:log:40', 'hash': '0x494b94cd41001a9039b94cb1ba9f805b59828de33218747394d74ade522d85a2', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:11:59.000Z'}}, {'blockNum': '0x4c0605', 'uniqueId': '0x494b94cd41001a9039b94cb1ba9f805b59828de33218747394d74ade522d85a2:log:43', 'hash': '0x494b94cd41001a9039b94cb1ba9f805b59828de33218747394d74ade522d85a2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:11:59.000Z'}}, {'blockNum': '0x4c0605', 'uniqueId': '0x494b94cd41001a9039b94cb1ba9f805b59828de33218747394d74ade522d85a2:log:44', 'hash': '0x494b94cd41001a9039b94cb1ba9f805b59828de33218747394d74ade522d85a2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:11:59.000Z'}}, {'blockNum': '0x4c0612', 'uniqueId': '0x912b1617ced0f324ff17cb40308b8a17b6a756e70765d7d044cb3aec971a811b:log:50', 'hash': '0x912b1617ced0f324ff17cb40308b8a17b6a756e70765d7d044cb3aec971a811b', 'from': '0xb9fa043c6b3e28541b0ad65d57e619cefa8b77d5', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:15:00.000Z'}}, {'blockNum': '0x4c0612', 'uniqueId': '0x912b1617ced0f324ff17cb40308b8a17b6a756e70765d7d044cb3aec971a811b:log:53', 'hash': '0x912b1617ced0f324ff17cb40308b8a17b6a756e70765d7d044cb3aec971a811b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:15:00.000Z'}}, {'blockNum': '0x4c0612', 'uniqueId': '0x912b1617ced0f324ff17cb40308b8a17b6a756e70765d7d044cb3aec971a811b:log:54', 'hash': '0x912b1617ced0f324ff17cb40308b8a17b6a756e70765d7d044cb3aec971a811b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:15:00.000Z'}}, {'blockNum': '0x4c0616', 'uniqueId': '0xa330dfcdaa1b173cbbfc6cf5d27e3ad24e0a53ac7655892035e485ce3733bf8a:log:7', 'hash': '0xa330dfcdaa1b173cbbfc6cf5d27e3ad24e0a53ac7655892035e485ce3733bf8a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 603.1167519674295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20b1ed22770203a54f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:15:34.000Z'}}, {'blockNum': '0x4c0616', 'uniqueId': '0xa330dfcdaa1b173cbbfc6cf5d27e3ad24e0a53ac7655892035e485ce3733bf8a:log:10', 'hash': '0xa330dfcdaa1b173cbbfc6cf5d27e3ad24e0a53ac7655892035e485ce3733bf8a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 603.1167519674295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20b1ed22770203a54f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:15:34.000Z'}}, {'blockNum': '0x4c0617', 'uniqueId': '0x45c522c9a40f96328042f240498f4142be9b4a46c6f259d8ea306dd2a776c2e6:log:34', 'hash': '0x45c522c9a40f96328042f240498f4142be9b4a46c6f259d8ea306dd2a776c2e6', 'from': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 54.40491169585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f30512f013a241c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:15:39.000Z'}}, {'blockNum': '0x4c0617', 'uniqueId': '0x45c522c9a40f96328042f240498f4142be9b4a46c6f259d8ea306dd2a776c2e6:log:36', 'hash': '0x45c522c9a40f96328042f240498f4142be9b4a46c6f259d8ea306dd2a776c2e6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 54.40491169585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f30512f013a241c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:15:39.000Z'}}, {'blockNum': '0x4c0626', 'uniqueId': '0x8c65f206f83246f480441cfc9851330c28659fa479ba67367677c1a446d337d0:log:46', 'hash': '0x8c65f206f83246f480441cfc9851330c28659fa479ba67367677c1a446d337d0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 418.6322558845351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16b1b08ab7de25938f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:19:37.000Z'}}, {'blockNum': '0x4c0626', 'uniqueId': '0x8c65f206f83246f480441cfc9851330c28659fa479ba67367677c1a446d337d0:log:49', 'hash': '0x8c65f206f83246f480441cfc9851330c28659fa479ba67367677c1a446d337d0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xeade8b32735f9c7871da862c18bf12caeaa4e6e9', 'value': 418.6322558845351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16b1b08ab7de25938f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:19:37.000Z'}}, {'blockNum': '0x4c0633', 'uniqueId': '0x2155ee4e5cd175344889e41cde8d7d3772edac1f62b51f0d51fb30d6faf6dd13:log:34', 'hash': '0x2155ee4e5cd175344889e41cde8d7d3772edac1f62b51f0d51fb30d6faf6dd13', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 285.55507255846317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f7adf698e6a17fe8e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:23:33.000Z'}}, {'blockNum': '0x4c0633', 'uniqueId': '0x2155ee4e5cd175344889e41cde8d7d3772edac1f62b51f0d51fb30d6faf6dd13:log:37', 'hash': '0x2155ee4e5cd175344889e41cde8d7d3772edac1f62b51f0d51fb30d6faf6dd13', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 285.55507255846317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f7adf698e6a17fe8e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:23:33.000Z'}}, {'blockNum': '0x4c0636', 'uniqueId': '0x67f6959be12877d3301e8e4070faa17f2f284c6b49c58f7c7276e44e5f0a3a7b:log:145', 'hash': '0x67f6959be12877d3301e8e4070faa17f2f284c6b49c58f7c7276e44e5f0a3a7b', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 155.18931667975002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0869af354ac01a50ae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:24:08.000Z'}}, {'blockNum': '0x4c0636', 'uniqueId': '0x67f6959be12877d3301e8e4070faa17f2f284c6b49c58f7c7276e44e5f0a3a7b:log:147', 'hash': '0x67f6959be12877d3301e8e4070faa17f2f284c6b49c58f7c7276e44e5f0a3a7b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 155.18931667975002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0869af354ac01a50ae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:24:08.000Z'}}, {'blockNum': '0x4c063f', 'uniqueId': '0x1c14ba1d0d72c76beb2a3c6ab4c2f7e6c65607ee667ee9c3e085638355875553:log:49', 'hash': '0x1c14ba1d0d72c76beb2a3c6ab4c2f7e6c65607ee667ee9c3e085638355875553', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xdba0c2e70d5b7bfef8e0bbb2898b26540da260da', 'value': 161.23699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08bd9ce5387d9c9c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:26:29.000Z'}}, {'blockNum': '0x4c0651', 'uniqueId': '0x72ff3152a3ece0a522e011762bb34fc7dbc5b87d808dee4126d10ac3e1e516f9:log:39', 'hash': '0x72ff3152a3ece0a522e011762bb34fc7dbc5b87d808dee4126d10ac3e1e516f9', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:31:12.000Z'}}, {'blockNum': '0x4c0651', 'uniqueId': '0x72ff3152a3ece0a522e011762bb34fc7dbc5b87d808dee4126d10ac3e1e516f9:log:42', 'hash': '0x72ff3152a3ece0a522e011762bb34fc7dbc5b87d808dee4126d10ac3e1e516f9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:31:12.000Z'}}, {'blockNum': '0x4c0651', 'uniqueId': '0x72ff3152a3ece0a522e011762bb34fc7dbc5b87d808dee4126d10ac3e1e516f9:log:43', 'hash': '0x72ff3152a3ece0a522e011762bb34fc7dbc5b87d808dee4126d10ac3e1e516f9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:31:12.000Z'}}, {'blockNum': '0x4c0651', 'uniqueId': '0xf9516580255aff48418cd595beab8ad19f3285456fb01addc3af4b49acfaff68:log:66', 'hash': '0xf9516580255aff48418cd595beab8ad19f3285456fb01addc3af4b49acfaff68', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 93.5280044320773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0511f6387f9520a631', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:31:12.000Z'}}, {'blockNum': '0x4c0651', 'uniqueId': '0xf9516580255aff48418cd595beab8ad19f3285456fb01addc3af4b49acfaff68:log:68', 'hash': '0xf9516580255aff48418cd595beab8ad19f3285456fb01addc3af4b49acfaff68', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 93.5280044320773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0511f6387f9520a631', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:31:12.000Z'}}, {'blockNum': '0x4c0653', 'uniqueId': '0x9cc44275020427b74bd2056cd3f534f1da2104756095df025dfd2d422663f87d:log:29', 'hash': '0x9cc44275020427b74bd2056cd3f534f1da2104756095df025dfd2d422663f87d', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 366.48055001688124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13ddf0768b0dfbf62f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:31:47.000Z'}}, {'blockNum': '0x4c0653', 'uniqueId': '0x9cc44275020427b74bd2056cd3f534f1da2104756095df025dfd2d422663f87d:log:31', 'hash': '0x9cc44275020427b74bd2056cd3f534f1da2104756095df025dfd2d422663f87d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 366.48055001688124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13ddf0768b0dfbf62f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:31:47.000Z'}}, {'blockNum': '0x4c0653', 'uniqueId': '0x4b13b763bcb738c6206b5951eec9f4e61449e1d5c91510cdbb812b8d77fb13ba:log:50', 'hash': '0x4b13b763bcb738c6206b5951eec9f4e61449e1d5c91510cdbb812b8d77fb13ba', 'from': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 6.105002783499761, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x54b953af974634d3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:31:47.000Z'}}, {'blockNum': '0x4c0653', 'uniqueId': '0x4b13b763bcb738c6206b5951eec9f4e61449e1d5c91510cdbb812b8d77fb13ba:log:52', 'hash': '0x4b13b763bcb738c6206b5951eec9f4e61449e1d5c91510cdbb812b8d77fb13ba', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 6.105002783499761, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x54b953af974634d3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:31:47.000Z'}}, {'blockNum': '0x4c0653', 'uniqueId': '0x5c8f8e4c4f5ed816cbea2803eaf3b74026af183c41d50f73a46a8787b47f8538:log:65', 'hash': '0x5c8f8e4c4f5ed816cbea2803eaf3b74026af183c41d50f73a46a8787b47f8538', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.487008735416956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3e450eabf29a34e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:31:47.000Z'}}, {'blockNum': '0x4c0653', 'uniqueId': '0x5c8f8e4c4f5ed816cbea2803eaf3b74026af183c41d50f73a46a8787b47f8538:log:68', 'hash': '0x5c8f8e4c4f5ed816cbea2803eaf3b74026af183c41d50f73a46a8787b47f8538', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 4.487008735416956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3e450eabf29a34e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:31:47.000Z'}}, {'blockNum': '0x4c0659', 'uniqueId': '0xe9d86f875a98955060f4a136dabefdf5c0419566dff98dd1515ed8b5744c947a:log:52', 'hash': '0xe9d86f875a98955060f4a136dabefdf5c0419566dff98dd1515ed8b5744c947a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 598.2464366121933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x206e564c740d05daae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:32:37.000Z'}}, {'blockNum': '0x4c0659', 'uniqueId': '0xe9d86f875a98955060f4a136dabefdf5c0419566dff98dd1515ed8b5744c947a:log:55', 'hash': '0xe9d86f875a98955060f4a136dabefdf5c0419566dff98dd1515ed8b5744c947a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 598.2464366121933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x206e564c740d05daae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:32:37.000Z'}}, {'blockNum': '0x4c0661', 'uniqueId': '0xd5709087b1220fa9fc2233e85ffa6884680edeca35dcb2df69874bd7facefad9:log:31', 'hash': '0xd5709087b1220fa9fc2233e85ffa6884680edeca35dcb2df69874bd7facefad9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 6.402196768264458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x58d92c0a5a8e9032', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:33:58.000Z'}}, {'blockNum': '0x4c0661', 'uniqueId': '0xd5709087b1220fa9fc2233e85ffa6884680edeca35dcb2df69874bd7facefad9:log:34', 'hash': '0xd5709087b1220fa9fc2233e85ffa6884680edeca35dcb2df69874bd7facefad9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 6.402196768264458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x58d92c0a5a8e9032', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:33:58.000Z'}}, {'blockNum': '0x4c066c', 'uniqueId': '0xdcaa93c6454a5cf60a5a4e64395564189fee9c085f9890d0287d04b1124e0095:log:77', 'hash': '0xdcaa93c6454a5cf60a5a4e64395564189fee9c085f9890d0287d04b1124e0095', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:36:49.000Z'}}, {'blockNum': '0x4c066c', 'uniqueId': '0xdcaa93c6454a5cf60a5a4e64395564189fee9c085f9890d0287d04b1124e0095:log:80', 'hash': '0xdcaa93c6454a5cf60a5a4e64395564189fee9c085f9890d0287d04b1124e0095', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:36:49.000Z'}}, {'blockNum': '0x4c066c', 'uniqueId': '0xdcaa93c6454a5cf60a5a4e64395564189fee9c085f9890d0287d04b1124e0095:log:81', 'hash': '0xdcaa93c6454a5cf60a5a4e64395564189fee9c085f9890d0287d04b1124e0095', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:36:49.000Z'}}, {'blockNum': '0x4c066e', 'uniqueId': '0x59d8daddd3d6f2d1c8fa654732ebe69f35935deac24f0d9efedf3e3f7eac4da4:log:62', 'hash': '0x59d8daddd3d6f2d1c8fa654732ebe69f35935deac24f0d9efedf3e3f7eac4da4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'value': 298.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102d21c30250900000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:37:15.000Z'}}, {'blockNum': '0x4c0675', 'uniqueId': '0x5e405dff7c3b1eda6dc7605f443101fcc81c59be50341e1200d98961f2e61e5b:log:11', 'hash': '0x5e405dff7c3b1eda6dc7605f443101fcc81c59be50341e1200d98961f2e61e5b', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:38:33.000Z'}}, {'blockNum': '0x4c0675', 'uniqueId': '0x5e405dff7c3b1eda6dc7605f443101fcc81c59be50341e1200d98961f2e61e5b:log:14', 'hash': '0x5e405dff7c3b1eda6dc7605f443101fcc81c59be50341e1200d98961f2e61e5b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:38:33.000Z'}}, {'blockNum': '0x4c0675', 'uniqueId': '0x5e405dff7c3b1eda6dc7605f443101fcc81c59be50341e1200d98961f2e61e5b:log:15', 'hash': '0x5e405dff7c3b1eda6dc7605f443101fcc81c59be50341e1200d98961f2e61e5b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:38:33.000Z'}}, {'blockNum': '0x4c067e', 'uniqueId': '0x5925cee77de47dcbe19b1e6ba87eb79ce73332683a507a1c5ec02f64dac33539:log:27', 'hash': '0x5925cee77de47dcbe19b1e6ba87eb79ce73332683a507a1c5ec02f64dac33539', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcd56ebb2b2e0eb157bea6d07a147095b853beab7', 'value': 6.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5559306a78a70000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:41:01.000Z'}}, {'blockNum': '0x4c0680', 'uniqueId': '0xc8df54512f158758d0670b3036105bcec2bdb38341343f82f949cfd26639657a:log:23', 'hash': '0xc8df54512f158758d0670b3036105bcec2bdb38341343f82f949cfd26639657a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 44.109541345085816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0264249226a73ef99f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:41:15.000Z'}}, {'blockNum': '0x4c0680', 'uniqueId': '0xc8df54512f158758d0670b3036105bcec2bdb38341343f82f949cfd26639657a:log:26', 'hash': '0xc8df54512f158758d0670b3036105bcec2bdb38341343f82f949cfd26639657a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 44.109541345085816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0264249226a73ef99f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:41:15.000Z'}}, {'blockNum': '0x4c0682', 'uniqueId': '0x09fea0abff9777d3362458aea9474aee7b9cdbb48e7a0ffdb599bb925ba5ae2c:log:4', 'hash': '0x09fea0abff9777d3362458aea9474aee7b9cdbb48e7a0ffdb599bb925ba5ae2c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'value': 336.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x123c7ce1ad29680000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:42:28.000Z'}}, {'blockNum': '0x4c0684', 'uniqueId': '0xc6ba996d15e3749a62d0cc00b7534f8ade40024a3a6600a99a1027c0573a803f:log:3', 'hash': '0xc6ba996d15e3749a62d0cc00b7534f8ade40024a3a6600a99a1027c0573a803f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7c84ae9054329905ad9f79a2075d05f13e5cf48c', 'value': 199.65608838, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ad2c8ea8eede55800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:43:00.000Z'}}, {'blockNum': '0x4c0684', 'uniqueId': '0xeda90f08465c7320528f912d2d15be949a4821ed49d50b3e58edf0f0e3fa9462:log:33', 'hash': '0xeda90f08465c7320528f912d2d15be949a4821ed49d50b3e58edf0f0e3fa9462', 'from': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 595.8898259453417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x204da1ef89a570484a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:43:00.000Z'}}, {'blockNum': '0x4c0684', 'uniqueId': '0xeda90f08465c7320528f912d2d15be949a4821ed49d50b3e58edf0f0e3fa9462:log:35', 'hash': '0xeda90f08465c7320528f912d2d15be949a4821ed49d50b3e58edf0f0e3fa9462', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 595.8898259453417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x204da1ef89a570484a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:43:00.000Z'}}, {'blockNum': '0x4c068a', 'uniqueId': '0x0dc499836b42384453182d3c1812214076d576bc8e3f665a221477efb6e5fd89:log:0', 'hash': '0x0dc499836b42384453182d3c1812214076d576bc8e3f665a221477efb6e5fd89', 'from': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 298.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102d21c30250900000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:44:02.000Z'}}, {'blockNum': '0x4c068b', 'uniqueId': '0x6f78c95969b73e05b7c335f8accf71bc2edccc3795a458dc9ced28675f88ac22:log:33', 'hash': '0x6f78c95969b73e05b7c335f8accf71bc2edccc3795a458dc9ced28675f88ac22', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 22.309115981318627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013599e6c9477c9f47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:44:07.000Z'}}, {'blockNum': '0x4c068b', 'uniqueId': '0x6f78c95969b73e05b7c335f8accf71bc2edccc3795a458dc9ced28675f88ac22:log:36', 'hash': '0x6f78c95969b73e05b7c335f8accf71bc2edccc3795a458dc9ced28675f88ac22', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 22.309115981318627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013599e6c9477c9f47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:44:07.000Z'}}, {'blockNum': '0x4c069b', 'uniqueId': '0x3511e1531d8a1c0b851f8202b0aac3f2eca34f85f722a9a53ee0eae00d3b643f:log:8', 'hash': '0x3511e1531d8a1c0b851f8202b0aac3f2eca34f85f722a9a53ee0eae00d3b643f', 'from': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 336.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x123c7ce1ad29680000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:47:21.000Z'}}, {'blockNum': '0x4c06a3', 'uniqueId': '0x4f5a83b27b03839b80caef4acb7566f2c74b8f2f10549ac148f5caff8f4658a9:log:38', 'hash': '0x4f5a83b27b03839b80caef4acb7566f2c74b8f2f10549ac148f5caff8f4658a9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 434.4919443124745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x178dc97950b1d90d36', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:49:12.000Z'}}, {'blockNum': '0x4c06a3', 'uniqueId': '0x4f5a83b27b03839b80caef4acb7566f2c74b8f2f10549ac148f5caff8f4658a9:log:41', 'hash': '0x4f5a83b27b03839b80caef4acb7566f2c74b8f2f10549ac148f5caff8f4658a9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 434.4919443124745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x178dc97950b1d90d36', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:49:12.000Z'}}, {'blockNum': '0x4c06a4', 'uniqueId': '0x96e0ba7a439ccd3cb35806b43df1d412bb834370120ed5d68ee2fa7e487d56fd:log:0', 'hash': '0x96e0ba7a439ccd3cb35806b43df1d412bb834370120ed5d68ee2fa7e487d56fd', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 14998.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032d109cd71232c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:49:21.000Z'}}, {'blockNum': '0x4c06a9', 'uniqueId': '0xc051528365cd83d3402c25f3fd3d28bf1ac5334f90d950d1d6e6217d335c7f5c:log:42', 'hash': '0xc051528365cd83d3402c25f3fd3d28bf1ac5334f90d950d1d6e6217d335c7f5c', 'from': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 193.60914123235756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a7eddd82a671b72a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:50:31.000Z'}}, {'blockNum': '0x4c06a9', 'uniqueId': '0xc051528365cd83d3402c25f3fd3d28bf1ac5334f90d950d1d6e6217d335c7f5c:log:44', 'hash': '0xc051528365cd83d3402c25f3fd3d28bf1ac5334f90d950d1d6e6217d335c7f5c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 193.60914123235756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a7eddd82a671b72a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:50:31.000Z'}}, {'blockNum': '0x4c06aa', 'uniqueId': '0x6897a73bd535cf1d29fb379b0b5f85f1a0fcc29a13b54bbba5bd47c0ddbf00d0:log:49', 'hash': '0x6897a73bd535cf1d29fb379b0b5f85f1a0fcc29a13b54bbba5bd47c0ddbf00d0', 'from': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 763.0581200497757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x295d8f055480406160', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:50:45.000Z'}}, {'blockNum': '0x4c06aa', 'uniqueId': '0x6897a73bd535cf1d29fb379b0b5f85f1a0fcc29a13b54bbba5bd47c0ddbf00d0:log:51', 'hash': '0x6897a73bd535cf1d29fb379b0b5f85f1a0fcc29a13b54bbba5bd47c0ddbf00d0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 763.0581200497757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x295d8f055480406160', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:50:45.000Z'}}, {'blockNum': '0x4c06ad', 'uniqueId': '0x3eb7eca5ad4ba46077639816db1eb7642d4575e48c0b41601557dd74711b126d:log:31', 'hash': '0x3eb7eca5ad4ba46077639816db1eb7642d4575e48c0b41601557dd74711b126d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 16.62053435344223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe6a7ffef6219cd51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:51:05.000Z'}}, {'blockNum': '0x4c06ad', 'uniqueId': '0x3eb7eca5ad4ba46077639816db1eb7642d4575e48c0b41601557dd74711b126d:log:34', 'hash': '0x3eb7eca5ad4ba46077639816db1eb7642d4575e48c0b41601557dd74711b126d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 16.62053435344223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe6a7ffef6219cd51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:51:05.000Z'}}, {'blockNum': '0x4c06b1', 'uniqueId': '0xbe7dd13c89e11d9e830707c9ad7a263c11bf500ee52e4bc7f5e6c0d9e76d1f91:log:23', 'hash': '0xbe7dd13c89e11d9e830707c9ad7a263c11bf500ee52e4bc7f5e6c0d9e76d1f91', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x677cb269af3cb40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:51:47.000Z'}}, {'blockNum': '0x4c06b1', 'uniqueId': '0xbe7dd13c89e11d9e830707c9ad7a263c11bf500ee52e4bc7f5e6c0d9e76d1f91:log:26', 'hash': '0xbe7dd13c89e11d9e830707c9ad7a263c11bf500ee52e4bc7f5e6c0d9e76d1f91', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x677cb269af3cb40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:51:47.000Z'}}, {'blockNum': '0x4c06b1', 'uniqueId': '0xbe7dd13c89e11d9e830707c9ad7a263c11bf500ee52e4bc7f5e6c0d9e76d1f91:log:27', 'hash': '0xbe7dd13c89e11d9e830707c9ad7a263c11bf500ee52e4bc7f5e6c0d9e76d1f91', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x677cb269af3cb40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:51:47.000Z'}}, {'blockNum': '0x4c06b3', 'uniqueId': '0xc02055d4df28e7a1fba333238b3a3ffaf999a1f69fc50afa4179c7645f8906ed:log:26', 'hash': '0xc02055d4df28e7a1fba333238b3a3ffaf999a1f69fc50afa4179c7645f8906ed', 'from': '0x31611127cfb6652786a75d85743113f069c579a1', 'to': '0x14bf0b0fb2928192e788ec16bc061765efd460b8', 'value': 1287.45, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45caf539cc2ca90000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:52:16.000Z'}}, {'blockNum': '0x4c06b4', 'uniqueId': '0x6b979e6ad45e7ac95f1dfcaad1dfa6435a930b5b7f37b77af222a7bbba595788:log:86', 'hash': '0x6b979e6ad45e7ac95f1dfcaad1dfa6435a930b5b7f37b77af222a7bbba595788', 'from': '0xb9fa043c6b3e28541b0ad65d57e619cefa8b77d5', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 90, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04e1003b28d9280000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:52:39.000Z'}}, {'blockNum': '0x4c06b4', 'uniqueId': '0x6b979e6ad45e7ac95f1dfcaad1dfa6435a930b5b7f37b77af222a7bbba595788:log:89', 'hash': '0x6b979e6ad45e7ac95f1dfcaad1dfa6435a930b5b7f37b77af222a7bbba595788', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 90, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04e1003b28d9280000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:52:39.000Z'}}, {'blockNum': '0x4c06b4', 'uniqueId': '0x6b979e6ad45e7ac95f1dfcaad1dfa6435a930b5b7f37b77af222a7bbba595788:log:90', 'hash': '0x6b979e6ad45e7ac95f1dfcaad1dfa6435a930b5b7f37b77af222a7bbba595788', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 90, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04e1003b28d9280000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:52:39.000Z'}}, {'blockNum': '0x4c06b4', 'uniqueId': '0xee050236e71fe5dc192c7ee5f9c781a077b7a8279ef10289d82444109d7e9f15:log:104', 'hash': '0xee050236e71fe5dc192c7ee5f9c781a077b7a8279ef10289d82444109d7e9f15', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.880807187237842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xce833f4b7e64299c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:52:39.000Z'}}, {'blockNum': '0x4c06b4', 'uniqueId': '0xee050236e71fe5dc192c7ee5f9c781a077b7a8279ef10289d82444109d7e9f15:log:107', 'hash': '0xee050236e71fe5dc192c7ee5f9c781a077b7a8279ef10289d82444109d7e9f15', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb018af916ed0116404537d1238b18988d652733a', 'value': 14.880807187237842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xce833f4b7e64299c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:52:39.000Z'}}, {'blockNum': '0x4c06c5', 'uniqueId': '0x024f75183de60705dd2359a84375a746d767275f27339cba346b1baa6b8290b5:log:24', 'hash': '0x024f75183de60705dd2359a84375a746d767275f27339cba346b1baa6b8290b5', 'from': '0x512e2d8e36a62538ca8af3653253c44ec4899c73', 'to': '0xca317ce542d87d3c1d0a739a2fede22dce407874', 'value': 164.9534074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08f1303a11d74a9000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:55:40.000Z'}}, {'blockNum': '0x4c06ec', 'uniqueId': '0xa5f955ef969a356aed38cb8e0af7d2584325f533672d2dbd126ab076241b6f64:log:20', 'hash': '0xa5f955ef969a356aed38cb8e0af7d2584325f533672d2dbd126ab076241b6f64', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 395.7015961395904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x157376792c0b5dcb3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:04:13.000Z'}}, {'blockNum': '0x4c06ec', 'uniqueId': '0xa5f955ef969a356aed38cb8e0af7d2584325f533672d2dbd126ab076241b6f64:log:22', 'hash': '0xa5f955ef969a356aed38cb8e0af7d2584325f533672d2dbd126ab076241b6f64', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 395.7015961395904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x157376792c0b5dcb3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:04:13.000Z'}}, {'blockNum': '0x4c06ef', 'uniqueId': '0xeb9e5210d44182e815f2e0778bf719ae3b34a6cf80751314c39ac8b4dffbf303:log:14', 'hash': '0xeb9e5210d44182e815f2e0778bf719ae3b34a6cf80751314c39ac8b4dffbf303', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xd6e336b2e0f8d7c1e3607faef19f884ffc5f285d', 'value': 70.86073152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03d763e3e195ed0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:04:42.000Z'}}, {'blockNum': '0x4c0706', 'uniqueId': '0xe614995402d679e2b517eaaac203c169a9945272db0f314da8d79b06eaa76fb0:log:25', 'hash': '0xe614995402d679e2b517eaaac203c169a9945272db0f314da8d79b06eaa76fb0', 'from': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 34.72577144988823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e1eab9260dfd3a2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:10:37.000Z'}}, {'blockNum': '0x4c0706', 'uniqueId': '0xe614995402d679e2b517eaaac203c169a9945272db0f314da8d79b06eaa76fb0:log:28', 'hash': '0xe614995402d679e2b517eaaac203c169a9945272db0f314da8d79b06eaa76fb0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb018af916ed0116404537d1238b18988d652733a', 'value': 34.72577144988823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e1eab9260dfd3a2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:10:37.000Z'}}, {'blockNum': '0x4c070c', 'uniqueId': '0xea865255e2d745d1fdb9aa38204199d68a3c9bc133e3c49c87ec2b7a211f99ee:log:22', 'hash': '0xea865255e2d745d1fdb9aa38204199d68a3c9bc133e3c49c87ec2b7a211f99ee', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1497.6338268295754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x512fd82eb289b88669', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:12:36.000Z'}}, {'blockNum': '0x4c070c', 'uniqueId': '0xea865255e2d745d1fdb9aa38204199d68a3c9bc133e3c49c87ec2b7a211f99ee:log:24', 'hash': '0xea865255e2d745d1fdb9aa38204199d68a3c9bc133e3c49c87ec2b7a211f99ee', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 1497.6338268295754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x512fd82eb289b88669', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:12:36.000Z'}}, {'blockNum': '0x4c071e', 'uniqueId': '0xc402553afc3525a348d446b339a07f135e764830d30ebe6a947c7f4e930141f1:log:56', 'hash': '0xc402553afc3525a348d446b339a07f135e764830d30ebe6a947c7f4e930141f1', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 128.3356791170961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06f503ec349707ecb1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:15:36.000Z'}}, {'blockNum': '0x4c071e', 'uniqueId': '0xc402553afc3525a348d446b339a07f135e764830d30ebe6a947c7f4e930141f1:log:59', 'hash': '0xc402553afc3525a348d446b339a07f135e764830d30ebe6a947c7f4e930141f1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 128.3356791170961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06f503ec349707ecb1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:15:36.000Z'}}, {'blockNum': '0x4c071e', 'uniqueId': '0xab5b07c2330207cf2dbe4a9eed7171d1e7cc50aebd70fb624e21cbea8999b010:log:76', 'hash': '0xab5b07c2330207cf2dbe4a9eed7171d1e7cc50aebd70fb624e21cbea8999b010', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 199.32643518786958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ace35c0ba05e39ea6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:15:36.000Z'}}, {'blockNum': '0x4c071e', 'uniqueId': '0xab5b07c2330207cf2dbe4a9eed7171d1e7cc50aebd70fb624e21cbea8999b010:log:79', 'hash': '0xab5b07c2330207cf2dbe4a9eed7171d1e7cc50aebd70fb624e21cbea8999b010', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 199.32643518786958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ace35c0ba05e39ea6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:15:36.000Z'}}, {'blockNum': '0x4c072e', 'uniqueId': '0x7493075f925174e8662ea312bb3cbd47b4a23973040d02279b314d05ba09f2ea:log:43', 'hash': '0x7493075f925174e8662ea312bb3cbd47b4a23973040d02279b314d05ba09f2ea', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 191.4962798692699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a618b73f3489e524b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:18:45.000Z'}}, {'blockNum': '0x4c072e', 'uniqueId': '0x7493075f925174e8662ea312bb3cbd47b4a23973040d02279b314d05ba09f2ea:log:46', 'hash': '0x7493075f925174e8662ea312bb3cbd47b4a23973040d02279b314d05ba09f2ea', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 191.4962798692699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a618b73f3489e524b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:18:45.000Z'}}, {'blockNum': '0x4c0733', 'uniqueId': '0xdc42363ac1eff397610a229423ed7c45b557f75492f01d590d9a26d353b2a694:log:18', 'hash': '0xdc42363ac1eff397610a229423ed7c45b557f75492f01d590d9a26d353b2a694', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 467.34987709387394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1955c84d1752d32c68', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:19:26.000Z'}}, {'blockNum': '0x4c0733', 'uniqueId': '0xdc42363ac1eff397610a229423ed7c45b557f75492f01d590d9a26d353b2a694:log:20', 'hash': '0xdc42363ac1eff397610a229423ed7c45b557f75492f01d590d9a26d353b2a694', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 467.34987709387394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1955c84d1752d32c68', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:19:26.000Z'}}, {'blockNum': '0x4c0740', 'uniqueId': '0x5e780327aa9c9c8592cbbc81df867e674742da8e0270d5139c145b12c55cadbe:log:10', 'hash': '0x5e780327aa9c9c8592cbbc81df867e674742da8e0270d5139c145b12c55cadbe', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2246.0763104975363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x79c292082cd99eb049', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:22:04.000Z'}}, {'blockNum': '0x4c0740', 'uniqueId': '0x5e780327aa9c9c8592cbbc81df867e674742da8e0270d5139c145b12c55cadbe:log:12', 'hash': '0x5e780327aa9c9c8592cbbc81df867e674742da8e0270d5139c145b12c55cadbe', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2246.0763104975363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x79c292082cd99eb049', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:22:04.000Z'}}, {'blockNum': '0x4c0741', 'uniqueId': '0x8fbca1369e1ef3010918dc14600adbaf628a57ad66be7ba1a252e41a1b5dfaec:log:44', 'hash': '0x8fbca1369e1ef3010918dc14600adbaf628a57ad66be7ba1a252e41a1b5dfaec', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 449.14342451862586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18591dfcef932b0bed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:22:19.000Z'}}, {'blockNum': '0x4c0741', 'uniqueId': '0x8fbca1369e1ef3010918dc14600adbaf628a57ad66be7ba1a252e41a1b5dfaec:log:47', 'hash': '0x8fbca1369e1ef3010918dc14600adbaf628a57ad66be7ba1a252e41a1b5dfaec', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff79b6660b02b4625e4faef219f297cb58c878c6', 'value': 449.14342451862586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18591dfcef932b0bed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:22:19.000Z'}}, {'blockNum': '0x4c0743', 'uniqueId': '0xd4cde12038c49ac4e594727fa3223ea21120afb41f8172a3299c9ad4cf7e26e5:log:70', 'hash': '0xd4cde12038c49ac4e594727fa3223ea21120afb41f8172a3299c9ad4cf7e26e5', 'from': '0xb9fa043c6b3e28541b0ad65d57e619cefa8b77d5', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 33.366681875782305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cf0e4461bb77fc27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:23:19.000Z'}}, {'blockNum': '0x4c0743', 'uniqueId': '0xd4cde12038c49ac4e594727fa3223ea21120afb41f8172a3299c9ad4cf7e26e5:log:73', 'hash': '0xd4cde12038c49ac4e594727fa3223ea21120afb41f8172a3299c9ad4cf7e26e5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 33.366681875782305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cf0e4461bb77fc27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:23:19.000Z'}}, {'blockNum': '0x4c0743', 'uniqueId': '0xd4cde12038c49ac4e594727fa3223ea21120afb41f8172a3299c9ad4cf7e26e5:log:74', 'hash': '0xd4cde12038c49ac4e594727fa3223ea21120afb41f8172a3299c9ad4cf7e26e5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 33.366681875782305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cf0e4461bb77fc27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:23:19.000Z'}}, {'blockNum': '0x4c0744', 'uniqueId': '0x470771f79b5e6373d37dbd0080db470e4e9a477498a8d052216d08ab0f82aa5f:log:22', 'hash': '0x470771f79b5e6373d37dbd0080db470e4e9a477498a8d052216d08ab0f82aa5f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcbd3e7d81c7059e1eef3c9ae0870dfa3d1151af8', 'value': 4063.86301576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xdc4d6db9908e792000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:24:08.000Z'}}, {'blockNum': '0x4c0747', 'uniqueId': '0xf3bff718963fac67ed464b5df40efb892a3f8e435bc0c5b256bf325687fd75b3:log:62', 'hash': '0xf3bff718963fac67ed464b5df40efb892a3f8e435bc0c5b256bf325687fd75b3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 748.5221403860952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2893d4d8d74447db59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:25:31.000Z'}}, {'blockNum': '0x4c0747', 'uniqueId': '0xf3bff718963fac67ed464b5df40efb892a3f8e435bc0c5b256bf325687fd75b3:log:65', 'hash': '0xf3bff718963fac67ed464b5df40efb892a3f8e435bc0c5b256bf325687fd75b3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xeade8b32735f9c7871da862c18bf12caeaa4e6e9', 'value': 748.5221403860952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2893d4d8d74447db59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:25:31.000Z'}}, {'blockNum': '0x4c0748', 'uniqueId': '0x62e79eed6a3d2e27601ecc8b45cf26dd554b96ec3f47da9b0cdba5fb60ba32fe:log:1', 'hash': '0x62e79eed6a3d2e27601ecc8b45cf26dd554b96ec3f47da9b0cdba5fb60ba32fe', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbfe62d74800b2d7b37dc8b7243c523f61026ad30', 'value': 6.15030585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x555a4695b941c400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:25:39.000Z'}}, {'blockNum': '0x4c0759', 'uniqueId': '0x6edf369a32dd6667b82b9c69d055ca9f6ac8ae3cfb6ef7bc1276c6f10c6f4ee9:log:32', 'hash': '0x6edf369a32dd6667b82b9c69d055ca9f6ac8ae3cfb6ef7bc1276c6f10c6f4ee9', 'from': '0xb100a7f4eef382d586fcb744d579347bb3b52477', 'to': '0x7a39fc7760cec74274019d11baff4ef47d4b0e7a', 'value': 49.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5c0282441c70000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:28:01.000Z'}}, {'blockNum': '0x4c0762', 'uniqueId': '0x3d244eb15fa472ec7719501dcb2cf7e9a0d28f9e8eee64c4f22d98b287518050:log:3', 'hash': '0x3d244eb15fa472ec7719501dcb2cf7e9a0d28f9e8eee64c4f22d98b287518050', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6ba26287872802340d179761122f53bc04dcb6b7', 'value': 24.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01529e36b927880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:30:07.000Z'}}, {'blockNum': '0x4c076f', 'uniqueId': '0x85f8c15d2d9897acb6d9610ba14b98d0ca13750db93f2d88e283d5704cddfe41:log:26', 'hash': '0x85f8c15d2d9897acb6d9610ba14b98d0ca13750db93f2d88e283d5704cddfe41', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.69644925020384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081d749f779fb094a4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:33:08.000Z'}}, {'blockNum': '0x4c076f', 'uniqueId': '0x85f8c15d2d9897acb6d9610ba14b98d0ca13750db93f2d88e283d5704cddfe41:log:29', 'hash': '0x85f8c15d2d9897acb6d9610ba14b98d0ca13750db93f2d88e283d5704cddfe41', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'value': 149.69644925020384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081d749f779fb094a4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:33:08.000Z'}}, {'blockNum': '0x4c0778', 'uniqueId': '0xef6841ad9d6239c709dbc6c100db9fc4c9f71dc934189bddf2ff1cbee75c1ef4:log:4', 'hash': '0xef6841ad9d6239c709dbc6c100db9fc4c9f71dc934189bddf2ff1cbee75c1ef4', 'from': '0xdba0c2e70d5b7bfef8e0bbb2898b26540da260da', 'to': '0x512e2d8e36a62538ca8af3653253c44ec4899c73', 'value': 161.23699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08bd9ce5387d9c9c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:35:46.000Z'}}, {'blockNum': '0x4c0778', 'uniqueId': '0xb0bca29cf433a3214416fb6cf7907a0cdf7a05831f5b865ad3cd6074fe3d8da2:log:10', 'hash': '0xb0bca29cf433a3214416fb6cf7907a0cdf7a05831f5b865ad3cd6074fe3d8da2', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x5790254ee1ca100ce43e744dc44067eb81d3c07a', 'value': 3.29758286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2dc35e23cbb77800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:35:46.000Z'}}, {'blockNum': '0x4c077f', 'uniqueId': '0x8e09240f1a5612a5012948449ccf2acfeb2b19c41229c8e4a50a361c06094e03:log:22', 'hash': '0x8e09240f1a5612a5012948449ccf2acfeb2b19c41229c8e4a50a361c06094e03', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 748.5221403860952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2893d4d8d74447db65', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:36:18.000Z'}}, {'blockNum': '0x4c077f', 'uniqueId': '0x8e09240f1a5612a5012948449ccf2acfeb2b19c41229c8e4a50a361c06094e03:log:24', 'hash': '0x8e09240f1a5612a5012948449ccf2acfeb2b19c41229c8e4a50a361c06094e03', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 748.5221403860952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2893d4d8d74447db65', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:36:18.000Z'}}, {'blockNum': '0x4c078a', 'uniqueId': '0x74a311edcfae355d5d80dcd0c69ec375cc3f4e0b860a5ac01b381b888282a372:log:41', 'hash': '0x74a311edcfae355d5d80dcd0c69ec375cc3f4e0b860a5ac01b381b888282a372', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 8.885121176621405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b4e4aa27ed1d505', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:38:59.000Z'}}, {'blockNum': '0x4c078a', 'uniqueId': '0x74a311edcfae355d5d80dcd0c69ec375cc3f4e0b860a5ac01b381b888282a372:log:44', 'hash': '0x74a311edcfae355d5d80dcd0c69ec375cc3f4e0b860a5ac01b381b888282a372', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 8.885121176621405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b4e4aa27ed1d505', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:38:59.000Z'}}, {'blockNum': '0x4c078d', 'uniqueId': '0xf842a84459295676d3a6e22a56922325beb4640824e059b2bf5ce65fc7994e54:log:57', 'hash': '0xf842a84459295676d3a6e22a56922325beb4640824e059b2bf5ce65fc7994e54', 'from': '0xcbd3e7d81c7059e1eef3c9ae0870dfa3d1151af8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4063.86301576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xdc4d6db9908e792000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:40:09.000Z'}}, {'blockNum': '0x4c078e', 'uniqueId': '0xe3944c8c5ce0801592612c5b49df236e8f8029a9fc2478c269267a86b4740901:log:39', 'hash': '0xe3944c8c5ce0801592612c5b49df236e8f8029a9fc2478c269267a86b4740901', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xe4c0ce5815f487ea58373104b510ca0d064feb49', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:40:29.000Z'}}, {'blockNum': '0x4c078f', 'uniqueId': '0x7d100e646b3c9ca44f5d671a92eaa5b0e403563dfcf21e6ecc924eae9a441b0f:log:79', 'hash': '0x7d100e646b3c9ca44f5d671a92eaa5b0e403563dfcf21e6ecc924eae9a441b0f', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 15.352460478350867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd50ee576d853bc4a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:40:38.000Z'}}, {'blockNum': '0x4c078f', 'uniqueId': '0x7d100e646b3c9ca44f5d671a92eaa5b0e403563dfcf21e6ecc924eae9a441b0f:log:81', 'hash': '0x7d100e646b3c9ca44f5d671a92eaa5b0e403563dfcf21e6ecc924eae9a441b0f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 15.352460478350867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd50ee576d853bc4a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:40:38.000Z'}}, {'blockNum': '0x4c0790', 'uniqueId': '0x37728703bbdf4673dcfc2c5a4c08d507006f4f37ad60bc7563388670740624b7:log:93', 'hash': '0x37728703bbdf4673dcfc2c5a4c08d507006f4f37ad60bc7563388670740624b7', 'from': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 12.514165050773487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xadab3ecf8ff63beb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:40:59.000Z'}}, {'blockNum': '0x4c0790', 'uniqueId': '0x37728703bbdf4673dcfc2c5a4c08d507006f4f37ad60bc7563388670740624b7:log:96', 'hash': '0x37728703bbdf4673dcfc2c5a4c08d507006f4f37ad60bc7563388670740624b7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb018af916ed0116404537d1238b18988d652733a', 'value': 12.514165050773487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xadab3ecf8ff63beb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:40:59.000Z'}}, {'blockNum': '0x4c0792', 'uniqueId': '0x614f0e23b4b9c28629bd247b2515a20528467e61000837ca516607ae2b69a0a9:log:21', 'hash': '0x614f0e23b4b9c28629bd247b2515a20528467e61000837ca516607ae2b69a0a9', 'from': '0x83216cc3157d766c3ff4dd1886cb12cda1a3582d', 'to': '0xfaa13bbcbf3bd6a8d0ee376362dab81662a3031e', 'value': 10.01628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8b00f9976ad98000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:41:38.000Z'}}, {'blockNum': '0x4c0798', 'uniqueId': '0xdd72d11dfa471a53ef5ac07efb38cbbc377dfe936b6f8feba4b027209b0a6447:log:1', 'hash': '0xdd72d11dfa471a53ef5ac07efb38cbbc377dfe936b6f8feba4b027209b0a6447', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'value': 298.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102d21c30250900000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:43:14.000Z'}}, {'blockNum': '0x4c07a0', 'uniqueId': '0x87de9283c482e2e226a3dcade7faf641723d3892b261d982e6fb14639c231df3:log:9', 'hash': '0x87de9283c482e2e226a3dcade7faf641723d3892b261d982e6fb14639c231df3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 166.7437140155077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x090a08ac7377a8918f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:45:15.000Z'}}, {'blockNum': '0x4c07a0', 'uniqueId': '0x87de9283c482e2e226a3dcade7faf641723d3892b261d982e6fb14639c231df3:log:12', 'hash': '0x87de9283c482e2e226a3dcade7faf641723d3892b261d982e6fb14639c231df3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 166.7437140155077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x090a08ac7377a8918f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:45:15.000Z'}}, {'blockNum': '0x4c07a2', 'uniqueId': '0x02e2130fd8d8d07f3b98814e69e7a8dd4ef437d399de5f89a48268200aaff7f4:log:59', 'hash': '0x02e2130fd8d8d07f3b98814e69e7a8dd4ef437d399de5f89a48268200aaff7f4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 374.2556142432148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1449d70a435270c4b8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:46:24.000Z'}}, {'blockNum': '0x4c07a2', 'uniqueId': '0x02e2130fd8d8d07f3b98814e69e7a8dd4ef437d399de5f89a48268200aaff7f4:log:62', 'hash': '0x02e2130fd8d8d07f3b98814e69e7a8dd4ef437d399de5f89a48268200aaff7f4', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 374.2556142432148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1449d70a435270c4b8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:46:24.000Z'}}, {'blockNum': '0x4c07ac', 'uniqueId': '0x6d7d3e0e0574bee3c438c8dc4091e969c1fed25b2613da01977a47a498742e33:log:43', 'hash': '0x6d7d3e0e0574bee3c438c8dc4091e969c1fed25b2613da01977a47a498742e33', 'from': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2.7989899374474825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26d80284b7733451', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:49:35.000Z'}}, {'blockNum': '0x4c07ac', 'uniqueId': '0x6d7d3e0e0574bee3c438c8dc4091e969c1fed25b2613da01977a47a498742e33:log:46', 'hash': '0x6d7d3e0e0574bee3c438c8dc4091e969c1fed25b2613da01977a47a498742e33', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 2.7989899374474825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26d80284b7733451', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:49:35.000Z'}}, {'blockNum': '0x4c07ad', 'uniqueId': '0x09d704d118a3ec04762a62e7c2c1d89a94dff56647ad67d962777db38f5c0fa5:log:16', 'hash': '0x09d704d118a3ec04762a62e7c2c1d89a94dff56647ad67d962777db38f5c0fa5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2156.859751258028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x74ec71243c8826b056', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:49:53.000Z'}}, {'blockNum': '0x4c07ad', 'uniqueId': '0x09d704d118a3ec04762a62e7c2c1d89a94dff56647ad67d962777db38f5c0fa5:log:18', 'hash': '0x09d704d118a3ec04762a62e7c2c1d89a94dff56647ad67d962777db38f5c0fa5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 2156.859751258028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x74ec71243c8826b056', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:49:53.000Z'}}, {'blockNum': '0x4c07b1', 'uniqueId': '0x3c68017a033ef798f4e6f642d1b2bd1e986143d2ea8e28259898920a5a7b9da2:log:20', 'hash': '0x3c68017a033ef798f4e6f642d1b2bd1e986143d2ea8e28259898920a5a7b9da2', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 2156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x74e082b105be300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:50:22.000Z'}}, {'blockNum': '0x4c07b6', 'uniqueId': '0x4ab09481f1b344ce3de341bf65e4468d61db06f2c355670140154272998307a3:log:57', 'hash': '0x4ab09481f1b344ce3de341bf65e4468d61db06f2c355670140154272998307a3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2992.6806831634226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa23bc9996f7123a0e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:51:49.000Z'}}, {'blockNum': '0x4c07b6', 'uniqueId': '0x4ab09481f1b344ce3de341bf65e4468d61db06f2c355670140154272998307a3:log:59', 'hash': '0x4ab09481f1b344ce3de341bf65e4468d61db06f2c355670140154272998307a3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2992.6806831634226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa23bc9996f7123a0e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:51:49.000Z'}}, {'blockNum': '0x4c07b9', 'uniqueId': '0xfdeb4dbc86edf7a4f05de3f2cc9b8fc1056d68727d29686c143c73c7c04ee9f0:log:80', 'hash': '0xfdeb4dbc86edf7a4f05de3f2cc9b8fc1056d68727d29686c143c73c7c04ee9f0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 359.05027057840516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1376d2cec2ddb9dc48', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:52:36.000Z'}}, {'blockNum': '0x4c07b9', 'uniqueId': '0xfdeb4dbc86edf7a4f05de3f2cc9b8fc1056d68727d29686c143c73c7c04ee9f0:log:83', 'hash': '0xfdeb4dbc86edf7a4f05de3f2cc9b8fc1056d68727d29686c143c73c7c04ee9f0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xeade8b32735f9c7871da862c18bf12caeaa4e6e9', 'value': 359.05027057840516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1376d2cec2ddb9dc48', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:52:36.000Z'}}, {'blockNum': '0x4c07ba', 'uniqueId': '0x055e69d51eb28cf4d2854b268e198432e8967014562d108456035e67fc0d66f8:log:55', 'hash': '0x055e69d51eb28cf4d2854b268e198432e8967014562d108456035e67fc0d66f8', 'from': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 298.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102d21c30250900000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:52:47.000Z'}}, {'blockNum': '0x4c07c0', 'uniqueId': '0xaf14bf353e117cfd5af0177ded05ab575e0fd5a605f6c1b812e6fbf0eca3d4ef:log:45', 'hash': '0xaf14bf353e117cfd5af0177ded05ab575e0fd5a605f6c1b812e6fbf0eca3d4ef', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1495.878146943231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51177ac1248cdc891d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:54:18.000Z'}}, {'blockNum': '0x4c07c0', 'uniqueId': '0xaf14bf353e117cfd5af0177ded05ab575e0fd5a605f6c1b812e6fbf0eca3d4ef:log:47', 'hash': '0xaf14bf353e117cfd5af0177ded05ab575e0fd5a605f6c1b812e6fbf0eca3d4ef', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 1495.878146943231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51177ac1248cdc891d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:54:18.000Z'}}, {'blockNum': '0x4c07c2', 'uniqueId': '0x03d71f32458cf60f933d385143e2fa3f593c1057097c10282197a76d815bd290:log:75', 'hash': '0x03d71f32458cf60f933d385143e2fa3f593c1057097c10282197a76d815bd290', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 31.029701286063318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ae9fa4ead2491da2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:54:35.000Z'}}, {'blockNum': '0x4c07c2', 'uniqueId': '0x03d71f32458cf60f933d385143e2fa3f593c1057097c10282197a76d815bd290:log:77', 'hash': '0x03d71f32458cf60f933d385143e2fa3f593c1057097c10282197a76d815bd290', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 31.029701286063318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ae9fa4ead2491da2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:54:35.000Z'}}, {'blockNum': '0x4c07c4', 'uniqueId': '0x9829357745b394b62a13c5d074495c087b1009e13ae29c06aaa5b09b8dbaa5c4:log:52', 'hash': '0x9829357745b394b62a13c5d074495c087b1009e13ae29c06aaa5b09b8dbaa5c4', 'from': '0xeade8b32735f9c7871da862c18bf12caeaa4e6e9', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1191.4126802548872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x40962c2051209aa1ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:55:01.000Z'}}, {'blockNum': '0x4c07c4', 'uniqueId': '0x9829357745b394b62a13c5d074495c087b1009e13ae29c06aaa5b09b8dbaa5c4:log:54', 'hash': '0x9829357745b394b62a13c5d074495c087b1009e13ae29c06aaa5b09b8dbaa5c4', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1191.4126802548872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x40962c2051209aa1ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:55:01.000Z'}}, {'blockNum': '0x4c07c7', 'uniqueId': '0x095abf39cb12dd3d8f5662143f728bd53b3d3b74cc0191d88e9e3c91837999ce:log:69', 'hash': '0x095abf39cb12dd3d8f5662143f728bd53b3d3b74cc0191d88e9e3c91837999ce', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 66.8692531209191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039fff4f6ccc104d6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:55:41.000Z'}}, {'blockNum': '0x4c07c7', 'uniqueId': '0x095abf39cb12dd3d8f5662143f728bd53b3d3b74cc0191d88e9e3c91837999ce:log:72', 'hash': '0x095abf39cb12dd3d8f5662143f728bd53b3d3b74cc0191d88e9e3c91837999ce', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 66.8692531209191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039fff4f6ccc104d6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:55:41.000Z'}}, {'blockNum': '0x4c07ce', 'uniqueId': '0xb1cf79295a34128b6c0b6a18b2e0ec7c8c84d110d7335586cc9a8ab3086dc86a:log:30', 'hash': '0xb1cf79295a34128b6c0b6a18b2e0ec7c8c84d110d7335586cc9a8ab3086dc86a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 204.94272778335034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b1c26d515fa2d1de4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:56:46.000Z'}}, {'blockNum': '0x4c07ce', 'uniqueId': '0xb1cf79295a34128b6c0b6a18b2e0ec7c8c84d110d7335586cc9a8ab3086dc86a:log:33', 'hash': '0xb1cf79295a34128b6c0b6a18b2e0ec7c8c84d110d7335586cc9a8ab3086dc86a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 204.94272778335034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b1c26d515fa2d1de4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:56:46.000Z'}}, {'blockNum': '0x4c07d1', 'uniqueId': '0xe55bfa44a114f9efb9ee8fd702c486ccb95247d8d99c21df3c8dc6b4c9ca7ddc:log:78', 'hash': '0xe55bfa44a114f9efb9ee8fd702c486ccb95247d8d99c21df3c8dc6b4c9ca7ddc', 'from': '0x25d4aef414ea092fbcbd83fd30e89e15cf820d0a', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.949713691592526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5291a1145ea68bce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:57:57.000Z'}}, {'blockNum': '0x4c07d1', 'uniqueId': '0xe55bfa44a114f9efb9ee8fd702c486ccb95247d8d99c21df3c8dc6b4c9ca7ddc:log:80', 'hash': '0xe55bfa44a114f9efb9ee8fd702c486ccb95247d8d99c21df3c8dc6b4c9ca7ddc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.949713691592526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5291a1145ea68bce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:57:57.000Z'}}, {'blockNum': '0x4c07d3', 'uniqueId': '0x738c347f359c03f01a9996de600ededdfb682ef8d480d273d90814c4739fd944:log:6', 'hash': '0x738c347f359c03f01a9996de600ededdfb682ef8d480d273d90814c4739fd944', 'from': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x74e082b105be300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:58:12.000Z'}}, {'blockNum': '0x4c07d9', 'uniqueId': '0xbdc3beaa9aed542d25017c451f93cde22f82e587c4eae5b211768f7ba6167914:log:45', 'hash': '0xbdc3beaa9aed542d25017c451f93cde22f82e587c4eae5b211768f7ba6167914', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1495.782427321765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x511626b0a77958f306', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T16:00:13.000Z'}}, {'blockNum': '0x4c07d9', 'uniqueId': '0xbdc3beaa9aed542d25017c451f93cde22f82e587c4eae5b211768f7ba6167914:log:47', 'hash': '0xbdc3beaa9aed542d25017c451f93cde22f82e587c4eae5b211768f7ba6167914', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 1495.782427321765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x511626b0a77958f306', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T16:00:13.000Z'}}, {'blockNum': '0x4c07e0', 'uniqueId': '0xa70404800d5fcf082f525f7deceec38d15d29e7bbf7fa8ab90f571abcae3e81c:log:31', 'hash': '0xa70404800d5fcf082f525f7deceec38d15d29e7bbf7fa8ab90f571abcae3e81c', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 176.31623351406327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x098ee11837b490672c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T16:01:27.000Z'}}, {'blockNum': '0x4c07e0', 'uniqueId': '0xa70404800d5fcf082f525f7deceec38d15d29e7bbf7fa8ab90f571abcae3e81c:log:33', 'hash': '0xa70404800d5fcf082f525f7deceec38d15d29e7bbf7fa8ab90f571abcae3e81c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 176.31623351406327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x098ee11837b490672c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T16:01:27.000Z'}}, {'blockNum': '0x4c07e6', 'uniqueId': '0x54cfe7e08108d8ce2eb989897b72d25b7259dbb7ed61d029d2237fad5f86ae75:log:40', 'hash': '0x54cfe7e08108d8ce2eb989897b72d25b7259dbb7ed61d029d2237fad5f86ae75', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 79.18817101096788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x044af4e5fa41a03c09', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T16:02:45.000Z'}}, {'blockNum': '0x4c07e6', 'uniqueId': '0x54cfe7e08108d8ce2eb989897b72d25b7259dbb7ed61d029d2237fad5f86ae75:log:43', 'hash': '0x54cfe7e08108d8ce2eb989897b72d25b7259dbb7ed61d029d2237fad5f86ae75', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 79.18817101096788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x044af4e5fa41a03c09', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T16:02:45.000Z'}}, {'blockNum': '0x4c07e6', 'uniqueId': '0x5ea232c10a1e80909d139f11721e0feeef6bdc0c0b678d337fefe7b96902f766:log:57', 'hash': '0x5ea232c10a1e80909d139f11721e0feeef6bdc0c0b678d337fefe7b96902f766', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 176.18504734349622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x098d0f07172c78d379', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T16:02:45.000Z'}}], 'pageKey': 'f8b4f6c3-5920-407f-8ef8-c574c0f96bb5'}}
Answer is paginated. Downloading more pages...
Number of returned transfers: 1001
Answer is complete
symbol MOD
group BPS
date 2018-02-12
hour 19:00
exchange binance
Name: 285, dtype: object
HERE
{'arbitrum-one': '0x244ae62439c1ef3187f244d8604ac2c391ef2b53'}
No contract for ethereum specified
{'aptos': '0x6f986d146e4a90b828d8c12c14b6f4e003fdff11a8eecceceb63744363eaac01::mod_coin::MOD'}
No contract for ethereum specified
Symbol: MOD, Contract: 0xea1ea0972fa092dd463f2968f9bb51cc4c981d71
Datetime timestamps: 2018-02-12 19:00:00 2018-02-12 07:00:00 2018-02-13 07:00:00
Unix timestamps: 1518415200.0 1518501600.0
Hex Block Numbers: 0x4d7157 0x4d8897
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers: 0
Answer is complete
symbol DLT
group BPS
date 2018-03-11
hour 20:00
exchange binance
Name: 290, dtype: object
HERE
Symbol: DLT, Contract: 0x07e3c70653548b04f0a75970c1f81b4cbbfb606f
Datetime timestamps: 2018-03-11 20:00:00 2018-03-11 08:00:00 2018-03-12 08:00:00
Unix timestamps: 1520751600.0 1520838000.0
Hex Block Numbers: 0x4fe050 0x4ff78b
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x4fe095', 'uniqueId': '0x5c31c042d7ba5017a469a73000ed2d6a6db80b2d39d612e01adb242beedacc04:log:78', 'hash': '0x5c31c042d7ba5017a469a73000ed2d6a6db80b2d39d612e01adb242beedacc04', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xafbb68d5bc82a65c5a558b2bd149eb9c3068e941', 'value': 509.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1b9a91ce248ce80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T07:14:45.000Z'}}, {'blockNum': '0x4fe0a1', 'uniqueId': '0x14b68bb80a5d1e6089f35857bc65ae1feaf03bc080d0343e682f08edb45760e3:log:0', 'hash': '0x14b68bb80a5d1e6089f35857bc65ae1feaf03bc080d0343e682f08edb45760e3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe31fa7a36e8f97f27cdf04a07a2f6e305f8d772a', 'value': 10000.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x021e1ca754ab6d540000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T07:16:38.000Z'}}, {'blockNum': '0x4fe0b3', 'uniqueId': '0xe27ba970756e78ecac640c5db727d1c66bc6b37acd049e9c8da6e081ddb093b2:log:43', 'hash': '0xe27ba970756e78ecac640c5db727d1c66bc6b37acd049e9c8da6e081ddb093b2', 'from': '0xe31fa7a36e8f97f27cdf04a07a2f6e305f8d772a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x021e1ca754ab6d540000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T07:23:08.000Z'}}, {'blockNum': '0x4fe0bb', 'uniqueId': '0xaf6ba169dc6f49f64d432b95dddb0724f55be8ac8ddf611586e9dabf565bc55b:log:5', 'hash': '0xaf6ba169dc6f49f64d432b95dddb0724f55be8ac8ddf611586e9dabf565bc55b', 'from': '0x74aa0d7d107ae07eb16961c0922f224088fe322f', 'to': '0x6b12b2350150b6f7e9428e58c1d8d80974da89f4', 'value': 1133.3333333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x3d7028d60260b8b500', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T07:24:53.000Z'}}, {'blockNum': '0x4fe208', 'uniqueId': '0x00cf7e8100efdda0314cbfce908f30a36cd213af1d81c5d6f4e4e2a0286d9b0c:log:61', 'hash': '0x00cf7e8100efdda0314cbfce908f30a36cd213af1d81c5d6f4e4e2a0286d9b0c', 'from': '0x1596cea26bd71e15866ec5adefebfb4c483034dd', 'to': '0x80bc7cfd26a9d0026b6767c4cfd32589b9a119f6', 'value': 1.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x16345785d8a00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T08:49:08.000Z'}}, {'blockNum': '0x4fe21a', 'uniqueId': '0xf5d867ca79f41fbe8c84321b31a97d79840a00fd41f351f06890a3dfdc09d6ee:log:162', 'hash': '0xf5d867ca79f41fbe8c84321b31a97d79840a00fd41f351f06890a3dfdc09d6ee', 'from': '0x1596cea26bd71e15866ec5adefebfb4c483034dd', 'to': '0x80bc7cfd26a9d0026b6767c4cfd32589b9a119f6', 'value': 998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x361a08405e8fd80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T08:53:04.000Z'}}, {'blockNum': '0x4fe287', 'uniqueId': '0x62f90dae9cdde6b5b099b1151f9d2976d12f6eb2029d9e08058cf097709377be:log:11', 'hash': '0x62f90dae9cdde6b5b099b1151f9d2976d12f6eb2029d9e08058cf097709377be', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb064bc2eb1114808e60d8c8ad6b889df0498f08e', 'value': 487.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1a69421ab42a500000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T09:17:58.000Z'}}, {'blockNum': '0x4fe44b', 'uniqueId': '0xa7dce160d591179bf7bd3f0bdab036f8ffb7f8e19bd6e94923639bacbeea3cfd:log:12', 'hash': '0xa7dce160d591179bf7bd3f0bdab036f8ffb7f8e19bd6e94923639bacbeea3cfd', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x50e8c448cb0cc181238b65fe8c679a31c29b8d5f', 'value': 334.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1225736078b2420000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T11:07:20.000Z'}}, {'blockNum': '0x4fe4f6', 'uniqueId': '0x8c30329a3c29d8d8bae008f25c8d1ddae4fff35ed61c81326806b021967b2418:log:1', 'hash': '0x8c30329a3c29d8d8bae008f25c8d1ddae4fff35ed61c81326806b021967b2418', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x695de20b30f467c9bae380979ecdb5e52d37b21e', 'value': 278.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0f1e83d85310720000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T11:51:03.000Z'}}, {'blockNum': '0x4fe58c', 'uniqueId': '0x46a92cf0942c95036cb6236ebe1421578a7680523af1bf32908e6017f9df412a:log:99', 'hash': '0x46a92cf0942c95036cb6236ebe1421578a7680523af1bf32908e6017f9df412a', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x4a3eeeed7f10b6dfc20c59e285a2e1958f6214f1', 'value': 649.0827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x232fd4fca99770c000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T12:26:42.000Z'}}, {'blockNum': '0x4fe69e', 'uniqueId': '0x2a2fe0d8a55c3cf0f0b1d0a3053568dd49a207e07bc90aea1b1cf7229f5efd7e:log:0', 'hash': '0x2a2fe0d8a55c3cf0f0b1d0a3053568dd49a207e07bc90aea1b1cf7229f5efd7e', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0xbb297ae2d86b3109b3be6615a4bff77b0f8d113c', 'value': 6.55489009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x5af7a5cebc2da400', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T13:33:33.000Z'}}, {'blockNum': '0x4fe7f0', 'uniqueId': '0xb8769fa2b92d779f0125367c595c68f98cce9ad41276b07ed84d4550ce7a0e21:log:33', 'hash': '0xb8769fa2b92d779f0125367c595c68f98cce9ad41276b07ed84d4550ce7a0e21', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xb47150f8a60a021de01d386cbb1620bc51cba5d2', 'value': 1254.64, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x4403a0b0a1e4180000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T14:56:32.000Z'}}, {'blockNum': '0x4fe839', 'uniqueId': '0x2cb3ea2dde0a6ec32c79c1b296e315fdbc1ec50dedc16f064110e41b90cb610f:log:2', 'hash': '0x2cb3ea2dde0a6ec32c79c1b296e315fdbc1ec50dedc16f064110e41b90cb610f', 'from': '0x1300cd3633616c898bdff0165b04fb0abad1002e', 'to': '0x6e055b529c379c755fb33e141e57c0f257540072', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T15:15:11.000Z'}}, {'blockNum': '0x4fe876', 'uniqueId': '0x0f8a6a3fd1072541f80307f95bf71c4d3a8ab760c1f465c14cdd9b3719271834:log:0', 'hash': '0x0f8a6a3fd1072541f80307f95bf71c4d3a8ab760c1f465c14cdd9b3719271834', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9dc87bb130992b6973581a85033407d417ffb63d', 'value': 5274.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x011dea3a7c173d3c0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T15:29:10.000Z'}}, {'blockNum': '0x4fe881', 'uniqueId': '0xf25a89f824ffff76c2dce20f68258bfeadcbd201eba4d146e46b2ca566e3ecdf:log:80', 'hash': '0xf25a89f824ffff76c2dce20f68258bfeadcbd201eba4d146e46b2ca566e3ecdf', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xf6be906cf0066b4a07f8119e4ec5f4ef8cb32c67', 'value': 135.492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0758544821f33a0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T15:31:41.000Z'}}, {'blockNum': '0x4fe88a', 'uniqueId': '0x54a33ba021e80424aebba4f45f2180a9990e1f3bb9213b2a9e55ac47a6299e0a:log:6', 'hash': '0x54a33ba021e80424aebba4f45f2180a9990e1f3bb9213b2a9e55ac47a6299e0a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x139fc32c5911a6a225a2a4dec13878f13b5cb1d0', 'value': 2178.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x761950db99b37e0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T15:33:50.000Z'}}, {'blockNum': '0x4fe8b1', 'uniqueId': '0xcf8c4e27cd2cb156df8dd64f1ddad71ab30be9d2b45e44841c3b14694ec8f1eb:log:99', 'hash': '0xcf8c4e27cd2cb156df8dd64f1ddad71ab30be9d2b45e44841c3b14694ec8f1eb', 'from': '0x5dc3eb2d7345da1ac372674b4e6aeb5c685787df', 'to': '0x04c494e47c72b1e59ff8d99a53e83f39990658bf', 'value': 288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0f9ccd8a1c50800000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T15:41:57.000Z'}}, {'blockNum': '0x4fe901', 'uniqueId': '0xeb936a4f4eab44de56207f83540ab599289cb998db92a50f05b577e0ed2e5700:log:11', 'hash': '0xeb936a4f4eab44de56207f83540ab599289cb998db92a50f05b577e0ed2e5700', 'from': '0x5dc3eb2d7345da1ac372674b4e6aeb5c685787df', 'to': '0xf773c6db4799ff79c9a1b23d9d36e735309cbc61', 'value': 288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0f9ccd8a1c50800000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T15:58:00.000Z'}}, {'blockNum': '0x4fe987', 'uniqueId': '0xb365b8f106c4ae4c4f4d659c7417db0701698e6c567da2417c6bdb63b573441c:log:9', 'hash': '0xb365b8f106c4ae4c4f4d659c7417db0701698e6c567da2417c6bdb63b573441c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6523dd92fa4adecb2cb63227f7f7f1d382e14f8a', 'value': 19979.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x043b131921a964600000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T16:28:31.000Z'}}, {'blockNum': '0x4feb40', 'uniqueId': '0x1760f9e6782ef7427db2e03da95e4bece23635c3387592268c49fa0035832c75:log:13', 'hash': '0x1760f9e6782ef7427db2e03da95e4bece23635c3387592268c49fa0035832c75', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2f1df99050876ccf5eb533f9b03e195a69636e12', 'value': 978.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x350f94261868580000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T18:17:34.000Z'}}, {'blockNum': '0x4febc1', 'uniqueId': '0xc2c5d40bb58aea5b263f0d3203686a58a7da59498dc2add56f0b18a2ca6c2534:log:1', 'hash': '0xc2c5d40bb58aea5b263f0d3203686a58a7da59498dc2add56f0b18a2ca6c2534', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x206fbdcbfccecb7a0209624a4d8a6fa2ac25247a', 'value': 1615.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x578f67224dbaf00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T18:45:41.000Z'}}, {'blockNum': '0x4fecf0', 'uniqueId': '0x237943b7cad869060d1138a2c5fe6a3ad0f2fc884a87413d847466b193c7a9d3:log:20', 'hash': '0x237943b7cad869060d1138a2c5fe6a3ad0f2fc884a87413d847466b193c7a9d3', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1702.49790988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x5c4ae79cd0ba66b000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:00:53.000Z'}}, {'blockNum': '0x4fecf5', 'uniqueId': '0xcfabaff0981c12d79a5c01b3305eda2b06b29bcf485b9e1c2881b39255d9857d:log:2', 'hash': '0xcfabaff0981c12d79a5c01b3305eda2b06b29bcf485b9e1c2881b39255d9857d', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 291.29603002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0fca8b63f35f9fa800', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:03:40.000Z'}}, {'blockNum': '0x4fed13', 'uniqueId': '0x43848ee70a931fe3ab2737d45631a27630df3c84216a08d256fed89a37b80d41:log:9', 'hash': '0x43848ee70a931fe3ab2737d45631a27630df3c84216a08d256fed89a37b80d41', 'from': '0xa901430a796c442e3be804489a23d4ee38505eeb', 'to': '0xf6271988e937c4db147042bb8453abdc7bf6c342', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:11:29.000Z'}}, {'blockNum': '0x4fed1a', 'uniqueId': '0x1783c1b820ad2d0e9f1f5dc44fa203ee00050a9d4b9c9c0c31039859647db9b3:log:1', 'hash': '0x1783c1b820ad2d0e9f1f5dc44fa203ee00050a9d4b9c9c0c31039859647db9b3', 'from': '0x1410b207054a98e89df3d6c3bf6e9195d709b918', 'to': '0xa09cf816b62ada4eefdc9332bcdc0dc575d4b307', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:13:29.000Z'}}, {'blockNum': '0x4fed1c', 'uniqueId': '0x473689d46b6fb9299903233a727748dde3c1f890294f7f3ddd76c53ffb481b04:log:6', 'hash': '0x473689d46b6fb9299903233a727748dde3c1f890294f7f3ddd76c53ffb481b04', 'from': '0xba8fbbd8193300623eebcbb265c4bf1aa4e07a57', 'to': '0x0e1935492e75dfb904ff874d7bd92e3848004408', 'value': 290.792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0fc38cb75165640000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:14:35.000Z'}}, {'blockNum': '0x4fed24', 'uniqueId': '0x9ddd76535d963999bc78a340523d20d9b19c1eefe621b665c41b2d44f8260602:log:9', 'hash': '0x9ddd76535d963999bc78a340523d20d9b19c1eefe621b665c41b2d44f8260602', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0xf7d6477a43783bcf61e2c48ba26189e6b7177442', 'value': 14.93751426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xcf4cb613bea1c800', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:17:51.000Z'}}, {'blockNum': '0x4fed32', 'uniqueId': '0xcda66ad92e9eb0be024a1144c9b9b4579df63c790080a3cd55aacf4ac64e5af6:log:1', 'hash': '0xcda66ad92e9eb0be024a1144c9b9b4579df63c790080a3cd55aacf4ac64e5af6', 'from': '0x0507fd26da77bbeae709be27050691864e759c4c', 'to': '0x8b1fa3d39e48a05085920d57a843c4672029f582', 'value': 5002.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x010f31057316d9240000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:20:35.000Z'}}, {'blockNum': '0x4fed35', 'uniqueId': '0xe9aa333afba48d84b3a07bba9437d00c5107f2dc80605b6b0bf53e43168b14aa:log:8', 'hash': '0xe9aa333afba48d84b3a07bba9437d00c5107f2dc80605b6b0bf53e43168b14aa', 'from': '0x0f94e2a44ced2a368da8a1edeaa337f13a8560d0', 'to': '0x1019390b505aceff5cfd0de590bf31eec11510af', 'value': 99541.7106666667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x15142abd18bf44914b00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:21:06.000Z'}}, {'blockNum': '0x4fed3c', 'uniqueId': '0xb72c7b0ba182bf4f25bbb3ff7539dd96246dae4c9d3614d2523c8a54e1f74b0a:log:3', 'hash': '0xb72c7b0ba182bf4f25bbb3ff7539dd96246dae4c9d3614d2523c8a54e1f74b0a', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0xb47150f8a60a021de01d386cbb1620bc51cba5d2', 'value': 60.99382188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x034e7595d73ad93000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:22:54.000Z'}}, {'blockNum': '0x4fed41', 'uniqueId': '0xa4ccff561f1b5ed7c07fd0e305c2335a1b98bcb3b5a6fa96ad3db14e2db965ae:log:0', 'hash': '0xa4ccff561f1b5ed7c07fd0e305c2335a1b98bcb3b5a6fa96ad3db14e2db965ae', 'from': '0x6aa6dbaff6878695f7d06f754a707925b1981bed', 'to': '0x521ff11ae7d1721a027d907c621e00d8405f544e', 'value': 4179.2897307692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xe28f4bcb4f0016ac00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:24:08.000Z'}}, {'blockNum': '0x4fed41', 'uniqueId': '0x288817eadba18f60b5472233d94e4dab74e932d7003cbba30efbc4217615351e:log:5', 'hash': '0x288817eadba18f60b5472233d94e4dab74e932d7003cbba30efbc4217615351e', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0xf7d6477a43783bcf61e2c48ba26189e6b7177442', 'value': 28.7371291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x018ececaa91e0a7800', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:24:08.000Z'}}, {'blockNum': '0x4fed42', 'uniqueId': '0x70c1597712faa6477e7bb270a6664ef1ada91b34581ac87cc84ab791480003e0:log:18', 'hash': '0x70c1597712faa6477e7bb270a6664ef1ada91b34581ac87cc84ab791480003e0', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0xb47150f8a60a021de01d386cbb1620bc51cba5d2', 'value': 14.93751426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xcf4cb613bea1c800', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:24:21.000Z'}}, {'blockNum': '0x4fed57', 'uniqueId': '0x41b7f7f50304b911af70314710fc7235fa209b336d8b1ab744d18858f16310bd:log:0', 'hash': '0x41b7f7f50304b911af70314710fc7235fa209b336d8b1ab744d18858f16310bd', 'from': '0x1410b207054a98e89df3d6c3bf6e9195d709b918', 'to': '0xa09cf816b62ada4eefdc9332bcdc0dc575d4b307', 'value': 62887.1834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0d511efcafb8f20a8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:27:45.000Z'}}, {'blockNum': '0x4fed63', 'uniqueId': '0x1dc7bdc773d270ae8c09a287c227efed300aee377fdfd9d3375a115b7c033a3e:log:5', 'hash': '0x1dc7bdc773d270ae8c09a287c227efed300aee377fdfd9d3375a115b7c033a3e', 'from': '0x2e1105944e57640124b31ba74bddff750a5161e4', 'to': '0x164f1264a837cf043a74e59450768a5a38fa03a5', 'value': 400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x15af1d78b58c400000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:30:11.000Z'}}, {'blockNum': '0x4fed69', 'uniqueId': '0x3b31c76bfbd54de919b37435545c4284a079094c4b498601a96072aa5d183c83:log:3', 'hash': '0x3b31c76bfbd54de919b37435545c4284a079094c4b498601a96072aa5d183c83', 'from': '0x75e589357b07ddd7182127dd4fc6467ce0d8c695', 'to': '0x824252b82a59d2dbb6590e13a5c86caa8ea5e3fe', 'value': 3229.381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xaf10aa0d8193c08000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:31:09.000Z'}}, {'blockNum': '0x4fed79', 'uniqueId': '0x5bda9a1cb68b65d9a0da5da48e4641ee271557c17e0d8120590c0b34718de13b:log:10', 'hash': '0x5bda9a1cb68b65d9a0da5da48e4641ee271557c17e0d8120590c0b34718de13b', 'from': '0x372b418062839db28e96cde98982e668eb60fdec', 'to': '0x0e589c21929376e639546edccefaa2c94c12e053', 'value': 950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x337fe5feaf2d180000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:35:22.000Z'}}, {'blockNum': '0x4fed7e', 'uniqueId': '0x3231374095b6e4eaa20b47531be50abb28d7844ec97bb1a6f59584a27899327b:log:7', 'hash': '0x3231374095b6e4eaa20b47531be50abb28d7844ec97bb1a6f59584a27899327b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb1cdb83c661322881bbcc0537049f46e2373a66f', 'value': 114.075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x062f1bd01ad0af8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:36:14.000Z'}}, {'blockNum': '0x4fed7f', 'uniqueId': '0x2e75a501099570c9e01c92f754a37d9612b9bd05db185b9ec7a5a7c546e17450:log:24', 'hash': '0x2e75a501099570c9e01c92f754a37d9612b9bd05db185b9ec7a5a7c546e17450', 'from': '0xcc91a3bcd481272ee4a23ac89be65ccf2cee727b', 'to': '0x41e93bc71888d0a8b11ab6240a7c91a95dc0a3c1', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:36:30.000Z'}}, {'blockNum': '0x4fed88', 'uniqueId': '0x4842dc8f2a9619a1f36c2556c3f0978b3e9b6fbd992eaedf3e7a041567bea3c0:log:77', 'hash': '0x4842dc8f2a9619a1f36c2556c3f0978b3e9b6fbd992eaedf3e7a041567bea3c0', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'value': 1096.169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x3b6c6699bf6b2a8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:38:37.000Z'}}, {'blockNum': '0x4fed8c', 'uniqueId': '0xe787d8710a69f7942c46d593fd1aa845b3486cb679ebf3ccd88d77c1ca2411a1:log:16', 'hash': '0xe787d8710a69f7942c46d593fd1aa845b3486cb679ebf3ccd88d77c1ca2411a1', 'from': '0x536a30da345d7967d14e2d84829337755bb4c72a', 'to': '0x54a816ebbebc79a391c4e42f8096cb3610aead5f', 'value': 1111.0341538462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x3c3ab23c697172de00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:39:40.000Z'}}, {'blockNum': '0x4fed8f', 'uniqueId': '0x019a00a33954d5407b374c2c7b8a6591c64189332364844afbcdff920eac2b9a:log:29', 'hash': '0x019a00a33954d5407b374c2c7b8a6591c64189332364844afbcdff920eac2b9a', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1043.931, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x389773f1843a4f8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:39:57.000Z'}}, {'blockNum': '0x4fed9c', 'uniqueId': '0x8eff89293ab7b1d23c14b901944fd860886f3ef3f00e1a778bf6e6d8bd60e423:log:23', 'hash': '0x8eff89293ab7b1d23c14b901944fd860886f3ef3f00e1a778bf6e6d8bd60e423', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 724.543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x27470dd3b4e7d98000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:42:40.000Z'}}, {'blockNum': '0x4fedb1', 'uniqueId': '0xb09ed672ac33a8c3869ac3dffa4761c52e034f0f91b4c8d3be4f53ad9928a1af:log:9', 'hash': '0xb09ed672ac33a8c3869ac3dffa4761c52e034f0f91b4c8d3be4f53ad9928a1af', 'from': '0x42ccea3fdf3b54fb6e48c2abbdf088919a6b19ba', 'to': '0xdcfef53026666742c9d4c94e9e67f21fd125e71e', 'value': 1310.292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x4707f44fc684220000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:47:54.000Z'}}, {'blockNum': '0x4fedcb', 'uniqueId': '0xaec0f8d3f85fd80734a3d5dd117499e8966a342b0e2c3491b49186902d9acdd0:log:35', 'hash': '0xaec0f8d3f85fd80734a3d5dd117499e8966a342b0e2c3491b49186902d9acdd0', 'from': '0xcc91a3bcd481272ee4a23ac89be65ccf2cee727b', 'to': '0x41e93bc71888d0a8b11ab6240a7c91a95dc0a3c1', 'value': 1935.697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x68ef3135bcdd4e8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:53:43.000Z'}}, {'blockNum': '0x4fedd7', 'uniqueId': '0x1c2bad5fcad3de0b8ef081ebd93cdb7e9ee3ce7a764aba2dd83bb761b9989e5e:log:1', 'hash': '0x1c2bad5fcad3de0b8ef081ebd93cdb7e9ee3ce7a764aba2dd83bb761b9989e5e', 'from': '0x206fbdcbfccecb7a0209624a4d8a6fa2ac25247a', 'to': '0x4f93b1800866200b4bd1fc53d2f2c64315eecab8', 'value': 3265.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xb101c0b43a9d780000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:55:35.000Z'}}, {'blockNum': '0x4fedf8', 'uniqueId': '0xe17a7978c64cfeaeb5d76558bd93915a44220617a436693de3233bd53298715c:log:12', 'hash': '0xe17a7978c64cfeaeb5d76558bd93915a44220617a436693de3233bd53298715c', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xb38bc8e39e7c54590896a69399a5c28350b9a133', 'value': 871, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x2f378d9d3e853c0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T21:02:52.000Z'}}, {'blockNum': '0x4fee1c', 'uniqueId': '0xcd285249c1170d79c0e0ce7eca98f86ff8696b18e656a2f7cb0e82381f19b4f9:log:2', 'hash': '0xcd285249c1170d79c0e0ce7eca98f86ff8696b18e656a2f7cb0e82381f19b4f9', 'from': '0x140e7c141314985383dee669d13eb5dbf1d59ccf', 'to': '0x4f93b1800866200b4bd1fc53d2f2c64315eecab8', 'value': 3860.744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xd14a9604e6d0b40000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T21:10:40.000Z'}}, {'blockNum': '0x4fee2d', 'uniqueId': '0x88d216ac6e9a9abf0acd4ab15a425cd10b45f52a09751a98813b4fbf6dc7668c:log:11', 'hash': '0x88d216ac6e9a9abf0acd4ab15a425cd10b45f52a09751a98813b4fbf6dc7668c', 'from': '0xfec3c0de5d3775c39ab3f31e0a1fbdbaad802e7b', 'to': '0xd48fbe2e03d61eef83c7bc8b6ec65a5f591da9b3', 'value': 13436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x02d85df4fd0564700000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T21:15:29.000Z'}}, {'blockNum': '0x4fee2f', 'uniqueId': '0x8151093880d429ccd8b6285bd8a04de34c0145d80b84ddd81f5bd5ff2c0a178e:log:3', 'hash': '0x8151093880d429ccd8b6285bd8a04de34c0145d80b84ddd81f5bd5ff2c0a178e', 'from': '0xd11dc1609d9b9503d0fea2603102c0ca057d08c2', 'to': '0x613aeba7039e9beba4305bd0915bd2db1a887524', 'value': 2064.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x6feedb343882900000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T21:16:20.000Z'}}, {'blockNum': '0x4feeaa', 'uniqueId': '0x62a602cbc1afe6fa3b132fa42f60aac7840b4cce10bdb9e402f7d07442bd0223:log:8', 'hash': '0x62a602cbc1afe6fa3b132fa42f60aac7840b4cce10bdb9e402f7d07442bd0223', 'from': '0x2eacc7f96cb5611a347c16cc812b31e448fa30b7', 'to': '0xcc4e34c7e0e490b1d3304a444429f7675f454cc8', 'value': 6042.6928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x014793355e0a9a8c0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T21:41:20.000Z'}}, {'blockNum': '0x4feeb7', 'uniqueId': '0xdb728844eaf2467bfe449029b098a9e52be80b9140a448c262b75cff82199f46:log:19', 'hash': '0xdb728844eaf2467bfe449029b098a9e52be80b9140a448c262b75cff82199f46', 'from': '0x0600b7f37736d4484937a111f7ed67cc8c9879fc', 'to': '0x92cd69c1213b5698c292825321a1c1eb7efee259', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T21:45:24.000Z'}}, {'blockNum': '0x4feecb', 'uniqueId': '0x389b7ab104aec25e9f8c35546a5e206912ba672ef77b3d53eb098250b5a4830a:log:9', 'hash': '0x389b7ab104aec25e9f8c35546a5e206912ba672ef77b3d53eb098250b5a4830a', 'from': '0x0815728f597260f6480916f6e25d3679c660d698', 'to': '0x5687b2c54a9c6d1e5eac79d7ea2ed8f8bf5a7ed2', 'value': 1001.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x364ec4903c72540000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T21:51:09.000Z'}}, {'blockNum': '0x4fef04', 'uniqueId': '0x74e0b50258e91d4986c1515732795642f18105541e76d282512cf81888a0a48e:log:129', 'hash': '0x74e0b50258e91d4986c1515732795642f18105541e76d282512cf81888a0a48e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'value': 896.764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x309d19babd9e660000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T22:03:19.000Z'}}, {'blockNum': '0x4fef59', 'uniqueId': '0x7206516815d36ddf5e4928c8b7ce52b350acb76a08a4434abd3d270fa4f02a97:log:6', 'hash': '0x7206516815d36ddf5e4928c8b7ce52b350acb76a08a4434abd3d270fa4f02a97', 'from': '0x159c1919148129985b3b7574a69a0a64ebb1fe13', 'to': '0x845380b09244776b97d7d5e40918aa713f9ed49f', 'value': 2300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x7caee97613e6700000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T22:22:27.000Z'}}, {'blockNum': '0x4fef84', 'uniqueId': '0x6d7fadd468019cfaeeb0ed489e5a8eaf17e0cbdb5ce549e6da78be51867f6d50:log:74', 'hash': '0x6d7fadd468019cfaeeb0ed489e5a8eaf17e0cbdb5ce549e6da78be51867f6d50', 'from': '0x4c184bb75ff1b00f95e1e36200147fd61800ba94', 'to': '0x72eb81f4662ba592f3624b7bf02e33f32f73d39c', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T22:34:27.000Z'}}, {'blockNum': '0x4fefb7', 'uniqueId': '0xb5d2d74ae0ba544aaf4b8a6e846b40adae3902b6a3d9f0588fb238f69a2a3f0e:log:12', 'hash': '0xb5d2d74ae0ba544aaf4b8a6e846b40adae3902b6a3d9f0588fb238f69a2a3f0e', 'from': '0xffd06e976e128eb436d7674404da3bd0c53a7992', 'to': '0x326c566f1e428f1df27da28421256f7df7320239', 'value': 3000.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xa2a6ea1f3312080000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T22:48:34.000Z'}}, {'blockNum': '0x4fefc6', 'uniqueId': '0x3b1d6a75d32b1c791342557a7be2a15cb7b5e9e2cc11f42d95593a73242a02be:log:1', 'hash': '0x3b1d6a75d32b1c791342557a7be2a15cb7b5e9e2cc11f42d95593a73242a02be', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7d8ddab687ab763be9c850dff8b13bdb370fa436', 'value': 580.7385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1f7b5d9cdd95304000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T22:51:19.000Z'}}, {'blockNum': '0x4ff02c', 'uniqueId': '0x60618dcbfaaea5bb4dbb434d4c45825c03a5bc246c4b47fe2fb0622091c81232:log:11', 'hash': '0x60618dcbfaaea5bb4dbb434d4c45825c03a5bc246c4b47fe2fb0622091c81232', 'from': '0x470c45f7bdf01910e0fb1d2badb3e5a0c0b63fc9', 'to': '0xd5fdf63c83cb12ab2f229aa23ecc9015791680f8', 'value': 2774.94, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x966e074bbcde760000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T23:13:16.000Z'}}, {'blockNum': '0x4ff055', 'uniqueId': '0xdccb685ac35ce39a31993ec0492aba72af532b19f2e2d09a060425d4d5b488be:log:2', 'hash': '0xdccb685ac35ce39a31993ec0492aba72af532b19f2e2d09a060425d4d5b488be', 'from': '0x93490fdc279f206c270807e49378d81fa6e6b60c', 'to': '0x1fc193f0ca6658b464ee7f45adb2ca180f30da4c', 'value': 300000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x3f870857a3e0e3800000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T23:22:45.000Z'}}, {'blockNum': '0x4ff0a4', 'uniqueId': '0x3ad7fe6b4c6af833b90ed547a1e2ec240ea970c2a0694a444e9a43cf45a6559d:log:35', 'hash': '0x3ad7fe6b4c6af833b90ed547a1e2ec240ea970c2a0694a444e9a43cf45a6559d', 'from': '0x4e448f43540cb6d31022526c8dbaad3e6dd9a8fa', 'to': '0x83fcf2882ef2777029fa7ea76ad31671ce7ffa6f', 'value': 6651.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x016896e193c871d20000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T23:41:43.000Z'}}, {'blockNum': '0x4ff0a7', 'uniqueId': '0x4107718e3b384931fd571d98b0f45bcca370efcdec032551d0917f428ac69205:log:0', 'hash': '0x4107718e3b384931fd571d98b0f45bcca370efcdec032551d0917f428ac69205', 'from': '0xa5176302ce2579ca89efe9ba1579ff8d3fe042c5', 'to': '0xa0623ab87d829e1db3850643a7a79a02f2ee5b80', 'value': 4100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xde42ee1544dd900000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T23:42:16.000Z'}}, {'blockNum': '0x4ff0a9', 'uniqueId': '0x2e85957536c90a435ea1b3d57b194da1d5c0af5aeed671f9a8f9158c4ac45134:log:11', 'hash': '0x2e85957536c90a435ea1b3d57b194da1d5c0af5aeed671f9a8f9158c4ac45134', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb41f8118fd7a0b33c2fb7d98cdf600b3a851e323', 'value': 3505.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xbe046bfca78b380000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T23:42:39.000Z'}}, {'blockNum': '0x4ff13a', 'uniqueId': '0x744975fc59feac4b40c850d7c17e328760965f39bf5560044d2cc88c0f4948a5:log:13', 'hash': '0x744975fc59feac4b40c850d7c17e328760965f39bf5560044d2cc88c0f4948a5', 'from': '0x02af30e7e745826114b117d6f523aee2db7a11e5', 'to': '0x35377a467d68640dacedf1a5afd34c3b044c10b4', 'value': 4998.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x010efc492338f6a80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-12T00:19:14.000Z'}}, {'blockNum': '0x4ff1c9', 'uniqueId': '0xbf57eec91c6a7ce9499d73cc56323c94920a22a86549577434501f73349ed159:log:2', 'hash': '0xbf57eec91c6a7ce9499d73cc56323c94920a22a86549577434501f73349ed159', 'from': '0x7d8ddab687ab763be9c850dff8b13bdb370fa436', 'to': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'value': 580.7385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1f7b5d9cdd95304000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-12T00:52:54.000Z'}}, {'blockNum': '0x4ff307', 'uniqueId': '0x8347ad6b47bb232dea5e2c1e3608c14e11bf8afc2c5cd02e1cae4bfb89a33602:log:10', 'hash': '0x8347ad6b47bb232dea5e2c1e3608c14e11bf8afc2c5cd02e1cae4bfb89a33602', 'from': '0x93490fdc279f206c270807e49378d81fa6e6b60c', 'to': '0x1fc193f0ca6658b464ee7f45adb2ca180f30da4c', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-12T02:16:34.000Z'}}, {'blockNum': '0x4ff30f', 'uniqueId': '0xa3da84c113abcacf92a09eb6e90c30ccefb6aee19173aa9a0a89c32768bccfe3:log:27', 'hash': '0xa3da84c113abcacf92a09eb6e90c30ccefb6aee19173aa9a0a89c32768bccfe3', 'from': '0xe58d9940a395d303e691dbe0676710d9c140101a', 'to': '0x9d0cc163ae362e6afac1adf11289eef89f031e47', 'value': 3054.936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xa59bc0ea4160bc0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-12T02:18:47.000Z'}}, {'blockNum': '0x4ff345', 'uniqueId': '0x05733e68f1dbd7dd9944975925e303078323867cfb2d853f3b0c8da33794e74f:log:72', 'hash': '0x05733e68f1dbd7dd9944975925e303078323867cfb2d853f3b0c8da33794e74f', 'from': '0x9d0cc163ae362e6afac1adf11289eef89f031e47', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 3054.936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xa59bc0ea4160bc0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-12T02:35:37.000Z'}}, {'blockNum': '0x4ff3e2', 'uniqueId': '0xa46d016b6ccac2036e07ff73c46d4eede98359e1288009227c3705be456118fa:log:3', 'hash': '0xa46d016b6ccac2036e07ff73c46d4eede98359e1288009227c3705be456118fa', 'from': '0x1ee51353ffffe87950897a927a7f08d20c038091', 'to': '0x65b3dc250820f15ee6adf7d78c1f7a53ffba6bf8', 'value': 541.90384615385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1d606d34f282291280', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-12T03:09:40.000Z'}}, {'blockNum': '0x4ff454', 'uniqueId': '0xa5c63bfaf5cd6e3338d720bdedd05c8f9c81ad7a9fda5f0966489e58abb1bd8a:log:0', 'hash': '0xa5c63bfaf5cd6e3338d720bdedd05c8f9c81ad7a9fda5f0966489e58abb1bd8a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x98c4e143ce5ebbdbe3b9ac6c4a8b5bebaf219480', 'value': 1319.72029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x478acc5393c5802000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-12T03:36:19.000Z'}}, {'blockNum': '0x4ff5d8', 'uniqueId': '0xa84c61898f4308788be2dc7717bcfd85a42e3b620d05bd3d6c02b589f927253f:log:2', 'hash': '0xa84c61898f4308788be2dc7717bcfd85a42e3b620d05bd3d6c02b589f927253f', 'from': '0x573442828c569afb707909dc2f5b9be3649fc960', 'to': '0x05bb5b4edc3e8af81d26709af7cb628ae16ecc22', 'value': 1694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x5bd4f8f8cda7b80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-12T05:09:09.000Z'}}, {'blockNum': '0x4ff672', 'uniqueId': '0x9226ff387873fd92db9c15630fc5c9f3165a25154a0cd1de40171612829aa3cb:log:2', 'hash': '0x9226ff387873fd92db9c15630fc5c9f3165a25154a0cd1de40171612829aa3cb', 'from': '0x98c4e143ce5ebbdbe3b9ac6c4a8b5bebaf219480', 'to': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'value': 1319.72029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x478acc5393c5802000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-12T05:45:55.000Z'}}, {'blockNum': '0x4ff72c', 'uniqueId': '0x03273d6946fc5ad607fe8d28b585e7e81de920559ebb18ebe800499ef74e0f25:log:28', 'hash': '0x03273d6946fc5ad607fe8d28b585e7e81de920559ebb18ebe800499ef74e0f25', 'from': '0x951996c509421c055ce004a509a0bfd196382aef', 'to': '0xcd011c30094ef743d90f37e375d8554e1d1d603d', 'value': 107.29230769231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x05d0fad9631c0c7180', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-12T06:33:10.000Z'}}]}}
Number of returned transfers: 73
Answer is complete
symbol DNT
group BPS
date 2018-03-24
hour 18:30
exchange binance
Name: 292, dtype: object
HERE
{'binance-smart-chain': '0x2456493e757fdeedf569781f053998a72adfad03'}
No contract for ethereum specified
{'binance-smart-chain': '0x44836708ff32246635d8d08c785f4e779e294598'}
No contract for ethereum specified
Symbol: DNT, Contract: 0x0abdace70d3790235af448c88547603b945604ea
Datetime timestamps: 2018-03-24 18:30:00 2018-03-24 06:30:00 2018-03-25 06:30:00
Unix timestamps: 1521869400.0 1521952200.0
Hex Block Numbers: 0x510b5b 0x512246
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x510b5b', 'uniqueId': '0x0851692390d1430bbdcdc5e9702f486bcc8b039455e8bbeb60eda28354b729c7:log:21', 'hash': '0x0851692390d1430bbdcdc5e9702f486bcc8b039455e8bbeb60eda28354b729c7', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x632ea202eef31173b55fed8a030f9b2a7cc09093', 'value': 41121.2526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08b5300499f75c278000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T05:30:30.000Z'}}, {'blockNum': '0x510b6a', 'uniqueId': '0x30ba9ec6a4e5ad42290738c66dc5f7cd46980ce0be831f74bd2b8ea1a2048109:log:4', 'hash': '0x30ba9ec6a4e5ad42290738c66dc5f7cd46980ce0be831f74bd2b8ea1a2048109', 'from': '0x632ea202eef31173b55fed8a030f9b2a7cc09093', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41121.2526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08b5300499f75c278000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T05:34:05.000Z'}}, {'blockNum': '0x510b83', 'uniqueId': '0xf92e8ca2733c3a44030713daea17c2569189db49ddc839cb7fb03f43f7d2f7ec:log:48', 'hash': '0xf92e8ca2733c3a44030713daea17c2569189db49ddc839cb7fb03f43f7d2f7ec', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xdc45e6095a0d3dddb37e2b3dba93beabe6d88a61', 'value': 1696.58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5bf8c6f922483a0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T05:39:12.000Z'}}, {'blockNum': '0x510bb3', 'uniqueId': '0xcc2c1fa3fe5cb81599cd80803b41e3a223e6aaca528a5734043d032b483b45fe:log:5', 'hash': '0xcc2c1fa3fe5cb81599cd80803b41e3a223e6aaca528a5734043d032b483b45fe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9f17140f67c44a29c35337c21fd818087872183d', 'value': 182029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x268bcfd63d063c140000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T05:50:20.000Z'}}, {'blockNum': '0x510bd4', 'uniqueId': '0x2b42bb508bb420975a6b67d8dd87323af9844e0de6e183cc8b945ad6d92c505a:log:128', 'hash': '0x2b42bb508bb420975a6b67d8dd87323af9844e0de6e183cc8b945ad6d92c505a', 'from': '0x9f17140f67c44a29c35337c21fd818087872183d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 182029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x268bcfd63d063c140000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T05:58:36.000Z'}}, {'blockNum': '0x510c32', 'uniqueId': '0xc30dc7cebf464e623ce4449c905f893c01511bda7dd4e2d41df27d5128b7da4b:log:102', 'hash': '0xc30dc7cebf464e623ce4449c905f893c01511bda7dd4e2d41df27d5128b7da4b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xec465ed3f0d265ded60675c86734478aaf8de1ac', 'value': 22015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04a96f7fa387f09c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T06:22:08.000Z'}}, {'blockNum': '0x510c4e', 'uniqueId': '0xc5e7d8c7d45f4d3c396165619c27009e4bc681f49b8d739cdb41346d9e389057:log:42', 'hash': '0xc5e7d8c7d45f4d3c396165619c27009e4bc681f49b8d739cdb41346d9e389057', 'from': '0xec465ed3f0d265ded60675c86734478aaf8de1ac', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 22015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04a96f7fa387f09c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T06:28:24.000Z'}}, {'blockNum': '0x510cd2', 'uniqueId': '0xa81ef66fdb8b14c7e8371a402ebb5b5aaf7cba83bd49d6de0d4666790c2ca1b8:log:3', 'hash': '0xa81ef66fdb8b14c7e8371a402ebb5b5aaf7cba83bd49d6de0d4666790c2ca1b8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 20180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0445f5c209c716d00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T06:57:24.000Z'}}, {'blockNum': '0x510cf5', 'uniqueId': '0x1ba6cb49e79422dbab1d650376540568d37ec41a8c7c9eae18fc6ce581950675:log:39', 'hash': '0x1ba6cb49e79422dbab1d650376540568d37ec41a8c7c9eae18fc6ce581950675', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0445f5c209c716d00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T07:04:04.000Z'}}, {'blockNum': '0x510cfb', 'uniqueId': '0xbcb06a90c340dc4b6416e43ec2f345f03d9f2461dd9916e3a176bc562ef4af75:log:19', 'hash': '0xbcb06a90c340dc4b6416e43ec2f345f03d9f2461dd9916e3a176bc562ef4af75', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x26d497d8b7f1cf354b6b77c2452db9a4cdbdb4a9', 'value': 1712.01772592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5ccf04cb10c9aac000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T07:04:54.000Z'}}, {'blockNum': '0x510d6d', 'uniqueId': '0x89c63ac27ca632aff54e95392f12f6927164a42225cdb362790493d214d13b5a:log:11', 'hash': '0x89c63ac27ca632aff54e95392f12f6927164a42225cdb362790493d214d13b5a', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xb99228204758a360ae9306377997c13e8326a3f6', 'value': 0.28, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03e2c284391c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T07:33:09.000Z'}}, {'blockNum': '0x510d79', 'uniqueId': '0x617308317df879a521e193e940eaa9497875400d9a443b9ac0ac588ed8dfaa05:log:5', 'hash': '0x617308317df879a521e193e940eaa9497875400d9a443b9ac0ac588ed8dfaa05', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x79b869eb5798eb512e04d9369f6c7cd5a7f389e3', 'value': 2318.85103999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x7db485cf1251121c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T07:35:46.000Z'}}, {'blockNum': '0x510de7', 'uniqueId': '0xb52b637fba1291363828569e76e999e1614ada2a384526b1449907251745ddc1:log:4', 'hash': '0xb52b637fba1291363828569e76e999e1614ada2a384526b1449907251745ddc1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1539b9ebd02e6fe6777a528ae30651bf09965144', 'value': 20895.023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x046cb8b207ec68f18000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T08:04:15.000Z'}}, {'blockNum': '0x510e66', 'uniqueId': '0x49d711a68ad1dfdf61c9c7dd5ff0ad38de597fe101a8de276634bcd38966606f:log:2', 'hash': '0x49d711a68ad1dfdf61c9c7dd5ff0ad38de597fe101a8de276634bcd38966606f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xebdc726434f2204b60b852ee0d79931e5bc0af98', 'value': 11461.466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x026d53cb098cf1490000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T08:31:36.000Z'}}, {'blockNum': '0x510f13', 'uniqueId': '0xa7b57dc233d45cd6adcd2a363057352c2ff59c2d459ddab341f2cdc0d8b99966:log:39', 'hash': '0xa7b57dc233d45cd6adcd2a363057352c2ff59c2d459ddab341f2cdc0d8b99966', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe0e2262733a32454812347f59fb7e4edf053d4c9', 'value': 459.479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x18e88d54136fb58000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T09:14:26.000Z'}}, {'blockNum': '0x510f40', 'uniqueId': '0xb5726088ead60e522abfffa8154e6c75180c962d1ae3f341c70274dec7ac0dfc:log:107', 'hash': '0xb5726088ead60e522abfffa8154e6c75180c962d1ae3f341c70274dec7ac0dfc', 'from': '0x2e5b1a57d8598a71f5b7cfa16ad579a812502a95', 'to': '0x0038dd856804e30f920116d49963af88ea9f5bd8', 'value': 853.086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2e3ef24d281ae30000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T09:23:13.000Z'}}, {'blockNum': '0x510f6f', 'uniqueId': '0xbeadf04bb63419a9c4a1b1d2bac1540d3c80dbf19936e173a14ced9416e435a7:log:6', 'hash': '0xbeadf04bb63419a9c4a1b1d2bac1540d3c80dbf19936e173a14ced9416e435a7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x218b9f7a3abff608d76768745ddd7d5c5c96a6b5', 'value': 638.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x22a1217f7e17880000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T09:33:09.000Z'}}, {'blockNum': '0x510f76', 'uniqueId': '0x0288f7565e8e13afcef14a102aac1f5b053079383552bdcab4eb9746d7262c9e:log:9', 'hash': '0x0288f7565e8e13afcef14a102aac1f5b053079383552bdcab4eb9746d7262c9e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x8d7a7ef81378fd4a5a099acbe6b1b34a35695a56', 'value': 1285.00264266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x45a8fe77437383e800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T09:35:01.000Z'}}, {'blockNum': '0x510f77', 'uniqueId': '0x0ab5cf7dbcf8520e22bdc6cc63cafac0464fa1207865f984c5ea9343322d7cc4:log:19', 'hash': '0x0ab5cf7dbcf8520e22bdc6cc63cafac0464fa1207865f984c5ea9343322d7cc4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xff910cba6bfa4d4bb33387bccf3f20f3458ca7f4', 'value': 9939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021acb5540ebcf6c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T09:35:10.000Z'}}, {'blockNum': '0x510f7f', 'uniqueId': '0x0510aea9403401ccccf98389d9037c6ba6c90d287cb135bc793dde74082245f9:log:22', 'hash': '0x0510aea9403401ccccf98389d9037c6ba6c90d287cb135bc793dde74082245f9', 'from': '0x0038dd856804e30f920116d49963af88ea9f5bd8', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 853.086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2e3ef24d281ae30000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T09:36:44.000Z'}}, {'blockNum': '0x510fea', 'uniqueId': '0x86c6a4882f1ea53b7d8512eec33ea36f5c4bb73606c4099a02bed92af5b6ad50:log:25', 'hash': '0x86c6a4882f1ea53b7d8512eec33ea36f5c4bb73606c4099a02bed92af5b6ad50', 'from': '0xa87c038d55848579df4f9b1a562e9a927ec21ac2', 'to': '0xc72e2c01111edd04c1a371b05d01984b8cdb91c9', 'value': 694.7118769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x25a910634c9d666800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T10:02:28.000Z'}}, {'blockNum': '0x510ffb', 'uniqueId': '0xe61e782346ba6ceb8c078204b724482ac0703ef6521087b548dd9e30ff0da2a6:log:333', 'hash': '0xe61e782346ba6ceb8c078204b724482ac0703ef6521087b548dd9e30ff0da2a6', 'from': '0x1ec7e94bdba8c4b66f41aba85f7988b0b3a3536e', 'to': '0xc32cb77fa1398b0b0932927a28606f20df4ee075', 'value': 8025.450591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01b30f8017dadbc0f000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T10:07:03.000Z'}}, {'blockNum': '0x511031', 'uniqueId': '0x9ddfc29fb2d208cf2d935c22b708c346e573d0066e4042ce546d02bd2395a2cd:log:1', 'hash': '0x9ddfc29fb2d208cf2d935c22b708c346e573d0066e4042ce546d02bd2395a2cd', 'from': '0xc32cb77fa1398b0b0932927a28606f20df4ee075', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 8025.450591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01b30f8017dadbc0f000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T10:19:28.000Z'}}, {'blockNum': '0x511033', 'uniqueId': '0x60d1d32f95dbab2a3f7e20b8cd40d1f89024095b8f7c599665f24d4b4ac105b3:log:11', 'hash': '0x60d1d32f95dbab2a3f7e20b8cd40d1f89024095b8f7c599665f24d4b4ac105b3', 'from': '0xc72e2c01111edd04c1a371b05d01984b8cdb91c9', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 694.7118769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x25a910634c9d666800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T10:19:49.000Z'}}, {'blockNum': '0x51106a', 'uniqueId': '0x98644b3489a92c1ec37a1b6c70d776c75fa86df62f4e75057e3802d9d99f8cdd:log:16', 'hash': '0x98644b3489a92c1ec37a1b6c70d776c75fa86df62f4e75057e3802d9d99f8cdd', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x40c8515caa1857c3897c3f849982c5d6b8df335f', 'value': 1988.78618859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6bcff3e57b55fa4c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T10:33:50.000Z'}}, {'blockNum': '0x51106b', 'uniqueId': '0x881bf197f9b8d24b0bf64290cd6ecde83aac9e085b105e657fd9f73375b087ea:log:32', 'hash': '0x881bf197f9b8d24b0bf64290cd6ecde83aac9e085b105e657fd9f73375b087ea', 'from': '0xae45b5d12b7d2083f6e9ae325c51635631c258f7', 'to': '0x81224d3743d6e134f84c7182af8bd4d123d3ca37', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T10:34:01.000Z'}}, {'blockNum': '0x51107b', 'uniqueId': '0x8f60bc7acb5fe1d365628c7b4a1b2b12845c6fc2c5cd43a5187936b89657e60a:log:35', 'hash': '0x8f60bc7acb5fe1d365628c7b4a1b2b12845c6fc2c5cd43a5187936b89657e60a', 'from': '0x81224d3743d6e134f84c7182af8bd4d123d3ca37', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T10:37:48.000Z'}}, {'blockNum': '0x51109c', 'uniqueId': '0xd83273f0152885efed9ecd20877037acb4f2cebb42bba4bd396b51caabfb3251:log:7', 'hash': '0xd83273f0152885efed9ecd20877037acb4f2cebb42bba4bd396b51caabfb3251', 'from': '0xe3094df985839ce045b2bdab9410f3155734bdb0', 'to': '0xb1824f8770bf23c3889964851df26ac19004a631', 'value': 215.72560025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0bb1cb4a76d32b4400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T10:44:10.000Z'}}, {'blockNum': '0x511135', 'uniqueId': '0xb55db5d73a04373dd396c99cfd7aca72aa39debd0efc5b43573553de5141d50b:log:6', 'hash': '0xb55db5d73a04373dd396c99cfd7aca72aa39debd0efc5b43573553de5141d50b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x36bb8a019a99d65d6c05e51518cebae19bc37d33', 'value': 271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0eb0e1682e32dc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T11:17:45.000Z'}}, {'blockNum': '0x511150', 'uniqueId': '0x369527e88029885f03495ceee92a8dcda838f20a50f9f4f11781491cf7a1d696:log:6', 'hash': '0x369527e88029885f03495ceee92a8dcda838f20a50f9f4f11781491cf7a1d696', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf476c1769ef7c2e1228febe67ddf9432098ef549', 'value': 2798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x97ae0cdf8f86f80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T11:25:42.000Z'}}, {'blockNum': '0x511150', 'uniqueId': '0x8bf4eaab769aebf182aafd454892a81dda91f5c717eafdb48df32873246c05c3:log:45', 'hash': '0x8bf4eaab769aebf182aafd454892a81dda91f5c717eafdb48df32873246c05c3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x36bb8a019a99d65d6c05e51518cebae19bc37d33', 'value': 2671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x90cb923c6f7c5c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T11:25:42.000Z'}}, {'blockNum': '0x511177', 'uniqueId': '0xf6bc77fc0c70cba2baa7ecee11fd45e12d745bc52a6593e1b274c989b84ff5fd:log:6', 'hash': '0xf6bc77fc0c70cba2baa7ecee11fd45e12d745bc52a6593e1b274c989b84ff5fd', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x661a1ac9ff550f491ef04115ecaf5383359e3011', 'value': 2011.77693057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6d0f036b809e89e400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T11:35:14.000Z'}}, {'blockNum': '0x51123d', 'uniqueId': '0xe0c99420f0b2fe53475aa6891f428dbf9157f7a81747bf247012345e4b8a9864:log:5', 'hash': '0xe0c99420f0b2fe53475aa6891f428dbf9157f7a81747bf247012345e4b8a9864', 'from': '0xae45b5d12b7d2083f6e9ae325c51635631c258f7', 'to': '0x81224d3743d6e134f84c7182af8bd4d123d3ca37', 'value': 18000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfc82e37e9a7400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T12:18:37.000Z'}}, {'blockNum': '0x511259', 'uniqueId': '0x63cc731e786074266ba2fd084ee02b15d3941c46f1b1aadd085a66c98c97c7fc:log:40', 'hash': '0x63cc731e786074266ba2fd084ee02b15d3941c46f1b1aadd085a66c98c97c7fc', 'from': '0x81224d3743d6e134f84c7182af8bd4d123d3ca37', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 18000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfc82e37e9a7400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T12:27:40.000Z'}}, {'blockNum': '0x511264', 'uniqueId': '0xed9b260ed58169ede8cecd73a6deabb616b850d98d17a9f94f032d77992c7459:log:13', 'hash': '0xed9b260ed58169ede8cecd73a6deabb616b850d98d17a9f94f032d77992c7459', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xb01a6b93a8f2dcba4ba8a022a8be09ade19683de', 'value': 19930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0438684f9e559f280000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T12:29:12.000Z'}}, {'blockNum': '0x51127d', 'uniqueId': '0x550c0236f659dd15b76ba01fa8ba113c1e29d0d461e543a5d3994a8abfe7833e:log:32', 'hash': '0x550c0236f659dd15b76ba01fa8ba113c1e29d0d461e543a5d3994a8abfe7833e', 'from': '0xb01a6b93a8f2dcba4ba8a022a8be09ade19683de', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0438684f9e559f280000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T12:35:04.000Z'}}, {'blockNum': '0x511288', 'uniqueId': '0xe5434158e4af829be27e792d72ef72bedc7d340cd7e881e9bd99c80ba56884ad:log:108', 'hash': '0xe5434158e4af829be27e792d72ef72bedc7d340cd7e881e9bd99c80ba56884ad', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x6776c5e7115551f165fa580841f7404474202f1c', 'value': 191.41569611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a606d2972beabcc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T12:37:16.000Z'}}, {'blockNum': '0x511294', 'uniqueId': '0xfed4fba5869a524ff01d0265cf4d894becfc47c6969a2f854a07169c2e55009e:log:4', 'hash': '0xfed4fba5869a524ff01d0265cf4d894becfc47c6969a2f854a07169c2e55009e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd98e36a13a3479e6289b1b7c9337daaba3961a11', 'value': 1471.53274148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4fc59e7fdc88201000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T12:40:11.000Z'}}, {'blockNum': '0x5112c5', 'uniqueId': '0x308178a404365c6a3c8f4fadc7b2d7f19237ae7b66e002d7003378a5677bc5e0:log:12', 'hash': '0x308178a404365c6a3c8f4fadc7b2d7f19237ae7b66e002d7003378a5677bc5e0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf848a68e16e0e88403f831c0412876a7cf8463ad', 'value': 9961.83527323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021c083c70eff68f0c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T12:52:32.000Z'}}, {'blockNum': '0x5112f9', 'uniqueId': '0x5a51a32fde0f749efe24d500c5c30f683ce7053113dfc3bbdde4d31c6e44b952:log:35', 'hash': '0x5a51a32fde0f749efe24d500c5c30f683ce7053113dfc3bbdde4d31c6e44b952', 'from': '0xf848a68e16e0e88403f831c0412876a7cf8463ad', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9961.83527323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021c083c70eff68f0c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T13:04:13.000Z'}}, {'blockNum': '0x511313', 'uniqueId': '0xe5198b7aa6b439d6d2f1f809c5563dda8d1a84874997456a9c4588d40d56e655:log:29', 'hash': '0xe5198b7aa6b439d6d2f1f809c5563dda8d1a84874997456a9c4588d40d56e655', 'from': '0xc1ed6b9780528942d5a4a74d4292cd3651b9b2e0', 'to': '0xa15e4f13d8a9cdac8bc4d12ec1d2ddc3aec19753', 'value': 1043.2027286136101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x388d589a8c9474a878', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T13:10:24.000Z'}}, {'blockNum': '0x511361', 'uniqueId': '0xb1b1bdcb0ce6cad59d4006da1c2cfd7dbc11e9784d62bc0e2735b1b355de2430:log:10', 'hash': '0xb1b1bdcb0ce6cad59d4006da1c2cfd7dbc11e9784d62bc0e2735b1b355de2430', 'from': '0xa15e4f13d8a9cdac8bc4d12ec1d2ddc3aec19753', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1043.2027286136101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x388d589a8c9474a878', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T13:31:25.000Z'}}, {'blockNum': '0x51136b', 'uniqueId': '0x4ab061e316958d520d4632cbe90075e7061b1577d485faece6b06406dd6288df:log:17', 'hash': '0x4ab061e316958d520d4632cbe90075e7061b1577d485faece6b06406dd6288df', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xb21840f0f86121f41e9411321f96303e3b61ed51', 'value': 491.66323671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa732b4d822587c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T13:33:25.000Z'}}, {'blockNum': '0x511387', 'uniqueId': '0xef68b29a09999df26ba89b354041edd76e2f56bf90d438ea8d67e1ee8af3e059:log:10', 'hash': '0xef68b29a09999df26ba89b354041edd76e2f56bf90d438ea8d67e1ee8af3e059', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x59322a64e4d27996089bcf289ad05eb6d0d61e72', 'value': 497.43737516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1af754912bfe853000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T13:40:46.000Z'}}, {'blockNum': '0x511388', 'uniqueId': '0xc6f529e5820a23b1577a64523cc20eec542835566eec68b3338f26cadc27f0e4:log:5', 'hash': '0xc6f529e5820a23b1577a64523cc20eec542835566eec68b3338f26cadc27f0e4', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x49f1189e1156f4f404941a33e4bff6475e9d6a07', 'value': 943.46343441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x33252f72e9921a2400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T13:40:50.000Z'}}, {'blockNum': '0x511432', 'uniqueId': '0x2cf729afbbcff242445528ca0dfeb94a3470b9405e435723c9d20b3c4b305adb:log:7', 'hash': '0x2cf729afbbcff242445528ca0dfeb94a3470b9405e435723c9d20b3c4b305adb', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x00a4078466b7fa83bc74e5b926827ef1198455a1', 'value': 233.635285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0caa5745dace265000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T14:21:02.000Z'}}, {'blockNum': '0x511446', 'uniqueId': '0x8c0d67f926146c4858d3312a06147877aa9b909c55497e211934395718f30509:log:31', 'hash': '0x8c0d67f926146c4858d3312a06147877aa9b909c55497e211934395718f30509', 'from': '0x3a824bbd72f16d4517b86997c083e1d314f11984', 'to': '0x42e98d7b1a9edbb77668bd5f000976f25b8c7f76', 'value': 159.01158937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x089ebaa60d71214400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T14:24:45.000Z'}}, {'blockNum': '0x511450', 'uniqueId': '0x713f449218ffa3bea67c4842ac2a008895c685ba0520e0dbb9ad6493061a261e:log:27', 'hash': '0x713f449218ffa3bea67c4842ac2a008895c685ba0520e0dbb9ad6493061a261e', 'from': '0x28b3d54ed3a41f61059dc0482415d7ad99547f37', 'to': '0x997172cf4dba7d61faba625018b69cca5151fc19', 'value': 251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0d9b5322251f0c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T14:26:38.000Z'}}, {'blockNum': '0x51145d', 'uniqueId': '0xa68838f385c00ebf0c4fe0dba4472ea00402e8ed7710e85397042b2872cb848d:log:24', 'hash': '0xa68838f385c00ebf0c4fe0dba4472ea00402e8ed7710e85397042b2872cb848d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 293122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3e122ceaf51592c80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T14:29:02.000Z'}}, {'blockNum': '0x511462', 'uniqueId': '0x748e58dea17431f77cfc56740c8f5c68ae0151bf3b46a40d8429775ea32c2322:log:41', 'hash': '0x748e58dea17431f77cfc56740c8f5c68ae0151bf3b46a40d8429775ea32c2322', 'from': '0x42e98d7b1a9edbb77668bd5f000976f25b8c7f76', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 159.01158937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x089ebaa60d71214400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T14:30:08.000Z'}}, {'blockNum': '0x511473', 'uniqueId': '0xeb0182be866844d02f7333412849a669ca8081e2a58cb64b07a131e50f647f58:log:29', 'hash': '0xeb0182be866844d02f7333412849a669ca8081e2a58cb64b07a131e50f647f58', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 293122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3e122ceaf51592c80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T14:34:16.000Z'}}, {'blockNum': '0x5114a3', 'uniqueId': '0xe90879d4fd941279c9af193898a85b399917c2030097015ec7a07815873db607:log:6', 'hash': '0xe90879d4fd941279c9af193898a85b399917c2030097015ec7a07815873db607', 'from': '0x997172cf4dba7d61faba625018b69cca5151fc19', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0d9b5322251f0c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T14:45:31.000Z'}}, {'blockNum': '0x511514', 'uniqueId': '0x6b3b447a19872a4afc563abe7da73c57b713395d59ad3f99a35f5d93de7be9aa:log:5', 'hash': '0x6b3b447a19872a4afc563abe7da73c57b713395d59ad3f99a35f5d93de7be9aa', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xce565d6b238abf43d24be6008a922bcca4258942', 'value': 700452.19807072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x945396f96e8584118000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:09:28.000Z'}}, {'blockNum': '0x51152b', 'uniqueId': '0x6d446460a09054dc2ea67d7ad4a65423c2101de1f242e7779ae5f91f314fb5ac:log:112', 'hash': '0x6d446460a09054dc2ea67d7ad4a65423c2101de1f242e7779ae5f91f314fb5ac', 'from': '0xce565d6b238abf43d24be6008a922bcca4258942', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 700452.19807072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x945396f96e8584118000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:14:20.000Z'}}, {'blockNum': '0x511545', 'uniqueId': '0x0dbe678aa7bddd04b7bd7ebffcb2847835227d261905cee4fd7f7100587a1017:log:11', 'hash': '0x0dbe678aa7bddd04b7bd7ebffcb2847835227d261905cee4fd7f7100587a1017', 'from': '0xca6c813d4d7272ce494dfeedc7872d1c76132cce', 'to': '0x711bb8904f6f15a748642a959d058f9f8efcde3f', 'value': 1456.59042085402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4ef640b66b80984900', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:20:55.000Z'}}, {'blockNum': '0x511547', 'uniqueId': '0x09c4a2b44bb20aea09d2e8d84a4b5972f294dd21a164c473ac8a69383b0539a7:log:4', 'hash': '0x09c4a2b44bb20aea09d2e8d84a4b5972f294dd21a164c473ac8a69383b0539a7', 'from': '0x03747f06215b44e498831da019b27f53e483599f', 'to': '0x4aee792a88edda29932254099b9d1e06d537883f', 'value': 41334.4774195452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08c0bf1b55a10c94aad1', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:21:06.000Z'}}, {'blockNum': '0x511550', 'uniqueId': '0xab09b0160e7ed1e886faf65c713c5bb19b3257d282da227c924f0a7640216158:log:21', 'hash': '0xab09b0160e7ed1e886faf65c713c5bb19b3257d282da227c924f0a7640216158', 'from': '0x159d70731be6417da3f4776637bca99029206bcd', 'to': '0x80a719d9a4e637cab82c969b87bb2926f82436b0', 'value': 632.38110484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x22480d005a7141d000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:22:56.000Z'}}, {'blockNum': '0x511565', 'uniqueId': '0xfd9c5cfb9d414b644093416d272125bb9fe0542446673faeb9e0a78aff1d7664:log:6', 'hash': '0xfd9c5cfb9d414b644093416d272125bb9fe0542446673faeb9e0a78aff1d7664', 'from': '0x4aee792a88edda29932254099b9d1e06d537883f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 41334.47741955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08c0bf1b55a22aabac00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:28:36.000Z'}}, {'blockNum': '0x511574', 'uniqueId': '0x3af6c5c87d4d020fe03b94736dd651a26f8f613c72441a61c4161bcb8785b022:log:29', 'hash': '0x3af6c5c87d4d020fe03b94736dd651a26f8f613c72441a61c4161bcb8785b022', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0x136caa6bd0a9fb7ea341de441370cffa431123fc', 'value': 70, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03cb71f51fc5580000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:32:15.000Z'}}, {'blockNum': '0x51158f', 'uniqueId': '0x069c052645860c0e3b8cbb408cb76ded3aecc0885e71ac7fcd4e44b81a28dfc4:log:16', 'hash': '0x069c052645860c0e3b8cbb408cb76ded3aecc0885e71ac7fcd4e44b81a28dfc4', 'from': '0x80a719d9a4e637cab82c969b87bb2926f82436b0', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 632.38110484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x22480d005a7141d000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:39:14.000Z'}}, {'blockNum': '0x511596', 'uniqueId': '0x6a112819b2c61046ea3e91bba0444850f09d5d7dc19057e6666c91b4b11ea320:log:57', 'hash': '0x6a112819b2c61046ea3e91bba0444850f09d5d7dc19057e6666c91b4b11ea320', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xca6c813d4d7272ce494dfeedc7872d1c76132cce', 'value': 2017.53065339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6d5edcbfec34b28c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:42:06.000Z'}}, {'blockNum': '0x511597', 'uniqueId': '0xacccb9601abdf7c76202fe5b60fcdb8e9328015e5d9d9763145760d9bc8883d3:log:2', 'hash': '0xacccb9601abdf7c76202fe5b60fcdb8e9328015e5d9d9763145760d9bc8883d3', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x8a94a96b9f9aa16dbcbc7be5284a7a33d96d3b9c', 'value': 787.45378893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2ab01dd8ec40139400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:42:14.000Z'}}, {'blockNum': '0x51159e', 'uniqueId': '0x01357c3660b4766c3d5a72bb486a6108a16aeebc22509bcb45e6e3e10c872bac:log:11', 'hash': '0x01357c3660b4766c3d5a72bb486a6108a16aeebc22509bcb45e6e3e10c872bac', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x8a94a96b9f9aa16dbcbc7be5284a7a33d96d3b9c', 'value': 428.8077977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x173ee754164a10a800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:43:37.000Z'}}, {'blockNum': '0x5115eb', 'uniqueId': '0xc1204dc3c33725bb418f7f46b15bd9e3789abaf203504f4c9e32f9150cba23f9:log:17', 'hash': '0xc1204dc3c33725bb418f7f46b15bd9e3789abaf203504f4c9e32f9150cba23f9', 'from': '0xef469af47f829509710b246e1d85b1b8b8ffe5d1', 'to': '0x53e6053dd0175a739c4aec08c262b51a11e2372d', 'value': 1740.62479672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5e5c058664341de000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:59:41.000Z'}}, {'blockNum': '0x51160b', 'uniqueId': '0x09e6ae6a7d6ac27587320dbbee04fbfc9b8b1203c702f92a972c45828c8885db:log:49', 'hash': '0x09e6ae6a7d6ac27587320dbbee04fbfc9b8b1203c702f92a972c45828c8885db', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcbd3e7d81c7059e1eef3c9ae0870dfa3d1151af8', 'value': 33281.81588708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x070c35fa8eae6b9f1000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T16:08:16.000Z'}}, {'blockNum': '0x511618', 'uniqueId': '0x645e92658659203b37eaef4bcc088853ea9d559116e6bedcb12da836c59a06b5:log:29', 'hash': '0x645e92658659203b37eaef4bcc088853ea9d559116e6bedcb12da836c59a06b5', 'from': '0x5ef75ac9e72e486cfa6044b15e305ba2d7a06158', 'to': '0xbe66edc50d69dca4f50c3679738b2637dddf4600', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T16:13:16.000Z'}}, {'blockNum': '0x51164a', 'uniqueId': '0x10d27f1f39c75d06085a54d47bd602eba36745a45ebb1de3187838c6b2d9359e:log:77', 'hash': '0x10d27f1f39c75d06085a54d47bd602eba36745a45ebb1de3187838c6b2d9359e', 'from': '0xcbd3e7d81c7059e1eef3c9ae0870dfa3d1151af8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33281.81588708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x070c35fa8eae6b9f1000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T16:24:11.000Z'}}, {'blockNum': '0x511651', 'uniqueId': '0xba0110dae4b2b9fea2130734cc88696f128b637e07bb56a99179a5d1e756745b:log:3', 'hash': '0xba0110dae4b2b9fea2130734cc88696f128b637e07bb56a99179a5d1e756745b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa179460b2643e694f4e480a4b7536c4678db5537', 'value': 68.788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03baa0118ba9920000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T16:26:22.000Z'}}, {'blockNum': '0x5116c7', 'uniqueId': '0xe88daaefa12303059b49ea51b93e076c462bbc3a0c49ec3b9517407fac7712df:log:12', 'hash': '0xe88daaefa12303059b49ea51b93e076c462bbc3a0c49ec3b9517407fac7712df', 'from': '0x12962660056e600cccc6bcad4b578eba7975b862', 'to': '0xab6588982850b657d69b8053aaa964abf5421991', 'value': 6184.30443036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x014f4076f1903244f000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T16:50:31.000Z'}}, {'blockNum': '0x5116e3', 'uniqueId': '0x7ae042b767286b373e041d4918b2c3ea991fb1522bb31dd89696ef998fd8ce94:log:6', 'hash': '0x7ae042b767286b373e041d4918b2c3ea991fb1522bb31dd89696ef998fd8ce94', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x2d415aadbb31d3dd3d6129481b211a717c2d4241', 'value': 2402.20269451, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x8239425f3dd2c0cc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T16:56:05.000Z'}}, {'blockNum': '0x511717', 'uniqueId': '0xedb42a3e31b7a357d2ab79d03f01ce5ab7eaabe5f139c75c56308f715f71b0c5:log:0', 'hash': '0xedb42a3e31b7a357d2ab79d03f01ce5ab7eaabe5f139c75c56308f715f71b0c5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xce565d6b238abf43d24be6008a922bcca4258942', 'value': 165049.42828306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x22f358f18a180de20800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T17:10:22.000Z'}}, {'blockNum': '0x511720', 'uniqueId': '0xe87ace95e50ce231652d21531db553682ea7d726b2ad7ca176855ffab91a2c76:log:40', 'hash': '0xe87ace95e50ce231652d21531db553682ea7d726b2ad7ca176855ffab91a2c76', 'from': '0xce565d6b238abf43d24be6008a922bcca4258942', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 165049.42828306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x22f358f18a180de20800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T17:14:04.000Z'}}, {'blockNum': '0x51173a', 'uniqueId': '0x3a5cbe513f2aac216304e9014d5bfd3653caa2143af25f4c819397194174b406:log:11', 'hash': '0x3a5cbe513f2aac216304e9014d5bfd3653caa2143af25f4c819397194174b406', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd18345a8217c53e991566cafae2d9a09d6eaf3a6', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T17:18:08.000Z'}}, {'blockNum': '0x511790', 'uniqueId': '0x91ed698407e9d8f31c70afdfc7c1f5364cff881d8031d942e6d79bcbe52b7d87:log:31', 'hash': '0x91ed698407e9d8f31c70afdfc7c1f5364cff881d8031d942e6d79bcbe52b7d87', 'from': '0x8efba25385899bca5a1b6b4890b4f3e05e5dc3d1', 'to': '0xc6bbc525320fdbbd1bd2c493ea9575967be36f71', 'value': 1190, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x408291471c1ad80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T17:39:23.000Z'}}, {'blockNum': '0x5117a8', 'uniqueId': '0xf8b02673570bcb9d1da77ab1932911c2d630c736633c06feb0e6d66f5d469bb6:log:85', 'hash': '0xf8b02673570bcb9d1da77ab1932911c2d630c736633c06feb0e6d66f5d469bb6', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xfebc19a41653160bb9cd90dd33a01d8f12edc0f3', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T17:44:19.000Z'}}, {'blockNum': '0x5117b6', 'uniqueId': '0x5cad96e967e31c9ce714a3deec8379de55d1f9c516b2e9ad22e5132f39d082a8:log:32', 'hash': '0x5cad96e967e31c9ce714a3deec8379de55d1f9c516b2e9ad22e5132f39d082a8', 'from': '0xfebc19a41653160bb9cd90dd33a01d8f12edc0f3', 'to': '0xcd996484b79b0532a820587a684b553b14f17d6d', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T17:48:03.000Z'}}, {'blockNum': '0x5117d9', 'uniqueId': '0x90c4b687a5d35e3496460bdf8679f2df8c0c26ddad434accb453b0e6e81dc0ea:log:27', 'hash': '0x90c4b687a5d35e3496460bdf8679f2df8c0c26ddad434accb453b0e6e81dc0ea', 'from': '0xc6bbc525320fdbbd1bd2c493ea9575967be36f71', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1190, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x408291471c1ad80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T17:57:08.000Z'}}, {'blockNum': '0x511813', 'uniqueId': '0x2c848e89f4e1cc1f65446793bd8284ed97b30264a14d12f7d671143af374773f:log:3', 'hash': '0x2c848e89f4e1cc1f65446793bd8284ed97b30264a14d12f7d671143af374773f', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x2e3be188a4e2e921295a39373f250951fdd47cdf', 'value': 832.73742217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2d248da16e81590400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:08:41.000Z'}}, {'blockNum': '0x51181e', 'uniqueId': '0xc91bcca6067685a54c7dd3c50dd9aac9ec46e351ec556dc47864109b232a1251:log:15', 'hash': '0xc91bcca6067685a54c7dd3c50dd9aac9ec46e351ec556dc47864109b232a1251', 'from': '0x409b973e98df40e05bf6106760fad75448b7a644', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdefe2aa', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:11:04.000Z'}}, {'blockNum': '0x511871', 'uniqueId': '0x9cab58da19c18bbd248f53b7e486feeef3dab4fac5d5fe2981b09d3d8626d3f3:log:4', 'hash': '0x9cab58da19c18bbd248f53b7e486feeef3dab4fac5d5fe2981b09d3d8626d3f3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xfb5607de3ddb810dbcad532b0935a08cae385728', 'value': 24799.746384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0540659e358f72250000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:31:08.000Z'}}, {'blockNum': '0x511871', 'uniqueId': '0xda796391221e5e6e90f1ef23db2b9947beb0484237b7a5a0454afbe20e3e892c:log:34', 'hash': '0xda796391221e5e6e90f1ef23db2b9947beb0484237b7a5a0454afbe20e3e892c', 'from': '0x0072ffb8069bdd4f791fbf9352a7226c7f46ecd9', 'to': '0x38db1e8aac7a6f612439e335765afdf3f1472d01', 'value': 5000.000257457907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf14f0570313e8b', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:31:08.000Z'}}, {'blockNum': '0x511873', 'uniqueId': '0xe4b905dbf358c8e042ac91f67b9ef4cafb4b24450ac27015ffb6a670a50d9992:log:7', 'hash': '0xe4b905dbf358c8e042ac91f67b9ef4cafb4b24450ac27015ffb6a670a50d9992', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 15379.48317235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0341b9343d421b766c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:31:35.000Z'}}, {'blockNum': '0x511874', 'uniqueId': '0xc0db5b3513bfd1e1949b416276fe7a0d1d2d259fca1a61a7edf659dc8572e1ff:log:6', 'hash': '0xc0db5b3513bfd1e1949b416276fe7a0d1d2d259fca1a61a7edf659dc8572e1ff', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 40752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08a12b9bd6a67ec00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:31:39.000Z'}}, {'blockNum': '0x511874', 'uniqueId': '0xb6b34f867a2000f7d7d96fe7963f4b9993275dcb0699b9403210363107890cbf:log:39', 'hash': '0xb6b34f867a2000f7d7d96fe7963f4b9993275dcb0699b9403210363107890cbf', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9036ef5df09eac917b3b3629733c7b5b62d49fc1', 'value': 14097.56433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02fc3b01a209bbbca000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:31:39.000Z'}}, {'blockNum': '0x511875', 'uniqueId': '0xa5769ced5fe43f46528f4635a4aff02c8d831f2c902be2d02f495f90f78878c2:log:13', 'hash': '0xa5769ced5fe43f46528f4635a4aff02c8d831f2c902be2d02f495f90f78878c2', 'from': '0xdb2f8004ef60ca5ba2b2ae9b8825b3d37205ff3d', 'to': '0x35aeab26f479d7dc16891ad5a66bc8fe159180bc', 'value': 2750.1998755162376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x9516b0b7993cdc31d2', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:31:52.000Z'}}, {'blockNum': '0x511877', 'uniqueId': '0x4f92a53f0b562eec6015a118ec4d2c1a7402843e0013d085460c3e28ae21bfab:log:38', 'hash': '0x4f92a53f0b562eec6015a118ec4d2c1a7402843e0013d085460c3e28ae21bfab', 'from': '0x35aeab26f479d7dc16891ad5a66bc8fe159180bc', 'to': '0xfbce0152e2ecfe31832793c1b2d633fd8f656522', 'value': 2750.1998755162376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x9516b0b7993cdc31d2', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:33:10.000Z'}}, {'blockNum': '0x511878', 'uniqueId': '0x20154883b2b00d8903bfedab9b17068a80e68886df207e1ea16bea239e96c72d:log:52', 'hash': '0x20154883b2b00d8903bfedab9b17068a80e68886df207e1ea16bea239e96c72d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 7701.79286062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01a183d8d8e2eeb2f800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:33:16.000Z'}}, {'blockNum': '0x511878', 'uniqueId': '0x5621b67526c99b84aa82fb77718ddd35764e84868dbcf4c2b62d590bfef0f616:log:53', 'hash': '0x5621b67526c99b84aa82fb77718ddd35764e84868dbcf4c2b62d590bfef0f616', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf8851b834dfff1beeaea24ccde31acce8e2739b2', 'value': 4174.09514049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xe24734e6f8c6ace400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:33:16.000Z'}}, {'blockNum': '0x511878', 'uniqueId': '0xee7794d9b3003b4b6da66eaa97c38862abbb0e1de1abe9a0c2f666acd0cff651:log:54', 'hash': '0xee7794d9b3003b4b6da66eaa97c38862abbb0e1de1abe9a0c2f666acd0cff651', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 26342.66227224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x059409e0973225a56000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:33:16.000Z'}}, {'blockNum': '0x511878', 'uniqueId': '0x4e6c03744573b4c8ef478fbefe38396a374d83aa2aadc1bf4cb9a347c636c0b9:log:55', 'hash': '0x4e6c03744573b4c8ef478fbefe38396a374d83aa2aadc1bf4cb9a347c636c0b9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'value': 43515.5704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0936fbda336d46ee0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:33:16.000Z'}}, {'blockNum': '0x511878', 'uniqueId': '0x8ebc595915ecd48aa6f5932d75cf0ab5a8ee946154e88f9da9288c0382839b81:log:56', 'hash': '0x8ebc595915ecd48aa6f5932d75cf0ab5a8ee946154e88f9da9288c0382839b81', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf2f32342706c68ec18d498fc720f4cba5fcfb6c8', 'value': 113268.45536137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x17fc4b96bd2b60990400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:33:16.000Z'}}, {'blockNum': '0x511878', 'uniqueId': '0xe55884c87e2d9fbaa88def4a55ff011405270fec0a785d0510b76b25ee967917:log:57', 'hash': '0xe55884c87e2d9fbaa88def4a55ff011405270fec0a785d0510b76b25ee967917', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 21781.0848588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x049cc1461df1f544e000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:33:16.000Z'}}, {'blockNum': '0x511878', 'uniqueId': '0xb267aee7b728eb63174bc324592ec602138962d6dffde0e3fe25b844e0a055b2:log:58', 'hash': '0xb267aee7b728eb63174bc324592ec602138962d6dffde0e3fe25b844e0a055b2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 18160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03d874a0683245c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:33:16.000Z'}}, {'blockNum': '0x511878', 'uniqueId': '0xd2580bbe192d40bd6780018dbeb4c1b7bece0dd2aaee1d766db061ea1a2852c9:log:70', 'hash': '0xd2580bbe192d40bd6780018dbeb4c1b7bece0dd2aaee1d766db061ea1a2852c9', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x0072ffb8069bdd4f791fbf9352a7226c7f46ecd9', 'value': 3048.662182139337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa544afd626b6669ad2', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:33:16.000Z'}}, {'blockNum': '0x511878', 'uniqueId': '0x8bef132be4d12ed9762a18e078e823e2bb1939776484922998e27b81fadc1e7c:log:81', 'hash': '0x8bef132be4d12ed9762a18e078e823e2bb1939776484922998e27b81fadc1e7c', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x5a5d9c95a3f328e903f3b4d47aa5556e1f286b27', 'value': 19999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c25e0dcc1bd1c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:33:16.000Z'}}, {'blockNum': '0x511879', 'uniqueId': '0x4e6fa375e687e1cbfd0d88e3214b7de532758d4033d1f50b9042668062f0558a:log:13', 'hash': '0x4e6fa375e687e1cbfd0d88e3214b7de532758d4033d1f50b9042668062f0558a', 'from': '0x0b803ccb9da1fcbfa843abdf9182a7ea1097ccd2', 'to': '0xe51f926179ad4c39fd27ecdf75293631c0e627bd', 'value': 438.49480512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x17c5567e02f7bd0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:33:33.000Z'}}, {'blockNum': '0x51187b', 'uniqueId': '0x777b6fa12f3288dc11f286ed03923bb0f9e32ab4e2ce7279d76d19e1bd6eabc4:log:28', 'hash': '0x777b6fa12f3288dc11f286ed03923bb0f9e32ab4e2ce7279d76d19e1bd6eabc4', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15379.48317235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0341b9343d421b766c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:34:14.000Z'}}, {'blockNum': '0x51187b', 'uniqueId': '0x3243cf6cb11e1775112ec63ab40e22e04fda2484ded0d2777b91712d03bfcf27:log:29', 'hash': '0x3243cf6cb11e1775112ec63ab40e22e04fda2484ded0d2777b91712d03bfcf27', 'from': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08a12b9bd6a67ec00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:34:14.000Z'}}, {'blockNum': '0x51187b', 'uniqueId': '0xda420d11c4db835cb8626e1d96f517efef5527312c4c44e4aae0828ee3a6802d:log:30', 'hash': '0xda420d11c4db835cb8626e1d96f517efef5527312c4c44e4aae0828ee3a6802d', 'from': '0xfb5607de3ddb810dbcad532b0935a08cae385728', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24922.67752336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x05470fa1597dbcfc4000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:34:14.000Z'}}, {'blockNum': '0x51187c', 'uniqueId': '0x694da2ce952ff756c87767896d06c848341a8d35075ef811fe66fcef0188e15f:log:20', 'hash': '0x694da2ce952ff756c87767896d06c848341a8d35075ef811fe66fcef0188e15f', 'from': '0x316d8ef68a18fd8dfb671a854654b76ff6b5c571', 'to': '0xc94727e72519c3b3434f5af6d3886615f82c2ec6', 'value': 1200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x410d586a20a4c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:34:56.000Z'}}, {'blockNum': '0x51187c', 'uniqueId': '0x4488042a4be2d4b25a238849c778f2fbae40e2ca791990606e4e2576302309fa:log:24', 'hash': '0x4488042a4be2d4b25a238849c778f2fbae40e2ca791990606e4e2576302309fa', 'from': '0x0072ffb8069bdd4f791fbf9352a7226c7f46ecd9', 'to': '0x38db1e8aac7a6f612439e335765afdf3f1472d01', 'value': 3048.662182139337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa544afd626b6669ad2', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:34:56.000Z'}}, {'blockNum': '0x51187e', 'uniqueId': '0x5d4082a451a3aa586f1e33bd534fb701af2c17eba86f846dcaeb6771102742c2:log:189', 'hash': '0x5d4082a451a3aa586f1e33bd534fb701af2c17eba86f846dcaeb6771102742c2', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'value': 5689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x013466bc1e62dd440000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:35:39.000Z'}}, {'blockNum': '0x51187e', 'uniqueId': '0xdc294d41f39108f5631acb7033849ec7713457610919452f74c291df5971b869:log:192', 'hash': '0xdc294d41f39108f5631acb7033849ec7713457610919452f74c291df5971b869', 'from': '0x36948b49cca957e68410886e7caa35f92ea4626f', 'to': '0x4e065a633144e470176e956ca275ed1b1e755b24', 'value': 390, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x15245655b102580000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:35:39.000Z'}}, {'blockNum': '0x511881', 'uniqueId': '0x30c6ba258d6d4d0b627cc23fdf1370cbfe62505f6c65b1685d3d934ae191c4af:log:61', 'hash': '0x30c6ba258d6d4d0b627cc23fdf1370cbfe62505f6c65b1685d3d934ae191c4af', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x05d34963274c08d62e3fa72ed0bb45fa8bf965f1', 'value': 189945.38273851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2838f5b77ae7e6ad8c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:36:04.000Z'}}, {'blockNum': '0x511881', 'uniqueId': '0x78f2e203728216dc24829c7eacb3eb2ed21ce387ccd44be01bbd8393a7ee67b1:log:66', 'hash': '0x78f2e203728216dc24829c7eacb3eb2ed21ce387ccd44be01bbd8393a7ee67b1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 79204.72561207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x10c5b2601b8e6425fc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:36:04.000Z'}}, {'blockNum': '0x511881', 'uniqueId': '0xb1de6822fe24062b7cc29220a177be40a80b29909bccb606a61c3ceabf792957:log:70', 'hash': '0xb1de6822fe24062b7cc29220a177be40a80b29909bccb606a61c3ceabf792957', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 312114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4217bbdd2527dd880000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:36:04.000Z'}}, {'blockNum': '0x511886', 'uniqueId': '0x2adc70ab624c4bc4fc6349827aa647a70289ca0eca9228ec851c753fb393ff88:log:0', 'hash': '0x2adc70ab624c4bc4fc6349827aa647a70289ca0eca9228ec851c753fb393ff88', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x562954ee62631fafcea070630326560339b32f1c', 'value': 5285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x011e801bcadeb3740000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:36:46.000Z'}}, {'blockNum': '0x511888', 'uniqueId': '0x0bd6509b457173242d925a0c3a15eef9a425f8db02a805bc394e127eb8e17981:log:10', 'hash': '0x0bd6509b457173242d925a0c3a15eef9a425f8db02a805bc394e127eb8e17981', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'value': 23500.41176471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04f9f5ba557c66477c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:37:23.000Z'}}, {'blockNum': '0x511888', 'uniqueId': '0x179e450b27ecf8be2095f90b8c2d3eb2772eec94c3f5012bc2834a64b6243720:log:66', 'hash': '0x179e450b27ecf8be2095f90b8c2d3eb2772eec94c3f5012bc2834a64b6243720', 'from': '0xa5e2a2da7450b4585ac00ce543954a6d900cd020', 'to': '0x2996ce512572d771246a0967ba6430b0c9dfc319', 'value': 14154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02ff4a3568e4dee80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:37:23.000Z'}}, {'blockNum': '0x511888', 'uniqueId': '0xa0de8e192e8968ff72d0b2eedd973f06c58355aadd75af06fa46fc53a8a6b7ad:log:70', 'hash': '0xa0de8e192e8968ff72d0b2eedd973f06c58355aadd75af06fa46fc53a8a6b7ad', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 23408.59014479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04f4fb7268a915bf5c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:37:23.000Z'}}, {'blockNum': '0x511888', 'uniqueId': '0x589359461527c168bffb713f315dd613a20e0964bb6f676e95e2889ce81c143c:log:74', 'hash': '0x589359461527c168bffb713f315dd613a20e0964bb6f676e95e2889ce81c143c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1a9b81da030f71a2f131a5524d21b5634c3501f3', 'value': 331664.53963529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x463b921abc40ecf70400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:37:23.000Z'}}, {'blockNum': '0x511889', 'uniqueId': '0x5a56929ccf452bf36213b7684c9ceca7c891e7f9a890a1b878bcbc92c95b8680:log:6', 'hash': '0x5a56929ccf452bf36213b7684c9ceca7c891e7f9a890a1b878bcbc92c95b8680', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 15803.63121536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0358b770cb24a79e0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:38:27.000Z'}}, {'blockNum': '0x511889', 'uniqueId': '0xcbe334808375e7083b1b02341d748f64c776b03672b0c29d33719020eadb493c:log:7', 'hash': '0xcbe334808375e7083b1b02341d748f64c776b03672b0c29d33719020eadb493c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x518766e93438e9340d071101cea6356f205db470', 'value': 24971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0549ae3d45f8c74c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:38:27.000Z'}}, {'blockNum': '0x511889', 'uniqueId': '0x38e8f9ec86f2a3d8c051e74064c76d5d2daffab6bbe9b67cefaf1b3fab2a7792:log:8', 'hash': '0x38e8f9ec86f2a3d8c051e74064c76d5d2daffab6bbe9b67cefaf1b3fab2a7792', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x37fbb1db781a9b6e2da9b7ed6fcb34be4267b8b8', 'value': 51565.29347826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0aeb5c337dd7f62d8800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:38:27.000Z'}}, {'blockNum': '0x511889', 'uniqueId': '0xc2984149f700dcf1c5ba70167f298dbcfb20c6a97135bb12af436a3bd8e4191c:log:9', 'hash': '0xc2984149f700dcf1c5ba70167f298dbcfb20c6a97135bb12af436a3bd8e4191c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbe9f236a87d88cf163a1e973638812aa64fbddf3', 'value': 10804.76101156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0249ba2e3defc0141000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:38:27.000Z'}}, {'blockNum': '0x511889', 'uniqueId': '0xfbdd36be1c301ae0b2a9fcc5e659d6e0cfd035cd18a2cb85ad5690f19d7d7604:log:10', 'hash': '0xfbdd36be1c301ae0b2a9fcc5e659d6e0cfd035cd18a2cb85ad5690f19d7d7604', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 34971.11554323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0767c9b88da815e5ec00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:38:27.000Z'}}, {'blockNum': '0x511889', 'uniqueId': '0x846f982c099215692b0c5943e215af0eccd79c5af8f06fdffc402a1593d204e6:log:11', 'hash': '0x846f982c099215692b0c5943e215af0eccd79c5af8f06fdffc402a1593d204e6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 101670.73778881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x158794ece0447026e400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:38:27.000Z'}}, {'blockNum': '0x51188c', 'uniqueId': '0x8eafc437b989020063dc9477ee0b7b596aaa72224cc3b0e7f03575527fe6ce82:log:4', 'hash': '0x8eafc437b989020063dc9477ee0b7b596aaa72224cc3b0e7f03575527fe6ce82', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 10362.23126013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0231bcd8bda251045400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:39:06.000Z'}}, {'blockNum': '0x51188c', 'uniqueId': '0x1ee64924d44ef45ace4ccbc9ed61c7ff8df9a1d9641598ba3ea62fbb8d4fee47:log:224', 'hash': '0x1ee64924d44ef45ace4ccbc9ed61c7ff8df9a1d9641598ba3ea62fbb8d4fee47', 'from': '0x7f1efd6288d0e671712ed84bc668ab4d0f544fe3', 'to': '0xb5f2e775ebfe656d269021a619f975467eb429df', 'value': 180.98319591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x09cfa579ca427abc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:39:06.000Z'}}, {'blockNum': '0x51188d', 'uniqueId': '0x570ea066e931068bb5af823bb0901d020c8941d6d7f1783b0c3300b9df042f48:log:0', 'hash': '0x570ea066e931068bb5af823bb0901d020c8941d6d7f1783b0c3300b9df042f48', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 22297.57862826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04b8c11098c48b116800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:39:07.000Z'}}, {'blockNum': '0x51188d', 'uniqueId': '0xa755d381be22998dc2f96c68ea5d66d87eda834821e1990f039027d487ee10e3:log:1', 'hash': '0xa755d381be22998dc2f96c68ea5d66d87eda834821e1990f039027d487ee10e3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4ce1965132dd5ba325a26fd20ed474da2a8175d2', 'value': 21549, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04902c7310813c940000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:39:07.000Z'}}, {'blockNum': '0x51188d', 'uniqueId': '0xe544a09c117ac7b1290218644f5a930e434b4504e26bb31af78cd58145d85de6:log:2', 'hash': '0xe544a09c117ac7b1290218644f5a930e434b4504e26bb31af78cd58145d85de6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 3271.34740529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xb15710acc51646a400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:39:07.000Z'}}, {'blockNum': '0x51188d', 'uniqueId': '0x8c89836f84e3f8c3e76f7323e28235f75006f9c54d3c7a77972a7d7cff2a4e6f:log:3', 'hash': '0x8c89836f84e3f8c3e76f7323e28235f75006f9c54d3c7a77972a7d7cff2a4e6f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x708a2fd9321585465ab3de4bab2707ac5fede3bc', 'value': 2971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa10ee856f7a58c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:39:07.000Z'}}, {'blockNum': '0x51188d', 'uniqueId': '0x8eb203dfa7450e7dc9bb72615c5b1de9f3776b47609ca0fb980519a6abfdf099:log:4', 'hash': '0x8eb203dfa7450e7dc9bb72615c5b1de9f3776b47609ca0fb980519a6abfdf099', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 4865.7685239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0107c61a648a6049d800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:39:07.000Z'}}, {'blockNum': '0x51188d', 'uniqueId': '0xb006ff696cd4c8c93beba859585456539f5a7d5a94caa754ea4d27c65a7dac25:log:5', 'hash': '0xb006ff696cd4c8c93beba859585456539f5a7d5a94caa754ea4d27c65a7dac25', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 23363.84363852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04f28e76e248fa9bb000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:39:07.000Z'}}, {'blockNum': '0x511890', 'uniqueId': '0x35ab9176fd7c28a9242da6ec6d6bbefc3a87cb9d9daa347ceee2b9ab95af8862:log:22', 'hash': '0x35ab9176fd7c28a9242da6ec6d6bbefc3a87cb9d9daa347ceee2b9ab95af8862', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 21981.368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04a79cc2c5b892ac0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:39:22.000Z'}}, {'blockNum': '0x511892', 'uniqueId': '0x3fd6ad3d26c3db50260e4141deb8e7a4ce0ab6a39f49e4bfb2e9ac1133b2b580:log:5', 'hash': '0x3fd6ad3d26c3db50260e4141deb8e7a4ce0ab6a39f49e4bfb2e9ac1133b2b580', 'from': '0xf8fdddec79f00db440aef12b4ecd7d0eac44d053', 'to': '0xd1c7ed7d274acf23c0cdff0609ebec75c76a369f', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:39:41.000Z'}}, {'blockNum': '0x511893', 'uniqueId': '0x3c6cec4ff56a0bb7bf054a38c5760199a0c83113cde820f82fc90025c3a7e05e:log:338', 'hash': '0x3c6cec4ff56a0bb7bf054a38c5760199a0c83113cde820f82fc90025c3a7e05e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa5dfa5df584febae49aeed21d0687930ad0b1e5d', 'value': 182.756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x09e83fbdb79b4a0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:39:51.000Z'}}, {'blockNum': '0x511894', 'uniqueId': '0xe1d4342e398084accb49ee28c64ec192cc295e27b9388c2a76027819e91d2826:log:45', 'hash': '0xe1d4342e398084accb49ee28c64ec192cc295e27b9388c2a76027819e91d2826', 'from': '0x9bd0404bbf339481efc75e69c88a92983e613b2a', 'to': '0x7a8c586083ee1b4c84da326cf9b412e5275e9835', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:41:00.000Z'}}, {'blockNum': '0x511895', 'uniqueId': '0xdf9548dd686f83a8d13108ee4f01b607ec12091eb3b79262564af9120d210507:log:57', 'hash': '0xdf9548dd686f83a8d13108ee4f01b607ec12091eb3b79262564af9120d210507', 'from': '0x03747f06215b44e498831da019b27f53e483599f', 'to': '0x3d510bd5289aafdd243a63198c3af5f5a873f395', 'value': 104384.41571509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x161ab0c5908982383400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:41:04.000Z'}}, {'blockNum': '0x511896', 'uniqueId': '0x9c15a2707cbb4018d3ef04a6297ef2fb34a602345774c228bc36388de4ac4360:log:3', 'hash': '0x9c15a2707cbb4018d3ef04a6297ef2fb34a602345774c228bc36388de4ac4360', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 3717.56228542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xc9878a6219b06f3800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:41:25.000Z'}}, {'blockNum': '0x511896', 'uniqueId': '0xb7e3a51cac2e328554770b481008fa71b5e44f97f1d894f9850470bb1a1add33:log:4', 'hash': '0xb7e3a51cac2e328554770b481008fa71b5e44f97f1d894f9850470bb1a1add33', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 294860.6398875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3e706d64ab0e7d667800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:41:25.000Z'}}, {'blockNum': '0x511896', 'uniqueId': '0xa72114cbae1f843139bdf50c4300f185424627013a534788bf5024dee73840ec:log:5', 'hash': '0xa72114cbae1f843139bdf50c4300f185424627013a534788bf5024dee73840ec', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1a9b81da030f71a2f131a5524d21b5634c3501f3', 'value': 35176.33227933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0772e9acdbdacb7ad400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:41:25.000Z'}}, {'blockNum': '0x511897', 'uniqueId': '0x168a433325d2919590c39d8549614378d9a52a0d4e1efa4785bca96fdc2ca0ba:log:1', 'hash': '0x168a433325d2919590c39d8549614378d9a52a0d4e1efa4785bca96fdc2ca0ba', 'from': '0xcd11113dd5a12b2df60bc5974e809e7c8b956b44', 'to': '0x27bb2589a133265cf9f6ff770c465438cbd98ba3', 'value': 273244.32950703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x39dc9ad31823d614dc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:41:39.000Z'}}, {'blockNum': '0x511897', 'uniqueId': '0x9bf7d3260a692d84529e1e65a09b7e8b82346d016c01cbd9bcbecc630935413a:log:18', 'hash': '0x9bf7d3260a692d84529e1e65a09b7e8b82346d016c01cbd9bcbecc630935413a', 'from': '0x7f1efd6288d0e671712ed84bc668ab4d0f544fe3', 'to': '0xe6f4cbed16c5b734e662d25533bbe31812f2894f', 'value': 588.6238329594058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe8cbf169f240d98f', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:41:39.000Z'}}, {'blockNum': '0x511898', 'uniqueId': '0x95092f06a1839748e2731d661587bb242bffe568b685d2bdea55c6f0f09b697c:log:181', 'hash': '0x95092f06a1839748e2731d661587bb242bffe568b685d2bdea55c6f0f09b697c', 'from': '0xdd80730f13068cdadfc9ecf23a14f923574239fc', 'to': '0xec8509b212ce2a0ca95953aee18cc3b2fe793e17', 'value': 1061.01495125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x39848a54a9eaa6b400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:41:52.000Z'}}, {'blockNum': '0x51189a', 'uniqueId': '0x4bf5856d4454f537569dbed4d6f089c53b4347e7bfca71ed353cefd85dae019e:log:334', 'hash': '0x4bf5856d4454f537569dbed4d6f089c53b4347e7bfca71ed353cefd85dae019e', 'from': '0xdb2f8004ef60ca5ba2b2ae9b8825b3d37205ff3d', 'to': '0xe498216ccc589c6a824b7aef2feab9e47dbabcc3', 'value': 215.97702217353137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0bb548855f1c00302f', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:42:11.000Z'}}, {'blockNum': '0x51189a', 'uniqueId': '0xe96647300bfab41951a4fb9454e62a0ad0798cb3bf2e09c789906e4db536c339:log:354', 'hash': '0xe96647300bfab41951a4fb9454e62a0ad0798cb3bf2e09c789906e4db536c339', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'value': 5054.204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0111fd2bafadf6660000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:42:11.000Z'}}, {'blockNum': '0x51189c', 'uniqueId': '0x0421a16e263b772004d49ff96fe13f1bd9a5b360539013d5114e381330dc47bb:log:2', 'hash': '0x0421a16e263b772004d49ff96fe13f1bd9a5b360539013d5114e381330dc47bb', 'from': '0x7a2da1d6e9f3f23b7af660f88c06a748e93bc5d9', 'to': '0x16651e301bbbcdd19d02ac23f22ade2bdf0daf98', 'value': 695.74686554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x25b76d67fbd72a2800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:42:44.000Z'}}, {'blockNum': '0x51189c', 'uniqueId': '0x97cc113c0c1b5e2846c64e14d07b51a33b591802283b2e0ae903ee28946ea3c5:log:12', 'hash': '0x97cc113c0c1b5e2846c64e14d07b51a33b591802283b2e0ae903ee28946ea3c5', 'from': '0x88a7d2d08d03432ea6e0b1a58075dbaecc5af1d2', 'to': '0xb4c27911cd544c15b81370d746a48dcf013e7ed8', 'value': 13269.99438044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02cf5e2a8d9113fff000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:42:44.000Z'}}, {'blockNum': '0x51189c', 'uniqueId': '0x567c6139c7a7c1cf92ed2a74b62c1d2495454088af83a61a8051e583eaf542d5:log:25', 'hash': '0x567c6139c7a7c1cf92ed2a74b62c1d2495454088af83a61a8051e583eaf542d5', 'from': '0x8ebe3fe0bef15d658a9db26aad11465102f71cc7', 'to': '0x1f8b1a70c4ba7764364dce9da1d848228e2f6797', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:42:44.000Z'}}, {'blockNum': '0x51189d', 'uniqueId': '0x2cab355d0345c167f519b88908c1071790751b99a8c471f3479ab00cebef8435:log:18', 'hash': '0x2cab355d0345c167f519b88908c1071790751b99a8c471f3479ab00cebef8435', 'from': '0x2baf28545ded2b590ad316a75b56f52cbc1bf230', 'to': '0x516214d38e11cbb56b87ca8adf982a363d3855e7', 'value': 44788.8038174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x097c0183faac22973000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:43:01.000Z'}}, {'blockNum': '0x51189d', 'uniqueId': '0xa6c0c8f36c7f79eb6443463d5e08ea9b77c98f01bbf68852ad0b5b3d1a0b76a8:log:71', 'hash': '0xa6c0c8f36c7f79eb6443463d5e08ea9b77c98f01bbf68852ad0b5b3d1a0b76a8', 'from': '0xaca27d80379a582638409eb76a75b23f0d76d935', 'to': '0xe498216ccc589c6a824b7aef2feab9e47dbabcc3', 'value': 1050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x38ebad5cdc90280000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:43:01.000Z'}}, {'blockNum': '0x51189e', 'uniqueId': '0x5432b61efc2bdfb05f57e24b3f4e03b142550ddc221f270e11f23c69a46be98a:log:0', 'hash': '0x5432b61efc2bdfb05f57e24b3f4e03b142550ddc221f270e11f23c69a46be98a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc33ec0caef1c78143e970b7ea17fb09857306917', 'value': 1977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6b2c62f167b3440000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:43:22.000Z'}}, {'blockNum': '0x51189e', 'uniqueId': '0x2512e1acb39b706842493af4737b32d0403b3bcee2fdc63d792db0f8f7c2f2af:log:33', 'hash': '0x2512e1acb39b706842493af4737b32d0403b3bcee2fdc63d792db0f8f7c2f2af', 'from': '0x13a058c50e09912eadc459f2b2779d4a12f5e7e2', 'to': '0x29154fd303467ca07c67ded5ef27a86fd712af75', 'value': 25763.87792732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0574a9a18805a3e20000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:43:22.000Z'}}, {'blockNum': '0x51189e', 'uniqueId': '0xad9c12de95fd637c8d97d5fca730e0569193a8687a2a26adbceca08fda0afaeb:log:66', 'hash': '0xad9c12de95fd637c8d97d5fca730e0569193a8687a2a26adbceca08fda0afaeb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4ab2737e9ab6731e95628d7e4592a4f012462558', 'value': 49512.35, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a7c11e31d53ac030000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:43:22.000Z'}}, {'blockNum': '0x51189e', 'uniqueId': '0x6ede948768586402fca1721773e1a851beab1d2befa30dad659a0f6cc6be2dfe:log:72', 'hash': '0x6ede948768586402fca1721773e1a851beab1d2befa30dad659a0f6cc6be2dfe', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xaec7cb6bf3ba0d752212834229a0134f2a35d4b6', 'value': 124.69492153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06c27d5a7832dbc400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:43:22.000Z'}}, {'blockNum': '0x51189e', 'uniqueId': '0x72f675d24040a87b5ebd972534a8a6884757781f871ef5a3b0b5d8e6bc038235:log:74', 'hash': '0x72f675d24040a87b5ebd972534a8a6884757781f871ef5a3b0b5d8e6bc038235', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'value': 71, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03d952abd36cbc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:43:22.000Z'}}, {'blockNum': '0x51189e', 'uniqueId': '0xf643cf4b90bf5dfea41b95fbefa4b22fe4cedc4c55c63ddbef2e491105e74b4f:log:76', 'hash': '0xf643cf4b90bf5dfea41b95fbefa4b22fe4cedc4c55c63ddbef2e491105e74b4f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x97044ab8a7c8467e2e8f7274aecf4487660144f0', 'value': 64151.02987028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0d95a261544be8b9d000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:43:22.000Z'}}, {'blockNum': '0x51189f', 'uniqueId': '0x07512878bd40f2f74f2d9402ee32d1424c58ed2e09fc531f859a5648c517854e:log:24', 'hash': '0x07512878bd40f2f74f2d9402ee32d1424c58ed2e09fc531f859a5648c517854e', 'from': '0x9bd0404bbf339481efc75e69c88a92983e613b2a', 'to': '0x7a8c586083ee1b4c84da326cf9b412e5275e9835', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:43:41.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0xea2038dae1c28c86e42ea82049aba0f1cc982c8b5654f76bc7c7348b197de4f7:log:10', 'hash': '0xea2038dae1c28c86e42ea82049aba0f1cc982c8b5654f76bc7c7348b197de4f7', 'from': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 43515.5704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0936fbda336d46ee0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0x8b199d83dd759a4da682c6128196bcba75cf9335e614d0b5347d19a3ea04bfbc:log:11', 'hash': '0x8b199d83dd759a4da682c6128196bcba75cf9335e614d0b5347d19a3ea04bfbc', 'from': '0xf2f32342706c68ec18d498fc720f4cba5fcfb6c8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 113268.45536137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x17fc4b96bd2b60990400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0x570311ce12ac5c57336e55dc2dd3d44fc4e856dbc4a41591076c1b66d0fc04a8:log:12', 'hash': '0x570311ce12ac5c57336e55dc2dd3d44fc4e856dbc4a41591076c1b66d0fc04a8', 'from': '0x27bb2589a133265cf9f6ff770c465438cbd98ba3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 273244.32950703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x39dc9ad31823d614dc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0x3e952364fb199d180c80dc1affba7036c453472466c0f834cd3c9095b9d7cc83:log:14', 'hash': '0x3e952364fb199d180c80dc1affba7036c453472466c0f834cd3c9095b9d7cc83', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 396531.37767631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x53f802518b52ed8d5c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0x85f9dc72fbf0faf235922914957217bab0c00b3722b4c9164c9aaa8a8d0dbeae:log:15', 'hash': '0x85f9dc72fbf0faf235922914957217bab0c00b3722b4c9164c9aaa8a8d0dbeae', 'from': '0xbe9f236a87d88cf163a1e973638812aa64fbddf3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10804.76101156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0249ba2e3defc0141000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0xed14a19dd132c7aa9ed31440b1e65ea3c1e0ef2c79d4b20cf17731c25f4d8a83:log:16', 'hash': '0xed14a19dd132c7aa9ed31440b1e65ea3c1e0ef2c79d4b20cf17731c25f4d8a83', 'from': '0x518766e93438e9340d071101cea6356f205db470', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0549ae3d45f8c74c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0xf60eeb9f1127682923db1a275e126bb4222687e9ac71d786c496389bb459f773:log:17', 'hash': '0xf60eeb9f1127682923db1a275e126bb4222687e9ac71d786c496389bb459f773', 'from': '0x05d34963274c08d62e3fa72ed0bb45fa8bf965f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 189945.38273851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2838f5b77ae7e6ad8c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0x55fc871159bfbb492a2674ee847c642aff2b94c4af4df1b4f5344e9ed8a36e00:log:18', 'hash': '0x55fc871159bfbb492a2674ee847c642aff2b94c4af4df1b4f5344e9ed8a36e00', 'from': '0x3d510bd5289aafdd243a63198c3af5f5a873f395', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 104384.41571509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x161ab0c5908982383400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0xd8b0154a26540f8ef3cbbb0601b2b36cb28c0633e97d4e3a53381a8ba9f480f1:log:19', 'hash': '0xd8b0154a26540f8ef3cbbb0601b2b36cb28c0633e97d4e3a53381a8ba9f480f1', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 275664.71210384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3a5fd0617433bba44000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0xb3425b53fec433966a9bb2ef4388beae4722bfab05e8d88f7d960ebc99466780:log:20', 'hash': '0xb3425b53fec433966a9bb2ef4388beae4722bfab05e8d88f7d960ebc99466780', 'from': '0x1f8b1a70c4ba7764364dce9da1d848228e2f6797', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0x5c97e8482c0ba198ffc0ef4ec70fac67eb50fa22fa3ad10e1924dfd456e003a9:log:21', 'hash': '0x5c97e8482c0ba198ffc0ef4ec70fac67eb50fa22fa3ad10e1924dfd456e003a9', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 312114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4217bbdd2527dd880000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0xa6df126a08865b757adabeec1563cf7eba8ac5532fcf7031d34d138289523df1:log:22', 'hash': '0xa6df126a08865b757adabeec1563cf7eba8ac5532fcf7031d34d138289523df1', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03d874a0683245c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0x2601bb1f4332b55bf40e5bd7e4a4db06d53caf8b3d9b6c29bb2e11dde6707db5:log:26', 'hash': '0x2601bb1f4332b55bf40e5bd7e4a4db06d53caf8b3d9b6c29bb2e11dde6707db5', 'from': '0xa06f8516027b85e62d7720606f939b9a36b994d2', 'to': '0x89af64fad4a6987bb775abc7069ebf48cdd035de', 'value': 831.37527137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2d11a64c7efcd56400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a2', 'uniqueId': '0x38bc5aae7737463d3c80b839344fb31b4ca9709bd660be7802cfdc61eecb6280:log:9', 'hash': '0x38bc5aae7737463d3c80b839344fb31b4ca9709bd660be7802cfdc61eecb6280', 'from': '0x4ce1965132dd5ba325a26fd20ed474da2a8175d2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21549, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04902c7310813c940000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:15.000Z'}}, {'blockNum': '0x5118a2', 'uniqueId': '0x0ef412c1b0d775d3766a3c26d436d2190f4067a215cf9005b167d081d6fbf1df:log:10', 'hash': '0x0ef412c1b0d775d3766a3c26d436d2190f4067a215cf9005b167d081d6fbf1df', 'from': '0x2996ce512572d771246a0967ba6430b0c9dfc319', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02ff4a3568e4dee80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:15.000Z'}}, {'blockNum': '0x5118a3', 'uniqueId': '0xaa13943c4163da084122288760f6fe5ba02817cae301291f5907c67c214062fa:log:30', 'hash': '0xaa13943c4163da084122288760f6fe5ba02817cae301291f5907c67c214062fa', 'from': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12334.913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x029cad4e24547be68000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:32.000Z'}}, {'blockNum': '0x5118a5', 'uniqueId': '0x0935fcb84f8fc45a5c8a56d3d1d32c64e55bcce4132aa2557d29434ca3b0d9f8:log:179', 'hash': '0x0935fcb84f8fc45a5c8a56d3d1d32c64e55bcce4132aa2557d29434ca3b0d9f8', 'from': '0x7a23608a8ebe71868013bda0d900351a83bb4dc2', 'to': '0x1fe84364298395dee9235e421873c019a83114d7', 'value': 7096.172540648515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0180af2d40961be87540', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:45:04.000Z'}}, {'blockNum': '0x5118a6', 'uniqueId': '0x9d8ec8d70cc1835992242254c13b79d7937c3698c146ec70005a93111327197a:log:12', 'hash': '0x9d8ec8d70cc1835992242254c13b79d7937c3698c146ec70005a93111327197a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'value': 150571.29056533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe27c6ba0479c7db400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:45:16.000Z'}}, {'blockNum': '0x5118a6', 'uniqueId': '0x57cbc911354780cd3503eac96d479510d9b3d77e1da109b5ac7c19c266648fa9:log:16', 'hash': '0x57cbc911354780cd3503eac96d479510d9b3d77e1da109b5ac7c19c266648fa9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 17818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03c5ea6c5430a6280000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:45:16.000Z'}}, {'blockNum': '0x5118a6', 'uniqueId': '0xe7c7dd83955b7c9a2e0481177119967b162f66e6ac4381e1543abf2f25239353:log:17', 'hash': '0xe7c7dd83955b7c9a2e0481177119967b162f66e6ac4381e1543abf2f25239353', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'value': 43600.7328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093b99b7d30462a80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:45:16.000Z'}}, {'blockNum': '0x5118a9', 'uniqueId': '0x1063eaaf436475291b8319ae92023cfde6fe9fa2af382adc7f23cf7370ac5301:log:8', 'hash': '0x1063eaaf436475291b8319ae92023cfde6fe9fa2af382adc7f23cf7370ac5301', 'from': '0x2be18e7a2d4cbd996e92956514fcfd282e69d652', 'to': '0x53228dd76dfd01b0d47333b24d24cf87501cd94d', 'value': 57.936268829663966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x032406f98a83a82728', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:45:59.000Z'}}, {'blockNum': '0x5118a9', 'uniqueId': '0x37e4a8b5310e26708d25512234820e94b65da633bad239ab8e589df038f45e48:log:9', 'hash': '0x37e4a8b5310e26708d25512234820e94b65da633bad239ab8e589df038f45e48', 'from': '0xebc6ad688f511ead6d4e921fde88f86eecd5977e', 'to': '0x0eaa20c94b3225b89fd3968960a7bc8a139781c6', 'value': 733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x27bc6b206649540000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:45:59.000Z'}}, {'blockNum': '0x5118ab', 'uniqueId': '0xfdaf7e523f6069733f0febfd9be1e5bdcdd7c9fe98d2a13c7f5193d3a4dbdead:log:16', 'hash': '0xfdaf7e523f6069733f0febfd9be1e5bdcdd7c9fe98d2a13c7f5193d3a4dbdead', 'from': '0xe5f4fa4e83623c883106e5cd058a2a50b3eeba64', 'to': '0xcd6081dcdb20b1b65bbb461005635f8c58888619', 'value': 1778.09388336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x606402762bb7a6c000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:46:25.000Z'}}, {'blockNum': '0x5118ae', 'uniqueId': '0x1f14481515eba60f94cf6b062c80058971c9568e6a2aa45ecacbf8d445e3043f:log:9', 'hash': '0x1f14481515eba60f94cf6b062c80058971c9568e6a2aa45ecacbf8d445e3043f', 'from': '0xcd34e8767cf8164a71477e732d354877944d1bdb', 'to': '0xecbb11ac99b03fb7853e46ab551c4ebd14a53851', 'value': 19844.3242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0433c352082a0fbe8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:47:27.000Z'}}, {'blockNum': '0x5118ae', 'uniqueId': '0x559596d0f4945a26e69c04a12d411f95ae77ca83329ad3b378602a85b005e945:log:36', 'hash': '0x559596d0f4945a26e69c04a12d411f95ae77ca83329ad3b378602a85b005e945', 'from': '0x2baf28545ded2b590ad316a75b56f52cbc1bf230', 'to': '0xb90da587cf558dca480d01b9ee0cff6dfd53047f', 'value': 45680.26717282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x09ac550e0940697d4800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:47:27.000Z'}}, {'blockNum': '0x5118ae', 'uniqueId': '0x3013f88724fc2625a850e39a44738bf5c1f16b7da36d6c302e02828f2e4ec799:log:38', 'hash': '0x3013f88724fc2625a850e39a44738bf5c1f16b7da36d6c302e02828f2e4ec799', 'from': '0xf91deb9ae9c436edef3f944a385901474b3bb07b', 'to': '0x12a6d0e18da6e6deca313183c19a8ec832714b1e', 'value': 1215.07362358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x41de88aee8f89a1800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:47:27.000Z'}}, {'blockNum': '0x5118ae', 'uniqueId': '0xb7d5cd861116270ef4fd7fc37271a358d33e1c1046350acdecf5bf31438ea6eb:log:40', 'hash': '0xb7d5cd861116270ef4fd7fc37271a358d33e1c1046350acdecf5bf31438ea6eb', 'from': '0x89c8154be5bd7899b15d93d47faf10877d36327e', 'to': '0x326c98319f4d11ee6f2ba4f4c7cb4b53cc4c2144', 'value': 600000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x7f0e10af47c1c7000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:47:27.000Z'}}, {'blockNum': '0x5118ae', 'uniqueId': '0x6a2fec782ad0624cdeafeacb976f2217d49ce237b154d745600383ec9ec46522:log:43', 'hash': '0x6a2fec782ad0624cdeafeacb976f2217d49ce237b154d745600383ec9ec46522', 'from': '0xe5f4fa4e83623c883106e5cd058a2a50b3eeba64', 'to': '0x8882e0eb338619971f04bb30a7b950aa73284298', 'value': 1185.39592224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4042ac4ec7cfc48000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:47:27.000Z'}}, {'blockNum': '0x5118ae', 'uniqueId': '0x41522fddfde7826aab5fe2d4d027c77d96868b06d7b968130a42a4564ccd3e53:log:45', 'hash': '0x41522fddfde7826aab5fe2d4d027c77d96868b06d7b968130a42a4564ccd3e53', 'from': '0x004ba728a652bded4d4b79fb04b5a92ad8ce15e7', 'to': '0xdcafe3dd79080fc9a56428b664ebb6b715a7096b', 'value': 125000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1a784379d99db4200000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:47:27.000Z'}}, {'blockNum': '0x5118b0', 'uniqueId': '0x7de29a2284b93f39de90b74d3fd54392014197c7623d406d3943e84c1f61173e:log:175', 'hash': '0x7de29a2284b93f39de90b74d3fd54392014197c7623d406d3943e84c1f61173e', 'from': '0x27d65d34fe67869b704e7bb806f86bedbf96b792', 'to': '0x884dbd166ffae569dcf8b1089a3949eb1b498dac', 'value': 1570.60899985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x55249413eba2cc2400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:47:56.000Z'}}, {'blockNum': '0x5118b1', 'uniqueId': '0x0b1ee84b7902c258a58de88d62e932c5005292447253948bdd2a97ecc62956db:log:3', 'hash': '0x0b1ee84b7902c258a58de88d62e932c5005292447253948bdd2a97ecc62956db', 'from': '0xe2575bc12e5456441d377c144c619e6693de9a5e', 'to': '0x574ea78c8cefcd90194a95873782e19ed3ccd008', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xbdbc41e0348b300000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:48:32.000Z'}}, {'blockNum': '0x5118b1', 'uniqueId': '0x06cc3da4905a8bec209d93175009cce6e23f3f76695ce31812510ab0d0b298ed:log:104', 'hash': '0x06cc3da4905a8bec209d93175009cce6e23f3f76695ce31812510ab0d0b298ed', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x7aae9b6feb50d38746c27fbb2e97b5de740c28a5', 'value': 20657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x045fd1767685fc240000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:48:32.000Z'}}, {'blockNum': '0x5118b2', 'uniqueId': '0x384bbbe3c40ef682b6ad8cdb3e7a316e8bde3d4e459e66ccb7a339383db7b282:log:59', 'hash': '0x384bbbe3c40ef682b6ad8cdb3e7a316e8bde3d4e459e66ccb7a339383db7b282', 'from': '0xff18d3e9759011c0a40626f6db708ba072706922', 'to': '0x1d05d057aecea117b3ddbd5bb0922eb5d1dfac40', 'value': 67000.054848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0e30148b56c068840000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:48:33.000Z'}}, {'blockNum': '0x5118b2', 'uniqueId': '0x3192611f9b6ce3d98f98782d8e8595bf0981316b60c90d90da1509de8f2197bf:log:60', 'hash': '0x3192611f9b6ce3d98f98782d8e8595bf0981316b60c90d90da1509de8f2197bf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfe9e8709d3215310075d67e3ed32a380ccf451c8', 'value': 5633283.475923817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04a8e4e8bd79b22b06d68a', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:48:33.000Z'}}, {'blockNum': '0x5118b3', 'uniqueId': '0x36764db2ad2052624a65b1ac55572ba2bbab1834a9fc45b5393f4d5a908a5eb4:log:21', 'hash': '0x36764db2ad2052624a65b1ac55572ba2bbab1834a9fc45b5393f4d5a908a5eb4', 'from': '0x85dd671b45046264e5113356bdc4b9ad4a3073ad', 'to': '0xa5bef50e6d57fe6a76dbcc50f42f6a8b94125c69', 'value': 9910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021938e08e91d9180000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:50:31.000Z'}}, {'blockNum': '0x5118b3', 'uniqueId': '0x0d31fa5c9d364203e960498b6c159b6a4224f2b2609fa532b8ea578a7da0e433:log:22', 'hash': '0x0d31fa5c9d364203e960498b6c159b6a4224f2b2609fa532b8ea578a7da0e433', 'from': '0x723d26b59f856bdbbeb055c9dc9dbc89bfe7a78a', 'to': '0xcfa490da45fba909fd1e0c9ee0e83678c191e12a', 'value': 7121.24485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01820b1ffd1a4de52000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:50:31.000Z'}}, {'blockNum': '0x5118b3', 'uniqueId': '0x648b6100563517df24441f97ae64c91e751894f2a34a625f20757149dd8ed743:log:24', 'hash': '0x648b6100563517df24441f97ae64c91e751894f2a34a625f20757149dd8ed743', 'from': '0xaf4ffbb3057356a9b6a25129211426daa2863d4f', 'to': '0x8d8a25d4fd12b0c0d66c46e72e303e60e1d59a4e', 'value': 936.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x32c752e72694660000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:50:31.000Z'}}, {'blockNum': '0x5118b3', 'uniqueId': '0xd74c7ebf3f2500fb34768a5faf2d47466bf7bba4b0b04be6532f90bdc7c5b5ef:log:26', 'hash': '0xd74c7ebf3f2500fb34768a5faf2d47466bf7bba4b0b04be6532f90bdc7c5b5ef', 'from': '0xe4b0e193f17207da8ad4faf3806d8705d01e0a18', 'to': '0xa4dd2e04bac8cbd9aab4877fb2c13f449415fe9f', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:50:31.000Z'}}, {'blockNum': '0x5118b3', 'uniqueId': '0x98d471c51cf4735cb6dfa8f8ba302884521adf890a806d41cff3cad1ec5cac26:log:46', 'hash': '0x98d471c51cf4735cb6dfa8f8ba302884521adf890a806d41cff3cad1ec5cac26', 'from': '0xb5f2e775ebfe656d269021a619f975467eb429df', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 180.98319591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x09cfa579ca427abc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:50:31.000Z'}}, {'blockNum': '0x5118b7', 'uniqueId': '0xb3e3cb2bf861d5eb546dc45fa74424c6beefccdaf6e770ea0f8aa2028ba41141:log:0', 'hash': '0xb3e3cb2bf861d5eb546dc45fa74424c6beefccdaf6e770ea0f8aa2028ba41141', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1a9b81da030f71a2f131a5524d21b5634c3501f3', 'value': 28400.80338571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06039c52ad65dbeccc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:51:13.000Z'}}, {'blockNum': '0x5118b7', 'uniqueId': '0xaa16b275079f09e05de90c10c2341774641513b1f609e0a6f4b32a255ec10637:log:1', 'hash': '0xaa16b275079f09e05de90c10c2341774641513b1f609e0a6f4b32a255ec10637', 'from': '0xf32387a4e0ab95ee0e8aab1f452a00c9cd5797e5', 'to': '0x4e61ec62005243022aeccca249d67e98495c9d8a', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:51:13.000Z'}}, {'blockNum': '0x5118be', 'uniqueId': '0xb93e8e85584633ec50b0f06555701967d680ccae6752abc700211b0fb2af993d:log:10', 'hash': '0xb93e8e85584633ec50b0f06555701967d680ccae6752abc700211b0fb2af993d', 'from': '0xab07e32df9fd0d4ac567e03283d2b8db1f575fcc', 'to': '0xde05344cd4e4b100ee7f10598808a6e1444ea396', 'value': 1488.46485477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x50b0997330433ef400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:52:02.000Z'}}, {'blockNum': '0x5118bf', 'uniqueId': '0x82b9683fb93ad728a195a8cf073c093ddf9abc23ab088e75dd8080e6c8e525a1:log:5', 'hash': '0x82b9683fb93ad728a195a8cf073c093ddf9abc23ab088e75dd8080e6c8e525a1', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xbc72bed54a862e141cb1cb8ff6451848af0c15c2', 'value': 452.92425479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x188d96320934773c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:52:07.000Z'}}, {'blockNum': '0x5118c3', 'uniqueId': '0x14561db4c478471e20eca3fd3dc2fc354dada98351cd805c7abfc9bd4b2388a7:log:3', 'hash': '0x14561db4c478471e20eca3fd3dc2fc354dada98351cd805c7abfc9bd4b2388a7', 'from': '0x09fee62f5823d863a71094259d279ee0f49e1b17', 'to': '0xb736be2367edb2cdac15ad8fc4f28598edbea745', 'value': 1037.410809579607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x383cf792dfe6e18133', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:52:46.000Z'}}, {'blockNum': '0x5118c4', 'uniqueId': '0xbe651547060ef6058288c426aec5040bb61eca1d727fef11f2cf05eb7f732e6b:log:2', 'hash': '0xbe651547060ef6058288c426aec5040bb61eca1d727fef11f2cf05eb7f732e6b', 'from': '0x36c11f380cc1c31945f4eca6a2f214b6f89a8544', 'to': '0xec27822460069286db36481657a4807720ae29c4', 'value': 4234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xe5868db74e7be80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:53:09.000Z'}}, {'blockNum': '0x5118c4', 'uniqueId': '0x681d3d1f4cea1ee6416dc78341c2af4a86c6bbd332b87ad9e8581992a67f92be:log:189', 'hash': '0x681d3d1f4cea1ee6416dc78341c2af4a86c6bbd332b87ad9e8581992a67f92be', 'from': '0x2e3be188a4e2e921295a39373f250951fdd47cdf', 'to': '0x6020938e946f1f519a0d6fbd647d9842849b383d', 'value': 239.26046765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0cf867efabe0171400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:53:09.000Z'}}, {'blockNum': '0x5118c5', 'uniqueId': '0xbf54326c110aeb53519531a6f5950cd446da32a9aa410d663477147283d293b5:log:9', 'hash': '0xbf54326c110aeb53519531a6f5950cd446da32a9aa410d663477147283d293b5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x579ae165e1deeeb9c96551347ae705aee163bdbb', 'value': 240.91945998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0d0f6ddc67e2d67800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:53:23.000Z'}}, {'blockNum': '0x5118c7', 'uniqueId': '0xe91fc8694f660ebdc71654354b7d88ec30b63dbdd6addf913ab9f4cde37725d4:log:8', 'hash': '0xe91fc8694f660ebdc71654354b7d88ec30b63dbdd6addf913ab9f4cde37725d4', 'from': '0x997e70bbde34e55d10ffd9ca89d70b26b1828a9f', 'to': '0xe5e87affc473990cb0de219dc1329bbef2638bef', 'value': 4964.56211302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x010d2123ba6a0fc8d800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:53:52.000Z'}}, {'blockNum': '0x5118c7', 'uniqueId': '0x1893ed07f259060114cb0c877764f11dcf7b64e6af445f2c269d31ff3ac73a0c:log:9', 'hash': '0x1893ed07f259060114cb0c877764f11dcf7b64e6af445f2c269d31ff3ac73a0c', 'from': '0xa4dd2e04bac8cbd9aab4877fb2c13f449415fe9f', 'to': '0x15e9ddacfdec790cd89a4c723bc59c42c195c72b', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:53:52.000Z'}}, {'blockNum': '0x5118c7', 'uniqueId': '0x59aee2ae0bc0d3a49e2b6253d37c5cb303aa1cfcb1e2051d5498bb365b0eb7db:log:62', 'hash': '0x59aee2ae0bc0d3a49e2b6253d37c5cb303aa1cfcb1e2051d5498bb365b0eb7db', 'from': '0x0eaa20c94b3225b89fd3968960a7bc8a139781c6', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x27bc6b206649540000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:53:52.000Z'}}, {'blockNum': '0x5118c9', 'uniqueId': '0xa58ff25aaa7ae261284d081cda0247d71dea91f1b7098816c5a23612d1bd7d28:log:17', 'hash': '0xa58ff25aaa7ae261284d081cda0247d71dea91f1b7098816c5a23612d1bd7d28', 'from': '0x37fbb1db781a9b6e2da9b7ed6fcb34be4267b8b8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 51565.29347826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0aeb5c337dd7f62d8800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:54:15.000Z'}}, {'blockNum': '0x5118c9', 'uniqueId': '0x6bf4018a50d05beec123a86c2bbdfe5d4e5e84fffda5ed80d4432a162d715024:log:18', 'hash': '0x6bf4018a50d05beec123a86c2bbdfe5d4e5e84fffda5ed80d4432a162d715024', 'from': '0xdcafe3dd79080fc9a56428b664ebb6b715a7096b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 127923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1b16b83feee5f6ec0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:54:15.000Z'}}, {'blockNum': '0x5118c9', 'uniqueId': '0x57e55bd702a1ad238181b8b91709c72f1f067143d3f78a47e2a99b8a06e7b958:log:19', 'hash': '0x57e55bd702a1ad238181b8b91709c72f1f067143d3f78a47e2a99b8a06e7b958', 'from': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 43600.7328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093b99b7d30462a80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:54:15.000Z'}}, {'blockNum': '0x5118c9', 'uniqueId': '0xb45c0553a7e280ec631880599d908e7eabffddcf7164d80e3fdd9ea23b1fdd45:log:20', 'hash': '0xb45c0553a7e280ec631880599d908e7eabffddcf7164d80e3fdd9ea23b1fdd45', 'from': '0x326c98319f4d11ee6f2ba4f4c7cb4b53cc4c2144', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 600000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x7f0e10af47c1c7000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:54:15.000Z'}}, {'blockNum': '0x5118c9', 'uniqueId': '0x8aa2284bfad0f93e66504b7016d69c6744458ebaad126c570bfc58fdbc8a7c5c:log:21', 'hash': '0x8aa2284bfad0f93e66504b7016d69c6744458ebaad126c570bfc58fdbc8a7c5c', 'from': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 154248.10242823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x20a9ce6f6d00cd3f3c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:54:15.000Z'}}, {'blockNum': '0x5118c9', 'uniqueId': '0x4dc4651c154e0e9393cd0cdad969201a7912b2e8eb3e136a5356e09c531727ae:log:24', 'hash': '0x4dc4651c154e0e9393cd0cdad969201a7912b2e8eb3e136a5356e09c531727ae', 'from': '0x4e61ec62005243022aeccca249d67e98495c9d8a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:54:15.000Z'}}, {'blockNum': '0x5118c9', 'uniqueId': '0x2dd4447f00c50bbbbb4dd4a8e9101244c0f3f252eadab1ca88ec41209d7e863a:log:25', 'hash': '0x2dd4447f00c50bbbbb4dd4a8e9101244c0f3f252eadab1ca88ec41209d7e863a', 'from': '0x97044ab8a7c8467e2e8f7274aecf4487660144f0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 64151.02987028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0d95a261544be8b9d000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:54:15.000Z'}}, {'blockNum': '0x5118c9', 'uniqueId': '0x407b79ad3c4d21ae556403f394967c42ff3880bda1f69a82c4ea2abd8c16a7e6:log:26', 'hash': '0x407b79ad3c4d21ae556403f394967c42ff3880bda1f69a82c4ea2abd8c16a7e6', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03c5ea6c5430a6280000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:54:15.000Z'}}, {'blockNum': '0x5118c9', 'uniqueId': '0x2ba20c94a5ad6b82e0f220615e78bd29fdd9363a4754a4644f7146b590c2d6f8:log:27', 'hash': '0x2ba20c94a5ad6b82e0f220615e78bd29fdd9363a4754a4644f7146b590c2d6f8', 'from': '0xecbb11ac99b03fb7853e46ab551c4ebd14a53851', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19844.3242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0433c352082a0fbe8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:54:15.000Z'}}, {'blockNum': '0x5118c9', 'uniqueId': '0x650efc538e1ffbb0ff6e506924eb2efd5b01882567bbd995cbd270d878d6256c:log:28', 'hash': '0x650efc538e1ffbb0ff6e506924eb2efd5b01882567bbd995cbd270d878d6256c', 'from': '0x7aae9b6feb50d38746c27fbb2e97b5de740c28a5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x045fd1767685fc240000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:54:15.000Z'}}, {'blockNum': '0x5118cd', 'uniqueId': '0xee16d06d7e66cbef9db904922971877e2fe78f44abdd697e86045228150b874c:log:1', 'hash': '0xee16d06d7e66cbef9db904922971877e2fe78f44abdd697e86045228150b874c', 'from': '0xf984c060ffb33813beca4afa3319a7d548004724', 'to': '0x0f9153b43f708314ce9b160493d4c16dc1779b32', 'value': 17966.95469999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03cdfd95baa296fcdc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:55:14.000Z'}}, {'blockNum': '0x5118cd', 'uniqueId': '0x24b6393152131ce6d95bf00c09ec1f0f42d78ca023fe836674a7d716593be88d:log:2', 'hash': '0x24b6393152131ce6d95bf00c09ec1f0f42d78ca023fe836674a7d716593be88d', 'from': '0xb5db7a687be58ebb7132fa3b57f45f0e6323f360', 'to': '0x4f2a4ccf2dfb651a0e244646abaf8fed4a2604fa', 'value': 14530.56, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0313b40745cb2c000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:55:14.000Z'}}, {'blockNum': '0x5118d2', 'uniqueId': '0xed2ee0d178be1d0ed3f5c01aeadeb66f57c0bd3f31929698266b0325a5a36c98:log:9', 'hash': '0xed2ee0d178be1d0ed3f5c01aeadeb66f57c0bd3f31929698266b0325a5a36c98', 'from': '0x574ea78c8cefcd90194a95873782e19ed3ccd008', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xbdbc41e0348b300000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:55:52.000Z'}}, {'blockNum': '0x5118d2', 'uniqueId': '0xa8d8edc6c25d8be8504dccf0d6fdffd8180aedb8a47357cb18cd7ca80cb5a9e7:log:12', 'hash': '0xa8d8edc6c25d8be8504dccf0d6fdffd8180aedb8a47357cb18cd7ca80cb5a9e7', 'from': '0x1d05d057aecea117b3ddbd5bb0922eb5d1dfac40', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 67000.054848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0e30148b56c068840000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:55:52.000Z'}}, {'blockNum': '0x5118d4', 'uniqueId': '0xc9f0609c6086a9883b95977b62bd64f070f6d4f0e1d69d03b4d19738eb997b2e:log:20', 'hash': '0xc9f0609c6086a9883b95977b62bd64f070f6d4f0e1d69d03b4d19738eb997b2e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x24323539d064ef3d61c23a7ed092f03666af7ad3', 'value': 14815.259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x032323054de4c8ef8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:56:15.000Z'}}, {'blockNum': '0x5118d4', 'uniqueId': '0x84d5f1cc17f5c55db4fadeb1978041b48b85c876907925141f31d5090ffb620f:log:28', 'hash': '0x84d5f1cc17f5c55db4fadeb1978041b48b85c876907925141f31d5090ffb620f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8a8175cef6a1a7acc947e93b3a37d77e066db7ee', 'value': 14048.03134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02f98b991a11eec2c000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:56:15.000Z'}}, {'blockNum': '0x5118d4', 'uniqueId': '0x5703cb9ec7f2cdfd57de611daef1bf2b170f8aed0ffa8c8b187e0bc7f725e8f5:log:34', 'hash': '0x5703cb9ec7f2cdfd57de611daef1bf2b170f8aed0ffa8c8b187e0bc7f725e8f5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9f17140f67c44a29c35337c21fd818087872183d', 'value': 220644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2eb9229cf1fc69100000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:56:15.000Z'}}, {'blockNum': '0x5118d5', 'uniqueId': '0xe81ebd1e3bfa67a3da54366b8ec234e4f6aa731f52ffa6a7c8d6e919dc7a7769:log:0', 'hash': '0xe81ebd1e3bfa67a3da54366b8ec234e4f6aa731f52ffa6a7c8d6e919dc7a7769', 'from': '0x413e12b268497ffa0d4b3702c2a060d389dabbbd', 'to': '0x6ee6b33a144a31da249c37f2ef944b620acdd9fb', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:56:21.000Z'}}, {'blockNum': '0x5118d7', 'uniqueId': '0x4bf9cc487372f0b4e110e5adb697899164bda83ab505213cd5fb6721b53311f0:log:21', 'hash': '0x4bf9cc487372f0b4e110e5adb697899164bda83ab505213cd5fb6721b53311f0', 'from': '0x3e43789000dbdaf93f90801d29be5c3bdc1ed3b2', 'to': '0xcb88bd357277fdada51863885da9b58bdf5dbff3', 'value': 8117.23975545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01b80954b69a33eac400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:56:42.000Z'}}, {'blockNum': '0x5118d9', 'uniqueId': '0x965cce7959d01603dc95991a2da5b2a1d7fd544b9f8eab24f47ad3031f75092e:log:8', 'hash': '0x965cce7959d01603dc95991a2da5b2a1d7fd544b9f8eab24f47ad3031f75092e', 'from': '0xfc6d6e5d021ee2c5ca17bfb0ee7439d06c4ec53b', 'to': '0xcf651a116af6c2ec0debac2142385c5e7e7426b5', 'value': 10567.95590027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x023ce3d97bdd92c8cc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:57:36.000Z'}}, {'blockNum': '0x5118d9', 'uniqueId': '0xea43877e2cf6e0c9cdb6459dc6b293273fa75b3890226ab33adbd2ea7202502c:log:9', 'hash': '0xea43877e2cf6e0c9cdb6459dc6b293273fa75b3890226ab33adbd2ea7202502c', 'from': '0xbe8ff8364a6f536a843677b93e638ca2eacec68a', 'to': '0xcd447034fd2545a070148708be390fc090a3c629', 'value': 7500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01969368974c05b00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:57:36.000Z'}}, {'blockNum': '0x5118dd', 'uniqueId': '0x777a59ee92a91ac501d2737370fc25660cd1875c6ba912818f30044bd469718d:log:18', 'hash': '0x777a59ee92a91ac501d2737370fc25660cd1875c6ba912818f30044bd469718d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'value': 43592.6492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093b29891ba5584f0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:58:17.000Z'}}, {'blockNum': '0x5118e3', 'uniqueId': '0x1ceef4494d0f7a11d7068ddfe998c2e7e42e3894598efdee5f690c1f218467f9:log:2', 'hash': '0x1ceef4494d0f7a11d7068ddfe998c2e7e42e3894598efdee5f690c1f218467f9', 'from': '0x5dce2e31f57b6eae38f37e6ec1b75a25c84c3631', 'to': '0xf480cae1f9225eeb90bab0c31654fa1b29266d04', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x014542ba12a337c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:59:22.000Z'}}, {'blockNum': '0x5118e4', 'uniqueId': '0x522c0dc269e04ed28be7ca7de52f5d33a82afc0be1f2ddb32bc8e6b86c4154d5:log:17', 'hash': '0x522c0dc269e04ed28be7ca7de52f5d33a82afc0be1f2ddb32bc8e6b86c4154d5', 'from': '0x9bd0404bbf339481efc75e69c88a92983e613b2a', 'to': '0x7a8c586083ee1b4c84da326cf9b412e5275e9835', 'value': 4463.757065321091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xf1fb12c8e937c51d2a', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:59:43.000Z'}}, {'blockNum': '0x5118e8', 'uniqueId': '0xedbd7687d8b627e7531585a7139b04f430a10fa6b9de65f34c45401186830099:log:12', 'hash': '0xedbd7687d8b627e7531585a7139b04f430a10fa6b9de65f34c45401186830099', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x6c022e721f0a619f760ae654dabb872c1f01e3bd', 'value': 1488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x50aa25f43cf5400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:00:31.000Z'}}, {'blockNum': '0x5118e9', 'uniqueId': '0xca155cc1951ec15b9323ca613edcb9bc0334f8bf9ca37d4a8f2921b91c0fefc5:log:18', 'hash': '0xca155cc1951ec15b9323ca613edcb9bc0334f8bf9ca37d4a8f2921b91c0fefc5', 'from': '0x88a76b7618d2640be4f52e4522755db16a534379', 'to': '0x04c969e89c22e3c136ae893c28aaeed80270e52c', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:00:55.000Z'}}, {'blockNum': '0x5118e9', 'uniqueId': '0x40755b87943dbc8c1140cae894163107d15d0ed83525f2b5a2596b257ba72ac9:log:24', 'hash': '0x40755b87943dbc8c1140cae894163107d15d0ed83525f2b5a2596b257ba72ac9', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xc9b4392dbb2d3d4f3683e796b6a39a484fe48dcd', 'value': 2522.19173425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x88ba711327e5aea400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:00:55.000Z'}}, {'blockNum': '0x5118e9', 'uniqueId': '0x9fb32838c5c703f74f256493a3ae47f05af65c56c0fde03ea84f8b66ec75855c:log:25', 'hash': '0x9fb32838c5c703f74f256493a3ae47f05af65c56c0fde03ea84f8b66ec75855c', 'from': '0x8882e0eb338619971f04bb30a7b950aa73284298', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1185.39592224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4042ac4ec7cfc48000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:00:55.000Z'}}, {'blockNum': '0x5118e9', 'uniqueId': '0x3ed50e806864ca06e4b66f99ce750f85351d325a75a1768df4eca224864291a7:log:36', 'hash': '0x3ed50e806864ca06e4b66f99ce750f85351d325a75a1768df4eca224864291a7', 'from': '0x96f463e4b3865b3284a3b1c3c4eb77b8874ee59b', 'to': '0x2e80094302857998bdbe9784d1396e5a8e9ec710', 'value': 820.58823528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2c7bf30c530910a000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:00:55.000Z'}}, {'blockNum': '0x5118ea', 'uniqueId': '0xa99c0fa6d756b10b87bb9bc59b1854d2f58029af9ca056e5a25999145c27cbb5:log:11', 'hash': '0xa99c0fa6d756b10b87bb9bc59b1854d2f58029af9ca056e5a25999145c27cbb5', 'from': '0xcd6081dcdb20b1b65bbb461005635f8c58888619', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1778.09388336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x606402762bb7a6c000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:01:00.000Z'}}, {'blockNum': '0x5118eb', 'uniqueId': '0xec6ef0d44caaa3bc89b29ff9263f2d41713f16e7b0cb931604ace71f603e8c3f:log:1', 'hash': '0xec6ef0d44caaa3bc89b29ff9263f2d41713f16e7b0cb931604ace71f603e8c3f', 'from': '0x516214d38e11cbb56b87ca8adf982a363d3855e7', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 44788.8038174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x097c0183faac22973000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:01:08.000Z'}}, {'blockNum': '0x5118eb', 'uniqueId': '0x57d06a21f8d7a79b457288cf993c17fca6f21cc4a7e7adf2ba3064ebdb404285:log:35', 'hash': '0x57d06a21f8d7a79b457288cf993c17fca6f21cc4a7e7adf2ba3064ebdb404285', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xaec7cb6bf3ba0d752212834229a0134f2a35d4b6', 'value': 122.03349319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x069d8e0f7ec2003c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:01:08.000Z'}}, {'blockNum': '0x5118eb', 'uniqueId': '0xeba2b2c48b6323bd02d0c239da43ea2e3eabcfb68a231193417e207ce1d2129d:log:39', 'hash': '0xeba2b2c48b6323bd02d0c239da43ea2e3eabcfb68a231193417e207ce1d2129d', 'from': '0xe6f4cbed16c5b734e662d25533bbe31812f2894f', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 588.6238329594058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe8cbf169f240d98f', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:01:08.000Z'}}, {'blockNum': '0x5118eb', 'uniqueId': '0xa276b3c91fd15d3628cb90a214427232541ab7c0dc873a439d479ba714e73dbf:log:59', 'hash': '0xa276b3c91fd15d3628cb90a214427232541ab7c0dc873a439d479ba714e73dbf', 'from': '0xfaa0d09424014e0df6bfdb3c7a5a282119fc8863', 'to': '0x85056d6456de0ddf4f8775bb071d4781a294f20b', 'value': 100074.94200076046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x153112cf59ecbb05d4c3', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:01:08.000Z'}}, {'blockNum': '0x5118f1', 'uniqueId': '0x9b9ebbf4228850b1cb31e3ac5e581e4e237049bf5badbedcf283c07907dd1479:log:7', 'hash': '0x9b9ebbf4228850b1cb31e3ac5e581e4e237049bf5badbedcf283c07907dd1479', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf1bb7ab2b554dabf89ec8691183890ca61f49129', 'value': 7311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x018c5481b4a970dc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:02:43.000Z'}}, {'blockNum': '0x5118f2', 'uniqueId': '0xeb896db24f0e67122de080a8e35849512372695b31417a4d51b326cd1e00e48f:log:7', 'hash': '0xeb896db24f0e67122de080a8e35849512372695b31417a4d51b326cd1e00e48f', 'from': '0xba3f1e92b3fe1bcb2c99339f17b53d1e9087019a', 'to': '0x160995b1c36b7e9d16fe5ff9ded75ea340c06422', 'value': 957.08819008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x33e2444e01d7f10000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:02:59.000Z'}}, {'blockNum': '0x5118f3', 'uniqueId': '0x97ab9337b73222706af6634cf0eb3143f5aea8a8c94e632972519b6ac9d867fe:log:25', 'hash': '0x97ab9337b73222706af6634cf0eb3143f5aea8a8c94e632972519b6ac9d867fe', 'from': '0x9109e83d58c2d59219236c98381654317cbb068f', 'to': '0x59fd3e479a907484ecb28b8f3d58519e99f81aca', 'value': 16201.94474162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x036e4f26b4ebd0248800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:03:53.000Z'}}, {'blockNum': '0x5118f4', 'uniqueId': '0x9c85f67f72123180d175d16c6b0ed4e06f7b3d1e91a6bc59bc7de169534afc48:log:2', 'hash': '0x9c85f67f72123180d175d16c6b0ed4e06f7b3d1e91a6bc59bc7de169534afc48', 'from': '0x8a8175cef6a1a7acc947e93b3a37d77e066db7ee', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 14048.03134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02f98b991a11eec2c000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:04:06.000Z'}}, {'blockNum': '0x5118f4', 'uniqueId': '0xf4eb16ca4da80be109177e797f26f97b39e3a23afcc334b43da6a8759687448c:log:9', 'hash': '0xf4eb16ca4da80be109177e797f26f97b39e3a23afcc334b43da6a8759687448c', 'from': '0x7d3a15ae8cb687862920f2bd0cfe2b39b8044081', 'to': '0xb169ec172085dfbcdc7c6d01f92a937cab04620b', 'value': 147313.78869102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1f31e580289453c7f800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:04:06.000Z'}}, {'blockNum': '0x5118f4', 'uniqueId': '0xe516a7ce550c5c69256a61e5fae325ac9a14bc1097d21ba7d940999bd633976d:log:23', 'hash': '0xe516a7ce550c5c69256a61e5fae325ac9a14bc1097d21ba7d940999bd633976d', 'from': '0x4f2a4ccf2dfb651a0e244646abaf8fed4a2604fa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14530.56, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0313b40745cb2c000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:04:06.000Z'}}, {'blockNum': '0x5118f4', 'uniqueId': '0x45e03bf97dcdb748722a51f432732c6f540ceca222c8e1af59f8eddb1c866410:log:24', 'hash': '0x45e03bf97dcdb748722a51f432732c6f540ceca222c8e1af59f8eddb1c866410', 'from': '0x6ee6b33a144a31da249c37f2ef944b620acdd9fb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:04:06.000Z'}}, {'blockNum': '0x5118f4', 'uniqueId': '0x01f13c416dfaf7de90539bf960f54447b7f678a3bc3bc7d3ed9c4e9f884858c2:log:25', 'hash': '0x01f13c416dfaf7de90539bf960f54447b7f678a3bc3bc7d3ed9c4e9f884858c2', 'from': '0xcf651a116af6c2ec0debac2142385c5e7e7426b5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10567.95590027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x023ce3d97bdd92c8cc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:04:06.000Z'}}, {'blockNum': '0x5118f4', 'uniqueId': '0x96b2545b11de7592c4c6e875c7ab7157c94396fb3051c5a242c9062e7e72f597:log:26', 'hash': '0x96b2545b11de7592c4c6e875c7ab7157c94396fb3051c5a242c9062e7e72f597', 'from': '0x85056d6456de0ddf4f8775bb071d4781a294f20b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100074.94200076046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x153112cf59ecbb05d4c3', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:04:06.000Z'}}, {'blockNum': '0x5118f4', 'uniqueId': '0x8633eb685f9c43268c0d8feac1bebcab0e859c8e9242f69cfc1d1714120c5ca6:log:29', 'hash': '0x8633eb685f9c43268c0d8feac1bebcab0e859c8e9242f69cfc1d1714120c5ca6', 'from': '0x0f9153b43f708314ce9b160493d4c16dc1779b32', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17966.95469999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03cdfd95baa296fcdc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:04:06.000Z'}}, {'blockNum': '0x5118f4', 'uniqueId': '0xd151ce9b9165724de42a8ffdee37720fed10ea237c0ce71da26ac33f83259b5d:log:30', 'hash': '0xd151ce9b9165724de42a8ffdee37720fed10ea237c0ce71da26ac33f83259b5d', 'from': '0xf480cae1f9225eeb90bab0c31654fa1b29266d04', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10412.523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x023476c8e496b8b78000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:04:06.000Z'}}, {'blockNum': '0x5118f4', 'uniqueId': '0x4b23129e9c064e6d2194d7a8c867cad3f85238d4e9ce2a6fba59e10e775c5622:log:75', 'hash': '0x4b23129e9c064e6d2194d7a8c867cad3f85238d4e9ce2a6fba59e10e775c5622', 'from': '0x9f17140f67c44a29c35337c21fd818087872183d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 220644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2eb9229cf1fc69100000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:04:06.000Z'}}, {'blockNum': '0x5118f4', 'uniqueId': '0x8e1e125635d63a3b72470fc47979568b3dd87df4eceec6770106557444af6133:log:103', 'hash': '0x8e1e125635d63a3b72470fc47979568b3dd87df4eceec6770106557444af6133', 'from': '0xcb88bd357277fdada51863885da9b58bdf5dbff3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 8117.23975545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01b80954b69a33eac400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:04:06.000Z'}}, {'blockNum': '0x5118f5', 'uniqueId': '0x584ea23ebd35735dc66503c0566f451abcef373a77f71d97ff6dccbf1d13fd86:log:42', 'hash': '0x584ea23ebd35735dc66503c0566f451abcef373a77f71d97ff6dccbf1d13fd86', 'from': '0x7a8c586083ee1b4c84da326cf9b412e5275e9835', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8463.757065321091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01cad2398000b2451d2a', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:04:45.000Z'}}, {'blockNum': '0x5118f7', 'uniqueId': '0x75e3feae2e03bb0e7ffb1943ea36dd2733c0077b134ea28228c429c255ef28a9:log:17', 'hash': '0x75e3feae2e03bb0e7ffb1943ea36dd2733c0077b134ea28228c429c255ef28a9', 'from': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 43592.6492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093b29891ba5584f0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:05:39.000Z'}}, {'blockNum': '0x5118f7', 'uniqueId': '0xdbd9cfa98fdf8c13d6a7233b5996ef8ba6d5977c36510f701449b5eadb4434dd:log:40', 'hash': '0xdbd9cfa98fdf8c13d6a7233b5996ef8ba6d5977c36510f701449b5eadb4434dd', 'from': '0xfebd559ab2c97e676640264c4262278f0834cb27', 'to': '0x60238a9ef41bb0d9d30bc6fc01fc152daf26135a', 'value': 1795.1611813365898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6150ddaf410a08dda1', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:05:39.000Z'}}, {'blockNum': '0x5118ff', 'uniqueId': '0xfaa469465d1a0d949f81121317fa22fe69ebc7042a48bccefab79c820e8707b9:log:19', 'hash': '0xfaa469465d1a0d949f81121317fa22fe69ebc7042a48bccefab79c820e8707b9', 'from': '0xa4dd2e04bac8cbd9aab4877fb2c13f449415fe9f', 'to': '0x15e9ddacfdec790cd89a4c723bc59c42c195c72b', 'value': 49000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a604b9a42df9ca00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:07:16.000Z'}}, {'blockNum': '0x5118ff', 'uniqueId': '0xb6614bfd362bc7aabab5a9f9730f23349e023317edf0ae2c83415219635e8ddf:log:20', 'hash': '0xb6614bfd362bc7aabab5a9f9730f23349e023317edf0ae2c83415219635e8ddf', 'from': '0xba5695f76796c51fbf6ee2fe68c8e8b2151f249f', 'to': '0x6ee6b33a144a31da249c37f2ef944b620acdd9fb', 'value': 20000.000007691473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c19a743400beee', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:07:16.000Z'}}, {'blockNum': '0x5118ff', 'uniqueId': '0xfb4aecebb8204c360b6a44fc2f57fe23b2fd7239d7134b0394be85f1d6c57d89:log:47', 'hash': '0xfb4aecebb8204c360b6a44fc2f57fe23b2fd7239d7134b0394be85f1d6c57d89', 'from': '0xa54749697ec521aa00f650ce8bc918cb1766b7c1', 'to': '0x4ac03d86fe7b0826fb71a715c7ef8fd2c6cea0e7', 'value': 2972.884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa1290da6fc4a620000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:07:16.000Z'}}, {'blockNum': '0x511901', 'uniqueId': '0xf276f10666c98363c12f402dbead49c855da7a69071cb2b74df0fafa62155a61:log:0', 'hash': '0xf276f10666c98363c12f402dbead49c855da7a69071cb2b74df0fafa62155a61', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x89dbb75467a93fc949673f49882dbd8ec9fb0467', 'value': 36301.84465693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07afed4c140fccccd400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:07:24.000Z'}}, {'blockNum': '0x511901', 'uniqueId': '0x73b9427a3bc8542e9ec378b353fb368882d66588ab10d3040e7dd9eb4904b929:log:9', 'hash': '0x73b9427a3bc8542e9ec378b353fb368882d66588ab10d3040e7dd9eb4904b929', 'from': '0xf838f4e2cdb8274667b4a4356a1ca533079df71f', 'to': '0x9708cc1db9d6769ca0209ed37c993cc244b404d0', 'value': 3887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd2b6f611ca975c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:07:24.000Z'}}, {'blockNum': '0x511902', 'uniqueId': '0x5df534806b520c27fbabbb808f4b57f74d8a9ceb11484ae84645ab0e26f33565:log:3', 'hash': '0x5df534806b520c27fbabbb808f4b57f74d8a9ceb11484ae84645ab0e26f33565', 'from': '0x03d6714f3f528b6457d03380e45d07fb60a7224e', 'to': '0x98f95ac8741dfffc66d31dd612e131b25c9c0d4e', 'value': 50000.08, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a9682802838f9480000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:08:19.000Z'}}, {'blockNum': '0x511902', 'uniqueId': '0xbec3dedad38959210362708ef9a79d317ff7c490dca5fb2539b8a81df97dae08:log:58', 'hash': '0xbec3dedad38959210362708ef9a79d317ff7c490dca5fb2539b8a81df97dae08', 'from': '0x0026959e2c16db938310f37a3e5d06a2cebdbe70', 'to': '0xd2a0ff710edc2b1b9ca901f18fb87e86c3086a9b', 'value': 802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2b79fc5ed267480000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:08:19.000Z'}}, {'blockNum': '0x511903', 'uniqueId': '0x3436c9fabbd323306cdc3553fb8f0aeb414647784ac41c28aad5c32f817f5f44:log:16', 'hash': '0x3436c9fabbd323306cdc3553fb8f0aeb414647784ac41c28aad5c32f817f5f44', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb7eb37df22b8e1fb2e72a74890efa348ec204df6', 'value': 4589.05555556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xf8c5f071ec66ad1000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:09:33.000Z'}}, {'blockNum': '0x511905', 'uniqueId': '0xa725d1e8d5e678aba3424e0a89be2eeaee7704a9d02bb25f82ba6e92d9641e53:log:0', 'hash': '0xa725d1e8d5e678aba3424e0a89be2eeaee7704a9d02bb25f82ba6e92d9641e53', 'from': '0x85e3f4b00367a383f0fccfddce109f642127c3ee', 'to': '0x257601ac05a7ba6ce198f65afe3014838f078bf0', 'value': 1171705.976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xf81e4ee877ad850c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:10:12.000Z'}}, {'blockNum': '0x511905', 'uniqueId': '0x96e44b9e4402d97628f1a05e33bd0c65fb4edd00670d6ae8411ebae6110573af:log:108', 'hash': '0x96e44b9e4402d97628f1a05e33bd0c65fb4edd00670d6ae8411ebae6110573af', 'from': '0x04c969e89c22e3c136ae893c28aaeed80270e52c', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:10:12.000Z'}}, {'blockNum': '0x511907', 'uniqueId': '0x7f4f506e1864d880081e50f827449aaf2b5e6fde32463f09ef6373132cb16b60:log:75', 'hash': '0x7f4f506e1864d880081e50f827449aaf2b5e6fde32463f09ef6373132cb16b60', 'from': '0x24323539d064ef3d61c23a7ed092f03666af7ad3', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 14815.259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x032323054de4c8ef8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:10:46.000Z'}}, {'blockNum': '0x511908', 'uniqueId': '0xc6ada935d1b33ad0b75eca14f86f6b734ef82853bf7952c9a85dd2f48898fbb3:log:13', 'hash': '0xc6ada935d1b33ad0b75eca14f86f6b734ef82853bf7952c9a85dd2f48898fbb3', 'from': '0xe5586452a33bea0fcf98708998f49aac78e35023', 'to': '0x45ff1a0a61125e5b1b6abc55241575a62e4f1174', 'value': 9950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021b63fd1aa400b80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:10:50.000Z'}}, {'blockNum': '0x51190a', 'uniqueId': '0xf98d3554aec4d5a2e5d33542c649a4cbc6bfebd8ffa23a322f47b7e3e85b31c2:log:31', 'hash': '0xf98d3554aec4d5a2e5d33542c649a4cbc6bfebd8ffa23a322f47b7e3e85b31c2', 'from': '0xd9117c0f284f2846943deb80ea319ed6985f1b91', 'to': '0x15327493b3626427ef5cb6ad5e961e0d3188067c', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:11:31.000Z'}}, {'blockNum': '0x51190b', 'uniqueId': '0xe0231042697982a97ca473448138d737ab9225140115b61e7547042aecb292d6:log:3', 'hash': '0xe0231042697982a97ca473448138d737ab9225140115b61e7547042aecb292d6', 'from': '0x6020938e946f1f519a0d6fbd647d9842849b383d', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 239.26046765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0cf867efabe0171400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:11:34.000Z'}}, {'blockNum': '0x51190c', 'uniqueId': '0x6923f5236706dcf4e5c15f1864d86ea9494a08661bc3a644e34c08bcd5c6ddb0:log:3', 'hash': '0x6923f5236706dcf4e5c15f1864d86ea9494a08661bc3a644e34c08bcd5c6ddb0', 'from': '0x884dbd166ffae569dcf8b1089a3949eb1b498dac', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1570.60899985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x55249413eba2cc2400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:11:41.000Z'}}, {'blockNum': '0x51190c', 'uniqueId': '0xe8a4f5d0430187d22f5134764e629d26f50cd61e93c5c8305ad87603ab2a8264:log:4', 'hash': '0xe8a4f5d0430187d22f5134764e629d26f50cd61e93c5c8305ad87603ab2a8264', 'from': '0xa5bef50e6d57fe6a76dbcc50f42f6a8b94125c69', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 9910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021938e08e91d9180000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:11:41.000Z'}}, {'blockNum': '0x51190d', 'uniqueId': '0xac62f6882c2052db0bd00ae0b3fd63a36627c51c48e90bd5b9e6d3ef03019eb5:log:18', 'hash': '0xac62f6882c2052db0bd00ae0b3fd63a36627c51c48e90bd5b9e6d3ef03019eb5', 'from': '0xb4c27911cd544c15b81370d746a48dcf013e7ed8', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 13269.99438044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02cf5e2a8d9113fff000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:12:01.000Z'}}, {'blockNum': '0x51190d', 'uniqueId': '0x9ea1c9a86e07a31e118fd41775bb9f099bc87e428567b7e2e6704183b7e6f52b:log:19', 'hash': '0x9ea1c9a86e07a31e118fd41775bb9f099bc87e428567b7e2e6704183b7e6f52b', 'from': '0xec8509b212ce2a0ca95953aee18cc3b2fe793e17', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1061.01495125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x39848a54a9eaa6b400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:12:01.000Z'}}, {'blockNum': '0x51190d', 'uniqueId': '0x1f1af8aaa07672c39bb8a45529dae4882387170357559a95f68f1b3690ff5595:log:20', 'hash': '0x1f1af8aaa07672c39bb8a45529dae4882387170357559a95f68f1b3690ff5595', 'from': '0xb90da587cf558dca480d01b9ee0cff6dfd53047f', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 45680.26717282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x09ac550e0940697d4800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:12:01.000Z'}}, {'blockNum': '0x51190d', 'uniqueId': '0xce71c1f1d18ad3f88a03b24851326b61372044038d79296e0b1b3866e01c0dee:log:70', 'hash': '0xce71c1f1d18ad3f88a03b24851326b61372044038d79296e0b1b3866e01c0dee', 'from': '0x59fd3e479a907484ecb28b8f3d58519e99f81aca', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 16201.94474162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x036e4f26b4ebd0248800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:12:01.000Z'}}, {'blockNum': '0x511911', 'uniqueId': '0x0cb3fed7cda48814cde33c76cdc44000ecfea58e94b40602780a5a69c4620380:log:16', 'hash': '0x0cb3fed7cda48814cde33c76cdc44000ecfea58e94b40602780a5a69c4620380', 'from': '0xcbb6c5b4589afcfe1b8fce3aac69bd00ec91ff14', 'to': '0xe5a2ffa2a052e865def70a9819a52128e4717bf3', 'value': 407.0205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x16108b4c4351e14000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:12:39.000Z'}}, {'blockNum': '0x511914', 'uniqueId': '0x5473e39e007518b70b3118a251f132ec09da151783903745202b8158c5b1282f:log:69', 'hash': '0x5473e39e007518b70b3118a251f132ec09da151783903745202b8158c5b1282f', 'from': '0x15e9ddacfdec790cd89a4c723bc59c42c195c72b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:14:13.000Z'}}, {'blockNum': '0x511914', 'uniqueId': '0x7f25b74e65431294c77ec5264aa6c9414c423950a00a41e22aff17b683f65088:log:71', 'hash': '0x7f25b74e65431294c77ec5264aa6c9414c423950a00a41e22aff17b683f65088', 'from': '0x257601ac05a7ba6ce198f65afe3014838f078bf0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1171705.976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xf81e4ee877ad850c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:14:13.000Z'}}, {'blockNum': '0x511914', 'uniqueId': '0x3cd64d8064265a213cb581c338ce25bcb585f5286a43740a8c351cf932f5f9bb:log:72', 'hash': '0x3cd64d8064265a213cb581c338ce25bcb585f5286a43740a8c351cf932f5f9bb', 'from': '0x98f95ac8741dfffc66d31dd612e131b25c9c0d4e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000.08, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a9682802838f9480000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:14:13.000Z'}}, {'blockNum': '0x511914', 'uniqueId': '0x3377770a29f6b988fa48ce9ecd9b8ad1a102e4697aeb3ff70f4a7f6372763c94:log:73', 'hash': '0x3377770a29f6b988fa48ce9ecd9b8ad1a102e4697aeb3ff70f4a7f6372763c94', 'from': '0x6ee6b33a144a31da249c37f2ef944b620acdd9fb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000.000007691473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c19a743400beee', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:14:13.000Z'}}, {'blockNum': '0x511915', 'uniqueId': '0x5813d10912f96bd75b7065c65c9a64371c0d3a8f6651ade1a608fd3cebdb8225:log:4', 'hash': '0x5813d10912f96bd75b7065c65c9a64371c0d3a8f6651ade1a608fd3cebdb8225', 'from': '0x45ff1a0a61125e5b1b6abc55241575a62e4f1174', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021b63fd1aa400b80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:14:15.000Z'}}, {'blockNum': '0x511915', 'uniqueId': '0xec3913a1d88bcb8ae4e41cde87848afb0f37eddd3f2c1b13e6aa21947a742699:log:24', 'hash': '0xec3913a1d88bcb8ae4e41cde87848afb0f37eddd3f2c1b13e6aa21947a742699', 'from': '0xc9abb7e7fef8141bb1e8142e7c71e4b3811a88f6', 'to': '0xfa3e9ed8f470190605b65980e101bbae77789820', 'value': 1368.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4a2b96daf739740000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:14:15.000Z'}}, {'blockNum': '0x51191b', 'uniqueId': '0xc3e7666962e0264e87d70f373ae266306b1e976b4a0e7756d552cc635e3eec60:log:22', 'hash': '0xc3e7666962e0264e87d70f373ae266306b1e976b4a0e7756d552cc635e3eec60', 'from': '0x66871cfb3aa4f9f2ab402fb6360471c4bc9261f7', 'to': '0xcbee9f120ed80e64bc1320ab085989de7b167ca6', 'value': 1094.82912101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3b59ce64e7c234f400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:15:27.000Z'}}, {'blockNum': '0x51191e', 'uniqueId': '0xea1159cd2ee36a115fff05261fa9e0d0a119be5eb8fa96d104fc1e664b87cd68:log:20', 'hash': '0xea1159cd2ee36a115fff05261fa9e0d0a119be5eb8fa96d104fc1e664b87cd68', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'value': 108929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x17110d8c516c5d640000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:16:04.000Z'}}, {'blockNum': '0x511920', 'uniqueId': '0x998e1b2f5fe0b9392b25d0f73b34586b423ebbec36dc22d2706d0edb156ca3bf:log:8', 'hash': '0x998e1b2f5fe0b9392b25d0f73b34586b423ebbec36dc22d2706d0edb156ca3bf', 'from': '0xfe71f0939bd38df2b74d23a6afab5ecd13a4722a', 'to': '0xa761d9d5998a95458cb50e32d2d79dc693a64acc', 'value': 9500.13922071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x020300ea8f5747dd7c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:16:21.000Z'}}, {'blockNum': '0x511922', 'uniqueId': '0x3a10b8a20fafc860e25524d75c741d345e831425018c794440438b9d69a81635:log:1', 'hash': '0x3a10b8a20fafc860e25524d75c741d345e831425018c794440438b9d69a81635', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xec465ed3f0d265ded60675c86734478aaf8de1ac', 'value': 22619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04ca2daeb366e08c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:16:49.000Z'}}, {'blockNum': '0x511924', 'uniqueId': '0x603314854ce6be108d0cbfbc28bf0ec170b5b2070afcbf6f6bfa1db943d0bd34:log:369', 'hash': '0x603314854ce6be108d0cbfbc28bf0ec170b5b2070afcbf6f6bfa1db943d0bd34', 'from': '0xf1bb7ab2b554dabf89ec8691183890ca61f49129', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 7311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x018c5481b4a970dc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:17:11.000Z'}}, {'blockNum': '0x511926', 'uniqueId': '0xdc4b47752a9d8415803174b7fe00623173bf6247071adec25695b2d0ed6dd4cc:log:40', 'hash': '0xdc4b47752a9d8415803174b7fe00623173bf6247071adec25695b2d0ed6dd4cc', 'from': '0x312faa0884a98417ee4ed58e2b54f813125d5893', 'to': '0xac36ffe62f65edb1a34421445daad02e9c10a698', 'value': 1372.292597997697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4a6462af293ea86240', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:18:03.000Z'}}, {'blockNum': '0x511926', 'uniqueId': '0x80ad8394c1a573fcaa296e00f82bf3fcd190cd68f13b439231108ae01dfa8cd0:log:42', 'hash': '0x80ad8394c1a573fcaa296e00f82bf3fcd190cd68f13b439231108ae01dfa8cd0', 'from': '0x60238a9ef41bb0d9d30bc6fc01fc152daf26135a', 'to': '0xca6c813d4d7272ce494dfeedc7872d1c76132cce', 'value': 1795.1611813365898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6150ddaf410a08dda1', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:18:03.000Z'}}, {'blockNum': '0x511928', 'uniqueId': '0x5bc966b87e21ad232194faea646caed08cfe5b5a9455e433b330efb74a4b49db:log:16', 'hash': '0x5bc966b87e21ad232194faea646caed08cfe5b5a9455e433b330efb74a4b49db', 'from': '0x6f61e39ede4bf21891a8c4c4285c33de47e2252c', 'to': '0xbb0bbd1792d7cff1065b27dce16bf043bcd91251', 'value': 1803.68457746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x61c726dede91d61000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:18:40.000Z'}}, {'blockNum': '0x51192b', 'uniqueId': '0x6399a468a2bdc5b33f57c268b7de2cb6361fe2d29c080071ab0541751a586d8b:log:0', 'hash': '0x6399a468a2bdc5b33f57c268b7de2cb6361fe2d29c080071ab0541751a586d8b', 'from': '0x15327493b3626427ef5cb6ad5e961e0d3188067c', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:18:59.000Z'}}, {'blockNum': '0x51192b', 'uniqueId': '0x474d5638d4b27a2a92b9329422df6f6753a49c58037aadff009a6337c1c130e8:log:11', 'hash': '0x474d5638d4b27a2a92b9329422df6f6753a49c58037aadff009a6337c1c130e8', 'from': '0x6cf55cdba5cc13e68b30359cdec104dd69dd06a7', 'to': '0x034bc43b04a0feef68f89376a83e5b62c863d8fb', 'value': 4470, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xf251b624eccc180000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:18:59.000Z'}}, {'blockNum': '0x51192e', 'uniqueId': '0xc820291af17e4e1870a42280addc340985b972c10ccfadf23226793497c35836:log:23', 'hash': '0xc820291af17e4e1870a42280addc340985b972c10ccfadf23226793497c35836', 'from': '0x73eabcf8e7e89cbf37a5f51900cbf66c8161b8db', 'to': '0xdb1c77cc4d4972cf5912eaaefd93727eecc936d2', 'value': 33000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06fceeff6681b2a00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:19:58.000Z'}}, {'blockNum': '0x511931', 'uniqueId': '0x954611aa3f8fff92ce05c2eb9acdfe8f5a3d18672f49877f13459c00ba5bce56:log:2', 'hash': '0x954611aa3f8fff92ce05c2eb9acdfe8f5a3d18672f49877f13459c00ba5bce56', 'from': '0xa240b406a360ee4c44e6c11ea3991670233bea8b', 'to': '0x3b2ccf3b0b2f6683f7bd936f7bce954f213e204c', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:20:30.000Z'}}, {'blockNum': '0x511931', 'uniqueId': '0xb332f587ebc6b777a893e895aacdac9dfe6557f11e588250cd952ed72571c3a1:log:26', 'hash': '0xb332f587ebc6b777a893e895aacdac9dfe6557f11e588250cd952ed72571c3a1', 'from': '0x92cf304bd5342848e486e3edfa7beffdd03dcfb4', 'to': '0x0a261f9ccb7d58fa8660ebb1eb378aad525004c8', 'value': 682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x24f8a6ba9bf0680000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:20:30.000Z'}}, {'blockNum': '0x511934', 'uniqueId': '0x5507ba50ac607b7cc4989eff6b8430b78ac5e21ca06526e734fa20333bf7c15a:log:55', 'hash': '0x5507ba50ac607b7cc4989eff6b8430b78ac5e21ca06526e734fa20333bf7c15a', 'from': '0xf838f4e2cdb8274667b4a4356a1ca533079df71f', 'to': '0x4964e9156178555262f4e1dacf2544a086af9d79', 'value': 7137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0182e5c5868daae40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:21:38.000Z'}}, {'blockNum': '0x511937', 'uniqueId': '0x6134f186a0450ca87e9055684db8c72c0a6c7360ced1af5a1c90835919ccf960:log:0', 'hash': '0x6134f186a0450ca87e9055684db8c72c0a6c7360ced1af5a1c90835919ccf960', 'from': '0xc8a46f6ce6e480268bae32b52885b9bf01c7493b', 'to': '0xdb6432efe3816260cbfd83c012a8f79f78da7767', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:22:17.000Z'}}, {'blockNum': '0x511937', 'uniqueId': '0xff8c49433da6760fa4d949cadb2d31451695dafc0744f514c19e45bb8c5ac5b1:log:10', 'hash': '0xff8c49433da6760fa4d949cadb2d31451695dafc0744f514c19e45bb8c5ac5b1', 'from': '0x12a6d0e18da6e6deca313183c19a8ec832714b1e', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1215.07362358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x41de88aee8f89a1800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:22:17.000Z'}}, {'blockNum': '0x511937', 'uniqueId': '0x39f86d3dbdf68b1860c5e3671bdf5480211103c8a2d8120a9524c7cfee418a61:log:11', 'hash': '0x39f86d3dbdf68b1860c5e3671bdf5480211103c8a2d8120a9524c7cfee418a61', 'from': '0xde05344cd4e4b100ee7f10598808a6e1444ea396', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1488.46485477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x50b0997330433ef400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:22:17.000Z'}}, {'blockNum': '0x511938', 'uniqueId': '0x584fd313971a6b008a2c1bd9aa19cf2a74f7c8b5fa6cd256ba352a56a45d7f4a:log:5', 'hash': '0x584fd313971a6b008a2c1bd9aa19cf2a74f7c8b5fa6cd256ba352a56a45d7f4a', 'from': '0x29154fd303467ca07c67ded5ef27a86fd712af75', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 25763.87792732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0574a9a18805a3e20000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:22:25.000Z'}}, {'blockNum': '0x511938', 'uniqueId': '0xb8a782b3e2a6c042757700ddbf9acfcb5220ac7d5c437ca839cb2e4993900791:log:6', 'hash': '0xb8a782b3e2a6c042757700ddbf9acfcb5220ac7d5c437ca839cb2e4993900791', 'from': '0x9708cc1db9d6769ca0209ed37c993cc244b404d0', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 3887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd2b6f611ca975c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:22:25.000Z'}}, {'blockNum': '0x511939', 'uniqueId': '0xb081f5ad5654803dcefd30e30aa44af831d156020a48aeb322e4928a80ab7d42:log:10', 'hash': '0xb081f5ad5654803dcefd30e30aa44af831d156020a48aeb322e4928a80ab7d42', 'from': '0x89af64fad4a6987bb775abc7069ebf48cdd035de', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 831.37527137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2d11a64c7efcd56400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:22:34.000Z'}}, {'blockNum': '0x51193d', 'uniqueId': '0x94f71d3fb5ecec4cb93eebfe2fc05f7dfd4af415498a248fdf6f1318deca1f2b:log:0', 'hash': '0x94f71d3fb5ecec4cb93eebfe2fc05f7dfd4af415498a248fdf6f1318deca1f2b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x61850dc4762ad9366f042dd0d17493ad7b316174', 'value': 2992.166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa234a513d339770000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:23:21.000Z'}}, {'blockNum': '0x51193d', 'uniqueId': '0x22776a0b416ba6f05a5148482ef76d48f7e3c6b39b12e0d6526843e540cae4ca:log:1', 'hash': '0x22776a0b416ba6f05a5148482ef76d48f7e3c6b39b12e0d6526843e540cae4ca', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9f17140f67c44a29c35337c21fd818087872183d', 'value': 182870, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x26b9670e713723980000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:23:21.000Z'}}, {'blockNum': '0x51193e', 'uniqueId': '0x4de59b039beef3a5062ccc23cacaeaf76b7d3988692108ea2cf8f27c1e69fab7:log:10', 'hash': '0x4de59b039beef3a5062ccc23cacaeaf76b7d3988692108ea2cf8f27c1e69fab7', 'from': '0x24db60f1ee1fee4b473d0077e4ce0b844d134453', 'to': '0x92bec8f3d3a321977bf8623344b771b046f81c9d', 'value': 15648.63592766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03505072ea2e25a22ac0', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:23:32.000Z'}}, {'blockNum': '0x51193f', 'uniqueId': '0xc082e23385336b3050c4f8d4cbcbc1b0c25bc485df290b8c56e9ba0f265550c6:log:24', 'hash': '0xc082e23385336b3050c4f8d4cbcbc1b0c25bc485df290b8c56e9ba0f265550c6', 'from': '0xa761d9d5998a95458cb50e32d2d79dc693a64acc', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 9500.13922071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x020300ea8f5747dd7c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:23:46.000Z'}}, {'blockNum': '0x51193f', 'uniqueId': '0xee448bdf6406df75a5f1e4fd24d294a34a35ad95da4e794a674d69233ba2b5e2:log:28', 'hash': '0xee448bdf6406df75a5f1e4fd24d294a34a35ad95da4e794a674d69233ba2b5e2', 'from': '0xec465ed3f0d265ded60675c86734478aaf8de1ac', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 22619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04ca2daeb366e08c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:23:46.000Z'}}, {'blockNum': '0x51193f', 'uniqueId': '0xa134b0515e3e791c4456867d4f5bb92a7c23b1347ef7d8d8fbc665f5d2051dfc:log:79', 'hash': '0xa134b0515e3e791c4456867d4f5bb92a7c23b1347ef7d8d8fbc665f5d2051dfc', 'from': '0xd8fdfb5b61b8a5b39b1b678b5bcd89c28ece1f02', 'to': '0x1dcfc3f1f874bad8a409e1f8dbcc34d32bb52de8', 'value': 12080.47795063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x028ee24f42fb9012fc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:23:46.000Z'}}, {'blockNum': '0x511940', 'uniqueId': '0x993679c940b439a47404babd0a6ec5d15811a40127715023cd7cdf307b6510ed:log:31', 'hash': '0x993679c940b439a47404babd0a6ec5d15811a40127715023cd7cdf307b6510ed', 'from': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 108929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x17110d8c516c5d640000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:24:06.000Z'}}, {'blockNum': '0x511940', 'uniqueId': '0x15f45bf12096267b41baa382aadfb9666972b9a56db1c04b1e4a4bcadc2f864c:log:32', 'hash': '0x15f45bf12096267b41baa382aadfb9666972b9a56db1c04b1e4a4bcadc2f864c', 'from': '0xb169ec172085dfbcdc7c6d01f92a937cab04620b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 147313.78869102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1f31e580289453c7f800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:24:06.000Z'}}, {'blockNum': '0x511940', 'uniqueId': '0x4861415f2e7405e64a70274928ca863c308cde96c1e944749f635d70fe6c7faa:log:33', 'hash': '0x4861415f2e7405e64a70274928ca863c308cde96c1e944749f635d70fe6c7faa', 'from': '0xdb1c77cc4d4972cf5912eaaefd93727eecc936d2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33541.89234928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x071a4f43c31baaedc000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:24:06.000Z'}}, {'blockNum': '0x511945', 'uniqueId': '0x3e2bd29bbe49e6b75ca7bf770a6d93288cdb8a6210693fc3512d0420de6bc61b:log:75', 'hash': '0x3e2bd29bbe49e6b75ca7bf770a6d93288cdb8a6210693fc3512d0420de6bc61b', 'from': '0xf838f4e2cdb8274667b4a4356a1ca533079df71f', 'to': '0x1de453ba8afb60703b62d4f0eb075e28f4005fba', 'value': 4824.64829204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01058b71fb873749d000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:25:23.000Z'}}, {'blockNum': '0x511945', 'uniqueId': '0xa722daba2f8c9676d4185f1f9897a373e0ceca166ef0aba79d33dc1096523477:log:76', 'hash': '0xa722daba2f8c9676d4185f1f9897a373e0ceca166ef0aba79d33dc1096523477', 'from': '0xca6c813d4d7272ce494dfeedc7872d1c76132cce', 'to': '0xd5bc4c9aa43d6a710c5a1fbd5a38c46e86b2c814', 'value': 165.40982295144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08f785bd9874d62400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:25:23.000Z'}}, {'blockNum': '0x511946', 'uniqueId': '0x49acd72217ae640c7f9d0fae5bca5bd755f9b3176e9bd4f549b57a4574b361e0:log:1', 'hash': '0x49acd72217ae640c7f9d0fae5bca5bd755f9b3176e9bd4f549b57a4574b361e0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0ed07743031fd648563b5ab5765c01c8834e29cd', 'value': 7571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x019a6cbb431f726c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:25:34.000Z'}}, {'blockNum': '0x511948', 'uniqueId': '0xf133b5ed3e9f79fbd5f36b9f112b7d6715fe62d61488a27592d850a42349ea3b:log:104', 'hash': '0xf133b5ed3e9f79fbd5f36b9f112b7d6715fe62d61488a27592d850a42349ea3b', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x24c639aaa70e70e1a624ff9c7511a24cc8827f23', 'value': 1452.9737942918327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4ec40fdfb92c2e084f', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:26:04.000Z'}}, {'blockNum': '0x51194a', 'uniqueId': '0xe4dd02c32aa6ae41bf85222b1eb6fb93af86a8d83c2e340b34be7edc3db69053:log:30', 'hash': '0xe4dd02c32aa6ae41bf85222b1eb6fb93af86a8d83c2e340b34be7edc3db69053', 'from': '0x505ddbdbc45cce3c3777aad2c8baf70b9a62157f', 'to': '0x58cbb922823183989fcad84fc7bde32fb25f547f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:26:41.000Z'}}, {'blockNum': '0x51194f', 'uniqueId': '0x3327aa1117bfc29037f550bd65b56d97d80cec0e3844e74ca24292ffd3c98262:log:20', 'hash': '0x3327aa1117bfc29037f550bd65b56d97d80cec0e3844e74ca24292ffd3c98262', 'from': '0x8a5b30a476c9b615d629676582012cdd0c4945a2', 'to': '0x0e8231ec9eb0a3bfdd6db1f15c3746e43695614f', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:27:10.000Z'}}, {'blockNum': '0x511950', 'uniqueId': '0x6ff18df071804abfab8996bc5ee07ab0c04ad3412769c71e91dd326183836bda:log:5', 'hash': '0x6ff18df071804abfab8996bc5ee07ab0c04ad3412769c71e91dd326183836bda', 'from': '0x081dfeb7bc3be7bf3be0a8155e0118fae33b45f2', 'to': '0x753de24f78c8289bf138f35ecd479e55f8264351', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:27:38.000Z'}}, {'blockNum': '0x511950', 'uniqueId': '0xfc2911fa25a6a703dc950448c6e97a18af46cc1f02cd3e0c9fab816f5e257051:log:16', 'hash': '0xfc2911fa25a6a703dc950448c6e97a18af46cc1f02cd3e0c9fab816f5e257051', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x5d0de0ec00b9084c4cb485a55ad555b1add3e40e', 'value': 6865.5310381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01742e6208027156c800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:27:38.000Z'}}, {'blockNum': '0x511950', 'uniqueId': '0xf7a9e4e83703874994f576648e156fd7620e1bb2684ad567d875878359e8853e:log:34', 'hash': '0xf7a9e4e83703874994f576648e156fd7620e1bb2684ad567d875878359e8853e', 'from': '0x3e58f7912cb547f3e8144b70f08f93e550125668', 'to': '0x56e2d5e471d2fc33ae157f708ecfa64321aba74e', 'value': 750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x28a857425466f80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:27:38.000Z'}}, {'blockNum': '0x511951', 'uniqueId': '0x926e8dd6dfde71a7843e897c490e9afdd1048df83a9fa17ea29e03266065215e:log:2', 'hash': '0x926e8dd6dfde71a7843e897c490e9afdd1048df83a9fa17ea29e03266065215e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4286fc0802cf227f6db1eb4b97e57ea5f4ac45aa', 'value': 1492.445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x50e7d5c42fffdc8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:27:44.000Z'}}, {'blockNum': '0x511951', 'uniqueId': '0xb627ab2c0889dcf84a39077d3c2190d08663d9f35f5dd416b3273b73e4bbb17a:log:6', 'hash': '0xb627ab2c0889dcf84a39077d3c2190d08663d9f35f5dd416b3273b73e4bbb17a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xffc1e830d90b28ae23a07f97ad1e3f78fbb4ffb4', 'value': 52214.60509441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b0e8f35c08819b7e400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:27:44.000Z'}}, {'blockNum': '0x511958', 'uniqueId': '0x67957cd8242fe927d992139ecb2aa611d9983cf69d40054fc8f5e55ea101a016:log:44', 'hash': '0x67957cd8242fe927d992139ecb2aa611d9983cf69d40054fc8f5e55ea101a016', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1920b4fcd44c11937ec2c0018c0794b51e976c48', 'value': 19886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043605b03774d9f80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:29:54.000Z'}}, {'blockNum': '0x511958', 'uniqueId': '0x1f778958cadebbfcf1ec8b5180d73f089e6e02ce67810e4f02e3c634b13203c7:log:45', 'hash': '0x1f778958cadebbfcf1ec8b5180d73f089e6e02ce67810e4f02e3c634b13203c7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'value': 43575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093a349a8dc15e7c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:29:54.000Z'}}, {'blockNum': '0x511959', 'uniqueId': '0x7d8971ea7f83737ce38570f7859cc2bc2882e425505daf14ebf6573208c1c810:log:3', 'hash': '0x7d8971ea7f83737ce38570f7859cc2bc2882e425505daf14ebf6573208c1c810', 'from': '0x06ed0da72219d0167b814c3063c241a2e9ad18ae', 'to': '0x7c641125d5059558aca0adf93539322b3d974b69', 'value': 18837.43855063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03fd2df99cc566607c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:30:00.000Z'}}, {'blockNum': '0x51195b', 'uniqueId': '0x81e92b30b76136077e7395474743564da97ddf12c4665629fa3f47f249b2140b:log:3', 'hash': '0x81e92b30b76136077e7395474743564da97ddf12c4665629fa3f47f249b2140b', 'from': '0x2ea556f52967bd826371d1926655a831a33c22eb', 'to': '0xda16b909a1ae6e080e1cd2b3a9431b3c560aeea7', 'value': 7536.56828811, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01988ee53f95fe60cc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:30:21.000Z'}}, {'blockNum': '0x51195b', 'uniqueId': '0xc05a5626d6f3d3a5161e1687f3b6f015f2a24b68c27aad86796ec1c6a8889049:log:14', 'hash': '0xc05a5626d6f3d3a5161e1687f3b6f015f2a24b68c27aad86796ec1c6a8889049', 'from': '0xec11709586c0f6bb57d502042a58eb78461ec4cf', 'to': '0xf29772d1ca4472a0235c280daa96d0908107ccf6', 'value': 310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x10ce1d3d8cb3180000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:30:21.000Z'}}, {'blockNum': '0x51195d', 'uniqueId': '0xaee232d268ece9afcef962e0f234564513bc2a56411f2de39087b695c7cad52d:log:11', 'hash': '0xaee232d268ece9afcef962e0f234564513bc2a56411f2de39087b695c7cad52d', 'from': '0x9f17140f67c44a29c35337c21fd818087872183d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 182870, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x26b9670e713723980000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:31:49.000Z'}}, {'blockNum': '0x51195d', 'uniqueId': '0x70d8faee2bed93e30271883532a8bd64a8d737acb686c693d3ab5049839208c5:log:20', 'hash': '0x70d8faee2bed93e30271883532a8bd64a8d737acb686c693d3ab5049839208c5', 'from': '0x1bf2d3e5bfdbba20502bf9b0ea0360a9b93a0d68', 'to': '0x2e9aa1eadabf165b0d1a289e09567a1fdfadff4d', 'value': 83486.9240158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x11add5d0f3b06b913000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:31:49.000Z'}}, {'blockNum': '0x51195f', 'uniqueId': '0x5e68c18ca1968055d9645580e12ddbfa0fb45e223dfa8601c876934cbe89e5e8:log:25', 'hash': '0x5e68c18ca1968055d9645580e12ddbfa0fb45e223dfa8601c876934cbe89e5e8', 'from': '0x2dc420af29cbb5e33a7deba7d7da01f38dd7ea18', 'to': '0xab9bf0750cd28668d3f97509efb61cda59495409', 'value': 8902.90172582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01e2a094be09d13de400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:32:04.000Z'}}, {'blockNum': '0x511960', 'uniqueId': '0xb9d194cc72dcb762cdf3fa220666d987a4befc2ceb24ec622fc89af5b71fb0ba:log:32', 'hash': '0xb9d194cc72dcb762cdf3fa220666d987a4befc2ceb24ec622fc89af5b71fb0ba', 'from': '0xcbee9f120ed80e64bc1320ab085989de7b167ca6', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1094.82912101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3b59ce64e7c234f400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:32:36.000Z'}}, {'blockNum': '0x511960', 'uniqueId': '0x953700f2c1d1b7fd07b81601aa12b3787f33735dc9a9cf201c69da0921a7e20b:log:61', 'hash': '0x953700f2c1d1b7fd07b81601aa12b3787f33735dc9a9cf201c69da0921a7e20b', 'from': '0xb2de8e68a968f7da0b0396e3ac823b58c51bed2d', 'to': '0xaf811eeecf5657c30adb6aba56f2f39d7dae4659', 'value': 32117.1505356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06cd1300082bf8c0e000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:32:36.000Z'}}, {'blockNum': '0x511960', 'uniqueId': '0xf06b2c9264c1280b6cef8cf517f4d6cc1a79c4d015bf59d0ca160507834cc651:log:62', 'hash': '0xf06b2c9264c1280b6cef8cf517f4d6cc1a79c4d015bf59d0ca160507834cc651', 'from': '0xa06f8516027b85e62d7720606f939b9a36b994d2', 'to': '0x74b2a5d9197e24ab50ef926b5b11ffb92c765775', 'value': 440.5494317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x17e1d9fe000eb6c800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:32:36.000Z'}}, {'blockNum': '0x511961', 'uniqueId': '0x49645c14f0d97900fe356d83b047fdd57e8dfc24a2f216c90f21196c82fb8340:log:19', 'hash': '0x49645c14f0d97900fe356d83b047fdd57e8dfc24a2f216c90f21196c82fb8340', 'from': '0x4964e9156178555262f4e1dacf2544a086af9d79', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 7137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0182e5c5868daae40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:32:55.000Z'}}, {'blockNum': '0x511962', 'uniqueId': '0x5e22c89883b55aecd2df7a8218d3dbe7ecff5161ce4ad004156c2c6a14828e12:log:47', 'hash': '0x5e22c89883b55aecd2df7a8218d3dbe7ecff5161ce4ad004156c2c6a14828e12', 'from': '0x0a261f9ccb7d58fa8660ebb1eb378aad525004c8', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x24f8a6ba9bf0680000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:33:25.000Z'}}, {'blockNum': '0x511962', 'uniqueId': '0x572715327d78ac737eb0f9f7875666bf3098f5a9951aefb1dc4355201c288263:log:48', 'hash': '0x572715327d78ac737eb0f9f7875666bf3098f5a9951aefb1dc4355201c288263', 'from': '0xbb0bbd1792d7cff1065b27dce16bf043bcd91251', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1803.68457746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x61c726dede91d61000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:33:25.000Z'}}, {'blockNum': '0x511965', 'uniqueId': '0xd7cbd9f398dd8366228a9164e4a925b6f8f9f42e48d28f56b3e4eeca07353fc9:log:0', 'hash': '0xd7cbd9f398dd8366228a9164e4a925b6f8f9f42e48d28f56b3e4eeca07353fc9', 'from': '0xe06de01d22974a5e57546ac35eb8e92e8e94f2f6', 'to': '0x018e5f45c6c2ed98ab64b4120a42c72997ac96bf', 'value': 5600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x012f939c99edab800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:33:46.000Z'}}, {'blockNum': '0x511967', 'uniqueId': '0x70e7476c45542cbc9ed1d6f169992b22c17f7c96368829e61efa6e034c024b65:log:11', 'hash': '0x70e7476c45542cbc9ed1d6f169992b22c17f7c96368829e61efa6e034c024b65', 'from': '0x1dcfc3f1f874bad8a409e1f8dbcc34d32bb52de8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12080.47795063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x028ee24f42fb9012fc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:34:05.000Z'}}, {'blockNum': '0x511967', 'uniqueId': '0x963483a45737aa2b230f14182eac8e995d13bc1e3a579f6a6def68aa85b2cdaf:log:12', 'hash': '0x963483a45737aa2b230f14182eac8e995d13bc1e3a579f6a6def68aa85b2cdaf', 'from': '0xdb6432efe3816260cbfd83c012a8f79f78da7767', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:34:05.000Z'}}, {'blockNum': '0x511967', 'uniqueId': '0x77b8b216b9121593a3cee85e5ea868f88df92d71c84e56cd40cb2dc2a136dd90:log:13', 'hash': '0x77b8b216b9121593a3cee85e5ea868f88df92d71c84e56cd40cb2dc2a136dd90', 'from': '0x7c641125d5059558aca0adf93539322b3d974b69', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18837.43855063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03fd2df99cc566607c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:34:05.000Z'}}, {'blockNum': '0x511968', 'uniqueId': '0x23dba0302b33367171e70187671d49a27b0e6da715973b059b55104438096d7c:log:0', 'hash': '0x23dba0302b33367171e70187671d49a27b0e6da715973b059b55104438096d7c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2f13865b65f4301bc2b04a5d4ead042c4f2df458', 'value': 10505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02397a29321fe6840000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:34:28.000Z'}}, {'blockNum': '0x511968', 'uniqueId': '0x5287f9d03081bbe3c77340e510a20acde852d0279c22fa4fb89c8469bd052259:log:2', 'hash': '0x5287f9d03081bbe3c77340e510a20acde852d0279c22fa4fb89c8469bd052259', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8a037a43e603ceda4a8c7809ef48d7d896244dad', 'value': 14223.701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x030311811b1a30688000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:34:28.000Z'}}, {'blockNum': '0x51196a', 'uniqueId': '0xa13a568fad27fcf49f61d23c065921b64d0b8d9dfb867de216bd17fe814680e9:log:2', 'hash': '0xa13a568fad27fcf49f61d23c065921b64d0b8d9dfb867de216bd17fe814680e9', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xf257097ea6ded537f0a3e29338b3ab9a5c8ab178', 'value': 1559.35430967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x54886362d4e6d1fc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:34:46.000Z'}}, {'blockNum': '0x51196b', 'uniqueId': '0xd46768c10ce8264719f16139097ac472a1950660c4a352fd71a0bf505f23c597:log:24', 'hash': '0xd46768c10ce8264719f16139097ac472a1950660c4a352fd71a0bf505f23c597', 'from': '0x4286fc0802cf227f6db1eb4b97e57ea5f4ac45aa', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1492.445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x50e7d5c42fffdc8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:35:35.000Z'}}, {'blockNum': '0x51196b', 'uniqueId': '0x0ff7e8ec4c1df8472f9293486e4e624ad426c22f5004fba9610a3c1d1b74edf6:log:26', 'hash': '0x0ff7e8ec4c1df8472f9293486e4e624ad426c22f5004fba9610a3c1d1b74edf6', 'from': '0xffc1e830d90b28ae23a07f97ad1e3f78fbb4ffb4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 52214.60509441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b0e8f35c08819b7e400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:35:35.000Z'}}, {'blockNum': '0x51196b', 'uniqueId': '0x67356e886c45f1096ca7bb4cd81cde7f8d728ddd37f821aca0d170e4cb2555e6:log:29', 'hash': '0x67356e886c45f1096ca7bb4cd81cde7f8d728ddd37f821aca0d170e4cb2555e6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5faf86f26f518e6c23920c36150b597d131dffcc', 'value': 1471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4fbe39d24ed79c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:35:35.000Z'}}, {'blockNum': '0x51196b', 'uniqueId': '0x7008c3383e3b39deb45f2c0b0a4c27d807da7fb3a04a91ea90848acc2cb72351:log:52', 'hash': '0x7008c3383e3b39deb45f2c0b0a4c27d807da7fb3a04a91ea90848acc2cb72351', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xf257097ea6ded537f0a3e29338b3ab9a5c8ab178', 'value': 605.19829534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x20ced043223ca4b800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:35:35.000Z'}}, {'blockNum': '0x51196b', 'uniqueId': '0xb186d750230e0bc9d8f84805ef1e967acf912b6f594e82e5a067d74570a53439:log:134', 'hash': '0xb186d750230e0bc9d8f84805ef1e967acf912b6f594e82e5a067d74570a53439', 'from': '0x74bdb3250a1e9371e2282e44581f0fec1552a2ad', 'to': '0xe8974e0ac1ed333ccb59f7aa746f18dada21a272', 'value': 56641.23892395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0bfe87184f2fe4794c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:35:35.000Z'}}, {'blockNum': '0x511970', 'uniqueId': '0xd7aa9658fecbe1d09d000069695dc1e1e93548eceea62e826593ea6c23fc7935:log:58', 'hash': '0xd7aa9658fecbe1d09d000069695dc1e1e93548eceea62e826593ea6c23fc7935', 'from': '0x74bdb3250a1e9371e2282e44581f0fec1552a2ad', 'to': '0x115affcec1e09f49e5fb7e02622f611bdc906c04', 'value': 56461.0454446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf4c268786c9a09b000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:36:38.000Z'}}, {'blockNum': '0x511971', 'uniqueId': '0x41ad8fe97cf62c408ca26d3e79e99a920290cedc23135f0ed9f9d0845c27a14e:log:16', 'hash': '0x41ad8fe97cf62c408ca26d3e79e99a920290cedc23135f0ed9f9d0845c27a14e', 'from': '0x1920b4fcd44c11937ec2c0018c0794b51e976c48', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 19886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043605b03774d9f80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:37:17.000Z'}}, {'blockNum': '0x511971', 'uniqueId': '0xc6a9bf71a1b849a0cd8f1c328b08e3d8340a3f3fb7339d0802614f28c2f50c31:log:18', 'hash': '0xc6a9bf71a1b849a0cd8f1c328b08e3d8340a3f3fb7339d0802614f28c2f50c31', 'from': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 43575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093a349a8dc15e7c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:37:17.000Z'}}, {'blockNum': '0x511971', 'uniqueId': '0xa3afa11fa466a535013b3710973db358370e1e42b684252ed3b065f8a5b6b2a4:log:24', 'hash': '0xa3afa11fa466a535013b3710973db358370e1e42b684252ed3b065f8a5b6b2a4', 'from': '0x66de23db1fd0b1078ed77f1d79986c33ccda802d', 'to': '0xca585ba96b6707b122e73dd405f91d559159dcd6', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:37:17.000Z'}}, {'blockNum': '0x511973', 'uniqueId': '0x93200028bbdb246e872ca5eeffe8c8bf644065376a624d7f5b9c365e06f2ecdd:log:1', 'hash': '0x93200028bbdb246e872ca5eeffe8c8bf644065376a624d7f5b9c365e06f2ecdd', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9120483c4b01199b676cbea0ce5dee99a08c38e1', 'value': 9664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x020be2f0fdeeff000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:37:31.000Z'}}, {'blockNum': '0x511975', 'uniqueId': '0x8d66b7bd50bcc68144d34bcdf5dad27199522c9be9bcccefc587c1712ebd1200:log:18', 'hash': '0x8d66b7bd50bcc68144d34bcdf5dad27199522c9be9bcccefc587c1712ebd1200', 'from': '0x46540bd6447f381385da9a5721bc6fdfd0fc2127', 'to': '0x21b99415819af104e64186b8b1cfd7d5d069a465', 'value': 4040.35833781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xdb073c558094c43400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:38:26.000Z'}}, {'blockNum': '0x511977', 'uniqueId': '0x68e554e0717d53664fdd560c7cf322ca61f66c2cc3ff7df9661a009be9a93ca6:log:24', 'hash': '0x68e554e0717d53664fdd560c7cf322ca61f66c2cc3ff7df9661a009be9a93ca6', 'from': '0x74bdb3250a1e9371e2282e44581f0fec1552a2ad', 'to': '0x28934b1cac39223b4bec7d746e601ee2858026bf', 'value': 13612.14653628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02e1ea7b3280dd4b7000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:39:05.000Z'}}, {'blockNum': '0x511979', 'uniqueId': '0x95d294e3d1f27241962d473fa90e05cde893913d03f3793f5ffb75c33e18da1a:log:28', 'hash': '0x95d294e3d1f27241962d473fa90e05cde893913d03f3793f5ffb75c33e18da1a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 1188391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xfba6ce2176a1c83c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:39:47.000Z'}}, {'blockNum': '0x511979', 'uniqueId': '0x5a7a84938680e5f32de738504d098c386ac5023fd570ec28b2fe1936d7a731a1:log:35', 'hash': '0x5a7a84938680e5f32de738504d098c386ac5023fd570ec28b2fe1936d7a731a1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfa2eb971f7eeb0addf86dd77f32c224c243a5cc5', 'value': 5175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0118898d49acc67c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:39:47.000Z'}}, {'blockNum': '0x511980', 'uniqueId': '0x795279cf9fb89c9c35d4499e6d4f2cdb7ae18d1418beeac4b2167bf4cb650a4c:log:7', 'hash': '0x795279cf9fb89c9c35d4499e6d4f2cdb7ae18d1418beeac4b2167bf4cb650a4c', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xd12f1a987691cc0f7a726ce3a27e5b034de3177f', 'value': 502.97570702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1b4430aca7ba0c7800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:41:30.000Z'}}, {'blockNum': '0x511981', 'uniqueId': '0xd10ec3887b70ad263b830d19b34def20d4f11163b5b043b0f25e2a26b7511cdd:log:67', 'hash': '0xd10ec3887b70ad263b830d19b34def20d4f11163b5b043b0f25e2a26b7511cdd', 'from': '0xc4e41875414ecee3a9345a5618ec8412cc6ebf75', 'to': '0x87ffd6b78bfcf93b9e4a146de9cf4e4128c02a19', 'value': 423.70044531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x16f8065e25f55f6c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:42:05.000Z'}}, {'blockNum': '0x511981', 'uniqueId': '0x483048cb8d3699d5fec238b94ad5ec99fa230384e2dd72a0d1474148e7d718a4:log:132', 'hash': '0x483048cb8d3699d5fec238b94ad5ec99fa230384e2dd72a0d1474148e7d718a4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8a037a43e603ceda4a8c7809ef48d7d896244dad', 'value': 88389.461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x12b79a2f28109b688000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:42:05.000Z'}}, {'blockNum': '0x511982', 'uniqueId': '0x1eb0b2fab8bf000f51bd53f38e9e36a87bf904c95f48167fbed4382fde92c5c6:log:31', 'hash': '0x1eb0b2fab8bf000f51bd53f38e9e36a87bf904c95f48167fbed4382fde92c5c6', 'from': '0x2f13865b65f4301bc2b04a5d4ead042c4f2df458', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 10505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02397a29321fe6840000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:42:10.000Z'}}, {'blockNum': '0x511982', 'uniqueId': '0x6de48dbb9c1c60f7dbf095703076e8ede44cb280ec4c7f9f277d65c872f12b32:log:33', 'hash': '0x6de48dbb9c1c60f7dbf095703076e8ede44cb280ec4c7f9f277d65c872f12b32', 'from': '0x8a037a43e603ceda4a8c7809ef48d7d896244dad', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 14223.701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x030311811b1a30688000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:42:10.000Z'}}, {'blockNum': '0x511982', 'uniqueId': '0x44d0006331d538ede92353c7c22f677bf57172b70f5af3fd3e6548e0efdd95cf:log:37', 'hash': '0x44d0006331d538ede92353c7c22f677bf57172b70f5af3fd3e6548e0efdd95cf', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xeee8e79dc6bb97ac71e102689a52eff9a469a2ac', 'value': 119945.10242823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x19663cae1a161ca33c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:42:10.000Z'}}, {'blockNum': '0x51198a', 'uniqueId': '0x8f746fdd607f1a8df075c16c72c80c8968800510d11abb85654c36a8ef7791f9:log:10', 'hash': '0x8f746fdd607f1a8df075c16c72c80c8968800510d11abb85654c36a8ef7791f9', 'from': '0x4929f4d38f2955649b5aa34343da04cf790b9d92', 'to': '0x03ca8f7a6791bf83e1106124d6e2ad6426be2cc3', 'value': 1949.7115238457363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x69b1aeccec5eaa5f77', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:43:21.000Z'}}, {'blockNum': '0x51198c', 'uniqueId': '0x301087338708bf331ce9525248a3095730df02d0827bdc6a3147f8d94dd7680b:log:16', 'hash': '0x301087338708bf331ce9525248a3095730df02d0827bdc6a3147f8d94dd7680b', 'from': '0x1de453ba8afb60703b62d4f0eb075e28f4005fba', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 4824.64829204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01058b71fb873749d000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:43:48.000Z'}}, {'blockNum': '0x51198c', 'uniqueId': '0x12b68fbdb5f2e6a38a96e474274c9af85dc942c8d1d449756a794ca7e3e99045:log:17', 'hash': '0x12b68fbdb5f2e6a38a96e474274c9af85dc942c8d1d449756a794ca7e3e99045', 'from': '0xab9bf0750cd28668d3f97509efb61cda59495409', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 8902.90172582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01e2a094be09d13de400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:43:48.000Z'}}, {'blockNum': '0x51198c', 'uniqueId': '0x021ebcf18f962d88038e8c21043495806a3c7d0167181e6012fd8958429b1b1b:log:18', 'hash': '0x021ebcf18f962d88038e8c21043495806a3c7d0167181e6012fd8958429b1b1b', 'from': '0xaf811eeecf5657c30adb6aba56f2f39d7dae4659', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 32117.1505356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06cd1300082bf8c0e000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:43:48.000Z'}}, {'blockNum': '0x51198c', 'uniqueId': '0xf804359a06e7efa7f3926c6cc746940ba168b6d5879e27a13837585cb58f64fc:log:19', 'hash': '0xf804359a06e7efa7f3926c6cc746940ba168b6d5879e27a13837585cb58f64fc', 'from': '0x74b2a5d9197e24ab50ef926b5b11ffb92c765775', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 440.5494317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x17e1d9fe000eb6c800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:43:48.000Z'}}, {'blockNum': '0x51198c', 'uniqueId': '0x8053df7ddfcda17c4a22da2a4be3656c6fb16bda778326250e9b4c3672763458:log:20', 'hash': '0x8053df7ddfcda17c4a22da2a4be3656c6fb16bda778326250e9b4c3672763458', 'from': '0x92bec8f3d3a321977bf8623344b771b046f81c9d', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 15648.63592766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03505072ea2e25a22ac0', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:43:48.000Z'}}, {'blockNum': '0x51198f', 'uniqueId': '0x89383431e5231ff03f3f71a65b034dbfac7933a21cc31272cd9f13f054d33268:log:19', 'hash': '0x89383431e5231ff03f3f71a65b034dbfac7933a21cc31272cd9f13f054d33268', 'from': '0x2e9aa1eadabf165b0d1a289e09567a1fdfadff4d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 83486.9240158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x11add5d0f3b06b913000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:44:05.000Z'}}, {'blockNum': '0x51198f', 'uniqueId': '0xba89bb5111d4183371b9abe996a3d3089ef6b88f23d0876b570d2bb082ca3b42:log:24', 'hash': '0xba89bb5111d4183371b9abe996a3d3089ef6b88f23d0876b570d2bb082ca3b42', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x834b8c36ca6e573933f76adc576a28ce77f200b1', 'value': 12416.4216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02a11876dc2dcf4e0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:44:05.000Z'}}, {'blockNum': '0x51198f', 'uniqueId': '0xd6340c05441a7c549cb1a0e881c55e425d2fc7873d1565f3f91b4bb866d7648c:log:25', 'hash': '0xd6340c05441a7c549cb1a0e881c55e425d2fc7873d1565f3f91b4bb866d7648c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8a037a43e603ceda4a8c7809ef48d7d896244dad', 'value': 9625.304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0209c9ed2ef42a7c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:44:05.000Z'}}, {'blockNum': '0x511990', 'uniqueId': '0x82a5569995275e7a61e635661dd6f5265c82a3a06cb9f91f47a7ce5ccb9246cc:log:1', 'hash': '0x82a5569995275e7a61e635661dd6f5265c82a3a06cb9f91f47a7ce5ccb9246cc', 'from': '0x8a037a43e603ceda4a8c7809ef48d7d896244dad', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 88389.461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x12b79a2f28109b688000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:44:13.000Z'}}, {'blockNum': '0x511990', 'uniqueId': '0x67a9c1769932b2ff4093dd1ea326a404fa35d4c27ed1b3a89eaf4c837cb64bf3:log:15', 'hash': '0x67a9c1769932b2ff4093dd1ea326a404fa35d4c27ed1b3a89eaf4c837cb64bf3', 'from': '0x9120483c4b01199b676cbea0ce5dee99a08c38e1', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 9664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x020be2f0fdeeff000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:44:13.000Z'}}, {'blockNum': '0x511992', 'uniqueId': '0x7b9fab288c72c3e6f9084e2feda17b88373c12e334c62164f4b16862f7525c15:log:6', 'hash': '0x7b9fab288c72c3e6f9084e2feda17b88373c12e334c62164f4b16862f7525c15', 'from': '0x7eae60e789d217a768609b06764fd2763d381e87', 'to': '0x29c0b6699e53ab4a955767a3380b9b0102316fab', 'value': 7646.78251086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x019e886cd33cafe77800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:44:48.000Z'}}, {'blockNum': '0x511993', 'uniqueId': '0xba829aa13a41d1fc8b6ec1af2ba88c945b1eb5b2be33a4edb4a23ac53155af42:log:28', 'hash': '0xba829aa13a41d1fc8b6ec1af2ba88c945b1eb5b2be33a4edb4a23ac53155af42', 'from': '0x7eae60e789d217a768609b06764fd2763d381e87', 'to': '0xe2302b6a2189363e77cae3fdb9cac5c22974e1c8', 'value': 7646.782510860002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x019e886cd33cb005fc80', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:45:13.000Z'}}, {'blockNum': '0x511994', 'uniqueId': '0xd33a7833c3b9952cfcd88eb3a2b22f776f20903ac535aec1853b737872b0cff0:log:6', 'hash': '0xd33a7833c3b9952cfcd88eb3a2b22f776f20903ac535aec1853b737872b0cff0', 'from': '0x24c639aaa70e70e1a624ff9c7511a24cc8827f23', 'to': '0x57bcc3cd76621cbad3937ab78c49900b10fef531', 'value': 1452.9737942918327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4ec40fdfb92c2e084f', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:45:30.000Z'}}, {'blockNum': '0x511997', 'uniqueId': '0xab85f37a88cd2fbb4cc2ba4cba12ce96c3ee960ab886171d63d5055a49c4d61e:log:49', 'hash': '0xab85f37a88cd2fbb4cc2ba4cba12ce96c3ee960ab886171d63d5055a49c4d61e', 'from': '0xaf191ae59462b9bcce42941b74dab2d5bf3cbd53', 'to': '0x0c0657a4a9b53c24c40fd8b4858a27dec79d16e4', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:46:03.000Z'}}, {'blockNum': '0x511999', 'uniqueId': '0x68765e1f3fcb661181a83fcda5f492a6affe5dcde5a295f9718d6966b509609e:log:8', 'hash': '0x68765e1f3fcb661181a83fcda5f492a6affe5dcde5a295f9718d6966b509609e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6d63e9984362d3418dc8708ae1ee57dbb2728273', 'value': 10443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02361dbcf29d5c4c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:46:25.000Z'}}, {'blockNum': '0x511999', 'uniqueId': '0x6778892bf7391ae471c936b191380f0d4eca90e22c5ba213a911a347e56f054a:log:14', 'hash': '0x6778892bf7391ae471c936b191380f0d4eca90e22c5ba213a911a347e56f054a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc47da9edb9b94b48e28b4d2836f5e8f7cde7ed20', 'value': 18388.391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03e4d6303ca105fd8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:46:25.000Z'}}, {'blockNum': '0x51199a', 'uniqueId': '0x24fc2ba1015a4ce2597486cf0a9aa3ba7cb5af84e58a43478199513b8ffa7f73:log:66', 'hash': '0x24fc2ba1015a4ce2597486cf0a9aa3ba7cb5af84e58a43478199513b8ffa7f73', 'from': '0xfa2eb971f7eeb0addf86dd77f32c224c243a5cc5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 5175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0118898d49acc67c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:46:33.000Z'}}, {'blockNum': '0x51199a', 'uniqueId': '0x56e730d7f7c7fb03b0a4d07e98a4606a4213132340228b7a7db68b518e8f0977:log:74', 'hash': '0x56e730d7f7c7fb03b0a4d07e98a4606a4213132340228b7a7db68b518e8f0977', 'from': '0x8a037a43e603ceda4a8c7809ef48d7d896244dad', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 9625.304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0209c9ed2ef42a7c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:46:33.000Z'}}, {'blockNum': '0x51199b', 'uniqueId': '0x54a2a7bf8637e5134a9abc0827eed3505bfcd19f543177aaa7380c1d1f0a7ffb:log:5', 'hash': '0x54a2a7bf8637e5134a9abc0827eed3505bfcd19f543177aaa7380c1d1f0a7ffb', 'from': '0xa25bfb0e606a4cd7b243de8d3bc2549bf5011e03', 'to': '0x3a5dc9f8b58ba8c62e6f934c72a0c6c1d1101420', 'value': 26199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x058c4029abbfbafc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:46:39.000Z'}}, {'blockNum': '0x5119a3', 'uniqueId': '0x872b1e93ddb7a5d2941feae3dfda2c43c9635dec37e4e7951b4ea8ce35f6eb80:log:93', 'hash': '0x872b1e93ddb7a5d2941feae3dfda2c43c9635dec37e4e7951b4ea8ce35f6eb80', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9f17140f67c44a29c35337c21fd818087872183d', 'value': 313404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x425daa35ca715b700000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:48:42.000Z'}}, {'blockNum': '0x5119a3', 'uniqueId': '0xf446f40bf59c30096552ee411cc584df11d70a84529a55b8acba4cb47ed3bef8:log:112', 'hash': '0xf446f40bf59c30096552ee411cc584df11d70a84529a55b8acba4cb47ed3bef8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe1a54300ea0f03eecd92782b2cba39bc763c6161', 'value': 127542.13901191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1b0212bde41e52313c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:48:42.000Z'}}, {'blockNum': '0x5119a4', 'uniqueId': '0xe52448f1649f4c0d4656f3ad8cbced7168cbe6dc510ccef0db4911edeb85b353:log:12', 'hash': '0xe52448f1649f4c0d4656f3ad8cbced7168cbe6dc510ccef0db4911edeb85b353', 'from': '0xeee8e79dc6bb97ac71e102689a52eff9a469a2ac', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 119945.10242823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x19663cae1a161ca33c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:48:56.000Z'}}, {'blockNum': '0x5119a9', 'uniqueId': '0xeeabb02eedda01730161cd5d9b47e793a0979a235e3ac17fca23ff922eb2526d:log:0', 'hash': '0xeeabb02eedda01730161cd5d9b47e793a0979a235e3ac17fca23ff922eb2526d', 'from': '0x70afc1ca7c1228c61f6694f73b6b19138f887da4', 'to': '0xedd56801333a1824327539bc3fcd3403ddc9390d', 'value': 20649.32149999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x045f66e6f3725c41dc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:49:28.000Z'}}, {'blockNum': '0x5119b0', 'uniqueId': '0x03f035c9e355972811e1ec7b68fea5017e5c372e03b29c046d79d019bacbe956:log:50', 'hash': '0x03f035c9e355972811e1ec7b68fea5017e5c372e03b29c046d79d019bacbe956', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xec465ed3f0d265ded60675c86734478aaf8de1ac', 'value': 44939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x098425e802f93f4c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:50:39.000Z'}}, {'blockNum': '0x5119b3', 'uniqueId': '0x03b9d6a160699ef614a2d2d33740477eaa519d07773f23299ef72f6956d27638:log:4', 'hash': '0x03b9d6a160699ef614a2d2d33740477eaa519d07773f23299ef72f6956d27638', 'from': '0x5f203b24a22c55732df3220eb38b69efa1377974', 'to': '0xfc4dc915051e7b3f59d8e9637d6e8b0bb0f2ee5d', 'value': 6922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01773e0c15ac15e80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:51:05.000Z'}}, {'blockNum': '0x5119b3', 'uniqueId': '0x3bfb846ff09c6696fbc0533384ff30169413566a10bac20b63652007be10277a:log:28', 'hash': '0x3bfb846ff09c6696fbc0533384ff30169413566a10bac20b63652007be10277a', 'from': '0x834b8c36ca6e573933f76adc576a28ce77f200b1', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 12416.4216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02a11876dc2dcf4e0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:51:05.000Z'}}, {'blockNum': '0x5119b3', 'uniqueId': '0xc5e85dd0bbf36a9cb5580728b6617b1b3159a39865630de85b2242ff4f7daa91:log:38', 'hash': '0xc5e85dd0bbf36a9cb5580728b6617b1b3159a39865630de85b2242ff4f7daa91', 'from': '0x6d63e9984362d3418dc8708ae1ee57dbb2728273', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 10443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02361dbcf29d5c4c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:51:05.000Z'}}, {'blockNum': '0x5119b3', 'uniqueId': '0xc8763d44b114dce5de1c165469491c73297fd5715095dae5db2ec447de5e4563:log:40', 'hash': '0xc8763d44b114dce5de1c165469491c73297fd5715095dae5db2ec447de5e4563', 'from': '0xc47da9edb9b94b48e28b4d2836f5e8f7cde7ed20', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 18388.391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03e4d6303ca105fd8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:51:05.000Z'}}, {'blockNum': '0x5119bc', 'uniqueId': '0xfd8809069925ad220735d1b825709f879c5059d98d8cece8dc3bd169f0f20301:log:73', 'hash': '0xfd8809069925ad220735d1b825709f879c5059d98d8cece8dc3bd169f0f20301', 'from': '0x9f17140f67c44a29c35337c21fd818087872183d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 313404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x425daa35ca715b700000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:53:40.000Z'}}, {'blockNum': '0x5119bc', 'uniqueId': '0x4500b13e32d55c35d7679e24bc8a7497712de2aa5887d49454da9785446f6d7d:log:79', 'hash': '0x4500b13e32d55c35d7679e24bc8a7497712de2aa5887d49454da9785446f6d7d', 'from': '0xe1a54300ea0f03eecd92782b2cba39bc763c6161', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 127542.13901191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1b0212bde41e52313c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:53:40.000Z'}}, {'blockNum': '0x5119be', 'uniqueId': '0x3f415aebb2c21c6f0d79c3435ca7ceb7818685dac73987959aa04a56ba1bfe60:log:5', 'hash': '0x3f415aebb2c21c6f0d79c3435ca7ceb7818685dac73987959aa04a56ba1bfe60', 'from': '0x115affcec1e09f49e5fb7e02622f611bdc906c04', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 56461.0454446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf4c268786c9a09b000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:54:00.000Z'}}, {'blockNum': '0x5119bf', 'uniqueId': '0xcf7bf7d9487d41517092d6ceb7265627d6fbd5d700b666a9ad32fb4a72336d83:log:9', 'hash': '0xcf7bf7d9487d41517092d6ceb7265627d6fbd5d700b666a9ad32fb4a72336d83', 'from': '0x87ffd6b78bfcf93b9e4a146de9cf4e4128c02a19', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 423.70044531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x16f8065e25f55f6c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:54:20.000Z'}}, {'blockNum': '0x5119bf', 'uniqueId': '0xefb2c2fb16ce3052789921533299702aaba4fb3c379b00fb7e42980a06bdd305:log:12', 'hash': '0xefb2c2fb16ce3052789921533299702aaba4fb3c379b00fb7e42980a06bdd305', 'from': '0x3a5dc9f8b58ba8c62e6f934c72a0c6c1d1101420', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x058c4029abbfbafc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:54:20.000Z'}}, {'blockNum': '0x5119bf', 'uniqueId': '0x4160073414af4b77c6d00b92bc4c3cbc2383a73132d8e4189e743454424c2d39:log:14', 'hash': '0x4160073414af4b77c6d00b92bc4c3cbc2383a73132d8e4189e743454424c2d39', 'from': '0xada245cf04b002adc022eae94fbba2e5309e8898', 'to': '0x8130cdea28278a14b42aaa49abf0415607cdbfee', 'value': 10067.7464517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0221c60c889d45e88800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:54:20.000Z'}}, {'blockNum': '0x5119c0', 'uniqueId': '0xf031d9ffb1dec8da867ddd1617f95ee93b8c24d873d0393d1ccb7bc48b2ddc05:log:14', 'hash': '0xf031d9ffb1dec8da867ddd1617f95ee93b8c24d873d0393d1ccb7bc48b2ddc05', 'from': '0xe8974e0ac1ed333ccb59f7aa746f18dada21a272', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 56641.23892395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0bfe87184f2fe4794c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:54:25.000Z'}}, {'blockNum': '0x5119c0', 'uniqueId': '0xa9653680a766ee0a9e440fdd3a0cd122aa41cefe1342c6e26bf333e36d0e8350:log:15', 'hash': '0xa9653680a766ee0a9e440fdd3a0cd122aa41cefe1342c6e26bf333e36d0e8350', 'from': '0x28934b1cac39223b4bec7d746e601ee2858026bf', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 13612.14653628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02e1ea7b3280dd4b7000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:54:25.000Z'}}, {'blockNum': '0x5119c4', 'uniqueId': '0x92eb3648136b5ae8e37a85e491667051fccf3f820312b1ff34510acae8ae9483:log:2', 'hash': '0x92eb3648136b5ae8e37a85e491667051fccf3f820312b1ff34510acae8ae9483', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1920b4fcd44c11937ec2c0018c0794b51e976c48', 'value': 18218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03db9989cce632680000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:54:54.000Z'}}, {'blockNum': '0x5119c5', 'uniqueId': '0xc69632dd7cbcaf6db2b324a603e35bdc1e26b83a2e5299766503b0f163bfe6e1:log:12', 'hash': '0xc69632dd7cbcaf6db2b324a603e35bdc1e26b83a2e5299766503b0f163bfe6e1', 'from': '0xf838f4e2cdb8274667b4a4356a1ca533079df71f', 'to': '0x87f9314c0a497ac8abcb318a80c5e5304d587c95', 'value': 3490, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xbd317abd3001480000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:55:00.000Z'}}, {'blockNum': '0x5119c9', 'uniqueId': '0xff8b49d116d0f9988b76c89d17d4f1fe3af46123db2d3c7decf41b53a16196c3:log:15', 'hash': '0xff8b49d116d0f9988b76c89d17d4f1fe3af46123db2d3c7decf41b53a16196c3', 'from': '0xec465ed3f0d265ded60675c86734478aaf8de1ac', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 44939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x098425e802f93f4c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:55:52.000Z'}}, {'blockNum': '0x5119cb', 'uniqueId': '0x9e237a398568886199b78561a5e303b323b72cc06285f9461a52b606c47c1580:log:41', 'hash': '0x9e237a398568886199b78561a5e303b323b72cc06285f9461a52b606c47c1580', 'from': '0x26e0514dbb8d1cc854e0117c68774c38072f7da3', 'to': '0x6231788a7b38a36f125ff80edba0c0bca8cf0cc6', 'value': 1047.80642468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x38cd3c37bae77e1000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:56:34.000Z'}}, {'blockNum': '0x5119cf', 'uniqueId': '0x8d724c0fe599f56c41c4fac4745c4c6dd75f909a41b3e97a03f52b5d00779e18:log:0', 'hash': '0x8d724c0fe599f56c41c4fac4745c4c6dd75f909a41b3e97a03f52b5d00779e18', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2f13865b65f4301bc2b04a5d4ead042c4f2df458', 'value': 10405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02340e61d3f283740000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:57:31.000Z'}}, {'blockNum': '0x5119d0', 'uniqueId': '0x7a92737e54cc8a943a2fda6f8029fbc5a7ebab639058ad11e2b80bb255cb857d:log:2', 'hash': '0x7a92737e54cc8a943a2fda6f8029fbc5a7ebab639058ad11e2b80bb255cb857d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'value': 43544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093886646e0019600000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:57:39.000Z'}}, {'blockNum': '0x5119d0', 'uniqueId': '0xc9c85231738da12f20d2395a9f33561750cc0b5b2af3b2ca81f54e4b22db0d28:log:25', 'hash': '0xc9c85231738da12f20d2395a9f33561750cc0b5b2af3b2ca81f54e4b22db0d28', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xde817577353df8bd583f3c36dcbf8f18a66b8086', 'value': 1243.20599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4364f2f634063b1c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:57:39.000Z'}}, {'blockNum': '0x5119d1', 'uniqueId': '0x101c28a8c8127be9c008235d489b3e58e7c17b07bbc0a33715d6b825587323c0:log:17', 'hash': '0x101c28a8c8127be9c008235d489b3e58e7c17b07bbc0a33715d6b825587323c0', 'from': '0xa838172bb357d2f0fa84fa45fb8fa93c3fda1cb4', 'to': '0xd059a2e4fde487a56dff13385e93e6abe4ea875a', 'value': 933.5834327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x329c12a1b4214cd800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:57:54.000Z'}}, {'blockNum': '0x5119d2', 'uniqueId': '0xd135daa1854fb7eef5c3ffe035bf05eb90b1d5d7d565566e3bfda31e468d603c:log:6', 'hash': '0xd135daa1854fb7eef5c3ffe035bf05eb90b1d5d7d565566e3bfda31e468d603c', 'from': '0x2d14f236d640157e133b92c955051de1284ecd01', 'to': '0x60e5a84fcd707feb5f7e082a2f58fb89892fecea', 'value': 9750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02108c6e5e493a980000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:59:08.000Z'}}, {'blockNum': '0x5119d3', 'uniqueId': '0x98f2a11287f0c7269b342725877651db2439954224073c6368f10a18f857f65e:log:33', 'hash': '0x98f2a11287f0c7269b342725877651db2439954224073c6368f10a18f857f65e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xffc1e830d90b28ae23a07f97ad1e3f78fbb4ffb4', 'value': 52243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b101944b8b91c6c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:59:16.000Z'}}, {'blockNum': '0x5119d4', 'uniqueId': '0x4fb58b6c9966a66cdaa9e0042a6463e936a6f0005c790e37714f0f2e2456f022:log:0', 'hash': '0x4fb58b6c9966a66cdaa9e0042a6463e936a6f0005c790e37714f0f2e2456f022', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xeee8e79dc6bb97ac71e102689a52eff9a469a2ac', 'value': 36692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07c513ca4d73c8d00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:59:28.000Z'}}, {'blockNum': '0x5119d6', 'uniqueId': '0x1bcbaef023ec0186b18e0a70d5299b1de300af9abb06d418b6cbb309054b8ca8:log:45', 'hash': '0x1bcbaef023ec0186b18e0a70d5299b1de300af9abb06d418b6cbb309054b8ca8', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0xec465ed3f0d265ded60675c86734478aaf8de1ac', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:00:05.000Z'}}, {'blockNum': '0x5119d9', 'uniqueId': '0xc5a5b1f0ad97b35887e34c9ca2b314848f86c492e442f8e5c45e572f3c0f8452:log:7', 'hash': '0xc5a5b1f0ad97b35887e34c9ca2b314848f86c492e442f8e5c45e572f3c0f8452', 'from': '0x8130cdea28278a14b42aaa49abf0415607cdbfee', 'to': '0x900a5999fdbd86eae1b0aa93e91f9029e87c3816', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:00:43.000Z'}}, {'blockNum': '0x5119de', 'uniqueId': '0x806b991665c2f6e350ee70e11136cff89c5a0e944c6a36eca0019828649a7fc2:log:25', 'hash': '0x806b991665c2f6e350ee70e11136cff89c5a0e944c6a36eca0019828649a7fc2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe1a54300ea0f03eecd92782b2cba39bc763c6161', 'value': 67127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0e36f6431de94e7c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:01:37.000Z'}}, {'blockNum': '0x5119e0', 'uniqueId': '0xc3565dd8821912239a0394801fa56fa0fb18faafb2d0fb43c74ce11285c41457:log:37', 'hash': '0xc3565dd8821912239a0394801fa56fa0fb18faafb2d0fb43c74ce11285c41457', 'from': '0x8130cdea28278a14b42aaa49abf0415607cdbfee', 'to': '0x900a5999fdbd86eae1b0aa93e91f9029e87c3816', 'value': 10017.7464517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021f1028d98694608800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:02:28.000Z'}}, {'blockNum': '0x5119e1', 'uniqueId': '0xbf3baa58dafd78291b915bedba77167942b9ce59af23092561e0bd11c1967b54:log:4', 'hash': '0xbf3baa58dafd78291b915bedba77167942b9ce59af23092561e0bd11c1967b54', 'from': '0x384b38e394f467e931249960974abe7aee60979c', 'to': '0x6f078432feda0ae00da0c114b2f1a87dcf39ef1f', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:02:52.000Z'}}, {'blockNum': '0x5119e1', 'uniqueId': '0x315632f6c678cafd8fc73c767b5d14f93e9afd2da44605d0c66bb6aaaf003626:log:64', 'hash': '0x315632f6c678cafd8fc73c767b5d14f93e9afd2da44605d0c66bb6aaaf003626', 'from': '0x1920b4fcd44c11937ec2c0018c0794b51e976c48', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 18218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03db9989cce632680000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:02:52.000Z'}}, {'blockNum': '0x5119e3', 'uniqueId': '0xf4bc77c657f6645d9ec63c9b8ccf8c52fb21ca67cb1138ca89a701708d808d17:log:26', 'hash': '0xf4bc77c657f6645d9ec63c9b8ccf8c52fb21ca67cb1138ca89a701708d808d17', 'from': '0x1041924b4827941c0678711e14f2a7bb2eed3dfe', 'to': '0xe4e376ec29b0d571cbc14c591aa5ccf6b9234fca', 'value': 2978.94003534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa17d19030a7e4b7800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:03:24.000Z'}}, {'blockNum': '0x5119e4', 'uniqueId': '0xece7c8d678b23c96efecbcab4645d7e1c8aa74d403d5035aaa8dd52c0bff0c08:log:27', 'hash': '0xece7c8d678b23c96efecbcab4645d7e1c8aa74d403d5035aaa8dd52c0bff0c08', 'from': '0x900a5999fdbd86eae1b0aa93e91f9029e87c3816', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10067.7464517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0221c60c889d45e88800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:04:21.000Z'}}, {'blockNum': '0x5119e4', 'uniqueId': '0x45f5e6d7d1788c582b7f62b9c78a9301815a3d5668e89346f6ddda0a1050315b:log:29', 'hash': '0x45f5e6d7d1788c582b7f62b9c78a9301815a3d5668e89346f6ddda0a1050315b', 'from': '0x6f078432feda0ae00da0c114b2f1a87dcf39ef1f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:04:21.000Z'}}, {'blockNum': '0x5119e4', 'uniqueId': '0xa947236e21dbf4c64540d644c20abdef11354b15f000f27490aad7f2ebb87ab4:log:31', 'hash': '0xa947236e21dbf4c64540d644c20abdef11354b15f000f27490aad7f2ebb87ab4', 'from': '0x60e5a84fcd707feb5f7e082a2f58fb89892fecea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02108c6e5e493a980000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:04:21.000Z'}}, {'blockNum': '0x5119e5', 'uniqueId': '0x8d9dce2481294d21d5b6d6461ffc8b1dc85301c25bbbe5ab6bd27cd610ed91c2:log:12', 'hash': '0x8d9dce2481294d21d5b6d6461ffc8b1dc85301c25bbbe5ab6bd27cd610ed91c2', 'from': '0xd9b569e201630bf2ae94900e502e439d5ec8621b', 'to': '0x3964a666e52c232023eab31c5c0e0fcafd3a72d7', 'value': 584.83020625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1fb426460569af2400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:04:29.000Z'}}, {'blockNum': '0x5119e6', 'uniqueId': '0x0438b907489ed5572d1f5cea2c6ce76eaebab3e22e6a4112c69d98a9fe6e0469:log:7', 'hash': '0x0438b907489ed5572d1f5cea2c6ce76eaebab3e22e6a4112c69d98a9fe6e0469', 'from': '0x0c0657a4a9b53c24c40fd8b4858a27dec79d16e4', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:04:44.000Z'}}, {'blockNum': '0x5119e6', 'uniqueId': '0x62b72c73155e0689cf56a702004b144f5cabd98bb51594c283f36b9e19b561ac:log:8', 'hash': '0x62b72c73155e0689cf56a702004b144f5cabd98bb51594c283f36b9e19b561ac', 'from': '0x29c0b6699e53ab4a955767a3380b9b0102316fab', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 7646.78251086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x019e886cd33cafe77800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:04:44.000Z'}}, {'blockNum': '0x5119e7', 'uniqueId': '0x880181e732156640c9a6186983d92a8f622156ffb36f1f285281ab7e41c71129:log:0', 'hash': '0x880181e732156640c9a6186983d92a8f622156ffb36f1f285281ab7e41c71129', 'from': '0xe2302b6a2189363e77cae3fdb9cac5c22974e1c8', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 7646.782510860002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x019e886cd33cb005fc80', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:04:47.000Z'}}, {'blockNum': '0x5119ea', 'uniqueId': '0x18cc525069f14c4a61d8e071b0968987f7be714df032de5317cedbfffd608407:log:5', 'hash': '0x18cc525069f14c4a61d8e071b0968987f7be714df032de5317cedbfffd608407', 'from': '0x77172b331856463346bee5140c0740ffc2dcd027', 'to': '0x3ad09bb0d93fa75a13bac0abf7a9974800a2c51f', 'value': 6615.68469511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0166a31182cd83fb3c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:05:35.000Z'}}, {'blockNum': '0x5119f0', 'uniqueId': '0x1695e872ac1c6cb2a7c2c4e4a26d392734a309187d9dce034fce8a80dd28a7ff:log:6', 'hash': '0x1695e872ac1c6cb2a7c2c4e4a26d392734a309187d9dce034fce8a80dd28a7ff', 'from': '0x2f13865b65f4301bc2b04a5d4ead042c4f2df458', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 10405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02340e61d3f283740000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:07:07.000Z'}}, {'blockNum': '0x5119f0', 'uniqueId': '0x061608564641f14a3369785b32122681de75a4d80fc6e68bb36c1ab665fed680:log:8', 'hash': '0x061608564641f14a3369785b32122681de75a4d80fc6e68bb36c1ab665fed680', 'from': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 43544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093886646e0019600000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:07:07.000Z'}}, {'blockNum': '0x5119f0', 'uniqueId': '0xef0acc4224573a47fb3c0dee6ce8e37b5a4967db8d7ce2db388d0b333239bcf6:log:11', 'hash': '0xef0acc4224573a47fb3c0dee6ce8e37b5a4967db8d7ce2db388d0b333239bcf6', 'from': '0xffc1e830d90b28ae23a07f97ad1e3f78fbb4ffb4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 52243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b101944b8b91c6c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:07:07.000Z'}}, {'blockNum': '0x5119f0', 'uniqueId': '0xaee94a2f86189e45739b512f4806ba3a27b060e8466d912d30ee339f809831f1:log:13', 'hash': '0xaee94a2f86189e45739b512f4806ba3a27b060e8466d912d30ee339f809831f1', 'from': '0xeee8e79dc6bb97ac71e102689a52eff9a469a2ac', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 36692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07c513ca4d73c8d00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:07:07.000Z'}}, {'blockNum': '0x5119f0', 'uniqueId': '0x8f3ca846cc54c2b3f0fa08af2f338bf0f199abe2a59879484f6da87dfc58af7f:log:15', 'hash': '0x8f3ca846cc54c2b3f0fa08af2f338bf0f199abe2a59879484f6da87dfc58af7f', 'from': '0xec465ed3f0d265ded60675c86734478aaf8de1ac', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:07:07.000Z'}}, {'blockNum': '0x5119f0', 'uniqueId': '0x8ae438d70fbf687895fdbdc48c07a9aa7a7e6fcc456955eea1480e94f96b8ea2:log:91', 'hash': '0x8ae438d70fbf687895fdbdc48c07a9aa7a7e6fcc456955eea1480e94f96b8ea2', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xd4ac1e8cfb54e0fb3d84ae61f24be3a7fcc41a06', 'value': 2991.166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa226c45d1f92130000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:07:07.000Z'}}, {'blockNum': '0x5119f8', 'uniqueId': '0xd7436175d453cd394f784744f6c8ac1373464b6561d90bc5e6776b5a7b2452e1:log:3', 'hash': '0xd7436175d453cd394f784744f6c8ac1373464b6561d90bc5e6776b5a7b2452e1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7dd740580176525047b9fc797c7363709b4e79c0', 'value': 1916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x67ddd76898d0700000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:09:10.000Z'}}, {'blockNum': '0x5119f8', 'uniqueId': '0x1ec13a1768e803691a73ea573725577bc1764b47693ee63ba22b9f477d92df32:log:5', 'hash': '0x1ec13a1768e803691a73ea573725577bc1764b47693ee63ba22b9f477d92df32', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9f17140f67c44a29c35337c21fd818087872183d', 'value': 159277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x21ba6c689e4964940000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:09:10.000Z'}}, {'blockNum': '0x5119fa', 'uniqueId': '0xf237f1af6f7fb39c21fa6d7257cf5ac831c513b3627c6b4cc4aa82766537a626:log:65', 'hash': '0xf237f1af6f7fb39c21fa6d7257cf5ac831c513b3627c6b4cc4aa82766537a626', 'from': '0xe1a54300ea0f03eecd92782b2cba39bc763c6161', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 67127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0e36f6431de94e7c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:09:23.000Z'}}, {'blockNum': '0x5119fd', 'uniqueId': '0xda0ca934294ba3fcf5f89369cf4988ee56273989f4e557112c20bf51da196cbb:log:60', 'hash': '0xda0ca934294ba3fcf5f89369cf4988ee56273989f4e557112c20bf51da196cbb', 'from': '0xca6c813d4d7272ce494dfeedc7872d1c76132cce', 'to': '0xd5bc4c9aa43d6a710c5a1fbd5a38c46e86b2c814', 'value': 89.39846924994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04d8a72a21225b0d00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:09:34.000Z'}}, {'blockNum': '0x5119ff', 'uniqueId': '0x4e24afd7aa89410f2f7b462c87268cc1ca42bbd124446a3c97074068a2a8aaea:log:3', 'hash': '0x4e24afd7aa89410f2f7b462c87268cc1ca42bbd124446a3c97074068a2a8aaea', 'from': '0x1f1019fa248f94abc9f7bd8c724ffcd65e25f0ea', 'to': '0x757cb1df72216279bab8cd599370b3e29d2a0dc2', 'value': 11683.98431312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x027963dae46172074000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:10:16.000Z'}}, {'blockNum': '0x511a04', 'uniqueId': '0xcedb3b82bf63445d500ee45c47b176935f92b72b35c2ca1a68d4e402d9d52dbb:log:3', 'hash': '0xcedb3b82bf63445d500ee45c47b176935f92b72b35c2ca1a68d4e402d9d52dbb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xee910dbaa8a71c95648c721430e2ececc83d6a5c', 'value': 83481.85799999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x11ad8f82d9269e011c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:11:20.000Z'}}, {'blockNum': '0x511a0f', 'uniqueId': '0x0347bb7717ebb199969a0db04c4af726c71065ff8467768fa4acb53e51b0cf75:log:9', 'hash': '0x0347bb7717ebb199969a0db04c4af726c71065ff8467768fa4acb53e51b0cf75', 'from': '0x6b3e083357ee67db306f9a2eb184f8a0defe1ec8', 'to': '0xe498216ccc589c6a824b7aef2feab9e47dbabcc3', 'value': 18897.40351318594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04006e27f481fac00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:13:27.000Z'}}, {'blockNum': '0x511a10', 'uniqueId': '0xa1d36f82baf43c235e18d0c544362aa155cc3a8f76265339c5f2e9cb83c87323:log:10', 'hash': '0xa1d36f82baf43c235e18d0c544362aa155cc3a8f76265339c5f2e9cb83c87323', 'from': '0x578c143b8fbd2f4648fbb1ce82e0656e0b7c3206', 'to': '0xf53959a46a3f4326ec38aa0c94f7545ea9687e9d', 'value': 1713.5977500899999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5ce4f22aad470c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:13:40.000Z'}}, {'blockNum': '0x511a12', 'uniqueId': '0x1fb358d1daa5764debf70f955cbc0204dd14ff4170f57ea6fe3efb3ff8c5a4d9:log:49', 'hash': '0x1fb358d1daa5764debf70f955cbc0204dd14ff4170f57ea6fe3efb3ff8c5a4d9', 'from': '0x7dd740580176525047b9fc797c7363709b4e79c0', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x67ddd76898d0700000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:13:57.000Z'}}, {'blockNum': '0x511a12', 'uniqueId': '0x0992c8e4dd8fdbf1f85de5a9f9aa6ed85018575a46682af0fadce9b270121c68:log:51', 'hash': '0x0992c8e4dd8fdbf1f85de5a9f9aa6ed85018575a46682af0fadce9b270121c68', 'from': '0x9f17140f67c44a29c35337c21fd818087872183d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 159277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x21ba6c689e4964940000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:13:57.000Z'}}, {'blockNum': '0x511a13', 'uniqueId': '0x76c2154ba6e662700615a49cd395694800a70716ba971c0c0d0d753a5a8504e2:log:13', 'hash': '0x76c2154ba6e662700615a49cd395694800a70716ba971c0c0d0d753a5a8504e2', 'from': '0x757cb1df72216279bab8cd599370b3e29d2a0dc2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11683.98431312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x027963dae46172074000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:14:14.000Z'}}, {'blockNum': '0x511a18', 'uniqueId': '0xf6397f546e174f62fac8ea86a6fa2e892247680b640620f2cac2f11f0665ccd4:log:11', 'hash': '0xf6397f546e174f62fac8ea86a6fa2e892247680b640620f2cac2f11f0665ccd4', 'from': '0x3964a666e52c232023eab31c5c0e0fcafd3a72d7', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 584.83020625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1fb426460569af2400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:15:20.000Z'}}, {'blockNum': '0x511a18', 'uniqueId': '0xf22354ffecfd3beaa7522b44beee2b80dc4ab3bca2154e7849ea6d64d19ec3b2:log:12', 'hash': '0xf22354ffecfd3beaa7522b44beee2b80dc4ab3bca2154e7849ea6d64d19ec3b2', 'from': '0x6231788a7b38a36f125ff80edba0c0bca8cf0cc6', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1047.80642468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x38cd3c37bae77e1000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:15:20.000Z'}}, {'blockNum': '0x511a19', 'uniqueId': '0x11178e0f278781d79e23a3d74d6b4be59db92c73fc771b68d738fdd2d9530871:log:20', 'hash': '0x11178e0f278781d79e23a3d74d6b4be59db92c73fc771b68d738fdd2d9530871', 'from': '0xd059a2e4fde487a56dff13385e93e6abe4ea875a', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 933.5834327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x329c12a1b4214cd800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:15:55.000Z'}}, {'blockNum': '0x511a19', 'uniqueId': '0x5e4273918188c26b5cb4a30268efac8801d87218910975e616de7f15c61a0183:log:21', 'hash': '0x5e4273918188c26b5cb4a30268efac8801d87218910975e616de7f15c61a0183', 'from': '0x87f9314c0a497ac8abcb318a80c5e5304d587c95', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 3490, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xbd317abd3001480000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:15:55.000Z'}}, {'blockNum': '0x511a22', 'uniqueId': '0x82a055ba30179bda7adc344490edd8dadaf3f04de2bb3daf50c695fad82ba90f:log:4', 'hash': '0x82a055ba30179bda7adc344490edd8dadaf3f04de2bb3daf50c695fad82ba90f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd5d5d80aed0c411ad0cd2eacc50350a58cf92ab0', 'value': 5011.60150378, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x010fadf13715cc606800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:18:01.000Z'}}, {'blockNum': '0x511a23', 'uniqueId': '0xb857f0115d3d821ca3f6bf44f87245b01b050d175441332cfbff429ee0c07988:log:7', 'hash': '0xb857f0115d3d821ca3f6bf44f87245b01b050d175441332cfbff429ee0c07988', 'from': '0xee910dbaa8a71c95648c721430e2ececc83d6a5c', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 83481.85799999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x11ad8f82d9269e011c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:18:22.000Z'}}, {'blockNum': '0x511a23', 'uniqueId': '0x657f0543e35f79857ca282cb3dcc066724ebab505182d6175914333fd83a24e5:log:10', 'hash': '0x657f0543e35f79857ca282cb3dcc066724ebab505182d6175914333fd83a24e5', 'from': '0xa240b406a360ee4c44e6c11ea3991670233bea8b', 'to': '0x10dd051fea617a3406917d1b1d0d7721a1d8ef8f', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x032d26d12e980b600000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:18:22.000Z'}}, {'blockNum': '0x511a29', 'uniqueId': '0xb23f58b7a904818e24144d20dcd36e6ff772d8232b44b3ddc1c2409e40d5b790:log:1', 'hash': '0xb23f58b7a904818e24144d20dcd36e6ff772d8232b44b3ddc1c2409e40d5b790', 'from': '0x6321c62d9377dedc3dad41630078f58532a94a81', 'to': '0xf8c89894873d5e1d0450199e926119472aaf6574', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:19:41.000Z'}}, {'blockNum': '0x511a2f', 'uniqueId': '0x592629b9cf2fed5584a1721b2a6d850ad4c50be4032fb51697686863ff4ab537:log:1', 'hash': '0x592629b9cf2fed5584a1721b2a6d850ad4c50be4032fb51697686863ff4ab537', 'from': '0x6c1bb4688292a31ceb2fcd99580707f9b7bc4754', 'to': '0xed5d30e748700a0a52341f1819feabbab67fbb99', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:21:04.000Z'}}, {'blockNum': '0x511a34', 'uniqueId': '0x16e32991331b29029c59293adaeabbbeeb716c6c92af24fc3e85b61ec3ad6870:log:7', 'hash': '0x16e32991331b29029c59293adaeabbbeeb716c6c92af24fc3e85b61ec3ad6870', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4286fc0802cf227f6db1eb4b97e57ea5f4ac45aa', 'value': 4361.573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xec70fc0ee556d08000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:22:05.000Z'}}, {'blockNum': '0x511a34', 'uniqueId': '0x338324f44a528ffe4d1ff06d73b8a27e7d3ef8984a016c3acdf9e368fda93d76:log:50', 'hash': '0x338324f44a528ffe4d1ff06d73b8a27e7d3ef8984a016c3acdf9e368fda93d76', 'from': '0x984decf891b30c24f5eb8313918a67d005d3e0b2', 'to': '0x1f539d6e201e8c7434a5a60bdc80399804eb4afd', 'value': 6904.02980618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x017644a9219a63e2e800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:22:05.000Z'}}, {'blockNum': '0x511a39', 'uniqueId': '0x7e299f72c52ad4048b0e04a7bf31ad0562ff4bd2b5eb438c8c781471bd4dbe40:log:60', 'hash': '0x7e299f72c52ad4048b0e04a7bf31ad0562ff4bd2b5eb438c8c781471bd4dbe40', 'from': '0x890a059ab7c438e1b8723e7223691fd62bafda89', 'to': '0xe4c970d06777d769e57ef9e5258dc7dd229a5179', 'value': 16600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0383e347116e3c600000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:23:13.000Z'}}, {'blockNum': '0x511a3d', 'uniqueId': '0x683dd4f833f0d502f0924c03140e47c460ab9a7ea87bb6ae933ee8a90d4d34de:log:10', 'hash': '0x683dd4f833f0d502f0924c03140e47c460ab9a7ea87bb6ae933ee8a90d4d34de', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x30ef83445d3a2caf22c0b8959af6e6a6cc8ef5bf', 'value': 5498.13063558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x012a0de3eab726955800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:23:51.000Z'}}, {'blockNum': '0x511a3f', 'uniqueId': '0x1320197efcb915e798501d81778ab6b9342a7ae70fbce54ccdbc31936f8709e8:log:6', 'hash': '0x1320197efcb915e798501d81778ab6b9342a7ae70fbce54ccdbc31936f8709e8', 'from': '0x6a6674ccbe8b45843894077002363c45858aae82', 'to': '0xa64cadaf6476843749bd3ae90f6a1e25715d6d84', 'value': 2730, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x93fe5c57d710680000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:24:19.000Z'}}, {'blockNum': '0x511a3f', 'uniqueId': '0xf5ada6fbd6c5228feee7761185a09ec4294a48659c05a98e83c5b8b047804450:log:17', 'hash': '0xf5ada6fbd6c5228feee7761185a09ec4294a48659c05a98e83c5b8b047804450', 'from': '0xf8c89894873d5e1d0450199e926119472aaf6574', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10678.32671323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0242df8d617ba6b94e40', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:24:19.000Z'}}, {'blockNum': '0x511a3f', 'uniqueId': '0x1df4dec1856a6a40984acfd1003a4d8232ae21451ac6a76efaa0720f5ed0af62:log:36', 'hash': '0x1df4dec1856a6a40984acfd1003a4d8232ae21451ac6a76efaa0720f5ed0af62', 'from': '0xd5d5d80aed0c411ad0cd2eacc50350a58cf92ab0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12786.33561405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5260d7011a8695400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:24:19.000Z'}}, {'blockNum': '0x511a41', 'uniqueId': '0x6d1d70dd015342e6250d86cad8159f7ed694d53553d86b19323845f7643e9be7:log:7', 'hash': '0x6d1d70dd015342e6250d86cad8159f7ed694d53553d86b19323845f7643e9be7', 'from': '0xd51b5cf6dbfa70136d1ef6240ee01d1912c0474b', 'to': '0x843baa5a73e855c02b1665b5538e1431826ce597', 'value': 327.237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x11bd535db95c808000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:24:42.000Z'}}, {'blockNum': '0x511a42', 'uniqueId': '0x13e34c592477c76858db4076dc0da2cdab487e689b6d3bff203723196632bbfd:log:11', 'hash': '0x13e34c592477c76858db4076dc0da2cdab487e689b6d3bff203723196632bbfd', 'from': '0xfc1572b0cc7373cf0b26e16a4f6e1f3f874dfdae', 'to': '0xfaceb5f4fd5fb39b2535e9375fa79afbc690ef39', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x878678326eac900000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:24:56.000Z'}}, {'blockNum': '0x511a45', 'uniqueId': '0x93e68b7ec40ba0e3fd398487f611f3e3d24bd453b3fc1d7209174d66ea51a269:log:14', 'hash': '0x93e68b7ec40ba0e3fd398487f611f3e3d24bd453b3fc1d7209174d66ea51a269', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xebe860f99bbaf5254f60c39077c543662ba4b779', 'value': 125.43152507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06ccb64b7c88da8c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:25:28.000Z'}}, {'blockNum': '0x511a45', 'uniqueId': '0xdc1f82dd1958bca0da46408f5e1ee0ccdf460f0e5827a03914e241ca3bd2b813:log:49', 'hash': '0xdc1f82dd1958bca0da46408f5e1ee0ccdf460f0e5827a03914e241ca3bd2b813', 'from': '0x3ad09bb0d93fa75a13bac0abf7a9974800a2c51f', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 6615.68469511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0166a31182cd83fb3c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:25:28.000Z'}}, {'blockNum': '0x511a46', 'uniqueId': '0xb81815b270b63f804094efc3202131642fce7107e08c6ec2c577f565bda6fadd:log:10', 'hash': '0xb81815b270b63f804094efc3202131642fce7107e08c6ec2c577f565bda6fadd', 'from': '0xf53959a46a3f4326ec38aa0c94f7545ea9687e9d', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1713.5977500899999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5ce4f22aad470c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:25:52.000Z'}}, {'blockNum': '0x511a49', 'uniqueId': '0xad4cff2022c44ce44abea052f94b967276198008aa3d88f2ada831d51d01bba1:log:2', 'hash': '0xad4cff2022c44ce44abea052f94b967276198008aa3d88f2ada831d51d01bba1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf20e87d438e1384eee010044b33478b512abc84a', 'value': 1337.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4882edd1176a800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:26:26.000Z'}}, {'blockNum': '0x511a51', 'uniqueId': '0xd763a7fae6c0a5d039c90fa96125b6121047585f86a418b9d984c36919104527:log:4', 'hash': '0xd763a7fae6c0a5d039c90fa96125b6121047585f86a418b9d984c36919104527', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x555af7ae2eb255c39f7169044a393f234a586328', 'value': 1303.38130851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x46a80c9a7ace5e2c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:27:38.000Z'}}, {'blockNum': '0x511a51', 'uniqueId': '0x24a83ec9a2a5c7c777b424f386dbe7c01ef3be2f26835e3e16e53753c7e6b991:log:5', 'hash': '0x24a83ec9a2a5c7c777b424f386dbe7c01ef3be2f26835e3e16e53753c7e6b991', 'from': '0xd51b5cf6dbfa70136d1ef6240ee01d1912c0474b', 'to': '0x843baa5a73e855c02b1665b5538e1431826ce597', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:27:38.000Z'}}, {'blockNum': '0x511a54', 'uniqueId': '0x35a019ed10013c6bc86afb3192c34a2de79430fd75a82d73ff85a9bb34ed3be7:log:3', 'hash': '0x35a019ed10013c6bc86afb3192c34a2de79430fd75a82d73ff85a9bb34ed3be7', 'from': '0xed5d30e748700a0a52341f1819feabbab67fbb99', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:28:00.000Z'}}, {'blockNum': '0x511a54', 'uniqueId': '0xdafb7ca1dfb867b84a96b1b38877fb78ce8b82ee3b5d743c898d43d5af49e8be:log:7', 'hash': '0xdafb7ca1dfb867b84a96b1b38877fb78ce8b82ee3b5d743c898d43d5af49e8be', 'from': '0x4286fc0802cf227f6db1eb4b97e57ea5f4ac45aa', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 4361.573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xec70fc0ee556d08000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:28:00.000Z'}}, {'blockNum': '0x511a66', 'uniqueId': '0xebf94118aa4087e8c365e0519ea3c2f880beb512792dc1dc37ac8ac444902294:log:11', 'hash': '0xebf94118aa4087e8c365e0519ea3c2f880beb512792dc1dc37ac8ac444902294', 'from': '0x38db7a2169f3970f909c495ef85871a358008fd4', 'to': '0x736c678243373996007eb5a9dd063a835b2b861e', 'value': 21389.69240397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0487899cc9f69eff9400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:30:25.000Z'}}, {'blockNum': '0x511a68', 'uniqueId': '0x7d5f9162100cb237978bf6bed3b00ed52ff9d3f472f7d1497ea9519208922814:log:18', 'hash': '0x7d5f9162100cb237978bf6bed3b00ed52ff9d3f472f7d1497ea9519208922814', 'from': '0x325ed2508fd0ba6269a70f678410bf73b84fcdf6', 'to': '0x2292fba487f400a2c321bae7606ce86e12cdd6e3', 'value': 5234.6501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x011bc55d0395cb034000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:30:47.000Z'}}, {'blockNum': '0x511a6e', 'uniqueId': '0x11f69b4ff1e4bedf1aac08311761d0185238976bfff6deec6077327aad4fe69c:log:9', 'hash': '0x11f69b4ff1e4bedf1aac08311761d0185238976bfff6deec6077327aad4fe69c', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'value': 236544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x32171370702cf0000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:31:45.000Z'}}, {'blockNum': '0x511a6e', 'uniqueId': '0xffe0b967dc232db03729812cd307e92f0e2390a3b9849b6500d7c7febd1bb49b:log:45', 'hash': '0xffe0b967dc232db03729812cd307e92f0e2390a3b9849b6500d7c7febd1bb49b', 'from': '0x325ed2508fd0ba6269a70f678410bf73b84fcdf6', 'to': '0x21f9bc526bc3135abd75df876c473595782996ae', 'value': 1991.71056382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6bf8895d426c143800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:31:45.000Z'}}, {'blockNum': '0x511a79', 'uniqueId': '0x72c6a6b2dec16ff174facd807ae7ae713e936afba34b679b0c5b818440766f19:log:7', 'hash': '0x72c6a6b2dec16ff174facd807ae7ae713e936afba34b679b0c5b818440766f19', 'from': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 236544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x32171370702cf0000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:34:15.000Z'}}, {'blockNum': '0x511a84', 'uniqueId': '0x8d20d7e8470183850754868f401a6905c7f0f1303572f3bab191bffb97b62139:log:9', 'hash': '0x8d20d7e8470183850754868f401a6905c7f0f1303572f3bab191bffb97b62139', 'from': '0xfaceb5f4fd5fb39b2535e9375fa79afbc690ef39', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x878678326eac900000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:36:49.000Z'}}, {'blockNum': '0x511a84', 'uniqueId': '0x8d81967e7c0d56e73f228257274251d7a9f10903483c810e7dfa65668766dea6:log:10', 'hash': '0x8d81967e7c0d56e73f228257274251d7a9f10903483c810e7dfa65668766dea6', 'from': '0xe4c970d06777d769e57ef9e5258dc7dd229a5179', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 16600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0383e347116e3c600000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:36:49.000Z'}}, {'blockNum': '0x511a87', 'uniqueId': '0x0777c7b3a700a5af4bd017919431c4c3e092e63f39fcc61f86676d41d12617cb:log:10', 'hash': '0x0777c7b3a700a5af4bd017919431c4c3e092e63f39fcc61f86676d41d12617cb', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xd5bc4c9aa43d6a710c5a1fbd5a38c46e86b2c814', 'value': 526.22165598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1c86cae0126db5b800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:37:14.000Z'}}, {'blockNum': '0x511a8c', 'uniqueId': '0x55157f31ed0aecd03af5fbba7988cc42cc03d6c2b67f3f292c0d4c48756eba8a:log:21', 'hash': '0x55157f31ed0aecd03af5fbba7988cc42cc03d6c2b67f3f292c0d4c48756eba8a', 'from': '0x09aeaaf3bee80f7f453167e469ac22b04322c0c8', 'to': '0x266d3ed64bdd126e3993d2c7503b54d5d73d358f', 'value': 2125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x73324c914479140000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:39:03.000Z'}}, {'blockNum': '0x511a8e', 'uniqueId': '0x95376b77693b88bf06bc3a331905446f68dd0553e3344433495808ae814f376e:log:5', 'hash': '0x95376b77693b88bf06bc3a331905446f68dd0553e3344433495808ae814f376e', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x70590a738aef17e0294f21c5691955a48dc13860', 'value': 976.55095483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x34f05def6ddeaf8c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:39:31.000Z'}}, {'blockNum': '0x511a93', 'uniqueId': '0x230099ec569db57f96b673ad626a27156f747f81f522992b4dbd6bd348acdeb3:log:21', 'hash': '0x230099ec569db57f96b673ad626a27156f747f81f522992b4dbd6bd348acdeb3', 'from': '0x582e793e8624394b625603700757b9472b6d37c7', 'to': '0x6c8fa126470e9c63790cbc9dbe3a1f4495b2d2d0', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:40:50.000Z'}}, {'blockNum': '0x511a98', 'uniqueId': '0xf3b0a3232026f4b74ec3682642b3ee8ff32dda53c54dd1bdab1b124b41dbc7d7:log:0', 'hash': '0xf3b0a3232026f4b74ec3682642b3ee8ff32dda53c54dd1bdab1b124b41dbc7d7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xfafd71e801912073872808ae7d04f8370144637f', 'value': 275.70502441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0ef22d02f3fc738400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:42:08.000Z'}}, {'blockNum': '0x511a98', 'uniqueId': '0x397fbca6f248c6608a78c6b4f5e3f5de22f4efc67e144d2a591a97115e98ba90:log:74', 'hash': '0x397fbca6f248c6608a78c6b4f5e3f5de22f4efc67e144d2a591a97115e98ba90', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 19594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0426315fd289ebe80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:42:08.000Z'}}, {'blockNum': '0x511a9a', 'uniqueId': '0x1fa0fab89095a3fbe6fa3b62f2046277e9492efcb2c212a41c12a28ad14bfa04:log:39', 'hash': '0x1fa0fab89095a3fbe6fa3b62f2046277e9492efcb2c212a41c12a28ad14bfa04', 'from': '0x490099dac90438f9a95e9c75f5dcddfd71467272', 'to': '0xfc6d963ea4e5f4c4232b33181f4ef8ddbe342661', 'value': 1501.437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x51649fc48bbc2c8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:42:50.000Z'}}, {'blockNum': '0x511a9c', 'uniqueId': '0xe2ec73a8abda084f0ecd2c3164f2baa26e511b53972245bc2a062b93bf0b529d:log:9', 'hash': '0xe2ec73a8abda084f0ecd2c3164f2baa26e511b53972245bc2a062b93bf0b529d', 'from': '0xc29ad1e3da2f577f8ff972ceba393c7a05ec07e6', 'to': '0x0f9f35497182cc4836dc0210654585ecb431549c', 'value': 9287.23039088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01f7763672a65e9fc000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:43:07.000Z'}}, {'blockNum': '0x511aa1', 'uniqueId': '0x33191c499d9a7f0050157c04d7230f4e76874d59dbce9ae0fb75448a5db4cec9:log:17', 'hash': '0x33191c499d9a7f0050157c04d7230f4e76874d59dbce9ae0fb75448a5db4cec9', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0426315fd289ebe80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:44:08.000Z'}}, {'blockNum': '0x511aa1', 'uniqueId': '0xb2b42fd0b5cf4e89071d5b310f5eac255d470291563da1cf23c96d66789d1ee8:log:18', 'hash': '0xb2b42fd0b5cf4e89071d5b310f5eac255d470291563da1cf23c96d66789d1ee8', 'from': '0x736c678243373996007eb5a9dd063a835b2b861e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21389.69240397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0487899cc9f69eff9400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:44:08.000Z'}}, {'blockNum': '0x511aa1', 'uniqueId': '0x6e5757d94cd526e88557c090971c407c0318541aaa1e2ec7d87683c6fc5a7bf3:log:19', 'hash': '0x6e5757d94cd526e88557c090971c407c0318541aaa1e2ec7d87683c6fc5a7bf3', 'from': '0x843baa5a73e855c02b1665b5538e1431826ce597', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20327.237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x044df114f12ec1008000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:44:08.000Z'}}, {'blockNum': '0x511aa8', 'uniqueId': '0x94e5d48622bc8df6f798d4e8706789f0fbd1d35dea26c35c695d92e9c940c1b0:log:35', 'hash': '0x94e5d48622bc8df6f798d4e8706789f0fbd1d35dea26c35c695d92e9c940c1b0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x77fd4c94ce0992c430c193311895e558fbe751d4', 'value': 1381.556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4ae4f0e633dd920000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:44:57.000Z'}}, {'blockNum': '0x511ab1', 'uniqueId': '0x9e7025bda83d66eed007bb8d4f326f037ac6f730dae648915a9c84260e5d8021:log:16', 'hash': '0x9e7025bda83d66eed007bb8d4f326f037ac6f730dae648915a9c84260e5d8021', 'from': '0x6f0ed14753573cd844f481754c8f6e1fc2e4bdf4', 'to': '0x676881ef6c6b3f9957b6ad633779acfae63c336c', 'value': 34772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x075cfe700a0c5ad00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:46:26.000Z'}}, {'blockNum': '0x511ab3', 'uniqueId': '0xa586bd958dc50078b5ec843e3ae46df4c76b617b67aebfcf4798c39c6146d493:log:11', 'hash': '0xa586bd958dc50078b5ec843e3ae46df4c76b617b67aebfcf4798c39c6146d493', 'from': '0x21f9bc526bc3135abd75df876c473595782996ae', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1991.71056382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6bf8895d426c143800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:47:07.000Z'}}, {'blockNum': '0x511ab4', 'uniqueId': '0xfac37b14a8d6336cbba3d92d3a02639021b3826eb0414c3daeb3acef71dfdfc4:log:11', 'hash': '0xfac37b14a8d6336cbba3d92d3a02639021b3826eb0414c3daeb3acef71dfdfc4', 'from': '0x2292fba487f400a2c321bae7606ce86e12cdd6e3', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 5234.6501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x011bc55d0395cb034000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:47:40.000Z'}}, {'blockNum': '0x511ab5', 'uniqueId': '0x52e73e05829862c77a0f04f1f7028bd1f80aef603f11f9ce427b7c415b44d215:log:10', 'hash': '0x52e73e05829862c77a0f04f1f7028bd1f80aef603f11f9ce427b7c415b44d215', 'from': '0x6862333a4faff661b55e5846ed78b4ba40c04990', 'to': '0x76e0d0ed6cf4d9c61bb31c9a037ff4f580c0bb0d', 'value': 26452.44146628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0599fd5ea28a4885f000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:47:43.000Z'}}, {'blockNum': '0x511ab9', 'uniqueId': '0xe60b40d8e9e6f5a0ad02dc9a290ea3c6908526182e7eff3b57bfea1349aa97c0:log:7', 'hash': '0xe60b40d8e9e6f5a0ad02dc9a290ea3c6908526182e7eff3b57bfea1349aa97c0', 'from': '0x0f9f35497182cc4836dc0210654585ecb431549c', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 9287.23039088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01f7763672a65e9fc000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:48:27.000Z'}}, {'blockNum': '0x511abd', 'uniqueId': '0x502a55b8c211a7ca28eefe47b25c43cf5970dfb5c500bc5f9433ba294d87e3c6:log:12', 'hash': '0x502a55b8c211a7ca28eefe47b25c43cf5970dfb5c500bc5f9433ba294d87e3c6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe498216ccc589c6a824b7aef2feab9e47dbabcc3', 'value': 15678.151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0351ea0d84188f4d8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:50:07.000Z'}}, {'blockNum': '0x511ac7', 'uniqueId': '0x14a014155f3d5f5045efe0bf2c84fb7b21b18a75e52400f8ccf53f5946b4e921:log:8', 'hash': '0x14a014155f3d5f5045efe0bf2c84fb7b21b18a75e52400f8ccf53f5946b4e921', 'from': '0xc8a46f6ce6e480268bae32b52885b9bf01c7493b', 'to': '0xdb6432efe3816260cbfd83c012a8f79f78da7767', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:53:56.000Z'}}, {'blockNum': '0x511aca', 'uniqueId': '0xb2a9e83e7f5e634f18529a1e80dd1fd66ba1e83383366dbd8d445eec74585ac6:log:12', 'hash': '0xb2a9e83e7f5e634f18529a1e80dd1fd66ba1e83383366dbd8d445eec74585ac6', 'from': '0x676881ef6c6b3f9957b6ad633779acfae63c336c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x075cfe700a0c5ad00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:54:15.000Z'}}, {'blockNum': '0x511acb', 'uniqueId': '0xbb0c74e948bcf2f38780ccde1bf23ff9e7ce7b96eb085d4b1b83eb8036f36fbe:log:171', 'hash': '0xbb0c74e948bcf2f38780ccde1bf23ff9e7ce7b96eb085d4b1b83eb8036f36fbe', 'from': '0xc3e0b6a4bbb29ee400460bda947ef2b1b4d0ae1d', 'to': '0x4200d21922fd4456528c2fc7c4b9f5e587cc7027', 'value': 10141.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0225c339cfee4c350000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:54:24.000Z'}}, {'blockNum': '0x511ad0', 'uniqueId': '0x3ea43288796a3dfae3220c3a0bed5faa0c3f5a63093704167966667d89ad85ba:log:60', 'hash': '0x3ea43288796a3dfae3220c3a0bed5faa0c3f5a63093704167966667d89ad85ba', 'from': '0xa30ec0175bd809b0f50a2f75a8c385c190ca4802', 'to': '0xed5d30e748700a0a52341f1819feabbab67fbb99', 'value': 1900.47297125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x67065c5236eb68e817', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:55:48.000Z'}}, {'blockNum': '0x511ad3', 'uniqueId': '0xe80324da34e944efd217e4846e1da39f3e99cf46158eb79c7a6d4c27a72cca55:log:72', 'hash': '0xe80324da34e944efd217e4846e1da39f3e99cf46158eb79c7a6d4c27a72cca55', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1920b4fcd44c11937ec2c0018c0794b51e976c48', 'value': 18706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03f60de6135d49080000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:57:19.000Z'}}, {'blockNum': '0x511ad5', 'uniqueId': '0xd0c29b9f5de0ac1a643fea277e6342492e662b78a71efe1d75e098fe97b0df87:log:43', 'hash': '0xd0c29b9f5de0ac1a643fea277e6342492e662b78a71efe1d75e098fe97b0df87', 'from': '0x6c8fa126470e9c63790cbc9dbe3a1f4495b2d2d0', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:58:20.000Z'}}, {'blockNum': '0x511ad5', 'uniqueId': '0x53a092516cba7871b32e7060abe6c4d622c0362f38f6a68b8afaa8e9d9949579:log:44', 'hash': '0x53a092516cba7871b32e7060abe6c4d622c0362f38f6a68b8afaa8e9d9949579', 'from': '0xfc6d963ea4e5f4c4232b33181f4ef8ddbe342661', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1501.437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x51649fc48bbc2c8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:58:20.000Z'}}, {'blockNum': '0x511ad7', 'uniqueId': '0xd1c14e2e2520dd9a16729940a5479f044bbb3f967fcdfc027809efd8eb1c2b6d:log:50', 'hash': '0xd1c14e2e2520dd9a16729940a5479f044bbb3f967fcdfc027809efd8eb1c2b6d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x02970b88ea5cd2c186baf970e93fa88f6a8b2aa9', 'value': 15176.747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0336bbacaaa5ef578000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:59:07.000Z'}}, {'blockNum': '0x511ae4', 'uniqueId': '0x202d8abc59d796e6eeb2e92f832af36af9a014d57b2d9e8311998a25b6d08c4f:log:62', 'hash': '0x202d8abc59d796e6eeb2e92f832af36af9a014d57b2d9e8311998a25b6d08c4f', 'from': '0xea2f8d232cf121a041eb13eee7ae53929b1140c9', 'to': '0xf7d76927db1fb880007ffb505a947798b44889b0', 'value': 7003.32038379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x017ba6981fe0174a4c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:01:19.000Z'}}, {'blockNum': '0x511aeb', 'uniqueId': '0x6014991c336654a37be3541df9223efe9d8c10efffdc45902253272f557032c6:log:6', 'hash': '0x6014991c336654a37be3541df9223efe9d8c10efffdc45902253272f557032c6', 'from': '0xed5d30e748700a0a52341f1819feabbab67fbb99', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1900.47297124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x67065c5234975d1000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:02:14.000Z'}}, {'blockNum': '0x511af0', 'uniqueId': '0x2da84575a57a698ccb63efb6a674465e13b2a4eedb3c6b0674aa66106435f0bd:log:80', 'hash': '0x2da84575a57a698ccb63efb6a674465e13b2a4eedb3c6b0674aa66106435f0bd', 'from': '0xdb6432efe3816260cbfd83c012a8f79f78da7767', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:04:02.000Z'}}, {'blockNum': '0x511af1', 'uniqueId': '0x12d0bb5b2517c50d4085cce24d23f33047b4d9677876066dfde8a05f6423df23:log:22', 'hash': '0x12d0bb5b2517c50d4085cce24d23f33047b4d9677876066dfde8a05f6423df23', 'from': '0x4200d21922fd4456528c2fc7c4b9f5e587cc7027', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10141.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0225c339cfee4c350000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:04:27.000Z'}}, {'blockNum': '0x511af2', 'uniqueId': '0xc5df110522f1387bceece942a127a8dd4de4cf911b43509718b3d394fd2ef2c3:log:55', 'hash': '0xc5df110522f1387bceece942a127a8dd4de4cf911b43509718b3d394fd2ef2c3', 'from': '0x1920b4fcd44c11937ec2c0018c0794b51e976c48', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 18706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03f60de6135d49080000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:05:16.000Z'}}, {'blockNum': '0x511af7', 'uniqueId': '0x6902e9a845724e8af4890049b200ffcbc4167ad4d71320d6ca99bd4c9fe852bf:log:29', 'hash': '0x6902e9a845724e8af4890049b200ffcbc4167ad4d71320d6ca99bd4c9fe852bf', 'from': '0x2a0a24fb3888c1a908e0f629f7da54d60f2bc479', 'to': '0x0d377a138e4f9c2724a60db945c73bd7321263e4', 'value': 496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1ae361fc1451c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:06:18.000Z'}}, {'blockNum': '0x511af8', 'uniqueId': '0x00f55a310ce64f2d997d07e479229753ae3184a9306ac8ac106d606254e57b43:log:4', 'hash': '0x00f55a310ce64f2d997d07e479229753ae3184a9306ac8ac106d606254e57b43', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf16e0df4c16ef8ad2beca2d10a07a21944d215c1', 'value': 9258.23039088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01f5e3c1c04c684bc000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:06:53.000Z'}}, {'blockNum': '0x511b02', 'uniqueId': '0xa9b280b829f0f46ae48eae866454e9c77e290af384d36fa4c389085a23bcb4bf:log:6', 'hash': '0xa9b280b829f0f46ae48eae866454e9c77e290af384d36fa4c389085a23bcb4bf', 'from': '0x76e0d0ed6cf4d9c61bb31c9a037ff4f580c0bb0d', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 26452.44146628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0599fd5ea28a4885f000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:08:24.000Z'}}, {'blockNum': '0x511b08', 'uniqueId': '0x65b52bb3a050a62b22d46e1a458b3fe5b77b58108e94a229ccf97c64e5c5067e:log:5', 'hash': '0x65b52bb3a050a62b22d46e1a458b3fe5b77b58108e94a229ccf97c64e5c5067e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe498216ccc589c6a824b7aef2feab9e47dbabcc3', 'value': 11971.955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x028900404a5d29ab8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:10:27.000Z'}}, {'blockNum': '0x511b08', 'uniqueId': '0x78251f0451b0815b5f09c5dfea6326faa233af64037bcadfa17b3785a65c1a2f:log:52', 'hash': '0x78251f0451b0815b5f09c5dfea6326faa233af64037bcadfa17b3785a65c1a2f', 'from': '0xf16e0df4c16ef8ad2beca2d10a07a21944d215c1', 'to': '0x141951f4de87809873d7ca66077c4198b2771525', 'value': 9261.15054485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01f60c4838dccf97b400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:10:27.000Z'}}, {'blockNum': '0x511b08', 'uniqueId': '0xa8713e94c7f78cbfa4d4143d11bf199ff3babef2d1ce50df0cc24562caa5dd50:log:80', 'hash': '0xa8713e94c7f78cbfa4d4143d11bf199ff3babef2d1ce50df0cc24562caa5dd50', 'from': '0xd8565b84f13b7bb3e217f614a938ea5a041dcfbf', 'to': '0x7ab2eca02a46417d57fb52846f6d3fe4b2a80bc0', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:10:27.000Z'}}, {'blockNum': '0x511b13', 'uniqueId': '0xee88927ead7be06d8a067eb6967e5319d2e03a3843de905e3323f55201c0a563:log:4', 'hash': '0xee88927ead7be06d8a067eb6967e5319d2e03a3843de905e3323f55201c0a563', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8ebe3fe0bef15d658a9db26aad11465102f71cc7', 'value': 21229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x047ed38eafefff940000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:12:09.000Z'}}, {'blockNum': '0x511b13', 'uniqueId': '0x331a5288d217c5b4be03c440ee6bc7e0e41282e94445997a2b3fac78cb2f52fe:log:5', 'hash': '0x331a5288d217c5b4be03c440ee6bc7e0e41282e94445997a2b3fac78cb2f52fe', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xffc1e830d90b28ae23a07f97ad1e3f78fbb4ffb4', 'value': 52272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b11abb96b1312c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:12:09.000Z'}}, {'blockNum': '0x511b16', 'uniqueId': '0x25b45fd754d721c5af59d7e881bfda5ccdbb5d67b603d632b277cfbd91539df9:log:10', 'hash': '0x25b45fd754d721c5af59d7e881bfda5ccdbb5d67b603d632b277cfbd91539df9', 'from': '0xebdc726434f2204b60b852ee0d79931e5bc0af98', 'to': '0x3752fa534c018f62e575decacbfdb38df904ea8b', 'value': 11461.466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x026d53cb098cf1490000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:13:14.000Z'}}, {'blockNum': '0x511b19', 'uniqueId': '0xb14e6b9e3a24ae6d14d2a628a0148884978629a75c6a36f8cf4c4439d8b77d5a:log:14', 'hash': '0xb14e6b9e3a24ae6d14d2a628a0148884978629a75c6a36f8cf4c4439d8b77d5a', 'from': '0x7ab2eca02a46417d57fb52846f6d3fe4b2a80bc0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:14:02.000Z'}}, {'blockNum': '0x511b1c', 'uniqueId': '0x697f5ec6ba504abf11d692a2348e72c1eb3fa9417958825ecd4313c9c275c3ca:log:1', 'hash': '0x697f5ec6ba504abf11d692a2348e72c1eb3fa9417958825ecd4313c9c275c3ca', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'value': 42623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x090698f321aae29c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:14:24.000Z'}}, {'blockNum': '0x511b1c', 'uniqueId': '0x6f166ad2824776f4de5e3244c524b62652ff795a11f1747591096f9f98f49cc4:log:2', 'hash': '0x6f166ad2824776f4de5e3244c524b62652ff795a11f1747591096f9f98f49cc4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x02970b88ea5cd2c186baf970e93fa88f6a8b2aa9', 'value': 2404.532, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x825995ba3e53920000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:14:24.000Z'}}, {'blockNum': '0x511b20', 'uniqueId': '0x6c05008c2d1a7dae2ef9183cc1e91b2264247623d502cfa21ed09dd576984488:log:31', 'hash': '0x6c05008c2d1a7dae2ef9183cc1e91b2264247623d502cfa21ed09dd576984488', 'from': '0xe6c29560eadafb9187a6eb21da3e3c7fde1d4588', 'to': '0x25135fc021e6c4146b80ec5cc285d89556fec7fb', 'value': 1800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6194049f30f7200000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:15:17.000Z'}}, {'blockNum': '0x511b2e', 'uniqueId': '0xfa168a57bc9bc9e3b74abb6ca064cd500d8371ee41fe21d0ad4f1a3096ab6bff:log:59', 'hash': '0xfa168a57bc9bc9e3b74abb6ca064cd500d8371ee41fe21d0ad4f1a3096ab6bff', 'from': '0xffc1e830d90b28ae23a07f97ad1e3f78fbb4ffb4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 52272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b11abb96b1312c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:18:28.000Z'}}, {'blockNum': '0x511b2f', 'uniqueId': '0xff9bcd9e95c2ecc658df7e613697edd4c8700affbc7469fa0ec69fda6e2c2a74:log:9', 'hash': '0xff9bcd9e95c2ecc658df7e613697edd4c8700affbc7469fa0ec69fda6e2c2a74', 'from': '0xf7d76927db1fb880007ffb505a947798b44889b0', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 7003.32038379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x017ba6981fe0174a4c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:19:08.000Z'}}, {'blockNum': '0x511b2f', 'uniqueId': '0xba41a6871983a7bbb367d23af07d0f8c18d2fc70805e921434013898bee4f1d0:log:23', 'hash': '0xba41a6871983a7bbb367d23af07d0f8c18d2fc70805e921434013898bee4f1d0', 'from': '0x0d377a138e4f9c2724a60db945c73bd7321263e4', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1ae361fc1451c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:19:08.000Z'}}, {'blockNum': '0x511b35', 'uniqueId': '0xa71b0cfeb9e4f5f441a1b00eb2a10e0a211d1adeaa8401037aa1087c4971e922:log:132', 'hash': '0xa71b0cfeb9e4f5f441a1b00eb2a10e0a211d1adeaa8401037aa1087c4971e922', 'from': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 42623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x090698f321aae29c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:20:29.000Z'}}, {'blockNum': '0x511b44', 'uniqueId': '0x7676e468f5475741a054f4e3e15639c01c5bc4dd8cb3710b5ac8f5af26254dfa:log:50', 'hash': '0x7676e468f5475741a054f4e3e15639c01c5bc4dd8cb3710b5ac8f5af26254dfa', 'from': '0x3752fa534c018f62e575decacbfdb38df904ea8b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11461.466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x026d53cb098cf1490000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:24:56.000Z'}}, {'blockNum': '0x511b45', 'uniqueId': '0xe6231405498a02632b296814e423479e4e72da9aa60445d70192a1b1f8a6c828:log:15', 'hash': '0xe6231405498a02632b296814e423479e4e72da9aa60445d70192a1b1f8a6c828', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x917551e4b3faa9dafc2a0b2e8bf827eac6c7239e', 'value': 250.05797126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0d8e405fff3f235800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:25:08.000Z'}}, {'blockNum': '0x511b45', 'uniqueId': '0x28503507496322c1a649ce26eb0c11e824b13c8e02f3fb25dc9c6d1e5e1795d3:log:81', 'hash': '0x28503507496322c1a649ce26eb0c11e824b13c8e02f3fb25dc9c6d1e5e1795d3', 'from': '0x537149d508102cd78db70a30fa9dbddc7c2a7a89', 'to': '0x94ca04d4fb6b17d2237df0b767e68fb9319dd93a', 'value': 245.77177425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0d52c4be8694bf2400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:25:08.000Z'}}, {'blockNum': '0x511b53', 'uniqueId': '0x795b2e7d21b49051ce5052ee9efdfa981fc02476ffec0d46a525f7414b88a550:log:32', 'hash': '0x795b2e7d21b49051ce5052ee9efdfa981fc02476ffec0d46a525f7414b88a550', 'from': '0x3aec4ce5b5373d9db0b4f1d59aa0a619a68f2f93', 'to': '0xb0904965fd37f2577c838f4d282c4a926ace42ce', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:29:42.000Z'}}, {'blockNum': '0x511b53', 'uniqueId': '0x18a838432fc8d79a269afee86a41bcd9468702ea62a66c9dbdf4d1340c47dd61:log:54', 'hash': '0x18a838432fc8d79a269afee86a41bcd9468702ea62a66c9dbdf4d1340c47dd61', 'from': '0x141951f4de87809873d7ca66077c4198b2771525', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 9261.15054485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01f60c4838dccf97b400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:29:42.000Z'}}, {'blockNum': '0x511b53', 'uniqueId': '0xb8727c6cd9d0f63c8de8c7a43cf08303949d50a6c1850d05d2cdab5103c44281:log:55', 'hash': '0xb8727c6cd9d0f63c8de8c7a43cf08303949d50a6c1850d05d2cdab5103c44281', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x6ebb62c6c9948d8c4d79ed13dc2ca1a16b4234f2', 'value': 3284.95614452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xb213eca0ff53595000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:29:42.000Z'}}, {'blockNum': '0x511b84', 'uniqueId': '0x98e035ec1694a72111fd70a6aad6ab58ceeb62ad88be653f9aef87872b84499e:log:14', 'hash': '0x98e035ec1694a72111fd70a6aad6ab58ceeb62ad88be653f9aef87872b84499e', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xd5bc4c9aa43d6a710c5a1fbd5a38c46e86b2c814', 'value': 967.04032355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x346c6162ab64912c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:41:40.000Z'}}, {'blockNum': '0x511b8b', 'uniqueId': '0xb93a71cc192bc5238868f9731e7b70beb14651580d48e617f47b45f2735a633b:log:8', 'hash': '0xb93a71cc192bc5238868f9731e7b70beb14651580d48e617f47b45f2735a633b', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xd5bc4c9aa43d6a710c5a1fbd5a38c46e86b2c814', 'value': 309.6728711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x10c9930b8c5ad45800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:44:14.000Z'}}, {'blockNum': '0x511ba5', 'uniqueId': '0x8689816dcb8880c3c4a75bd2885089ace2efe635f3431c00c783f2fdfd904313:log:4', 'hash': '0x8689816dcb8880c3c4a75bd2885089ace2efe635f3431c00c783f2fdfd904313', 'from': '0xb7ddaba243659e42d2813fcb9f30aca983478b5c', 'to': '0xeeb9c37797dbc50350bd2844d452dd83b74a72db', 'value': 25053.49946357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x054e27263efce16d33ff', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:48:40.000Z'}}, {'blockNum': '0x511bcf', 'uniqueId': '0x13260797c2f3026a8178f31fd40dac658eb4663114833de1e7c6e6ee92798cae:log:0', 'hash': '0x13260797c2f3026a8178f31fd40dac658eb4663114833de1e7c6e6ee92798cae', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4ce1965132dd5ba325a26fd20ed474da2a8175d2', 'value': 19971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043aa14ce11b6e2c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:58:48.000Z'}}, {'blockNum': '0x511bcf', 'uniqueId': '0x7620586725f2d862bb073adef649160633c57975b535dfd1d8433a0fefd116c2:log:12', 'hash': '0x7620586725f2d862bb073adef649160633c57975b535dfd1d8433a0fefd116c2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x356f5335dc64b0f760fa6e3785b592716c8969d8', 'value': 9971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021c876c1760bbec0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:58:48.000Z'}}, {'blockNum': '0x511bcf', 'uniqueId': '0x4fb7b038feb1e6132722d7bbdeaf97f513fe72e449f945bb4b2180d483d92a4a:log:29', 'hash': '0x4fb7b038feb1e6132722d7bbdeaf97f513fe72e449f945bb4b2180d483d92a4a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4ce1965132dd5ba325a26fd20ed474da2a8175d2', 'value': 21383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04872cbc9802b1bc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:58:48.000Z'}}, {'blockNum': '0x511bdc', 'uniqueId': '0xdc24997efecfae5adeeafb0fba0f4e47fa205c863438560a23f8e70351a511d1:log:7', 'hash': '0xdc24997efecfae5adeeafb0fba0f4e47fa205c863438560a23f8e70351a511d1', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x4a350ba502d6aac43bc6379b6886e8083a8f12cf', 'value': 160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08ac7230489e800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:01:16.000Z'}}, {'blockNum': '0x511beb', 'uniqueId': '0x9979c5e81fe41c40aa8688575f8a99c169a8d1874a629f8baa1500e6da9a9181:log:8', 'hash': '0x9979c5e81fe41c40aa8688575f8a99c169a8d1874a629f8baa1500e6da9a9181', 'from': '0x4ce1965132dd5ba325a26fd20ed474da2a8175d2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08c1ce09791e1fe80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:04:13.000Z'}}, {'blockNum': '0x511bf0', 'uniqueId': '0xd8dd00cd862d938dd1c53a526779dfdb5425e1e9ea8b4c26513c371b7477fa82:log:11', 'hash': '0xd8dd00cd862d938dd1c53a526779dfdb5425e1e9ea8b4c26513c371b7477fa82', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'value': 42447.2739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08fd12429cc119d6c000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:06:53.000Z'}}, {'blockNum': '0x511bf6', 'uniqueId': '0x4f7727f21376ff4100912a7463d7aa61bae485ea1449f24636399d03221230d4:log:7', 'hash': '0x4f7727f21376ff4100912a7463d7aa61bae485ea1449f24636399d03221230d4', 'from': '0x081dfeb7bc3be7bf3be0a8155e0118fae33b45f2', 'to': '0xfaa932a9ac5bc05fa224263e08bddf56a2de994c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:08:42.000Z'}}, {'blockNum': '0x511c01', 'uniqueId': '0xbf1096e1d10b2b1b4b0cae4d05fd5b08b7d0ccb67a8b5cc7e0fb3c76c16aea0e:log:46', 'hash': '0xbf1096e1d10b2b1b4b0cae4d05fd5b08b7d0ccb67a8b5cc7e0fb3c76c16aea0e', 'from': '0x68ee2a61167172ea0ad6de979aee2e00d139a6ae', 'to': '0x1bcfc460f2e43a15b6229ca2505cac617ba83d40', 'value': 9065.85, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01eb75f14e116f190000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:12:06.000Z'}}, {'blockNum': '0x511c06', 'uniqueId': '0x14146b9acc94da3fde18fe5f6c34e917cdfabc295e1d1768a3342c68e63e69ad:log:33', 'hash': '0x14146b9acc94da3fde18fe5f6c34e917cdfabc295e1d1768a3342c68e63e69ad', 'from': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42447.2739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08fd12429cc119d6c000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:14:13.000Z'}}, {'blockNum': '0x511c06', 'uniqueId': '0x629138572064bfeee14170c9c76714c35f323080f187fb70df070939a473d677:log:35', 'hash': '0x629138572064bfeee14170c9c76714c35f323080f187fb70df070939a473d677', 'from': '0x1bcfc460f2e43a15b6229ca2505cac617ba83d40', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9065.85, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01eb75f14e116f190000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:14:13.000Z'}}, {'blockNum': '0x511c0c', 'uniqueId': '0x7ba8c7af158eac1fb7a6930780990a80fe8276da090d580091d4b707220f0327:log:62', 'hash': '0x7ba8c7af158eac1fb7a6930780990a80fe8276da090d580091d4b707220f0327', 'from': '0x356f5335dc64b0f760fa6e3785b592716c8969d8', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 9971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021c876c1760bbec0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:15:22.000Z'}}, {'blockNum': '0x511c12', 'uniqueId': '0x5c34dc02fcf12b0cdf7d3c5b2803e4cfb3cf5185aa34965612d5e0364b92d249:log:29', 'hash': '0x5c34dc02fcf12b0cdf7d3c5b2803e4cfb3cf5185aa34965612d5e0364b92d249', 'from': '0xce49bb2a0e34dac375db06cada4e3609276d429f', 'to': '0xbc577f7fd43fd8ca34daabb3f0297a52e6047b54', 'value': 3580.91908589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xc21f3c381831f61400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:16:25.000Z'}}, {'blockNum': '0x511c13', 'uniqueId': '0x86f1dc37dbffc5ffa5be58caacfea9a887a155927b53065e14c1c92fe2138711:log:40', 'hash': '0x86f1dc37dbffc5ffa5be58caacfea9a887a155927b53065e14c1c92fe2138711', 'from': '0xf252ac1d1383d3b54e6bd2fe07e2089e13f2caeb', 'to': '0xa515c4c92700fb29fe529b6730c7a2347660f9b0', 'value': 24292.37128481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0524e45fc109179c6400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:17:06.000Z'}}, {'blockNum': '0x511c18', 'uniqueId': '0x794722cbe295b02fbddbd40bc9b1f00b860adf762a83d5e79413d40e4d51c16f:log:2', 'hash': '0x794722cbe295b02fbddbd40bc9b1f00b860adf762a83d5e79413d40e4d51c16f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x66808d2e4a79dcb1d0f3cf7c8beae8aca9798f04', 'value': 2830.561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x9971ecc88b8a768000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:18:36.000Z'}}, {'blockNum': '0x511c19', 'uniqueId': '0x2a815338e4967b5297fd503e3750db063d6cb7329d1796b00415e967616136cf:log:0', 'hash': '0x2a815338e4967b5297fd503e3750db063d6cb7329d1796b00415e967616136cf', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4ce1965132dd5ba325a26fd20ed474da2a8175d2', 'value': 19971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043aa14ce11b6e2c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:18:58.000Z'}}, {'blockNum': '0x511c19', 'uniqueId': '0x71a9ef1ccf2eccdeb92e8076b4368cd4caa2638a656cf3ab1779fca59123eac9:log:1', 'hash': '0x71a9ef1ccf2eccdeb92e8076b4368cd4caa2638a656cf3ab1779fca59123eac9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x545862068543ca4dc3de7a2d0f9dc148e7f41222', 'value': 22966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04dcfd4658eac5180000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:18:58.000Z'}}, {'blockNum': '0x511c35', 'uniqueId': '0x7630d6dd8ca37fd0e63688cc5e4897b93af1f3a97df79b4b3837839573d8dbe7:log:118', 'hash': '0x7630d6dd8ca37fd0e63688cc5e4897b93af1f3a97df79b4b3837839573d8dbe7', 'from': '0x66808d2e4a79dcb1d0f3cf7c8beae8aca9798f04', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2830.561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x9971ecc88b8a768000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:26:26.000Z'}}, {'blockNum': '0x511c39', 'uniqueId': '0x7c69b477aa4319aee130b4f38906c34f6c81724061c2dea2389c52b1fafc8d97:log:4', 'hash': '0x7c69b477aa4319aee130b4f38906c34f6c81724061c2dea2389c52b1fafc8d97', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4ab2737e9ab6731e95628d7e4592a4f012462558', 'value': 52334.34509441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b150cefb01f36fde400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:27:22.000Z'}}, {'blockNum': '0x511c4f', 'uniqueId': '0x26f7e164727f943d7f5366411b0a8d0597d48789b6e16dd42e02cc142101c0b0:log:11', 'hash': '0x26f7e164727f943d7f5366411b0a8d0597d48789b6e16dd42e02cc142101c0b0', 'from': '0xa515c4c92700fb29fe529b6730c7a2347660f9b0', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 24292.37128481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0524e45fc109179c6400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:33:14.000Z'}}, {'blockNum': '0x511c51', 'uniqueId': '0x2b9ca59d8700e599fada57e95cfb0ff1cc7d38d881398c8c02a4f25781e2b42e:log:40', 'hash': '0x2b9ca59d8700e599fada57e95cfb0ff1cc7d38d881398c8c02a4f25781e2b42e', 'from': '0x4ce1965132dd5ba325a26fd20ed474da2a8175d2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043aa14ce11b6e2c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:34:23.000Z'}}, {'blockNum': '0x511c53', 'uniqueId': '0x7d3ba5a37baee22081f889afb99b7cc7d5f694477b9d89f56c6e40d8f5bcea64:log:8', 'hash': '0x7d3ba5a37baee22081f889afb99b7cc7d5f694477b9d89f56c6e40d8f5bcea64', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'value': 43137.0085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x09227640291571fb4000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:35:08.000Z'}}, {'blockNum': '0x511c57', 'uniqueId': '0x2f32e7b1881d60097366c294153103cb2efd1e25c20c6c74f58578e42e1860f6:log:6', 'hash': '0x2f32e7b1881d60097366c294153103cb2efd1e25c20c6c74f58578e42e1860f6', 'from': '0xe79d9d478c2c41b599f786c1eb4dc52389cbaa3f', 'to': '0x21ae177b0c7e178d9095e44203bcf8d74c2f4fe9', 'value': 73741.7893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0f9d8ce78b9b094b4000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:36:09.000Z'}}, {'blockNum': '0x511c58', 'uniqueId': '0x20bc9289cc3eab8b8ac237f69fe9d8a9cc2f76a2f0e28ff18d39f26439405efe:log:27', 'hash': '0x20bc9289cc3eab8b8ac237f69fe9d8a9cc2f76a2f0e28ff18d39f26439405efe', 'from': '0x5bdddbdd3eb417299d03098fc3182dc41235357d', 'to': '0x3ee8d1b0540ce0e01872bd09141c36218b74eafa', 'value': 165.64163688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08fabd4f22a6a4a000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:36:24.000Z'}}, {'blockNum': '0x511c5a', 'uniqueId': '0x2bfd66f838b15d3427736dfa35e845b182c500e3e6d7c5e5f9ce99a4bfbee1c4:log:6', 'hash': '0x2bfd66f838b15d3427736dfa35e845b182c500e3e6d7c5e5f9ce99a4bfbee1c4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 19777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04301d026cf694640000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:37:08.000Z'}}, {'blockNum': '0x511c5b', 'uniqueId': '0x25bd92252a1afd4b2d72c9f453161b343ea79c68b5964f3e6e47344088928d32:log:604', 'hash': '0x25bd92252a1afd4b2d72c9f453161b343ea79c68b5964f3e6e47344088928d32', 'from': '0xdeaa9ebc8d35f44c767be044b0d0dc249a4a5acb', 'to': '0xe13fb37a177b56bca4657fd3353248a01781422f', 'value': 14186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0301064c3f59cb680000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:37:10.000Z'}}, {'blockNum': '0x511c5c', 'uniqueId': '0xe02e317fc1c748c833451ef53e738423b8ea8d6a4fbc400f767b4131e0251057:log:22', 'hash': '0xe02e317fc1c748c833451ef53e738423b8ea8d6a4fbc400f767b4131e0251057', 'from': '0xd3f7d8cb7c5207428ac8d58612a0410a1f286176', 'to': '0x4d2cae3d2ef815518c4ec03d529a70a8e08ec633', 'value': 7005.23760683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x017bc133781285af4c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:37:46.000Z'}}, {'blockNum': '0x511c76', 'uniqueId': '0x9616d19d9670c1169decd23c7ab1985a1538aa0666103dc976e3b4deea938d0a:log:37', 'hash': '0x9616d19d9670c1169decd23c7ab1985a1538aa0666103dc976e3b4deea938d0a', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04301d026cf694640000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:44:17.000Z'}}, {'blockNum': '0x511c76', 'uniqueId': '0x474ad9f6d0da3825ba3067d68e2ca67d2c429e311ce6e22b24d6ce37d633a684:log:38', 'hash': '0x474ad9f6d0da3825ba3067d68e2ca67d2c429e311ce6e22b24d6ce37d633a684', 'from': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 43137.0085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x09227640291571fb4000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:44:17.000Z'}}, {'blockNum': '0x511c76', 'uniqueId': '0x6cff20e5de1e7db3345c405b40a7ef349b6bfbb30cf45c5e3fa094b0561f7c4c:log:39', 'hash': '0x6cff20e5de1e7db3345c405b40a7ef349b6bfbb30cf45c5e3fa094b0561f7c4c', 'from': '0xe13fb37a177b56bca4657fd3353248a01781422f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0301064c3f59cb680000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:44:17.000Z'}}, {'blockNum': '0x511c7b', 'uniqueId': '0x59f06811273acaa143b7b273115bc9b1babb3c8ce604d5c7f46e53b3f787b868:log:11', 'hash': '0x59f06811273acaa143b7b273115bc9b1babb3c8ce604d5c7f46e53b3f787b868', 'from': '0x343b20f9706ea383832cdce63e5339f6e01c6167', 'to': '0x26b6e11ea45a7518b45540d3146391f5bee201fc', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:45:28.000Z'}}, {'blockNum': '0x511c86', 'uniqueId': '0x03190494eec230fdd0ece09334b4c7a830ceb37fc47e8a63416ef93c76091b45:log:8', 'hash': '0x03190494eec230fdd0ece09334b4c7a830ceb37fc47e8a63416ef93c76091b45', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xac9391eb80f2c7d7e0326d26a46c008280a685ab', 'value': 1934.17584952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x68da14ff6f82fde000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:47:26.000Z'}}, {'blockNum': '0x511c92', 'uniqueId': '0x7d56698c443844d01fa0c31f95763de56f6360477109f2ab7c04581e8ab319bc:log:2', 'hash': '0x7d56698c443844d01fa0c31f95763de56f6360477109f2ab7c04581e8ab319bc', 'from': '0x86b891e1a998537d7abbf4ef98bf05854a2da00b', 'to': '0x5514a560954cf12017531da9fedbfc0858f97349', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:49:37.000Z'}}, {'blockNum': '0x511c92', 'uniqueId': '0x3567f126e48247755ee966098b83abb4b185eb66aa5f04325cf22a5796fd3f3c:log:17', 'hash': '0x3567f126e48247755ee966098b83abb4b185eb66aa5f04325cf22a5796fd3f3c', 'from': '0x8ebe3fe0bef15d658a9db26aad11465102f71cc7', 'to': '0x1f8b1a70c4ba7764364dce9da1d848228e2f6797', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:49:37.000Z'}}, {'blockNum': '0x511ca5', 'uniqueId': '0x593e0205792652282f746e0a97a3474911b004c97431548fd6928bc03f32e96e:log:29', 'hash': '0x593e0205792652282f746e0a97a3474911b004c97431548fd6928bc03f32e96e', 'from': '0x343b20f9706ea383832cdce63e5339f6e01c6167', 'to': '0xfb4eaa727c53156843d62dbcbada2d04a4cc8b20', 'value': 4800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01043561a88293000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:53:53.000Z'}}, {'blockNum': '0x511ca8', 'uniqueId': '0xa9fd73c4f307f414b23408054f97589722d9b733293b8db9841aa32880a770c6:log:3', 'hash': '0xa9fd73c4f307f414b23408054f97589722d9b733293b8db9841aa32880a770c6', 'from': '0x5514a560954cf12017531da9fedbfc0858f97349', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:54:22.000Z'}}, {'blockNum': '0x511ca8', 'uniqueId': '0x6953913f92893f000be02e09b734200bbb845e90ba7f46b82eff23a5642c84b7:log:4', 'hash': '0x6953913f92893f000be02e09b734200bbb845e90ba7f46b82eff23a5642c84b7', 'from': '0x1f8b1a70c4ba7764364dce9da1d848228e2f6797', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:54:22.000Z'}}, {'blockNum': '0x511ca8', 'uniqueId': '0x89b69546d5d0fb0d25a52a02202c968b850f434a544d6308b50c7c5f6492ae82:log:15', 'hash': '0x89b69546d5d0fb0d25a52a02202c968b850f434a544d6308b50c7c5f6492ae82', 'from': '0x4d2cae3d2ef815518c4ec03d529a70a8e08ec633', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 7005.23760683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x017bc133781285af4c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:54:22.000Z'}}, {'blockNum': '0x511cbb', 'uniqueId': '0xf179996837629d3116f2676b22c105b029e37581c4252f6dc54f6f830cb26a3a:log:50', 'hash': '0xf179996837629d3116f2676b22c105b029e37581c4252f6dc54f6f830cb26a3a', 'from': '0x7845e1b7f505310cb8f6191df9641dc4add7c887', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:59:45.000Z'}}, {'blockNum': '0x511cbd', 'uniqueId': '0xf0e1be5549d256f2e26a33aaf720a0b40585aab56f7373cf56686fd774578507:log:20', 'hash': '0xf0e1be5549d256f2e26a33aaf720a0b40585aab56f7373cf56686fd774578507', 'from': '0xca6c813d4d7272ce494dfeedc7872d1c76132cce', 'to': '0x6759c1e3bc99d49705bdebabceed4742f4bf80d1', 'value': 98.4223205807399, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0555e2531ab89ea260', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:59:53.000Z'}}, {'blockNum': '0x511cd8', 'uniqueId': '0x1b91d8ef2020f689e5e3eabb5aceeacd4514fbcdc060af40cf263d1edd787f31:log:23', 'hash': '0x1b91d8ef2020f689e5e3eabb5aceeacd4514fbcdc060af40cf263d1edd787f31', 'from': '0xfb4eaa727c53156843d62dbcbada2d04a4cc8b20', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 4800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01043561a88293000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:05:04.000Z'}}, {'blockNum': '0x511cd9', 'uniqueId': '0xfb2104fc9e65bd313eb467ce7882f70cb6d546708a1bcdb75dae2185f8ffcac5:log:31', 'hash': '0xfb2104fc9e65bd313eb467ce7882f70cb6d546708a1bcdb75dae2185f8ffcac5', 'from': '0x26b6e11ea45a7518b45540d3146391f5bee201fc', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:05:55.000Z'}}, {'blockNum': '0x511ce2', 'uniqueId': '0xa99fac0c2ca9d46a3e878efbaed81edc0b867b1cb5524aca46015cbd267fc1f6:log:12', 'hash': '0xa99fac0c2ca9d46a3e878efbaed81edc0b867b1cb5524aca46015cbd267fc1f6', 'from': '0x699f3f8608f7c52bb5c2a091988b58e7ca7a5d68', 'to': '0x1fc12bc700793930a9b37c5b03ec5e96d44bd3bb', 'value': 66773.56752875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0e23cd66bddffdc64c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:07:52.000Z'}}, {'blockNum': '0x511ce6', 'uniqueId': '0xa905ed0935bfd01465ee89ede943c80c906dceb0529635ec1ed38c5e0657837a:log:48', 'hash': '0xa905ed0935bfd01465ee89ede943c80c906dceb0529635ec1ed38c5e0657837a', 'from': '0xec1c6d79c2398537dfac9943eeebbf0082648923', 'to': '0x8f9f70952819953c26605adfe419b7608e20a0ea', 'value': 10942.22799999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02512deb179510f61c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:08:32.000Z'}}, {'blockNum': '0x511ce7', 'uniqueId': '0xb94eee692d315bc75c645b47c8b4d8b633e0c79f34d036fa0cb1c4ca803a954f:log:30', 'hash': '0xb94eee692d315bc75c645b47c8b4d8b633e0c79f34d036fa0cb1c4ca803a954f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xca85bea0232e1d10267f13ba966d38939fe49607', 'value': 30145.54129789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0662316cec8209825400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:09:06.000Z'}}, {'blockNum': '0x511cf6', 'uniqueId': '0x91ab7609a44aefeccbc610b51270dd08f01931a103d5bd595d1c44f480d1916f:log:104', 'hash': '0x91ab7609a44aefeccbc610b51270dd08f01931a103d5bd595d1c44f480d1916f', 'from': '0x4671752733db38620cfaadee5c0973c25002ddb3', 'to': '0x887a46f731a77c52beede69d416c2f4ed72ac6b7', 'value': 555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1e162c177be5cc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:13:28.000Z'}}, {'blockNum': '0x511cfa', 'uniqueId': '0x12582806a0c947655a2fc5ed54aa6582bd98f37c0078287182dc71d35ad30732:log:42', 'hash': '0x12582806a0c947655a2fc5ed54aa6582bd98f37c0078287182dc71d35ad30732', 'from': '0x8f9f70952819953c26605adfe419b7608e20a0ea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10942.22799999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02512deb179510f61c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:13:55.000Z'}}, {'blockNum': '0x511d04', 'uniqueId': '0x01a351b80db7079465273c9cdf2a9295d616c09b1a2194059ab022644f4aef37:log:5', 'hash': '0x01a351b80db7079465273c9cdf2a9295d616c09b1a2194059ab022644f4aef37', 'from': '0x1fc12bc700793930a9b37c5b03ec5e96d44bd3bb', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 66773.56752875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0e23cd66bddffdc64c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:16:26.000Z'}}, {'blockNum': '0x511d23', 'uniqueId': '0xcbc80fd53f6cc35dee92c72eeed592fe2f25dc2a47693d3c6f0410a1bc86dc8b:log:13', 'hash': '0xcbc80fd53f6cc35dee92c72eeed592fe2f25dc2a47693d3c6f0410a1bc86dc8b', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x00b6a5d252d5d02115470a112664543325d95b2b', 'value': 116.8205725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0655360bbf30444800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:25:13.000Z'}}, {'blockNum': '0x511d2e', 'uniqueId': '0xfbea5d751edf474fec153b35fcf805a1bc44c20ef524b99e2120bd9c802bea06:log:28', 'hash': '0xfbea5d751edf474fec153b35fcf805a1bc44c20ef524b99e2120bd9c802bea06', 'from': '0x51b6710ab29e79396cc97b1a2dbb0f4791147fab', 'to': '0x3dc06a4267f2b276eb9eb40c8a2d1ef12625a2c3', 'value': 4819.766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x010547b098c9095f0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:27:50.000Z'}}, {'blockNum': '0x511d4b', 'uniqueId': '0x5aa2a8906f7f6a1190892f9e433b60860a5e000192e9c9815fc4a62f6758375d:log:31', 'hash': '0x5aa2a8906f7f6a1190892f9e433b60860a5e000192e9c9815fc4a62f6758375d', 'from': '0x559932afb982e0abc4c5afcb3180c4ddd3d4a3c0', 'to': '0x8ee9575caf4dbb317550a44c2b9e4b7c04396f5a', 'value': 1682.75777716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5b38f492b1b7bc5000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:33:34.000Z'}}, {'blockNum': '0x511d4e', 'uniqueId': '0x01c6d4478f223d7a5eef4cf8746e2927a61ff3176daee539de6d4d65e188d9ce:log:57', 'hash': '0x01c6d4478f223d7a5eef4cf8746e2927a61ff3176daee539de6d4d65e188d9ce', 'from': '0x3dc06a4267f2b276eb9eb40c8a2d1ef12625a2c3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 4819.766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x010547b098c9095f0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:34:31.000Z'}}, {'blockNum': '0x511d57', 'uniqueId': '0xcc450aae7e23c674a5e924a95b6226162b7de221be245daeb968aad109b4e4a1:log:19', 'hash': '0xcc450aae7e23c674a5e924a95b6226162b7de221be245daeb968aad109b4e4a1', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'value': 84585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x11e95cae857690040000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:36:21.000Z'}}, {'blockNum': '0x511d7a', 'uniqueId': '0xb198b461e46acebff9d742f19060ce4ac660794b5009b2408dbe998a8c8db68a:log:25', 'hash': '0xb198b461e46acebff9d742f19060ce4ac660794b5009b2408dbe998a8c8db68a', 'from': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x11e95cae857690040000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:44:02.000Z'}}, {'blockNum': '0x511d8f', 'uniqueId': '0xd82fbb2fd30a9afc7415b09351c62b97664c4689448ae01b698efa6059167674:log:6', 'hash': '0xd82fbb2fd30a9afc7415b09351c62b97664c4689448ae01b698efa6059167674', 'from': '0x8ee9575caf4dbb317550a44c2b9e4b7c04396f5a', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1682.75777716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5b38f492b1b7bc5000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:47:32.000Z'}}, {'blockNum': '0x511d94', 'uniqueId': '0x0057e55f218235cfd1968be513bc9c4d4ad7de93275e8150ca06bed8f3a287ad:log:3', 'hash': '0x0057e55f218235cfd1968be513bc9c4d4ad7de93275e8150ca06bed8f3a287ad', 'from': '0x8658fff128fd1cc9b0ff5a552d2a175db27bafb5', 'to': '0xc133d10c675d7ff8d3a195d7d0cc10829dacfa7e', 'value': 6037.08751914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0147456b68cc1bf36800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:48:32.000Z'}}, {'blockNum': '0x511da9', 'uniqueId': '0xa705c9ab36c49fc3888e81cf81308b6c77b8f59443e87a8a0827df789d1d084d:log:13', 'hash': '0xa705c9ab36c49fc3888e81cf81308b6c77b8f59443e87a8a0827df789d1d084d', 'from': '0x4561b26249db5f6d12a415b9e97510b4177bb458', 'to': '0xe286d83145974009d59ea6f25bb9919a99bc59db', 'value': 40534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08955a4041a9f3980000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:53:42.000Z'}}, {'blockNum': '0x511dad', 'uniqueId': '0xddda69a153d87b25b7748aed151ca6cfe8e3fe528be32060c0daf21b352464dd:log:1', 'hash': '0xddda69a153d87b25b7748aed151ca6cfe8e3fe528be32060c0daf21b352464dd', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1a3587f90629664b7294168c4f09533eb4450ccc', 'value': 8723.596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01d8e836d668528e0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:54:29.000Z'}}, {'blockNum': '0x511dde', 'uniqueId': '0x682d92398282ff39cc8ccf136fb71aed95799a1da1a821035515395e08fe4def:log:15', 'hash': '0x682d92398282ff39cc8ccf136fb71aed95799a1da1a821035515395e08fe4def', 'from': '0xe286d83145974009d59ea6f25bb9919a99bc59db', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08955a4041a9f3980000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:04:19.000Z'}}, {'blockNum': '0x511de7', 'uniqueId': '0x64365d2430e895dc2dc5a50f81faab3ac5874eb4ec0ccafd33ad33a36bb7743d:log:22', 'hash': '0x64365d2430e895dc2dc5a50f81faab3ac5874eb4ec0ccafd33ad33a36bb7743d', 'from': '0x5b7afb0b2daccef8545a2ecc9c405fbfd076f186', 'to': '0xfc70bcae87d607d22488837e14cb6b94a7082659', 'value': 9858.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021668a5d2897fdf0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:08:22.000Z'}}, {'blockNum': '0x511de9', 'uniqueId': '0xdfa8cf5417cba85d854c76c04569d66b0b617d991050cc5e17b4acecfe042f4e:log:103', 'hash': '0xdfa8cf5417cba85d854c76c04569d66b0b617d991050cc5e17b4acecfe042f4e', 'from': '0x3811055964ee0156b7c2e7b865e32d157c230671', 'to': '0x173c2d042fb346a7424df858e847cb5185677593', 'value': 525.46557368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1c7c4cbb39dd400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:09:10.000Z'}}, {'blockNum': '0x511dea', 'uniqueId': '0x1fb6a4ad1f4fcb6201c941b0f116bdd843c3fb9b4367a5a854d260142433e121:log:2', 'hash': '0x1fb6a4ad1f4fcb6201c941b0f116bdd843c3fb9b4367a5a854d260142433e121', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4cf73da4c5ec89d60822b50f769277a9ce498525', 'value': 7825.126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01a833702db4a1570000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:09:36.000Z'}}, {'blockNum': '0x511df8', 'uniqueId': '0x742463e72bf3456cb30ba05806c6d07073e07c408d989648b6ecaa07e6a1782d:log:1', 'hash': '0x742463e72bf3456cb30ba05806c6d07073e07c408d989648b6ecaa07e6a1782d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4ab2737e9ab6731e95628d7e4592a4f012462558', 'value': 52334.61091205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b1510a00fdb6e397400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:12:02.000Z'}}, {'blockNum': '0x511e00', 'uniqueId': '0x6c1e8ab2ba414a73bd8c4a78c8286c0fd6ed827de851300fdd37fb80271ddd49:log:29', 'hash': '0x6c1e8ab2ba414a73bd8c4a78c8286c0fd6ed827de851300fdd37fb80271ddd49', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'value': 42404.5664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08fac19317c740d80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:13:52.000Z'}}, {'blockNum': '0x511e06', 'uniqueId': '0xbb0d3ce67670d00b1c015cb1e52b3a27ad393c6fca43a20d92e4e17fd5f18dfa:log:46', 'hash': '0xbb0d3ce67670d00b1c015cb1e52b3a27ad393c6fca43a20d92e4e17fd5f18dfa', 'from': '0xfc2254eb4241fa612c66708cac1bed2b8da1eb87', 'to': '0x73cfda86be33ce193386bb999553b00dbb9be744', 'value': 248.87327196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0d7dcf7a42b0fbf000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:15:00.000Z'}}, {'blockNum': '0x511e07', 'uniqueId': '0x5c2af60a9cbd503635900f73916448a349352c47f6672cd43cd8c35e6c6eaa7f:log:16', 'hash': '0x5c2af60a9cbd503635900f73916448a349352c47f6672cd43cd8c35e6c6eaa7f', 'from': '0x4cf73da4c5ec89d60822b50f769277a9ce498525', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 7825.126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01a833702db4a1570000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:15:04.000Z'}}, {'blockNum': '0x511e0a', 'uniqueId': '0xa665aca836489e11440ced2ba6caf320995972e71eb196928465a32195c621a2:log:36', 'hash': '0xa665aca836489e11440ced2ba6caf320995972e71eb196928465a32195c621a2', 'from': '0x79b869eb5798eb512e04d9369f6c7cd5a7f389e3', 'to': '0x1e69fccb59393ee285cfec002be7310c1f4551bb', 'value': 1788.207888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x60f05e9fcdf7810000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:15:40.000Z'}}, {'blockNum': '0x511e23', 'uniqueId': '0x4e507e310808fdbf3edcc1210ab93c2a89d3b0afbc4b711f5dfab2ee2384ac86:log:11', 'hash': '0x4e507e310808fdbf3edcc1210ab93c2a89d3b0afbc4b711f5dfab2ee2384ac86', 'from': '0x01748d0de44501e4c916bc25c7ad3d29b69c8a51', 'to': '0xae79e732127b288a106b942824afdc7a029411a2', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x014542ba12a337c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:22:23.000Z'}}, {'blockNum': '0x511e24', 'uniqueId': '0x13f61abfd341ba6d375a4d5c3096c65be24f90e170540f14dbf61a5c850ced3b:log:19', 'hash': '0x13f61abfd341ba6d375a4d5c3096c65be24f90e170540f14dbf61a5c850ced3b', 'from': '0x46d66c021d4f345fbda651f7a86af6d7f152a25c', 'to': '0xc9ab868d360cea6dbe0de942ed56cbbaca98d739', 'value': 11697.41641731, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x027a1e434ff9a103ac00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:22:55.000Z'}}, {'blockNum': '0x511e2c', 'uniqueId': '0x340b6d3c8d696a9bde4905fc694b7944894a863a114d3e9ad4ae93bc463d916e:log:9', 'hash': '0x340b6d3c8d696a9bde4905fc694b7944894a863a114d3e9ad4ae93bc463d916e', 'from': '0xfc70bcae87d607d22488837e14cb6b94a7082659', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9858.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021668a5d2897fdf0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:24:07.000Z'}}, {'blockNum': '0x511e2c', 'uniqueId': '0x232bb13ac467e4a8066a60e856e2398bc2561289e5997d14a59bfaf1d8016213:log:10', 'hash': '0x232bb13ac467e4a8066a60e856e2398bc2561289e5997d14a59bfaf1d8016213', 'from': '0xc9ab868d360cea6dbe0de942ed56cbbaca98d739', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11697.41641731, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x027a1e434ff9a103ac00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:24:07.000Z'}}, {'blockNum': '0x511e2c', 'uniqueId': '0x133860032366485c0ec0c2b604896a84f9fe2a0a2fd84f0011393cf72c95d77a:log:11', 'hash': '0x133860032366485c0ec0c2b604896a84f9fe2a0a2fd84f0011393cf72c95d77a', 'from': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42404.5664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08fac19317c740d80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:24:07.000Z'}}, {'blockNum': '0x511e3d', 'uniqueId': '0x9c0d61c1f8724e3abd3c5d74ceef916ba768daf8f2fc55d23f85c4304a38aacc:log:30', 'hash': '0x9c0d61c1f8724e3abd3c5d74ceef916ba768daf8f2fc55d23f85c4304a38aacc', 'from': '0x6d1e61b024289443f8c45e835db4e2f60a0b9aa3', 'to': '0x661dc8890241b52f4b3a771be3b683c0362382d3', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac61ff48a', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:28:08.000Z'}}, {'blockNum': '0x511e3e', 'uniqueId': '0xfc74854734a747450d50d7e7754a7723f46bc44daf0905b2fef9fe08d20bd06e:log:3', 'hash': '0xfc74854734a747450d50d7e7754a7723f46bc44daf0905b2fef9fe08d20bd06e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x75d781047872324d2f719869f6ca064f7266988c', 'value': 748.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x288f7fe6d043050000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:28:12.000Z'}}, {'blockNum': '0x511e44', 'uniqueId': '0xb3ed9d2d41b91362396f18fe653001aa6004676f7735f3879d0d4717868bd92c:log:8', 'hash': '0xb3ed9d2d41b91362396f18fe653001aa6004676f7735f3879d0d4717868bd92c', 'from': '0x173c2d042fb346a7424df858e847cb5185677593', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 525.46557368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1c7c4cbb39dd400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:31:09.000Z'}}, {'blockNum': '0x511e44', 'uniqueId': '0x848e3b9f9a6f81b4971825f3ce14b375eecc6bcef9a9ba7d00ad0437c38fa1c0:log:9', 'hash': '0x848e3b9f9a6f81b4971825f3ce14b375eecc6bcef9a9ba7d00ad0437c38fa1c0', 'from': '0x1e69fccb59393ee285cfec002be7310c1f4551bb', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1788.207888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x60f05e9fcdf7810000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:31:09.000Z'}}, {'blockNum': '0x511e4c', 'uniqueId': '0x4814f75cf5ff22b97ce7c644beb7a2a8403bbc642130fc7e5f5d1c734639d2e6:log:18', 'hash': '0x4814f75cf5ff22b97ce7c644beb7a2a8403bbc642130fc7e5f5d1c734639d2e6', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x306f07d974767ea877a7023fe0811884db069f06', 'value': 1408.26704251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4c57a195d8227a8c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:33:08.000Z'}}, {'blockNum': '0x511e50', 'uniqueId': '0xfba6a6aa01d7ab7ea0cda6d38aa06a8bf1ae40bdff1cbd6d5b81fb367e3f9173:log:12', 'hash': '0xfba6a6aa01d7ab7ea0cda6d38aa06a8bf1ae40bdff1cbd6d5b81fb367e3f9173', 'from': '0xfc2a022a476698bb491684b67c7ff0f08974dd41', 'to': '0xa90094119dc44f45f80ffa631c517c2733d79a7b', 'value': 1111.89742082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3c46ad2d26991fc800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:34:09.000Z'}}, {'blockNum': '0x511e5c', 'uniqueId': '0xa2c983c01e8ba5a19a903602f513c2c266b1e7b3745b562df16cff0cc703b2ed:log:5', 'hash': '0xa2c983c01e8ba5a19a903602f513c2c266b1e7b3745b562df16cff0cc703b2ed', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x10da178cc12e5dff6529b0ab31b7219027a48215', 'value': 59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0332ca1b67940c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:37:15.000Z'}}, {'blockNum': '0x511e66', 'uniqueId': '0xbd85492a843ec551df58d43960e35b1d460af6fdafbe62bf4e8642037a45392f:log:5', 'hash': '0xbd85492a843ec551df58d43960e35b1d460af6fdafbe62bf4e8642037a45392f', 'from': '0x545862068543ca4dc3de7a2d0f9dc148e7f41222', 'to': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'value': 22966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04dcfd4658eac517ffff', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:39:47.000Z'}}, {'blockNum': '0x511e6b', 'uniqueId': '0x2dc30bc46d86656d7d6af9aa23ff04d50c60cbd58bbdf2cec5f9a76d837ca250:log:3', 'hash': '0x2dc30bc46d86656d7d6af9aa23ff04d50c60cbd58bbdf2cec5f9a76d837ca250', 'from': '0x79d876c932e999b4c8f27f392dce36454177030b', 'to': '0xfc8261ace7bfaf5eda61ca13ab03129f8836c519', 'value': 31475.55967002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06aa4b23633889752800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:41:25.000Z'}}, {'blockNum': '0x511e6e', 'uniqueId': '0xc0ce5cf63b3181f87f066b53d18bd19d16c620a4431a953443b589a8ea3cf4a4:log:6', 'hash': '0xc0ce5cf63b3181f87f066b53d18bd19d16c620a4431a953443b589a8ea3cf4a4', 'from': '0xa90094119dc44f45f80ffa631c517c2733d79a7b', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1111.89742082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3c46ad2d26991fc800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:41:54.000Z'}}, {'blockNum': '0x511e79', 'uniqueId': '0x4da133ce3b9879511a9b6ca91c7f6577b401bf0bad506eaab5e11614a0d0fdff:log:21', 'hash': '0x4da133ce3b9879511a9b6ca91c7f6577b401bf0bad506eaab5e11614a0d0fdff', 'from': '0x70590a738aef17e0294f21c5691955a48dc13860', 'to': '0x3763af4178cf5b8743af008ddffd504c353dbc97', 'value': 976.55095483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x34f05def6ddeaf8c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:44:56.000Z'}}, {'blockNum': '0x511ea4', 'uniqueId': '0xceade3994b83d64260b9081cd4a4753979ffd788b8c9ad0c237502c7ef10f08a:log:20', 'hash': '0xceade3994b83d64260b9081cd4a4753979ffd788b8c9ad0c237502c7ef10f08a', 'from': '0xfc8261ace7bfaf5eda61ca13ab03129f8836c519', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31475.55967002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06aa4b23633889752800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:54:06.000Z'}}, {'blockNum': '0x511ebd', 'uniqueId': '0x3dae81387eb67598b806a53995b8248563aae133ffd05990792a5cc27c7abf09:log:4', 'hash': '0x3dae81387eb67598b806a53995b8248563aae133ffd05990792a5cc27c7abf09', 'from': '0x30cd958612f1189388f940ec16563441b3158759', 'to': '0xa1ada120f5ae5e34bc1ec3e87ebb0ef5410f3f10', 'value': 8206.02811871, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01bcd9845891008f9c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:00:16.000Z'}}, {'blockNum': '0x511ebd', 'uniqueId': '0x364f527f1712531a714305906268efaf7e1c45073aa8240920e9b6a6107e7239:log:19', 'hash': '0x364f527f1712531a714305906268efaf7e1c45073aa8240920e9b6a6107e7239', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x7cb4a8c2533c23ad7ec6e3a083c0c1ce89a83330', 'value': 571.51105296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1efb4f22abfa424000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:00:16.000Z'}}, {'blockNum': '0x511ec8', 'uniqueId': '0xb6e85305070cd52defcbfd4ed1b1428c7554d6dcb768ae80c92a619ff51f74bf:log:2', 'hash': '0xb6e85305070cd52defcbfd4ed1b1428c7554d6dcb768ae80c92a619ff51f74bf', 'from': '0x3763af4178cf5b8743af008ddffd504c353dbc97', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 976.55095483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x34f05def6ddeaf8c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:01:57.000Z'}}, {'blockNum': '0x511ed3', 'uniqueId': '0x26e083316d17f51b51335a4cd2d91902fcae4f061b3e5d70f3306cbaeee5e161:log:2', 'hash': '0x26e083316d17f51b51335a4cd2d91902fcae4f061b3e5d70f3306cbaeee5e161', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xffc1e830d90b28ae23a07f97ad1e3f78fbb4ffb4', 'value': 52320.95600646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b1453201791e0c75800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:04:35.000Z'}}, {'blockNum': '0x511ed4', 'uniqueId': '0xaac54d9023f9c042e04c3458f46a93db2b86049c89cd51e9dd5ea40948ce24de:log:43', 'hash': '0xaac54d9023f9c042e04c3458f46a93db2b86049c89cd51e9dd5ea40948ce24de', 'from': '0x1a3587f90629664b7294168c4f09533eb4450ccc', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 8723.5959999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01d8e836d6510a171800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:04:41.000Z'}}, {'blockNum': '0x511eea', 'uniqueId': '0x8d08cab3b6df425232166e341cb2ce3d08205e84fd937da470d7bb5f1f333135:log:1', 'hash': '0x8d08cab3b6df425232166e341cb2ce3d08205e84fd937da470d7bb5f1f333135', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'value': 43625.8488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093cf645c7f2655e0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:08:47.000Z'}}, {'blockNum': '0x511eeb', 'uniqueId': '0xcf1068472f9d2ea7910ed0170d40e7b10f2a5a10d147951408ff4a151f32cbd3:log:112', 'hash': '0xcf1068472f9d2ea7910ed0170d40e7b10f2a5a10d147951408ff4a151f32cbd3', 'from': '0xffc1e830d90b28ae23a07f97ad1e3f78fbb4ffb4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 52320.95600646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b1453201791e0c75800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:08:53.000Z'}}, {'blockNum': '0x511ef6', 'uniqueId': '0x8bb03c03114d422e0ee8575b9cef5580c2352ef48449e00fbcb3cac00b4f37f0:log:5', 'hash': '0x8bb03c03114d422e0ee8575b9cef5580c2352ef48449e00fbcb3cac00b4f37f0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x10da178cc12e5dff6529b0ab31b7219027a48215', 'value': 14580.264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x031665cf5a7358040000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:11:15.000Z'}}, {'blockNum': '0x511efa', 'uniqueId': '0x381a66f442cb69c5c25a5bc0db8e2994af9d648f314fc7dad7c5ada04d723062:log:6', 'hash': '0x381a66f442cb69c5c25a5bc0db8e2994af9d648f314fc7dad7c5ada04d723062', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x93f7e7f08ef3ab2ec90667544c7822a758d28d18', 'value': 2801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x97d7af03aa7d240000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:13:16.000Z'}}, {'blockNum': '0x511efc', 'uniqueId': '0x18f7e98067a09d58c7322529f1b6d1714ce35e9c6768b995003ff7f004f8272c:log:9', 'hash': '0x18f7e98067a09d58c7322529f1b6d1714ce35e9c6768b995003ff7f004f8272c', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x7e809d06b06ecd1fcf5f88ad0a077990f157b0c3', 'value': 2758.22775162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x9586197661a676a800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:13:32.000Z'}}, {'blockNum': '0x511f08', 'uniqueId': '0x096e76e61d999041fc8d3b3ab3019a2fc842649f9b08761ed41c8e5469068651:log:31', 'hash': '0x096e76e61d999041fc8d3b3ab3019a2fc842649f9b08761ed41c8e5469068651', 'from': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 43625.8488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093cf645c7f2655e0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:16:29.000Z'}}, {'blockNum': '0x511f28', 'uniqueId': '0xa257e7873e547e598c1fe4a0330e292e11134708e17a9c8a117e48071c292ec6:log:1', 'hash': '0xa257e7873e547e598c1fe4a0330e292e11134708e17a9c8a117e48071c292ec6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4ab2737e9ab6731e95628d7e4592a4f012462558', 'value': 52292.95600646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b12ce8c1beb91d75800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:24:47.000Z'}}, {'blockNum': '0x511f2b', 'uniqueId': '0x05bf09067e3ad9049ec41e609d1d56e93364ce5f293a91e5b312b2967fc65338:log:6', 'hash': '0x05bf09067e3ad9049ec41e609d1d56e93364ce5f293a91e5b312b2967fc65338', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x62a3d48651ed80e2a1e43b5f811f76118fc94265', 'value': 13000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02c0bb3dd30c4e200000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:25:08.000Z'}}, {'blockNum': '0x511f49', 'uniqueId': '0xe5d7c2e01586f3f73136fd731c9133638928529a9c1ba4e286165966c5e86a5e:log:0', 'hash': '0xe5d7c2e01586f3f73136fd731c9133638928529a9c1ba4e286165966c5e86a5e', 'from': '0xf476c1769ef7c2e1228febe67ddf9432098ef549', 'to': '0x03747f06215b44e498831da019b27f53e483599f', 'value': 2798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x97ae0cdf8f86f80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:32:54.000Z'}}, {'blockNum': '0x511f54', 'uniqueId': '0xb8dab0e2c0cab08eb565ab4dc9fb6f352c8ae1200c9c38a8bffa57cc969a4900:log:34', 'hash': '0xb8dab0e2c0cab08eb565ab4dc9fb6f352c8ae1200c9c38a8bffa57cc969a4900', 'from': '0xd93a0867276e1ced7c8f5ac8940bbef506cc717a', 'to': '0xfa96b3276b59841745f97fffed6c2f6d8dd5302f', 'value': 2648.91194561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x8f9909b3fecce6e400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:35:19.000Z'}}, {'blockNum': '0x511f6c', 'uniqueId': '0x9a4f77a948ce43babf6ddaad175173deb68c6bbeaa0bf0bcc914613b31dac831:log:7', 'hash': '0x9a4f77a948ce43babf6ddaad175173deb68c6bbeaa0bf0bcc914613b31dac831', 'from': '0x2569b544e68d44709842e130ed63857ae3054c09', 'to': '0x82b66a238c9cdcf48060ac29faae0b2ca2e49c17', 'value': 3411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xb8e9225bbf596c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:42:38.000Z'}}, {'blockNum': '0x511f6d', 'uniqueId': '0xd7b0ab4728c3d5c16ea749594667b0a9e0356f5044f6ee846eb5a53ac7d3a714:log:36', 'hash': '0xd7b0ab4728c3d5c16ea749594667b0a9e0356f5044f6ee846eb5a53ac7d3a714', 'from': '0xfa96b3276b59841745f97fffed6c2f6d8dd5302f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2648.91194561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x8f9909b3fecce6e400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:43:18.000Z'}}, {'blockNum': '0x511f76', 'uniqueId': '0xd224a16e2365d657bf4572cdb4c85352a0490631133a17c796f1b862d6d50ea1:log:110', 'hash': '0xd224a16e2365d657bf4572cdb4c85352a0490631133a17c796f1b862d6d50ea1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 37269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07e45b46186011340000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:44:48.000Z'}}, {'blockNum': '0x511f94', 'uniqueId': '0xfe4fbb405400ef524b61526ea709c0fb85b7b4e090c7396f73216c215cc7f965:log:13', 'hash': '0xfe4fbb405400ef524b61526ea709c0fb85b7b4e090c7396f73216c215cc7f965', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07e45b46186011340000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:54:13.000Z'}}, {'blockNum': '0x511f97', 'uniqueId': '0x6fed4e5f4b9fd38018bd97e4658a446e97c31bf4a06b0f981703ae1d68e457fa:log:5', 'hash': '0x6fed4e5f4b9fd38018bd97e4658a446e97c31bf4a06b0f981703ae1d68e457fa', 'from': '0xa9058fecd7d1c4cc84724bf6e3fd5d0f25b8142b', 'to': '0x3305c68e9722dd52c7fd2fdfcc87aae83087a115', 'value': 6413.52, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x015bad783bb6f7480000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:55:00.000Z'}}, {'blockNum': '0x511fa5', 'uniqueId': '0xf85b0ea53f49e670fbb64ba0bd4c36dc7c67235991d2bbe74ef245df73dbbdf8:log:357', 'hash': '0xf85b0ea53f49e670fbb64ba0bd4c36dc7c67235991d2bbe74ef245df73dbbdf8', 'from': '0x01ba0547db23b20f841e187bb073a7477576607d', 'to': '0x53482737c4478a962c99c5851b7cccdbd8f5049a', 'value': 2764.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x95d8fb26a406c40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:58:17.000Z'}}, {'blockNum': '0x511faf', 'uniqueId': '0x2e14de05eafa59cbf4691adc53ed91035a5f7069ac8c8eba82b5cea72f41191a:log:4', 'hash': '0x2e14de05eafa59cbf4691adc53ed91035a5f7069ac8c8eba82b5cea72f41191a', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0xec465ed3f0d265ded60675c86734478aaf8de1ac', 'value': 16256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03713d5190054e000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:00:12.000Z'}}, {'blockNum': '0x511fca', 'uniqueId': '0x5fc44375e1981c038971aebd40a4b7d6e116fa29f4594871fe2b62b2f939df6c:log:30', 'hash': '0x5fc44375e1981c038971aebd40a4b7d6e116fa29f4594871fe2b62b2f939df6c', 'from': '0xec465ed3f0d265ded60675c86734478aaf8de1ac', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 16256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03713d5190054e000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:05:44.000Z'}}, {'blockNum': '0x512002', 'uniqueId': '0x9378cf148ba8461007df9d4615681404aee4d4abe1cbd8982727ebc4b1f05abc:log:2', 'hash': '0x9378cf148ba8461007df9d4615681404aee4d4abe1cbd8982727ebc4b1f05abc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xffc1e830d90b28ae23a07f97ad1e3f78fbb4ffb4', 'value': 49728.95600646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a87cfe63c930c475800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:17:30.000Z'}}, {'blockNum': '0x512014', 'uniqueId': '0x1bfc286ef08eae910506d87309784a814b7cb928fe7e79fafcfe183799e6c161:log:12', 'hash': '0x1bfc286ef08eae910506d87309784a814b7cb928fe7e79fafcfe183799e6c161', 'from': '0xf4530fd119b557f55f87349840408a0d1edbf43b', 'to': '0xfcb143c41a6c9e3ba504f7363b105a0a8f0a5104', 'value': 1099.79, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3b9ea6fa1016db0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:21:27.000Z'}}, {'blockNum': '0x512024', 'uniqueId': '0xf2b7b3c378577af0931f9c78ce9d1aa8374947d494b7c21031b3873a9c8128c7:log:34', 'hash': '0xf2b7b3c378577af0931f9c78ce9d1aa8374947d494b7c21031b3873a9c8128c7', 'from': '0xffc1e830d90b28ae23a07f97ad1e3f78fbb4ffb4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 49728.95600646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a87cfe63c930c475800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:24:07.000Z'}}, {'blockNum': '0x512024', 'uniqueId': '0x7984401a9f0e6d38fb6ce1c71f6636d019cd4af7e5bca4cf85e59791dfb52599:log:47', 'hash': '0x7984401a9f0e6d38fb6ce1c71f6636d019cd4af7e5bca4cf85e59791dfb52599', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'value': 43632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093d4ba33bc1a3c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:24:07.000Z'}}, {'blockNum': '0x51203d', 'uniqueId': '0xf7d42f7f76473cb2fd75856e24191024c9d39c445415cc2b3e8fe49fb008eaf0:log:6', 'hash': '0xf7d42f7f76473cb2fd75856e24191024c9d39c445415cc2b3e8fe49fb008eaf0', 'from': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 43632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093d4ba33bc1a3c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:28:41.000Z'}}, {'blockNum': '0x51205e', 'uniqueId': '0x179223fb9548f0c908578a72ec11ad2f0860cd322af976ba5586f50db5cf68f3:log:26', 'hash': '0x179223fb9548f0c908578a72ec11ad2f0860cd322af976ba5586f50db5cf68f3', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xbd506942ed72ea0c8c9c9025483d8d60ce8d8a8f', 'value': 3250.37997959, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xb034156a2f97613c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:36:28.000Z'}}, {'blockNum': '0x512066', 'uniqueId': '0xd8e57e4c06ccd768d5c7cecce49ff0834f72e928b09ea175a5607cc2adef93c7:log:41', 'hash': '0xd8e57e4c06ccd768d5c7cecce49ff0834f72e928b09ea175a5607cc2adef93c7', 'from': '0xf838f4e2cdb8274667b4a4356a1ca533079df71f', 'to': '0xc08eb752c94e4dddfb29e55e1a2bec62f7911329', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xbdbc41e0348b300000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:38:00.000Z'}}, {'blockNum': '0x512068', 'uniqueId': '0xb869552bc856214bd728b9d0d81651a701b56b96009a6ce7777ea1e9875caa05:log:11', 'hash': '0xb869552bc856214bd728b9d0d81651a701b56b96009a6ce7777ea1e9875caa05', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xbd506942ed72ea0c8c9c9025483d8d60ce8d8a8f', 'value': 2482.10354642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x868e1b38b885650800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:38:44.000Z'}}, {'blockNum': '0x51209a', 'uniqueId': '0x163d01557657dc5aebbfee35b43a33d84b77c947d98073acb85427e94e67f65e:log:20', 'hash': '0x163d01557657dc5aebbfee35b43a33d84b77c947d98073acb85427e94e67f65e', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x7e80392d462cb6b11d73336d28355dd69e2d8e0c', 'value': 16889.33318128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0393929504da1479c000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:51:32.000Z'}}, {'blockNum': '0x5120bd', 'uniqueId': '0x63c4be6860c93bda09679e2ea1a6e86278997345ac26730f4fe4aaeb9062561c:log:20', 'hash': '0x63c4be6860c93bda09679e2ea1a6e86278997345ac26730f4fe4aaeb9062561c', 'from': '0xc08eb752c94e4dddfb29e55e1a2bec62f7911329', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xbdbc41e0348b300000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:57:56.000Z'}}, {'blockNum': '0x5120d7', 'uniqueId': '0x7f37d19327ebe56af85c73cbfdc741a83c41401410a8d3a1101828dc760bbf12:log:10', 'hash': '0x7f37d19327ebe56af85c73cbfdc741a83c41401410a8d3a1101828dc760bbf12', 'from': '0x572eb08a5614d2cfae8e3e25c1dce7412885b532', 'to': '0xcc27434d4a1788b6ae792db0b94e54cddf390ca0', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T03:02:43.000Z'}}, {'blockNum': '0x5120f0', 'uniqueId': '0x0cee153bb092a0a3eb4561c24d426fe96485c7ef677a4a3022eb0d3832c684de:log:2', 'hash': '0x0cee153bb092a0a3eb4561c24d426fe96485c7ef677a4a3022eb0d3832c684de', 'from': '0xcc27434d4a1788b6ae792db0b94e54cddf390ca0', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T03:06:58.000Z'}}, {'blockNum': '0x512117', 'uniqueId': '0xd76034c74c7082ea801eaf7b95b590eaf7b338a0efaa3ed6c22795876862103e:log:35', 'hash': '0xd76034c74c7082ea801eaf7b95b590eaf7b338a0efaa3ed6c22795876862103e', 'from': '0x48684ee285c18d3a13978d649b4e07e8ed2980c7', 'to': '0x3ce559c8258f128e6f55887451e32c39b28ed15a', 'value': 2357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x7fc5f224142bb40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T03:16:07.000Z'}}, {'blockNum': '0x512134', 'uniqueId': '0x77705c2bb5f9dd270e6c7be5443e0798fef7e672675bc2b29a6161afd7e53b6b:log:10', 'hash': '0x77705c2bb5f9dd270e6c7be5443e0798fef7e672675bc2b29a6161afd7e53b6b', 'from': '0x572eb08a5614d2cfae8e3e25c1dce7412885b532', 'to': '0xcc27434d4a1788b6ae792db0b94e54cddf390ca0', 'value': 36421.6943486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07b66c8bb7a50b3e3000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T03:23:30.000Z'}}, {'blockNum': '0x51214c', 'uniqueId': '0xa1a0ad0c11bda3469fc8e4125d763e6fbe832f68635d230eeb638f03a7d38ce9:log:18', 'hash': '0xa1a0ad0c11bda3469fc8e4125d763e6fbe832f68635d230eeb638f03a7d38ce9', 'from': '0xcc27434d4a1788b6ae792db0b94e54cddf390ca0', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 36421.6943486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07b66c8bb7a50b3e3000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T03:29:40.000Z'}}, {'blockNum': '0x512156', 'uniqueId': '0xc4dbf68155b7d4657c3ad4aef82f982adb14e7c242f518b54a959d095614a6ca:log:9', 'hash': '0xc4dbf68155b7d4657c3ad4aef82f982adb14e7c242f518b54a959d095614a6ca', 'from': '0x1b4def26044a75a26b808b4824e502ab764c5027', 'to': '0x181e1ff49cae7f7c419688fcb9e69af2f93311da', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01e7e4171bf4d3a00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T03:31:03.000Z'}}, {'blockNum': '0x512169', 'uniqueId': '0x5674293c1d8ecd40cff46f61042eca5189792b6b334e7110af2d92f3ea770f20:log:4', 'hash': '0x5674293c1d8ecd40cff46f61042eca5189792b6b334e7110af2d92f3ea770f20', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xca6c813d4d7272ce494dfeedc7872d1c76132cce', 'value': 15249.68444547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x033aafe286dd2f1dac00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T03:35:34.000Z'}}, {'blockNum': '0x51217a', 'uniqueId': '0x00cf87b45fe56e1754c3d6e10baa85de51caad38fae626c45a7a6688fbc47056:log:10', 'hash': '0x00cf87b45fe56e1754c3d6e10baa85de51caad38fae626c45a7a6688fbc47056', 'from': '0xca6c813d4d7272ce494dfeedc7872d1c76132cce', 'to': '0x711bb8904f6f15a748642a959d058f9f8efcde3f', 'value': 15258.68444547362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x033b2cc8f32ee9667d00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T03:40:32.000Z'}}, {'blockNum': '0x512196', 'uniqueId': '0x3e22c7a5fca28d8c0ff1c18e03dc399ded09672f2f3c1204b744b8f356223a27:log:1', 'hash': '0x3e22c7a5fca28d8c0ff1c18e03dc399ded09672f2f3c1204b744b8f356223a27', 'from': '0x95402456cbcd4b9c5b602b8fd42eebd4f3ec0ef1', 'to': '0x98a3c1fcc63bc02547102fb958e2f3dd85f96e06', 'value': 4161.455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xe197ca1a2a9d318000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T03:48:21.000Z'}}, {'blockNum': '0x5121a9', 'uniqueId': '0xc3b455415faf541356afa45619f864c4962a426297ab3b740e4cbca65a6e1e0d:log:35', 'hash': '0xc3b455415faf541356afa45619f864c4962a426297ab3b740e4cbca65a6e1e0d', 'from': '0x28d223db2944a0d3d444a0b2a13185b9f6443f5b', 'to': '0xa46fc68bde0555a7bc394cf50d0afa72ce96676f', 'value': 1386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4b229d28a843680000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T03:53:07.000Z'}}, {'blockNum': '0x5121ba', 'uniqueId': '0xb9fcd555b2ba6b67908c690fdbe63534a248677665b4e64f0daae5cac01f27c0:log:2', 'hash': '0xb9fcd555b2ba6b67908c690fdbe63534a248677665b4e64f0daae5cac01f27c0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'value': 40377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x088cd770357c4b440000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T03:57:28.000Z'}}, {'blockNum': '0x5121d8', 'uniqueId': '0x93002f04bb1397622826f3077875c9232cfc2637fa2b7a9548127150d162d9ca:log:2', 'hash': '0x93002f04bb1397622826f3077875c9232cfc2637fa2b7a9548127150d162d9ca', 'from': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 40377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x088cd770357c4b440000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T04:05:56.000Z'}}, {'blockNum': '0x5121fc', 'uniqueId': '0xacace99d1d3545e945765721582c99d39d9fd059d9d57683f814f920eb5f3565:log:33', 'hash': '0xacace99d1d3545e945765721582c99d39d9fd059d9d57683f814f920eb5f3565', 'from': '0xe1b36a77e56350d6e419c0c2b049d028add1de34', 'to': '0xf8483be7581114214bc1129cd78c562b7fdc71d3', 'value': 4298.94062005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xe90bc9252c01c43400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T04:13:47.000Z'}}, {'blockNum': '0x512206', 'uniqueId': '0xd935efc3222fa6e0765cbeede1a16a3166ffd6866089aa30f50beb5362c93ab0:log:38', 'hash': '0xd935efc3222fa6e0765cbeede1a16a3166ffd6866089aa30f50beb5362c93ab0', 'from': '0x18ae94fbb05d9a6c68d97430b454598942420515', 'to': '0x09f4142d017e20d435e38a251ba3f3bef8889a2f', 'value': 7413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0191dc0a803e22b40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T04:15:32.000Z'}}]}}
Number of returned transfers: 658
Answer is complete
symbol ICN
group BPS
date 2018-04-04
hour 19:00
exchange binance
Name: 293, dtype: object
HERE
Symbol: ICN, Contract:
Datetime timestamps: 2018-04-04 19:00:00 2018-04-04 07:00:00 2018-04-05 07:00:00
Unix timestamps: 1522818000.0 1522904400.0
Hex Block Numbers: 0x520cbb 0x52241a
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol SNGLS
group BPS
date 2018-04-10
hour 19:00
exchange binance
Name: 294, dtype: object
HERE
Symbol: SNGLS, Contract: 0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009
Datetime timestamps: 2018-04-10 19:00:00 2018-04-10 07:00:00 2018-04-11 07:00:00
Unix timestamps: 1523336400.0 1523422800.0
Hex Block Numbers: 0x529a12 0x52b1bc
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x529c3b', 'uniqueId': '0x7eaa42e85046946cded589d35f1d1e1a785e9c4c759bb52fd54676750d049e75:log:47', 'hash': '0x7eaa42e85046946cded589d35f1d1e1a785e9c4c759bb52fd54676750d049e75', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa0f1512df2fae05e9a5cf7b4fe2de266c83be5d4', 'value': 49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x31', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T07:08:05.000Z'}}, {'blockNum': '0x529c66', 'uniqueId': '0x93a3d7b6020bdee2729df86e1284cdebe64ebb1bf28a1d6d7d1f46dd7f829cf4:log:42', 'hash': '0x93a3d7b6020bdee2729df86e1284cdebe64ebb1bf28a1d6d7d1f46dd7f829cf4', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x76f4617036489d4eefc2c9ad0cd41202f88878bc', 'value': 4788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x12b4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T07:18:21.000Z'}}, {'blockNum': '0x529c94', 'uniqueId': '0x0698cbd235f7ed592ab161e7145d4fccf7342ade26ef143808e4209bf9542522:log:25', 'hash': '0x0698cbd235f7ed592ab161e7145d4fccf7342ade26ef143808e4209bf9542522', 'from': '0x76f4617036489d4eefc2c9ad0cd41202f88878bc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x12b4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T07:29:20.000Z'}}, {'blockNum': '0x529f78', 'uniqueId': '0xfca4f81289345fdd9b1bc355aa86ab37dc60e1add47c5a32f0e2ca4f85e5a15f:log:0', 'hash': '0xfca4f81289345fdd9b1bc355aa86ab37dc60e1add47c5a32f0e2ca4f85e5a15f', 'from': '0xc39ac4481126649a1d15745d8a58711f9f350456', 'to': '0x4423cc862171b18812da8d97a1a959f9ef8a3a32', 'value': 742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x02e6', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T10:24:50.000Z'}}, {'blockNum': '0x52a3e0', 'uniqueId': '0x74e7ea4ebd01e0825f5a788e509e277facfbd9d320de1738cf3fd5b57fcd6506:log:74', 'hash': '0x74e7ea4ebd01e0825f5a788e509e277facfbd9d320de1738cf3fd5b57fcd6506', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5a84873b1b6c4cefc4dbc86cc7597a4e4ef24ee1', 'value': 39959, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x9c17', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T14:57:55.000Z'}}, {'blockNum': '0x52a6c9', 'uniqueId': '0x5c11090f03961f74f085f8213fb42c1a1a7ebcd083b0f327d9daf3d2345f0f67:log:67', 'hash': '0x5c11090f03961f74f085f8213fb42c1a1a7ebcd083b0f327d9daf3d2345f0f67', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xac0d57aee6183a39aecc9f63529ff1d8713a82f0', 'value': 152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x98', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T17:56:27.000Z'}}, {'blockNum': '0x52a719', 'uniqueId': '0x9829ecb0abde520c64ad14fade75751119e9de7ecf7147694e74e906ead1125d:log:0', 'hash': '0x9829ecb0abde520c64ad14fade75751119e9de7ecf7147694e74e906ead1125d', 'from': '0xf4b51b14b9ee30dc37ec970b50a486f37686e2a8', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 1500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x16e360', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T18:18:43.000Z'}}, {'blockNum': '0x52a723', 'uniqueId': '0x1d5c1f3e292473c625fc9b071618cff1ee1557298e0753b90ed192752350d7f5:log:2', 'hash': '0x1d5c1f3e292473c625fc9b071618cff1ee1557298e0753b90ed192752350d7f5', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 290758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x046fc6', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T18:20:30.000Z'}}, {'blockNum': '0x52a729', 'uniqueId': '0x94cee45945b356103d25b68f3245049f6b02c3c94401c88107a3090654a7cffb:log:26', 'hash': '0x94cee45945b356103d25b68f3245049f6b02c3c94401c88107a3090654a7cffb', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 397275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x060fdb', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T18:21:41.000Z'}}, {'blockNum': '0x52a72d', 'uniqueId': '0xf15c385402785f063baa6f066554f4f01dd3f6825dcd6a916d9161f24ed9ceea:log:5', 'hash': '0xf15c385402785f063baa6f066554f4f01dd3f6825dcd6a916d9161f24ed9ceea', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 296249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x048539', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T18:22:43.000Z'}}, {'blockNum': '0x52a74c', 'uniqueId': '0x921d8ae3b886c98e4aba8e4849fa94c687d97397922e9cd368ac2c9eddf216c1:log:97', 'hash': '0x921d8ae3b886c98e4aba8e4849fa94c687d97397922e9cd368ac2c9eddf216c1', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 984282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0f04da', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T18:28:35.000Z'}}, {'blockNum': '0x52a7c7', 'uniqueId': '0x47950d918be4fe49f968ed541fe9f52ca5c57a4bfeb10dbc44c0129e26b8e53b:log:97', 'hash': '0x47950d918be4fe49f968ed541fe9f52ca5c57a4bfeb10dbc44c0129e26b8e53b', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'value': 32960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x80c0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T18:59:35.000Z'}}, {'blockNum': '0x52a7cc', 'uniqueId': '0x93f382ceb86678fa06465fe91c6d534f7dfdd76161d28b68151df2322191f608:log:5', 'hash': '0x93f382ceb86678fa06465fe91c6d534f7dfdd76161d28b68151df2322191f608', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 8086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1f96', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:01:05.000Z'}}, {'blockNum': '0x52a7cd', 'uniqueId': '0x0bfb5a8a6c7ec41f1f98761c09d50bdf10b9730a3c672e3fa1987f0098c63020:log:91', 'hash': '0x0bfb5a8a6c7ec41f1f98761c09d50bdf10b9730a3c672e3fa1987f0098c63020', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'value': 2342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0926', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:01:41.000Z'}}, {'blockNum': '0x52a7cf', 'uniqueId': '0x71435824c80a1fad10a1d90cdb39fe6dbcc9d6795e3427f719e0e404967ca4a7:log:28', 'hash': '0x71435824c80a1fad10a1d90cdb39fe6dbcc9d6795e3427f719e0e404967ca4a7', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x8b1090425c820c9055b279f5da71a307b3759f2b', 'value': 4973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x136d', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:02:05.000Z'}}, {'blockNum': '0x52a7d3', 'uniqueId': '0x4f9dd91c83f3d768c9f8601e623d2b4315c23bf2480e5d969af0e8b76afbb888:log:0', 'hash': '0x4f9dd91c83f3d768c9f8601e623d2b4315c23bf2480e5d969af0e8b76afbb888', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x6243cdbd7bd96613a209ad15264eae1c4602f5df', 'value': 57757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xe19d', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:03:40.000Z'}}, {'blockNum': '0x52a7d3', 'uniqueId': '0x1a970dc030fbf82f8a40694bf59fce56b64c9cd4afb4469df7546498dbae8ce6:log:2', 'hash': '0x1a970dc030fbf82f8a40694bf59fce56b64c9cd4afb4469df7546498dbae8ce6', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 12145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f71', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:03:40.000Z'}}, {'blockNum': '0x52a7d3', 'uniqueId': '0x723f7e0f4a61765a3b0e32f1b75c20c290be1b7b58b55d9e5b5845ce297cb8be:log:76', 'hash': '0x723f7e0f4a61765a3b0e32f1b75c20c290be1b7b58b55d9e5b5845ce297cb8be', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0xc18118a2976a9e362a0f8d15ca10761593242a85', 'value': 25013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x61b5', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:03:40.000Z'}}, {'blockNum': '0x52a7d8', 'uniqueId': '0x421741b7c85576d1765e47c854d25b16f7dd8047f5873401c6edad9da6b063c4:log:132', 'hash': '0x421741b7c85576d1765e47c854d25b16f7dd8047f5873401c6edad9da6b063c4', 'from': '0x649968774f9961bbc17478bb9bda4558b3ac5fab', 'to': '0xc5e77dcadeb2ba7ed3c8ab13075dbd9a86457d40', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x030d40', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:04:39.000Z'}}, {'blockNum': '0x52a7da', 'uniqueId': '0x85ffb58127df8171724e6cc29d72f0a17a9ee38789256699eadae868d9c81dc0:log:56', 'hash': '0x85ffb58127df8171724e6cc29d72f0a17a9ee38789256699eadae868d9c81dc0', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 2803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0af3', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:05:15.000Z'}}, {'blockNum': '0x52a7de', 'uniqueId': '0xff5882c8b17644d9c8a993f378641f83c4397c0ddcec55d5f9f4407024b13d17:log:3', 'hash': '0xff5882c8b17644d9c8a993f378641f83c4397c0ddcec55d5f9f4407024b13d17', 'from': '0x695b9b0f02e5fb89afe875855452914514755ed1', 'to': '0x04c2b3b62465824001b4f75d015ba0d04fec03c8', 'value': 1792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0700', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:06:19.000Z'}}, {'blockNum': '0x52a7ec', 'uniqueId': '0xb076bce9b8e8c25de84d00d10ef0b8edee74075db7ffbcdc53275dd425dd0baf:log:6', 'hash': '0xb076bce9b8e8c25de84d00d10ef0b8edee74075db7ffbcdc53275dd425dd0baf', 'from': '0xc18118a2976a9e362a0f8d15ca10761593242a85', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x61b5', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:09:21.000Z'}}, {'blockNum': '0x52a7ec', 'uniqueId': '0xc572d172e8705abad12d604d4647d1f48f3d1765618c0e132572f83d56cd0dd5:log:9', 'hash': '0xc572d172e8705abad12d604d4647d1f48f3d1765618c0e132572f83d56cd0dd5', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f71', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:09:21.000Z'}}, {'blockNum': '0x52a7ec', 'uniqueId': '0xd62ae50c44a07ce241cbd8b15dc44d997d3a400716a3f1237edcf30b920c90dc:log:11', 'hash': '0xd62ae50c44a07ce241cbd8b15dc44d997d3a400716a3f1237edcf30b920c90dc', 'from': '0xc5e77dcadeb2ba7ed3c8ab13075dbd9a86457d40', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x030d40', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:09:21.000Z'}}, {'blockNum': '0x52a7ec', 'uniqueId': '0xc5316e222b92dfcb3c3432f826c4464d5bdbf950ad51fb6a8ff0e1d0e937344f:log:12', 'hash': '0xc5316e222b92dfcb3c3432f826c4464d5bdbf950ad51fb6a8ff0e1d0e937344f', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2a89', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:09:21.000Z'}}, {'blockNum': '0x52a7ec', 'uniqueId': '0x17e66cba2c978df926abca1dd100c17446e9b76a3cb294ade0c9cd55639b6f8b:log:14', 'hash': '0x17e66cba2c978df926abca1dd100c17446e9b76a3cb294ade0c9cd55639b6f8b', 'from': '0x6243cdbd7bd96613a209ad15264eae1c4602f5df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 57757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xe19d', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:09:21.000Z'}}, {'blockNum': '0x52a7ec', 'uniqueId': '0x7a8c0ff0c0cb6728e30ba0f9752cd4ba45d498d4b33421dae2050a3922dadbe4:log:15', 'hash': '0x7a8c0ff0c0cb6728e30ba0f9752cd4ba45d498d4b33421dae2050a3922dadbe4', 'from': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x80c0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:09:21.000Z'}}, {'blockNum': '0x52a7ec', 'uniqueId': '0x7b085c1b0c587b80668990cc11c6d23fe02cc649d8c7802acc684061e1aefa00:log:17', 'hash': '0x7b085c1b0c587b80668990cc11c6d23fe02cc649d8c7802acc684061e1aefa00', 'from': '0x8b1090425c820c9055b279f5da71a307b3759f2b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x136d', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:09:21.000Z'}}, {'blockNum': '0x52a7ed', 'uniqueId': '0x260c1a6a1efdc3081a0089dc1a4fd7edb1185d1f6ff0df88267c922ce92e072f:log:3', 'hash': '0x260c1a6a1efdc3081a0089dc1a4fd7edb1185d1f6ff0df88267c922ce92e072f', 'from': '0x9a2d163ab40f88c625fd475e807bbc3556566f80', 'to': '0x306b16a86776d9917883ba666ad0fc4b4310addf', 'value': 19002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4a3a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:09:30.000Z'}}, {'blockNum': '0x52a7ee', 'uniqueId': '0x19050c2b38fd6495c62cbdeb8adc250789a4f5786c85e1a8c9d74b373d6112b4:log:70', 'hash': '0x19050c2b38fd6495c62cbdeb8adc250789a4f5786c85e1a8c9d74b373d6112b4', 'from': '0x306b16a86776d9917883ba666ad0fc4b4310addf', 'to': '0x4b48e8318427bdb8b1d0c8a1bba3956ccf424422', 'value': 19002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4a3a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:09:45.000Z'}}, {'blockNum': '0x52a81d', 'uniqueId': '0x28ad25cd94c3e966d0746ee6625b9f0591c12fae4ce9542c998c021d8119f63a:log:12', 'hash': '0x28ad25cd94c3e966d0746ee6625b9f0591c12fae4ce9542c998c021d8119f63a', 'from': '0x4b48e8318427bdb8b1d0c8a1bba3956ccf424422', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4a3a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:19:24.000Z'}}, {'blockNum': '0x52a82b', 'uniqueId': '0xeb49e624f41d6692b9600d98585e8b9e9dbfd33af0499c10564b656616ed33ce:log:2', 'hash': '0xeb49e624f41d6692b9600d98585e8b9e9dbfd33af0499c10564b656616ed33ce', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xdee1645558e3b8f8f20e186acd5e8a7699127f30', 'value': 99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x63', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:22:22.000Z'}}, {'blockNum': '0x52a82b', 'uniqueId': '0xeb49e624f41d6692b9600d98585e8b9e9dbfd33af0499c10564b656616ed33ce:log:5', 'hash': '0xeb49e624f41d6692b9600d98585e8b9e9dbfd33af0499c10564b656616ed33ce', 'from': '0xdee1645558e3b8f8f20e186acd5e8a7699127f30', 'to': '0x9a2d163ab40f88c625fd475e807bbc3556566f80', 'value': 98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x62', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:22:22.000Z'}}, {'blockNum': '0x52a83f', 'uniqueId': '0xf72ee6b97beb5bbd28ce1069b08a29f8c8b11bf75ebcbb5cd81c12e3f89cf8ce:log:12', 'hash': '0xf72ee6b97beb5bbd28ce1069b08a29f8c8b11bf75ebcbb5cd81c12e3f89cf8ce', 'from': '0xac4984d936f2f6950530a68a1a5126de800812b5', 'to': '0xe9e2badc13ab4564699576e73ef06cff1bb3d75a', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1f40', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:26:01.000Z'}}, {'blockNum': '0x52a84b', 'uniqueId': '0x9426a84d66252cdb837b60317ce011554574a5f692f479a8453da6fc54f9b60c:log:41', 'hash': '0x9426a84d66252cdb837b60317ce011554574a5f692f479a8453da6fc54f9b60c', 'from': '0xe9e2badc13ab4564699576e73ef06cff1bb3d75a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1f40', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:29:33.000Z'}}, {'blockNum': '0x52a87f', 'uniqueId': '0xda9157e63f4ec52866bf40231d7ee7550beaf54120c4b7281efaca3a0286c47b:log:2', 'hash': '0xda9157e63f4ec52866bf40231d7ee7550beaf54120c4b7281efaca3a0286c47b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0cd62bd8995946435ce8669bdeb3819cee3a4697', 'value': 10559, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x293f', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:40:15.000Z'}}, {'blockNum': '0x52a88d', 'uniqueId': '0x691c3a4ecbb492ee3047814cc62876d812e1958e32e23caba224ccc1e42925d1:log:55', 'hash': '0x691c3a4ecbb492ee3047814cc62876d812e1958e32e23caba224ccc1e42925d1', 'from': '0x51f2127d75525f7f3d49466f7f31dd070ca81784', 'to': '0xbcf6cf12e69bc71ae24e3e41b66997dacd29bbc6', 'value': 220000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x035b60', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:44:33.000Z'}}, {'blockNum': '0x52a897', 'uniqueId': '0x2d4d75e8e064dbeb6c39a7fc83ce8908c6d182a336ceb8e78f9417b1fb4a2b7f:log:0', 'hash': '0x2d4d75e8e064dbeb6c39a7fc83ce8908c6d182a336ceb8e78f9417b1fb4a2b7f', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'value': 4496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1190', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:46:32.000Z'}}, {'blockNum': '0x52a8a4', 'uniqueId': '0x658737c3bc4804638181bedcc43413737dd266bf5c8ef8e09c403e832946c481:log:11', 'hash': '0x658737c3bc4804638181bedcc43413737dd266bf5c8ef8e09c403e832946c481', 'from': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1190', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:49:25.000Z'}}, {'blockNum': '0x52a8a4', 'uniqueId': '0x0115b187ffd977bea3700f02e05c8a1d2b948152d4a2a3e845d6f9430d569076:log:14', 'hash': '0x0115b187ffd977bea3700f02e05c8a1d2b948152d4a2a3e845d6f9430d569076', 'from': '0xbcf6cf12e69bc71ae24e3e41b66997dacd29bbc6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 220000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x035b60', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:49:25.000Z'}}, {'blockNum': '0x52a8ac', 'uniqueId': '0x96b950063b7db61e07f21fae020052ace5ccd6bb67b417b8104ab3056ce794f0:log:0', 'hash': '0x96b950063b7db61e07f21fae020052ace5ccd6bb67b417b8104ab3056ce794f0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8bbb73bcb5d553b5a556358d27625323fd781d37', 'value': 617515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x096c2b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:53:13.000Z'}}, {'blockNum': '0x52a8c6', 'uniqueId': '0x41db6e582be1107a0ed0d0b5768031c6fbe6e20c01427b79cb0f1ee546c96682:log:2', 'hash': '0x41db6e582be1107a0ed0d0b5768031c6fbe6e20c01427b79cb0f1ee546c96682', 'from': '0xae02bae635f6c01685983077a14c226adefb5288', 'to': '0x2f5b7096694f2aed9a1722ef3b9d38c90c68e06d', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0fa0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:59:07.000Z'}}, {'blockNum': '0x52a8ce', 'uniqueId': '0x23cc05d3d12e87419e257e14ecb38dea5edf36790ddeb3cf5cd1acea6cc0bcc8:log:15', 'hash': '0x23cc05d3d12e87419e257e14ecb38dea5edf36790ddeb3cf5cd1acea6cc0bcc8', 'from': '0x8bbb73bcb5d553b5a556358d27625323fd781d37', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 617515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x096c2b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T20:01:21.000Z'}}, {'blockNum': '0x52a8d6', 'uniqueId': '0xeb4aef08fa8903b014baae6e266626a0647e796a3138e906b780f4cacf59375d:log:16', 'hash': '0xeb4aef08fa8903b014baae6e266626a0647e796a3138e906b780f4cacf59375d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 1016029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0f80dd', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T20:03:28.000Z'}}, {'blockNum': '0x52a8ee', 'uniqueId': '0x2bc4f19e36e7cca4b068ef6da79d6c19a0c2061b724cd3f1086756c515e9e330:log:29', 'hash': '0x2bc4f19e36e7cca4b068ef6da79d6c19a0c2061b724cd3f1086756c515e9e330', 'from': '0x2f5b7096694f2aed9a1722ef3b9d38c90c68e06d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0fa0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T20:09:10.000Z'}}, {'blockNum': '0x52a913', 'uniqueId': '0xded718cb36d19870fa4038d0adf1bc573db6ab488b0d2cdf868de7229d749406:log:17', 'hash': '0xded718cb36d19870fa4038d0adf1bc573db6ab488b0d2cdf868de7229d749406', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0xf05590b4b18194bfb9d883017281a9643e0c4ab7', 'value': 5982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x175e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T20:17:52.000Z'}}, {'blockNum': '0x52a92d', 'uniqueId': '0x02c17002b7edcc0a005f02718fd07641f5e46ad101634602ac988ae255a3365d:log:0', 'hash': '0x02c17002b7edcc0a005f02718fd07641f5e46ad101634602ac988ae255a3365d', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x38a36d8eb61d4e3a58364c912a30ef00e92b2e95', 'value': 1520, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x05f0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T20:23:13.000Z'}}, {'blockNum': '0x52a93c', 'uniqueId': '0x2c04f5086e25f92dfd8b956c68e21d69f8bb361e1eec3c051b7c6252fe570b31:log:23', 'hash': '0x2c04f5086e25f92dfd8b956c68e21d69f8bb361e1eec3c051b7c6252fe570b31', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x08eb973c9a02de4cfee9149cce679380dd9cff38', 'value': 10528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2920', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T20:25:46.000Z'}}, {'blockNum': '0x52a943', 'uniqueId': '0xe185014449f028bbe2c80b2687b1a46dca92e9dad9971c865f3a297aee1b574e:log:1', 'hash': '0xe185014449f028bbe2c80b2687b1a46dca92e9dad9971c865f3a297aee1b574e', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 12178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f92', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T20:26:58.000Z'}}, {'blockNum': '0x52a949', 'uniqueId': '0xd22c38efa87251ef312e2d9bf448b42c1480db6052c98ee493e5ff0e0ecef4ff:log:37', 'hash': '0xd22c38efa87251ef312e2d9bf448b42c1480db6052c98ee493e5ff0e0ecef4ff', 'from': '0xf05590b4b18194bfb9d883017281a9643e0c4ab7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x175e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T20:29:04.000Z'}}, {'blockNum': '0x52a949', 'uniqueId': '0xbe347d8ae295cea219e1e7ba176c96a551839bf6d10a5e5244919d7bfde41bb6:log:38', 'hash': '0xbe347d8ae295cea219e1e7ba176c96a551839bf6d10a5e5244919d7bfde41bb6', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f92', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T20:29:04.000Z'}}, {'blockNum': '0x52a971', 'uniqueId': '0x9d84ccc586e4c40be3e7df9707283e55ee0cc2ec601d43494609dc12891843c6:log:7', 'hash': '0x9d84ccc586e4c40be3e7df9707283e55ee0cc2ec601d43494609dc12891843c6', 'from': '0x08eb973c9a02de4cfee9149cce679380dd9cff38', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2920', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T20:39:02.000Z'}}, {'blockNum': '0x52a9c6', 'uniqueId': '0xab759f377f25f8208fd772a61175901f029a9ec72c39c2c340fe744ec6530705:log:0', 'hash': '0xab759f377f25f8208fd772a61175901f029a9ec72c39c2c340fe744ec6530705', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x46e6127260a632ae480fd9bd32735804a11326bb', 'value': 6497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1961', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T20:59:51.000Z'}}, {'blockNum': '0x52aa27', 'uniqueId': '0x847c99221a9b561ecfdbfae5f09f3778eae7052bcc9d88ab7adb719630628362:log:1', 'hash': '0x847c99221a9b561ecfdbfae5f09f3778eae7052bcc9d88ab7adb719630628362', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x1674f04b3aaa79efbee513acd3a8155a24affea8', 'value': 3326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0cfe', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T21:27:16.000Z'}}, {'blockNum': '0x52aa2b', 'uniqueId': '0x4eafe5b57037a49793ebaf600b200e23418a060c09ee25ae7700769288b58c69:log:17', 'hash': '0x4eafe5b57037a49793ebaf600b200e23418a060c09ee25ae7700769288b58c69', 'from': '0xa45f4146d4d954dc7f02aacbee7ffa0b0f6c3a37', 'to': '0xaebbb480af4c02408b584ade1ffa588005620a4b', 'value': 1026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0402', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T21:28:23.000Z'}}, {'blockNum': '0x52aaae', 'uniqueId': '0x82e77a22a7d50e92d4d4b19d011179e3cc713d7bd7ddde6f58e55e6c6428c493:log:0', 'hash': '0x82e77a22a7d50e92d4d4b19d011179e3cc713d7bd7ddde6f58e55e6c6428c493', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc6c3633a71d6039468bfbf742d15bc5b9ca19dc0', 'value': 12155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f7b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T21:55:43.000Z'}}, {'blockNum': '0x52aab2', 'uniqueId': '0xfcc3ce685aab9e600f91887b34457da9e5a6edeee216ebe992f3eb3f574cb328:log:0', 'hash': '0xfcc3ce685aab9e600f91887b34457da9e5a6edeee216ebe992f3eb3f574cb328', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0xdc3a6bbc6aeee377e37ac25b81efca8ebab64118', 'value': 15200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x3b60', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T21:56:26.000Z'}}, {'blockNum': '0x52aab5', 'uniqueId': '0x695a4906c8ee46dd83029ea1c821366a6d94a68e300ac2f96f7ba31076bb06e9:log:11', 'hash': '0x695a4906c8ee46dd83029ea1c821366a6d94a68e300ac2f96f7ba31076bb06e9', 'from': '0x0cd62bd8995946435ce8669bdeb3819cee3a4697', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 10558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x293e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T21:57:11.000Z'}}, {'blockNum': '0x52aab5', 'uniqueId': '0xee5d005be2ad15e50104171cd06d6174d99752b22465c21704df2fcc1a825a19:log:92', 'hash': '0xee5d005be2ad15e50104171cd06d6174d99752b22465c21704df2fcc1a825a19', 'from': '0xc6c3633a71d6039468bfbf742d15bc5b9ca19dc0', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 12155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f7b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T21:57:11.000Z'}}, {'blockNum': '0x52aabd', 'uniqueId': '0x0985562f5ac3216558c3e038aebbd242e9ab02ddcaf4167fb7521fb25abdbce5:log:12', 'hash': '0x0985562f5ac3216558c3e038aebbd242e9ab02ddcaf4167fb7521fb25abdbce5', 'from': '0xdc3a6bbc6aeee377e37ac25b81efca8ebab64118', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x3b60', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T21:59:06.000Z'}}, {'blockNum': '0x52ac0d', 'uniqueId': '0x552fe6f969a956cfb3ed50f2e67d807c4b60b7a84852a632f3c2ea41795e1e38:log:20', 'hash': '0x552fe6f969a956cfb3ed50f2e67d807c4b60b7a84852a632f3c2ea41795e1e38', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'value': 34960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x8890', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T23:18:30.000Z'}}, {'blockNum': '0x52ac3c', 'uniqueId': '0xb90ad86affc0d38d521b573e55cd4627e3cc6078764c5cd424b4ca305bfa5572:log:14', 'hash': '0xb90ad86affc0d38d521b573e55cd4627e3cc6078764c5cd424b4ca305bfa5572', 'from': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x8890', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T23:29:12.000Z'}}, {'blockNum': '0x52ac61', 'uniqueId': '0xbb13dba07f5e0349394f8e07682b6459c2f530178892db837c31eb6e366d59bf:log:12', 'hash': '0xbb13dba07f5e0349394f8e07682b6459c2f530178892db837c31eb6e366d59bf', 'from': '0xe83c83ddafe9a7df4b56b446fe39d1b0500572de', 'to': '0xdbd3dae55fcceaf4c34828b24e41d318e46f233c', 'value': 996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x03e4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T23:36:02.000Z'}}, {'blockNum': '0x52ac81', 'uniqueId': '0xc39bdfb81e6aae2e27bd1f5b8b6b21d940628f9b7cf7bbd3c9b84d0ce4945632:log:2', 'hash': '0xc39bdfb81e6aae2e27bd1f5b8b6b21d940628f9b7cf7bbd3c9b84d0ce4945632', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x1674f04b3aaa79efbee513acd3a8155a24affea8', 'value': 7283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1c73', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T23:41:49.000Z'}}, {'blockNum': '0x52aca2', 'uniqueId': '0xa4cbbbb5f0b9cc205b6956480098009ed24cb590fad4962155f14550c36cb5c0:log:35', 'hash': '0xa4cbbbb5f0b9cc205b6956480098009ed24cb590fad4962155f14550c36cb5c0', 'from': '0x1674f04b3aaa79efbee513acd3a8155a24affea8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2971', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T23:49:49.000Z'}}, {'blockNum': '0x52ad05', 'uniqueId': '0x29b2e8bed80ae791c36d858828bb08586939a762e21ce04be7a6edb1be30e0ba:log:3', 'hash': '0x29b2e8bed80ae791c36d858828bb08586939a762e21ce04be7a6edb1be30e0ba', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 12135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f67', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:15:26.000Z'}}, {'blockNum': '0x52ad1a', 'uniqueId': '0xd11b7769ff6ded4d83e4385d0a81ed1f6390e99ff744986b305862e1960dfe65:log:13', 'hash': '0xd11b7769ff6ded4d83e4385d0a81ed1f6390e99ff744986b305862e1960dfe65', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f67', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:19:13.000Z'}}, {'blockNum': '0x52ad2b', 'uniqueId': '0x87afb057b420c08063dfe24df0a50f476b3927d8101cd34d7ba4f0b2e12c5956:log:66', 'hash': '0x87afb057b420c08063dfe24df0a50f476b3927d8101cd34d7ba4f0b2e12c5956', 'from': '0xa23168b40f13dc04f7295a83c9d460f2129d1956', 'to': '0xf468710ed4971615fd3307ece6f86aba6d3ceb79', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x05dc', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:23:16.000Z'}}, {'blockNum': '0x52ad40', 'uniqueId': '0x98e7a1f8d0dd54d56efc87eff0f2b3c449212df214d9338b5f30ffbfa340734b:log:24', 'hash': '0x98e7a1f8d0dd54d56efc87eff0f2b3c449212df214d9338b5f30ffbfa340734b', 'from': '0x51f2127d75525f7f3d49466f7f31dd070ca81784', 'to': '0xbcf6cf12e69bc71ae24e3e41b66997dacd29bbc6', 'value': 22000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x55f0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:28:37.000Z'}}, {'blockNum': '0x52ad4b', 'uniqueId': '0x2e63cc61777154b38c4a62831812a66e9a7fb66825775435ea86988e725a0372:log:0', 'hash': '0x2e63cc61777154b38c4a62831812a66e9a7fb66825775435ea86988e725a0372', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'value': 24655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x604f', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:30:31.000Z'}}, {'blockNum': '0x52ad55', 'uniqueId': '0xf09be9bbde5d53c8bcb72174436b39255db6dc33b097e281f21b54506982bdbd:log:64', 'hash': '0xf09be9bbde5d53c8bcb72174436b39255db6dc33b097e281f21b54506982bdbd', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'value': 18144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x46e0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:33:26.000Z'}}, {'blockNum': '0x52ad68', 'uniqueId': '0x4417475b365a821ba144e230704930f98f6fd6456ec28b072a7055aa11ea1058:log:13', 'hash': '0x4417475b365a821ba144e230704930f98f6fd6456ec28b072a7055aa11ea1058', 'from': '0x38589df8ccb9ab95d0ed9780bbabcf11735cdc50', 'to': '0xae9df8903b214e2cc05616ab588b3169bc658091', 'value': 59130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xe6fa', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:36:23.000Z'}}, {'blockNum': '0x52ad69', 'uniqueId': '0xf797b47270c56aa76cc690377e6b05f42da58601aae51f12857edf52a38ffe40:log:82', 'hash': '0xf797b47270c56aa76cc690377e6b05f42da58601aae51f12857edf52a38ffe40', 'from': '0xde8c43fdf50c517e0cc50677617238cd6d42a11c', 'to': '0x3d1fdf045ff9ae27545a17fe60ee07d3effd43fe', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x01f4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:36:55.000Z'}}, {'blockNum': '0x52ad6b', 'uniqueId': '0x85ee8c87e06e3781eb1aa0c925296bef85f62fac4f328368710bddc36c6358c7:log:0', 'hash': '0x85ee8c87e06e3781eb1aa0c925296bef85f62fac4f328368710bddc36c6358c7', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'value': 29097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x71a9', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:37:07.000Z'}}, {'blockNum': '0x52ad70', 'uniqueId': '0x95b7fcd3eade721948ee9b50b8f4e1ac2d882670fe5dfc548fffcdde5a9f961f:log:20', 'hash': '0x95b7fcd3eade721948ee9b50b8f4e1ac2d882670fe5dfc548fffcdde5a9f961f', 'from': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x46e0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:39:07.000Z'}}, {'blockNum': '0x52ad70', 'uniqueId': '0xae62b063503c93be541e2af42c297612e12892d35686d59a4d6694da39e7c3a1:log:21', 'hash': '0xae62b063503c93be541e2af42c297612e12892d35686d59a4d6694da39e7c3a1', 'from': '0xbcf6cf12e69bc71ae24e3e41b66997dacd29bbc6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x55f0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:39:07.000Z'}}, {'blockNum': '0x52ad70', 'uniqueId': '0x727e506e7c9787768d0bcdd6e95337017df3e52a72927d6395549b1f7f8d8d83:log:25', 'hash': '0x727e506e7c9787768d0bcdd6e95337017df3e52a72927d6395549b1f7f8d8d83', 'from': '0xae9df8903b214e2cc05616ab588b3169bc658091', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xe6fa', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:39:07.000Z'}}, {'blockNum': '0x52ada3', 'uniqueId': '0x589beee5fdd04d4670305ba75c3b61429fbc0ff57d643f048cb6d53703f4cfba:log:28', 'hash': '0x589beee5fdd04d4670305ba75c3b61429fbc0ff57d643f048cb6d53703f4cfba', 'from': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xd1f8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:49:02.000Z'}}, {'blockNum': '0x52ada5', 'uniqueId': '0x6f5d501528be1032b7bf4b5246b3817d2f9a4526e31723dc8a9c2f99a4ffd021:log:1', 'hash': '0x6f5d501528be1032b7bf4b5246b3817d2f9a4526e31723dc8a9c2f99a4ffd021', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x738472d33bce28c9d8b6178584cd884b1486200f', 'value': 2698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0a8a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:49:31.000Z'}}, {'blockNum': '0x52adac', 'uniqueId': '0x2f33a7f4b3b636f9b9e761019581f156e76083d2685ffd2ee93b07c4fb3180c9:log:18', 'hash': '0x2f33a7f4b3b636f9b9e761019581f156e76083d2685ffd2ee93b07c4fb3180c9', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x29cb43c6377d7752cf5bdbe04c0fafe22c3a6a0e', 'value': 14708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x3974', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:52:54.000Z'}}, {'blockNum': '0x52adac', 'uniqueId': '0xba7141eee9666082e2a17ea765d52c1e7ff806a304d15b32800ad091eeef21f7:log:46', 'hash': '0xba7141eee9666082e2a17ea765d52c1e7ff806a304d15b32800ad091eeef21f7', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0141', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:52:54.000Z'}}, {'blockNum': '0x52adb2', 'uniqueId': '0x328e89a5362fb5e0c6470ad9aa347dc142c5087d926aecc4b30b20070cc9b918:log:21', 'hash': '0x328e89a5362fb5e0c6470ad9aa347dc142c5087d926aecc4b30b20070cc9b918', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x29cb43c6377d7752cf5bdbe04c0fafe22c3a6a0e', 'value': 5162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x142a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:53:46.000Z'}}, {'blockNum': '0x52adb7', 'uniqueId': '0x133bc16219aa39d77b2a0706cbfe4752882e297d6b9ff7a09ea0d19ab0eaea67:log:8', 'hash': '0x133bc16219aa39d77b2a0706cbfe4752882e297d6b9ff7a09ea0d19ab0eaea67', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'value': 12878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x324e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:54:21.000Z'}}, {'blockNum': '0x52adb7', 'uniqueId': '0x3048434bff4fa6842e9bda0d3d689968244d644d21bcb36d36618f072e5c6c1a:log:48', 'hash': '0x3048434bff4fa6842e9bda0d3d689968244d644d21bcb36d36618f072e5c6c1a', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 12169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f89', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:54:21.000Z'}}, {'blockNum': '0x52adba', 'uniqueId': '0x3c0abcbed9150b0123a9539f88638deaec8defcc584948b520282a8077d216cc:log:48', 'hash': '0x3c0abcbed9150b0123a9539f88638deaec8defcc584948b520282a8077d216cc', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x1674f04b3aaa79efbee513acd3a8155a24affea8', 'value': 2886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0b46', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:55:53.000Z'}}, {'blockNum': '0x52adc3', 'uniqueId': '0xda478bfeb533f6c8d96134cc8a4f8794b04ada6118e5f6839ee3a6abe6cdc1b5:log:73', 'hash': '0xda478bfeb533f6c8d96134cc8a4f8794b04ada6118e5f6839ee3a6abe6cdc1b5', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x29cb43c6377d7752cf5bdbe04c0fafe22c3a6a0e', 'value': 5598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x15de', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:58:34.000Z'}}, {'blockNum': '0x52adc4', 'uniqueId': '0x81256cfef97eac703fefdeadf2ef9709232537919ab7fbccc438c8fcac91dc0b:log:24', 'hash': '0x81256cfef97eac703fefdeadf2ef9709232537919ab7fbccc438c8fcac91dc0b', 'from': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x324e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:59:14.000Z'}}, {'blockNum': '0x52adc4', 'uniqueId': '0x0068972deedb3655503c9008fc84c257a98e70380d6fefd9810781b6e72e9d2d:log:25', 'hash': '0x0068972deedb3655503c9008fc84c257a98e70380d6fefd9810781b6e72e9d2d', 'from': '0x738472d33bce28c9d8b6178584cd884b1486200f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x157a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:59:14.000Z'}}, {'blockNum': '0x52adc4', 'uniqueId': '0x4f120fccc904d27d066413b851a35505201b4d4e70c6b5fedaaf3bec048dd085:log:30', 'hash': '0x4f120fccc904d27d066413b851a35505201b4d4e70c6b5fedaaf3bec048dd085', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f89', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:59:14.000Z'}}, {'blockNum': '0x52adc4', 'uniqueId': '0xdc7e6a0a1f9e3fa8dc01de3a092cd3e6943b8cab26d01cdf67c7c4c80649e3b7:log:36', 'hash': '0xdc7e6a0a1f9e3fa8dc01de3a092cd3e6943b8cab26d01cdf67c7c4c80649e3b7', 'from': '0x29cb43c6377d7752cf5bdbe04c0fafe22c3a6a0e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19870, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4d9e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:59:14.000Z'}}, {'blockNum': '0x52add0', 'uniqueId': '0xd1c622074f18dc28042b72f5515c046259d370b1659fbeeffeb790b80915f663:log:0', 'hash': '0xd1c622074f18dc28042b72f5515c046259d370b1659fbeeffeb790b80915f663', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'value': 27804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x6c9c', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:01:43.000Z'}}, {'blockNum': '0x52add1', 'uniqueId': '0x982c50396e2741c3da12e6b235b5e7b6ff151c632f4d12eb5d6172a213c8307b:log:1', 'hash': '0x982c50396e2741c3da12e6b235b5e7b6ff151c632f4d12eb5d6172a213c8307b', 'from': '0x9a2d163ab40f88c625fd475e807bbc3556566f80', 'to': '0x306b16a86776d9917883ba666ad0fc4b4310addf', 'value': 17200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4330', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:01:53.000Z'}}, {'blockNum': '0x52add4', 'uniqueId': '0x06ad9e5f40ef33c5ee3974e7ac41a7d48bb9b22f864b47b862cd9e9b2b82a703:log:9', 'hash': '0x06ad9e5f40ef33c5ee3974e7ac41a7d48bb9b22f864b47b862cd9e9b2b82a703', 'from': '0x306b16a86776d9917883ba666ad0fc4b4310addf', 'to': '0x4b48e8318427bdb8b1d0c8a1bba3956ccf424422', 'value': 17200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4330', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:02:50.000Z'}}, {'blockNum': '0x52add4', 'uniqueId': '0xc2cdef9f0a0eb935e7a3064b4197ce01bc494e586f7188984b0c07d19e41999d:log:43', 'hash': '0xc2cdef9f0a0eb935e7a3064b4197ce01bc494e586f7188984b0c07d19e41999d', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 3270, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0cc6', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:02:50.000Z'}}, {'blockNum': '0x52add6', 'uniqueId': '0xacea7379aacfa4d690eb81b3752c3ca9848f042123cb586daccb818bb8e9fb4a:log:6', 'hash': '0xacea7379aacfa4d690eb81b3752c3ca9848f042123cb586daccb818bb8e9fb4a', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 2430, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x097e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:03:16.000Z'}}, {'blockNum': '0x52add8', 'uniqueId': '0xca3557a322e383f657d4fb7e103494e978331a8038a63eb7770ca32b1ef2076c:log:15', 'hash': '0xca3557a322e383f657d4fb7e103494e978331a8038a63eb7770ca32b1ef2076c', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 2309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0905', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:03:33.000Z'}}, {'blockNum': '0x52addd', 'uniqueId': '0xd8305b9c61427a5db04232d113c78de9b217f17f64d68df867c7a23fa328e746:log:0', 'hash': '0xd8305b9c61427a5db04232d113c78de9b217f17f64d68df867c7a23fa328e746', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0xc18118a2976a9e362a0f8d15ca10761593242a85', 'value': 18839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4997', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:05:27.000Z'}}, {'blockNum': '0x52addf', 'uniqueId': '0x6e79b2f44f3d45b4c2873e269c698453158d9584b28b7f71e2ded2cc65cf334c:log:10', 'hash': '0x6e79b2f44f3d45b4c2873e269c698453158d9584b28b7f71e2ded2cc65cf334c', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 438194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x06afb2', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:05:56.000Z'}}, {'blockNum': '0x52addf', 'uniqueId': '0x20fb325d2e6f2743f299cb79082ead64ae8b0a41ee552e31f40eee4464c7651d:log:57', 'hash': '0x20fb325d2e6f2743f299cb79082ead64ae8b0a41ee552e31f40eee4464c7651d', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 2439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0987', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:05:56.000Z'}}, {'blockNum': '0x52ade2', 'uniqueId': '0x96f66a8e640bf9d5bcc5964a358162e2a5af051ef4f6c616fa90e7b524219798:log:4', 'hash': '0x96f66a8e640bf9d5bcc5964a358162e2a5af051ef4f6c616fa90e7b524219798', 'from': '0xa30d8157911ef23c46c0eb71889efe6a648a41f7', 'to': '0x50dd14c11eaedc49651d9c0fd5f3f81500adc463', 'value': 481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x01e1', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:06:47.000Z'}}, {'blockNum': '0x52ade2', 'uniqueId': '0x6a74487c5291d81046eb087b0cabd4b1bfd1e441094ab93b2391c6238c8c514c:log:5', 'hash': '0x6a74487c5291d81046eb087b0cabd4b1bfd1e441094ab93b2391c6238c8c514c', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 12193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2fa1', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:06:47.000Z'}}, {'blockNum': '0x52adee', 'uniqueId': '0x0c063167ec0a828d186da3f4d13edd4f76cc0fa7aebfeb6e28bd8a1ecb5094c4:log:28', 'hash': '0x0c063167ec0a828d186da3f4d13edd4f76cc0fa7aebfeb6e28bd8a1ecb5094c4', 'from': '0x4b48e8318427bdb8b1d0c8a1bba3956ccf424422', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4330', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:09:01.000Z'}}, {'blockNum': '0x52adef', 'uniqueId': '0xbab4159b0776c9552a37d7b88bf8277bce04999f00adb02c119e4059b40d9742:log:1', 'hash': '0xbab4159b0776c9552a37d7b88bf8277bce04999f00adb02c119e4059b40d9742', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2093', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:09:04.000Z'}}, {'blockNum': '0x52adef', 'uniqueId': '0xc456921eb426edb6e0329070f4cb1e0e5872d4ff601ff2a0a972de91fc4d335c:log:2', 'hash': '0xc456921eb426edb6e0329070f4cb1e0e5872d4ff601ff2a0a972de91fc4d335c', 'from': '0xc18118a2976a9e362a0f8d15ca10761593242a85', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4997', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:09:04.000Z'}}, {'blockNum': '0x52adef', 'uniqueId': '0xc964b0f895f04e4b0e26b2830355e15ddaba24f602de39dd9f60a4038558d7f5:log:3', 'hash': '0xc964b0f895f04e4b0e26b2830355e15ddaba24f602de39dd9f60a4038558d7f5', 'from': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x6c9c', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:09:04.000Z'}}, {'blockNum': '0x52adef', 'uniqueId': '0x854989a512df332f8fb25ae253238a1c7bd0dc2d25def548e24f57fe6c2909da:log:5', 'hash': '0x854989a512df332f8fb25ae253238a1c7bd0dc2d25def548e24f57fe6c2909da', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x3903', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:09:04.000Z'}}, {'blockNum': '0x52adef', 'uniqueId': '0xde348d25ec810b71280c62e00a2795c62ffda9b7ec7d80090a98233cc8d4dd8f:log:6', 'hash': '0xde348d25ec810b71280c62e00a2795c62ffda9b7ec7d80090a98233cc8d4dd8f', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 438194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x06afb2', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:09:04.000Z'}}, {'blockNum': '0x52adef', 'uniqueId': '0xcb818cbcfa7d3d2104a5322d4175515ea4e9000c4e6738165ea0cccd82b7fa5c:log:9', 'hash': '0xcb818cbcfa7d3d2104a5322d4175515ea4e9000c4e6738165ea0cccd82b7fa5c', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2fa1', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:09:04.000Z'}}, {'blockNum': '0x52adef', 'uniqueId': '0xe8a301d8ab701cc119da7a6b76102f1b6486ecd694145fc7355275490dd60e82:log:19', 'hash': '0xe8a301d8ab701cc119da7a6b76102f1b6486ecd694145fc7355275490dd60e82', 'from': '0x29cb43c6377d7752cf5bdbe04c0fafe22c3a6a0e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x15de', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:09:04.000Z'}}, {'blockNum': '0x52ae02', 'uniqueId': '0xc798e0be6edfc79eb1c7bb5a84d35a4dbd34ddd90942a17ae5eab5298ef93777:log:86', 'hash': '0xc798e0be6edfc79eb1c7bb5a84d35a4dbd34ddd90942a17ae5eab5298ef93777', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x3d2bd1d72fc974dc016d6f8ff09c17eee3cee4c5', 'value': 6778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1a7a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:13:23.000Z'}}, {'blockNum': '0x52ae09', 'uniqueId': '0xb55ca07bbe016070399ee1fbd8f3a4bd12ff7b70eaa5dbc727506a8e9a1e837a:log:1', 'hash': '0xb55ca07bbe016070399ee1fbd8f3a4bd12ff7b70eaa5dbc727506a8e9a1e837a', 'from': '0xa30d8157911ef23c46c0eb71889efe6a648a41f7', 'to': '0x56d372a87a657bef8d544dc4470fd80f96e4ba42', 'value': 5739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x166b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:15:03.000Z'}}, {'blockNum': '0x52ae13', 'uniqueId': '0xf1dc3bf9c9d527deb48b779b7604e182a229e77ea1406d1ede586022eb7ccd75:log:0', 'hash': '0xf1dc3bf9c9d527deb48b779b7604e182a229e77ea1406d1ede586022eb7ccd75', 'from': '0x4fc9395c7e84ae1380b166c93fa59ef358b50a7f', 'to': '0xc237d64de3f2c76357cc0570bdfed904380b8c75', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x61a8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:17:02.000Z'}}, {'blockNum': '0x52ae1e', 'uniqueId': '0xffcf773c3bad0d03c382fc8357cfbce164b462262f82c07fbcecea2bf7a06a0f:log:47', 'hash': '0xffcf773c3bad0d03c382fc8357cfbce164b462262f82c07fbcecea2bf7a06a0f', 'from': '0xc237d64de3f2c76357cc0570bdfed904380b8c75', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x61a8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:19:46.000Z'}}, {'blockNum': '0x52ae1e', 'uniqueId': '0x5c2d4084528edc2760811219208af9ff3503d2d3d16debfa85e7a6e9c5253890:log:48', 'hash': '0x5c2d4084528edc2760811219208af9ff3503d2d3d16debfa85e7a6e9c5253890', 'from': '0x56d372a87a657bef8d544dc4470fd80f96e4ba42', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x166b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:19:46.000Z'}}, {'blockNum': '0x52ae3a', 'uniqueId': '0x9f3e0bd0fdbab47bb10f135ec18b5016ae4f82c24f0251bd3555e2dd61c60204:log:8', 'hash': '0x9f3e0bd0fdbab47bb10f135ec18b5016ae4f82c24f0251bd3555e2dd61c60204', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8bbb73bcb5d553b5a556358d27625323fd781d37', 'value': 295423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0481ff', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:26:06.000Z'}}, {'blockNum': '0x52ae44', 'uniqueId': '0xa36b5cd06cba0634deaf68a9d9de474a1101b60daf7d71a0f196b41135be8a07:log:14', 'hash': '0xa36b5cd06cba0634deaf68a9d9de474a1101b60daf7d71a0f196b41135be8a07', 'from': '0xc4e541cfcae8f91f1f9acc8f6b87f0704024bc3b', 'to': '0xb5a2f6ba15da78f773763eccf3076ed69e2e3402', 'value': 432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x01b0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:28:13.000Z'}}, {'blockNum': '0x52ae45', 'uniqueId': '0x70b7b6ef5b47b399598864ba371d0def48c82799918d177fa2d1122a674d244c:log:7', 'hash': '0x70b7b6ef5b47b399598864ba371d0def48c82799918d177fa2d1122a674d244c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbee486035282c27a5ed93a28d9f9a9689f1a829e', 'value': 66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x42', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:28:31.000Z'}}, {'blockNum': '0x52ae47', 'uniqueId': '0x00fefe2caaacbb13af0ab08fd06993dd096a18bf65adc00b534240d7c38d2127:log:105', 'hash': '0x00fefe2caaacbb13af0ab08fd06993dd096a18bf65adc00b534240d7c38d2127', 'from': '0x3d2bd1d72fc974dc016d6f8ff09c17eee3cee4c5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1a7a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:28:56.000Z'}}, {'blockNum': '0x52ae5d', 'uniqueId': '0xa05fc87e721b3e89bd11fc26f170ec602456d6560835dcb05e78fec1f7400ad3:log:3', 'hash': '0xa05fc87e721b3e89bd11fc26f170ec602456d6560835dcb05e78fec1f7400ad3', 'from': '0x8bbb73bcb5d553b5a556358d27625323fd781d37', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 295423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0481ff', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:32:35.000Z'}}, {'blockNum': '0x52ae5e', 'uniqueId': '0xbf35b6a33e1646ddde3b5156c9ba4dd2b36bf7d44a8fe84e7aba0f10e1eeab85:log:4', 'hash': '0xbf35b6a33e1646ddde3b5156c9ba4dd2b36bf7d44a8fe84e7aba0f10e1eeab85', 'from': '0xc24f574d6853f6f6a31c19d468a8c1b3f31c0e54', 'to': '0x207493711f59e6e469923691784299648416723d', 'value': 2996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0bb4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:32:47.000Z'}}, {'blockNum': '0x52ae66', 'uniqueId': '0xde1ef74e45b89cf549d9cfb20f05783b504fe8ff7a266153cba63996bf950115:log:3', 'hash': '0xde1ef74e45b89cf549d9cfb20f05783b504fe8ff7a266153cba63996bf950115', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc6c3633a71d6039468bfbf742d15bc5b9ca19dc0', 'value': 12182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f96', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:35:04.000Z'}}, {'blockNum': '0x52ae89', 'uniqueId': '0x0efdfe25cd81f01d33adcd53bc6f835d3a0639593e853c0386e24e7d23997045:log:4', 'hash': '0x0efdfe25cd81f01d33adcd53bc6f835d3a0639593e853c0386e24e7d23997045', 'from': '0xed93d3abf4e52d3cf7273ed4c7ea6f17ee876b99', 'to': '0xbbd4a624a58cf6b07e1f53acb5cd8ef86c777cc0', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:42:19.000Z'}}, {'blockNum': '0x52ae90', 'uniqueId': '0x51ec9d66edfcb2a22dce25e5245f687eda1ba9c7ec373eb32e23c3542a1ca825:log:1', 'hash': '0x51ec9d66edfcb2a22dce25e5245f687eda1ba9c7ec373eb32e23c3542a1ca825', 'from': '0xc6c3633a71d6039468bfbf742d15bc5b9ca19dc0', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 12182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f96', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:44:13.000Z'}}, {'blockNum': '0x52aea4', 'uniqueId': '0x7e578f9ab84c1d2ce86b6f7dc3cf9f1a785aaa73e4aae467ca839b63d2ed6c5c:log:44', 'hash': '0x7e578f9ab84c1d2ce86b6f7dc3cf9f1a785aaa73e4aae467ca839b63d2ed6c5c', 'from': '0xbbd4a624a58cf6b07e1f53acb5cd8ef86c777cc0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:49:06.000Z'}}, {'blockNum': '0x52aea7', 'uniqueId': '0x47a6f4a3e6e09d89e3c664e3d3113d5fd5c7cb37ea970f5c1d2707e08dc81f86:log:2', 'hash': '0x47a6f4a3e6e09d89e3c664e3d3113d5fd5c7cb37ea970f5c1d2707e08dc81f86', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 12162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f82', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:49:46.000Z'}}, {'blockNum': '0x52aeb0', 'uniqueId': '0xac92aa0c2e90e2f1799ee8c828e2126a3788725aa27fe400130f1fc42f431e19:log:121', 'hash': '0xac92aa0c2e90e2f1799ee8c828e2126a3788725aa27fe400130f1fc42f431e19', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 2154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x086a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:51:26.000Z'}}, {'blockNum': '0x52aeb9', 'uniqueId': '0xb8fdf3d21cc9da7102f49bd92c12dbfe30da6cf46c01f1e4f32159f442f87b19:log:50', 'hash': '0xb8fdf3d21cc9da7102f49bd92c12dbfe30da6cf46c01f1e4f32159f442f87b19', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0663', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:53:28.000Z'}}, {'blockNum': '0x52aec9', 'uniqueId': '0xf2f22f56014424a98f3ad0e487dc98740fbb5fe63b845b5c8ead6d1fcf8cf362:log:2', 'hash': '0xf2f22f56014424a98f3ad0e487dc98740fbb5fe63b845b5c8ead6d1fcf8cf362', 'from': '0xc0cbd93be551016e000482a32c91402af64e587d', 'to': '0x72dafbe65ba160b840da3d58fb6395da94e74599', 'value': 837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0345', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:57:10.000Z'}}, {'blockNum': '0x52aecb', 'uniqueId': '0xb21680dddb23f431e40db3df72287a2330dae111f8f5a4f348b2a4c1f0972cfa:log:0', 'hash': '0xb21680dddb23f431e40db3df72287a2330dae111f8f5a4f348b2a4c1f0972cfa', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x598a2179b0273219fe72515666c9e57e26b4b7fa', 'value': 4413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x113d', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:57:33.000Z'}}, {'blockNum': '0x52aed3', 'uniqueId': '0x5ceb0bf3de644341994d86030acdc87fd0ae2c1f0a0de93e8e8e83e9bbacbd9b:log:26', 'hash': '0x5ceb0bf3de644341994d86030acdc87fd0ae2c1f0a0de93e8e8e83e9bbacbd9b', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0ecd', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:59:26.000Z'}}, {'blockNum': '0x52aed3', 'uniqueId': '0x5f3a7df98e618e280c3ea72e9a1f60f5f667121e02b369c012e9a03e4451393e:log:27', 'hash': '0x5f3a7df98e618e280c3ea72e9a1f60f5f667121e02b369c012e9a03e4451393e', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f82', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:59:26.000Z'}}, {'blockNum': '0x52aeeb', 'uniqueId': '0xd11f8496ca6fc4fff5d03b7586be73aa9b4e9a8dffd7c7923705d78ac6f3c826:log:1', 'hash': '0xd11f8496ca6fc4fff5d03b7586be73aa9b4e9a8dffd7c7923705d78ac6f3c826', 'from': '0xf4a14010acbe82428516415a117b157b59cc6bb3', 'to': '0x0de9aae7d237afacfac7bc6a9c9898a65f23600e', 'value': 9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x09', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:05:23.000Z'}}, {'blockNum': '0x52aefd', 'uniqueId': '0xb874305933f227bbd285bc0440cd214e60c6c441616c619421979d7124b83805:log:17', 'hash': '0xb874305933f227bbd285bc0440cd214e60c6c441616c619421979d7124b83805', 'from': '0x598a2179b0273219fe72515666c9e57e26b4b7fa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x113d', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:09:07.000Z'}}, {'blockNum': '0x52aeff', 'uniqueId': '0x97083e1c36e209fcb7ee30984a161504eea209bca0a920fc43580da2fa78af1b:log:13', 'hash': '0x97083e1c36e209fcb7ee30984a161504eea209bca0a920fc43580da2fa78af1b', 'from': '0xf4a14010acbe82428516415a117b157b59cc6bb3', 'to': '0x0de9aae7d237afacfac7bc6a9c9898a65f23600e', 'value': 59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x3b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:09:26.000Z'}}, {'blockNum': '0x52af07', 'uniqueId': '0x9b0b558a672613f5db1f58a952ca9bb8806fe304316570c0597431d40156d5f0:log:0', 'hash': '0x9b0b558a672613f5db1f58a952ca9bb8806fe304316570c0597431d40156d5f0', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x1674f04b3aaa79efbee513acd3a8155a24affea8', 'value': 2008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x07d8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:10:58.000Z'}}, {'blockNum': '0x52af26', 'uniqueId': '0x9bd33f23d32cae57b607677ac83cd8e303af431af5e77180528d54b74c536c71:log:28', 'hash': '0x9bd33f23d32cae57b607677ac83cd8e303af431af5e77180528d54b74c536c71', 'from': '0x1674f04b3aaa79efbee513acd3a8155a24affea8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x131e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:19:10.000Z'}}, {'blockNum': '0x52af30', 'uniqueId': '0xa403f1532b3e2af8c65a6c159cce6fe49acf2c93a564ac3b99abd4c713da40d1:log:2', 'hash': '0xa403f1532b3e2af8c65a6c159cce6fe49acf2c93a564ac3b99abd4c713da40d1', 'from': '0xf4a14010acbe82428516415a117b157b59cc6bb3', 'to': '0x98aa60f08f8f2f9c30fddb73499f44a11f37e0dc', 'value': 10837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2a55', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:21:26.000Z'}}, {'blockNum': '0x52af51', 'uniqueId': '0xaf56c343d6e0eb3685675c21b740af3f3658c4242569da77a4e4904b6b017713:log:41', 'hash': '0xaf56c343d6e0eb3685675c21b740af3f3658c4242569da77a4e4904b6b017713', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x06af', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:29:04.000Z'}}, {'blockNum': '0x52af51', 'uniqueId': '0x04ac9d69e5ae63a1ecaede443dad0d4ca7449e05d1d51f61ac4be58c58a2c786:log:56', 'hash': '0x04ac9d69e5ae63a1ecaede443dad0d4ca7449e05d1d51f61ac4be58c58a2c786', 'from': '0x98aa60f08f8f2f9c30fddb73499f44a11f37e0dc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2a55', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:29:04.000Z'}}, {'blockNum': '0x52af59', 'uniqueId': '0x462bec08374a0d5b63b747567f0a84cb8d8f1ed0689da508b79b099c63c16ce1:log:109', 'hash': '0x462bec08374a0d5b63b747567f0a84cb8d8f1ed0689da508b79b099c63c16ce1', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x2cb767dee9d20dbe7c7d2f576be2869db42ee02d', 'value': 6345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x18c9', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:30:49.000Z'}}, {'blockNum': '0x52af75', 'uniqueId': '0x8c9597349413a61c0313a2cc8a5e4f7973bb853f326f592f3d83cc629d73368d:log:7', 'hash': '0x8c9597349413a61c0313a2cc8a5e4f7973bb853f326f592f3d83cc629d73368d', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x598a2179b0273219fe72515666c9e57e26b4b7fa', 'value': 39060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x9894', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:39:11.000Z'}}, {'blockNum': '0x52af75', 'uniqueId': '0x5e91682cf13d54d53c9964902e6bbdbc17b15a71cd59b37ed291760384262c31:log:18', 'hash': '0x5e91682cf13d54d53c9964902e6bbdbc17b15a71cd59b37ed291760384262c31', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x7bd5284425879fdb22fce094f981d0efb9f8e22b', 'value': 49888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xc2e0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:39:11.000Z'}}, {'blockNum': '0x52af75', 'uniqueId': '0x512a2219c00a76b01bdfdbd69282c206cab53fec54012162460c06445e96fd77:log:46', 'hash': '0x512a2219c00a76b01bdfdbd69282c206cab53fec54012162460c06445e96fd77', 'from': '0x2cb767dee9d20dbe7c7d2f576be2869db42ee02d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x18c9', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:39:11.000Z'}}, {'blockNum': '0x52af7b', 'uniqueId': '0xbb91a727f2225a892fa7e809a391035b6fec55ad6980950327d26cc8729fb6b8:log:10', 'hash': '0xbb91a727f2225a892fa7e809a391035b6fec55ad6980950327d26cc8729fb6b8', 'from': '0x5664d5bd18eeacd3ed17e9252bbb4a9883ff5524', 'to': '0xe664fb39398c33bcca9e1d9e12c31975d4763eac', 'value': 430656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x069240', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:41:05.000Z'}}, {'blockNum': '0x52af7d', 'uniqueId': '0xf9d6a5b1b5065aadd1976e9bbf80d125923b6076d85d22c4f2b31d68c2f5201b:log:107', 'hash': '0xf9d6a5b1b5065aadd1976e9bbf80d125923b6076d85d22c4f2b31d68c2f5201b', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 31684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x7bc4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:42:01.000Z'}}, {'blockNum': '0x52af81', 'uniqueId': '0x3de2cb26e8e4028d55ddfe36b843331ad7b3e1f4889756396bad198226fc021b:log:68', 'hash': '0x3de2cb26e8e4028d55ddfe36b843331ad7b3e1f4889756396bad198226fc021b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb70f757b44ce03669f64170076e6909fcdf27593', 'value': 9683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x25d3', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:43:06.000Z'}}, {'blockNum': '0x52af98', 'uniqueId': '0x89c62c809972ad47a8cb7747dfa1d08c17c56381d6489a6242e48b3a2797cd96:log:42', 'hash': '0x89c62c809972ad47a8cb7747dfa1d08c17c56381d6489a6242e48b3a2797cd96', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x7bc4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:49:11.000Z'}}, {'blockNum': '0x52af98', 'uniqueId': '0x8b122566341cce78964c0b23ec636224c1c9dff1798e39730f67b19abee0be35:log:45', 'hash': '0x8b122566341cce78964c0b23ec636224c1c9dff1798e39730f67b19abee0be35', 'from': '0xe664fb39398c33bcca9e1d9e12c31975d4763eac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 430656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x069240', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:49:11.000Z'}}, {'blockNum': '0x52af98', 'uniqueId': '0x03ef456671fa7f9ac1fc9aabfd8e8dc71caa614b7403692b798367f0de0b187f:log:46', 'hash': '0x03ef456671fa7f9ac1fc9aabfd8e8dc71caa614b7403692b798367f0de0b187f', 'from': '0x598a2179b0273219fe72515666c9e57e26b4b7fa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 39060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x9894', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:49:11.000Z'}}, {'blockNum': '0x52afa3', 'uniqueId': '0x4e89c17b08ef7e121def54e70c2e37703ba0a29e682b88867ae6d2792701b3ca:log:1', 'hash': '0x4e89c17b08ef7e121def54e70c2e37703ba0a29e682b88867ae6d2792701b3ca', 'from': '0x7bd5284425879fdb22fce094f981d0efb9f8e22b', 'to': '0xc0181f4f690ee8b4ffa8745a0f5ceac14690afd5', 'value': 49888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xc2e0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:52:01.000Z'}}, {'blockNum': '0x52afcd', 'uniqueId': '0x534f98aadb71845c543e56905a07a1a762e695cabee7fb4b5c6dbf56996e54e0:log:1', 'hash': '0x534f98aadb71845c543e56905a07a1a762e695cabee7fb4b5c6dbf56996e54e0', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x598a2179b0273219fe72515666c9e57e26b4b7fa', 'value': 13483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x34ab', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T03:01:51.000Z'}}, {'blockNum': '0x52afd7', 'uniqueId': '0x5cc30af9b932f1bd0e72cec9380da6034da664fc39d00511252ec9555ce857d8:log:0', 'hash': '0x5cc30af9b932f1bd0e72cec9380da6034da664fc39d00511252ec9555ce857d8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8bbb73bcb5d553b5a556358d27625323fd781d37', 'value': 209171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x033113', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T03:03:36.000Z'}}, {'blockNum': '0x52afe8', 'uniqueId': '0x7739bca6165b1046ea0b8a04d3503be19e4646ebcfccaa5681f0bcfab918a89f:log:2', 'hash': '0x7739bca6165b1046ea0b8a04d3503be19e4646ebcfccaa5681f0bcfab918a89f', 'from': '0x8bbb73bcb5d553b5a556358d27625323fd781d37', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 209171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x033113', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T03:07:09.000Z'}}, {'blockNum': '0x52aff1', 'uniqueId': '0x76aaf272280e417e241746daf52c6c7c138b79c14732d1299a565b859b2fb4a0:log:27', 'hash': '0x76aaf272280e417e241746daf52c6c7c138b79c14732d1299a565b859b2fb4a0', 'from': '0xa21c33efb8a098c160f57fecd9caaadb2f0fae04', 'to': '0x3d71d5a5ab3c148944d581e3a57cf4851e00174e', 'value': 1999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x07cf', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T03:09:29.000Z'}}, {'blockNum': '0x52aff1', 'uniqueId': '0x4ab6e439ced2557710e8e16501092cc1091fc7c789e678a5ee51daa310d1b511:log:71', 'hash': '0x4ab6e439ced2557710e8e16501092cc1091fc7c789e678a5ee51daa310d1b511', 'from': '0x598a2179b0273219fe72515666c9e57e26b4b7fa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x34ab', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T03:09:29.000Z'}}, {'blockNum': '0x52aff1', 'uniqueId': '0xe8d8cf792c4e40f9ea1ae70bd59c45bcaf104905c4d4b9ee14a3db48dcbde71c:log:76', 'hash': '0xe8d8cf792c4e40f9ea1ae70bd59c45bcaf104905c4d4b9ee14a3db48dcbde71c', 'from': '0xc0181f4f690ee8b4ffa8745a0f5ceac14690afd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xc2e0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T03:09:29.000Z'}}, {'blockNum': '0x52b001', 'uniqueId': '0x4e8ea7f1be5b4a5a8b9a833f6c381990909ec9ee0eb5608b6ec270335b46cba6:log:4', 'hash': '0x4e8ea7f1be5b4a5a8b9a833f6c381990909ec9ee0eb5608b6ec270335b46cba6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 824828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0c95fc', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T03:13:04.000Z'}}, {'blockNum': '0x52b01a', 'uniqueId': '0x84ca50e46d707edebe927a5ff34596b64c86f7cf18e72af1ff4eb08677b40f94:log:10', 'hash': '0x84ca50e46d707edebe927a5ff34596b64c86f7cf18e72af1ff4eb08677b40f94', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x6215fb37fe93bf9b4e3280dfd27de1e0f549b061', 'value': 17960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4628', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T03:18:09.000Z'}}, {'blockNum': '0x52b028', 'uniqueId': '0x4fc65efcf260fe10cc40088bb35b6922d8a6d3db7ee737020f301179d3d2e921:log:22', 'hash': '0x4fc65efcf260fe10cc40088bb35b6922d8a6d3db7ee737020f301179d3d2e921', 'from': '0xdbd3dae55fcceaf4c34828b24e41d318e46f233c', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x03e4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T03:20:30.000Z'}}, {'blockNum': '0x52b055', 'uniqueId': '0x574043cb96c9ad8296d9c074df721a105c4a77380d07e5f5bb73305b6066b567:log:142', 'hash': '0x574043cb96c9ad8296d9c074df721a105c4a77380d07e5f5bb73305b6066b567', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0cbe39bb60bfa242c77c562d9173ea112463325e', 'value': 136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x88', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T03:31:59.000Z'}}, {'blockNum': '0x52b0de', 'uniqueId': '0x907128c7c24ae97366c122de7a09255524b8a38aa6e7fc065cd86a8e5572625c:log:8', 'hash': '0x907128c7c24ae97366c122de7a09255524b8a38aa6e7fc065cd86a8e5572625c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x848b748fa05dada18f8a379885943ef65de02e9e', 'value': 129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x81', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:03:29.000Z'}}, {'blockNum': '0x52b0f0', 'uniqueId': '0x87d80cc4186e71f82de8d469156fb4f4317c6867566f7ab6935b1edb799be7c9:log:109', 'hash': '0x87d80cc4186e71f82de8d469156fb4f4317c6867566f7ab6935b1edb799be7c9', 'from': '0x6215fb37fe93bf9b4e3280dfd27de1e0f549b061', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 17960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4628', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:07:53.000Z'}}, {'blockNum': '0x52b107', 'uniqueId': '0x91ce52551e7c685aafb13b8fd6a089eb51c53e33f72f2366fc4353dae3c8c9f0:log:8', 'hash': '0x91ce52551e7c685aafb13b8fd6a089eb51c53e33f72f2366fc4353dae3c8c9f0', 'from': '0xe9fc19bb8436f7f3002d1cdc2f06505a5e8446cc', 'to': '0x7af172fc15896cdc5ac9dc80e84459e078d970ab', 'value': 213356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x03416c', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:14:33.000Z'}}, {'blockNum': '0x52b117', 'uniqueId': '0x1d7af10fed8e15b228415445bc4923e88b1a76ab8712bebeec96cae93ee2c27f:log:17', 'hash': '0x1d7af10fed8e15b228415445bc4923e88b1a76ab8712bebeec96cae93ee2c27f', 'from': '0x7af172fc15896cdc5ac9dc80e84459e078d970ab', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 213356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x03416c', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:19:05.000Z'}}, {'blockNum': '0x52b130', 'uniqueId': '0xe6419b939cee83c5a2e1c47fe877bf88f871258d2f1230c92cc7c0836e45f47b:log:31', 'hash': '0xe6419b939cee83c5a2e1c47fe877bf88f871258d2f1230c92cc7c0836e45f47b', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x7bebb0b91fa4b12bf566fec51358cc529e06d56b', 'value': 6064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x17b0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:25:30.000Z'}}, {'blockNum': '0x52b142', 'uniqueId': '0xf60e024899d9e90d63f8ad844a4eca8efac60c6a920ae20883a879b5f62ed5bc:log:47', 'hash': '0xf60e024899d9e90d63f8ad844a4eca8efac60c6a920ae20883a879b5f62ed5bc', 'from': '0x7bebb0b91fa4b12bf566fec51358cc529e06d56b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x17ba', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:29:55.000Z'}}, {'blockNum': '0x52b149', 'uniqueId': '0xc1cf4986cfeefae424618e7ec0c455c31217e25c779256f16d8e8b3e614ca504:log:10', 'hash': '0xc1cf4986cfeefae424618e7ec0c455c31217e25c779256f16d8e8b3e614ca504', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x637acc2fb43a1fc972715f732e99c1866a17102f', 'value': 949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x03b5', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:32:42.000Z'}}, {'blockNum': '0x52b14a', 'uniqueId': '0xbc63dc19d6ea865ba3dc839584b1502cdc08f96d59bdfbe27bb72d3d0f836946:log:18', 'hash': '0xbc63dc19d6ea865ba3dc839584b1502cdc08f96d59bdfbe27bb72d3d0f836946', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 3087, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0c0f', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:32:52.000Z'}}, {'blockNum': '0x52b14d', 'uniqueId': '0x1d907e32fec4e8f924446508c3033e53186c714742b6d4120671888a6c2dcab8:log:16', 'hash': '0x1d907e32fec4e8f924446508c3033e53186c714742b6d4120671888a6c2dcab8', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 12206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2fae', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:34:15.000Z'}}, {'blockNum': '0x52b14e', 'uniqueId': '0xaa0cf62c291a301a538daf714b3ee2f52862cd315c01b3aee1e571ed713cb86b:log:117', 'hash': '0xaa0cf62c291a301a538daf714b3ee2f52862cd315c01b3aee1e571ed713cb86b', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 279374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x04434e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:34:20.000Z'}}, {'blockNum': '0x52b152', 'uniqueId': '0x2fdf75f16abd6724e8d9fa988d4cae493d9e4651808f1065bf44b829b7164f52:log:7', 'hash': '0x2fdf75f16abd6724e8d9fa988d4cae493d9e4651808f1065bf44b829b7164f52', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3552c54d983334ac3679f1f62b5d282c23e3b6ff', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x33', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:35:47.000Z'}}, {'blockNum': '0x52b15e', 'uniqueId': '0x8d3cdaba5794dd0852f47c5dbffa75225328865cd32a5dc55b0f5f68f1ee875e:log:17', 'hash': '0x8d3cdaba5794dd0852f47c5dbffa75225328865cd32a5dc55b0f5f68f1ee875e', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x12be', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:39:18.000Z'}}, {'blockNum': '0x52b15e', 'uniqueId': '0x8fc2072e540417127971b464618864bb2d6b388f863c39cff0f1eb35d1a9b8d5:log:21', 'hash': '0x8fc2072e540417127971b464618864bb2d6b388f863c39cff0f1eb35d1a9b8d5', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 279374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x04434e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:39:18.000Z'}}, {'blockNum': '0x52b15e', 'uniqueId': '0x9b2e934db0534538609861bd3c0ba2ea1b536a57b2dd8d4223c2ade73a17eecd:log:23', 'hash': '0x9b2e934db0534538609861bd3c0ba2ea1b536a57b2dd8d4223c2ade73a17eecd', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2fae', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:39:18.000Z'}}, {'blockNum': '0x52b15e', 'uniqueId': '0x48b6eac51078500fc2c1e71f50bc8a50dbb41e0bff887108abf2e39548f7dcbd:log:102', 'hash': '0x48b6eac51078500fc2c1e71f50bc8a50dbb41e0bff887108abf2e39548f7dcbd', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'value': 5572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x15c4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:39:18.000Z'}}, {'blockNum': '0x52b161', 'uniqueId': '0xfc07ffd7836349ce4ef45dce9c196be41d30455dbb4db4ae86039e7444774b4f:log:0', 'hash': '0xfc07ffd7836349ce4ef45dce9c196be41d30455dbb4db4ae86039e7444774b4f', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x3d2bd1d72fc974dc016d6f8ff09c17eee3cee4c5', 'value': 2384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0950', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:40:19.000Z'}}, {'blockNum': '0x52b161', 'uniqueId': '0x5397f48a0817bd81a031c1cd6b782736f0b8c506137aaffbffbec88418abbbaf:log:45', 'hash': '0x5397f48a0817bd81a031c1cd6b782736f0b8c506137aaffbffbec88418abbbaf', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 2129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0851', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:40:19.000Z'}}, {'blockNum': '0x52b161', 'uniqueId': '0x7b2c12ebae74c0b79a00f5528c1e54b82eb15bc3c6d96eb0de135fd927d32333:log:115', 'hash': '0x7b2c12ebae74c0b79a00f5528c1e54b82eb15bc3c6d96eb0de135fd927d32333', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0xc18118a2976a9e362a0f8d15ca10761593242a85', 'value': 9608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2588', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:40:19.000Z'}}, {'blockNum': '0x52b178', 'uniqueId': '0xea72199f25fb59e4e3fd3e3e4415789c0bd0a4bc6f5ae41ac8ea7e50b106b597:log:23', 'hash': '0xea72199f25fb59e4e3fd3e3e4415789c0bd0a4bc6f5ae41ac8ea7e50b106b597', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0xec07f0383759a92e565a69302c0757c1df48dd7a', 'value': 239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xef', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:45:12.000Z'}}, {'blockNum': '0x52b17f', 'uniqueId': '0xc95e5397f2cec48426a78221216c66c699de08839476c9f905e2a8bd07b9085b:log:8', 'hash': '0xc95e5397f2cec48426a78221216c66c699de08839476c9f905e2a8bd07b9085b', 'from': '0x2324f2b9a856b27ea8e8bd81fb55dcd45148490f', 'to': '0xae6ef19ef1e8f357b3ab1c5b5397b41a71b1c784', 'value': 2082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0822', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:47:16.000Z'}}, {'blockNum': '0x52b181', 'uniqueId': '0xb7294562580cc013e3779d06ef2e2984a7d82bec12c603a62ea8cd649393edb3:log:30', 'hash': '0xb7294562580cc013e3779d06ef2e2984a7d82bec12c603a62ea8cd649393edb3', 'from': '0x5664d5bd18eeacd3ed17e9252bbb4a9883ff5524', 'to': '0xe664fb39398c33bcca9e1d9e12c31975d4763eac', 'value': 2000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1e8480', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:48:25.000Z'}}, {'blockNum': '0x52b184', 'uniqueId': '0x5d40e26c27bf9f8fcf69594731001bdef6082090e2aaa93495698df9a01110ac:log:34', 'hash': '0x5d40e26c27bf9f8fcf69594731001bdef6082090e2aaa93495698df9a01110ac', 'from': '0x933b04d87db77da13eec0a20f726b27932574f2a', 'to': '0x8dede93246f2bd6cb5b539939a49d2d0ce756fde', 'value': 119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x77', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:48:47.000Z'}}, {'blockNum': '0x52b185', 'uniqueId': '0x8fda9dae4ff4b46c2bdcde6debbe886f44d6fc4b343c47127d118c78fe37991c:log:19', 'hash': '0x8fda9dae4ff4b46c2bdcde6debbe886f44d6fc4b343c47127d118c78fe37991c', 'from': '0xc18118a2976a9e362a0f8d15ca10761593242a85', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2588', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:49:06.000Z'}}, {'blockNum': '0x52b185', 'uniqueId': '0xa679b9788f9d01c33a6c74897bb1f11782c522820a586896ac933dad54b7af01:log:25', 'hash': '0xa679b9788f9d01c33a6c74897bb1f11782c522820a586896ac933dad54b7af01', 'from': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x15c4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:49:06.000Z'}}, {'blockNum': '0x52b18b', 'uniqueId': '0x0ae8fccf484009d9d446752084c4d0fa54dd87175dbbcc83f0357c33e9d282e7:log:2', 'hash': '0x0ae8fccf484009d9d446752084c4d0fa54dd87175dbbcc83f0357c33e9d282e7', 'from': '0x2324f2b9a856b27ea8e8bd81fb55dcd45148490f', 'to': '0xae6ef19ef1e8f357b3ab1c5b5397b41a71b1c784', 'value': 90000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x015f90', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:50:26.000Z'}}, {'blockNum': '0x52b1a4', 'uniqueId': '0x25b7c9095dc7e359cf133a686341c383bb59eb5373c9db7003dfdc19bc4c0972:log:3', 'hash': '0x25b7c9095dc7e359cf133a686341c383bb59eb5373c9db7003dfdc19bc4c0972', 'from': '0x9a2d163ab40f88c625fd475e807bbc3556566f80', 'to': '0xf90bfbaa667b28af539a55599056c13d4e237769', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4e20', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:55:35.000Z'}}, {'blockNum': '0x52b1a4', 'uniqueId': '0x69323e9bcecafa0ce2ad425d9476dbeca97a28b570a9c468c0aba61cf1bbaead:log:44', 'hash': '0x69323e9bcecafa0ce2ad425d9476dbeca97a28b570a9c468c0aba61cf1bbaead', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 2319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x090f', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:55:35.000Z'}}, {'blockNum': '0x52b1a8', 'uniqueId': '0x961762460d070f74abafa96d057f0dd0d679b07fe1589977f2df6a82bc2b2124:log:30', 'hash': '0x961762460d070f74abafa96d057f0dd0d679b07fe1589977f2df6a82bc2b2124', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5597eeb02a97b6b55acd3314cf45737189e2db13', 'value': 450, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x01c2', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:56:31.000Z'}}, {'blockNum': '0x52b1b7', 'uniqueId': '0x6d5cadfb7bcbf4bfa1eb8cb095dd1e6dd9cc882b2bfaede96f5944cc729a9f82:log:67', 'hash': '0x6d5cadfb7bcbf4bfa1eb8cb095dd1e6dd9cc882b2bfaede96f5944cc729a9f82', 'from': '0xae6ef19ef1e8f357b3ab1c5b5397b41a71b1c784', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 92082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0167b2', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:58:57.000Z'}}, {'blockNum': '0x52b1b7', 'uniqueId': '0x6c670224570f02c02b4a7d40b8e1589df6c6b90d83ebf04724ac7729f9343b17:log:68', 'hash': '0x6c670224570f02c02b4a7d40b8e1589df6c6b90d83ebf04724ac7729f9343b17', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1160', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:58:57.000Z'}}, {'blockNum': '0x52b1b7', 'uniqueId': '0x6c3b6def560112a00bba028975256c556ff9fb3fef892f9b714b86c6bfe829d1:log:72', 'hash': '0x6c3b6def560112a00bba028975256c556ff9fb3fef892f9b714b86c6bfe829d1', 'from': '0xe664fb39398c33bcca9e1d9e12c31975d4763eac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1e8480', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:58:57.000Z'}}]}}
Number of returned transfers: 191
Answer is complete
symbol TNT
group BPS
date 2018-04-14
hour 17:00
exchange binance
Name: 295, dtype: object
HERE
Symbol: TNT, Contract: 0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8
Datetime timestamps: 2018-04-14 17:00:00 2018-04-14 05:00:00 2018-04-15 05:00:00
Unix timestamps: 1523674800.0 1523761200.0
Hex Block Numbers: 0x52f52d 0x530c6f
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x52f52d', 'uniqueId': '0xe84b08f2d5820be9430352b5b534c2061ada096510f8ba8fac226bcaad84b116:log:86', 'hash': '0xe84b08f2d5820be9430352b5b534c2061ada096510f8ba8fac226bcaad84b116', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x1d1bce8438390c8320387468eb82d8a475f4df44', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T03:00:12.000Z'}}, {'blockNum': '0x52f5ae', 'uniqueId': '0xcb50c6b325e6584a8d953e44d6d001f46e064a8cc1b1348513080813a6bfcfd4:log:55', 'hash': '0xcb50c6b325e6584a8d953e44d6d001f46e064a8cc1b1348513080813a6bfcfd4', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xbd188adbc220da1ee7fe772d3b295d35e7d1e9c5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T03:30:27.000Z'}}, {'blockNum': '0x52f5ff', 'uniqueId': '0x68990c5dd22c32f09189b397be2b001ba49cc2d11c925e2b7a8a3321f3cf6097:log:18', 'hash': '0x68990c5dd22c32f09189b397be2b001ba49cc2d11c925e2b7a8a3321f3cf6097', 'from': '0x58a3b821395f9f3c4ee659f1feb4c1d07d4bcc7e', 'to': '0x02aa5bfbb5289aa2ffc5deca8f584e8c801b20ab', 'value': 1733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x28597c2500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T03:50:35.000Z'}}, {'blockNum': '0x52f60f', 'uniqueId': '0x76f5cdaad34d4c333ce6fc2006acb99862e1ce06fb089b402ce9a8968c92d4e3:log:47', 'hash': '0x76f5cdaad34d4c333ce6fc2006acb99862e1ce06fb089b402ce9a8968c92d4e3', 'from': '0x896b2222b907de1074db67b25f94c1a0f44ff16d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T03:53:30.000Z'}}, {'blockNum': '0x52f625', 'uniqueId': '0x0fd8afd47dcefdd4f1d8f7c240db7ef34eab5f728b40e7da70190e7340aac130:log:59', 'hash': '0x0fd8afd47dcefdd4f1d8f7c240db7ef34eab5f728b40e7da70190e7340aac130', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x681434b73a145b91a808e049188ee0a2326c8e15', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T04:00:40.000Z'}}, {'blockNum': '0x52f6a1', 'uniqueId': '0xfcfe4a371a52d1a19fc11b90185e1ddcb37b688c5107b6ee92bfd81af1a42dac:log:57', 'hash': '0xfcfe4a371a52d1a19fc11b90185e1ddcb37b688c5107b6ee92bfd81af1a42dac', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x041d59439f56be03c5cf1257bbf5aa3db06f5fbd', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T04:30:57.000Z'}}, {'blockNum': '0x52f731', 'uniqueId': '0x7caa9e5fbf8d107325542c5d58107eb10653ac1ddfff9dd04744793d630582f9:log:6', 'hash': '0x7caa9e5fbf8d107325542c5d58107eb10653ac1ddfff9dd04744793d630582f9', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x160044de86bcb5bb9522076800849f77a0c7c7fb', 'value': 1066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x18d1daea00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T05:03:43.000Z'}}, {'blockNum': '0x52f731', 'uniqueId': '0xa8e25973f63866625db60182b9553c79df27a49c8c2beecf4fac08c82c00b23a:log:38', 'hash': '0xa8e25973f63866625db60182b9553c79df27a49c8c2beecf4fac08c82c00b23a', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xdc25a52363ba2b06ab9cf6e8b4cd44f42624757d', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T05:03:43.000Z'}}, {'blockNum': '0x52f73b', 'uniqueId': '0xe80846538536b3b0520edd76bb7a0c1d6c7f5ff5c665123b516a4be4d285611e:log:32', 'hash': '0xe80846538536b3b0520edd76bb7a0c1d6c7f5ff5c665123b516a4be4d285611e', 'from': '0x5ff0bc8f9fd6618ad640ff04d09010a0a23859dc', 'to': '0x970bc60db3f979f9882716628ea3250802e4eefc', 'value': 750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1176592e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T05:06:48.000Z'}}, {'blockNum': '0x52f76b', 'uniqueId': '0x6fc3a7e1f7f6f5d0eeebcd8167f235abbdbbc19dee1108f2172efa3f1c068658:log:14', 'hash': '0x6fc3a7e1f7f6f5d0eeebcd8167f235abbdbbc19dee1108f2172efa3f1c068658', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x20fc8f986022678ea2c19cb9c7a4ff7b6a6a0e94', 'value': 1962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2dae6e6a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T05:19:52.000Z'}}, {'blockNum': '0x52f799', 'uniqueId': '0xc980ff8f4b0084969e39c60595ce4239b0510ee7da50f550cc2c164efba8612b:log:71', 'hash': '0xc980ff8f4b0084969e39c60595ce4239b0510ee7da50f550cc2c164efba8612b', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x152370c23f2f8d151e949dc26da25cfb32b0251c', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T05:30:47.000Z'}}, {'blockNum': '0x52f80d', 'uniqueId': '0xb7ac1371d50c9794e21e2be75d3dcd3bfd185a89871bc0d4ce379256d928f8f8:log:19', 'hash': '0xb7ac1371d50c9794e21e2be75d3dcd3bfd185a89871bc0d4ce379256d928f8f8', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x09745476b4d610b4918ae4db69af8cde80bfdc69', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T06:01:23.000Z'}}, {'blockNum': '0x52f851', 'uniqueId': '0x8c55ddc58ef19d943f0562394bbd1e729be7baf9f151fa8277464ce9bfbaa0c1:log:8', 'hash': '0x8c55ddc58ef19d943f0562394bbd1e729be7baf9f151fa8277464ce9bfbaa0c1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 27828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0287ebce3400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T06:17:42.000Z'}}, {'blockNum': '0x52f88d', 'uniqueId': '0xe6f5b2fd3cc89a5ecd92c6fa7985a847239813a9d50755036a8852a69f0ecd2c:log:17', 'hash': '0xe6f5b2fd3cc89a5ecd92c6fa7985a847239813a9d50755036a8852a69f0ecd2c', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x8fd0411da5dc54aa178ea99e4d6afc8031e8d747', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T06:30:32.000Z'}}, {'blockNum': '0x52f8a3', 'uniqueId': '0xc0805c1070b4f0e7aabd05a0a1be90761135eab64c0bcdeac6677668abd44df4:log:1', 'hash': '0xc0805c1070b4f0e7aabd05a0a1be90761135eab64c0bcdeac6677668abd44df4', 'from': '0x041d59439f56be03c5cf1257bbf5aa3db06f5fbd', 'to': '0x8bcde14b6f971292107f16a3ef6737c3f3d6abb5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T06:35:59.000Z'}}, {'blockNum': '0x52f8a9', 'uniqueId': '0xa9b593f6303e0dcd7522e79473a14060f63d1382f8ba57c5883c29781ddea30a:log:2', 'hash': '0xa9b593f6303e0dcd7522e79473a14060f63d1382f8ba57c5883c29781ddea30a', 'from': '0xdc25a52363ba2b06ab9cf6e8b4cd44f42624757d', 'to': '0x8bcde14b6f971292107f16a3ef6737c3f3d6abb5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T06:36:36.000Z'}}, {'blockNum': '0x52f8ad', 'uniqueId': '0xe73d4724a6849dab3fc87b630b593cb2b83fc7e3d6d6cc8ee47544ba9b1b3f80:log:6', 'hash': '0xe73d4724a6849dab3fc87b630b593cb2b83fc7e3d6d6cc8ee47544ba9b1b3f80', 'from': '0x337f8662c206d7405c0ec240d9030a09bfe2543b', 'to': '0x8bcde14b6f971292107f16a3ef6737c3f3d6abb5', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T06:37:33.000Z'}}, {'blockNum': '0x52f8b1', 'uniqueId': '0x1fd443dc478e2c73eef43909d26b16ef1c7552daabef4f5f0acca7bff1ead722:log:5', 'hash': '0x1fd443dc478e2c73eef43909d26b16ef1c7552daabef4f5f0acca7bff1ead722', 'from': '0x337f8662c206d7405c0ec240d9030a09bfe2543b', 'to': '0x80d7ff2b1abe8a63509fc9f8ce0dda647a31b17d', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T06:38:28.000Z'}}, {'blockNum': '0x52f8c5', 'uniqueId': '0x0c5465da2dce06124ce67168a5b1148628ab44bd9814b8e7e8a6d197db057a16:log:26', 'hash': '0x0c5465da2dce06124ce67168a5b1148628ab44bd9814b8e7e8a6d197db057a16', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 27269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x027ae7e7e500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T06:43:51.000Z'}}, {'blockNum': '0x52f8cd', 'uniqueId': '0x098077563238291d05602685a3e209e1e5dfca6ac7cdc88f533c2afff3336586:log:63', 'hash': '0x098077563238291d05602685a3e209e1e5dfca6ac7cdc88f533c2afff3336586', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x027ae7e7e500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T06:45:26.000Z'}}, {'blockNum': '0x52f909', 'uniqueId': '0xe33669dd5788125db51a74bdb3f3ffb7646305c252c8616d3ae88eb51408cc72:log:4', 'hash': '0xe33669dd5788125db51a74bdb3f3ffb7646305c252c8616d3ae88eb51408cc72', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x360c7867b7b528bda56b680632f6b980ed99cdb4', 'value': 1972.1539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2deaf40930', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T06:58:37.000Z'}}, {'blockNum': '0x52f915', 'uniqueId': '0xeaf3fc4cb22da6b8f03957c621057363498880d000ff2e43cf0f1d844b1fd610:log:59', 'hash': '0xeaf3fc4cb22da6b8f03957c621057363498880d000ff2e43cf0f1d844b1fd610', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x499314e879ac040ecf8ae957371397f82f525583', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T07:02:13.000Z'}}, {'blockNum': '0x52f929', 'uniqueId': '0x32551fa2f0970c70142e3c2ad15a3e1f88cf19fe58e072cf0d65e23c9fd7ef4b:log:1', 'hash': '0x32551fa2f0970c70142e3c2ad15a3e1f88cf19fe58e072cf0d65e23c9fd7ef4b', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 1896.294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2c26cb03c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T07:06:01.000Z'}}, {'blockNum': '0x52f96b', 'uniqueId': '0x56fdec6ff9a2a0b8d91d0610e6f8d95137da509dad59d0a9bc8ac4ce55e3e036:log:9', 'hash': '0x56fdec6ff9a2a0b8d91d0610e6f8d95137da509dad59d0a9bc8ac4ce55e3e036', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x8939c7c178ac116ed3c6f017d859ac6904760d38', 'value': 2885.5175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x432f064970', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T07:24:20.000Z'}}, {'blockNum': '0x52f987', 'uniqueId': '0xbe0692655b92cd96838102cb3b9f8e457723ca2495bb9c92b7e71d5efd29f2d1:log:24', 'hash': '0xbe0692655b92cd96838102cb3b9f8e457723ca2495bb9c92b7e71d5efd29f2d1', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x4287a1358f44946f12f8c7345eac81251575ab15', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T07:30:08.000Z'}}, {'blockNum': '0x52f9a4', 'uniqueId': '0x8afafe6caa09f080f06bac39db58a41b73eefffd299784f5fba9427365082e9a:log:55', 'hash': '0x8afafe6caa09f080f06bac39db58a41b73eefffd299784f5fba9427365082e9a', 'from': '0x2cd00e2358b3309402740610ac6e1da8ae89d208', 'to': '0x4bb74c8460b58362fb8c077d2245bf7bcf3599b6', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T07:38:06.000Z'}}, {'blockNum': '0x52f9b4', 'uniqueId': '0x6d7c99d683304c070c1d2fc88d52bb8abf4e8ca2e08d5cb7d45edd08058e3808:log:3', 'hash': '0x6d7c99d683304c070c1d2fc88d52bb8abf4e8ca2e08d5cb7d45edd08058e3808', 'from': '0xb77d8e9a95e5215a832f611d8055af4e38736458', 'to': '0x4bb74c8460b58362fb8c077d2245bf7bcf3599b6', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T07:41:51.000Z'}}, {'blockNum': '0x52f9bc', 'uniqueId': '0xa9e60a533d79b5879f76fd5b2e8d3974b50094ae0327e8172c6c29f8702e5d84:log:56', 'hash': '0xa9e60a533d79b5879f76fd5b2e8d3974b50094ae0327e8172c6c29f8702e5d84', 'from': '0x4bb74c8460b58362fb8c077d2245bf7bcf3599b6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T07:45:19.000Z'}}, {'blockNum': '0x52f9dc', 'uniqueId': '0x9ad27eaa05116783e582073bebb160a6e84b8325b8b59b660bb3963ea1513b18:log:116', 'hash': '0x9ad27eaa05116783e582073bebb160a6e84b8325b8b59b660bb3963ea1513b18', 'from': '0xd46de29853471467e53a677d12ee327624d85210', 'to': '0xc95c2d60b5aa8129ed6120043db3baf1f1956c78', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T07:52:44.000Z'}}, {'blockNum': '0x52f9f4', 'uniqueId': '0xd5bfd5c186b2083af63640d8eb81aab2ac71268f9d2f21b32b1fe92887807d74:log:101', 'hash': '0xd5bfd5c186b2083af63640d8eb81aab2ac71268f9d2f21b32b1fe92887807d74', 'from': '0xd46de29853471467e53a677d12ee327624d85210', 'to': '0xc95c2d60b5aa8129ed6120043db3baf1f1956c78', 'value': 5050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x7594587a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T07:57:45.000Z'}}, {'blockNum': '0x52fa04', 'uniqueId': '0x7cfe0afa3e30ceba87530a755c522cebc5bbfd75be94b30955edd6136d05e55d:log:67', 'hash': '0x7cfe0afa3e30ceba87530a755c522cebc5bbfd75be94b30955edd6136d05e55d', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xe1c7f114de762c86be31f7d574a908a5872f716d', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T08:00:57.000Z'}}, {'blockNum': '0x52fa20', 'uniqueId': '0xa0ae2768a9e6ee7515af9954cb86232bf2bdb5104b0a088b1e68fcbe1a070f01:log:40', 'hash': '0xa0ae2768a9e6ee7515af9954cb86232bf2bdb5104b0a088b1e68fcbe1a070f01', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5c521f80b7465753aeb31c31d10af55e7b12fbb0', 'value': 820, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x131794b400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T08:09:46.000Z'}}, {'blockNum': '0x52fa7e', 'uniqueId': '0x8d0c094975b8da1698fe31772d61e0020f3d2acb6174dc8adcc1f794081c6ab1:log:23', 'hash': '0x8d0c094975b8da1698fe31772d61e0020f3d2acb6174dc8adcc1f794081c6ab1', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xaacd58da4c1a5261e9c8355447ec92cc21df8221', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T08:33:37.000Z'}}, {'blockNum': '0x52fa97', 'uniqueId': '0xfa3c2757612286c0be1630997b395d4cd55bca0003b918feaff516976aa49397:log:8', 'hash': '0xfa3c2757612286c0be1630997b395d4cd55bca0003b918feaff516976aa49397', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 6123.574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x8e935865c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T08:41:32.000Z'}}, {'blockNum': '0x52faab', 'uniqueId': '0x8d311b2ddbd4ead0277bdbfa5ab3e4e20b82a772c387b6869576e21ae8f41049:log:18', 'hash': '0x8d311b2ddbd4ead0277bdbfa5ab3e4e20b82a772c387b6869576e21ae8f41049', 'from': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6123.574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x8e935865c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T08:45:20.000Z'}}, {'blockNum': '0x52fab0', 'uniqueId': '0x9b47c03dfcc5e3f21c086cbe0970722b45f42398bcc7f1be5c917dc37c9ede3e:log:5', 'hash': '0x9b47c03dfcc5e3f21c086cbe0970722b45f42398bcc7f1be5c917dc37c9ede3e', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xd3510c84611435568c705c3738a156651f3a87d3', 'value': 13322.1932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01362e7596c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T08:46:18.000Z'}}, {'blockNum': '0x52fabd', 'uniqueId': '0x521ed73e993aeba5b78875f10a072c6009de6c44a4f7f0f2c9d127b2a369b988:log:9', 'hash': '0x521ed73e993aeba5b78875f10a072c6009de6c44a4f7f0f2c9d127b2a369b988', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x360c7867b7b528bda56b680632f6b980ed99cdb4', 'value': 8654.8318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xc982d147e0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T08:51:18.000Z'}}, {'blockNum': '0x52facc', 'uniqueId': '0xdd6bedd1d75a913b124d1f797a8355f672d476372813af2f46c5acadb6130917:log:71', 'hash': '0xdd6bedd1d75a913b124d1f797a8355f672d476372813af2f46c5acadb6130917', 'from': '0xfc7667276d66ac5243402afb48fdf14f76cc2e62', 'to': '0xca7a77f1c589bae1401da264e0f0d384e2d5e930', 'value': 1432.95850087, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x215d192667', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T08:55:17.000Z'}}, {'blockNum': '0x52facd', 'uniqueId': '0x07d2240465a7fa71acae8b6f5d3b68f3c3fe71bea34a6c5baf2d11b262b82f30:log:17', 'hash': '0x07d2240465a7fa71acae8b6f5d3b68f3c3fe71bea34a6c5baf2d11b262b82f30', 'from': '0x360c7867b7b528bda56b680632f6b980ed99cdb4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12614.9082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0125b6b653a0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T08:55:23.000Z'}}, {'blockNum': '0x52facd', 'uniqueId': '0x54477e2317913020eb915b319317ddb22db67868a671fdf609d01d8602e5cbf9:log:19', 'hash': '0x54477e2317913020eb915b319317ddb22db67868a671fdf609d01d8602e5cbf9', 'from': '0xd3510c84611435568c705c3738a156651f3a87d3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16174.4963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01789782b930', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T08:55:23.000Z'}}, {'blockNum': '0x52fae7', 'uniqueId': '0x406a6cc3f33a4354e6f8e979ffd55b861cd5ae654937534312df67293ff7eebc:log:84', 'hash': '0x406a6cc3f33a4354e6f8e979ffd55b861cd5ae654937534312df67293ff7eebc', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x6c865a1ef51f58ce75e0c48c4d4ea4c623187550', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T09:00:40.000Z'}}, {'blockNum': '0x52fb52', 'uniqueId': '0xd4f9451815934532b7a7f396d81055a34c07dc1424470636dbf216558f087526:log:59', 'hash': '0xd4f9451815934532b7a7f396d81055a34c07dc1424470636dbf216558f087526', 'from': '0xf567b638bfe1d63db90825667c86407853d1271f', 'to': '0xd5d51f7aa020d01016fabb57367ef7423eda8cef', 'value': 524.826769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0c383618a4', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T09:28:31.000Z'}}, {'blockNum': '0x52fb5b', 'uniqueId': '0x4c7a6b9d25687852dd850b720db9d4a660a2e155dd863da30b34676140168b0e:log:27', 'hash': '0x4c7a6b9d25687852dd850b720db9d4a660a2e155dd863da30b34676140168b0e', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x002d26525eaeb028f42d0a70b66dc04ef9d8f998', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T09:30:02.000Z'}}, {'blockNum': '0x52fbd5', 'uniqueId': '0xa00410c7aad265d68bf2c9d1c0e27a562181b69f336b798d011c97fe9222deff:log:53', 'hash': '0xa00410c7aad265d68bf2c9d1c0e27a562181b69f336b798d011c97fe9222deff', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x2e1c3dff08d1726b97086cc94827d36b9b71d12a', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T10:00:07.000Z'}}, {'blockNum': '0x52fc1e', 'uniqueId': '0x3c5adfca95f4ba51a4bafb875a8b89ddb3f981fb77fb13966dca23e5fbbe5d4a:log:6', 'hash': '0x3c5adfca95f4ba51a4bafb875a8b89ddb3f981fb77fb13966dca23e5fbbe5d4a', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x360c7867b7b528bda56b680632f6b980ed99cdb4', 'value': 2049.0686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2fb5668de0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T10:16:04.000Z'}}, {'blockNum': '0x52fc57', 'uniqueId': '0x9503d1980ec0e844fe1126c9c9f72feeb399a3e575488bd8d18fe935724d6504:log:8', 'hash': '0x9503d1980ec0e844fe1126c9c9f72feeb399a3e575488bd8d18fe935724d6504', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x360c7867b7b528bda56b680632f6b980ed99cdb4', 'value': 1031.7268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1805922940', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T10:30:02.000Z'}}, {'blockNum': '0x52fc5c', 'uniqueId': '0xd6ab7200760122c6de8bbec1786d3300cc6ac35ac97d436dc2112713a672633f:log:12', 'hash': '0xd6ab7200760122c6de8bbec1786d3300cc6ac35ac97d436dc2112713a672633f', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xc0bc621f72658235939ab072347a067630b20a78', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T10:31:20.000Z'}}, {'blockNum': '0x52fcd7', 'uniqueId': '0x165cf0a363346b14a555d489ba042edf247bf173dfac56f0faace338ab384231:log:69', 'hash': '0x165cf0a363346b14a555d489ba042edf247bf173dfac56f0faace338ab384231', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x4108a778fa16f06f8374e7434c0193b0be575724', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:02:42.000Z'}}, {'blockNum': '0x52fd07', 'uniqueId': '0x9ccb49f2a7a3dd1a588ea826bbb04c4c26a1d9209e15e53f312c75f4e7710e80:log:3', 'hash': '0x9ccb49f2a7a3dd1a588ea826bbb04c4c26a1d9209e15e53f312c75f4e7710e80', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x93ec712111fb2e64b195759e747094167d5138c2', 'value': 334976.532, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1e7747b84480', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:12:07.000Z'}}, {'blockNum': '0x52fd18', 'uniqueId': '0xf52006e91d882039b238148a52c1019e0d1de54eb3dfda93cf77dd043c4992a3:log:24', 'hash': '0xf52006e91d882039b238148a52c1019e0d1de54eb3dfda93cf77dd043c4992a3', 'from': '0x93ec712111fb2e64b195759e747094167d5138c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 334976.532, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1e7747b84480', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:15:08.000Z'}}, {'blockNum': '0x52fd1a', 'uniqueId': '0xe5ed4bc66346885ecc05b0a3319c23d8acc2ea0165fc0211157e20da8740fe65:log:5', 'hash': '0xe5ed4bc66346885ecc05b0a3319c23d8acc2ea0165fc0211157e20da8740fe65', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x360c7867b7b528bda56b680632f6b980ed99cdb4', 'value': 3367.5869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x4e6861d0d0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:15:39.000Z'}}, {'blockNum': '0x52fd44', 'uniqueId': '0x045904d896f961c37a9c1b4b77a7ce3a3b5fe16116c58cf3168b4573397a121e:log:10', 'hash': '0x045904d896f961c37a9c1b4b77a7ce3a3b5fe16116c58cf3168b4573397a121e', 'from': '0x360c7867b7b528bda56b680632f6b980ed99cdb4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6448.3823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x96235a87f0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:25:03.000Z'}}, {'blockNum': '0x52fd4b', 'uniqueId': '0xa8ebc272a11709d3aae44deb3401dff8d5599a7e287fd3e863f12f05bbb0ebd4:log:62', 'hash': '0xa8ebc272a11709d3aae44deb3401dff8d5599a7e287fd3e863f12f05bbb0ebd4', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x5ca8c08dd7353baa25051dcd9e5aa6a75bc24986', 'value': 558.5635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0d014c4330', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:28:00.000Z'}}, {'blockNum': '0x52fd54', 'uniqueId': '0x93e406856e923ec578241f34f3a74378e8c6dfc0bc2119b73b130aade605e0d7:log:30', 'hash': '0x93e406856e923ec578241f34f3a74378e8c6dfc0bc2119b73b130aade605e0d7', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x21383ec1b2f24debb54f440b51aa316ea76c8594', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:30:06.000Z'}}, {'blockNum': '0x52fd69', 'uniqueId': '0x793f49fb3f931ed3574868d7d5941bf047e8ece0b5774469348d1a9febc39120:log:3', 'hash': '0x793f49fb3f931ed3574868d7d5941bf047e8ece0b5774469348d1a9febc39120', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 10559.227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xf5d9e5bee0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:33:31.000Z'}}, {'blockNum': '0x52fd73', 'uniqueId': '0x946aae9b9bd1132a998f3ffecb60baa02a9b2f595299ca150adbd0359614db88:log:20', 'hash': '0x946aae9b9bd1132a998f3ffecb60baa02a9b2f595299ca150adbd0359614db88', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 1857.411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2b3f0843e0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:34:20.000Z'}}, {'blockNum': '0x52fd92', 'uniqueId': '0x3e82abeefb67cb4750018ff8e4e8329eb2d465d15c9d351d9b47e175eeac3054:log:5', 'hash': '0x3e82abeefb67cb4750018ff8e4e8329eb2d465d15c9d351d9b47e175eeac3054', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x896b2222b907de1074db67b25f94c1a0f44ff16d', 'value': 7976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xb9b4aa2800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:41:17.000Z'}}, {'blockNum': '0x52fdb5', 'uniqueId': '0x6008f35b3e23b5485f6873ff2e06f71c10ef6d5c34d6155f0088aced63064e4d:log:4', 'hash': '0x6008f35b3e23b5485f6873ff2e06f71c10ef6d5c34d6155f0088aced63064e4d', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xcdefc9a25c5e811b8fb2e10fa62a1b12315e0ba9', 'value': 7536.323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xaf77fc4be0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:48:40.000Z'}}, {'blockNum': '0x52fdc4', 'uniqueId': '0xd1f4a51285757b49b59175d433d64d18425c0812bd278fbe493e4584f19f1d1e:log:6', 'hash': '0xd1f4a51285757b49b59175d433d64d18425c0812bd278fbe493e4584f19f1d1e', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0xb2fcb133fe7fa5f5176b6d489146bcb9db29f0c8', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:53:20.000Z'}}, {'blockNum': '0x52fdcf', 'uniqueId': '0x707f460920627f333d8680c590768ffdec572a9495a0b981ecdac90fe751390f:log:51', 'hash': '0x707f460920627f333d8680c590768ffdec572a9495a0b981ecdac90fe751390f', 'from': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14312.932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x014d3fb90680', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:55:19.000Z'}}, {'blockNum': '0x52fdcf', 'uniqueId': '0xb6951e619d5c54383dabe876cb7d6c18ccac71ecc2034b41d9922a9edb803c89:log:53', 'hash': '0xb6951e619d5c54383dabe876cb7d6c18ccac71ecc2034b41d9922a9edb803c89', 'from': '0xcdefc9a25c5e811b8fb2e10fa62a1b12315e0ba9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8134.2239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xbd63c0aaf0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:55:19.000Z'}}, {'blockNum': '0x52fdde', 'uniqueId': '0x67bb980d62ba692de67542cce52fd14c535fd842032c4f6e75359f12d15b8f54:log:15', 'hash': '0x67bb980d62ba692de67542cce52fd14c535fd842032c4f6e75359f12d15b8f54', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xcdefc9a25c5e811b8fb2e10fa62a1b12315e0ba9', 'value': 14925.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x015b80780140', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:59:24.000Z'}}, {'blockNum': '0x52fde5', 'uniqueId': '0xc7174bf6a2dd290ea9a92efb5c28a1103905ee8ded3132a380b3ce06bf240d1d:log:42', 'hash': '0xc7174bf6a2dd290ea9a92efb5c28a1103905ee8ded3132a380b3ce06bf240d1d', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x679bc05c83c07ecc21b6e7ac805758ea61ee6763', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T12:00:55.000Z'}}, {'blockNum': '0x52fdf6', 'uniqueId': '0x845e8f04a0df2fe1c74f7914953c93ae09bd10b89cef1216aa68c37b508479a8:log:18', 'hash': '0x845e8f04a0df2fe1c74f7914953c93ae09bd10b89cef1216aa68c37b508479a8', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xcdefc9a25c5e811b8fb2e10fa62a1b12315e0ba9', 'value': 1319.031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1eb6099460', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T12:05:29.000Z'}}, {'blockNum': '0x52fdf6', 'uniqueId': '0xa3360adb69d20998ab886f41c5e17d1c3b900de3766c5546af0581628bec4fb1:log:62', 'hash': '0xa3360adb69d20998ab886f41c5e17d1c3b900de3766c5546af0581628bec4fb1', 'from': '0xcdefc9a25c5e811b8fb2e10fa62a1b12315e0ba9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14925.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x015b80780140', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T12:05:29.000Z'}}, {'blockNum': '0x52fe33', 'uniqueId': '0x0c7200b3e9d5a2362e323906af5e9351e2bd57616d72d0583ef11bac55a1a6e7:log:1', 'hash': '0x0c7200b3e9d5a2362e323906af5e9351e2bd57616d72d0583ef11bac55a1a6e7', 'from': '0x0f5eaa48e6ed85a67abad8e3cd4184b180bd80f6', 'to': '0xcc63ecd2274157c77aed4b9d5a74076f54e2fe49', 'value': 5084.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x76648b6d40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T12:20:11.000Z'}}, {'blockNum': '0x52fe48', 'uniqueId': '0x99892ff2fd881f15035d5bac4db583506a6583a29d56ec2c50559350e52de2bb:log:29', 'hash': '0x99892ff2fd881f15035d5bac4db583506a6583a29d56ec2c50559350e52de2bb', 'from': '0x95bdad08b2bc734b83bebb48340068b67fbb088f', 'to': '0x4408b8531a6210b33f19180d0ecae0478a933861', 'value': 4539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x69ae8c5b00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T12:23:35.000Z'}}, {'blockNum': '0x52fe4e', 'uniqueId': '0x4e8b5185f5446f5d3de7f14dff4d3a47f53c2e17687bbf4bc183b9f2afc33349:log:10', 'hash': '0x4e8b5185f5446f5d3de7f14dff4d3a47f53c2e17687bbf4bc183b9f2afc33349', 'from': '0xcc63ecd2274157c77aed4b9d5a74076f54e2fe49', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10134.86, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xebf8791780', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T12:25:11.000Z'}}, {'blockNum': '0x52fe63', 'uniqueId': '0x2e2daff68c90ad015d7897cbde38655d9986bafc43c83f0de33ff46ccfc4e86c:log:88', 'hash': '0x2e2daff68c90ad015d7897cbde38655d9986bafc43c83f0de33ff46ccfc4e86c', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x854a6cbfdea21429c128f91daf36b52631a3fb99', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T12:32:21.000Z'}}, {'blockNum': '0x52feab', 'uniqueId': '0xc0a19e0c150a885afa17b2db193c158ce119d4d774e3baddad5f430a849c784d:log:4', 'hash': '0xc0a19e0c150a885afa17b2db193c158ce119d4d774e3baddad5f430a849c784d', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 14494.386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01517945db40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T12:49:27.000Z'}}, {'blockNum': '0x52feca', 'uniqueId': '0x3b18e4b8edae3eeb4278c7b711e53cd6f1b5873ffdfcae7fc3bd501f9e362675:log:23', 'hash': '0x3b18e4b8edae3eeb4278c7b711e53cd6f1b5873ffdfcae7fc3bd501f9e362675', 'from': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14494.386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01517945db40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T12:55:15.000Z'}}, {'blockNum': '0x52fed7', 'uniqueId': '0xb7df2793fb61b8bee1ea78d64f659985b3f31d5c2b42cae26b41bfe16b51d71f:log:22', 'hash': '0xb7df2793fb61b8bee1ea78d64f659985b3f31d5c2b42cae26b41bfe16b51d71f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 26834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0270c71a9200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:00:47.000Z'}}, {'blockNum': '0x52fed9', 'uniqueId': '0x4ebc15096f6471ef287a242e43bf74f2721331e99adf82cc1ac795bf94c6988c:log:31', 'hash': '0x4ebc15096f6471ef287a242e43bf74f2721331e99adf82cc1ac795bf94c6988c', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x46f30052ffe6b2a53548b2e0683cfff544e4f5b4', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:00:55.000Z'}}, {'blockNum': '0x52feef', 'uniqueId': '0x678108d5b528c91acfe8d0e8a3185dabdb84db43ad0d1851a942a3bd9688b5a4:log:110', 'hash': '0x678108d5b528c91acfe8d0e8a3185dabdb84db43ad0d1851a942a3bd9688b5a4', 'from': '0xbe7a1133337f84698f1a131c2d4c3b099964366e', 'to': '0xc95f11d3a41eb717aa468dd3632211ae4f333fa7', 'value': 116.469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02b6359720', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:04:53.000Z'}}, {'blockNum': '0x52ff55', 'uniqueId': '0xb61822ed5dd94ef8c32df08881244ef1b93cb87ac8016cad1fa05bc5086e9682:log:15', 'hash': '0xb61822ed5dd94ef8c32df08881244ef1b93cb87ac8016cad1fa05bc5086e9682', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x18fec07f7bc004b675d9fa2dd69cf6324d12fe99', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:33:04.000Z'}}, {'blockNum': '0x52ff66', 'uniqueId': '0x48fec8a5ee5f222180eb44fa16b0106d2925712e3de897e4a9d3ec945b964dd6:log:13', 'hash': '0x48fec8a5ee5f222180eb44fa16b0106d2925712e3de897e4a9d3ec945b964dd6', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 20709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01e22b424500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:36:45.000Z'}}, {'blockNum': '0x52ff83', 'uniqueId': '0x64a9fb9b6d461808d4819ea21fe9578de90bb92be30fb083fe9fbe2c295e4df7:log:4', 'hash': '0x64a9fb9b6d461808d4819ea21fe9578de90bb92be30fb083fe9fbe2c295e4df7', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x360c7867b7b528bda56b680632f6b980ed99cdb4', 'value': 1635.6964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x261582a240', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:43:52.000Z'}}, {'blockNum': '0x52ff89', 'uniqueId': '0x1cafe677524cc9da759bd29624aba1e9732cb30243828de8fa0994450e8302ea:log:13', 'hash': '0x1cafe677524cc9da759bd29624aba1e9732cb30243828de8fa0994450e8302ea', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x67254ffa39fe0bb73fa3f967cd332ac0c2c2d3c5', 'value': 1700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2794ca2400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:44:34.000Z'}}, {'blockNum': '0x52ff8e', 'uniqueId': '0x77d1fd3aee40b4459ce4488fb0d389784d19fce6b3a89939a6cf375afeef8495:log:5', 'hash': '0x77d1fd3aee40b4459ce4488fb0d389784d19fce6b3a89939a6cf375afeef8495', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:45:57.000Z'}}, {'blockNum': '0x52ff93', 'uniqueId': '0xf5c2750e430e3ec6b1b3dab9d5dcd49d5a4e308f6366120336e9ec323d646b5c:log:6', 'hash': '0xf5c2750e430e3ec6b1b3dab9d5dcd49d5a4e308f6366120336e9ec323d646b5c', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 5634.047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x832d897960', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:46:36.000Z'}}, {'blockNum': '0x52ff93', 'uniqueId': '0xd898388796720c1d5e0b43974648a8a4980971b0fb637d3a8967c31d2a70d243:log:18', 'hash': '0xd898388796720c1d5e0b43974648a8a4980971b0fb637d3a8967c31d2a70d243', 'from': '0x8fdf2cc10c535a93a3ef8e919824388e0a334b79', 'to': '0x4ca12fa5af3cd47969d34c41e7097d71573a989b', 'value': 2300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x358d117c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:46:36.000Z'}}, {'blockNum': '0x52ff97', 'uniqueId': '0x9c54383b9c31e762101dfffd549a4607cf3c88757123d72a8cc1a975cf31c58c:log:4', 'hash': '0x9c54383b9c31e762101dfffd549a4607cf3c88757123d72a8cc1a975cf31c58c', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 7197.343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xa79381dd60', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:47:52.000Z'}}, {'blockNum': '0x52ff9a', 'uniqueId': '0x52619a497d046cee1cbe697e364a97db6964041449590bdfb3f56c6c302d47ab:log:17', 'hash': '0x52619a497d046cee1cbe697e364a97db6964041449590bdfb3f56c6c302d47ab', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x81b5d43e3c93ee25fc9ddec51812c4058e062d4b', 'value': 213705.69228182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x136fb92fff96', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:49:07.000Z'}}, {'blockNum': '0x52ffb2', 'uniqueId': '0x3a4a7815d4d7389bdbeef7550e0d031c0af2db292e6c053db4a7847ddbee8a51:log:9', 'hash': '0x3a4a7815d4d7389bdbeef7550e0d031c0af2db292e6c053db4a7847ddbee8a51', 'from': '0x81b5d43e3c93ee25fc9ddec51812c4058e062d4b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 213705.69228182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x136fb92fff96', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:55:09.000Z'}}, {'blockNum': '0x52ffb2', 'uniqueId': '0x747c294594b46cd7b025aa1f9df1eed56dece58ab67718dbec72f878fb4845b7:log:10', 'hash': '0x747c294594b46cd7b025aa1f9df1eed56dece58ab67718dbec72f878fb4845b7', 'from': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22801.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0212e2e008c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:55:09.000Z'}}, {'blockNum': '0x52ffb2', 'uniqueId': '0x0611643bebaa1339ca80a15fc2fb8b0671d5c326a4cdf638b49cf859af9a3650:log:11', 'hash': '0x0611643bebaa1339ca80a15fc2fb8b0671d5c326a4cdf638b49cf859af9a3650', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01e22b424500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:55:09.000Z'}}, {'blockNum': '0x52ffcd', 'uniqueId': '0x2bcc7a4a0ec32e006c3861d74122e70f9659e9e7b743cd063300800c30d6650a:log:16', 'hash': '0x2bcc7a4a0ec32e006c3861d74122e70f9659e9e7b743cd063300800c30d6650a', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x461017ea4349ca7922428a003aae625a904e9838', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:00:58.000Z'}}, {'blockNum': '0x52ffd8', 'uniqueId': '0x30dcf2be3709cdb3ada38a8bbad0732210a91a66fdc7d70bdac5809582941eb6:log:12', 'hash': '0x30dcf2be3709cdb3ada38a8bbad0732210a91a66fdc7d70bdac5809582941eb6', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:05:16.000Z'}}, {'blockNum': '0x52ffe3', 'uniqueId': '0x2330ed954c6e7a147e7acc88ca97f9b3c2a0256df3dc2afe519df907147cd6ff:log:6', 'hash': '0x2330ed954c6e7a147e7acc88ca97f9b3c2a0256df3dc2afe519df907147cd6ff', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:07:57.000Z'}}, {'blockNum': '0x52fff4', 'uniqueId': '0xa640e7842e56f158f2ac23cab17493aad6b6d92c5eab31c89a7abc74e2e1f68b:log:13', 'hash': '0xa640e7842e56f158f2ac23cab17493aad6b6d92c5eab31c89a7abc74e2e1f68b', 'from': '0xc99931ad483effca4e880839f6ee66d00b61bfec', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:13:04.000Z'}}, {'blockNum': '0x52fff6', 'uniqueId': '0xef8cec9f05fc11d9e5d8b685bf0308e3b92e88b3e1b2494c7949b9daa79f2f21:log:3', 'hash': '0xef8cec9f05fc11d9e5d8b685bf0308e3b92e88b3e1b2494c7949b9daa79f2f21', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:14:02.000Z'}}, {'blockNum': '0x52fffd', 'uniqueId': '0x3842705f19d20c6fe4f6e0b1d017c73202425712e36ef9d95fce98b39dd72e79:log:9', 'hash': '0x3842705f19d20c6fe4f6e0b1d017c73202425712e36ef9d95fce98b39dd72e79', 'from': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02b8657e1600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:15:03.000Z'}}, {'blockNum': '0x530006', 'uniqueId': '0x09491f6f860315e4311b45690b65a9ea961f5f5f4b9dc5186cdb0f3ff5e32f0f:log:0', 'hash': '0x09491f6f860315e4311b45690b65a9ea961f5f5f4b9dc5186cdb0f3ff5e32f0f', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 5115.607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x771b64d060', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:17:03.000Z'}}, {'blockNum': '0x53000c', 'uniqueId': '0x263f93c5d0bcd237f8ed62a618b2e44b506104a9c86c6e107cba2c486a7b4662:log:12', 'hash': '0x263f93c5d0bcd237f8ed62a618b2e44b506104a9c86c6e107cba2c486a7b4662', 'from': '0xeaa509da99b12bc33a7851c91a193d52609b7b5b', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:18:36.000Z'}}, {'blockNum': '0x530011', 'uniqueId': '0xf0c3177e2d3a9984d95524f4e3f597a33614e255616e327e6fde03b30d7e0443:log:64', 'hash': '0xf0c3177e2d3a9984d95524f4e3f597a33614e255616e327e6fde03b30d7e0443', 'from': '0xcee824e59b8eb2e9b25bc696f89fe937a7c07c42', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:19:39.000Z'}}, {'blockNum': '0x530015', 'uniqueId': '0x128687aeed6b394ec2e8d2a32f047b8db948bd8f4c7dff98cbd6982af4dec0df:log:108', 'hash': '0x128687aeed6b394ec2e8d2a32f047b8db948bd8f4c7dff98cbd6982af4dec0df', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x44ffd295a1481f033bb266d2405ddad7208a6f10', 'value': 14352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x014e28961000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:20:43.000Z'}}, {'blockNum': '0x530017', 'uniqueId': '0xe07d008b09ea8305a383429923ee8d39d8c642aaf8590e6b3b4e85101748357f:log:29', 'hash': '0xe07d008b09ea8305a383429923ee8d39d8c642aaf8590e6b3b4e85101748357f', 'from': '0xdb7849733f4e93abcf02d878a39317be0e6f9e75', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:21:40.000Z'}}, {'blockNum': '0x53001f', 'uniqueId': '0x56178544a1970abbd45b81966d3af1391c51e951011d4cfb929bfebc945d48bc:log:12', 'hash': '0x56178544a1970abbd45b81966d3af1391c51e951011d4cfb929bfebc945d48bc', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x896b2222b907de1074db67b25f94c1a0f44ff16d', 'value': 4985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x7410ea5900', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:23:48.000Z'}}, {'blockNum': '0x530020', 'uniqueId': '0x1d892a24ef9a20f7e3d1a8294090bf7891671a2fb39f5fc7669721682ec64a40:log:16', 'hash': '0x1d892a24ef9a20f7e3d1a8294090bf7891671a2fb39f5fc7669721682ec64a40', 'from': '0xa691ec41baf2f7d7e58a451451416ea5244eb4e5', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:24:18.000Z'}}, {'blockNum': '0x530025', 'uniqueId': '0x3f201b343b41398d7b13c87480d8229027fc2ae3963483abb7ed45fc6e5021e9:log:61', 'hash': '0x3f201b343b41398d7b13c87480d8229027fc2ae3963483abb7ed45fc6e5021e9', 'from': '0x44ffd295a1481f033bb266d2405ddad7208a6f10', 'to': '0x758716e7e12f2f8b9e9d76d1e066d6f0ff0e299b', 'value': 14352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x014e28961000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:25:28.000Z'}}, {'blockNum': '0x530029', 'uniqueId': '0x745d4533b34efb6c1d6e797570ebed6ac9898c621bb269849bae1f44b29fd777:log:19', 'hash': '0x745d4533b34efb6c1d6e797570ebed6ac9898c621bb269849bae1f44b29fd777', 'from': '0x91429446b198756bf2bb493255f96ccb4a719eef', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:27:52.000Z'}}, {'blockNum': '0x530032', 'uniqueId': '0x45243d3fffad220f64f7b5633b9ec24706b27cd57b08812bab8d4e8a08e56d58:log:7', 'hash': '0x45243d3fffad220f64f7b5633b9ec24706b27cd57b08812bab8d4e8a08e56d58', 'from': '0x11f67f95025e96f1cd20280083536baa952bfe62', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:29:27.000Z'}}, {'blockNum': '0x530036', 'uniqueId': '0x330152d87d3190b625b156d2830e2b90c68213b7131d104ead7a734838e0684c:log:76', 'hash': '0x330152d87d3190b625b156d2830e2b90c68213b7131d104ead7a734838e0684c', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x582049973571ca3fc634f6a9fdb7f0804f365be4', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:30:04.000Z'}}, {'blockNum': '0x53003d', 'uniqueId': '0x6057f4c7fcf9bf7bf045af01ffae0e521fce683ba98cbd34a45a5e60b432eb78:log:7', 'hash': '0x6057f4c7fcf9bf7bf045af01ffae0e521fce683ba98cbd34a45a5e60b432eb78', 'from': '0x7fc97cb235ca8d2ab5708c9a25d076131e412149', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:32:09.000Z'}}, {'blockNum': '0x530043', 'uniqueId': '0x178d4f097a511c1fec8e4d39c112716b38f6b78907f22759b252183b0fb362f5:log:132', 'hash': '0x178d4f097a511c1fec8e4d39c112716b38f6b78907f22759b252183b0fb362f5', 'from': '0x4769613e8ef8eaa4bc59ff02cee88380917642dc', 'to': '0x12384db07367bb35f1d19f585a0097988cd38d5c', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:33:24.000Z'}}, {'blockNum': '0x530043', 'uniqueId': '0xbc101c98d55effc7033490316f27097ce83b08df57d389969c3d0d62654c6168:log:134', 'hash': '0xbc101c98d55effc7033490316f27097ce83b08df57d389969c3d0d62654c6168', 'from': '0x2e35eab793cccf26911e106ded0b4e6755e01b6b', 'to': '0xb0c5de1cdb8f2da390c242305a7a324f4bad8f72', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:33:24.000Z'}}, {'blockNum': '0x530045', 'uniqueId': '0x3e8a304d14c1eff747eef653334fa538d524cc12116b6c1f131f3c5dc6c1ae4d:log:34', 'hash': '0x3e8a304d14c1eff747eef653334fa538d524cc12116b6c1f131f3c5dc6c1ae4d', 'from': '0xbc38ba95165272c47453fb303787ea5791a6f844', 'to': '0xa044095fb3f70955649e1f0f219d0e38b660e580', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:33:41.000Z'}}, {'blockNum': '0x530048', 'uniqueId': '0xc015193628f5aa807e22713345ea9b20c6d1b03c0e3e4c372a16b8370ccb12ed:log:43', 'hash': '0xc015193628f5aa807e22713345ea9b20c6d1b03c0e3e4c372a16b8370ccb12ed', 'from': '0xf11debce780fc812213afd267b985a56ed85773d', 'to': '0xd1ce0bbdb22df6b33479353898630d76833485c2', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:34:17.000Z'}}, {'blockNum': '0x53004a', 'uniqueId': '0xad507394cb4d026f5db708ff9ef843601cffdb5e5ecd9226818b2e4ebf00b0f3:log:24', 'hash': '0xad507394cb4d026f5db708ff9ef843601cffdb5e5ecd9226818b2e4ebf00b0f3', 'from': '0xe36af3f053f6685a5742e7e74fcff1a62fe0e1c2', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:35:03.000Z'}}, {'blockNum': '0x53004a', 'uniqueId': '0x3a9e48070c06f5ea812601b9a3652a42b29c0a055e95edf036e475cdd7f1ef5e:log:88', 'hash': '0x3a9e48070c06f5ea812601b9a3652a42b29c0a055e95edf036e475cdd7f1ef5e', 'from': '0xbb48d5de7509001b05e109ef03f399e62d147f61', 'to': '0x8bf172dc69acbade9937244a11b005fc2f291088', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:35:03.000Z'}}, {'blockNum': '0x530052', 'uniqueId': '0x654f93d89b3e62e7ae82d96f9d6142f21c6bad1ddd9b1278b06617886533e81d:log:14', 'hash': '0x654f93d89b3e62e7ae82d96f9d6142f21c6bad1ddd9b1278b06617886533e81d', 'from': '0x7908daad8d57a838b701842d43695585aa2f2553', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:37:01.000Z'}}, {'blockNum': '0x530058', 'uniqueId': '0xe161edf4f0fcea77df489e98179f9bf800cb0b1b356675e5ecb4d03059e74880:log:5', 'hash': '0xe161edf4f0fcea77df489e98179f9bf800cb0b1b356675e5ecb4d03059e74880', 'from': '0x57ce252e7be9a132cb75ee5658b72ed0e0106810', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:38:19.000Z'}}, {'blockNum': '0x53005a', 'uniqueId': '0x8981177a735223a25e7adde051a176116bb235872e3f5daff4c3506b65952215:log:92', 'hash': '0x8981177a735223a25e7adde051a176116bb235872e3f5daff4c3506b65952215', 'from': '0x462c79281a8fd443f232e2017cd046661c2e5a9d', 'to': '0xd5d51f7aa020d01016fabb57367ef7423eda8cef', 'value': 138.8998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x033be84660', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:38:35.000Z'}}, {'blockNum': '0x53005c', 'uniqueId': '0x9f6c0f23a5979fe3d71d442a62e8e01b1937eed8ace8ba4fc8647c2ec26d6c4f:log:57', 'hash': '0x9f6c0f23a5979fe3d71d442a62e8e01b1937eed8ace8ba4fc8647c2ec26d6c4f', 'from': '0x818f413866cc48e312451adaedc42b40a14f9999', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:39:38.000Z'}}, {'blockNum': '0x530061', 'uniqueId': '0x4977f55322cdb68134cd035caecf694fd25e74415061c6d73bd4478c691ba6a6:log:13', 'hash': '0x4977f55322cdb68134cd035caecf694fd25e74415061c6d73bd4478c691ba6a6', 'from': '0x273e2c8e250cc6961d3df72cfa984a164a39f0a6', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:41:30.000Z'}}, {'blockNum': '0x53007f', 'uniqueId': '0x155c3d8678443f28d9e58fe7d1dc240c4b0f4cac77bebbb3100449ba19785cef:log:3', 'hash': '0x155c3d8678443f28d9e58fe7d1dc240c4b0f4cac77bebbb3100449ba19785cef', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 10537.293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xf557291e20', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:47:36.000Z'}}, {'blockNum': '0x53009d', 'uniqueId': '0xca72462b8276d16986c6f7f18723ca11cc96ec5a1d58b76fe8c129b83ead5795:log:4', 'hash': '0xca72462b8276d16986c6f7f18723ca11cc96ec5a1d58b76fe8c129b83ead5795', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 7976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xb9b4aa2800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:54:33.000Z'}}, {'blockNum': '0x53009f', 'uniqueId': '0x9bb5bb70fa2c0235ff8d94cbc495c012d97aff92780ac119b4bb8258ffc55726:log:7', 'hash': '0x9bb5bb70fa2c0235ff8d94cbc495c012d97aff92780ac119b4bb8258ffc55726', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 7976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xb9b4aa2800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:55:21.000Z'}}, {'blockNum': '0x53009f', 'uniqueId': '0xee5a5003b496ab1d20fa040a2dfa377d588f04e1b6ec46d50df4f5b2f38504b2:log:26', 'hash': '0xee5a5003b496ab1d20fa040a2dfa377d588f04e1b6ec46d50df4f5b2f38504b2', 'from': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18513.293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01af0bd34620', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:55:21.000Z'}}, {'blockNum': '0x5300a2', 'uniqueId': '0xd196af5e95c7d3359b5f7a95d7b2efb91e97490364c53f7f44bdf7f16ccc28c7:log:7', 'hash': '0xd196af5e95c7d3359b5f7a95d7b2efb91e97490364c53f7f44bdf7f16ccc28c7', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 8702.813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xcaa0cec820', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:56:15.000Z'}}, {'blockNum': '0x5300a8', 'uniqueId': '0xa9f4e38785696ec191e76bdc08dd7e5498b0ac698bf49748889f52ad93ae5905:log:0', 'hash': '0xa9f4e38785696ec191e76bdc08dd7e5498b0ac698bf49748889f52ad93ae5905', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 14456.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x015097746880', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:57:31.000Z'}}, {'blockNum': '0x5300b0', 'uniqueId': '0x329ac27cb6f7b961a2a0df1e6bff49114c01e69c6ed3177a7c2aa88094390f02:log:7', 'hash': '0x329ac27cb6f7b961a2a0df1e6bff49114c01e69c6ed3177a7c2aa88094390f02', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 14210.241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x014adba2fea0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:59:59.000Z'}}, {'blockNum': '0x5300b7', 'uniqueId': '0x64cf3b8de8320bffce6e64e541c5adc8814e010da6ff1e5b21263f7a408676c8:log:37', 'hash': '0x64cf3b8de8320bffce6e64e541c5adc8814e010da6ff1e5b21263f7a408676c8', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x241557866e20bd049995fb3804e42b7c76dc0f8f', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:01:46.000Z'}}, {'blockNum': '0x5300bf', 'uniqueId': '0xd9acc61d28cf8b091a9a1d584d01500953fd083b6d52ecad0dafce9c52b23a1b:log:48', 'hash': '0xd9acc61d28cf8b091a9a1d584d01500953fd083b6d52ecad0dafce9c52b23a1b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb668159856ff7cc17a7eb6f0d8254ad3c4b760bf', 'value': 29364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02abaf143400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:02:48.000Z'}}, {'blockNum': '0x5300c9', 'uniqueId': '0xb27a51160b6dc221683f2569cfe1521f9e52957c71be5d2d8ec0531f2c7f85cd:log:29', 'hash': '0xb27a51160b6dc221683f2569cfe1521f9e52957c71be5d2d8ec0531f2c7f85cd', 'from': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33782.348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03128e7c3780', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:05:14.000Z'}}, {'blockNum': '0x5300c9', 'uniqueId': '0xaed8fca71e30da810550ebb172813b036c33f9369b684845b96e700703993049:log:175', 'hash': '0xaed8fca71e30da810550ebb172813b036c33f9369b684845b96e700703993049', 'from': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16678.813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01845578f020', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:05:14.000Z'}}, {'blockNum': '0x5300d2', 'uniqueId': '0x36d755031a123debcabe3ff724551b78c775cf9baea4c4d2a78d4fa808091597:log:3', 'hash': '0x36d755031a123debcabe3ff724551b78c775cf9baea4c4d2a78d4fa808091597', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 6225.268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x90f17d2080', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:06:52.000Z'}}, {'blockNum': '0x5300e9', 'uniqueId': '0x8fbf685399851f512a686d052e5e1f8ad5efdef3d79c60f77430eb2ff0749a84:log:57', 'hash': '0x8fbf685399851f512a686d052e5e1f8ad5efdef3d79c60f77430eb2ff0749a84', 'from': '0xcdde5206157bb802ccb5e64694261653ace0aee5', 'to': '0xac0349f3705a4cfe87d3a7857403e97aad8fd9e5', 'value': 173.85365004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x040c3f9e0c', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:12:42.000Z'}}, {'blockNum': '0x5300f3', 'uniqueId': '0x69cda978c0607958a197acbb2eafc6b7985e287690f3a84ce49a3ee22354b625:log:27', 'hash': '0x69cda978c0607958a197acbb2eafc6b7985e287690f3a84ce49a3ee22354b625', 'from': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6225.268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x90f17d2080', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:15:05.000Z'}}, {'blockNum': '0x530139', 'uniqueId': '0x76593c839ecec01162c2d195110f6d36d2559ec5a831d0548b51f878ec1f941c:log:4', 'hash': '0x76593c839ecec01162c2d195110f6d36d2559ec5a831d0548b51f878ec1f941c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xafb182deccb3da39e7f08c6b34c17f77f0dc8298', 'value': 346.2368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x080fbb6e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:28:07.000Z'}}, {'blockNum': '0x530141', 'uniqueId': '0x019793d3c4c60f7b19225907a74a88eb8e07ee9ebaf9c3a7610398dabdc7d674:log:108', 'hash': '0x019793d3c4c60f7b19225907a74a88eb8e07ee9ebaf9c3a7610398dabdc7d674', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xec66e4f3de9163ea1557e139182f3c2f7d3c1723', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:30:13.000Z'}}, {'blockNum': '0x53014d', 'uniqueId': '0x644223b26a4054760132ab21c6394e3d652994b773ae78512c1aab4d2b16bf2f:log:0', 'hash': '0x644223b26a4054760132ab21c6394e3d652994b773ae78512c1aab4d2b16bf2f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 26735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x026e79048f00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:32:59.000Z'}}, {'blockNum': '0x530190', 'uniqueId': '0x7ff3a585e7cc79d6334cb9a50bd6590aa47ea477619d3728a30330e0ecc042dc:log:33', 'hash': '0x7ff3a585e7cc79d6334cb9a50bd6590aa47ea477619d3728a30330e0ecc042dc', 'from': '0x3f083cc758f1c56de5d4da809e249f1809dcb505', 'to': '0x084a7e14c8cc81925569198c39d22a5c2a969e2d', 'value': 974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x16ad7e0e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:49:19.000Z'}}, {'blockNum': '0x5301a1', 'uniqueId': '0xd851559cd899b1c63abe9aa7595aba92c7c9760276c0b3dab5ca5ed460b8d897:log:37', 'hash': '0xd851559cd899b1c63abe9aa7595aba92c7c9760276c0b3dab5ca5ed460b8d897', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 20671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01e148c2df00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:56:22.000Z'}}, {'blockNum': '0x5301b8', 'uniqueId': '0x65dc964cbec4e79652f94d40cafe72fa8ddbb0114f3610f01dc9629ff3183415:log:32', 'hash': '0x65dc964cbec4e79652f94d40cafe72fa8ddbb0114f3610f01dc9629ff3183415', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x209a5bced4adddcd8d4e551993fcd40148ee5ad7', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:02:24.000Z'}}, {'blockNum': '0x5301c4', 'uniqueId': '0x671036433970a0b94b020dc09b45c061fce3a3083cf553d90c7e9acdbb612126:log:28', 'hash': '0x671036433970a0b94b020dc09b45c061fce3a3083cf553d90c7e9acdbb612126', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01e148c2df00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:05:07.000Z'}}, {'blockNum': '0x5301cf', 'uniqueId': '0xe4fee38024a02f90cd35cc2bce2bd61508b227a284fd35869d6de839f708710b:log:72', 'hash': '0xe4fee38024a02f90cd35cc2bce2bd61508b227a284fd35869d6de839f708710b', 'from': '0xac0349f3705a4cfe87d3a7857403e97aad8fd9e5', 'to': '0x18adf2007a93a6394a459c5535eeffdb997527d6', 'value': 173.85365004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x040c3f9e0c', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:07:21.000Z'}}, {'blockNum': '0x5301dc', 'uniqueId': '0x55ad4f1c0fcd3f60363c61e28be7d18c9d0ce3d52cb9d5988a35d756250e2c77:log:22', 'hash': '0x55ad4f1c0fcd3f60363c61e28be7d18c9d0ce3d52cb9d5988a35d756250e2c77', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x0da2373219faff07d8190e39f77017b8e45ad4cf', 'value': 29743.24, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02b483868500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:09:33.000Z'}}, {'blockNum': '0x5301e9', 'uniqueId': '0x1785f6e1ba270c639031b5fe5f1728aa767e0232bdefc4e7b50c7a3aa5098bee:log:13', 'hash': '0x1785f6e1ba270c639031b5fe5f1728aa767e0232bdefc4e7b50c7a3aa5098bee', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x0da2373219faff07d8190e39f77017b8e45ad4cf', 'value': 8398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xc387fb0e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:11:51.000Z'}}, {'blockNum': '0x5301f9', 'uniqueId': '0xaeab02846078db10ad238b851c4e6033eada48a05f9e3f7eb84fca0d75447fe3:log:32', 'hash': '0xaeab02846078db10ad238b851c4e6033eada48a05f9e3f7eb84fca0d75447fe3', 'from': '0x0da2373219faff07d8190e39f77017b8e45ad4cf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38141.24, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03780b819300', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:15:11.000Z'}}, {'blockNum': '0x5301fb', 'uniqueId': '0x2aac14a3467c829699f2270e7803c71f40814bece92a498b45442efd35fbfa9c:log:29', 'hash': '0x2aac14a3467c829699f2270e7803c71f40814bece92a498b45442efd35fbfa9c', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x25bb5e014dd970e8096abfc7e96ed218cbb65a5e', 'value': 16392.75396303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x017dac6d7ccf', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:15:35.000Z'}}, {'blockNum': '0x530208', 'uniqueId': '0xa9fb16fc4189ab618076d2592549e79d0483ed4d95508c555d2fd9ded1f7924b:log:18', 'hash': '0xa9fb16fc4189ab618076d2592549e79d0483ed4d95508c555d2fd9ded1f7924b', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x4bb1676391611d031f171a2a321808ab8daeb4ee', 'value': 2795.588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x411700c280', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:17:50.000Z'}}, {'blockNum': '0x530227', 'uniqueId': '0x807c1b683f9cc2d649eabf6010d6ba8896449742d0a196bd9094ce5e0cc343a4:log:11', 'hash': '0x807c1b683f9cc2d649eabf6010d6ba8896449742d0a196bd9094ce5e0cc343a4', 'from': '0x25bb5e014dd970e8096abfc7e96ed218cbb65a5e', 'to': '0xb614345e0357c8f720e1a16735a9f0b49fe98153', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:26:38.000Z'}}, {'blockNum': '0x530236', 'uniqueId': '0xb1e57a6f2e8d970b640e16be78f57feb390db22051065197ca20182841a699b8:log:15', 'hash': '0xb1e57a6f2e8d970b640e16be78f57feb390db22051065197ca20182841a699b8', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x25342d120ae2565bc060fe65141f47f4fa4de82f', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:30:25.000Z'}}, {'blockNum': '0x530264', 'uniqueId': '0xe1773490fabe66608048ae4b9375bbad4013a68ee97ef836b83652a762e38122:log:20', 'hash': '0xe1773490fabe66608048ae4b9375bbad4013a68ee97ef836b83652a762e38122', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xce565d6b238abf43d24be6008a922bcca4258942', 'value': 33946.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x031663786b40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:42:11.000Z'}}, {'blockNum': '0x530265', 'uniqueId': '0xd86776aaa7691ffa5686af21c5c905caa56d8f6c041c48091216e2f9d1fe5944:log:5', 'hash': '0xd86776aaa7691ffa5686af21c5c905caa56d8f6c041c48091216e2f9d1fe5944', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 8920.159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xcfb04a7560', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:42:45.000Z'}}, {'blockNum': '0x53026e', 'uniqueId': '0xcbf7bd0cbc0ab32b78ed6350ba616f2d49e246374d170cd63821fdea2fcd1073:log:23', 'hash': '0xcbf7bd0cbc0ab32b78ed6350ba616f2d49e246374d170cd63821fdea2fcd1073', 'from': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8920.159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xcfb04a7560', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:45:03.000Z'}}, {'blockNum': '0x530279', 'uniqueId': '0x19be25eac34bc288156d4709907e156d98ebe44137243566d98825a90f634d51:log:40', 'hash': '0x19be25eac34bc288156d4709907e156d98ebe44137243566d98825a90f634d51', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 20618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01e00cdb4a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:46:44.000Z'}}, {'blockNum': '0x53027d', 'uniqueId': '0x8a942ed30aa1564f8a20b5c8d60695cc3ef122ed6f14ad69cf86fd48423b88e7:log:23', 'hash': '0x8a942ed30aa1564f8a20b5c8d60695cc3ef122ed6f14ad69cf86fd48423b88e7', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xb555c0419ac5966e6d6f0d866f77bebffd592c81', 'value': 2767.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x4072818dc0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:47:40.000Z'}}, {'blockNum': '0x53029e', 'uniqueId': '0x6321b7a30ca0cbfa5b4f149c5e3dc249ca25d15853a49fe8d9a41ba08f1149bd:log:13', 'hash': '0x6321b7a30ca0cbfa5b4f149c5e3dc249ca25d15853a49fe8d9a41ba08f1149bd', 'from': '0xce565d6b238abf43d24be6008a922bcca4258942', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33946.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x031663786b40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:55:17.000Z'}}, {'blockNum': '0x53029e', 'uniqueId': '0x4e20574d7918b00666687ba6ca67cc597b2d39cf84ecdbd61021e6aeed2ce620:log:14', 'hash': '0x4e20574d7918b00666687ba6ca67cc597b2d39cf84ecdbd61021e6aeed2ce620', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01e00cdb4a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:55:17.000Z'}}, {'blockNum': '0x5302ab', 'uniqueId': '0xd9d44934219cdaeb1de954f4be59773137e9c0890c13f68ff74c784ab0cece84:log:96', 'hash': '0xd9d44934219cdaeb1de954f4be59773137e9c0890c13f68ff74c784ab0cece84', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 20520, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01ddc4bb2800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:58:36.000Z'}}, {'blockNum': '0x5302b4', 'uniqueId': '0xaaaec73b41c6bc73fb215a0ced7934f93fba6784df513814dbebf84f1826b27a:log:120', 'hash': '0xaaaec73b41c6bc73fb215a0ced7934f93fba6784df513814dbebf84f1826b27a', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x659d0715f2ab1bc451844e56201cad69a283916f', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:00:02.000Z'}}, {'blockNum': '0x5302bb', 'uniqueId': '0x99047acf9265837b1188edaa24758d205d9a5f3be12d83a3ba46386f5e8806e5:log:2', 'hash': '0x99047acf9265837b1188edaa24758d205d9a5f3be12d83a3ba46386f5e8806e5', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 849.14262022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x13c548d006', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:01:08.000Z'}}, {'blockNum': '0x5302bf', 'uniqueId': '0x2886e245156b1fc3ef7b06510e151d87664fa0c42d91be4c739f09791d5f4ae5:log:26', 'hash': '0x2886e245156b1fc3ef7b06510e151d87664fa0c42d91be4c739f09791d5f4ae5', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x0b419bce1cb87adea84a913fa903593fb68d33b1', 'value': 359.42023253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x085e4fc055', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:01:51.000Z'}}, {'blockNum': '0x5302bf', 'uniqueId': '0x800ec89604b37abcbcb85e5faf567e0659f52812b49e7dc1302ef1bcd557f1e5:log:71', 'hash': '0x800ec89604b37abcbcb85e5faf567e0659f52812b49e7dc1302ef1bcd557f1e5', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'value': 4490.629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x688e3c1120', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:01:51.000Z'}}, {'blockNum': '0x5302c1', 'uniqueId': '0xccc6389342ed95ac43dabd7c14d0dd541c27dab9dfad8254c54949553191e364:log:16', 'hash': '0xccc6389342ed95ac43dabd7c14d0dd541c27dab9dfad8254c54949553191e364', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'value': 2869.66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x42d081a980', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:02:05.000Z'}}, {'blockNum': '0x5302c1', 'uniqueId': '0xb25681c804b4423714eeef4dde46207131aa307e341d489a887aea939fc9d1d3:log:39', 'hash': '0xb25681c804b4423714eeef4dde46207131aa307e341d489a887aea939fc9d1d3', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xf8851b834dfff1beeaea24ccde31acce8e2739b2', 'value': 3666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x555b101200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:02:05.000Z'}}, {'blockNum': '0x5302c5', 'uniqueId': '0xe5ab4633125eb93c11b5896ffd278e69a2d42439d25e377d515e63204e0afb36:log:22', 'hash': '0xe5ab4633125eb93c11b5896ffd278e69a2d42439d25e377d515e63204e0afb36', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 4659.622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x6c7d82ebc0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:03:10.000Z'}}, {'blockNum': '0x5302c8', 'uniqueId': '0xdc70bf6f125e32ada84911226c5026f9301fb655470a61553c61ade14519bf8b:log:48', 'hash': '0xdc70bf6f125e32ada84911226c5026f9301fb655470a61553c61ade14519bf8b', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x8b1090425c820c9055b279f5da71a307b3759f2b', 'value': 1064.82765074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x18cade0d12', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:03:31.000Z'}}, {'blockNum': '0x5302cb', 'uniqueId': '0x6f344602e46956e39499c2430039bb2e54424f251570acc6d225a4524e1f208b:log:17', 'hash': '0x6f344602e46956e39499c2430039bb2e54424f251570acc6d225a4524e1f208b', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 6295.96475897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x9296dfd1f9', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:05:16.000Z'}}, {'blockNum': '0x5302cb', 'uniqueId': '0x6a36202315b35850ceaf23404a43d82cc89d3dcadcc473fbf7a4138d574f0c2d:log:54', 'hash': '0x6a36202315b35850ceaf23404a43d82cc89d3dcadcc473fbf7a4138d574f0c2d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 77084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0702c0719c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:05:16.000Z'}}, {'blockNum': '0x5302cb', 'uniqueId': '0x6d685b8b561b95744c29ac14e00a93028847c81763b5b14d2160adbcfe6ebd80:log:89', 'hash': '0x6d685b8b561b95744c29ac14e00a93028847c81763b5b14d2160adbcfe6ebd80', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5508.76462022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x8042cbbbc6', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:05:16.000Z'}}, {'blockNum': '0x5302cb', 'uniqueId': '0xa13c248905e7e8c6076b18f758da370d3726a14dade984872c5c086c5ba1beb9:log:90', 'hash': '0xa13c248905e7e8c6076b18f758da370d3726a14dade984872c5c086c5ba1beb9', 'from': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11632.919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x010ed999b860', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:05:16.000Z'}}, {'blockNum': '0x5302cc', 'uniqueId': '0xf0972ec58ba979e826720f1312ca9609d90aa7b42ba033887015df7befb858f5:log:14', 'hash': '0xf0972ec58ba979e826720f1312ca9609d90aa7b42ba033887015df7befb858f5', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20520, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01ddc4bb2800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:05:23.000Z'}}, {'blockNum': '0x5302cd', 'uniqueId': '0xf2d2b975a0863322a2d0875c7ed72a859b8ad8670b78d0961f7439f6f9848b1d:log:11', 'hash': '0xf2d2b975a0863322a2d0875c7ed72a859b8ad8670b78d0961f7439f6f9848b1d', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 27034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02756f325a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:05:29.000Z'}}, {'blockNum': '0x5302d0', 'uniqueId': '0x7ec8f28e3d0fb4536418ed3b1a64ce352e569bb910a596232dd042d5a2e36e44:log:29', 'hash': '0x7ec8f28e3d0fb4536418ed3b1a64ce352e569bb910a596232dd042d5a2e36e44', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x7d482f72cc87612cfd3a96fca7482b5f42246c6f', 'value': 10848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xfc931e6000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:05:48.000Z'}}, {'blockNum': '0x5302d4', 'uniqueId': '0x7cc69329210232069f730a999f71565a25da5199359bc6521013c8d09e37a9b1:log:3', 'hash': '0x7cc69329210232069f730a999f71565a25da5199359bc6521013c8d09e37a9b1', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xaded80f59aa659099110a23e70ecf5bb2fa77390', 'value': 8880.279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xcec2966860', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:06:39.000Z'}}, {'blockNum': '0x5302d8', 'uniqueId': '0x14fe959ab115887213c435331ff2071aff396ded0711859a5af7b463bedc45ae:log:41', 'hash': '0x14fe959ab115887213c435331ff2071aff396ded0711859a5af7b463bedc45ae', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 12279.052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x011de4da6f80', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:07:17.000Z'}}, {'blockNum': '0x5302dc', 'uniqueId': '0xd806052a9c2cc622e2719f7f5658a3e69776a7b3887efec99b135be2e5863053:log:34', 'hash': '0xd806052a9c2cc622e2719f7f5658a3e69776a7b3887efec99b135be2e5863053', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8a4d5690167a03f073c9b8df81d5cd7eb5508930', 'value': 4556.9443189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x6a19813692', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:08:00.000Z'}}, {'blockNum': '0x5302dc', 'uniqueId': '0x77070bd0bdceb4e4f96409598a654b3ccaf3eae17698479b1f98276e18b1875b:log:37', 'hash': '0x77070bd0bdceb4e4f96409598a654b3ccaf3eae17698479b1f98276e18b1875b', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 6872.321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xa00239a6a0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:08:00.000Z'}}, {'blockNum': '0x5302dd', 'uniqueId': '0x1ea1b7ffb2eccf03aedc4775d75bb86175c13e6c994e13de1d2b6909b210c841:log:4', 'hash': '0x1ea1b7ffb2eccf03aedc4775d75bb86175c13e6c994e13de1d2b6909b210c841', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0x7ebca7a683670cf208654be4b31ff65d536fd6f9', 'value': 9495.88884066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xdd17e87a62', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:08:23.000Z'}}, {'blockNum': '0x5302df', 'uniqueId': '0xee6fba726ea80267739c2251c39e9afa967bf327cca91ebfe010af0ccd263deb:log:3', 'hash': '0xee6fba726ea80267739c2251c39e9afa967bf327cca91ebfe010af0ccd263deb', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 1986.024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2e3da02100', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:09:06.000Z'}}, {'blockNum': '0x5302e2', 'uniqueId': '0x7dcbfd3839cf5579d76527cd6d7933ea655efa005a19051226f58c3409258a8c:log:6', 'hash': '0x7dcbfd3839cf5579d76527cd6d7933ea655efa005a19051226f58c3409258a8c', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x2e1daa81ef8f6ce6d025110dabb599a1367e68d5', 'value': 79267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x073594234300', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:09:38.000Z'}}, {'blockNum': '0x5302e2', 'uniqueId': '0x7b5dc67d7c348dfdb3d9682865aea50578973bd150cdb2b46837c93835acf561:log:7', 'hash': '0x7b5dc67d7c348dfdb3d9682865aea50578973bd150cdb2b46837c93835acf561', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x249a62defbbcfcd759931e3a124c203a6edb27e0', 'value': 106935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x09b9c644d700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:09:38.000Z'}}, {'blockNum': '0x5302e3', 'uniqueId': '0x8b16da62b8a3fe705f9dc31412507cdd65d6a60b1cfdce5c411bfa1290ecdb7d:log:3', 'hash': '0x8b16da62b8a3fe705f9dc31412507cdd65d6a60b1cfdce5c411bfa1290ecdb7d', 'from': '0x6b660726400697bb9c8c55c0def79745d80d19f9', 'to': '0x6c8821c6b6c9c2473b5ecb76e87f879d1974ae45', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:09:47.000Z'}}, {'blockNum': '0x5302e9', 'uniqueId': '0x6d4fb61d2d20bb41da6c97077ef2862199a3ee166a057678f120ba696749ccd6:log:74', 'hash': '0x6d4fb61d2d20bb41da6c97077ef2862199a3ee166a057678f120ba696749ccd6', 'from': '0x8a4d5690167a03f073c9b8df81d5cd7eb5508930', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 4556.9443189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x6a19813692', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:11:13.000Z'}}, {'blockNum': '0x5302ec', 'uniqueId': '0xb6426419826dd8c602b2857465be32b3be51e65df934cc1415c6d4d350ce11b1:log:51', 'hash': '0xb6426419826dd8c602b2857465be32b3be51e65df934cc1415c6d4d350ce11b1', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x8b1090425c820c9055b279f5da71a307b3759f2b', 'value': 3552.89898452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x52b8ed9dd4', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:11:57.000Z'}}, {'blockNum': '0x5302ef', 'uniqueId': '0x296e13d969263fa63e108f5833aa74b9a7d2f7f97027fbfa76be33f485da7b27:log:3', 'hash': '0x296e13d969263fa63e108f5833aa74b9a7d2f7f97027fbfa76be33f485da7b27', 'from': '0x6d6006303ec9d0e4aa3db261c08fa8fe3a321dc1', 'to': '0x81d49904815d36734d51e2107e2790cb87532175', 'value': 100.04258978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02544ce0a2', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:12:22.000Z'}}, {'blockNum': '0x5302ef', 'uniqueId': '0x9d0407a17a0d2dd9e214e5cbc40a5097a26de2f7ebf0b7992f57f8ce97e2f7c0:log:5', 'hash': '0x9d0407a17a0d2dd9e214e5cbc40a5097a26de2f7ebf0b7992f57f8ce97e2f7c0', 'from': '0xff64f34e8511693e3dffa0e1fe037a6a65f3937b', 'to': '0x26f92f17c3e60fa019ca5ffe929dc86679e2c285', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:12:22.000Z'}}, {'blockNum': '0x5302f4', 'uniqueId': '0x4b64843dd4a5c2d54802b5e3998266897535f3abb2113d7234ac75f7846f664c:log:3', 'hash': '0x4b64843dd4a5c2d54802b5e3998266897535f3abb2113d7234ac75f7846f664c', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'value': 6480.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x96e2ca4080', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:13:24.000Z'}}, {'blockNum': '0x5302f6', 'uniqueId': '0x2c3fd57e36c01f0d5e369ff54346b1759d9a43d4aa22f2d8cd5849b96bd460ea:log:9', 'hash': '0x2c3fd57e36c01f0d5e369ff54346b1759d9a43d4aa22f2d8cd5849b96bd460ea', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x639d1b9c55c7ae6f7e81d23c6b8726d81e702194', 'value': 1560.305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2454247ca0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:13:57.000Z'}}, {'blockNum': '0x5302f6', 'uniqueId': '0x4fd56a9b3593aefb4d5c69a97c3f84cb5b4effee433e74a899c93dd9984f6996:log:24', 'hash': '0x4fd56a9b3593aefb4d5c69a97c3f84cb5b4effee433e74a899c93dd9984f6996', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x2e1daa81ef8f6ce6d025110dabb599a1367e68d5', 'value': 17805.7988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x019e92d4cc40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:13:57.000Z'}}, {'blockNum': '0x5302f7', 'uniqueId': '0x087e9882ea4bb54102e9ec06367fd3f8b9d2abeeffba98b3dc9d43ee466a8ad7:log:52', 'hash': '0x087e9882ea4bb54102e9ec06367fd3f8b9d2abeeffba98b3dc9d43ee466a8ad7', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x858ed8b568be10776374d9169dabd612d940b2d7', 'value': 2865.36012803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x42b6e09403', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:25.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0xc988e40e1dfe791a0a1b00fbd999b471d54dcb5c9c56715a559ad9ff7596d2bc:log:8', 'hash': '0xc988e40e1dfe791a0a1b00fbd999b471d54dcb5c9c56715a559ad9ff7596d2bc', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x013cd78f1efe5b15e718a8682be794341687179b', 'value': 18127.964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01a61315e180', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0xf07798af56e990493eb77c82fc6f2c1943cf6697ba942d42505b6705c21e816c:log:52', 'hash': '0xf07798af56e990493eb77c82fc6f2c1943cf6697ba942d42505b6705c21e816c', 'from': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21137.397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01ec24b43720', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0x27488fba408a9508e2a19b09f480a904c8c85af116fd3d9cf0de0bc76ea8d076:log:53', 'hash': '0x27488fba408a9508e2a19b09f480a904c8c85af116fd3d9cf0de0bc76ea8d076', 'from': '0x7ebca7a683670cf208654be4b31ff65d536fd6f9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9495.88884066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xdd17e87a62', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0xecdc909b25abe90b97718ad02e3e8c9dfb2659c8313897fb40354da819ec4a23:log:54', 'hash': '0xecdc909b25abe90b97718ad02e3e8c9dfb2659c8313897fb40354da819ec4a23', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6295.96475897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x9296dfd1f9', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0x97b6c755f50a9a5377c4916e09e4b4de9f127f72d873a236a10b0dc1add21ae2:log:55', 'hash': '0x97b6c755f50a9a5377c4916e09e4b4de9f127f72d873a236a10b0dc1add21ae2', 'from': '0x2e1daa81ef8f6ce6d025110dabb599a1367e68d5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 97072.7988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x08d426f80f40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0xeb879d1492bf92964c230bd6c686e6fa16c70dbbb880fb280b114b0fbb1f56fd:log:60', 'hash': '0xeb879d1492bf92964c230bd6c686e6fa16c70dbbb880fb280b114b0fbb1f56fd', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 11417.644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0109d6762380', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0x270f2a356d4927cf4131d11bbb15631297321c2c819b476933a2a2b8ed762d21:log:63', 'hash': '0x270f2a356d4927cf4131d11bbb15631297321c2c819b476933a2a2b8ed762d21', 'from': '0x249a62defbbcfcd759931e3a124c203a6edb27e0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 106935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x09b9c644d700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0x27cb959258946265f190a52aec1ff5ec7adb51c9a0f72bec2281e72f25cef14e:log:64', 'hash': '0x27cb959258946265f190a52aec1ff5ec7adb51c9a0f72bec2281e72f25cef14e', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02756f325a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0xca18d046a61c5928ddc5b66db0e93eb672fc0bc589386f15405c0e48d2189963:log:65', 'hash': '0xca18d046a61c5928ddc5b66db0e93eb672fc0bc589386f15405c0e48d2189963', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 77084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0702c0719c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0xc56ad5a2489f5df89470edef2c1adae41d5c83b002cb41c04298a017c2e31b6d:log:66', 'hash': '0xc56ad5a2489f5df89470edef2c1adae41d5c83b002cb41c04298a017c2e31b6d', 'from': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6480.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x96e2ca4080', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0x639c39c4aca5ceae05fd0e6adb6f20ac71d10c2a9cbc7723a192481f919f99ab:log:67', 'hash': '0x639c39c4aca5ceae05fd0e6adb6f20ac71d10c2a9cbc7723a192481f919f99ab', 'from': '0x8b1090425c820c9055b279f5da71a307b3759f2b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5316.55568144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x7bc9242b10', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0x0c3cbd4a4a6f419ef8d5227e2a353027089a526e1b02bd4a2c957d4f5b9967a0:log:78', 'hash': '0x0c3cbd4a4a6f419ef8d5227e2a353027089a526e1b02bd4a2c957d4f5b9967a0', 'from': '0xaded80f59aa659099110a23e70ecf5bb2fa77390', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8880.279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xcec2966860', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fc', 'uniqueId': '0xacf1c0273363c7c57c96db0bf9bb456edea014b729524a0da1769ededd06d757:log:11', 'hash': '0xacf1c0273363c7c57c96db0bf9bb456edea014b729524a0da1769ededd06d757', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xcccc7385e0e9b48d0cfbed5b2c3a9d98391ec1a4', 'value': 773.6676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x12036b1240', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:15:50.000Z'}}, {'blockNum': '0x5302fc', 'uniqueId': '0x5d094b832d78ac2af13a43bf052e92f2884b797a469dc9e8439e748ed1bfbb55:log:12', 'hash': '0x5d094b832d78ac2af13a43bf052e92f2884b797a469dc9e8439e748ed1bfbb55', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 31015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02d21fce4700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:15:50.000Z'}}, {'blockNum': '0x5302fd', 'uniqueId': '0x1c516efb56268aa0e039df5edbb495a9cdbb117d1de39ca2f3532856e5ccb562:log:6', 'hash': '0x1c516efb56268aa0e039df5edbb495a9cdbb117d1de39ca2f3532856e5ccb562', 'from': '0xd4feebe7d216f105f744c36b95f61b0d337f36a9', 'to': '0x6c8821c6b6c9c2473b5ecb76e87f879d1974ae45', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:16:00.000Z'}}, {'blockNum': '0x530300', 'uniqueId': '0x9a52dd1f13bc88c85220d917ffafd175d9a751dd1b0f84b0f6d0f1bad218d4a0:log:3', 'hash': '0x9a52dd1f13bc88c85220d917ffafd175d9a751dd1b0f84b0f6d0f1bad218d4a0', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 12296.998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x011e4fd1dbc0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:17:01.000Z'}}, {'blockNum': '0x530300', 'uniqueId': '0x9e461fc1885c8fcb085961436421d2ce14bbc4b4d90cdaedb83986ba6b8b2040:log:56', 'hash': '0x9e461fc1885c8fcb085961436421d2ce14bbc4b4d90cdaedb83986ba6b8b2040', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 11595.8125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x010dfc6db1d0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:17:01.000Z'}}, {'blockNum': '0x530301', 'uniqueId': '0x7429fb8e4b47f568388a85e6a5637b82cb3d8e8fe7dc8820641dc64adf82168d:log:15', 'hash': '0x7429fb8e4b47f568388a85e6a5637b82cb3d8e8fe7dc8820641dc64adf82168d', 'from': '0xd403c988700c3518894e75109337efa6cab1f482', 'to': '0x6c8821c6b6c9c2473b5ecb76e87f879d1974ae45', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:17:52.000Z'}}, {'blockNum': '0x530305', 'uniqueId': '0x8312453e6a98101b4d744fd6360893b29c69a6672787ae9bf644ac3f4a1098eb:log:3', 'hash': '0x8312453e6a98101b4d744fd6360893b29c69a6672787ae9bf644ac3f4a1098eb', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'value': 4806.537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x6fe9316ba0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:19:37.000Z'}}, {'blockNum': '0x530307', 'uniqueId': '0xe1985956f7a3c3cfbb88fa4488df52dfddd0543a42cc76541eafa851d53b7a7e:log:24', 'hash': '0xe1985956f7a3c3cfbb88fa4488df52dfddd0543a42cc76541eafa851d53b7a7e', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x3d697c0910fb6ccd4411163336503dc62d24a1ff', 'value': 16917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0189e12d7500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:20:17.000Z'}}, {'blockNum': '0x53030a', 'uniqueId': '0xe9a0e081d2c4d4a5f355bd3b74cc246fb71be02e8ad741f3a50d6fef589108c6:log:46', 'hash': '0xe9a0e081d2c4d4a5f355bd3b74cc246fb71be02e8ad741f3a50d6fef589108c6', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 8248.0099827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xc009f8737e', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:21:02.000Z'}}, {'blockNum': '0x530314', 'uniqueId': '0x51467685f6f2eac538a93f473e36cad79a4bcdd6cd15f4a4a9e73513ed39fcec:log:0', 'hash': '0x51467685f6f2eac538a93f473e36cad79a4bcdd6cd15f4a4a9e73513ed39fcec', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:22:38.000Z'}}, {'blockNum': '0x530317', 'uniqueId': '0x0bbb2fc008f07ed227e70f9cebbb9c855da4697b7ebb714379dac8b020b3f16e:log:7', 'hash': '0x0bbb2fc008f07ed227e70f9cebbb9c855da4697b7ebb714379dac8b020b3f16e', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 11054.736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0101635c7a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:23:55.000Z'}}, {'blockNum': '0x530318', 'uniqueId': '0xcdf8b375fbbd130f5a6024e8392ad7d570fa8307612ff4349a1abdb3605c8837:log:74', 'hash': '0xcdf8b375fbbd130f5a6024e8392ad7d570fa8307612ff4349a1abdb3605c8837', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 59116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x056066d16c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:24:38.000Z'}}, {'blockNum': '0x530318', 'uniqueId': '0x59b9e0920edeada3655fb7d3e9ee5f3c083ec36179afb3b4bcf6ad80877df43b:log:75', 'hash': '0x59b9e0920edeada3655fb7d3e9ee5f3c083ec36179afb3b4bcf6ad80877df43b', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 43939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03ff08d94300', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:24:38.000Z'}}, {'blockNum': '0x530318', 'uniqueId': '0x1f55f9fc31baef5110bdfbcfadc245c02c90434a3fd7c011b723743aff3b1398:log:76', 'hash': '0x1f55f9fc31baef5110bdfbcfadc245c02c90434a3fd7c011b723743aff3b1398', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x5df69a9ab5d0189c7403090ab518fd20f1c0fb13', 'value': 59980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x057484a8cc00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:24:38.000Z'}}, {'blockNum': '0x530318', 'uniqueId': '0xd20c1b90227e0732c7c32be132beb223ac07dfdf3fcbdbc1603d3d17137c8bda:log:77', 'hash': '0xd20c1b90227e0732c7c32be132beb223ac07dfdf3fcbdbc1603d3d17137c8bda', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xca93ed536dffeb230d2c889a6cd8bb05298ee0e1', 'value': 36206.76016436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x034b011b9934', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:24:38.000Z'}}, {'blockNum': '0x530319', 'uniqueId': '0xdd3610efc6b393d6c3fb5278d30c54f2eff2f006f38c3a0fbc21aef6b8d1372a:log:5', 'hash': '0xdd3610efc6b393d6c3fb5278d30c54f2eff2f006f38c3a0fbc21aef6b8d1372a', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 7602.125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xb100322e20', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:25:01.000Z'}}, {'blockNum': '0x53031a', 'uniqueId': '0x9fd132f036635226f0a82f2d134e6ff5a3b30990dff587baaee4d5ae33947d25:log:35', 'hash': '0x9fd132f036635226f0a82f2d134e6ff5a3b30990dff587baaee4d5ae33947d25', 'from': '0xa0c734885448968b3ff642438e0f2f3449789a05', 'to': '0xe93182bc148aa40a793ec4e3ec4c5f32553fd945', 'value': 4353.04609963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x655a2d38ab', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:25:28.000Z'}}, {'blockNum': '0x53031b', 'uniqueId': '0xab4c0b6536c7148f2931e439a63c6917076647a3588b061f8c8e3e95734f0454:log:9', 'hash': '0xab4c0b6536c7148f2931e439a63c6917076647a3588b061f8c8e3e95734f0454', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x5f6ee8bbdf918692e765a9569c96069513cd601e', 'value': 4521.395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x69459d41e0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:26:36.000Z'}}, {'blockNum': '0x53031b', 'uniqueId': '0x3fe44bc4d6bd1bdd96e51b8d401b85257b42cd92448c1187a96283c98d8d409d:log:52', 'hash': '0x3fe44bc4d6bd1bdd96e51b8d401b85257b42cd92448c1187a96283c98d8d409d', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11595.8125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x010dfc6db1d0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:26:36.000Z'}}, {'blockNum': '0x53031b', 'uniqueId': '0xd3ea3a8905b7d80b3e0d7b55a707f8ccc16741f4a7ff6b533776014b902ea3a4:log:70', 'hash': '0xd3ea3a8905b7d80b3e0d7b55a707f8ccc16741f4a7ff6b533776014b902ea3a4', 'from': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23351.734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x021fb32e55c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:26:36.000Z'}}, {'blockNum': '0x53031b', 'uniqueId': '0xe3d7b7d6ad19f67cf156c5319cdc1a437eff5214afc7164990c4ae928f1fb8fa:log:71', 'hash': '0xe3d7b7d6ad19f67cf156c5319cdc1a437eff5214afc7164990c4ae928f1fb8fa', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8248.0099827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xc009f8737e', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:26:36.000Z'}}, {'blockNum': '0x53031b', 'uniqueId': '0xd1c34b33502610ed9395057b15e6d04d6acf04e97e9a9ad10c99ac709339483b:log:73', 'hash': '0xd1c34b33502610ed9395057b15e6d04d6acf04e97e9a9ad10c99ac709339483b', 'from': '0x013cd78f1efe5b15e718a8682be794341687179b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18127.964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01a61315e180', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:26:36.000Z'}}, {'blockNum': '0x53031b', 'uniqueId': '0x8f00e190c0f4caa526aeec92f2f203339bc030fc622b550d53f5b06b8195724e:log:74', 'hash': '0x8f00e190c0f4caa526aeec92f2f203339bc030fc622b550d53f5b06b8195724e', 'from': '0x3d697c0910fb6ccd4411163336503dc62d24a1ff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0189e12d7500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:26:36.000Z'}}, {'blockNum': '0x53031b', 'uniqueId': '0x179e6eda3f1edc98a6f169d909de1327dd9785e23c062f27d022def9cabfd356:log:75', 'hash': '0x179e6eda3f1edc98a6f169d909de1327dd9785e23c062f27d022def9cabfd356', 'from': '0x7d482f72cc87612cfd3a96fca7482b5f42246c6f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xfc931e6000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:26:36.000Z'}}, {'blockNum': '0x53031b', 'uniqueId': '0x209a2a9b5c528f154a0e974b5faf5ac7050430bb5aa4a965af1e8bd14c51b24c:log:77', 'hash': '0x209a2a9b5c528f154a0e974b5faf5ac7050430bb5aa4a965af1e8bd14c51b24c', 'from': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21387.644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01f1f84ad580', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:26:36.000Z'}}, {'blockNum': '0x53031e', 'uniqueId': '0x5fee39b5489249e46e987e8202f709535f198fb484ea076d4ca7c5b75f6e6483:log:14', 'hash': '0x5fee39b5489249e46e987e8202f709535f198fb484ea076d4ca7c5b75f6e6483', 'from': '0x36db5d7ebaee0a474df461aa0653d00a5e1d1797', 'to': '0xe24e22208d26265541585e8f748f7c3b1030c8bb', 'value': 6952.0764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xa1dd9abbc0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:27:36.000Z'}}, {'blockNum': '0x53031f', 'uniqueId': '0xe47fcb8c54a4a69f06475374cfee036072821e7495b0f3a862f9912a60237b07:log:39', 'hash': '0xe47fcb8c54a4a69f06475374cfee036072821e7495b0f3a862f9912a60237b07', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 20580, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01df2a5be400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:27:46.000Z'}}, {'blockNum': '0x530323', 'uniqueId': '0x5d12f2c2b94adeecf71990848fbf850d4f7bc6cde16445d0e9f42e044d028824:log:18', 'hash': '0x5d12f2c2b94adeecf71990848fbf850d4f7bc6cde16445d0e9f42e044d028824', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x91f41176eb10d612aefe45284f05f640aa2d0bac', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:29:12.000Z'}}, {'blockNum': '0x530328', 'uniqueId': '0xe8818de7978fb0c38a4fcaae0e46247203a05eb59c6e667794ebabe21d97ae5d:log:23', 'hash': '0xe8818de7978fb0c38a4fcaae0e46247203a05eb59c6e667794ebabe21d97ae5d', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'value': 10767.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xfab3e5b600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:30:19.000Z'}}, {'blockNum': '0x530328', 'uniqueId': '0x52c7034896784e20f8f4d3ec96758766cb790702b318a605fc004409ef11621a:log:28', 'hash': '0x52c7034896784e20f8f4d3ec96758766cb790702b318a605fc004409ef11621a', 'from': '0xe31251e2b777cd1f3928de81bbd04af39f5d2055', 'to': '0x4d3d8187f8e051f91fbaf7375396d161ef684e64', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:30:19.000Z'}}, {'blockNum': '0x53032b', 'uniqueId': '0x019a347a54ab6a7446fc2954d800d5fcec5e4f1021dcff9e710e7d94e2d1dde1:log:0', 'hash': '0x019a347a54ab6a7446fc2954d800d5fcec5e4f1021dcff9e710e7d94e2d1dde1', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x91f41176eb10d612aefe45284f05f640aa2d0bac', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:30:48.000Z'}}, {'blockNum': '0x53032b', 'uniqueId': '0xaf760791318ca8cbc376f9d34db20aa359e80ea3ab81c44ec6160e036ef9db6b:log:58', 'hash': '0xaf760791318ca8cbc376f9d34db20aa359e80ea3ab81c44ec6160e036ef9db6b', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x4d3954269d93a960ae2a998d9c7efa1c6b9f4a25', 'value': 3903.57142856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x5ae3194d48', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:30:48.000Z'}}, {'blockNum': '0x53032d', 'uniqueId': '0x80c76c879bac167f1e7a92540297f6e0f538a8c6fb2ad0b7237da59b5fb370b6:log:55', 'hash': '0x80c76c879bac167f1e7a92540297f6e0f538a8c6fb2ad0b7237da59b5fb370b6', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x74af0e093ff399fc8ac50cb54a26f8ddbfc5e18c', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:30:57.000Z'}}, {'blockNum': '0x53032f', 'uniqueId': '0xb4fa9b62a021414d4a94818ea287829f54d2d060815c925ea4c218a8c1026d60:log:92', 'hash': '0xb4fa9b62a021414d4a94818ea287829f54d2d060815c925ea4c218a8c1026d60', 'from': '0xed2785b3392862faf66a59de91f171fa0478a5b5', 'to': '0xb70811b42bb4419054cecfdac544dd3c91c4114d', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xd18c2e2800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:31:35.000Z'}}, {'blockNum': '0x530330', 'uniqueId': '0xd800b3368583b82b47f05f3287a00c2cf24099f09306657a89be37b7c68124e5:log:4', 'hash': '0xd800b3368583b82b47f05f3287a00c2cf24099f09306657a89be37b7c68124e5', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0xad1a458742cccc876eb473e4c29b5bbc4409f9d2', 'value': 217.63829749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x051139aff5', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:31:58.000Z'}}, {'blockNum': '0x530331', 'uniqueId': '0x0fc2c362ada63d4049849560e8b45de7e0d0669d61347dcf1fe50a15a88ab831:log:8', 'hash': '0x0fc2c362ada63d4049849560e8b45de7e0d0669d61347dcf1fe50a15a88ab831', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x91f41176eb10d612aefe45284f05f640aa2d0bac', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:32:14.000Z'}}, {'blockNum': '0x530331', 'uniqueId': '0x06bdb9ae3468f0d6897e06cc3b833d6f598209ebf2e470c32dd318f255c001d5:log:149', 'hash': '0x06bdb9ae3468f0d6897e06cc3b833d6f598209ebf2e470c32dd318f255c001d5', 'from': '0xa348bc749d527ab9cc0dea70965388d56afba244', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:32:14.000Z'}}, {'blockNum': '0x530334', 'uniqueId': '0x496758a92b7463887301a4d855eeb8d880d5f895afa6fc0f6bfc3471d63d2df3:log:5', 'hash': '0x496758a92b7463887301a4d855eeb8d880d5f895afa6fc0f6bfc3471d63d2df3', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x91f41176eb10d612aefe45284f05f640aa2d0bac', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:33:21.000Z'}}, {'blockNum': '0x530336', 'uniqueId': '0x6f1c71372ff5b3beea81bd1c2067ef9a9c2fcf0e15eb4115e7ceddb5411536f2:log:6', 'hash': '0x6f1c71372ff5b3beea81bd1c2067ef9a9c2fcf0e15eb4115e7ceddb5411536f2', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x23bf6d9d931179b4783ee09fe50b28e2b801804e', 'value': 9969.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe81be364e0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:34:22.000Z'}}, {'blockNum': '0x53033a', 'uniqueId': '0x8ccfc1562a5fb67e62deb63c10734ba8ef82d0d173352105a39d23b50daf344e:log:8', 'hash': '0x8ccfc1562a5fb67e62deb63c10734ba8ef82d0d173352105a39d23b50daf344e', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x91f41176eb10d612aefe45284f05f640aa2d0bac', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:35:07.000Z'}}, {'blockNum': '0x53033a', 'uniqueId': '0x390a751ba30a560cd3860978ab2ad4542dbaa59dcf299be92b5c613bcf2c1202:log:33', 'hash': '0x390a751ba30a560cd3860978ab2ad4542dbaa59dcf299be92b5c613bcf2c1202', 'from': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7602.125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xb100322e20', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:35:07.000Z'}}, {'blockNum': '0x53033a', 'uniqueId': '0x0ef8c3af308995a85a3b4ef14877c6253bb9205120ec20be5ad9df9ec6a37d56:log:34', 'hash': '0x0ef8c3af308995a85a3b4ef14877c6253bb9205120ec20be5ad9df9ec6a37d56', 'from': '0x6c8821c6b6c9c2473b5ecb76e87f879d1974ae45', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x015d3ef79800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:35:07.000Z'}}, {'blockNum': '0x53033a', 'uniqueId': '0x28d9a6bdf587a261cf5ccb17a6a6d3b092a3eb77fc92dc0950c94d55b617a6ec:log:35', 'hash': '0x28d9a6bdf587a261cf5ccb17a6a6d3b092a3eb77fc92dc0950c94d55b617a6ec', 'from': '0x5df69a9ab5d0189c7403090ab518fd20f1c0fb13', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x057484a8cc00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:35:07.000Z'}}, {'blockNum': '0x53033a', 'uniqueId': '0x3af2e2eb53cfa86025fc4111e8b4496c7bc85266fae96030c73d3a3864ee1e05:log:36', 'hash': '0x3af2e2eb53cfa86025fc4111e8b4496c7bc85266fae96030c73d3a3864ee1e05', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x056066d16c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:35:07.000Z'}}, {'blockNum': '0x53033a', 'uniqueId': '0x32d08735c0bf7b77c0e1a1be93dfc29a243f6d1028ecf2c0e5b5f7893981c9d1:log:37', 'hash': '0x32d08735c0bf7b77c0e1a1be93dfc29a243f6d1028ecf2c0e5b5f7893981c9d1', 'from': '0xb70811b42bb4419054cecfdac544dd3c91c4114d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xd18c2e2800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:35:07.000Z'}}, {'blockNum': '0x53033a', 'uniqueId': '0xa425b912ce7741f93b7d626c13057c72433cf2973a3d5607b468d2dcecb006b1:log:38', 'hash': '0xa425b912ce7741f93b7d626c13057c72433cf2973a3d5607b468d2dcecb006b1', 'from': '0xca93ed536dffeb230d2c889a6cd8bb05298ee0e1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36206.76016436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x034b011b9934', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:35:07.000Z'}}, {'blockNum': '0x53033a', 'uniqueId': '0x59b5192b418ce5eb35bd0a34203579cdcf1145a50fc3a7ceea4ce81e8ab30059:log:39', 'hash': '0x59b5192b418ce5eb35bd0a34203579cdcf1145a50fc3a7ceea4ce81e8ab30059', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 43939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03ff08d94300', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:35:07.000Z'}}, {'blockNum': '0x53033a', 'uniqueId': '0xebbba01e4a091b329bd898f44a1b97ee244009e01c2bd124027b576747c2ecdf:log:105', 'hash': '0xebbba01e4a091b329bd898f44a1b97ee244009e01c2bd124027b576747c2ecdf', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20580, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01df2a5be400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:35:07.000Z'}}, {'blockNum': '0x53033a', 'uniqueId': '0x1b910f2dcf65139a8d6aeae790a0f445de7dd83e493469fe9962d04903cdedfd:log:106', 'hash': '0x1b910f2dcf65139a8d6aeae790a0f445de7dd83e493469fe9962d04903cdedfd', 'from': '0xe24e22208d26265541585e8f748f7c3b1030c8bb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11952.0764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x011647ed43c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:35:07.000Z'}}, {'blockNum': '0x53033a', 'uniqueId': '0xe1e8db3fcad4ff2c540984a3de0ea96dc5ef9106f677819befa1fdbedc9efc23:log:107', 'hash': '0xe1e8db3fcad4ff2c540984a3de0ea96dc5ef9106f677819befa1fdbedc9efc23', 'from': '0x5f6ee8bbdf918692e765a9569c96069513cd601e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8228.241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xbf942360a0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:35:07.000Z'}}, {'blockNum': '0x53033d', 'uniqueId': '0x256f134db4985bf63b59e0922b4e85a02e40946259b39dceebf40d6d0957bee0:log:9', 'hash': '0x256f134db4985bf63b59e0922b4e85a02e40946259b39dceebf40d6d0957bee0', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x91f41176eb10d612aefe45284f05f640aa2d0bac', 'value': 4656.987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6dce3ae0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:36:32.000Z'}}, {'blockNum': '0x53033f', 'uniqueId': '0xa9d71fcbda2640b495497ec4dbcd3bd9f7b0ea4eb6de752fc4856f4a79ea4da4:log:9', 'hash': '0xa9d71fcbda2640b495497ec4dbcd3bd9f7b0ea4eb6de752fc4856f4a79ea4da4', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0xad1a458742cccc876eb473e4c29b5bbc4409f9d2', 'value': 9.29956012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x376e00ac', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:37:03.000Z'}}, {'blockNum': '0x530340', 'uniqueId': '0xfd5cd1528b643cd1b15a3b5d5e7d912efe94546cdb874fe66540cf3e20dfb7e1:log:5', 'hash': '0xfd5cd1528b643cd1b15a3b5d5e7d912efe94546cdb874fe66540cf3e20dfb7e1', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 6724.765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x9c92b91020', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:37:29.000Z'}}, {'blockNum': '0x530352', 'uniqueId': '0x977ada914ad8ba154858521a612c9f8c27e0460ad629f0cd7b0b971bc7adcf66:log:4', 'hash': '0x977ada914ad8ba154858521a612c9f8c27e0460ad629f0cd7b0b971bc7adcf66', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x8aad1a4a67fa3fe984a747b790ec42984df3a727', 'value': 4023.5032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x5dadf2a980', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:41:25.000Z'}}, {'blockNum': '0x530352', 'uniqueId': '0x0565de17a357820af2eee07465462cc97389c51141d85394856a0c0346b36b4b:log:16', 'hash': '0x0565de17a357820af2eee07465462cc97389c51141d85394856a0c0346b36b4b', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 8212.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xbf38e0a540', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:41:25.000Z'}}, {'blockNum': '0x530359', 'uniqueId': '0x74de8732468b71ea2a242584713a69eee063178b94d1251d596919ce23d149a0:log:1', 'hash': '0x74de8732468b71ea2a242584713a69eee063178b94d1251d596919ce23d149a0', 'from': '0x09745476b4d610b4918ae4db69af8cde80bfdc69', 'to': '0x7bd4a6771de806f8e4f6815e34ed069a6055ccb5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:42:39.000Z'}}, {'blockNum': '0x53035f', 'uniqueId': '0xccd4ec18adc72ec382f880e0eb13045e48d784095ac55ee49189e85a31aa5212:log:4', 'hash': '0xccd4ec18adc72ec382f880e0eb13045e48d784095ac55ee49189e85a31aa5212', 'from': '0xeb9e14531a4cd34642f8ab840f4b77243bdd6c39', 'to': '0x7bd4a6771de806f8e4f6815e34ed069a6055ccb5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:43:40.000Z'}}, {'blockNum': '0x530362', 'uniqueId': '0x0d8ea9529a36792dff958d24d93a27c8baf1e5640bf1d2f484cb9fd5fc145e9e:log:13', 'hash': '0x0d8ea9529a36792dff958d24d93a27c8baf1e5640bf1d2f484cb9fd5fc145e9e', 'from': '0xb204dc66798e2ae304ffe9ac9fa6d0a81d15c204', 'to': '0x2fb54285b9f1c05eb5d6d44abe0a0437bb84b993', 'value': 661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0f63ddf500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:44:07.000Z'}}, {'blockNum': '0x530367', 'uniqueId': '0xf27eb300c5484efd1ba13a109d34c2a42cb8667170f0082d21895a40960c3125:log:11', 'hash': '0xf27eb300c5484efd1ba13a109d34c2a42cb8667170f0082d21895a40960c3125', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'value': 2487.515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x39eabeaae0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:45:25.000Z'}}, {'blockNum': '0x530368', 'uniqueId': '0x5a391ee7bef7bb6043c16c8c0f8f7afd41c4dd33191e6876b272aaa6c8ac78e8:log:18', 'hash': '0x5a391ee7bef7bb6043c16c8c0f8f7afd41c4dd33191e6876b272aaa6c8ac78e8', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8212.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xbf38e0a540', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:45:46.000Z'}}, {'blockNum': '0x530368', 'uniqueId': '0x31f0cdbb57a9698e99339f2e813a6a34ec3e442bd72aed096e8d036182d8e0b0:log:19', 'hash': '0x31f0cdbb57a9698e99339f2e813a6a34ec3e442bd72aed096e8d036182d8e0b0', 'from': '0x23bf6d9d931179b4783ee09fe50b28e2b801804e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9969.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe81be364e0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:45:46.000Z'}}, {'blockNum': '0x530368', 'uniqueId': '0x121a164f6addc86203055412cd49e6aca695297471e7574d2c9f6949541a6525:log:21', 'hash': '0x121a164f6addc86203055412cd49e6aca695297471e7574d2c9f6949541a6525', 'from': '0x8aad1a4a67fa3fe984a747b790ec42984df3a727', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6598.8097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x99a3f88710', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:45:46.000Z'}}, {'blockNum': '0x530368', 'uniqueId': '0x641728005514921648e46ee708057239956cdb3e9fd1841b6ffe38d9c9b33f6b:log:22', 'hash': '0x641728005514921648e46ee708057239956cdb3e9fd1841b6ffe38d9c9b33f6b', 'from': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15574.137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x016a9d1721a0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:45:46.000Z'}}, {'blockNum': '0x530368', 'uniqueId': '0xfede50b0185b143dd5f8e4028584a6c22bd89b76859b1f9fcaf13c840c54cddc:log:23', 'hash': '0xfede50b0185b143dd5f8e4028584a6c22bd89b76859b1f9fcaf13c840c54cddc', 'from': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6724.765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x9c92b91020', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:45:46.000Z'}}, {'blockNum': '0x53036c', 'uniqueId': '0x0f61c47ba12a86c54f8f1b79613c019a1531fa52b4e4103400503715b88e4212:log:2', 'hash': '0x0f61c47ba12a86c54f8f1b79613c019a1531fa52b4e4103400503715b88e4212', 'from': '0xfe22c8c1b13550af411ddc8c6dfc917ecc89bab1', 'to': '0x7bd4a6771de806f8e4f6815e34ed069a6055ccb5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:46:06.000Z'}}, {'blockNum': '0x53036d', 'uniqueId': '0x9e21543b7c885671b03b19a93024b79b3a83656242eb7eeaba04f171824ede77:log:25', 'hash': '0x9e21543b7c885671b03b19a93024b79b3a83656242eb7eeaba04f171824ede77', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 31339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02d9aaff0b00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:46:14.000Z'}}, {'blockNum': '0x530374', 'uniqueId': '0xe7b603e4c9f74d2c20ee4b0edb4da2f129b63ae7dbd86d1507b26d84f54b4a23:log:1', 'hash': '0xe7b603e4c9f74d2c20ee4b0edb4da2f129b63ae7dbd86d1507b26d84f54b4a23', 'from': '0x409df5d84115af9aa4e5a9ca7cd34410605ca412', 'to': '0x7bd4a6771de806f8e4f6815e34ed069a6055ccb5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:48:01.000Z'}}, {'blockNum': '0x530379', 'uniqueId': '0xcd8d4916e45c77af1256b74f5a82953931428529d2c8a3ac38a061ed7713e926:log:5', 'hash': '0xcd8d4916e45c77af1256b74f5a82953931428529d2c8a3ac38a061ed7713e926', 'from': '0xeffb0c80b10f79fd879ee2605e356c93ad302492', 'to': '0x7bd4a6771de806f8e4f6815e34ed069a6055ccb5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:49:16.000Z'}}, {'blockNum': '0x53037f', 'uniqueId': '0x90d270d36f24d1458535df5bb63a8ecf91dd7379e80558e7ba313e415f338529:log:8', 'hash': '0x90d270d36f24d1458535df5bb63a8ecf91dd7379e80558e7ba313e415f338529', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xafb182deccb3da39e7f08c6b34c17f77f0dc8298', 'value': 176.787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x041dbb8de0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:51:13.000Z'}}, {'blockNum': '0x530383', 'uniqueId': '0xb00652aecfa736ca110c40682a912959aeaad5b4a7f4678d4140248c8babbaa8:log:9', 'hash': '0xb00652aecfa736ca110c40682a912959aeaad5b4a7f4678d4140248c8babbaa8', 'from': '0x0dd00d2a6ac32ffa99f9e3247f139e41c37bdbb1', 'to': '0x7bd4a6771de806f8e4f6815e34ed069a6055ccb5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:53:17.000Z'}}, {'blockNum': '0x53038c', 'uniqueId': '0xe106b9621ef383930eaec448b42e9c234023efc0242e74aaa67c9b74e383b64b:log:173', 'hash': '0xe106b9621ef383930eaec448b42e9c234023efc0242e74aaa67c9b74e383b64b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xfa494915700050201e283533bf2ba7a690a17b3e', 'value': 20554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01de8f630a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:54:50.000Z'}}, {'blockNum': '0x53038f', 'uniqueId': '0xbf1931343384d77ccebc5ba3c5838cdfcd7ff16a9a25f66de2c3b5fba13420f9:log:17', 'hash': '0xbf1931343384d77ccebc5ba3c5838cdfcd7ff16a9a25f66de2c3b5fba13420f9', 'from': '0x7bd4a6771de806f8e4f6815e34ed069a6055ccb5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xd18c2e2800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:55:05.000Z'}}, {'blockNum': '0x53038f', 'uniqueId': '0x41a092744a2b2f68fe77c3ecde3d5314208edc14396694c41864c6ba6439ca85:log:18', 'hash': '0x41a092744a2b2f68fe77c3ecde3d5314208edc14396694c41864c6ba6439ca85', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02d9aaff0b00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:55:05.000Z'}}, {'blockNum': '0x530391', 'uniqueId': '0x2402dd0a1453727555a6fe0b895e88ab57e2c46110a49422e596582d485e15da:log:18', 'hash': '0x2402dd0a1453727555a6fe0b895e88ab57e2c46110a49422e596582d485e15da', 'from': '0x15d0b674c8059aea78baa415bacc23228bec3281', 'to': '0x7bd4a6771de806f8e4f6815e34ed069a6055ccb5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:55:51.000Z'}}, {'blockNum': '0x53039b', 'uniqueId': '0x1b812f2448312a95a65a4ab47f585b4a1019265e0749ef730a11111c782c8ce8:log:8', 'hash': '0x1b812f2448312a95a65a4ab47f585b4a1019265e0749ef730a11111c782c8ce8', 'from': '0xde5f4adc04a4f0c0c5fe27a24e5ba7c2fe89e1e5', 'to': '0x7bd4a6771de806f8e4f6815e34ed069a6055ccb5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:57:16.000Z'}}, {'blockNum': '0x53039f', 'uniqueId': '0x138523d6b5a7c063b7b3bd3e3b78bfe4e49e66fa486ca509b77cd7c492f03516:log:20', 'hash': '0x138523d6b5a7c063b7b3bd3e3b78bfe4e49e66fa486ca509b77cd7c492f03516', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 55000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0500918bd800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:57:44.000Z'}}, {'blockNum': '0x5303a2', 'uniqueId': '0xa4185b0bd88c56ccd73dbd4d970c9f0bad485a9661b2059586910ee1a03e1273:log:3', 'hash': '0xa4185b0bd88c56ccd73dbd4d970c9f0bad485a9661b2059586910ee1a03e1273', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'value': 7379.794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xabd2ffff40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:58:27.000Z'}}, {'blockNum': '0x5303ac', 'uniqueId': '0x0ebaf1ff3a4a11dab8f49365bed77019a73446deff176811b544b06a99244cdb:log:20', 'hash': '0x0ebaf1ff3a4a11dab8f49365bed77019a73446deff176811b544b06a99244cdb', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x22c7ebd472fca4da60fbde55ec283349bb1e6b24', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:00:05.000Z'}}, {'blockNum': '0x5303b0', 'uniqueId': '0x3ecd1f5bee1427d8032095fea0a621dc7d72909c9259daf5958262d16d96bb9b:log:2', 'hash': '0x3ecd1f5bee1427d8032095fea0a621dc7d72909c9259daf5958262d16d96bb9b', 'from': '0x27b8ca61039cc0ef3a5a11a0b71347c2cf8f3bcc', 'to': '0x4ca309cffb4b55568d3f161eafc1a7b912721196', 'value': 19397.7879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01c3a3d36270', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:00:52.000Z'}}, {'blockNum': '0x5303b3', 'uniqueId': '0x64c06591fad23e47fa678c792e0b021fc8693b68fc2409b9e284381d8909ef53:log:127', 'hash': '0x64c06591fad23e47fa678c792e0b021fc8693b68fc2409b9e284381d8909ef53', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'value': 53460.92395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x04dcbbf029f8', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:01:31.000Z'}}, {'blockNum': '0x5303b7', 'uniqueId': '0x63832dff821d58dd760acdd6b923bc040a4c926edd7d49a74e9e3de821afe1d4:log:2', 'hash': '0x63832dff821d58dd760acdd6b923bc040a4c926edd7d49a74e9e3de821afe1d4', 'from': '0xef4c422553dc005501b0c74010af4939d32aeaf4', 'to': '0x7bd4a6771de806f8e4f6815e34ed069a6055ccb5', 'value': 5003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x747c342b00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:02:34.000Z'}}, {'blockNum': '0x5303c3', 'uniqueId': '0xdebd7ada63e434ffc1ce86d4c376d1bccae51e761f041f24c3d1bb7d960bf779:log:47', 'hash': '0xdebd7ada63e434ffc1ce86d4c376d1bccae51e761f041f24c3d1bb7d960bf779', 'from': '0x7bd4a6771de806f8e4f6815e34ed069a6055ccb5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xba5598e300', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:05:07.000Z'}}, {'blockNum': '0x5303c3', 'uniqueId': '0x3657dc5390553f6f53d56dcb33b1bf139071427fd55b4c9baddfdd5b02a9e1f9:log:48', 'hash': '0x3657dc5390553f6f53d56dcb33b1bf139071427fd55b4c9baddfdd5b02a9e1f9', 'from': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9867.309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe5bdbeaa20', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:05:07.000Z'}}, {'blockNum': '0x5303cd', 'uniqueId': '0x996254f32a097faccae3579a8d821b7a57f37263fd91a0bfd39038bb1797fa55:log:9', 'hash': '0x996254f32a097faccae3579a8d821b7a57f37263fd91a0bfd39038bb1797fa55', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x91f41176eb10d612aefe45284f05f640aa2d0bac', 'value': 9443.584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xdbe025a000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:07:18.000Z'}}, {'blockNum': '0x5303d1', 'uniqueId': '0x568976c21097e5f34aed0575477955247249ab46191e0b7cd4b36a8cd8dc1cf3:log:0', 'hash': '0x568976c21097e5f34aed0575477955247249ab46191e0b7cd4b36a8cd8dc1cf3', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x888c27df025eeb62d6e63c7e76471fa156158303', 'value': 879.5834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x147ab9c1a0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:08:04.000Z'}}, {'blockNum': '0x5303d2', 'uniqueId': '0x10e35a66dfb2ec00e115af01627e9775f0f5c70afe9c9e3e427c9327fefbbc3e:log:67', 'hash': '0x10e35a66dfb2ec00e115af01627e9775f0f5c70afe9c9e3e427c9327fefbbc3e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x3d697c0910fb6ccd4411163336503dc62d24a1ff', 'value': 16658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0183d96ad200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:08:31.000Z'}}, {'blockNum': '0x5303f0', 'uniqueId': '0x7be858159237eb1565ad84cebbb4b0056c38d3d3f7f8b304870db806d4426b30:log:2', 'hash': '0x7be858159237eb1565ad84cebbb4b0056c38d3d3f7f8b304870db806d4426b30', 'from': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53460.92395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x04dcbbf029f8', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:15:04.000Z'}}, {'blockNum': '0x5303f0', 'uniqueId': '0x7d53d23085dd5113861b18707402cfc44df924908b4a8b83f1ebdcb9d8816d35:log:3', 'hash': '0x7d53d23085dd5113861b18707402cfc44df924908b4a8b83f1ebdcb9d8816d35', 'from': '0x3d697c0910fb6ccd4411163336503dc62d24a1ff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0183d96ad200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:15:04.000Z'}}, {'blockNum': '0x530403', 'uniqueId': '0xb54d8f7991b19f9228ccf59565981fb8feb52824f9275591b59fd40e5d100958:log:6', 'hash': '0xb54d8f7991b19f9228ccf59565981fb8feb52824f9275591b59fd40e5d100958', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x896b2222b907de1074db67b25f94c1a0f44ff16d', 'value': 6979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xa27e14e300', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:19:37.000Z'}}, {'blockNum': '0x530413', 'uniqueId': '0x141e6e2e2974c8f3e60fdb96d846e7c089b87f532a376136bff87cc910e5451b:log:5', 'hash': '0x141e6e2e2974c8f3e60fdb96d846e7c089b87f532a376136bff87cc910e5451b', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x91f41176eb10d612aefe45284f05f640aa2d0bac', 'value': 6467.539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x96958955e0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:23:07.000Z'}}, {'blockNum': '0x530416', 'uniqueId': '0x1fda77e50fb3a0135ee7807df8977eef10704c3e73e76895a49e9a4219d3fd38:log:8', 'hash': '0x1fda77e50fb3a0135ee7807df8977eef10704c3e73e76895a49e9a4219d3fd38', 'from': '0x998fc33ab8ef2946b47b7f3dfb416411a77e50a2', 'to': '0xfbd01ccdcce4d50fb591c756298167ace1f41229', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:23:58.000Z'}}, {'blockNum': '0x53041d', 'uniqueId': '0x7d0062b48633a051ec7256a8e4152beb5214719f138fec13980024e58f2b7cab:log:12', 'hash': '0x7d0062b48633a051ec7256a8e4152beb5214719f138fec13980024e58f2b7cab', 'from': '0x46ed6562a168970fe4d992c81ad1aff66486779b', 'to': '0x602167d1449ccdc8ee23f117a4c4129f9e9ef724', 'value': 10000.448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe8d750a800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:26:28.000Z'}}, {'blockNum': '0x530421', 'uniqueId': '0xc0f6ae560c6a9de2944274ad29bab14a8694307606dd4898969589f0ffb84b74:log:0', 'hash': '0xc0f6ae560c6a9de2944274ad29bab14a8694307606dd4898969589f0ffb84b74', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x98888fa741486ef92ef73c52b84f20f35806c480', 'value': 12964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x012dd7762400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:27:35.000Z'}}, {'blockNum': '0x53042c', 'uniqueId': '0x4f05232bd9abcc2232263abc8c5ed4fec7b2761007f40d42d25fe9331383029c:log:48', 'hash': '0x4f05232bd9abcc2232263abc8c5ed4fec7b2761007f40d42d25fe9331383029c', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x2b7dd3cfdb707c553b502bc531611d01af496103', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:30:12.000Z'}}, {'blockNum': '0x530441', 'uniqueId': '0x2a791f8113133b0904712e498429dce9080aa74bc9d69cbd7c04f5acb57ffe58:log:13', 'hash': '0x2a791f8113133b0904712e498429dce9080aa74bc9d69cbd7c04f5acb57ffe58', 'from': '0x602167d1449ccdc8ee23f117a4c4129f9e9ef724', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12206.448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x011c34198600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:35:03.000Z'}}, {'blockNum': '0x53045e', 'uniqueId': '0x2f7521e80548d331a51adf2086efe9cd35887863149034dd051f03efdd25fc64:log:73', 'hash': '0x2f7521e80548d331a51adf2086efe9cd35887863149034dd051f03efdd25fc64', 'from': '0xc542ba836c11735d21142f8d85da006423d939f2', 'to': '0x54c701528a69a245815078b0bc16c40ba360ecb7', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:41:09.000Z'}}, {'blockNum': '0x530464', 'uniqueId': '0x606c084db5452b9db4898e16d986e19f82d1c4eb63e51a1de5b3d6cc588df776:log:61', 'hash': '0x606c084db5452b9db4898e16d986e19f82d1c4eb63e51a1de5b3d6cc588df776', 'from': '0xe97b172f32c4f0011488ef6e73ddf3a06e6f85b2', 'to': '0x54c701528a69a245815078b0bc16c40ba360ecb7', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:42:26.000Z'}}, {'blockNum': '0x530469', 'uniqueId': '0x3846f6fc068c282c382e0a6028dd73c8d5e5ead98f24beced997106a38084b18:log:74', 'hash': '0x3846f6fc068c282c382e0a6028dd73c8d5e5ead98f24beced997106a38084b18', 'from': '0x209cf7a9df48143c075e2a03f970479caf0ec237', 'to': '0x54c701528a69a245815078b0bc16c40ba360ecb7', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:43:07.000Z'}}, {'blockNum': '0x530472', 'uniqueId': '0x6a42bf63ad58ef625497df70177d892d2fe70df52319e519b7598b489c326a0e:log:36', 'hash': '0x6a42bf63ad58ef625497df70177d892d2fe70df52319e519b7598b489c326a0e', 'from': '0x54c701528a69a245815078b0bc16c40ba360ecb7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xd18c2e2800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:45:43.000Z'}}, {'blockNum': '0x530494', 'uniqueId': '0xead74c699ea78110f29e395faa2e271218362e469bbac8b09f27145a0ea78535:log:22', 'hash': '0xead74c699ea78110f29e395faa2e271218362e469bbac8b09f27145a0ea78535', 'from': '0x143dde7078bdd0ce30b56b4fe85658cb49e65425', 'to': '0x60e73ec819eee24a6ce4c62a75a53c872b1dd24d', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:55:50.000Z'}}, {'blockNum': '0x5304a3', 'uniqueId': '0xb33f7044230b9ab1a8ddb44db04129c8bf9a37e0f986c580f08f041422ed9827:log:58', 'hash': '0xb33f7044230b9ab1a8ddb44db04129c8bf9a37e0f986c580f08f041422ed9827', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 20487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01dd00092700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:00:34.000Z'}}, {'blockNum': '0x5304a4', 'uniqueId': '0xe2e6c85efd67de475d024954e2375a9640b56e2f958fbd50890741ce79ce85b0:log:82', 'hash': '0xe2e6c85efd67de475d024954e2375a9640b56e2f958fbd50890741ce79ce85b0', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x9ff09d5846395a263cbf6c7c70f3eeb7b9d5f506', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:00:46.000Z'}}, {'blockNum': '0x5304a5', 'uniqueId': '0xcfcbdf7bb2b8b32bc87c7bca2f116fd7d27423630c8b380b55b728f0a39d1d3b:log:2', 'hash': '0xcfcbdf7bb2b8b32bc87c7bca2f116fd7d27423630c8b380b55b728f0a39d1d3b', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'value': 10169.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xecc658f300', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:01:30.000Z'}}, {'blockNum': '0x5304ac', 'uniqueId': '0x918d9b51d7db6171b9806f577dab0a2b036549355750e7d96b00132184a307b1:log:4', 'hash': '0x918d9b51d7db6171b9806f577dab0a2b036549355750e7d96b00132184a307b1', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'value': 10463.515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xf39f68d2e0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:03:03.000Z'}}, {'blockNum': '0x5304ac', 'uniqueId': '0x22b7377d4f250ba84b24cff00b1ce3c95ccf33a5c7d482f30b2eeb3b8187e713:log:12', 'hash': '0x22b7377d4f250ba84b24cff00b1ce3c95ccf33a5c7d482f30b2eeb3b8187e713', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 26702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x026db4528e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:03:03.000Z'}}, {'blockNum': '0x5304b7', 'uniqueId': '0x6d7113313731fe88652517feb86c1afea5b53adccf882356c74c2d2eeea7b5d6:log:17', 'hash': '0x6d7113313731fe88652517feb86c1afea5b53adccf882356c74c2d2eeea7b5d6', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x026db4528e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:05:13.000Z'}}, {'blockNum': '0x5304b7', 'uniqueId': '0x939c92ac0f4303b6a019cada473f6a7c249d8804165d42bf354ebce75b7dc7a7:log:18', 'hash': '0x939c92ac0f4303b6a019cada473f6a7c249d8804165d42bf354ebce75b7dc7a7', 'from': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20632.915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01e065c1c5e0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:05:13.000Z'}}, {'blockNum': '0x5304b7', 'uniqueId': '0x3427a967d2c5d9c89dc279579a578f672962863758634399fa676b797258abe5:log:21', 'hash': '0x3427a967d2c5d9c89dc279579a578f672962863758634399fa676b797258abe5', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01dd00092700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:05:13.000Z'}}, {'blockNum': '0x5304e2', 'uniqueId': '0x0929db6a50aad5f42fe8827e2e493b5ec499fe0390c8139b6a641b49d28c5f1b:log:56', 'hash': '0x0929db6a50aad5f42fe8827e2e493b5ec499fe0390c8139b6a641b49d28c5f1b', 'from': '0xaacd58da4c1a5261e9c8355447ec92cc21df8221', 'to': '0x34d2e76e688d781fccbb0d8d22d94161f331f031', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:14:59.000Z'}}, {'blockNum': '0x5304ed', 'uniqueId': '0x9d7f2df4b10470649f92bede4259f134b50f89dc56a96f901cc0cbe7db3e3d31:log:39', 'hash': '0x9d7f2df4b10470649f92bede4259f134b50f89dc56a96f901cc0cbe7db3e3d31', 'from': '0xdbbb49da2a2addaf45a2cfdb5670d0056429de50', 'to': '0x34d2e76e688d781fccbb0d8d22d94161f331f031', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:17:45.000Z'}}, {'blockNum': '0x5304f4', 'uniqueId': '0xed2474e305f359b7185b8b84bc563989b7d314c56f9f02e2be107edb1505052b:log:51', 'hash': '0xed2474e305f359b7185b8b84bc563989b7d314c56f9f02e2be107edb1505052b', 'from': '0x529d0907d8cfe6b24298b369abadca2fa689363c', 'to': '0x34d2e76e688d781fccbb0d8d22d94161f331f031', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:19:24.000Z'}}, {'blockNum': '0x5304fd', 'uniqueId': '0x66007b58905f9f1b6ff27956f0018b2ded2c81f1fccc2a161cec324d3f0e3894:log:31', 'hash': '0x66007b58905f9f1b6ff27956f0018b2ded2c81f1fccc2a161cec324d3f0e3894', 'from': '0x55274b9bb3ab562686003a359b04c63de9d1a256', 'to': '0x4cc6908f3453da5cacb0990d6684f2a1fb0aaf03', 'value': 3720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x569ced8800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:23:00.000Z'}}, {'blockNum': '0x530517', 'uniqueId': '0x590e0c0f9d57a9e72ca6bdd8b9619b08910725e03ceaa7acb3f7250a93e77563:log:24', 'hash': '0x590e0c0f9d57a9e72ca6bdd8b9619b08910725e03ceaa7acb3f7250a93e77563', 'from': '0x98888fa741486ef92ef73c52b84f20f35806c480', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 12964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x012dd7762400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:30:02.000Z'}}, {'blockNum': '0x530517', 'uniqueId': '0xcedbf08cfc329a37c4397aa0c8a76a61d1083ef09df2dda28aad330f89460c6e:log:138', 'hash': '0xcedbf08cfc329a37c4397aa0c8a76a61d1083ef09df2dda28aad330f89460c6e', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x5c1b60b54d67b8c899d2666a4c3f5cc27a03b941', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:30:02.000Z'}}, {'blockNum': '0x530525', 'uniqueId': '0xd6c59055b2ef2f2f5d4555654c34ca1a4769c33cf8d8423a5f27336fac26ced2:log:6', 'hash': '0xd6c59055b2ef2f2f5d4555654c34ca1a4769c33cf8d8423a5f27336fac26ced2', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'value': 6694.855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x9be0720660', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:34:29.000Z'}}, {'blockNum': '0x530526', 'uniqueId': '0x7bb855e0134d636fd5c6219c80f37efd1ac9c5fc8acdd5ad6cb0851494078dba:log:2', 'hash': '0x7bb855e0134d636fd5c6219c80f37efd1ac9c5fc8acdd5ad6cb0851494078dba', 'from': '0x7b0d7c8c4fb2d8cd41d6ca8372c02a08d7071d17', 'to': '0xef8c0073e52ea1277a08b6eef1dcd04cd2956f28', 'value': 5100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x76be5e6c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:34:36.000Z'}}, {'blockNum': '0x530539', 'uniqueId': '0x58ec55ebe27bb643e4101cae19d1d72f9a90dfb93aac534219e0ca0109289675:log:5', 'hash': '0x58ec55ebe27bb643e4101cae19d1d72f9a90dfb93aac534219e0ca0109289675', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd61f9f78dfb4ff2f294151345968843df176a06d', 'value': 213.75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x04fa0c9dc0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:39:31.000Z'}}, {'blockNum': '0x530543', 'uniqueId': '0x81251772e950bb89d284e7e55ec5bfb61456835803d83bbe291048befa972d6f:log:0', 'hash': '0x81251772e950bb89d284e7e55ec5bfb61456835803d83bbe291048befa972d6f', 'from': '0x591e1d87def5032938006a418c094dcd89177177', 'to': '0x13d064826d64a3a741502322d3b7934b4d25e996', 'value': 393.13419448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0927432cb8', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:41:58.000Z'}}, {'blockNum': '0x53054f', 'uniqueId': '0xd37a465b2a0000dccabcd69ccb85c3c881e35d35d4894f4cde6297839a878333:log:4', 'hash': '0xd37a465b2a0000dccabcd69ccb85c3c881e35d35d4894f4cde6297839a878333', 'from': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6694.855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x9be0720660', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:45:36.000Z'}}, {'blockNum': '0x530561', 'uniqueId': '0x25d36efe38b64b3478d5f4960e7e785a70d859514e0a4dab7cfb863b43b0fc96:log:52', 'hash': '0x25d36efe38b64b3478d5f4960e7e785a70d859514e0a4dab7cfb863b43b0fc96', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x4da8c523dade05bd8cb285d56d96b50db80c609c', 'value': 17843.85294117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x019f75a6cf25', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:52:15.000Z'}}, {'blockNum': '0x530575', 'uniqueId': '0xcb7b99e69a47a19a7a6ffd1c7c150dbb27a1e2bbd2fdf738cd6598c07cb52126:log:14', 'hash': '0xcb7b99e69a47a19a7a6ffd1c7c150dbb27a1e2bbd2fdf738cd6598c07cb52126', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x13b30bbb556879ba90f8c24e8fe43135958eeb94', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:57:46.000Z'}}, {'blockNum': '0x530584', 'uniqueId': '0x93d255839ab130a6ebee910a6791e2ffb87986f3306753fb2e0cb6123f31f74b:log:41', 'hash': '0x93d255839ab130a6ebee910a6791e2ffb87986f3306753fb2e0cb6123f31f74b', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x5792f341e773fc58385ef18762d486dc322ef2ec', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:00:10.000Z'}}, {'blockNum': '0x530598', 'uniqueId': '0x2756ba03ed4cfc42720a4802a5df8c27c2f176823b476e4c6c2919d311663d8c:log:16', 'hash': '0x2756ba03ed4cfc42720a4802a5df8c27c2f176823b476e4c6c2919d311663d8c', 'from': '0x4da8c523dade05bd8cb285d56d96b50db80c609c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17843.85294117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x019f75a6cf25', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:05:11.000Z'}}, {'blockNum': '0x5305a9', 'uniqueId': '0x4ddf5ffa807e4d989c2cac4ab648916340d1836071d80401d779d02ee016853c:log:38', 'hash': '0x4ddf5ffa807e4d989c2cac4ab648916340d1836071d80401d779d02ee016853c', 'from': '0x1a5374e6e3f951a65f1df8e61a12e45ebf986a18', 'to': '0xd568aacda28662ef2b4af0fab3998cbbeca914a0', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:09:44.000Z'}}, {'blockNum': '0x5305ad', 'uniqueId': '0xdf0540988d6c49f174e3f731a2cb7c7100e792803bb39a7c84b9255dadecf778:log:9', 'hash': '0xdf0540988d6c49f174e3f731a2cb7c7100e792803bb39a7c84b9255dadecf778', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 8187.552, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xbea19ce400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:10:31.000Z'}}, {'blockNum': '0x5305af', 'uniqueId': '0xa8ce15572cad7c0822c8d963b8bf6c91db2962b09941e892854e252aecc94f51:log:10', 'hash': '0xa8ce15572cad7c0822c8d963b8bf6c91db2962b09941e892854e252aecc94f51', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 27752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x028626cf6800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:11:22.000Z'}}, {'blockNum': '0x5305ba', 'uniqueId': '0xf677ccfbaa0d0f7ed8edb3b9b2aab88036e96a07273ee277a04dbbb8ae969314:log:22', 'hash': '0xf677ccfbaa0d0f7ed8edb3b9b2aab88036e96a07273ee277a04dbbb8ae969314', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6b70469ce21f3ffa5fd6aabcc41e1f4d257c78da', 'value': 2517.425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x3a9d05b4a0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:14:21.000Z'}}, {'blockNum': '0x5305bf', 'uniqueId': '0x1f877869eefc3d2401bbb52bacbf1921308ef57fd6bb9b248e59ad0deab613e7:log:22', 'hash': '0x1f877869eefc3d2401bbb52bacbf1921308ef57fd6bb9b248e59ad0deab613e7', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x028626cf6800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:15:06.000Z'}}, {'blockNum': '0x5305bf', 'uniqueId': '0xcf7451b44756cad32b44cfd6c51ef5150b06c2faf8a0d5b1eafc7525efd7f1a5:log:23', 'hash': '0xcf7451b44756cad32b44cfd6c51ef5150b06c2faf8a0d5b1eafc7525efd7f1a5', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8187.552, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xbea19ce400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:15:06.000Z'}}, {'blockNum': '0x5305d8', 'uniqueId': '0x326157ab6e3d61bbb68837082fb24ee90ffa96cdeecb9da06a1c6f3b5c86ed8a:log:12', 'hash': '0x326157ab6e3d61bbb68837082fb24ee90ffa96cdeecb9da06a1c6f3b5c86ed8a', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6b70469ce21f3ffa5fd6aabcc41e1f4d257c78da', 'value': 624.122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0e880e9840', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:21:28.000Z'}}, {'blockNum': '0x5305e6', 'uniqueId': '0x9713ece832b605e8775146713351886ec11cd3f1fc9c4eb23f3fb8c8bda94d72:log:23', 'hash': '0x9713ece832b605e8775146713351886ec11cd3f1fc9c4eb23f3fb8c8bda94d72', 'from': '0xc70a864739d94670fc456e108d75d0667626bd7b', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x517da02c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:23:56.000Z'}}, {'blockNum': '0x5305e8', 'uniqueId': '0x517ad501c401cda9e69664c968f2e0e6b93b02f00735144b4f44523822d04a8c:log:2', 'hash': '0x517ad501c401cda9e69664c968f2e0e6b93b02f00735144b4f44523822d04a8c', 'from': '0x468ddaddc42979a6fce664b6c3506090a997b791', 'to': '0x05ab638729a4b9f4897a90304f6dcc77aabb368d', 'value': 320, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0773594000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:24:59.000Z'}}, {'blockNum': '0x5305ea', 'uniqueId': '0x89ade5033e667965bd0f57790aae98707698e88cb7b0b068b189c7afb550063f:log:0', 'hash': '0x89ade5033e667965bd0f57790aae98707698e88cb7b0b068b189c7afb550063f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 25702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02566bdba600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:25:35.000Z'}}, {'blockNum': '0x5305f0', 'uniqueId': '0x9a98d04051731a37f4505783929f261e100308d51e59e5b848cfa7763398871c:log:25', 'hash': '0x9a98d04051731a37f4505783929f261e100308d51e59e5b848cfa7763398871c', 'from': '0x13b30bbb556879ba90f8c24e8fe43135958eeb94', 'to': '0x4d5fff7cb7c1c234ec0758ccf0eeacff38a74896', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:27:10.000Z'}}, {'blockNum': '0x5305f1', 'uniqueId': '0xcd03d38159998774a770c6ee9b1f011f3149152ab376a5b87d0bb006340a4d95:log:7', 'hash': '0xcd03d38159998774a770c6ee9b1f011f3149152ab376a5b87d0bb006340a4d95', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xde692f7555911983051624d7c19afba64a4f3000', 'value': 322.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0781a75c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:27:40.000Z'}}, {'blockNum': '0x5305f5', 'uniqueId': '0x52d3210701ada9774e5583414466ab43ab41f82fd8e3580c7a4cc1dec1b470e0:log:30', 'hash': '0x52d3210701ada9774e5583414466ab43ab41f82fd8e3580c7a4cc1dec1b470e0', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x517da02c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:28:42.000Z'}}, {'blockNum': '0x5305f9', 'uniqueId': '0x35c050941bad299b2df709c5aedcdd73b71adb6c7584e0e757638ea07fdd3ed6:log:61', 'hash': '0x35c050941bad299b2df709c5aedcdd73b71adb6c7584e0e757638ea07fdd3ed6', 'from': '0x0910528c2ad9c2309ec8f5eeedd94b9b9e1f0246', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:31:05.000Z'}}, {'blockNum': '0x5305f9', 'uniqueId': '0xa93756a1ed72d7526e0d6c005772febd0ed4ba4e7b30ff2e681ab2b29a91f69b:log:88', 'hash': '0xa93756a1ed72d7526e0d6c005772febd0ed4ba4e7b30ff2e681ab2b29a91f69b', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x6edf2fee7a77a3d984ecf3480ffe8046722f4c4e', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:31:05.000Z'}}, {'blockNum': '0x530605', 'uniqueId': '0x1108e2519aeaea2e06d7f8d6f0694ba32f26ba817687bf2742f25256d70c964b:log:77', 'hash': '0x1108e2519aeaea2e06d7f8d6f0694ba32f26ba817687bf2742f25256d70c964b', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:35:03.000Z'}}, {'blockNum': '0x530605', 'uniqueId': '0x9318bb4e2912095f05a4efd328f105c1d9c4ad32b2c78a75f03f425109d58e11:log:99', 'hash': '0x9318bb4e2912095f05a4efd328f105c1d9c4ad32b2c78a75f03f425109d58e11', 'from': '0x3aa748a0e88aedf75329946978872b359c9f173d', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1d1a94a200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:35:03.000Z'}}, {'blockNum': '0x530606', 'uniqueId': '0x4ee22ae52c4e5ca92ce405dbf60b0284284d2d3b6cd019d69419660dfbcf3067:log:5', 'hash': '0x4ee22ae52c4e5ca92ce405dbf60b0284284d2d3b6cd019d69419660dfbcf3067', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x896b2222b907de1074db67b25f94c1a0f44ff16d', 'value': 7976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xb9b4aa2800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:35:40.000Z'}}, {'blockNum': '0x53060e', 'uniqueId': '0xfa6e0220c2a682e2b54dcacaee6bd47fc407efe38a452fb7a5ee5642aaa363fb:log:37', 'hash': '0xfa6e0220c2a682e2b54dcacaee6bd47fc407efe38a452fb7a5ee5642aaa363fb', 'from': '0xbb1add66f1581fbaf579225479049ab247964337', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:37:45.000Z'}}, {'blockNum': '0x530617', 'uniqueId': '0x50f8db1db86d29603f8fc3e6072d00173ad0afb2b57a6e6e84e1b495145c8b77:log:1', 'hash': '0x50f8db1db86d29603f8fc3e6072d00173ad0afb2b57a6e6e84e1b495145c8b77', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 2750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x400746fe00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:39:24.000Z'}}, {'blockNum': '0x53061d', 'uniqueId': '0x0ba23eeb27681c91fb8c931b9b3fecb47ec435faca34f9e2c8480e0f1fe1e78d:log:0', 'hash': '0x0ba23eeb27681c91fb8c931b9b3fecb47ec435faca34f9e2c8480e0f1fe1e78d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 25661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0255777a9d00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:40:05.000Z'}}, {'blockNum': '0x530632', 'uniqueId': '0x98ef0bf7a9b2f376a47557d50c2e4cd0adbe7ec913972108733bebc073688063:log:32', 'hash': '0x98ef0bf7a9b2f376a47557d50c2e4cd0adbe7ec913972108733bebc073688063', 'from': '0xa5059c532c0ef4416a162d64cba8fd0c9539917e', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:45:02.000Z'}}, {'blockNum': '0x530633', 'uniqueId': '0xdb4ecd220d2c068642e42784476229431661f9e1b8d199b8db9aa3830ebdad1b:log:9', 'hash': '0xdb4ecd220d2c068642e42784476229431661f9e1b8d199b8db9aa3830ebdad1b', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0255777a9d00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:45:11.000Z'}}, {'blockNum': '0x530640', 'uniqueId': '0xc1fd501251e176fab9938d3a65249d70f12c8cf6b12abb6cf5f800cd1f2c1122:log:29', 'hash': '0xc1fd501251e176fab9938d3a65249d70f12c8cf6b12abb6cf5f800cd1f2c1122', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:48:28.000Z'}}, {'blockNum': '0x530641', 'uniqueId': '0x0d6071948a4ca8868e4eb63b7938cc80a531ab50b669a8ce63f2f66d4c06bc33:log:64', 'hash': '0x0d6071948a4ca8868e4eb63b7938cc80a531ab50b669a8ce63f2f66d4c06bc33', 'from': '0xc3ed9410b507fc1fa18323987a5dd3aa1ff5e653', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:48:54.000Z'}}, {'blockNum': '0x53064a', 'uniqueId': '0x2d38b3ac21ecdf3722281ba80e04c009d895b76e2322fbf337c107145d0968a6:log:73', 'hash': '0x2d38b3ac21ecdf3722281ba80e04c009d895b76e2322fbf337c107145d0968a6', 'from': '0x28ad805be2f7a62fb81b38c18d43bc3d4d0baf85', 'to': '0xc8547cf7309353f98d61d578e2f33e99e2d20570', 'value': 5100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x76be5e6c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:50:59.000Z'}}, {'blockNum': '0x530652', 'uniqueId': '0xcdd7080a7555b5c574128dfc9b07e6b9576ae2bc9772d0f4749e8ca8d0d64955:log:8', 'hash': '0xcdd7080a7555b5c574128dfc9b07e6b9576ae2bc9772d0f4749e8ca8d0d64955', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:52:14.000Z'}}, {'blockNum': '0x53065b', 'uniqueId': '0x90650d7d83e40e2e088388c64fdf206d606a9e7234dc137c9781abe99f0eaef8:log:17', 'hash': '0x90650d7d83e40e2e088388c64fdf206d606a9e7234dc137c9781abe99f0eaef8', 'from': '0x65213f13ced54adae7ebcf765981f2984db8db17', 'to': '0x853171bfa0ca45081224cfe4ac1c72fa7153edc0', 'value': 2750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x400746fe00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:54:37.000Z'}}, {'blockNum': '0x530660', 'uniqueId': '0x3098f2695572182646278a3ee1ac5356e63dbcc50d8643111a321c0607ac1b21:log:225', 'hash': '0x3098f2695572182646278a3ee1ac5356e63dbcc50d8643111a321c0607ac1b21', 'from': '0x22c7ebd472fca4da60fbde55ec283349bb1e6b24', 'to': '0x853171bfa0ca45081224cfe4ac1c72fa7153edc0', 'value': 9500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xdd30699c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:55:32.000Z'}}, {'blockNum': '0x530661', 'uniqueId': '0x96400c1b3c0d1e2df41c9dfe0b45e141cd444368ab52f2982971b1be6859361c:log:72', 'hash': '0x96400c1b3c0d1e2df41c9dfe0b45e141cd444368ab52f2982971b1be6859361c', 'from': '0x26bc3a4d6e96c328d2d7479eeed2f8df997f264c', 'to': '0x853171bfa0ca45081224cfe4ac1c72fa7153edc0', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:55:54.000Z'}}, {'blockNum': '0x530662', 'uniqueId': '0x4e945cc920c35a6e417a1948c652aa6d5cd98dcc5b028408fb3719c5b8894e9e:log:62', 'hash': '0x4e945cc920c35a6e417a1948c652aa6d5cd98dcc5b028408fb3719c5b8894e9e', 'from': '0xb3d4aab9d37d67e7d73984eac11d0bc660953d6b', 'to': '0xc8547cf7309353f98d61d578e2f33e99e2d20570', 'value': 5100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x76be5e6c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:56:19.000Z'}}, {'blockNum': '0x530665', 'uniqueId': '0x3c6554080fb1b8f780f87f8e6502fc8eb35f0ba3900e03912e79c82aa7d8fe89:log:6', 'hash': '0x3c6554080fb1b8f780f87f8e6502fc8eb35f0ba3900e03912e79c82aa7d8fe89', 'from': '0xa2a675dd2a30aab0c90a4d7840bb67ec70038c7d', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:57:05.000Z'}}, {'blockNum': '0x53066a', 'uniqueId': '0xdf941b6cb135dc07d9d486f606b646b773027c07e265d83ff4fcf3dff869f7a3:log:23', 'hash': '0xdf941b6cb135dc07d9d486f606b646b773027c07e265d83ff4fcf3dff869f7a3', 'from': '0xf26425556e381fca710d3902064acad107988ab6', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:58:01.000Z'}}, {'blockNum': '0x530674', 'uniqueId': '0x1f4c1afd56db412899f7b0d450331324a444f50808302c40873b9e99bb4a3fa1:log:15', 'hash': '0x1f4c1afd56db412899f7b0d450331324a444f50808302c40873b9e99bb4a3fa1', 'from': '0xef0509e1f538d77af1aa9bae033fbbce928785fa', 'to': '0xc8547cf7309353f98d61d578e2f33e99e2d20570', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:58:47.000Z'}}, {'blockNum': '0x530677', 'uniqueId': '0x9f9ad4866473b850da7c332379c6169550b94e053f8731a38ce7e9df9098fd62:log:10', 'hash': '0x9f9ad4866473b850da7c332379c6169550b94e053f8731a38ce7e9df9098fd62', 'from': '0x2215fa86a03488dde2a21e205fb39731aa464651', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x3a35294400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:59:31.000Z'}}, {'blockNum': '0x530678', 'uniqueId': '0x18f15cc5c72063da13c173886983953579e56e728569794960b0bbf86d996d08:log:36', 'hash': '0x18f15cc5c72063da13c173886983953579e56e728569794960b0bbf86d996d08', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:59:56.000Z'}}, {'blockNum': '0x53067a', 'uniqueId': '0x9e19d1d3cbda99bdb42d50e82189df897942ea34284f7d06fffb8d90bb171079:log:13', 'hash': '0x9e19d1d3cbda99bdb42d50e82189df897942ea34284f7d06fffb8d90bb171079', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x6c234288622d647a35e50156611c134268778f9e', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:00:02.000Z'}}, {'blockNum': '0x530681', 'uniqueId': '0x365fc7b29c27fc4c0dbb7724508c921430c5cb0e93fa6c6063dfe698f3750375:log:9', 'hash': '0x365fc7b29c27fc4c0dbb7724508c921430c5cb0e93fa6c6063dfe698f3750375', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xcdefc9a25c5e811b8fb2e10fa62a1b12315e0ba9', 'value': 2221.316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x33b8133a80', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:01:45.000Z'}}, {'blockNum': '0x530685', 'uniqueId': '0x34ca252a22309fff45f0746a00fa36d5888f38f92b3e5d2f1fcc25df5cad34cb:log:21', 'hash': '0x34ca252a22309fff45f0746a00fa36d5888f38f92b3e5d2f1fcc25df5cad34cb', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x3a35294400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:02:27.000Z'}}, {'blockNum': '0x53068e', 'uniqueId': '0x82ebfefd4b588c12012043dc9fed54501ad8bd7793c0ede11e759d581b793cae:log:15', 'hash': '0x82ebfefd4b588c12012043dc9fed54501ad8bd7793c0ede11e759d581b793cae', 'from': '0x853171bfa0ca45081224cfe4ac1c72fa7153edc0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01402462f600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:05:06.000Z'}}, {'blockNum': '0x530691', 'uniqueId': '0xc609b410409869dd985d50f550a438d85140854896829afc60916fa620b8b1e0:log:18', 'hash': '0xc609b410409869dd985d50f550a438d85140854896829afc60916fa620b8b1e0', 'from': '0x48ca286fa9a6fb3091ded9481acc8bd460575a56', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 6250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x9184e72a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:05:46.000Z'}}, {'blockNum': '0x5306a0', 'uniqueId': '0xa777e1abfc8716d9768e26ba543a673cc4953c8a85a517a4e95c2f5d792c68ff:log:91', 'hash': '0xa777e1abfc8716d9768e26ba543a673cc4953c8a85a517a4e95c2f5d792c68ff', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 6250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x9184e72a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:09:22.000Z'}}, {'blockNum': '0x5306ce', 'uniqueId': '0xb15846066b8e820740a2c95e4794d4d1be84f2eb55963e21b6b67c6698dac034:log:22', 'hash': '0xb15846066b8e820740a2c95e4794d4d1be84f2eb55963e21b6b67c6698dac034', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 26635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x026c24f8ab00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:16:30.000Z'}}, {'blockNum': '0x5306d4', 'uniqueId': '0x4484e4a16347949021ab95e3745b252a849e94c7210ff8044b32d47333ab18da:log:12', 'hash': '0x4484e4a16347949021ab95e3745b252a849e94c7210ff8044b32d47333ab18da', 'from': '0x3784c2e7a28e537fdcdb274286606d5a05147f2e', 'to': '0x0db0b841a07e3265ca57128bd414b22cc9c0878e', 'value': 18686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01b3113d3e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:17:41.000Z'}}, {'blockNum': '0x5306e7', 'uniqueId': '0x4836c00ca70c063b34650ecb313ef4ec8bcf69f02228ab9abda685a0d4d461bc:log:10', 'hash': '0x4836c00ca70c063b34650ecb313ef4ec8bcf69f02228ab9abda685a0d4d461bc', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x24387a6178552ea2df6b39104abeed70525d6374', 'value': 3483904.6342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x013cdbf9d0b660', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:22:53.000Z'}}, {'blockNum': '0x5306e7', 'uniqueId': '0xd029ca520374d7f19f8993770df154992f99689313020f942b0b4fdcf022ee26:log:85', 'hash': '0xd029ca520374d7f19f8993770df154992f99689313020f942b0b4fdcf022ee26', 'from': '0x9281233040b47cafef196b91af8f435b83cb79b4', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1d1a94a200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:22:53.000Z'}}, {'blockNum': '0x5306e9', 'uniqueId': '0xc9119532f197adcfe820fa02a261b479abd7d0b59236abb525e05486ad91e8f7:log:62', 'hash': '0xc9119532f197adcfe820fa02a261b479abd7d0b59236abb525e05486ad91e8f7', 'from': '0x37d9ebc48a0889363960d8a7225a24161d71025f', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:24:05.000Z'}}, {'blockNum': '0x5306e9', 'uniqueId': '0xba95997c42ed6ca055032e8bc271b0e14f86cf4836d8d9cbf3797af431dcb9ec:log:94', 'hash': '0xba95997c42ed6ca055032e8bc271b0e14f86cf4836d8d9cbf3797af431dcb9ec', 'from': '0x9d5dd1d99455ba63fcb786327f3f799aeeeaf4b4', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:24:05.000Z'}}, {'blockNum': '0x5306ee', 'uniqueId': '0x34038d064eb659e993f2d03e77f866b5c0eab866ad5d76334ee014f362f415f5:log:12', 'hash': '0x34038d064eb659e993f2d03e77f866b5c0eab866ad5d76334ee014f362f415f5', 'from': '0xa8d60f69ef434dded322e0d7ea9b642081e867a2', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:25:12.000Z'}}, {'blockNum': '0x5306f2', 'uniqueId': '0x47fd5700c28135e7302f4603e976bda578e7ea85940217b7d007026f60213efc:log:49', 'hash': '0x47fd5700c28135e7302f4603e976bda578e7ea85940217b7d007026f60213efc', 'from': '0xc9cb275697917a347df6612e67c9cea7bef0c338', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x3a35294400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:26:04.000Z'}}, {'blockNum': '0x5306f5', 'uniqueId': '0xcce445bf13e25cbd722dce4b6652a4833270b1ffb8f3be9bbbb19a497c358d3f:log:11', 'hash': '0xcce445bf13e25cbd722dce4b6652a4833270b1ffb8f3be9bbbb19a497c358d3f', 'from': '0x88634ad8e4f5436f8c72deb6b4b7e193d75bc5e0', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:26:17.000Z'}}, {'blockNum': '0x5306f7', 'uniqueId': '0x478c3ad3c82224f292309b4efc7d315610a633a64b9ccf5ba0420d4be1d426ac:log:58', 'hash': '0x478c3ad3c82224f292309b4efc7d315610a633a64b9ccf5ba0420d4be1d426ac', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 9750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe302875600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:26:57.000Z'}}, {'blockNum': '0x5306f7', 'uniqueId': '0x3712a62ee74934643c73a10db575c7148ba07a486d180f51dafc056b4fc65179:log:78', 'hash': '0x3712a62ee74934643c73a10db575c7148ba07a486d180f51dafc056b4fc65179', 'from': '0x3deb6d634d3436b3be4a67653457ef5593ad8140', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1d1a94a200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:26:57.000Z'}}, {'blockNum': '0x5306fb', 'uniqueId': '0x2cb32b800a60e1c8078c578cb67a6825d2ffef812dab417a0f8a9a98dbcf5310:log:27', 'hash': '0x2cb32b800a60e1c8078c578cb67a6825d2ffef812dab417a0f8a9a98dbcf5310', 'from': '0x8fd16cece5052937ec945c3cd374c5d6019c8e4d', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:27:55.000Z'}}, {'blockNum': '0x530701', 'uniqueId': '0xb5ffad434399b91e8330e7bd4030aa5b11d25b85b3b6a341a29fb0b65bd83f8c:log:12', 'hash': '0xb5ffad434399b91e8330e7bd4030aa5b11d25b85b3b6a341a29fb0b65bd83f8c', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 2750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x400746fe00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:28:29.000Z'}}, {'blockNum': '0x530701', 'uniqueId': '0x7afa7a50c86ae10f39fd033d64eb8bbba60d1370bc10932844b147a28e120918:log:19', 'hash': '0x7afa7a50c86ae10f39fd033d64eb8bbba60d1370bc10932844b147a28e120918', 'from': '0x16c1752cf3e25244252b8c0a95fddfdfd205b7d9', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1d1a94a200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:28:29.000Z'}}, {'blockNum': '0x53070b', 'uniqueId': '0x5cda35e6e241de1d814ff9a055f2ea8ff836e886551bd7ab81cd27155179af8c:log:62', 'hash': '0x5cda35e6e241de1d814ff9a055f2ea8ff836e886551bd7ab81cd27155179af8c', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xb9bb6f022a0287e966cb9573dee4bf52e8934dbe', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:30:10.000Z'}}, {'blockNum': '0x530722', 'uniqueId': '0x95f392b53a71b16c225a9c7b22b51fec7fb7e9d7cfb99515a5508c7394ed9b76:log:91', 'hash': '0x95f392b53a71b16c225a9c7b22b51fec7fb7e9d7cfb99515a5508c7394ed9b76', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x4dccf211c7f549d8607a23d39246f571429f6168', 'value': 23574.24377217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0224e1714d81', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:35:21.000Z'}}, {'blockNum': '0x530726', 'uniqueId': '0x258ff0c4db2cb9494b697ade2e882bbaf77b95a25bfe92dbdaeb6c97746202e0:log:87', 'hash': '0x258ff0c4db2cb9494b697ade2e882bbaf77b95a25bfe92dbdaeb6c97746202e0', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 20471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01dca0ab1700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:36:40.000Z'}}, {'blockNum': '0x530727', 'uniqueId': '0x3724ab623f2d5ac9971b37a7c816bb394a43e32b63597f9f24137f10881060bb:log:7', 'hash': '0x3724ab623f2d5ac9971b37a7c816bb394a43e32b63597f9f24137f10881060bb', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 2606.68285029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x3cb10a6065', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:36:49.000Z'}}, {'blockNum': '0x53072d', 'uniqueId': '0xcd5af44f7ad5ec8006c753393f60f26da393853c56714b885c74f08cbadf6cf6:log:8', 'hash': '0xcd5af44f7ad5ec8006c753393f60f26da393853c56714b885c74f08cbadf6cf6', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 27656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0283ea9b0800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:38:08.000Z'}}, {'blockNum': '0x53073f', 'uniqueId': '0xc66a8d9e48dfa9616ae2a4d7a79fb746ca2638f175721be86e782e7cd262e5b0:log:46', 'hash': '0xc66a8d9e48dfa9616ae2a4d7a79fb746ca2638f175721be86e782e7cd262e5b0', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 624.15131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0e883b5178', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:43:01.000Z'}}, {'blockNum': '0x530744', 'uniqueId': '0x15277ab658092fbea8398d0809dadadea82d004b796e3d38de6b1e16c507577c:log:17', 'hash': '0x15277ab658092fbea8398d0809dadadea82d004b796e3d38de6b1e16c507577c', 'from': '0xa9605dbf76418b25595563b8686b5dc6305e1d73', 'to': '0x4de3c2abf26cda3ed2a7af4cffdf93af56c94445', 'value': 9838.0907185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe50f971aea', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:44:29.000Z'}}, {'blockNum': '0x530747', 'uniqueId': '0x29a360a70309f4f18781131b5da1869d84ad42e9f5089ed7190c15930e2fd92c:log:41', 'hash': '0x29a360a70309f4f18781131b5da1869d84ad42e9f5089ed7190c15930e2fd92c', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0283ea9b0800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:45:20.000Z'}}, {'blockNum': '0x53074b', 'uniqueId': '0xc66594e9b1999aebc3122db1e252e0a009c3103933800584737b4214717de5b3:log:9', 'hash': '0xc66594e9b1999aebc3122db1e252e0a009c3103933800584737b4214717de5b3', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 39980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03a2db5eac00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:46:16.000Z'}}, {'blockNum': '0x53075d', 'uniqueId': '0xe6a9f5379fa77f344aab1b2ae5551948d86224bf83c600ebd561944616448a2b:log:30', 'hash': '0xe6a9f5379fa77f344aab1b2ae5551948d86224bf83c600ebd561944616448a2b', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0xf2dedf5b856ec65964f5bb0dd233acd2353ebd86', 'value': 31.35445919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xbae31b9f', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:50:41.000Z'}}, {'blockNum': '0x530769', 'uniqueId': '0x923bb8f360be6da78b45b567a5676d39d03d91913775ca34a6fe678bf8b644ae:log:4', 'hash': '0x923bb8f360be6da78b45b567a5676d39d03d91913775ca34a6fe678bf8b644ae', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 27401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x027dfaafe900', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:52:33.000Z'}}, {'blockNum': '0x530774', 'uniqueId': '0xea758170124370c35960992ff6f253201004e74e69c28c2060e05efb7e0345c3:log:41', 'hash': '0xea758170124370c35960992ff6f253201004e74e69c28c2060e05efb7e0345c3', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'value': 14145.37952911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x014959083e8f', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:54:21.000Z'}}, {'blockNum': '0x530777', 'uniqueId': '0x2f1d1a668cd43395c396567f0f3207ac1f6d8806e3628ed99ad19b6c6cadfe13:log:0', 'hash': '0x2f1d1a668cd43395c396567f0f3207ac1f6d8806e3628ed99ad19b6c6cadfe13', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 2050.35748422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2fbd153c46', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:54:40.000Z'}}, {'blockNum': '0x53077a', 'uniqueId': '0x247e4975c0f501c87753457327b79c8eaf48360f9c9f3f1061ead597e3a9dd8c:log:19', 'hash': '0x247e4975c0f501c87753457327b79c8eaf48360f9c9f3f1061ead597e3a9dd8c', 'from': '0x4dccf211c7f549d8607a23d39246f571429f6168', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23574.24377217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0224e1714d81', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:55:01.000Z'}}, {'blockNum': '0x53077a', 'uniqueId': '0x3c0a7aef9aa914b438c6135a7c72afd459d8617d9c8f9d5c99b6c6b648662df3:log:35', 'hash': '0x3c0a7aef9aa914b438c6135a7c72afd459d8617d9c8f9d5c99b6c6b648662df3', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 39980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03a2db5eac00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:55:01.000Z'}}, {'blockNum': '0x53077a', 'uniqueId': '0xc32e291dacadcaa3eb44f37d9668821f62e4a150c38c8094e6c7315b15f642fa:log:36', 'hash': '0xc32e291dacadcaa3eb44f37d9668821f62e4a150c38c8094e6c7315b15f642fa', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x027dfaafe900', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:55:01.000Z'}}, {'blockNum': '0x53077a', 'uniqueId': '0xed05635f061d25212d7e566a4a2af1e8a81a71041d35d8b51fd93a1cd4493cae:log:37', 'hash': '0xed05635f061d25212d7e566a4a2af1e8a81a71041d35d8b51fd93a1cd4493cae', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01dca0ab1700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:55:01.000Z'}}, {'blockNum': '0x53077a', 'uniqueId': '0x1b6a9121131e731746215b529b8e5679e260ec3236912df3e914d49783e80b8c:log:41', 'hash': '0x1b6a9121131e731746215b529b8e5679e260ec3236912df3e914d49783e80b8c', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0xf2dedf5b856ec65964f5bb0dd233acd2353ebd86', 'value': 78.36914875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01d31dd4bb', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:55:01.000Z'}}, {'blockNum': '0x530782', 'uniqueId': '0x51865c0a9c09390f56424218a3b846b2a325c8f7961ae6e28393aa4c2c476af2:log:22', 'hash': '0x51865c0a9c09390f56424218a3b846b2a325c8f7961ae6e28393aa4c2c476af2', 'from': '0x93c2fa852ebded94bccc534373f23b79d5c013d3', 'to': '0x08c39cdfaf624878a5cc3ffec437be0f0d5b59e3', 'value': 1914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2c90543a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:56:57.000Z'}}, {'blockNum': '0x53078e', 'uniqueId': '0xf32d7e958773c53d4fb5d14c6c042d23c69c87ac4be98eed3b0e65dd9ae307bd:log:15', 'hash': '0xf32d7e958773c53d4fb5d14c6c042d23c69c87ac4be98eed3b0e65dd9ae307bd', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xcfef471878edc247692a952553f14965f78f83fd', 'value': 35391.8397398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x033807cdb65c', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:00:00.000Z'}}, {'blockNum': '0x53078e', 'uniqueId': '0x39fe76d3281240785e2e1062a292c935a4211d11376022c345f138808cbc75e7:log:27', 'hash': '0x39fe76d3281240785e2e1062a292c935a4211d11376022c345f138808cbc75e7', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x79d5ee4ad589e9875e9950f68bd42f855c9cfedc', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:00:00.000Z'}}, {'blockNum': '0x530790', 'uniqueId': '0x14b95de3bb938346ac44b171463f57d0a54ec0b7112fe9daf46c8082de242c45:log:14', 'hash': '0x14b95de3bb938346ac44b171463f57d0a54ec0b7112fe9daf46c8082de242c45', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 38873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03891522b900', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:02:09.000Z'}}, {'blockNum': '0x530790', 'uniqueId': '0xcad590a8f25387141e6af8583dcf747d87cdf9e1897b205db2e695d1cb7c9462:log:17', 'hash': '0xcad590a8f25387141e6af8583dcf747d87cdf9e1897b205db2e695d1cb7c9462', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0xf2dedf5b856ec65964f5bb0dd233acd2353ebd86', 'value': 186.09423864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x04553545f8', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:02:09.000Z'}}, {'blockNum': '0x530799', 'uniqueId': '0x85a25453473d648ef5fffdd515464519c90cb886eba93161c36276da83abfcf3:log:70', 'hash': '0x85a25453473d648ef5fffdd515464519c90cb886eba93161c36276da83abfcf3', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 16405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x017df56b7500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:04:17.000Z'}}, {'blockNum': '0x530799', 'uniqueId': '0x11672abc27bff4ffcb3f5a0622604ea7be0f9cde69f6873d211f38158eb1b9bc:log:72', 'hash': '0x11672abc27bff4ffcb3f5a0622604ea7be0f9cde69f6873d211f38158eb1b9bc', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 18136.36833513, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01a6452de0e9', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:04:17.000Z'}}, {'blockNum': '0x53079b', 'uniqueId': '0xeefc362d17bb24e370e467e80712b5d33004ec609e035c8f308a9a9b12a28b6a:log:29', 'hash': '0xeefc362d17bb24e370e467e80712b5d33004ec609e035c8f308a9a9b12a28b6a', 'from': '0x4de3c2abf26cda3ed2a7af4cffdf93af56c94445', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9838.0907185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe50f971aea', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:05:15.000Z'}}, {'blockNum': '0x53079b', 'uniqueId': '0x13ea93eb764f7dfb939b1e8182236bf8ebaef60e487915b6babd4279b13ff2a1:log:30', 'hash': '0x13ea93eb764f7dfb939b1e8182236bf8ebaef60e487915b6babd4279b13ff2a1', 'from': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14145.37952911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x014959083e8f', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:05:15.000Z'}}, {'blockNum': '0x53079b', 'uniqueId': '0xda1f624266d2aa6b4c60d6604d87b577d79b30361e721b204dfffaadbb5c35f7:log:31', 'hash': '0xda1f624266d2aa6b4c60d6604d87b577d79b30361e721b204dfffaadbb5c35f7', 'from': '0xcfef471878edc247692a952553f14965f78f83fd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35391.8397398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x033807cdb65c', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:05:15.000Z'}}, {'blockNum': '0x5307a0', 'uniqueId': '0xba0477774e56f39b37d2242ac8cb275dc587c091a582035c44e77732d6b43f15:log:3', 'hash': '0xba0477774e56f39b37d2242ac8cb275dc587c091a582035c44e77732d6b43f15', 'from': '0x998fc33ab8ef2946b47b7f3dfb416411a77e50a2', 'to': '0xfbd01ccdcce4d50fb591c756298167ace1f41229', 'value': 2622.65299966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x3d103ae3fe', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:06:57.000Z'}}, {'blockNum': '0x5307a0', 'uniqueId': '0x08c8629493ad5ce82d62e3735aa1a6fba43bc385fd4958bfaeb98a64d1bbbe51:log:37', 'hash': '0x08c8629493ad5ce82d62e3735aa1a6fba43bc385fd4958bfaeb98a64d1bbbe51', 'from': '0xf31d3b550213f4650627033315fde4d14f13abc0', 'to': '0x162f3a371988508ebf3336010cd278480828886b', 'value': 2375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x374c1a6700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:06:57.000Z'}}, {'blockNum': '0x5307a5', 'uniqueId': '0xc5b94b058c87a76d56f7d115c10d9069b5cc1232aae9c436d00c5e3fb48229c7:log:6', 'hash': '0xc5b94b058c87a76d56f7d115c10d9069b5cc1232aae9c436d00c5e3fb48229c7', 'from': '0xd69e09451ca8ae1d65e237c61c0418ea6d33df86', 'to': '0x162f3a371988508ebf3336010cd278480828886b', 'value': 136.009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x032aad43a0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:09:00.000Z'}}, {'blockNum': '0x5307a5', 'uniqueId': '0xdde5a5f89aca6e2005aa7a76e1be68038116f007da8284afde5b3931573c53f9:log:12', 'hash': '0xdde5a5f89aca6e2005aa7a76e1be68038116f007da8284afde5b3931573c53f9', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 7733.848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xb411538700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:09:00.000Z'}}, {'blockNum': '0x5307a5', 'uniqueId': '0x63cbd265ed5327fc4455de502641dbd39d58760d7e5b43e4946baca4423fe68d:log:18', 'hash': '0x63cbd265ed5327fc4455de502641dbd39d58760d7e5b43e4946baca4423fe68d', 'from': '0x68676c071e4b63d496293d0ee288b8e34a0b70ab', 'to': '0x5ef6ca64cf204a3c1ba708fe342d27e266a8fb03', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:09:00.000Z'}}, {'blockNum': '0x5307a5', 'uniqueId': '0x33f20eec8b7fa84bd4f4fa320d8b8068467b79a35c3dd939f6532feb9bb8e82d:log:97', 'hash': '0x33f20eec8b7fa84bd4f4fa320d8b8068467b79a35c3dd939f6532feb9bb8e82d', 'from': '0x88ce9d2dd1c6f6bf616a11af9235d3ba76cf1438', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:09:00.000Z'}}, {'blockNum': '0x5307a5', 'uniqueId': '0x8eb44ea7470acb637e814793de05add34c68821399756ec7544265c9a70d7982:log:100', 'hash': '0x8eb44ea7470acb637e814793de05add34c68821399756ec7544265c9a70d7982', 'from': '0x65bf8d929b0c8353505b41edc8495d7f211af7b5', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:09:00.000Z'}}, {'blockNum': '0x5307a8', 'uniqueId': '0xf2b90e0c26cab6e4a665d88e826b16b8fb3a21f344b64af25cd2cd9b13318d70:log:7', 'hash': '0xf2b90e0c26cab6e4a665d88e826b16b8fb3a21f344b64af25cd2cd9b13318d70', 'from': '0x888e946a0707f1e58f3f936bb9e2a0ec0aa18236', 'to': '0x162f3a371988508ebf3336010cd278480828886b', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:09:54.000Z'}}, {'blockNum': '0x5307a8', 'uniqueId': '0x17cde1b1cf8481926722f001dfc8d3d28f8c510f3e586edad2491a043cbb53aa:log:72', 'hash': '0x17cde1b1cf8481926722f001dfc8d3d28f8c510f3e586edad2491a043cbb53aa', 'from': '0x103987020709aba881e921011eceed821c4c783b', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:09:54.000Z'}}, {'blockNum': '0x5307aa', 'uniqueId': '0x5afb0f8a3d5ee3812fc60a8a5f5007d9b490a5ebab217bdf4c470b5c527837b7:log:24', 'hash': '0x5afb0f8a3d5ee3812fc60a8a5f5007d9b490a5ebab217bdf4c470b5c527837b7', 'from': '0xb9fe09a3f4adb0604123caebd6d7013d1939da61', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x3a35294400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:10:23.000Z'}}, {'blockNum': '0x5307ab', 'uniqueId': '0xf2296270201be5d8ee120f35b8f4e632e98fe4408279ab74f8640087d9055c76:log:0', 'hash': '0xf2296270201be5d8ee120f35b8f4e632e98fe4408279ab74f8640087d9055c76', 'from': '0x383b52dbd856a4370969c7b79f436407e2d05c18', 'to': '0x7c9ce2747aca0b13ff0beeee97ce3e3d65b9e0c3', 'value': 506.1769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0bc90ca790', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:10:27.000Z'}}, {'blockNum': '0x5307ad', 'uniqueId': '0x84bc0b5aef8c26eac13e2239229eac1c679aed63daf746353b40f33292aa1df1:log:9', 'hash': '0x84bc0b5aef8c26eac13e2239229eac1c679aed63daf746353b40f33292aa1df1', 'from': '0xe69e7d52c133f1fe56fe80613cb158037c509254', 'to': '0x5ef6ca64cf204a3c1ba708fe342d27e266a8fb03', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:10:48.000Z'}}, {'blockNum': '0x5307b2', 'uniqueId': '0x1cb895a9ee91becc68cf919816958adb641ec29cf5d6649fbe7ca25d048b3950:log:12', 'hash': '0x1cb895a9ee91becc68cf919816958adb641ec29cf5d6649fbe7ca25d048b3950', 'from': '0x9426c84f79f8638acca04082dc23651f61830783', 'to': '0x5ef6ca64cf204a3c1ba708fe342d27e266a8fb03', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:11:40.000Z'}}, {'blockNum': '0x5307b2', 'uniqueId': '0xa47c0a361e8dd26face48796facde2400979a9e56bc4fd8ddb0c60cda52536af:log:94', 'hash': '0xa47c0a361e8dd26face48796facde2400979a9e56bc4fd8ddb0c60cda52536af', 'from': '0xf877ebb29085ed4690f7b190b883572d946b90a4', 'to': '0x5ef6ca64cf204a3c1ba708fe342d27e266a8fb03', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:11:40.000Z'}}, {'blockNum': '0x5307b3', 'uniqueId': '0x764aedc43dabb61c396a9508842a2c0ea9b5e5cfe55aa4f73e323d475c73a0c8:log:1', 'hash': '0x764aedc43dabb61c396a9508842a2c0ea9b5e5cfe55aa4f73e323d475c73a0c8', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 8250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xc015d4fa00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:11:56.000Z'}}, {'blockNum': '0x5307b5', 'uniqueId': '0xf0a5e48d7c0b8cf8c3ff4b97b792d99ffcc41c771831b9a6b73b76cad7c230e5:log:26', 'hash': '0xf0a5e48d7c0b8cf8c3ff4b97b792d99ffcc41c771831b9a6b73b76cad7c230e5', 'from': '0x3e109ff9e1bca683f3ce7296c141983004876e37', 'to': '0x5ef6ca64cf204a3c1ba708fe342d27e266a8fb03', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:12:26.000Z'}}, {'blockNum': '0x5307b6', 'uniqueId': '0xd95af3ee635b6ef5014fe90b53033c83535e858d2461ac695fa18786e19049d1:log:7', 'hash': '0xd95af3ee635b6ef5014fe90b53033c83535e858d2461ac695fa18786e19049d1', 'from': '0x960084b2f3dd53b5281cb8e56dca910a97915010', 'to': '0x5ef6ca64cf204a3c1ba708fe342d27e266a8fb03', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:12:39.000Z'}}, {'blockNum': '0x5307b8', 'uniqueId': '0x7a873d52d44b88b0d4d343a90e78d049beeb11017c0c90f0e0f0cad55e46ed33:log:15', 'hash': '0x7a873d52d44b88b0d4d343a90e78d049beeb11017c0c90f0e0f0cad55e46ed33', 'from': '0x0f3f53945129abea28aa1969a179f8405cc2cded', 'to': '0x5ef6ca64cf204a3c1ba708fe342d27e266a8fb03', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:13:25.000Z'}}, {'blockNum': '0x5307b9', 'uniqueId': '0xe9167dc3f9ad66bf088abc262808c1dc9b252a2d53b9829492d9efd113e346bf:log:12', 'hash': '0xe9167dc3f9ad66bf088abc262808c1dc9b252a2d53b9829492d9efd113e346bf', 'from': '0xe3a02700606ae8e1fcf6d02c2bc7f850350360a9', 'to': '0x4c7fbe2e66da7574cb0a952d0e0c8a9e65ab5526', 'value': 438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0a32aef600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:14:07.000Z'}}, {'blockNum': '0x5307b9', 'uniqueId': '0x1ffa6b824d4e3739d16c6989e7c768d282a59f27a376f0e5e797ead44efec867:log:13', 'hash': '0x1ffa6b824d4e3739d16c6989e7c768d282a59f27a376f0e5e797ead44efec867', 'from': '0x489a8830cbae3b5f712942d0350ca0ca178e1b7d', 'to': '0xd84e861b3cf19000e64a3a69b1561b3d2405e4de', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:14:07.000Z'}}, {'blockNum': '0x5307bc', 'uniqueId': '0xa0e3652be03e1e8c37aa2ec7eae8afaa81fe65be1bf0273fa4626e1244d34c4e:log:8', 'hash': '0xa0e3652be03e1e8c37aa2ec7eae8afaa81fe65be1bf0273fa4626e1244d34c4e', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x0b419bce1cb87adea84a913fa903593fb68d33b1', 'value': 753.67734878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x118c445e5e', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:14:46.000Z'}}, {'blockNum': '0x5307bd', 'uniqueId': '0x786fcee55d475e5ad4d392a2c0821303601dc6e2089541a7d0bb03c7e15a2a13:log:38', 'hash': '0x786fcee55d475e5ad4d392a2c0821303601dc6e2089541a7d0bb03c7e15a2a13', 'from': '0xfbd01ccdcce4d50fb591c756298167ace1f41229', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5622.65299966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x82e99f9bfe', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:15:22.000Z'}}, {'blockNum': '0x5307bd', 'uniqueId': '0x95d77180b07f124a7e227d638f85d88484dcf2a2e0f265634cc4ea9addc2fbdc:log:39', 'hash': '0x95d77180b07f124a7e227d638f85d88484dcf2a2e0f265634cc4ea9addc2fbdc', 'from': '0x5ef6ca64cf204a3c1ba708fe342d27e266a8fb03', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x032ee841b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:15:22.000Z'}}, {'blockNum': '0x5307bd', 'uniqueId': '0x9dfc6ec9e2e43032efb2080ea6057b228dc35233276bc4436e2f7db0512dd5ce:log:40', 'hash': '0x9dfc6ec9e2e43032efb2080ea6057b228dc35233276bc4436e2f7db0512dd5ce', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18760.51964513, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01b4cd693261', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:15:22.000Z'}}, {'blockNum': '0x5307bd', 'uniqueId': '0x244477085c94c4e8211365c51d8ab880a1f2bc39ae46c2811338530d900ce2c5:log:41', 'hash': '0x244477085c94c4e8211365c51d8ab880a1f2bc39ae46c2811338530d900ce2c5', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7733.848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xb411538700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:15:22.000Z'}}, {'blockNum': '0x5307bd', 'uniqueId': '0xd363183ea8ea95100e7e4d676061f68b57a3a6c22e95ffcd7f022765512b6726:log:43', 'hash': '0xd363183ea8ea95100e7e4d676061f68b57a3a6c22e95ffcd7f022765512b6726', 'from': '0x162f3a371988508ebf3336010cd278480828886b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9011.009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xd1cdcc8ea0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:15:22.000Z'}}, {'blockNum': '0x5307bd', 'uniqueId': '0xc28a0c6b61c00bc47e1047e3e78cb5b75b30d36b5aee5268e16e46696cba1df9:log:44', 'hash': '0xc28a0c6b61c00bc47e1047e3e78cb5b75b30d36b5aee5268e16e46696cba1df9', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x017df56b7500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:15:22.000Z'}}, {'blockNum': '0x5307bd', 'uniqueId': '0x9c52e498b2642305b162e37844585c35ce15d7a1955f8b0b5cfb2e18b77cb7ab:log:117', 'hash': '0x9c52e498b2642305b162e37844585c35ce15d7a1955f8b0b5cfb2e18b77cb7ab', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfa494915700050201e283533bf2ba7a690a17b3e', 'value': 20423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01db8290e700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:15:22.000Z'}}, {'blockNum': '0x5307c9', 'uniqueId': '0x63fecd8d2f4ee2a343b55d4913d2a5b9af557a5c9d08c8f9fe9533d8f6460f0b:log:34', 'hash': '0x63fecd8d2f4ee2a343b55d4913d2a5b9af557a5c9d08c8f9fe9533d8f6460f0b', 'from': '0x0b419bce1cb87adea84a913fa903593fb68d33b1', 'to': '0x49a3e55eff6df39ac3d95de2ccbe3719d1be00b5', 'value': 1113.09758131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x19ea941eb3', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:17:14.000Z'}}, {'blockNum': '0x5307cc', 'uniqueId': '0x5ce41319dfbd13f4ae7e8f1f4e5a19cf90238b303bf720ff413d059c05fe0059:log:22', 'hash': '0x5ce41319dfbd13f4ae7e8f1f4e5a19cf90238b303bf720ff413d059c05fe0059', 'from': '0x6449bf204e8b0adbe3b5e2d38cb7803b93ed5155', 'to': '0x5ef6ca64cf204a3c1ba708fe342d27e266a8fb03', 'value': 6500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x975704e400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:18:34.000Z'}}, {'blockNum': '0x5307cf', 'uniqueId': '0x083b775aab6f5a3096e6a87c872c1a1f31ecda32ef32e015bc04ef15b135783e:log:18', 'hash': '0x083b775aab6f5a3096e6a87c872c1a1f31ecda32ef32e015bc04ef15b135783e', 'from': '0x540c44016ddcc48389d12a96d2a46beb7643399e', 'to': '0x5ef6ca64cf204a3c1ba708fe342d27e266a8fb03', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:19:47.000Z'}}, {'blockNum': '0x5307d3', 'uniqueId': '0xa609432d85bbdf2696d6b05420ad17259997d7cb6618660c6711f82ffecd222c:log:47', 'hash': '0xa609432d85bbdf2696d6b05420ad17259997d7cb6618660c6711f82ffecd222c', 'from': '0x624b12753245ebefbccc422e30439284fd8d0d11', 'to': '0xbde92f6c6d64539401f866d1e9834a9c0f551796', 'value': 774.00672845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1205708a4d', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:23:05.000Z'}}, {'blockNum': '0x5307d3', 'uniqueId': '0x1cb051ba58c3b1a842d7df3311656dc81d5aa0fae9497ce3d7d9ac36fd7a831f:log:57', 'hash': '0x1cb051ba58c3b1a842d7df3311656dc81d5aa0fae9497ce3d7d9ac36fd7a831f', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 33951, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03167bbabf00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:23:05.000Z'}}, {'blockNum': '0x5307d8', 'uniqueId': '0xdab88777fb37693956747d9077c11999c510865ce12e6c097e1e58034fde6151:log:13', 'hash': '0xdab88777fb37693956747d9077c11999c510865ce12e6c097e1e58034fde6151', 'from': '0x5ef6ca64cf204a3c1ba708fe342d27e266a8fb03', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x010bc1576c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:25:08.000Z'}}, {'blockNum': '0x5307e4', 'uniqueId': '0x60d83528b4d127a53d7dbbead31605b53a11825e397605033b29648656cfb1fd:log:24', 'hash': '0x60d83528b4d127a53d7dbbead31605b53a11825e397605033b29648656cfb1fd', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xc151e05ca78c506a07851052c62917b656687ad8', 'value': 15634.90245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x016c0747d988', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:27:44.000Z'}}, {'blockNum': '0x5307e9', 'uniqueId': '0x5b09b040bfef80f6b23ab7fdcf28342b580ac169c798cbf35518040442bf5c6b:log:19', 'hash': '0x5b09b040bfef80f6b23ab7fdcf28342b580ac169c798cbf35518040442bf5c6b', 'from': '0xa55ad2045cb0c9bc58ce1357c67915e1f6d83481', 'to': '0x043871e674aa1eb2c8dfdda50d28d04c1309b12a', 'value': 3270, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x4c22b80600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:28:46.000Z'}}, {'blockNum': '0x5307ed', 'uniqueId': '0x6efa412df6f1c6f437c6724c0786099097a1eed6eed8b807b548b48ace7325ad:log:32', 'hash': '0x6efa412df6f1c6f437c6724c0786099097a1eed6eed8b807b548b48ace7325ad', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x2343a3d6ad08b8025dc5540d834326289cee9891', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:30:06.000Z'}}, {'blockNum': '0x5307f4', 'uniqueId': '0x7bebdf27692ed8d73d78061eaa19049ff8391f9df1ad18192eaf11e5164c8793:log:17', 'hash': '0x7bebdf27692ed8d73d78061eaa19049ff8391f9df1ad18192eaf11e5164c8793', 'from': '0xbb32f96fc504c01e3168d168cf31d2806e8aace3', 'to': '0xdc8fe351d0e6efbe14483edd732afd82fe6f0861', 'value': 2818.72565467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x41a0ea04db', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:32:24.000Z'}}, {'blockNum': '0x5307f8', 'uniqueId': '0xee9fdda8dd4ba4b1a4d3692acd48c258b1ea0cc4ad74aa03b10019f095949095:log:3', 'hash': '0xee9fdda8dd4ba4b1a4d3692acd48c258b1ea0cc4ad74aa03b10019f095949095', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf1bb7ab2b554dabf89ec8691183890ca61f49129', 'value': 3964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x5c4b47fc00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:33:17.000Z'}}, {'blockNum': '0x5307f9', 'uniqueId': '0x60e925e0cd36933d109c533fb6d2e30b093f1587a2313aed1eca097d6d5d4e31:log:7', 'hash': '0x60e925e0cd36933d109c533fb6d2e30b093f1587a2313aed1eca097d6d5d4e31', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xc151e05ca78c506a07851052c62917b656687ad8', 'value': 5893.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x8935e946c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:33:27.000Z'}}, {'blockNum': '0x530803', 'uniqueId': '0x9bc51627a5a610f2609d1630dd70bb69f44b7c5c4c93d841b9b4f392586b33ee:log:39', 'hash': '0x9bc51627a5a610f2609d1630dd70bb69f44b7c5c4c93d841b9b4f392586b33ee', 'from': '0xc151e05ca78c506a07851052c62917b656687ad8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21528.05245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01f53d312048', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:35:44.000Z'}}, {'blockNum': '0x530803', 'uniqueId': '0xc7b01fdfd3b0482a02a14d4ac284635db6cd1faa6f60e10635215b1b0d7122ba:log:40', 'hash': '0xc7b01fdfd3b0482a02a14d4ac284635db6cd1faa6f60e10635215b1b0d7122ba', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33951, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03167bbabf00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:35:44.000Z'}}, {'blockNum': '0x530804', 'uniqueId': '0xd6505f513e8d1bb9cb975798f50138a448eab8b5ddb6be9d05bc2bc693a28e78:log:36', 'hash': '0xd6505f513e8d1bb9cb975798f50138a448eab8b5ddb6be9d05bc2bc693a28e78', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 27159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x027858413700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:36:10.000Z'}}, {'blockNum': '0x530804', 'uniqueId': '0x960e9d93ae9e7ac2de1318eb54d693957d597092954db1bdf874a81ad01dd3a5:log:54', 'hash': '0x960e9d93ae9e7ac2de1318eb54d693957d597092954db1bdf874a81ad01dd3a5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfa494915700050201e283533bf2ba7a690a17b3e', 'value': 20398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01daed8dee00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:36:10.000Z'}}, {'blockNum': '0x530805', 'uniqueId': '0x833ae3bd1ba71a99fd5efce558439f5a8a0280bced7a491bf876048463d56d0f:log:8', 'hash': '0x833ae3bd1ba71a99fd5efce558439f5a8a0280bced7a491bf876048463d56d0f', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 7991.424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xba10995000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:36:16.000Z'}}, {'blockNum': '0x530807', 'uniqueId': '0x941b21a224355a6c75dffd432837e7c108e08dbe94e6cb510919072ebe49ec2f:log:55', 'hash': '0x941b21a224355a6c75dffd432837e7c108e08dbe94e6cb510919072ebe49ec2f', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 3370.20579713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x4e77fdef81', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:36:41.000Z'}}, {'blockNum': '0x53081a', 'uniqueId': '0x575f43a2da298a31cfa5256240f44f1f3ab5104f4455da66ac4213e7e2828469:log:7', 'hash': '0x575f43a2da298a31cfa5256240f44f1f3ab5104f4455da66ac4213e7e2828469', 'from': '0x7df74150e13fc2362d3b2ea582ed70a744cc2d44', 'to': '0x2cb387e94dde52e59f704f7fc23570ce37f53c10', 'value': 5098.838, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x76b77159c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:40:22.000Z'}}, {'blockNum': '0x53081b', 'uniqueId': '0xdbe4ec172fb5c466b2593a39fd99fabd6c0f837713c1b349c914002064e3402d:log:5', 'hash': '0xdbe4ec172fb5c466b2593a39fd99fabd6c0f837713c1b349c914002064e3402d', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0xfb1bc9f77fa140cfe97fa48dd9bf263a46ae3ebe', 'value': 5974.5071269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x8b1ad66672', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:41:08.000Z'}}, {'blockNum': '0x53081d', 'uniqueId': '0xf8d7b0c84cfbfceab657ab696a2a283cfffb6a6538149015236d6a9427c4a592:log:36', 'hash': '0xf8d7b0c84cfbfceab657ab696a2a283cfffb6a6538149015236d6a9427c4a592', 'from': '0xf9de33940866253fcc982fc0345c9b93cd7d3b55', 'to': '0x6f1dce16d3f1177ddb45c819df59b2e471a5b2d8', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:41:36.000Z'}}, {'blockNum': '0x53081f', 'uniqueId': '0x2f5ec4cab3d8cf289276a3dbc29dc18550c17f00c523d16345170b42b8a24bc2:log:25', 'hash': '0x2f5ec4cab3d8cf289276a3dbc29dc18550c17f00c523d16345170b42b8a24bc2', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 27980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x028b75cbcc00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:42:32.000Z'}}, {'blockNum': '0x530823', 'uniqueId': '0x59fdf4aa893459e4ab2880de5490539aaadcc37045dba317a9c3d322a039e16c:log:88', 'hash': '0x59fdf4aa893459e4ab2880de5490539aaadcc37045dba317a9c3d322a039e16c', 'from': '0x9e076d649817267158caeb673566d32fd645d715', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 6750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x9d29229e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:43:19.000Z'}}, {'blockNum': '0x530827', 'uniqueId': '0xc63d16db8a5745f84eba0826493cf4631965492d15ec762b6c8df3171f67e390:log:58', 'hash': '0xc63d16db8a5745f84eba0826493cf4631965492d15ec762b6c8df3171f67e390', 'from': '0x854c511ccc8433c133f023f7436754b13888b1d5', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 2250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x34630b8a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:44:27.000Z'}}, {'blockNum': '0x530829', 'uniqueId': '0x71f57fb30ca8c48231ce3de82dfa61c53bf25491f0168a71a06d278448c0b20c:log:37', 'hash': '0x71f57fb30ca8c48231ce3de82dfa61c53bf25491f0168a71a06d278448c0b20c', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7991.424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xba10995000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:45:09.000Z'}}, {'blockNum': '0x530829', 'uniqueId': '0xc143a1a47a1f75106c53bc070515f8c12b3642e83c52ff0caefea65cf575fb76:log:38', 'hash': '0xc143a1a47a1f75106c53bc070515f8c12b3642e83c52ff0caefea65cf575fb76', 'from': '0x6f1dce16d3f1177ddb45c819df59b2e471a5b2d8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:45:09.000Z'}}, {'blockNum': '0x530829', 'uniqueId': '0xca8e2b6edf41b93a1c1ab4d3c46b71cd1e865fa84fd292edd0e76f2382ae7730:log:39', 'hash': '0xca8e2b6edf41b93a1c1ab4d3c46b71cd1e865fa84fd292edd0e76f2382ae7730', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x028b75cbcc00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:45:09.000Z'}}, {'blockNum': '0x530829', 'uniqueId': '0x4f6c119012347498cfad7367dc97b24bceab0bc5a2e74a273fb6fbbc14e7bce5:log:79', 'hash': '0x4f6c119012347498cfad7367dc97b24bceab0bc5a2e74a273fb6fbbc14e7bce5', 'from': '0x37d6d08339a5005bb34da1256c3afded0d41b8a7', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:45:09.000Z'}}, {'blockNum': '0x53082c', 'uniqueId': '0x94e467d3814ba6b61d3ff79e3db334645ea45418a507b920feec4503f3ccf2f9:log:19', 'hash': '0x94e467d3814ba6b61d3ff79e3db334645ea45418a507b920feec4503f3ccf2f9', 'from': '0xad3c66d67e72fda10d66d0c078060561b5ebd8db', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x5d21dba000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:45:36.000Z'}}, {'blockNum': '0x530832', 'uniqueId': '0x3753d41673ef353de1036a9ce2a042b5cb471c2d1f6e9eb3ca5a3b4882dda352:log:81', 'hash': '0x3753d41673ef353de1036a9ce2a042b5cb471c2d1f6e9eb3ca5a3b4882dda352', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 16000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0174876e8000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:46:52.000Z'}}, {'blockNum': '0x530832', 'uniqueId': '0x5bfe3ec15eee903c79b468c9cf91a029eec8f8159179ac33b309430381aecfef:log:89', 'hash': '0x5bfe3ec15eee903c79b468c9cf91a029eec8f8159179ac33b309430381aecfef', 'from': '0xb57042daf4753e21cdc52fb443a178b31f881520', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:46:52.000Z'}}, {'blockNum': '0x530834', 'uniqueId': '0xdc93a53fa1a88f0004872c8011ac8a95197d53c9530c33463cd6b75617a8e4a1:log:57', 'hash': '0xdc93a53fa1a88f0004872c8011ac8a95197d53c9530c33463cd6b75617a8e4a1', 'from': '0x2b9e1c973b15aded2e40d77bf38ef67239fe1e45', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 5750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x85e0abb600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:47:21.000Z'}}, {'blockNum': '0x530837', 'uniqueId': '0x2c662330be1ebbb7aff63767b8174ee7b775f4e4ec27e6c0a8b2c112857c6367:log:56', 'hash': '0x2c662330be1ebbb7aff63767b8174ee7b775f4e4ec27e6c0a8b2c112857c6367', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 8750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xcbba106e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:47:56.000Z'}}, {'blockNum': '0x530837', 'uniqueId': '0x09fbba641ea147a0d9894f832b3ddc60c6500aa707157dea8dbdf7be644b90fe:log:79', 'hash': '0x09fbba641ea147a0d9894f832b3ddc60c6500aa707157dea8dbdf7be644b90fe', 'from': '0x60114bfe5a70cf5d637f033ec3371ff38549ef37', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x5d21dba000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:47:56.000Z'}}, {'blockNum': '0x530839', 'uniqueId': '0x6d473380a7253ee86cf104c5d5a90572f4d6dd87d5cda5b819daa946aa7de8e6:log:81', 'hash': '0x6d473380a7253ee86cf104c5d5a90572f4d6dd87d5cda5b819daa946aa7de8e6', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x5d21dba000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:48:43.000Z'}}, {'blockNum': '0x530839', 'uniqueId': '0x4e5a114b16d4cb98e920c03a0a69510746588d7d2490b5cfbdc458db6b9c8ade:log:96', 'hash': '0x4e5a114b16d4cb98e920c03a0a69510746588d7d2490b5cfbdc458db6b9c8ade', 'from': '0x58ce5cce26768b7c14ad48ff6169be30e3bc5974', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x3a35294400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:48:43.000Z'}}, {'blockNum': '0x53083e', 'uniqueId': '0xce77d1b13e688aeb283d8b418a2170edd7a20c28c7c4a2ddfa0ccf1250847489:log:54', 'hash': '0xce77d1b13e688aeb283d8b418a2170edd7a20c28c7c4a2ddfa0ccf1250847489', 'from': '0x134dba4255d4433d3bcc389e3a8918407f6c5715', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 4250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x62f3f95a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:50:07.000Z'}}, {'blockNum': '0x530841', 'uniqueId': '0x625c5df0f03ae08f8223050b97141e381423f403d567df28b63de4278cbf30fb:log:40', 'hash': '0x625c5df0f03ae08f8223050b97141e381423f403d567df28b63de4278cbf30fb', 'from': '0x155861d56783671b76d6b8cffc33ce4bac28828d', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 4250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x62f3f95a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:50:44.000Z'}}, {'blockNum': '0x530843', 'uniqueId': '0xce9cd702cc86c4866fca6d021858510c2a782f0af55117ab5ec745dedf1a258e:log:66', 'hash': '0xce9cd702cc86c4866fca6d021858510c2a782f0af55117ab5ec745dedf1a258e', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 11000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01001d1bf800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:51:13.000Z'}}, {'blockNum': '0x530846', 'uniqueId': '0xa51241aae756c925b993a379e1d603ec303db8384e21a23188162b2ebfa642e1:log:65', 'hash': '0xa51241aae756c925b993a379e1d603ec303db8384e21a23188162b2ebfa642e1', 'from': '0x8f82f6584ea65e4808a4f5fdb87d0fdf36ec724e', 'to': '0xd972a9301458c1517fb25e4e05e939297f835402', 'value': 3124.2034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x48bdb41120', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:52:00.000Z'}}, {'blockNum': '0x53084e', 'uniqueId': '0x6fb55c36ae5699b3b826afd42fa638f789772c38069e5b77d413dcc89ff51c94:log:1', 'hash': '0x6fb55c36ae5699b3b826afd42fa638f789772c38069e5b77d413dcc89ff51c94', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0x4a233e78cf828b5eee69b61c74b95c4f8bd52d08', 'value': 12.93170003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x4d143553', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:54:12.000Z'}}, {'blockNum': '0x530852', 'uniqueId': '0x05a97ef11da0ebec3d0555d7eb68d868da8bcae8d46adda109ea817a4a02b5a5:log:69', 'hash': '0x05a97ef11da0ebec3d0555d7eb68d868da8bcae8d46adda109ea817a4a02b5a5', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8027.24613164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xbae61d8c2c', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:55:02.000Z'}}, {'blockNum': '0x530852', 'uniqueId': '0xabbfcdf2d847021bcddd9ca998af520ddb746e4ece72da9aaba2bbcece0ccc46:log:77', 'hash': '0xabbfcdf2d847021bcddd9ca998af520ddb746e4ece72da9aaba2bbcece0ccc46', 'from': '0xfb1bc9f77fa140cfe97fa48dd9bf263a46ae3ebe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5974.5071269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x8b1ad66672', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:55:02.000Z'}}, {'blockNum': '0x530854', 'uniqueId': '0xa9cce698c807129bef75514b96d2302632074d22bd5619f34190358923127f0e:log:0', 'hash': '0xa9cce698c807129bef75514b96d2302632074d22bd5619f34190358923127f0e', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 31317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02d927ddb500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:55:22.000Z'}}, {'blockNum': '0x530860', 'uniqueId': '0x572519b37d34fdb899538a8ef11c5735852e120ea2fe9926a51aab32abef0be3:log:1', 'hash': '0x572519b37d34fdb899538a8ef11c5735852e120ea2fe9926a51aab32abef0be3', 'from': '0x8954de33986674896220635c66f3185fea74891b', 'to': '0x644465a756a290b0bab6b9a63132491da3de7ae2', 'value': 5058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x75c4078200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:58:09.000Z'}}, {'blockNum': '0x530866', 'uniqueId': '0x4eb451666f84f5f370cc8e71531f8deb9c8934f46fd6c93e920eeb313c205e08:log:43', 'hash': '0x4eb451666f84f5f370cc8e71531f8deb9c8934f46fd6c93e920eeb313c205e08', 'from': '0x9160ad273e5e5054fc19be250a12357b3df32003', 'to': '0x1b64a234ef9a869732a4731e4b9015fcfd0bb2ae', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:59:50.000Z'}}, {'blockNum': '0x530868', 'uniqueId': '0xdd6233676996dbea29c8f9502e072496a6b1b4807ab9b0f36c3d4a3ef2438272:log:25', 'hash': '0xdd6233676996dbea29c8f9502e072496a6b1b4807ab9b0f36c3d4a3ef2438272', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x2465bf602ca9cb3abd8015288f7de1b24b8acc1b', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:00:04.000Z'}}, {'blockNum': '0x530869', 'uniqueId': '0x2c70ee8cd8c8e374bb9b60a1edd2ecc161ea9e09782de202bc5581c93da22371:log:3', 'hash': '0x2c70ee8cd8c8e374bb9b60a1edd2ecc161ea9e09782de202bc5581c93da22371', 'from': '0x0e88c5fe2be5419100d745c8e414fbb1bae163f2', 'to': '0x59accb41ca6d8c0f50254c9d09c2ded60900d2f0', 'value': 5058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x75c4078200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:00:18.000Z'}}, {'blockNum': '0x53086c', 'uniqueId': '0xd1ed4766b91fa418f6fe5cc91c3c297e26397bb88d0bd99b75fe800614ac69a5:log:1', 'hash': '0xd1ed4766b91fa418f6fe5cc91c3c297e26397bb88d0bd99b75fe800614ac69a5', 'from': '0xa167d850a730339d5287835403cd5bf99d64c1e2', 'to': '0x644465a756a290b0bab6b9a63132491da3de7ae2', 'value': 5058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x75c4078200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:01:11.000Z'}}, {'blockNum': '0x53086c', 'uniqueId': '0xab2cf2ef3847785f8342d92b2a1960d022c493314ae58e1cc590c7dbed58be63:log:27', 'hash': '0xab2cf2ef3847785f8342d92b2a1960d022c493314ae58e1cc590c7dbed58be63', 'from': '0xa0d0ba0c77b9f169de4b7755e8c70f7aafdd92fb', 'to': '0x1b64a234ef9a869732a4731e4b9015fcfd0bb2ae', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:01:11.000Z'}}, {'blockNum': '0x53086d', 'uniqueId': '0x146598ea11cc6ef3cc4f76ae2f0b89a9efaa7bd7a9db9bd6d0f8e8b57103f798:log:45', 'hash': '0x146598ea11cc6ef3cc4f76ae2f0b89a9efaa7bd7a9db9bd6d0f8e8b57103f798', 'from': '0x8ea000afd0e4ac3fcad5ed75b37f14eb31088ce5', 'to': '0x1b64a234ef9a869732a4731e4b9015fcfd0bb2ae', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:01:27.000Z'}}, {'blockNum': '0x530870', 'uniqueId': '0xab0bc7ba770f627394735548322fd888e876792671163a5d0568dd844ce8dd3b:log:23', 'hash': '0xab0bc7ba770f627394735548322fd888e876792671163a5d0568dd844ce8dd3b', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 6273.388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x92104e6b80', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:02:33.000Z'}}, {'blockNum': '0x530873', 'uniqueId': '0x244175d2bae4ddcb95e0c8a9b3bb7db41c137c802727bc340118229222220eb2:log:31', 'hash': '0x244175d2bae4ddcb95e0c8a9b3bb7db41c137c802727bc340118229222220eb2', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 20345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01d9b1a65900', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:03:25.000Z'}}, {'blockNum': '0x530874', 'uniqueId': '0x42b97e74d9754fdb924c9055851c4f795f77f5fc2db9bfb5abee7d6713c5b64c:log:17', 'hash': '0x42b97e74d9754fdb924c9055851c4f795f77f5fc2db9bfb5abee7d6713c5b64c', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xf9c64ac400cbdde15df45706a97e06384ddd2c88', 'value': 63898.21021681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x05cfbf031df1', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:03:43.000Z'}}, {'blockNum': '0x530879', 'uniqueId': '0xf9d610b9a8c9854594e53d96e71ec49bbb266d477b8da0ea07e450cf38303694:log:94', 'hash': '0xf9d610b9a8c9854594e53d96e71ec49bbb266d477b8da0ea07e450cf38303694', 'from': '0x1b64a234ef9a869732a4731e4b9015fcfd0bb2ae', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x015d3ef79800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:04:42.000Z'}}, {'blockNum': '0x530879', 'uniqueId': '0xd6fb9e32452e931298accb96f2aab0e489fd1fb41e38ef137ab7b6c7969f3e3a:log:95', 'hash': '0xd6fb9e32452e931298accb96f2aab0e489fd1fb41e38ef137ab7b6c7969f3e3a', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6273.388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x92104e6b80', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:04:42.000Z'}}, {'blockNum': '0x530879', 'uniqueId': '0xeaf2832281a7fd7cca5850d9298dd49d1673f8fe20b15f5e4aff8f0c1dfb7877:log:96', 'hash': '0xeaf2832281a7fd7cca5850d9298dd49d1673f8fe20b15f5e4aff8f0c1dfb7877', 'from': '0xf9c64ac400cbdde15df45706a97e06384ddd2c88', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 63898.21021681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x05cfbf031df1', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:04:42.000Z'}}, {'blockNum': '0x530879', 'uniqueId': '0xae45204654e76c9c1a63f8e4e530f426801670385126d9e32467da127794faba:log:97', 'hash': '0xae45204654e76c9c1a63f8e4e530f426801670385126d9e32467da127794faba', 'from': '0x644465a756a290b0bab6b9a63132491da3de7ae2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xeb880f0400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:04:42.000Z'}}, {'blockNum': '0x530879', 'uniqueId': '0xceafea9521994140c004667cd3ad6bf16a593716739cb71f29b8cef03d856800:log:108', 'hash': '0xceafea9521994140c004667cd3ad6bf16a593716739cb71f29b8cef03d856800', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02d927ddb500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:04:42.000Z'}}, {'blockNum': '0x530879', 'uniqueId': '0x584e5d466ce76ff38959f011c8ef30db2616f733b361b46e0d958bd1ad32ef1c:log:110', 'hash': '0x584e5d466ce76ff38959f011c8ef30db2616f733b361b46e0d958bd1ad32ef1c', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01d9b1a65900', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:04:42.000Z'}}, {'blockNum': '0x53087d', 'uniqueId': '0x8f03b1020408d88044ea70c5d59449db537c0646121c887cd25d7df8b819c983:log:1', 'hash': '0x8f03b1020408d88044ea70c5d59449db537c0646121c887cd25d7df8b819c983', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xf9de33940866253fcc982fc0345c9b93cd7d3b55', 'value': 9663.29100001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe0fdb3e6e1', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:06:08.000Z'}}, {'blockNum': '0x530887', 'uniqueId': '0x495e92ca4a641090c9d2c3b5a396ae91370bf38bbd47e9b835f9e8ffb7cad90b:log:6', 'hash': '0x495e92ca4a641090c9d2c3b5a396ae91370bf38bbd47e9b835f9e8ffb7cad90b', 'from': '0x0fb40eca4069cef1d607c548b60bb37ad8ccaa05', 'to': '0x644465a756a290b0bab6b9a63132491da3de7ae2', 'value': 5058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x75c4078200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:07:35.000Z'}}, {'blockNum': '0x53088a', 'uniqueId': '0xff749279b017be0f3f42182071e1d68248acc1992a81fce8aa3d04f005c556a2:log:7', 'hash': '0xff749279b017be0f3f42182071e1d68248acc1992a81fce8aa3d04f005c556a2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 42973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03e88b0a3d00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:08:36.000Z'}}, {'blockNum': '0x530896', 'uniqueId': '0x95cc1893f7a47621aff9a33c93995373c5bfa199a735702a9bef10557f49123f:log:95', 'hash': '0x95cc1893f7a47621aff9a33c93995373c5bfa199a735702a9bef10557f49123f', 'from': '0xe435f63b41a4060fed5dd702e523f93d69a5659d', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:12:01.000Z'}}, {'blockNum': '0x53089a', 'uniqueId': '0xb318223d86d23c87c7e0bfcf29095e211ffee5a5cf9fb4a46115e9f73e095500:log:22', 'hash': '0xb318223d86d23c87c7e0bfcf29095e211ffee5a5cf9fb4a46115e9f73e095500', 'from': '0xe435f63b41a4060fed5dd702e523f93d69a5659d', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:12:47.000Z'}}, {'blockNum': '0x5308a3', 'uniqueId': '0xbed79a3f6f87d86141e0bcd6221aa09ec3a8e4e0ab3939269b4f33bccb45edf8:log:9', 'hash': '0xbed79a3f6f87d86141e0bcd6221aa09ec3a8e4e0ab3939269b4f33bccb45edf8', 'from': '0x0911d918af7e03639b84db428f12244b61011fcb', 'to': '0x644465a756a290b0bab6b9a63132491da3de7ae2', 'value': 5137.10000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x779b808781', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:15:39.000Z'}}, {'blockNum': '0x5308a3', 'uniqueId': '0xe5342cde9cca1847ad696615d1066d82095a6d67a821bd819ee94a148e925c4d:log:111', 'hash': '0xe5342cde9cca1847ad696615d1066d82095a6d67a821bd819ee94a148e925c4d', 'from': '0x8583ba397ab9519e78f3b1c07ff5faff3fce41a4', 'to': '0x1b64a234ef9a869732a4731e4b9015fcfd0bb2ae', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:15:39.000Z'}}, {'blockNum': '0x5308a4', 'uniqueId': '0x332478065d4343d63eb27282db2dfb7f3b9ad696058f089613221e06fcf0df71:log:2', 'hash': '0x332478065d4343d63eb27282db2dfb7f3b9ad696058f089613221e06fcf0df71', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:15:46.000Z'}}, {'blockNum': '0x5308a5', 'uniqueId': '0x6f98952e7b19fbef134405934919eb2b98ae184a504a4cd47781de9537af5e1b:log:5', 'hash': '0x6f98952e7b19fbef134405934919eb2b98ae184a504a4cd47781de9537af5e1b', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 42874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03e63cf43a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:16:07.000Z'}}, {'blockNum': '0x5308b8', 'uniqueId': '0x9ec09739a3fa70fb9b8d854a46d62d0488a3a2e12c924c882ba33b91d4e856c7:log:32', 'hash': '0x9ec09739a3fa70fb9b8d854a46d62d0488a3a2e12c924c882ba33b91d4e856c7', 'from': '0x5eee4041a681ba83ea95a255a71186a3a1f6fb8e', 'to': '0x1b64a234ef9a869732a4731e4b9015fcfd0bb2ae', 'value': 1443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2198f34300', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:20:01.000Z'}}, {'blockNum': '0x5308b9', 'uniqueId': '0x6fab6fc114c3ff82da72f148261c4d94831a68ac4af6c394cedc784a085725be:log:22', 'hash': '0x6fab6fc114c3ff82da72f148261c4d94831a68ac4af6c394cedc784a085725be', 'from': '0x84f58dfb843cd557cb0201540719282b299c6499', 'to': '0x1b64a234ef9a869732a4731e4b9015fcfd0bb2ae', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:20:19.000Z'}}, {'blockNum': '0x5308c0', 'uniqueId': '0x0d363d3959c581f0353763c61fe80ad6f4e0c953648f5b5b8cd4b28552c0bd4f:log:26', 'hash': '0x0d363d3959c581f0353763c61fe80ad6f4e0c953648f5b5b8cd4b28552c0bd4f', 'from': '0x5792f341e773fc58385ef18762d486dc322ef2ec', 'to': '0x1b64a234ef9a869732a4731e4b9015fcfd0bb2ae', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:21:07.000Z'}}, {'blockNum': '0x5308cf', 'uniqueId': '0x7821f5275d435f5cd972ac753a96349a027f1fee84e06a297a9cf3b0ef61d51c:log:33', 'hash': '0x7821f5275d435f5cd972ac753a96349a027f1fee84e06a297a9cf3b0ef61d51c', 'from': '0x1b64a234ef9a869732a4731e4b9015fcfd0bb2ae', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xdbdcaa8300', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:25:21.000Z'}}, {'blockNum': '0x5308cf', 'uniqueId': '0x2772f8d4c51d85f6c71da4ae40ecb9d478fb590c1de62012b25bc2067ec5cc8e:log:34', 'hash': '0x2772f8d4c51d85f6c71da4ae40ecb9d478fb590c1de62012b25bc2067ec5cc8e', 'from': '0x644465a756a290b0bab6b9a63132491da3de7ae2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10195.10000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xed5f880981', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:25:21.000Z'}}, {'blockNum': '0x5308cf', 'uniqueId': '0xce74af5fe2adb14540b694ab7ec8fbb71f3e3619b5ac69c276323d1ff2bcd64c:log:36', 'hash': '0xce74af5fe2adb14540b694ab7ec8fbb71f3e3619b5ac69c276323d1ff2bcd64c', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03e63cf43a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:25:21.000Z'}}, {'blockNum': '0x5308d7', 'uniqueId': '0x91fa3c28564b5f95e55c24fac402ac945df7cd1b7b5222acda7ba384983a09d5:log:9', 'hash': '0x91fa3c28564b5f95e55c24fac402ac945df7cd1b7b5222acda7ba384983a09d5', 'from': '0xf9de33940866253fcc982fc0345c9b93cd7d3b55', 'to': '0x6f1dce16d3f1177ddb45c819df59b2e471a5b2d8', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:26:53.000Z'}}, {'blockNum': '0x5308d8', 'uniqueId': '0x02ef374124b561a62b52c1fb6f38ba9f46c7d94def35a2accfa3e95950178b34:log:19', 'hash': '0x02ef374124b561a62b52c1fb6f38ba9f46c7d94def35a2accfa3e95950178b34', 'from': '0x71a45af32bae715e24705ce0ab1a52ce95d1f4a1', 'to': '0xfb1bc9f77fa140cfe97fa48dd9bf263a46ae3ebe', 'value': 0.00958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0e9e30', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:28:05.000Z'}}, {'blockNum': '0x5308d8', 'uniqueId': '0x3c42937ac21b8439e52af77156ab4781d26eda779f0fe7517f657935dfc734a2:log:30', 'hash': '0x3c42937ac21b8439e52af77156ab4781d26eda779f0fe7517f657935dfc734a2', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 24510, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x023aaafbfe00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:28:05.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x169f9e6ea8fe2394d288e453cee07fb9b2f38ea5ac658fb0ae1733b68fba5f5c:log:36', 'hash': '0x169f9e6ea8fe2394d288e453cee07fb9b2f38ea5ac658fb0ae1733b68fba5f5c', 'from': '0xc842e0e7dc7ddb309673fc1511722e1171c376ed', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x38602aec9519c7a041c3c82db4a4ca803b9366d47c541f113fde20006e6f8ded:log:37', 'hash': '0x38602aec9519c7a041c3c82db4a4ca803b9366d47c541f113fde20006e6f8ded', 'from': '0xb25b49b73ad82ad6e4175c0c38cc380db1a8d72d', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x0f5d055c793768b3cf2fb04bf89157ff1aa8560c94464a7f689644948f43e289:log:40', 'hash': '0x0f5d055c793768b3cf2fb04bf89157ff1aa8560c94464a7f689644948f43e289', 'from': '0xaa8d284f20ad634bccd99fad5586edd21e10125d', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x517da02c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x443562ba0a9457e7db4d0feb182579d8ad6bde9ab91b53af7543711c82c8933e:log:41', 'hash': '0x443562ba0a9457e7db4d0feb182579d8ad6bde9ab91b53af7543711c82c8933e', 'from': '0x961e383c3ff0dee285fa51f862bebecc40c36352', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x832b0b1bb9099a1d209c607017f4d613b3cb0d5cbbcd6c7a8d9e1aae63b81644:log:43', 'hash': '0x832b0b1bb9099a1d209c607017f4d613b3cb0d5cbbcd6c7a8d9e1aae63b81644', 'from': '0x3da8743251370a071b061853b605a53be2d63813', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x7e5db7ced9a1bab978ed235c09b7d56adfc152182c8585156e78bb2fb3c5f188:log:46', 'hash': '0x7e5db7ced9a1bab978ed235c09b7d56adfc152182c8585156e78bb2fb3c5f188', 'from': '0x52999c527fd7dc516111078687a7e2a3050a1bc5', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 1250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1d1a94a200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x8eb26e377eada6e4085b32eefe2a1654384df9087108733ee966a4d502843b73:log:47', 'hash': '0x8eb26e377eada6e4085b32eefe2a1654384df9087108733ee966a4d502843b73', 'from': '0x2cee34a4a8913771f9af8db55e898566b0954b6b', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0xd3909fb33ae4d00a67bcde0d5cda13901ed2117cdf3d8a9e69daf6dd2a5ba919:log:49', 'hash': '0xd3909fb33ae4d00a67bcde0d5cda13901ed2117cdf3d8a9e69daf6dd2a5ba919', 'from': '0x7582dcf593a1a9ae6bbbd3cebb4fc400216c3cac', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0xe8d443fe7642e6b3a11c996bf544b95fc93b63a5d65c1c8fb8f89da14e625ac1:log:51', 'hash': '0xe8d443fe7642e6b3a11c996bf544b95fc93b63a5d65c1c8fb8f89da14e625ac1', 'from': '0x7e7eb728a0332152c61ba607b0978f32a93f6880', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x64dfaf1540434724d7afd5d80a7628334b5fc962ba9773ac8a5a99ee7b0a9a89:log:52', 'hash': '0x64dfaf1540434724d7afd5d80a7628334b5fc962ba9773ac8a5a99ee7b0a9a89', 'from': '0x37ef365abfb5b346dcf54c5312d62b87df289b94', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x00c276053279e394e4ec10ed038b77b8a84ee9df7111276123ac48ef14c0c91d:log:56', 'hash': '0x00c276053279e394e4ec10ed038b77b8a84ee9df7111276123ac48ef14c0c91d', 'from': '0xc7f9f8e7d5b6416cfcf1806ff611a36a09212085', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x7cac2756ec7e2a4bdab90c1e0a7e65d08aab4f6e73578fdb94de5dcaa45a92ca:log:57', 'hash': '0x7cac2756ec7e2a4bdab90c1e0a7e65d08aab4f6e73578fdb94de5dcaa45a92ca', 'from': '0x7e035c6eedd0ce7420fa96d548480a2ffe35a078', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x3a35294400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x8fe7312473bbb85c43165c0e78550379dd23a811f650a280cdf60a3cd106af38:log:58', 'hash': '0x8fe7312473bbb85c43165c0e78550379dd23a811f650a280cdf60a3cd106af38', 'from': '0xa5526a215d37cbc5b30fcf11ea743a23b7c80647', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 1250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1d1a94a200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0xdd47a98cf9456100058649191728997a564ff2456f0a44eba7a5fe7dddb17e68:log:61', 'hash': '0xdd47a98cf9456100058649191728997a564ff2456f0a44eba7a5fe7dddb17e68', 'from': '0x93280ac14fcc22fc1fc741b9f2eee34d4c218dd8', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x7b682298e7c0badb3591181b201142c0f536a9556eab34fba0a876bff725055b:log:62', 'hash': '0x7b682298e7c0badb3591181b201142c0f536a9556eab34fba0a876bff725055b', 'from': '0xa813efd8ef2e7f98f573eab0c06daba4f24d0521', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x72df90fd6decfec38350cbc65869f83406f08b9b5fede595051c65c17b3702c4:log:63', 'hash': '0x72df90fd6decfec38350cbc65869f83406f08b9b5fede595051c65c17b3702c4', 'from': '0x072eb0a9f84af0194b7fae69eab9757cc70d5ed2', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x37cad09022c881e37f4fb706f980f053c41a4a46303ba5f33f919dbca0fca890:log:66', 'hash': '0x37cad09022c881e37f4fb706f980f053c41a4a46303ba5f33f919dbca0fca890', 'from': '0x745c49255d3741b96dedacde45b17428449d613d', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 2750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x400746fe00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0xae0b27e2a7e89408ed3d22933d4b8a63df9188b6595180e15a135398e22df68b:log:67', 'hash': '0xae0b27e2a7e89408ed3d22933d4b8a63df9188b6595180e15a135398e22df68b', 'from': '0xbebe7dcb6c68d85d95efc5c8e33bb40e6fe0b11c', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 4250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x62f3f95a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308e4', 'uniqueId': '0xf0bfd3ac3be7a2328419bda6a81bf3a073318f55cdc84fa0bea8b6a7ab810c3e:log:16', 'hash': '0xf0bfd3ac3be7a2328419bda6a81bf3a073318f55cdc84fa0bea8b6a7ab810c3e', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x2877ef52484a7c4e2ff0abf56c8eea338a7a37df', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:30:02.000Z'}}, {'blockNum': '0x5308f3', 'uniqueId': '0x4de91aee7d282339d53fef855e95c265fee89270f426852dca781b625f661df6:log:38', 'hash': '0x4de91aee7d282339d53fef855e95c265fee89270f426852dca781b625f661df6', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x096f6feb3dbdd1f6e9e23f5b4ecfaea461fac9f8', 'value': 4399.7585405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x66709abfe2', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:33:05.000Z'}}, {'blockNum': '0x5308f3', 'uniqueId': '0x72d9466336ab8e2fc9e854db7b0914f49c0b6507492586991bad7a6129f8369e:log:51', 'hash': '0x72d9466336ab8e2fc9e854db7b0914f49c0b6507492586991bad7a6129f8369e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'value': 11760.39769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0111d16ec3a8', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:33:05.000Z'}}, {'blockNum': '0x5308fb', 'uniqueId': '0xb423514015411ad517eda65bb160e5e4e1621c69be666f4f07a9ddbb8f3887fb:log:2', 'hash': '0xb423514015411ad517eda65bb160e5e4e1621c69be666f4f07a9ddbb8f3887fb', 'from': '0x7e3fbaf7f9d32d84e20f4b11b1ff7449c6494861', 'to': '0x0f3a83969a8267546c87a29495a69d2fa0af1313', 'value': 11000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01001d1bf800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:34:24.000Z'}}, {'blockNum': '0x5308fe', 'uniqueId': '0x96855925c4921662694798ba50cab756e46ba6ed609b01f6a8f7203b3a6d0c34:log:9', 'hash': '0x96855925c4921662694798ba50cab756e46ba6ed609b01f6a8f7203b3a6d0c34', 'from': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11760.39769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0111d16ec3a8', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:35:17.000Z'}}, {'blockNum': '0x5308fe', 'uniqueId': '0x9afba57b2954683b86d3fc0768f903a161d81614f5880e4332c7a55cacfa2401:log:10', 'hash': '0x9afba57b2954683b86d3fc0768f903a161d81614f5880e4332c7a55cacfa2401', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24510, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x023aaafbfe00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:35:17.000Z'}}, {'blockNum': '0x530900', 'uniqueId': '0xd8b2970d088925c444a8847bc3e4337e7cf8b6b6f7f391e30ceaae863760e0b8:log:14', 'hash': '0xd8b2970d088925c444a8847bc3e4337e7cf8b6b6f7f391e30ceaae863760e0b8', 'from': '0xe794e77167c3d1d322629f191488e3bc1d39d81c', 'to': '0x644465a756a290b0bab6b9a63132491da3de7ae2', 'value': 5058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x75c4078200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:35:30.000Z'}}, {'blockNum': '0x530904', 'uniqueId': '0xe4853a0b5e0b19c93967b881e13499da704ddf14464055cb3a38a44f78d9172b:log:20', 'hash': '0xe4853a0b5e0b19c93967b881e13499da704ddf14464055cb3a38a44f78d9172b', 'from': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'to': '0xba078c8bbdd4cbd1ea33b1468d0eef3b46a4cd0b', 'value': 38000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0374c1a67000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:37:03.000Z'}}, {'blockNum': '0x530906', 'uniqueId': '0xdee7fa5bf7a5e6de5281d16350e42d8db52359c2041d5bd9c3fea330694d8627:log:83', 'hash': '0xdee7fa5bf7a5e6de5281d16350e42d8db52359c2041d5bd9c3fea330694d8627', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 11869.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01145a3e3540', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:38:19.000Z'}}, {'blockNum': '0x530918', 'uniqueId': '0x682da0610e1d548a71c5a335a8bb9fa4e8a5e4dbb33695a22e98528a40e8dd74:log:20', 'hash': '0x682da0610e1d548a71c5a335a8bb9fa4e8a5e4dbb33695a22e98528a40e8dd74', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x4e1754be375bce21808bb44d54282b59d353ff6a', 'value': 28578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x029962276200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:42:16.000Z'}}, {'blockNum': '0x530926', 'uniqueId': '0xfcb1acefbe607621116590f6cb50aea1f3c375b9401239ee0c543affd7a5dd1c:log:14', 'hash': '0xfcb1acefbe607621116590f6cb50aea1f3c375b9401239ee0c543affd7a5dd1c', 'from': '0xba078c8bbdd4cbd1ea33b1468d0eef3b46a4cd0b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 39000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x038c0a1d5800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:45:28.000Z'}}, {'blockNum': '0x530926', 'uniqueId': '0xc9fe5acc5722305653ce58a61b334696b00399e7f468c035106a37c7c6dafa39:log:15', 'hash': '0xc9fe5acc5722305653ce58a61b334696b00399e7f468c035106a37c7c6dafa39', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11869.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01145a3e3540', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:45:28.000Z'}}, {'blockNum': '0x530926', 'uniqueId': '0x248d7cc16cfcf729049ef32ac9a3382a271f606d9373cc08df0156b7ec379937:log:16', 'hash': '0x248d7cc16cfcf729049ef32ac9a3382a271f606d9373cc08df0156b7ec379937', 'from': '0x6f1dce16d3f1177ddb45c819df59b2e471a5b2d8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:45:28.000Z'}}, {'blockNum': '0x530926', 'uniqueId': '0xa5fe65ed2b5f89c89b80142cf9e57a5256bb976cd1e0120e299245feee883f93:log:17', 'hash': '0xa5fe65ed2b5f89c89b80142cf9e57a5256bb976cd1e0120e299245feee883f93', 'from': '0x0f3a83969a8267546c87a29495a69d2fa0af1313', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01001d1bf800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:45:28.000Z'}}, {'blockNum': '0x53092e', 'uniqueId': '0x9cb73fe2a660f07b7c05fcc3a0d7ccd00c2d9d05d9d899b850e2673ea12fe91a:log:10', 'hash': '0x9cb73fe2a660f07b7c05fcc3a0d7ccd00c2d9d05d9d899b850e2673ea12fe91a', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 27631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x028355980f00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:46:32.000Z'}}, {'blockNum': '0x53092e', 'uniqueId': '0x6ae926e59729cd2c33f32a64199050d9c22671dc0a2f2bd41cf83cb058603c83:log:50', 'hash': '0x6ae926e59729cd2c33f32a64199050d9c22671dc0a2f2bd41cf83cb058603c83', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0x4a233e78cf828b5eee69b61c74b95c4f8bd52d08', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:46:32.000Z'}}, {'blockNum': '0x530939', 'uniqueId': '0x6c6234a161c35954e373bf4dc769e348b6476a67bfc36266fec95b5312756ea3:log:6', 'hash': '0x6c6234a161c35954e373bf4dc769e348b6476a67bfc36266fec95b5312756ea3', 'from': '0x71cd4d5822c9c3517b56d521682175b8e959b49e', 'to': '0x644465a756a290b0bab6b9a63132491da3de7ae2', 'value': 5058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x75c4078200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:49:26.000Z'}}, {'blockNum': '0x53094a', 'uniqueId': '0x52c5f5a195c7be51b82598ca5de385d2638dbd3886f6fb37583dfd032adbcf79:log:94', 'hash': '0x52c5f5a195c7be51b82598ca5de385d2638dbd3886f6fb37583dfd032adbcf79', 'from': '0x82c857c20da766dc18e36adeca436b00c943939a', 'to': '0x8920cf4700b8e26d181d64cd602569bfb3daa1da', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:53:42.000Z'}}, {'blockNum': '0x53094c', 'uniqueId': '0x0521cd8e3d3e498061b872a3d774d5e3787bdf43ec72fea611c43d1c0896ff49:log:1', 'hash': '0x0521cd8e3d3e498061b872a3d774d5e3787bdf43ec72fea611c43d1c0896ff49', 'from': '0xb9d20ab8df34e684fa96a0f5cb97e8977d29dfdb', 'to': '0x644465a756a290b0bab6b9a63132491da3de7ae2', 'value': 5005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x74881fed00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:54:07.000Z'}}, {'blockNum': '0x53094e', 'uniqueId': '0x65d433f33dbbcc5a85764ef7d6b8c9bcc424b4a5cbe643a7d42eff6d9b051b50:log:64', 'hash': '0x65d433f33dbbcc5a85764ef7d6b8c9bcc424b4a5cbe643a7d42eff6d9b051b50', 'from': '0x4e1754be375bce21808bb44d54282b59d353ff6a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x029962276200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:56:03.000Z'}}, {'blockNum': '0x53094e', 'uniqueId': '0xe4e4ec5a403109aca3e3be0937822567ed9029246d141870dcb12e0281f257dd:log:65', 'hash': '0xe4e4ec5a403109aca3e3be0937822567ed9029246d141870dcb12e0281f257dd', 'from': '0x644465a756a290b0bab6b9a63132491da3de7ae2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0160102ef100', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:56:03.000Z'}}, {'blockNum': '0x53094e', 'uniqueId': '0x46b3b88634bd74bc0edd07e6c7acf0db4c30bbab50bb947524195f9ab74b88e6:log:66', 'hash': '0x46b3b88634bd74bc0edd07e6c7acf0db4c30bbab50bb947524195f9ab74b88e6', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x028355980f00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:56:03.000Z'}}, {'blockNum': '0x530952', 'uniqueId': '0xee68d0307ba4b90660050fca1aad793d96f3ab4b041bad30e29fe49790096a68:log:5', 'hash': '0xee68d0307ba4b90660050fca1aad793d96f3ab4b041bad30e29fe49790096a68', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 34580, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x032520dc9400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:56:47.000Z'}}, {'blockNum': '0x530952', 'uniqueId': '0x003eea841a2bd9c49f685479932a559043be46e8f27fcaf1f955a9d0e502779c:log:51', 'hash': '0x003eea841a2bd9c49f685479932a559043be46e8f27fcaf1f955a9d0e502779c', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 8151.476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xbdca954880', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:56:47.000Z'}}, {'blockNum': '0x530955', 'uniqueId': '0xc37d5156a59e70853776875c8c1cb4ffa294459dc9d2acd6562b8ba9d7046bb2:log:2', 'hash': '0xc37d5156a59e70853776875c8c1cb4ffa294459dc9d2acd6562b8ba9d7046bb2', 'from': '0x1c53b76c32e0686ae1abf4cf885e529ef2ab37d3', 'to': '0x1c53b76c32e0686ae1abf4cf885e529ef2ab37d3', 'value': 5016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x74c9b09800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:57:31.000Z'}}, {'blockNum': '0x530960', 'uniqueId': '0xdebb6e5003d10271d1f34448e53deed72e23d15d1db5371b220d7880a0adba07:log:19', 'hash': '0xdebb6e5003d10271d1f34448e53deed72e23d15d1db5371b220d7880a0adba07', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xe435f63b41a4060fed5dd702e523f93d69a5659d', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:00:12.000Z'}}, {'blockNum': '0x53096b', 'uniqueId': '0x9cfa7e15456d744051b1a48d7428ef8e2f2fb7d83d69b1b356b8ff49aa44ea08:log:19', 'hash': '0x9cfa7e15456d744051b1a48d7428ef8e2f2fb7d83d69b1b356b8ff49aa44ea08', 'from': '0xf235a108510c902cdea47c958eb4f736e5728281', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:02:30.000Z'}}, {'blockNum': '0x53096e', 'uniqueId': '0x08e78731798aa4bfae78721f0bd5524fde3efc23d6b13402d1e3a85afa0262c4:log:7', 'hash': '0x08e78731798aa4bfae78721f0bd5524fde3efc23d6b13402d1e3a85afa0262c4', 'from': '0x92653bde7a4f6d7c26e481bf5b2a314e09f8f61c', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:03:04.000Z'}}, {'blockNum': '0x530972', 'uniqueId': '0x0c4a907a89f32bd6d4b063157265d1d6cab886af7b0d6b5dc2781b3551743108:log:2', 'hash': '0x0c4a907a89f32bd6d4b063157265d1d6cab886af7b0d6b5dc2781b3551743108', 'from': '0x43d23420ac31093d504159bff45cb28024fab126', 'to': '0x019bda3eecd27470713f8b5514d03e70a204bbbb', 'value': 5034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x7534fa6a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:03:25.000Z'}}, {'blockNum': '0x530974', 'uniqueId': '0x2d8c2bacd846fec868c1e572700d35b80f12215a2b9a42e89283889b5437ee76:log:27', 'hash': '0x2d8c2bacd846fec868c1e572700d35b80f12215a2b9a42e89283889b5437ee76', 'from': '0xda62eefa311787092217b4824142981134e1e236', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:04:07.000Z'}}, {'blockNum': '0x530974', 'uniqueId': '0x9d26add883b3306ea49fe1b03158f457782bb5c33c60df2b6f1d148ac2b62563:log:28', 'hash': '0x9d26add883b3306ea49fe1b03158f457782bb5c33c60df2b6f1d148ac2b62563', 'from': '0x5fe72e8a89809de2088f7aadfdd95828c81cc701', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:04:07.000Z'}}, {'blockNum': '0x53097c', 'uniqueId': '0xfa3fbbef5fbae426f863ec377a51b46325704d30fa902e3155948bcc8c3fa46e:log:15', 'hash': '0xfa3fbbef5fbae426f863ec377a51b46325704d30fa902e3155948bcc8c3fa46e', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8151.476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xbdca954880', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:05:07.000Z'}}, {'blockNum': '0x53097c', 'uniqueId': '0x6fe14d2453ec6666d8045c82cef81a378a18c76074facedea9971a6ca6c15aae:log:16', 'hash': '0x6fe14d2453ec6666d8045c82cef81a378a18c76074facedea9971a6ca6c15aae', 'from': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:05:07.000Z'}}, {'blockNum': '0x53097c', 'uniqueId': '0xa16bc0ede719a95573dfdabdfa92df28344d48b6951e39393a9d4b355f1efc01:log:17', 'hash': '0xa16bc0ede719a95573dfdabdfa92df28344d48b6951e39393a9d4b355f1efc01', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34580, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x032520dc9400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:05:07.000Z'}}, {'blockNum': '0x53097f', 'uniqueId': '0x6bac4d80f6dcdd8b861e280fbc8190e0a1186de660b80f3141df85ac8e871e22:log:6', 'hash': '0x6bac4d80f6dcdd8b861e280fbc8190e0a1186de660b80f3141df85ac8e871e22', 'from': '0x08318113d499d108d3e02f4d9f350a18d7acf32f', 'to': '0x019bda3eecd27470713f8b5514d03e70a204bbbb', 'value': 5004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x74822a0c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:05:42.000Z'}}, {'blockNum': '0x530981', 'uniqueId': '0x398ba9ce1a2cd018547a0c4f5f711c4785122fb373462072b2671ac9baa3dab0:log:8', 'hash': '0x398ba9ce1a2cd018547a0c4f5f711c4785122fb373462072b2671ac9baa3dab0', 'from': '0xbca5c5ee1265a4ee149848b65d9ad2b7a5f9895f', 'to': '0x644465a756a290b0bab6b9a63132491da3de7ae2', 'value': 5007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x74940baf00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:06:16.000Z'}}, {'blockNum': '0x530986', 'uniqueId': '0x32023df69425a1417515cdb53153a229a83e79a9bbe8488753eff60f69cb963d:log:14', 'hash': '0x32023df69425a1417515cdb53153a229a83e79a9bbe8488753eff60f69cb963d', 'from': '0xef8a120471d71d601b9cc1845ebc1ab1467e25f1', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:07:31.000Z'}}, {'blockNum': '0x530988', 'uniqueId': '0xb63ef8ca0ee4765107deefe652c994421c13ad2f9b8b22353805ba7392e2555d:log:20', 'hash': '0xb63ef8ca0ee4765107deefe652c994421c13ad2f9b8b22353805ba7392e2555d', 'from': '0x27cb915556ae5c188decb15157a224c9aefa1b25', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:07:43.000Z'}}, {'blockNum': '0x53098a', 'uniqueId': '0x986e8341da3f0468599d4ddbdc7c15f64896a3b5ca35497eb537760e10635be8:log:26', 'hash': '0x986e8341da3f0468599d4ddbdc7c15f64896a3b5ca35497eb537760e10635be8', 'from': '0xf7ff92efb2839a5408df4cb5718a96838ba63349', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:08:50.000Z'}}, {'blockNum': '0x53098b', 'uniqueId': '0xe06f33a739e2ae8d6dc71e52c668cf41598fb414471af92890aa6d158b2ed7b0:log:39', 'hash': '0xe06f33a739e2ae8d6dc71e52c668cf41598fb414471af92890aa6d158b2ed7b0', 'from': '0xefe8c8fda6e01abede56dab279d5723550b8d0cd', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:09:19.000Z'}}, {'blockNum': '0x53098e', 'uniqueId': '0x946d5347139f9befa22c5488c31a13fcee95288bbf1c9399b4b893bd03cd4ad9:log:10', 'hash': '0x946d5347139f9befa22c5488c31a13fcee95288bbf1c9399b4b893bd03cd4ad9', 'from': '0x0891838a347851ff3694e7146278fc7c986bd616', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:10:16.000Z'}}, {'blockNum': '0x530993', 'uniqueId': '0x153e65442b2cc4626439790fdfd98f5cf4d2d36a467f9b8c8394617b9ff3b482:log:4', 'hash': '0x153e65442b2cc4626439790fdfd98f5cf4d2d36a467f9b8c8394617b9ff3b482', 'from': '0xe37ad7085aadebeb97698e6ad6467ddeee2e7526', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:11:53.000Z'}}, {'blockNum': '0x530996', 'uniqueId': '0xf1ecdbf68c7be7afa0bba017fa4d486fbb77e700cbb9af173182efa7818661e1:log:4', 'hash': '0xf1ecdbf68c7be7afa0bba017fa4d486fbb77e700cbb9af173182efa7818661e1', 'from': '0xdef269b51d0c4c1b26c2f8649c65bf056e0b3ce4', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 6500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x975704e400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:12:34.000Z'}}, {'blockNum': '0x530998', 'uniqueId': '0xb411d045ea427dbbab893d8b76990c007630bb291f3735d9ff26c88199827596:log:11', 'hash': '0xb411d045ea427dbbab893d8b76990c007630bb291f3735d9ff26c88199827596', 'from': '0xe81517e1e6d8145f7ac412963118cadb54acb6a1', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:13:16.000Z'}}, {'blockNum': '0x530999', 'uniqueId': '0x8f92b5c057864d6538cb216e8a50f569a0299725a3319c433c2227587be40dd5:log:11', 'hash': '0x8f92b5c057864d6538cb216e8a50f569a0299725a3319c433c2227587be40dd5', 'from': '0x702223d43b29caf6fc2b535e3f983ae5a300cf9b', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 6500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x975704e400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:13:50.000Z'}}, {'blockNum': '0x530999', 'uniqueId': '0x2a11d97092d311f711e8993a3bd774a06bddf16868dae48a60ad31586d5ac163:log:81', 'hash': '0x2a11d97092d311f711e8993a3bd774a06bddf16868dae48a60ad31586d5ac163', 'from': '0x77306c0b26b09d536bcf5b217660ebe17819843d', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:13:50.000Z'}}, {'blockNum': '0x53099d', 'uniqueId': '0x952a9cba4bb69e9d29fb8d6d5ff79c5f4a5563518d28a199259e390df843f30d:log:8', 'hash': '0x952a9cba4bb69e9d29fb8d6d5ff79c5f4a5563518d28a199259e390df843f30d', 'from': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x04d2009e0800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:15:09.000Z'}}, {'blockNum': '0x53099d', 'uniqueId': '0x23c9c55a2d6e202ebae5c5bf04fc9d2a8f3a9617275e17c5515d84e444f14473:log:9', 'hash': '0x23c9c55a2d6e202ebae5c5bf04fc9d2a8f3a9617275e17c5515d84e444f14473', 'from': '0x019bda3eecd27470713f8b5514d03e70a204bbbb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe9b7247600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:15:09.000Z'}}, {'blockNum': '0x53099f', 'uniqueId': '0xfc231c0f99ce7fed990fc2364e70b912ebab2ca18ef2c8eb275835f1ec21f31b:log:8', 'hash': '0xfc231c0f99ce7fed990fc2364e70b912ebab2ca18ef2c8eb275835f1ec21f31b', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x0ae2b017fea73623942698084c6a5339ed204281', 'value': 19442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01c4ab59b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:15:18.000Z'}}, {'blockNum': '0x5309a0', 'uniqueId': '0x946034cc2b359962f05725da7e50aac5d97f2925559ac4a578cab2caaec73a0f:log:59', 'hash': '0x946034cc2b359962f05725da7e50aac5d97f2925559ac4a578cab2caaec73a0f', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 25480, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x025140a28800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:15:49.000Z'}}, {'blockNum': '0x5309a4', 'uniqueId': '0x22c6ab3b92af3138f39a7a69b0ddb875399ded997f2f55fc856ad593a5991f0b:log:16', 'hash': '0x22c6ab3b92af3138f39a7a69b0ddb875399ded997f2f55fc856ad593a5991f0b', 'from': '0xe1c97295b6fcf698650d94909743c1663f7d2e2f', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:17:04.000Z'}}, {'blockNum': '0x5309a4', 'uniqueId': '0xf8706b5674967017a83dff98edb29592cbc3a0fc2cb34b881bcfed7905b039c1:log:17', 'hash': '0xf8706b5674967017a83dff98edb29592cbc3a0fc2cb34b881bcfed7905b039c1', 'from': '0x446ae180fba3d86ed18f057ef7461ffcc5eec355', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:17:04.000Z'}}, {'blockNum': '0x5309a6', 'uniqueId': '0x2dd7010e17a2ce60a198f5081ea3d8a06cc0a0f5bdca917422a46f226a5a7ae9:log:7', 'hash': '0x2dd7010e17a2ce60a198f5081ea3d8a06cc0a0f5bdca917422a46f226a5a7ae9', 'from': '0x9a50efa96ad02fafb4c8b23be06db34738afd83a', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:17:27.000Z'}}, {'blockNum': '0x5309a7', 'uniqueId': '0x7b157dbcd2cf25f45aa81589c080bf832c0bd28b4bfdbbc961c66c165703223f:log:12', 'hash': '0x7b157dbcd2cf25f45aa81589c080bf832c0bd28b4bfdbbc961c66c165703223f', 'from': '0xfe02795dd00de2a105710d862c75861b6be83546', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:18:05.000Z'}}, {'blockNum': '0x5309a8', 'uniqueId': '0x52b7ee9f8df4c80a7c4320b2a5f0089848a59d70c46d4d60c54381d6f8a5a1e3:log:15', 'hash': '0x52b7ee9f8df4c80a7c4320b2a5f0089848a59d70c46d4d60c54381d6f8a5a1e3', 'from': '0xceada26994f060c2e87b3610dd41470db6840c14', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:18:23.000Z'}}, {'blockNum': '0x5309a9', 'uniqueId': '0xe07e7bb1ebc12a3317ef15e99ee105e1e61593c40ac7c072d73de41688350ae5:log:22', 'hash': '0xe07e7bb1ebc12a3317ef15e99ee105e1e61593c40ac7c072d73de41688350ae5', 'from': '0x720d7eb37a30b62f6a0c25d563376710a932edb4', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:19:28.000Z'}}, {'blockNum': '0x5309ac', 'uniqueId': '0x698be66203e88bee48d56a6254ea00907e5c24cd0fedb4fd166c3ec2e5ef82a1:log:4', 'hash': '0x698be66203e88bee48d56a6254ea00907e5c24cd0fedb4fd166c3ec2e5ef82a1', 'from': '0x74c36000a981bee41b45e6f5ad3532c8da98fce4', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:19:48.000Z'}}, {'blockNum': '0x5309b2', 'uniqueId': '0x9cbcc912bcd80b8b8632475e2bd3b22a0156d48a9897f9ebca9ca2ddade10584:log:2', 'hash': '0x9cbcc912bcd80b8b8632475e2bd3b22a0156d48a9897f9ebca9ca2ddade10584', 'from': '0x20825d3cab2c497c7fc570b37c399f84e95ddc73', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 6500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x975704e400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:20:37.000Z'}}, {'blockNum': '0x5309b4', 'uniqueId': '0xe7aad02c1fcfbbdf0bc3998c808def25cb323ca5854b9815a5cd70d6c3b9d162:log:11', 'hash': '0xe7aad02c1fcfbbdf0bc3998c808def25cb323ca5854b9815a5cd70d6c3b9d162', 'from': '0x08f64bcc2ed8cf65583b5c93ce88f31661f1be40', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:21:09.000Z'}}, {'blockNum': '0x5309b7', 'uniqueId': '0xaa65c8c8c84ff5d668d8fc5de58f55b78c2c48b904bd171680a64aa553ddb99f:log:2', 'hash': '0xaa65c8c8c84ff5d668d8fc5de58f55b78c2c48b904bd171680a64aa553ddb99f', 'from': '0xad66a8e1d44b0410553a735f5a1108ec3a6b69f8', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:21:52.000Z'}}, {'blockNum': '0x5309bb', 'uniqueId': '0x4956c188863747d1d808abe8b9bd0fbc5aea4e6e6481446982e0d5cbfad0aae6:log:7', 'hash': '0x4956c188863747d1d808abe8b9bd0fbc5aea4e6e6481446982e0d5cbfad0aae6', 'from': '0x02db4eec12588cae70cf520dc53d0c4cf8e8225f', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:23:06.000Z'}}, {'blockNum': '0x5309c3', 'uniqueId': '0x8caab8a0380eb248c427b3d945ac5f866df5304eaa24cc3c2894b2908c627015:log:57', 'hash': '0x8caab8a0380eb248c427b3d945ac5f866df5304eaa24cc3c2894b2908c627015', 'from': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x05237e3e3400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:24:54.000Z'}}, {'blockNum': '0x5309c3', 'uniqueId': '0xc955e209dc7e07f9d628f4a61246bf0302f13a83a82db4df3328a15a5cc44389:log:81', 'hash': '0xc955e209dc7e07f9d628f4a61246bf0302f13a83a82db4df3328a15a5cc44389', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25480, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x025140a28800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:24:54.000Z'}}, {'blockNum': '0x5309d3', 'uniqueId': '0x555e825714e474e8da484c52582c0d0861a33ab662a1662d36ab1d7f732f2309:log:88', 'hash': '0x555e825714e474e8da484c52582c0d0861a33ab662a1662d36ab1d7f732f2309', 'from': '0x0e8359e2a28d8ebc6a2a56f37070947845d8668e', 'to': '0xe5b12eacb2877e37fe5e687f4f9bf3f4ec59180b', 'value': 1786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x299563ba00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:28:01.000Z'}}, {'blockNum': '0x5309d4', 'uniqueId': '0x0a3006f094341fd7797c31567631d6cd160eeb9a661a90df4824b4c11d3380f2:log:10', 'hash': '0x0a3006f094341fd7797c31567631d6cd160eeb9a661a90df4824b4c11d3380f2', 'from': '0x3432db18a9e103ee8e76a92f9ec2bfa8e9ad5b02', 'to': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'value': 13100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01310215ac00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:28:18.000Z'}}, {'blockNum': '0x5309d7', 'uniqueId': '0x792c76c92c7d4b2a75e905087748de58df1b12a1b2d8192646f8cba30530b13e:log:11', 'hash': '0x792c76c92c7d4b2a75e905087748de58df1b12a1b2d8192646f8cba30530b13e', 'from': '0xe61b97c37821e55fda3627845d20f41d4a59052e', 'to': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'value': 3880.5234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x5a59b8cd20', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:28:54.000Z'}}, {'blockNum': '0x5309d8', 'uniqueId': '0xe7dee94fa9058fc2cce606a61313f62586e167931ba9ac39bd3066472785f0d1:log:0', 'hash': '0xe7dee94fa9058fc2cce606a61313f62586e167931ba9ac39bd3066472785f0d1', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x91f41176eb10d612aefe45284f05f640aa2d0bac', 'value': 6838.423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x9f382d6860', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:29:02.000Z'}}, {'blockNum': '0x5309da', 'uniqueId': '0x50078cd94dcbe116767b4c7eb56b242de427ab554a81dada9acda9bf839a67a5:log:4', 'hash': '0x50078cd94dcbe116767b4c7eb56b242de427ab554a81dada9acda9bf839a67a5', 'from': '0x1d2800e425638910809b334a05c5210abc2ef535', 'to': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'value': 5766.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x864168b9c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:29:28.000Z'}}, {'blockNum': '0x5309dd', 'uniqueId': '0x0775ec5613f462f8bbb06c5d3fb3b60de740b12935c8b5e76b5f982d3b663b69:log:23', 'hash': '0x0775ec5613f462f8bbb06c5d3fb3b60de740b12935c8b5e76b5f982d3b663b69', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xcd2c2b3e82f9f7b8bb160c4e829983854e9a0859', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:30:17.000Z'}}, {'blockNum': '0x5309dd', 'uniqueId': '0xa08cf95d5d22731ffdc8b9bc574b14e9626d7fe4aebed90e551289a0b0a18b25:log:91', 'hash': '0xa08cf95d5d22731ffdc8b9bc574b14e9626d7fe4aebed90e551289a0b0a18b25', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x30716256c590991775a48ab28dd4b899d6c95031', 'value': 10919.144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xfe3b2b8100', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:30:17.000Z'}}, {'blockNum': '0x5309dd', 'uniqueId': '0x7a0d2b7bc36352d30b1ff4001d3fb7b48e08764dc687ec0ee2527fc52957f680:log:95', 'hash': '0x7a0d2b7bc36352d30b1ff4001d3fb7b48e08764dc687ec0ee2527fc52957f680', 'from': '0x2ff6f83c4f4de57913f515a77d134c57055e0487', 'to': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'value': 558325.5585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x32c787a88910', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:30:17.000Z'}}, {'blockNum': '0x5309df', 'uniqueId': '0xd455ec0094f2a7696f102d55ed6453d697838e836a6c0e4b394c8db6a45a5032:log:5', 'hash': '0xd455ec0094f2a7696f102d55ed6453d697838e836a6c0e4b394c8db6a45a5032', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xcdefc9a25c5e811b8fb2e10fa62a1b12315e0ba9', 'value': 7156.466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xa69fdc8340', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:30:58.000Z'}}, {'blockNum': '0x5309df', 'uniqueId': '0x9a25c6fe1220a07e55f28227909453fdfe1c794a1e283cdb90fedf5b655d8fd7:log:15', 'hash': '0x9a25c6fe1220a07e55f28227909453fdfe1c794a1e283cdb90fedf5b655d8fd7', 'from': '0x22b50212995f62fb8ff5f08857e01bdd8d837f1f', 'to': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'value': 9961.769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe7f0c52fa0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:30:58.000Z'}}, {'blockNum': '0x5309e2', 'uniqueId': '0xaba99a9920b4be89a6261ab9ec05593273136df71a2be2d192c9a99f17f4b4d9:log:2', 'hash': '0xaba99a9920b4be89a6261ab9ec05593273136df71a2be2d192c9a99f17f4b4d9', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xd12a65a346063d7cb051fb06adc4e9a16b49bdcf', 'value': 9950.06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe7aafaab80', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:31:36.000Z'}}, {'blockNum': '0x5309e4', 'uniqueId': '0x1f7ff49775063be92efce38cd42281599d2250df1b33ff891d5d5e388ef25c72:log:5', 'hash': '0x1f7ff49775063be92efce38cd42281599d2250df1b33ff891d5d5e388ef25c72', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3a06e5db783d0f09ab0315a5c2c3ccd48ce971a3', 'value': 11185.147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01046cabdee0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:32:02.000Z'}}, {'blockNum': '0x5309e8', 'uniqueId': '0x879812e025a18ca40e5fc37938f24b361e4738534e0b7137a99a6fd30c874ee5:log:6', 'hash': '0x879812e025a18ca40e5fc37938f24b361e4738534e0b7137a99a6fd30c874ee5', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x82efff4d821178f7c59e874280b46dd5793593a5', 'value': 3201.4648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x4a8a379b80', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:33:18.000Z'}}, {'blockNum': '0x5309ee', 'uniqueId': '0x92b5a73579fd23d7b62e5d128e463e9be9150a8816d0427794154fc459274173:log:77', 'hash': '0x92b5a73579fd23d7b62e5d128e463e9be9150a8816d0427794154fc459274173', 'from': '0x6de4acab36b34685ce2af545d052eff0d528bf19', 'to': '0x2fe458ac181a6db3c0670c5c3c5b84e7beb4aea5', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:34:41.000Z'}}, {'blockNum': '0x5309ef', 'uniqueId': '0xac40bea674882b0cf8eb024e9ef09f4f9b81d0fd48e6bc91a92a08ea7e433949:log:17', 'hash': '0xac40bea674882b0cf8eb024e9ef09f4f9b81d0fd48e6bc91a92a08ea7e433949', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xa19371a9252ed197538933338a97ceffe9cd38f3', 'value': 5982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x8b477f9e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:35:20.000Z'}}, {'blockNum': '0x5309ef', 'uniqueId': '0xa1f908d746c9d3bd675f9b24b33391c0884ade7958bfccd0de850aa87d8e76be:log:46', 'hash': '0xa1f908d746c9d3bd675f9b24b33391c0884ade7958bfccd0de850aa87d8e76be', 'from': '0x30716256c590991775a48ab28dd4b899d6c95031', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10919.144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xfe3b2b8100', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:35:20.000Z'}}, {'blockNum': '0x5309ef', 'uniqueId': '0x200f015a5aa4d9b1ffa9ee840608f329eb80d5772e6eb13d0c1ab1cabc7cda13:log:47', 'hash': '0x200f015a5aa4d9b1ffa9ee840608f329eb80d5772e6eb13d0c1ab1cabc7cda13', 'from': '0xcdefc9a25c5e811b8fb2e10fa62a1b12315e0ba9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10696.813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xf90df95220', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:35:20.000Z'}}, {'blockNum': '0x5309ef', 'uniqueId': '0xdf5033852787097cec0b4a5bb1f12e6f2a6c1794980f9b444712f82d628af848:log:48', 'hash': '0xdf5033852787097cec0b4a5bb1f12e6f2a6c1794980f9b444712f82d628af848', 'from': '0xd12a65a346063d7cb051fb06adc4e9a16b49bdcf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9950.06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe7aafaab80', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:35:20.000Z'}}, {'blockNum': '0x5309f1', 'uniqueId': '0xc915650a34b5b126a4b6d4964049dfdf4ee9da0eb479610053f42c861cb9dc5e:log:65', 'hash': '0xc915650a34b5b126a4b6d4964049dfdf4ee9da0eb479610053f42c861cb9dc5e', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xa19371a9252ed197538933338a97ceffe9cd38f3', 'value': 4985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x7410ea5900', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:35:36.000Z'}}, {'blockNum': '0x5309f2', 'uniqueId': '0x040cdf1db2a5168fdbe6b325472d21cc58f0edea7c6d0a828e1e8da51ab7ebcf:log:40', 'hash': '0x040cdf1db2a5168fdbe6b325472d21cc58f0edea7c6d0a828e1e8da51ab7ebcf', 'from': '0xb3d3d0da6243dc954ce00da272d13b5200b8edc1', 'to': '0x2fe458ac181a6db3c0670c5c3c5b84e7beb4aea5', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:35:50.000Z'}}, {'blockNum': '0x5309f7', 'uniqueId': '0xdf1a948b5cab419bfa903dd0e05a936e95e395f154581652adede81caa2c24d6:log:15', 'hash': '0xdf1a948b5cab419bfa903dd0e05a936e95e395f154581652adede81caa2c24d6', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 30076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02bc42edfc00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:36:45.000Z'}}, {'blockNum': '0x5309f9', 'uniqueId': '0xb8ab726d1d50c703ecef486ef74bb377b1b9e6361092438f0ec36584e21506ec:log:2', 'hash': '0xb8ab726d1d50c703ecef486ef74bb377b1b9e6361092438f0ec36584e21506ec', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x23bf6d9d931179b4783ee09fe50b28e2b801804e', 'value': 4984.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x740af90be0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:37:05.000Z'}}, {'blockNum': '0x5309ff', 'uniqueId': '0x65bc8ae1493f2b3a6baa1b3b8f473848e4390b62fd76e79c508cfc11e9726552:log:5', 'hash': '0x65bc8ae1493f2b3a6baa1b3b8f473848e4390b62fd76e79c508cfc11e9726552', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x23bf6d9d931179b4783ee09fe50b28e2b801804e', 'value': 9969.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe81be364e0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:39:20.000Z'}}, {'blockNum': '0x530a02', 'uniqueId': '0x560f469bd096aeffdf99314746dcbe2569dae1dc0d8cb778b27d010b7bc391f4:log:0', 'hash': '0x560f469bd096aeffdf99314746dcbe2569dae1dc0d8cb778b27d010b7bc391f4', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xc4f23f11be514bb138eac7fe718e6f943c0abaa1', 'value': 4984.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x740af90be0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:39:49.000Z'}}, {'blockNum': '0x530a05', 'uniqueId': '0x2a6e8bbbb9743ce580fefed6a661a2e23aeaf532cfdffe6b0f9d546689d6a747:log:0', 'hash': '0x2a6e8bbbb9743ce580fefed6a661a2e23aeaf532cfdffe6b0f9d546689d6a747', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x5a5f46c4d727d4c1204cd8518d9b3ece3a4d564c', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:40:31.000Z'}}, {'blockNum': '0x530a06', 'uniqueId': '0x883e4fbdf61e835b85b321afc377a9196669bc7542475bc3d45e0f53354319b9:log:110', 'hash': '0x883e4fbdf61e835b85b321afc377a9196669bc7542475bc3d45e0f53354319b9', 'from': '0xa19371a9252ed197538933338a97ceffe9cd38f3', 'to': '0x896b2222b907de1074db67b25f94c1a0f44ff16d', 'value': 10967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xff5869f700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:41:29.000Z'}}, {'blockNum': '0x530a06', 'uniqueId': '0x6c067312e510b39e451b3b71d4edc038c8962f13c24d7a992233c3caece1fe7d:log:158', 'hash': '0x6c067312e510b39e451b3b71d4edc038c8962f13c24d7a992233c3caece1fe7d', 'from': '0xa9aca5de2c7f5286d183802ea38f317e0ffcf8f4', 'to': '0x2fe458ac181a6db3c0670c5c3c5b84e7beb4aea5', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:41:29.000Z'}}, {'blockNum': '0x530a09', 'uniqueId': '0x3548063a2e0e10e46086bf2ea6e0156cfc1c1284db85278e8f2e79f71507e2bf:log:2', 'hash': '0x3548063a2e0e10e46086bf2ea6e0156cfc1c1284db85278e8f2e79f71507e2bf', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x95c399d7ea3331b3ab8d9e45218af2f5e5e0b546', 'value': 1056.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x189b235880', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:41:54.000Z'}}, {'blockNum': '0x530a0b', 'uniqueId': '0xf84369e11e949f812818bf859fd8a929869f9524dea8cb9d6e57e296199c6b20:log:36', 'hash': '0xf84369e11e949f812818bf859fd8a929869f9524dea8cb9d6e57e296199c6b20', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xdbed08ad8fe51c1572f9007b589511109c32eb2a', 'value': 4850.405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x70eeaaad20', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:42:45.000Z'}}, {'blockNum': '0x530a0e', 'uniqueId': '0x0e7d0b1698900dcffd24e4bdc0a99e13b32b9e87fa528cdd18f4377ac8c2d2ce:log:7', 'hash': '0x0e7d0b1698900dcffd24e4bdc0a99e13b32b9e87fa528cdd18f4377ac8c2d2ce', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x72b5675e2930417c3e51056b939aa86f22626ebe', 'value': 1701.879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x279ffd4460', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:43:22.000Z'}}, {'blockNum': '0x530a14', 'uniqueId': '0x536edab1db8a1e17c5223f5c2783a2c354871a27f8f6c5c63062e13e2fcc0f84:log:11', 'hash': '0x536edab1db8a1e17c5223f5c2783a2c354871a27f8f6c5c63062e13e2fcc0f84', 'from': '0x71a45af32bae715e24705ce0ab1a52ce95d1f4a1', 'to': '0xfb1bc9f77fa140cfe97fa48dd9bf263a46ae3ebe', 'value': 5000.94042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746fed7f90', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:43:58.000Z'}}, {'blockNum': '0x530a16', 'uniqueId': '0x7db21d593fba2b8545bc8efded04abff337b0284029fea26248480296daa966b:log:3', 'hash': '0x7db21d593fba2b8545bc8efded04abff337b0284029fea26248480296daa966b', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x91f41176eb10d612aefe45284f05f640aa2d0bac', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:44:16.000Z'}}, {'blockNum': '0x530a18', 'uniqueId': '0x043971c4947d6084a97e221a90cda1861ab816eee862aa43b186d2913c87ba94:log:45', 'hash': '0x043971c4947d6084a97e221a90cda1861ab816eee862aa43b186d2913c87ba94', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x156fdfa2d17f9bf75a4792e797fa30cb34c53c40', 'value': 398.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0949088200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:44:52.000Z'}}, {'blockNum': '0x530a19', 'uniqueId': '0x20d95003e740485eb082fb0bd8db2024e31978e340f4c60ef6d866ddcdf7a58d:log:31', 'hash': '0x20d95003e740485eb082fb0bd8db2024e31978e340f4c60ef6d866ddcdf7a58d', 'from': '0x2fe458ac181a6db3c0670c5c3c5b84e7beb4aea5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x015d3ef79800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:45:15.000Z'}}, {'blockNum': '0x530a19', 'uniqueId': '0x7677b4c5e2a7682b9d4273c55117c963de86870f5d6565b96c9a0e7bc496bbcc:log:32', 'hash': '0x7677b4c5e2a7682b9d4273c55117c963de86870f5d6565b96c9a0e7bc496bbcc', 'from': '0x3a06e5db783d0f09ab0315a5c2c3ccd48ce971a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11185.147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01046cabdee0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:45:15.000Z'}}, {'blockNum': '0x530a19', 'uniqueId': '0x7fe8d975b5373128dbaabaa6932a1564c6bcf424699a336406a41e8882f3be62:log:33', 'hash': '0x7fe8d975b5373128dbaabaa6932a1564c6bcf424699a336406a41e8882f3be62', 'from': '0x23bf6d9d931179b4783ee09fe50b28e2b801804e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14953.006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x015c26dc70c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:45:15.000Z'}}, {'blockNum': '0x530a19', 'uniqueId': '0xd7fba2c0afc73f34d16fa4bb593c23bac07b250a7fbf46dbfda2f08b31f46454:log:34', 'hash': '0xd7fba2c0afc73f34d16fa4bb593c23bac07b250a7fbf46dbfda2f08b31f46454', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02bc42edfc00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:45:15.000Z'}}, {'blockNum': '0x530a1c', 'uniqueId': '0x0505f9b141ab2e4a19bce0b6b24742ddfc9aa0f9d966159644237a40b52e9d12:log:6', 'hash': '0x0505f9b141ab2e4a19bce0b6b24742ddfc9aa0f9d966159644237a40b52e9d12', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x2c359bdac0b1a9711119decc4f1a20530d28b260', 'value': 2957.9993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x44df0cbc90', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:45:42.000Z'}}, {'blockNum': '0x530a1e', 'uniqueId': '0x34f10cd33fa587216695f8920fab345a2b9ed3298c8f0613ea977dc123b245a6:log:52', 'hash': '0x34f10cd33fa587216695f8920fab345a2b9ed3298c8f0613ea977dc123b245a6', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x82efff4d821178f7c59e874280b46dd5793593a5', 'value': 12031.9524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x011824065e40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:45:47.000Z'}}, {'blockNum': '0x530a20', 'uniqueId': '0xd5f0f584ae1df2b5a7009960131b1fc45dee99a26678f2353e124f1ba5f47b1f:log:4', 'hash': '0xd5f0f584ae1df2b5a7009960131b1fc45dee99a26678f2353e124f1ba5f47b1f', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x91f41176eb10d612aefe45284f05f640aa2d0bac', 'value': 3341.944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x4dcf89db00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:47:25.000Z'}}, {'blockNum': '0x530a20', 'uniqueId': '0x35473a2e68705d869b5a79eb351fdd206438541a964a1a12bc29b56bc4eb31d5:log:29', 'hash': '0x35473a2e68705d869b5a79eb351fdd206438541a964a1a12bc29b56bc4eb31d5', 'from': '0xfc5bb2c1ec69bfb14b329368bd35bfcb5d1f1e60', 'to': '0xfb1bc9f77fa140cfe97fa48dd9bf263a46ae3ebe', 'value': 5001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x7470486900', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:47:25.000Z'}}, {'blockNum': '0x530a25', 'uniqueId': '0x3ace561b2dfbc90ed03140e63776ed2c5a2c9acb1f9f9ac93ce2009a8b575487:log:3', 'hash': '0x3ace561b2dfbc90ed03140e63776ed2c5a2c9acb1f9f9ac93ce2009a8b575487', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:48:12.000Z'}}, {'blockNum': '0x530a2a', 'uniqueId': '0xe13c709494505cf9d354ee9034c86ed8acb1f850ac529ca3dbd4cac87a96cc9c:log:5', 'hash': '0xe13c709494505cf9d354ee9034c86ed8acb1f850ac529ca3dbd4cac87a96cc9c', 'from': '0x6720c9b8b8aa9ff672195647976bcb9ba562c85f', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:48:55.000Z'}}, {'blockNum': '0x530a2f', 'uniqueId': '0x52832cb7e157e4311e41959dbda07d3d18ac3c6228fd7cab591705312112c0d2:log:2', 'hash': '0x52832cb7e157e4311e41959dbda07d3d18ac3c6228fd7cab591705312112c0d2', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x156fdfa2d17f9bf75a4792e797fa30cb34c53c40', 'value': 4220.7328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x6245872600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:49:55.000Z'}}, {'blockNum': '0x530a33', 'uniqueId': '0x6cc40d39e640654a885255599201ec908ec4fe10d24d76ac6665b176749adc17:log:7', 'hash': '0x6cc40d39e640654a885255599201ec908ec4fe10d24d76ac6665b176749adc17', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x23bf6d9d931179b4783ee09fe50b28e2b801804e', 'value': 9968.006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe815f217c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:50:41.000Z'}}, {'blockNum': '0x530a38', 'uniqueId': '0x38e80bd31273be9f8d49a28dfbae5842afcd36105369c5c2a8b90a0483db064f:log:0', 'hash': '0x38e80bd31273be9f8d49a28dfbae5842afcd36105369c5c2a8b90a0483db064f', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x896b2222b907de1074db67b25f94c1a0f44ff16d', 'value': 5982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x8b477f9e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:52:22.000Z'}}, {'blockNum': '0x530a43', 'uniqueId': '0xbe378dadfc9ae9cef7f3aee2d50dadf7fa30591704b6f7589aba60cdd5908a61:log:52', 'hash': '0xbe378dadfc9ae9cef7f3aee2d50dadf7fa30591704b6f7589aba60cdd5908a61', 'from': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:55:11.000Z'}}, {'blockNum': '0x530a43', 'uniqueId': '0xcb6bdf92b6cbbd867d8b340b6aa67e7becdb427f46fb0474a38c92c75ca790dc:log:53', 'hash': '0xcb6bdf92b6cbbd867d8b340b6aa67e7becdb427f46fb0474a38c92c75ca790dc', 'from': '0x23bf6d9d931179b4783ee09fe50b28e2b801804e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9968.006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe815f217c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:55:11.000Z'}}, {'blockNum': '0x530a43', 'uniqueId': '0xf76d9c6b39ae4c7e299e436b75868437cd7d383d732c3a414a174695475fbc16:log:54', 'hash': '0xf76d9c6b39ae4c7e299e436b75868437cd7d383d732c3a414a174695475fbc16', 'from': '0xfb1bc9f77fa140cfe97fa48dd9bf263a46ae3ebe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10001.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe8e04486c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:55:11.000Z'}}, {'blockNum': '0x530a4f', 'uniqueId': '0xbeaa7c3c482640e3232215d7e2a6ef41c63d85715ba7157f9b01c2a9b128bae7:log:69', 'hash': '0xbeaa7c3c482640e3232215d7e2a6ef41c63d85715ba7157f9b01c2a9b128bae7', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 24876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02433083ac00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:58:06.000Z'}}, {'blockNum': '0x530a58', 'uniqueId': '0xd75fc6c84deec855e258301fa1079072a07bebdd7c72ec53a90c7ea42f308844:log:25', 'hash': '0xd75fc6c84deec855e258301fa1079072a07bebdd7c72ec53a90c7ea42f308844', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xfaaf6e38dbdf9086981b591b224cbe39d56edc9c', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:00:11.000Z'}}, {'blockNum': '0x530a5e', 'uniqueId': '0x2647ca9d60675ab1b81394f49ffe580b7ae2abf0893998779594728e765078f8:log:134', 'hash': '0x2647ca9d60675ab1b81394f49ffe580b7ae2abf0893998779594728e765078f8', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 20353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01d9e1556100', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:01:51.000Z'}}, {'blockNum': '0x530a6b', 'uniqueId': '0x9c726e2a3ddc6421114ace9b692b084cc3ba9230e925a916ace2ff14090976d3:log:90', 'hash': '0x9c726e2a3ddc6421114ace9b692b084cc3ba9230e925a916ace2ff14090976d3', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02433083ac00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:05:05.000Z'}}, {'blockNum': '0x530a6b', 'uniqueId': '0x4e211b4022777f7fb16e057621ad1888ab82bb0f07595b8ee41540d93316aba1:log:91', 'hash': '0x4e211b4022777f7fb16e057621ad1888ab82bb0f07595b8ee41540d93316aba1', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01d9e1556100', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:05:05.000Z'}}, {'blockNum': '0x530a6c', 'uniqueId': '0x655aa969260fef99f9499a577f2638187ff18463eb7315f3a2bb89ac73c3ac8d:log:0', 'hash': '0x655aa969260fef99f9499a577f2638187ff18463eb7315f3a2bb89ac73c3ac8d', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x72b5675e2930417c3e51056b939aa86f22626ebe', 'value': 1751.729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x28c91e54a0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:05:12.000Z'}}, {'blockNum': '0x530a79', 'uniqueId': '0xf1438e71ab9bee33f77c3fde80c073fd5ffd308b4e9877cf74ba84c35b5aba21:log:79', 'hash': '0xf1438e71ab9bee33f77c3fde80c073fd5ffd308b4e9877cf74ba84c35b5aba21', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 27169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x027893dc0100', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:09:46.000Z'}}, {'blockNum': '0x530a82', 'uniqueId': '0x40b9d2427dfc03b239295f00632df2be0dc601e374274f1c5bac2596539ff287:log:84', 'hash': '0x40b9d2427dfc03b239295f00632df2be0dc601e374274f1c5bac2596539ff287', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x0da2373219faff07d8190e39f77017b8e45ad4cf', 'value': 21073.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01eaa6d5bb40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:11:50.000Z'}}, {'blockNum': '0x530a86', 'uniqueId': '0x842f44ed10888983a849fd3875100756f55c8f61f70c3761757296b9c6c37ec4:log:10', 'hash': '0x842f44ed10888983a849fd3875100756f55c8f61f70c3761757296b9c6c37ec4', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x896b2222b907de1074db67b25f94c1a0f44ff16d', 'value': 5982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x8b477f9e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:12:26.000Z'}}, {'blockNum': '0x530a92', 'uniqueId': '0x50bb2c67121cf16b3b03b59a6b9367c9c812ab5f855aba1ed31c8c0253ff4eb9:log:9', 'hash': '0x50bb2c67121cf16b3b03b59a6b9367c9c812ab5f855aba1ed31c8c0253ff4eb9', 'from': '0xe1c46243a7ea1e047a85d3cccb5c41c72ee7d892', 'to': '0x647c9baeacb9502cee126b81d5e373b500dfa88b', 'value': 342.616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x07fa268700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:15:22.000Z'}}, {'blockNum': '0x530a92', 'uniqueId': '0xc235da58f96ef1a6dae1009d40d33cc9b1340738e9277c0e9d7d2501a5ba1ccb:log:31', 'hash': '0xc235da58f96ef1a6dae1009d40d33cc9b1340738e9277c0e9d7d2501a5ba1ccb', 'from': '0x0da2373219faff07d8190e39f77017b8e45ad4cf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21073.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01eaa6d5bb40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:15:22.000Z'}}, {'blockNum': '0x530a92', 'uniqueId': '0x7b8ef5659ed0c10e89e227ec11b493b3e6e0dff20bf1dc9d554faf768a8c7515:log:33', 'hash': '0x7b8ef5659ed0c10e89e227ec11b493b3e6e0dff20bf1dc9d554faf768a8c7515', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x027893dc0100', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:15:22.000Z'}}, {'blockNum': '0x530a92', 'uniqueId': '0x45d1489e3fa08d668ac80da3dd04d5602216ec93d6aa0f39b4a2588289205c81:log:34', 'hash': '0x45d1489e3fa08d668ac80da3dd04d5602216ec93d6aa0f39b4a2588289205c81', 'from': '0x72b5675e2930417c3e51056b939aa86f22626ebe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6281.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x923e45ff80', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:15:22.000Z'}}, {'blockNum': '0x530a9f', 'uniqueId': '0xcdb5340a4380b03137e7825540f95b657748260178f6e510f0da45db9849ed8d:log:4', 'hash': '0xcdb5340a4380b03137e7825540f95b657748260178f6e510f0da45db9849ed8d', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x896b2222b907de1074db67b25f94c1a0f44ff16d', 'value': 7976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xb9b4aa2800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:17:08.000Z'}}, {'blockNum': '0x530aa4', 'uniqueId': '0x6d9bc26a0f39753b5a366f75c8eac96bebe7c7d5346aa3ef766c4ea0023244a5:log:4', 'hash': '0x6d9bc26a0f39753b5a366f75c8eac96bebe7c7d5346aa3ef766c4ea0023244a5', 'from': '0xdae4d2c84046e46da756fbf664881e75c55b0808', 'to': '0xc354d1b466986f2149ffdafc4d68e16fb21b0b3e', 'value': 17058.29224104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x018d2b584ea8', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:18:16.000Z'}}, {'blockNum': '0x530aa4', 'uniqueId': '0xafe3dd82f07d2487732c43ac00a6f88e45b08ca937482d94c15591d69f5f69fd:log:18', 'hash': '0xafe3dd82f07d2487732c43ac00a6f88e45b08ca937482d94c15591d69f5f69fd', 'from': '0xc0cbd93be551016e000482a32c91402af64e587d', 'to': '0x72dafbe65ba160b840da3d58fb6395da94e74599', 'value': 986.55397913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x16f851e819', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:18:16.000Z'}}, {'blockNum': '0x530aad', 'uniqueId': '0x2958424aada3967534911e91410e78e2018b5221731fe00902519dc9b08922cb:log:22', 'hash': '0x2958424aada3967534911e91410e78e2018b5221731fe00902519dc9b08922cb', 'from': '0x82efff4d821178f7c59e874280b46dd5793593a5', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 15233.4172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0162ae3df9c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:19:53.000Z'}}, {'blockNum': '0x530aad', 'uniqueId': '0xaf8c3343d29020e3101035221f23402aab19b6994fa11264135e5c418315d74d:log:25', 'hash': '0xaf8c3343d29020e3101035221f23402aab19b6994fa11264135e5c418315d74d', 'from': '0xdbed08ad8fe51c1572f9007b589511109c32eb2a', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 4850.4049999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x70eeaaad16', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:19:53.000Z'}}, {'blockNum': '0x530aad', 'uniqueId': '0xe5c5648b80c6daa41a0bfdab4225479ba34060016a2f56703f59eb1301ef8818:log:26', 'hash': '0xe5c5648b80c6daa41a0bfdab4225479ba34060016a2f56703f59eb1301ef8818', 'from': '0x156fdfa2d17f9bf75a4792e797fa30cb34c53c40', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 6605.5705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x99cc44b090', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:19:53.000Z'}}, {'blockNum': '0x530aad', 'uniqueId': '0xdbedb029f4d36236096e2b6dd28b53e2e6bbcf6f227a4f97db8ab00f0903145d:log:27', 'hash': '0xdbedb029f4d36236096e2b6dd28b53e2e6bbcf6f227a4f97db8ab00f0903145d', 'from': '0xd972a9301458c1517fb25e4e05e939297f835402', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 3124.2034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x48bdb41120', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:19:53.000Z'}}, {'blockNum': '0x530aad', 'uniqueId': '0x43549fa04d8dc15afc3e66b8e196e6aaa9c63cd7b4a7e4961a6ba2655396e731:log:58', 'hash': '0x43549fa04d8dc15afc3e66b8e196e6aaa9c63cd7b4a7e4961a6ba2655396e731', 'from': '0xfa494915700050201e283533bf2ba7a690a17b3e', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 61375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0594ff81df00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:19:53.000Z'}}, {'blockNum': '0x530ac3', 'uniqueId': '0x7c09788c4be3637fd51891cb98aec9216c93088122256f82c55fc15da745fa07:log:4', 'hash': '0x7c09788c4be3637fd51891cb98aec9216c93088122256f82c55fc15da745fa07', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x0de9aae7d237afacfac7bc6a9c9898a65f23600e', 'value': 7056.766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xa44d9a62c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:24:01.000Z'}}, {'blockNum': '0x530aca', 'uniqueId': '0x38e8d7e82b3edff48eaef785f54d12db8ab55878d783d17257d7135307140c25:log:165', 'hash': '0x38e8d7e82b3edff48eaef785f54d12db8ab55878d783d17257d7135307140c25', 'from': '0xc354d1b466986f2149ffdafc4d68e16fb21b0b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17058.29224104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x018d2b584ea8', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:26:07.000Z'}}, {'blockNum': '0x530acb', 'uniqueId': '0x1553d517403861684cd08ca15a0f4350fb6d8b94b9a96ce7166788de0a668752:log:19', 'hash': '0x1553d517403861684cd08ca15a0f4350fb6d8b94b9a96ce7166788de0a668752', 'from': '0x0de9aae7d237afacfac7bc6a9c9898a65f23600e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7056.766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xa44d9a62c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:26:13.000Z'}}, {'blockNum': '0x530ade', 'uniqueId': '0x56ce4400af18fcdd39be6fb11643073cab6cdae99fef544165965db94bf4403b:log:104', 'hash': '0x56ce4400af18fcdd39be6fb11643073cab6cdae99fef544165965db94bf4403b', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x0eed5b50cb37ae0389c16a338f3ddbdaf0fb307b', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:32:09.000Z'}}, {'blockNum': '0x530b14', 'uniqueId': '0x3073fb5ecb225e8682f78946d7f9b91078782b5e9086a8053c17932597fc7c1b:log:8', 'hash': '0x3073fb5ecb225e8682f78946d7f9b91078782b5e9086a8053c17932597fc7c1b', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 26028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x025e02f82c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:44:34.000Z'}}, {'blockNum': '0x530b25', 'uniqueId': '0x925b273c16de7f21f54848163e306305dc974d230c28e5dbeedb9b33bea7ac6a:log:87', 'hash': '0x925b273c16de7f21f54848163e306305dc974d230c28e5dbeedb9b33bea7ac6a', 'from': '0x9d54b01b834cac9d90c37c83f159021d75aa60b9', 'to': '0x192ef9b8984aa79044b18f8fb4c24c401b06e168', 'value': 11274.902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x010683a721c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:47:24.000Z'}}, {'blockNum': '0x530b49', 'uniqueId': '0x32ab39b0c4013cea8be16f65f51f9572f24a22231b3c47f5e43a887cc17d38c3:log:23', 'hash': '0x32ab39b0c4013cea8be16f65f51f9572f24a22231b3c47f5e43a887cc17d38c3', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 25735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0257308da700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:54:58.000Z'}}, {'blockNum': '0x530b4a', 'uniqueId': '0xf1bc36e4425b2291494e08e26ff2890ccbec582040a61dddf3d2a5b3ee4ca40a:log:32', 'hash': '0xf1bc36e4425b2291494e08e26ff2890ccbec582040a61dddf3d2a5b3ee4ca40a', 'from': '0x192ef9b8984aa79044b18f8fb4c24c401b06e168', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11274.902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x010683a721c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:55:09.000Z'}}, {'blockNum': '0x530b4a', 'uniqueId': '0x17cb5f11f428438f526430982fe1c351538cbe6271c0b3625007e0d23cded4f6:log:35', 'hash': '0x17cb5f11f428438f526430982fe1c351538cbe6271c0b3625007e0d23cded4f6', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x025e02f82c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:55:09.000Z'}}, {'blockNum': '0x530b51', 'uniqueId': '0xe833da5a1528d4e5c6ec78d8172163b1e9fe1205f25d286ea755985a33018bb1:log:25', 'hash': '0xe833da5a1528d4e5c6ec78d8172163b1e9fe1205f25d286ea755985a33018bb1', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 20241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01d745c2f100', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:56:51.000Z'}}, {'blockNum': '0x530b5a', 'uniqueId': '0xfd896ef9d3a79b58132fa615b53486d08fd4d63490ecfee63fc1cb7cdcad8f14:log:72', 'hash': '0xfd896ef9d3a79b58132fa615b53486d08fd4d63490ecfee63fc1cb7cdcad8f14', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x4102c41cb9b353f175ce5b32839910a8fc4f20a9', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:00:05.000Z'}}, {'blockNum': '0x530b5d', 'uniqueId': '0xb0112ca0545eecbb1d81b6557abfdb9cd3c38bb335db17cf46d6d89e5d66ec78:log:0', 'hash': '0xb0112ca0545eecbb1d81b6557abfdb9cd3c38bb335db17cf46d6d89e5d66ec78', 'from': '0xfa0debf91414a1e22053c3e1d35cc2c9feeb646c', 'to': '0x49de4302450ccb65068eaf145c50f93b1a313869', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:01:08.000Z'}}, {'blockNum': '0x530b6c', 'uniqueId': '0xf0e15bf7b91805593cc3e1f80a2a699f656461c36f1a43d910c92b3e910fb85f:log:45', 'hash': '0xf0e15bf7b91805593cc3e1f80a2a699f656461c36f1a43d910c92b3e910fb85f', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0257308da700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:05:38.000Z'}}, {'blockNum': '0x530b6c', 'uniqueId': '0x784060d28f3ba56fc48efce992c5b74071711a07c2e5115a313f72400413bd42:log:48', 'hash': '0x784060d28f3ba56fc48efce992c5b74071711a07c2e5115a313f72400413bd42', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01d745c2f100', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:05:38.000Z'}}, {'blockNum': '0x530ba3', 'uniqueId': '0xc0914a12629a89cc113b2eb4865ad06f343302e34df127d6c57222477a06e965:log:10', 'hash': '0xc0914a12629a89cc113b2eb4865ad06f343302e34df127d6c57222477a06e965', 'from': '0x590a4ebeec7a69b95d5a60e38634d55de86ba0eb', 'to': '0x4e6d821e4201f6997dca5078cb6f023004f2a756', 'value': 33000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03005753e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:17:59.000Z'}}, {'blockNum': '0x530bd1', 'uniqueId': '0xd641f9d199cdd9d51ce927754c97e77f5c7c9be9eee4ea5d68d7c9df704766c0:log:6', 'hash': '0xd641f9d199cdd9d51ce927754c97e77f5c7c9be9eee4ea5d68d7c9df704766c0', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xf62315a69bfd53856f565459e115ac6bd768fee2', 'value': 3670.604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x5576813780', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:26:21.000Z'}}, {'blockNum': '0x530bd7', 'uniqueId': '0x6da1396007d0ce716f59bb001ea7136c34389a4635e2a31fdb8dec416c2e851e:log:1', 'hash': '0x6da1396007d0ce716f59bb001ea7136c34389a4635e2a31fdb8dec416c2e851e', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 24621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x023d40988d00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:26:39.000Z'}}, {'blockNum': '0x530bda', 'uniqueId': '0xb12f0b6a9683f9ac49a0dd733db4e21768dbe2473adcf2dd9784ef8323f4dc2d:log:4', 'hash': '0xb12f0b6a9683f9ac49a0dd733db4e21768dbe2473adcf2dd9784ef8323f4dc2d', 'from': '0x1794b02d2a49685b3d29d3ada018ef98556645b0', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 24883.042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02435a7ce940', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:27:14.000Z'}}, {'blockNum': '0x530bde', 'uniqueId': '0x95e83ae49ab04d139df5b700e917732231ad86bc8d36a203ea5c1d58e5d03d22:log:8', 'hash': '0x95e83ae49ab04d139df5b700e917732231ad86bc8d36a203ea5c1d58e5d03d22', 'from': '0xb77c85b0ba73ee51bb98d2e8d3a0ae48e562f914', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 13467.256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01398f19db00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:28:49.000Z'}}, {'blockNum': '0x530be3', 'uniqueId': '0x993d62d953cc8f9f046325cf02678109cd8e6577a3e3fb92d694d1e71d7b12c2:log:10', 'hash': '0x993d62d953cc8f9f046325cf02678109cd8e6577a3e3fb92d694d1e71d7b12c2', 'from': '0x7826f8c66bc0e9dfdf5dfc5d15d07a4b9a068f07', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 12139.3684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x011aa4462d40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:29:40.000Z'}}, {'blockNum': '0x530be5', 'uniqueId': '0xdbd18e64412ef576aca2bb5bba18bcaec75290fe4a8026508e06f08439c035a3:log:30', 'hash': '0xdbd18e64412ef576aca2bb5bba18bcaec75290fe4a8026508e06f08439c035a3', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x3d697c0910fb6ccd4411163336503dc62d24a1ff', 'value': 9200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xd63445f000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:30:02.000Z'}}, {'blockNum': '0x530be5', 'uniqueId': '0x36b08b93303179cb6accc785ea88904e00a0d71bfafff3bb98ed82a4a5ab2338:log:31', 'hash': '0x36b08b93303179cb6accc785ea88904e00a0d71bfafff3bb98ed82a4a5ab2338', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x710aa2a3f8993b720a54eaf7f360f79c66bcf7ee', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:30:02.000Z'}}, {'blockNum': '0x530be6', 'uniqueId': '0xcb429bc2b2f0e58eb38197a123d8cef004c93279b8ec605a254dd1d062230c43:log:43', 'hash': '0xcb429bc2b2f0e58eb38197a123d8cef004c93279b8ec605a254dd1d062230c43', 'from': '0x24ca730d103d7062f0b513c53e1ea12dde3d04c9', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 16757.5939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01862b0b0d30', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:30:06.000Z'}}, {'blockNum': '0x530bea', 'uniqueId': '0x1896d96fcf5221d70ba7b5f8385d711699d178ae55bca7174882d5651feff770:log:0', 'hash': '0x1896d96fcf5221d70ba7b5f8385d711699d178ae55bca7174882d5651feff770', 'from': '0xdd6d11ddefb3deea6d284be7561b3f15fccad029', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 89828.3409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x082b7aa29010', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:31:12.000Z'}}, {'blockNum': '0x530bed', 'uniqueId': '0xc6e9a6747f449d9d12fe04ae8da538c60b598257caf738cc546cee51087f1849:log:8', 'hash': '0xc6e9a6747f449d9d12fe04ae8da538c60b598257caf738cc546cee51087f1849', 'from': '0xd6f90da8c43ae2a6570d57b262f208b974af75fb', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 44460.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x040b2a4f6e40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:32:18.000Z'}}, {'blockNum': '0x530bf0', 'uniqueId': '0x4cf630c2d1b0b5903f93b24767f2a4e99c60caef86449c0fbec545fca9457f1d:log:10', 'hash': '0x4cf630c2d1b0b5903f93b24767f2a4e99c60caef86449c0fbec545fca9457f1d', 'from': '0xcab0029621156cf11bb9a14f6f775b57f1a649c9', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 198049.6748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1203340d2ac0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:32:58.000Z'}}, {'blockNum': '0x530bf5', 'uniqueId': '0xf1b1614df46c1b4a404b8abf604a64571f3791559875c8970ab8a472593c06af:log:10', 'hash': '0xf1b1614df46c1b4a404b8abf604a64571f3791559875c8970ab8a472593c06af', 'from': '0x3eb3f0db3a63337704cd7c050f522acfcdbb8c26', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 24694.124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x023ef472eb80', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:33:35.000Z'}}, {'blockNum': '0x530bf8', 'uniqueId': '0x70b05b4fca5a3bcd1997b04f89f10b0ed257128cc84c1db4911f4e279d9295d7:log:39', 'hash': '0x70b05b4fca5a3bcd1997b04f89f10b0ed257128cc84c1db4911f4e279d9295d7', 'from': '0x1c057ba29b7bcf22afe3d0a15c1854df24361f8b', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 50932.5844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x04a1dddc2d40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:34:18.000Z'}}, {'blockNum': '0x530bfb', 'uniqueId': '0xdec31753ef264f8eaa0091e2317cdc90d8aabc5d2d888b04d5f51d90cec9aa3d:log:17', 'hash': '0xdec31753ef264f8eaa0091e2317cdc90d8aabc5d2d888b04d5f51d90cec9aa3d', 'from': '0x14eb37f9b92a0cbef4cc52f06d59a8007aa5400d', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 26281.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0263e7cd2880', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:35:12.000Z'}}, {'blockNum': '0x530bfb', 'uniqueId': '0x5f4a731181b22b93490e22d55bfdefa347688e1b04a40278006db2881ea9b9e5:log:62', 'hash': '0x5f4a731181b22b93490e22d55bfdefa347688e1b04a40278006db2881ea9b9e5', 'from': '0x3d697c0910fb6ccd4411163336503dc62d24a1ff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xd63445f000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:35:12.000Z'}}, {'blockNum': '0x530bfb', 'uniqueId': '0xe978102c26f59d10516f670d9dbdf8470739189ab23c7fe0da573434f43ae649:log:64', 'hash': '0xe978102c26f59d10516f670d9dbdf8470739189ab23c7fe0da573434f43ae649', 'from': '0x4e6d821e4201f6997dca5078cb6f023004f2a756', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03005753e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:35:12.000Z'}}, {'blockNum': '0x530bfb', 'uniqueId': '0x17c2d4e5260b0cd340c384b405ae0422528c4bf2c5af15361caefb7294f81268:log:81', 'hash': '0x17c2d4e5260b0cd340c384b405ae0422528c4bf2c5af15361caefb7294f81268', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x023d40988d00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:35:12.000Z'}}, {'blockNum': '0x530c19', 'uniqueId': '0xb3aaf778efadd5ed924f3ae10aac84a76124ac27308eefb040248b31e7e654ef:log:53', 'hash': '0xb3aaf778efadd5ed924f3ae10aac84a76124ac27308eefb040248b31e7e654ef', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x4ee1fde33190e74895abf0f1f22270aa05aa02f7', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:40:47.000Z'}}, {'blockNum': '0x530c35', 'uniqueId': '0x507d7f87b7224c252ec48080fd851b2bae80d3472c48d646bb618a782afcd13d:log:8', 'hash': '0x507d7f87b7224c252ec48080fd851b2bae80d3472c48d646bb618a782afcd13d', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 36010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03466c536a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:48:51.000Z'}}, {'blockNum': '0x530c43', 'uniqueId': '0x140fe9152789d827e56d3fcc11830f17603622eb934ea6050936fcb39883e6a3:log:125', 'hash': '0x140fe9152789d827e56d3fcc11830f17603622eb934ea6050936fcb39883e6a3', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 20308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01d8d51cd400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:53:34.000Z'}}, {'blockNum': '0x530c4e', 'uniqueId': '0xea48117405a4a04289397b66a0a74cb33aff2b699749126ae5f19f060c63ede6:log:54', 'hash': '0xea48117405a4a04289397b66a0a74cb33aff2b699749126ae5f19f060c63ede6', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03466c536a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:55:03.000Z'}}, {'blockNum': '0x530c4f', 'uniqueId': '0x5bbe888b3f9d850218deeb0763523a2fe388debb5f71bb1cfb1323065a8a077a:log:3', 'hash': '0x5bbe888b3f9d850218deeb0763523a2fe388debb5f71bb1cfb1323065a8a077a', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01d8d51cd400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:55:06.000Z'}}, {'blockNum': '0x530c55', 'uniqueId': '0x6daeafa2d84d121e990b3a24ff866fd6cdd003d9baa430fae608e5a9e86bfe37:log:49', 'hash': '0x6daeafa2d84d121e990b3a24ff866fd6cdd003d9baa430fae608e5a9e86bfe37', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'value': 52950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x04d0d6981600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:56:32.000Z'}}]}}
Number of returned transfers: 698
Answer is complete
symbol OAX
group BPS
date 2018-04-29
hour 19:00
exchange binance
Name: 296, dtype: object
HERE
Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps: 2018-04-29 19:00:00 2018-04-29 07:00:00 2018-04-30 07:00:00
Unix timestamps: 1524978000.0 1525064400.0
Hex Block Numbers: 0x544c58 0x5462dc
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x544cf8', 'uniqueId': '0xaa2200066ff8e9578594de8b8f3ab8a5269f5ca9c0ab47f868803ce65fedb593:log:4', 'hash': '0xaa2200066ff8e9578594de8b8f3ab8a5269f5ca9c0ab47f868803ce65fedb593', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x94005fd47c5c7c4141e4e544d9a1f5f1c6d07fa4', 'value': 948.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x336f3ebd0acaa00000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T05:37:07.000Z'}}, {'blockNum': '0x544d0c', 'uniqueId': '0x5861950b57e75db3a469a962c4854f9436f9c0efb417053d7b845fd7dcb616e8:log:67', 'hash': '0x5861950b57e75db3a469a962c4854f9436f9c0efb417053d7b845fd7dcb616e8', 'from': '0x94005fd47c5c7c4141e4e544d9a1f5f1c6d07fa4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 948.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x336f3ebd0acaa00000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T05:43:08.000Z'}}, {'blockNum': '0x544dd3', 'uniqueId': '0xb699606a2af40906690b7cd118da0805fb852e89ecbca876a99589720eb6d667:log:1', 'hash': '0xb699606a2af40906690b7cd118da0805fb852e89ecbca876a99589720eb6d667', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'value': 133.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x07425fe383b08f0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T06:32:33.000Z'}}, {'blockNum': '0x545104', 'uniqueId': '0x1965dbca5169053bda7cf96addecf77fa647c2bf422a4a394727c9f76f763491:log:25', 'hash': '0x1965dbca5169053bda7cf96addecf77fa647c2bf422a4a394727c9f76f763491', 'from': '0xdad57c877d4b5f4d99d60e43628ea00f21b2b9d9', 'to': '0x368d30d563dfca212864c3f7afd41e1bd11a6a22', 'value': 40.303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x022f5104f72e918000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T10:02:58.000Z'}}, {'blockNum': '0x5452ed', 'uniqueId': '0xf3f5212000d7152f16cd549d43f87916c1df149ab3926ece71f9437560c2a8e3:log:87', 'hash': '0xf3f5212000d7152f16cd549d43f87916c1df149ab3926ece71f9437560c2a8e3', 'from': '0x43ebb7c59cc1e16f63fb8ff66b72280b1b072d34', 'to': '0x8e2635d0d48bde2da69bdd909222472b0dc50a74', 'value': 957.36, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x33e609f7b077f80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T11:56:05.000Z'}}, {'blockNum': '0x54530d', 'uniqueId': '0x606948bf42c09b702beea8db738d9859618bfd998829d35702917eeef10724cc:log:77', 'hash': '0x606948bf42c09b702beea8db738d9859618bfd998829d35702917eeef10724cc', 'from': '0x8e2635d0d48bde2da69bdd909222472b0dc50a74', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 957.36, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x33e609f7b077f80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T12:03:08.000Z'}}, {'blockNum': '0x5454d5', 'uniqueId': '0xc9205f61d731a4303c572b0ed8b8c4e97b9f9134bc142477762a03c34e0314b5:log:84', 'hash': '0xc9205f61d731a4303c572b0ed8b8c4e97b9f9134bc142477762a03c34e0314b5', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0f9ccd8a1c50800000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T14:03:30.000Z'}}, {'blockNum': '0x5454e4', 'uniqueId': '0xd39c9cdafa7f22b43c93fcb4be36f403a4d30400db695711b2ef8b47f6ddbdbf:log:59', 'hash': '0xd39c9cdafa7f22b43c93fcb4be36f403a4d30400db695711b2ef8b47f6ddbdbf', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x25f273933db5700000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T14:06:58.000Z'}}, {'blockNum': '0x5454f3', 'uniqueId': '0xfd6ebb26c79046726c357ea000b5ede1000a0dd55d811f30ff7cb91b5ed21645:log:18', 'hash': '0xfd6ebb26c79046726c357ea000b5ede1000a0dd55d811f30ff7cb91b5ed21645', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 3794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xcdac53b286c8080000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T14:09:47.000Z'}}, {'blockNum': '0x545502', 'uniqueId': '0x1c4b5fd886c3f16cdcc320b003e9b81f01df78672e3c73eeace5756cd3093ee4:log:11', 'hash': '0x1c4b5fd886c3f16cdcc320b003e9b81f01df78672e3c73eeace5756cd3093ee4', 'from': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xcdac53b286c8080000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T14:13:19.000Z'}}, {'blockNum': '0x5455cf', 'uniqueId': '0x5262023c4ba456d9e9d36b0e622801df2e808f3e73514a9a87f643f1984071be:log:4', 'hash': '0x5262023c4ba456d9e9d36b0e622801df2e808f3e73514a9a87f643f1984071be', 'from': '0x2445c3bc5c3956b6cb7593143b2351a059ca8a03', 'to': '0x975c83d551f735a9109144c07171273d3f10708b', 'value': 473.8932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x19b096da9b31250000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T15:08:27.000Z'}}, {'blockNum': '0x545614', 'uniqueId': '0x61e6f64cf8fd448d280267c990f1df1a6856d028f7216fa68d45946d70fd6d13:log:2', 'hash': '0x61e6f64cf8fd448d280267c990f1df1a6856d028f7216fa68d45946d70fd6d13', 'from': '0x3973b17380b00ba475963042e786d6cea078ce70', 'to': '0xae8a6dce6010babc57af1ef80083c9f0ac999500', 'value': 52.74625275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x02dc00556a1cb88c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T15:24:25.000Z'}}, {'blockNum': '0x545684', 'uniqueId': '0xdb41b5293a0536e9aa3ef5096b3dd25829bbb668e4ab0ced5c05e175ea408b12:log:53', 'hash': '0xdb41b5293a0536e9aa3ef5096b3dd25829bbb668e4ab0ced5c05e175ea408b12', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x358f411d5a05f00000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T15:53:09.000Z'}}, {'blockNum': '0x545714', 'uniqueId': '0x0b99589a4083b79fdabb0216a6c084041927da6394b8da02f26a64aaf8a3d49d:log:46', 'hash': '0x0b99589a4083b79fdabb0216a6c084041927da6394b8da02f26a64aaf8a3d49d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 3787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xcd4b2eb39d344c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T16:30:29.000Z'}}, {'blockNum': '0x545724', 'uniqueId': '0x957fa964a662943c90524be8fdb9df5c6acc1ed17f5b96eb09008bf335009ba1:log:97', 'hash': '0x957fa964a662943c90524be8fdb9df5c6acc1ed17f5b96eb09008bf335009ba1', 'from': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xcd4b2eb39d344c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T16:33:34.000Z'}}, {'blockNum': '0x54579c', 'uniqueId': '0xafe90f7b72458dd9bb9726656604ab6d3a752572dd89680ef6566267392e384c:log:13', 'hash': '0xafe90f7b72458dd9bb9726656604ab6d3a752572dd89680ef6566267392e384c', 'from': '0xd959f6b80fc67bf41ecc4241540b2c10fd04cddc', 'to': '0x398cab8069c577f2d0225f0bccf9b13f4c8fe918', 'value': 18999.376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0405f54f00fde2080000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T17:02:12.000Z'}}, {'blockNum': '0x5457c2', 'uniqueId': '0x9510915ef2ab8d09edfc1b6aca919306548dac1668365cdd792ea4ff24bfdd79:log:25', 'hash': '0x9510915ef2ab8d09edfc1b6aca919306548dac1668365cdd792ea4ff24bfdd79', 'from': '0x398cab8069c577f2d0225f0bccf9b13f4c8fe918', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18999.376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0405f54f00fde2080000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T17:13:19.000Z'}}, {'blockNum': '0x545819', 'uniqueId': '0x63b989bccfd6bc9eb9783f2038e491164ea2cbbd097cf28d8d1506cebe3595c6:log:2', 'hash': '0x63b989bccfd6bc9eb9783f2038e491164ea2cbbd097cf28d8d1506cebe3595c6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1f77fecbc6094fa0cd8a10398f04918d8a4fb47b', 'value': 2931.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x9eeee5f6a86a3c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T17:38:14.000Z'}}, {'blockNum': '0x545860', 'uniqueId': '0x1d6e5aa7eec243934dcae770c79107d2251a1f7de5a345067a4651b616bb469c:log:63', 'hash': '0x1d6e5aa7eec243934dcae770c79107d2251a1f7de5a345067a4651b616bb469c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1f77fecbc6094fa0cd8a10398f04918d8a4fb47b', 'value': 1512.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x52025140d792f00000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T17:54:53.000Z'}}, {'blockNum': '0x545874', 'uniqueId': '0xd6aba2c1a547475b2010e769bee94545c5f3eb93f93f55d7c77d5a244e2e0e5c:log:1', 'hash': '0xd6aba2c1a547475b2010e769bee94545c5f3eb93f93f55d7c77d5a244e2e0e5c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1f77fecbc6094fa0cd8a10398f04918d8a4fb47b', 'value': 3222.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xaeb555a4dfb0e80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T18:01:59.000Z'}}, {'blockNum': '0x54597d', 'uniqueId': '0x42953be3bc4ad330a6ae6e90b6d3aaaba8de494baf26832ce9dbb8889b38f2cd:log:91', 'hash': '0x42953be3bc4ad330a6ae6e90b6d3aaaba8de494baf26832ce9dbb8889b38f2cd', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'value': 704.523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x2631387fc6f4878000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:02:07.000Z'}}, {'blockNum': '0x54597f', 'uniqueId': '0xb57dd909d82b393c8f9f5a56cc0586de9512ccb991795405daf629fe893313d5:log:69', 'hash': '0xb57dd909d82b393c8f9f5a56cc0586de9512ccb991795405daf629fe893313d5', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1947.819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x69976b34833c978000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:03:01.000Z'}}, {'blockNum': '0x545989', 'uniqueId': '0xfab500ce93f089e32f3a100d3d0faa4e6a1a88270338822a2eb02849eb2051a3:log:7', 'hash': '0xfab500ce93f089e32f3a100d3d0faa4e6a1a88270338822a2eb02849eb2051a3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb1c74167e9df09e7ac1e3db70973a42f2a4608c9', 'value': 541.253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1d5764efd196808000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:05:36.000Z'}}, {'blockNum': '0x54598a', 'uniqueId': '0x8c713e47fadae4ffb45fdc339581647995e931eac6196e07b76d80009b270064:log:0', 'hash': '0x8c713e47fadae4ffb45fdc339581647995e931eac6196e07b76d80009b270064', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1e162c177be5cc0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:05:51.000Z'}}, {'blockNum': '0x54598b', 'uniqueId': '0xbdb959b67243150abfa14e18e0bc70edb2d60376119794031e2f011077ba13e7:log:0', 'hash': '0xbdb959b67243150abfa14e18e0bc70edb2d60376119794031e2f011077ba13e7', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 3086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xa74ada69abd7780000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:06:10.000Z'}}, {'blockNum': '0x545993', 'uniqueId': '0xe888e6510e5e6a7d9d52cd6c57852d6e86b317a94f36c35f4c7f6e15230b1b0e:log:11', 'hash': '0xe888e6510e5e6a7d9d52cd6c57852d6e86b317a94f36c35f4c7f6e15230b1b0e', 'from': '0x36bccd2be18634f62e4309ae22bc2426cc9f5068', 'to': '0xa4173c4c45294f70de3bb68da3cc0809784d20c8', 'value': 151.24, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0832e06ab236140000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:08:22.000Z'}}, {'blockNum': '0x5459a9', 'uniqueId': '0x1f9841215dde817472d17958c9aa608443182bb53a26dbfd1e4e869af64f07e9:log:70', 'hash': '0x1f9841215dde817472d17958c9aa608443182bb53a26dbfd1e4e869af64f07e9', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1947.819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x69976b34833c978000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:13:26.000Z'}}, {'blockNum': '0x5459a9', 'uniqueId': '0xd5e3df2224fc7a0db8c710ea82315d1d95843adb3d2dbd7de6ccdbde326264ff:log:71', 'hash': '0xd5e3df2224fc7a0db8c710ea82315d1d95843adb3d2dbd7de6ccdbde326264ff', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xa74ada69abd7780000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:13:26.000Z'}}, {'blockNum': '0x5459b1', 'uniqueId': '0x913d758cb4620efa93e839b3054ba9e763b8e0ee6955c5112bb279ef83cfabfc:log:3', 'hash': '0x913d758cb4620efa93e839b3054ba9e763b8e0ee6955c5112bb279ef83cfabfc', 'from': '0x3918395a80b0a3e817508897336a73f9bb130002', 'to': '0xf10a342a3199af0c3913a5db531de33df0ded65b', 'value': 100.6603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0574f139876440c000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:15:26.000Z'}}, {'blockNum': '0x5459b5', 'uniqueId': '0xdcc5dc4a7c3222e3ffd89248c5c363d079f2b82ac01c9b74896d1d4bd3358f37:log:42', 'hash': '0xdcc5dc4a7c3222e3ffd89248c5c363d079f2b82ac01c9b74896d1d4bd3358f37', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x76a2aaa2e54ca4fac6af634e18a5e6a3d7c80991', 'value': 247.9954698507586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0d71a0e5e49890076b', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:16:28.000Z'}}, {'blockNum': '0x5459c5', 'uniqueId': '0x6d4b2ef2d7ba774df2fb8f78430545533d1750666065f16193ae6f328fb93e6c:log:24', 'hash': '0x6d4b2ef2d7ba774df2fb8f78430545533d1750666065f16193ae6f328fb93e6c', 'from': '0x76a2aaa2e54ca4fac6af634e18a5e6a3d7c80991', 'to': '0xdee0e69dd8607df0f9a0c4172095f6f45a34ef57', 'value': 247.9954698507586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0d71a0e5e49890076b', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:19:18.000Z'}}, {'blockNum': '0x5459c9', 'uniqueId': '0x24f95c382055d2da940cdf61ec4fb29d87c29ed697cf1f5e99df2daf9c100473:log:7', 'hash': '0x24f95c382055d2da940cdf61ec4fb29d87c29ed697cf1f5e99df2daf9c100473', 'from': '0x9b672f56a6a156c525aba779ab066628d326c781', 'to': '0x916e92ce44f1848fc4adb42a2f8066eadb75975e', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:20:03.000Z'}}, {'blockNum': '0x5459cc', 'uniqueId': '0x48ae3bd90efae7c4f7c2e38ec9e0562bb308a5cfad71bdc3326f4df38a8a2e27:log:102', 'hash': '0x48ae3bd90efae7c4f7c2e38ec9e0562bb308a5cfad71bdc3326f4df38a8a2e27', 'from': '0xb54180244f5d9c929cd5f07f818d160b03df88be', 'to': '0x58ae12eb7d4550bbdce4583e8288b7d4993c5396', 'value': 1244.568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x4377d9c1ff025c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:21:28.000Z'}}, {'blockNum': '0x5459d6', 'uniqueId': '0x22980da34e6a44281656e85d12cc0103ff769817d871b07c54ab2b180c66d6c9:log:10', 'hash': '0x22980da34e6a44281656e85d12cc0103ff769817d871b07c54ab2b180c66d6c9', 'from': '0x0865408f5c9cc3d7b00c2d08e01605821d64ec8a', 'to': '0x613470f8479e70ad3915f3a75f3cc964e74f4405', 'value': 2990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xa21695e64d11f80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:24:22.000Z'}}, {'blockNum': '0x5459ee', 'uniqueId': '0x9050dea53c6c1af3c496bc5dad92edba4a2fc4183b0ed7f921c3ece2b522bbb0:log:46', 'hash': '0x9050dea53c6c1af3c496bc5dad92edba4a2fc4183b0ed7f921c3ece2b522bbb0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5a5d9c95a3f328e903f3b4d47aa5556e1f286b27', 'value': 678.71, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x24cafe4d0a515f0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:29:35.000Z'}}, {'blockNum': '0x5459f0', 'uniqueId': '0x83a8500c3c451c7d681a9e988d1ec57e0708d45c57d37c4251a64347cf9a268a:log:33', 'hash': '0x83a8500c3c451c7d681a9e988d1ec57e0708d45c57d37c4251a64347cf9a268a', 'from': '0x9606ab2f328cf5268cf2ad104256160632631bc3', 'to': '0x73f170974a1903cabae5c6859d537f8825420c0c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:30:52.000Z'}}, {'blockNum': '0x5459fe', 'uniqueId': '0xe42e48bde7466e736e9ec50f012faf119c75fc6ad2c0a8f8a7d77d2ca56e257b:log:50', 'hash': '0xe42e48bde7466e736e9ec50f012faf119c75fc6ad2c0a8f8a7d77d2ca56e257b', 'from': '0x73f170974a1903cabae5c6859d537f8825420c0c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:33:44.000Z'}}, {'blockNum': '0x5459fe', 'uniqueId': '0xe6c6702ae381256d3bba9967ee574d47c57b709055393eb69ce371f41d1e8599:log:81', 'hash': '0xe6c6702ae381256d3bba9967ee574d47c57b709055393eb69ce371f41d1e8599', 'from': '0x613470f8479e70ad3915f3a75f3cc964e74f4405', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xa21695e64d11f80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:33:44.000Z'}}, {'blockNum': '0x5459fe', 'uniqueId': '0xad6d9bae9d4d04ebcc3f1d928c914d5848e5f85f51af9fb43c5d49ae83b1d658:log:82', 'hash': '0xad6d9bae9d4d04ebcc3f1d928c914d5848e5f85f51af9fb43c5d49ae83b1d658', 'from': '0x58ae12eb7d4550bbdce4583e8288b7d4993c5396', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1244.568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x4377d9c1ff025c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:33:44.000Z'}}, {'blockNum': '0x545a30', 'uniqueId': '0x0c9bd051d92b0ff48d0c790731f6cc015a75bdba2e386b9e56bd1e099d22c2b0:log:96', 'hash': '0x0c9bd051d92b0ff48d0c790731f6cc015a75bdba2e386b9e56bd1e099d22c2b0', 'from': '0x31a570a588dc86faeb45057e749533fb0cd9622d', 'to': '0xc00013abc1c6ec7a22f32df1d4199f40482a2b10', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:45:21.000Z'}}, {'blockNum': '0x545a36', 'uniqueId': '0x5f0db14b0f2bde409572deae90beaaddeb1444dd2892dd208eb9349ca0d5bbfd:log:52', 'hash': '0x5f0db14b0f2bde409572deae90beaaddeb1444dd2892dd208eb9349ca0d5bbfd', 'from': '0x963dd999616db43f6a5bebaf256c6e6aff751b8a', 'to': '0x98cfa56abc0d3c6a18d64412cc774138dc09be51', 'value': 702.897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x261aa7c9645fbe8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:47:17.000Z'}}, {'blockNum': '0x545a36', 'uniqueId': '0x3b55af36a0bc1d056a6a153e38a392c9dacfe1dabe871f655e8a8f264029a9fe:log:66', 'hash': '0x3b55af36a0bc1d056a6a153e38a392c9dacfe1dabe871f655e8a8f264029a9fe', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xd89491e8e216b25fb9a5d32a3fdcf6c5270c665b', 'value': 211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0b70369612f76c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:47:17.000Z'}}, {'blockNum': '0x545a47', 'uniqueId': '0x44abca5a01aff6c87c6bfd733bb4cb9f72c74b78c5035f2331dc7cbfc864f9aa:log:15', 'hash': '0x44abca5a01aff6c87c6bfd733bb4cb9f72c74b78c5035f2331dc7cbfc864f9aa', 'from': '0xd89491e8e216b25fb9a5d32a3fdcf6c5270c665b', 'to': '0xacdef807e5d82e9907dbac26259bf652c2743855', 'value': 211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0b70369612f76c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:50:02.000Z'}}, {'blockNum': '0x545a56', 'uniqueId': '0x87eea66f5980b8a28d0fc0a36c189aa34928a5556f36071444cf221122ea86d0:log:22', 'hash': '0x87eea66f5980b8a28d0fc0a36c189aa34928a5556f36071444cf221122ea86d0', 'from': '0xe4b8b70a0ce77a34162dc3272a69c8d35675597a', 'to': '0x43734aeef1bdc8dcf9aa137ba61574c4c6eecbee', 'value': 37.8672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x020d8351c55eac0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:52:59.000Z'}}, {'blockNum': '0x545a68', 'uniqueId': '0xf4e27ab9aa7db2f2bc4f17928103ea54d13ff5a3910cef036ec6c174a99050d2:log:79', 'hash': '0xf4e27ab9aa7db2f2bc4f17928103ea54d13ff5a3910cef036ec6c174a99050d2', 'from': '0x8021f788a36b89e8391cfa721092e8fb4c5b43b1', 'to': '0x719481c1975533eb9c9f2c1c308adffa5caa0b37', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:56:40.000Z'}}, {'blockNum': '0x545a76', 'uniqueId': '0xd2108691716a68790234098c5c878a2890b810969dc7e9df523ffdcd2d309119:log:17', 'hash': '0xd2108691716a68790234098c5c878a2890b810969dc7e9df523ffdcd2d309119', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x53c2de163b3d1ff0b36be827c322e260b1c8c8ed', 'value': 390.04765081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1524ff9fd9c5a74400', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:00:18.000Z'}}, {'blockNum': '0x545a7d', 'uniqueId': '0xf5d32457d1ed6ff187dab4b58da4f7f37af40d932f6be05cbdebe93ee22e911c:log:7', 'hash': '0xf5d32457d1ed6ff187dab4b58da4f7f37af40d932f6be05cbdebe93ee22e911c', 'from': '0x761936afdb25922597b899d06a35db4b64f65bd8', 'to': '0x6226cf08ee76910699ebc8ac282ae430c837736e', 'value': 598.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x206fa2b3dbdb3a0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:01:53.000Z'}}, {'blockNum': '0x545a81', 'uniqueId': '0x662e7f852a655d4fe1aebaeefe1b622cc6eed783a5be9da92a4f06b89c289b5d:log:22', 'hash': '0x662e7f852a655d4fe1aebaeefe1b622cc6eed783a5be9da92a4f06b89c289b5d', 'from': '0xbb78e81e02b285cb0895a000c94d8a4ab1ff8484', 'to': '0xc9323a5d8a5351a927852db77e894633af602e99', 'value': 1393.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x4b894f3d734d4c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:02:59.000Z'}}, {'blockNum': '0x545aa0', 'uniqueId': '0x861aaf83aea6178fd9bf7e8fcaae30b293d0598004e459486b744922f09b0fd3:log:73', 'hash': '0x861aaf83aea6178fd9bf7e8fcaae30b293d0598004e459486b744922f09b0fd3', 'from': '0x203b49f020c3c681f2d00bfb3e309a809c91255f', 'to': '0x8b99786b718f5abcfac5337c9daab51e49e22ce5', 'value': 88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x04c53ecdc18a600000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:11:42.000Z'}}, {'blockNum': '0x545aa8', 'uniqueId': '0x2d3ade041c3e2c6c11961069558bcdfdedd30390c46fe2ac64b0c88faf52a68d:log:61', 'hash': '0x2d3ade041c3e2c6c11961069558bcdfdedd30390c46fe2ac64b0c88faf52a68d', 'from': '0xc9323a5d8a5351a927852db77e894633af602e99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1393.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x4b894f3d734d4c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:13:48.000Z'}}, {'blockNum': '0x545aaa', 'uniqueId': '0x0b00a5e9db9b5d3773128d71a154869fedeb87ab76ab12e861f8aa543713d275:log:98', 'hash': '0x0b00a5e9db9b5d3773128d71a154869fedeb87ab76ab12e861f8aa543713d275', 'from': '0x31a570a588dc86faeb45057e749533fb0cd9622d', 'to': '0xc00013abc1c6ec7a22f32df1d4199f40482a2b10', 'value': 241.171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0d12eb82b8a5bb8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:14:10.000Z'}}, {'blockNum': '0x545ac4', 'uniqueId': '0xf24d8aa5debb3d0ef33e9051ee0e3dcd6b7f1627e6464cbd87b1fe7c08823ab2:log:13', 'hash': '0xf24d8aa5debb3d0ef33e9051ee0e3dcd6b7f1627e6464cbd87b1fe7c08823ab2', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1f0218396a03700000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:20:09.000Z'}}, {'blockNum': '0x545b0d', 'uniqueId': '0x593f3f39ef03a74c281f5f9acb393b8aed4b4549d16a9e944bed111bce67fe7d:log:94', 'hash': '0x593f3f39ef03a74c281f5f9acb393b8aed4b4549d16a9e944bed111bce67fe7d', 'from': '0xa4535b2d08f27d9bd76b3423087ca8ce5a96699a', 'to': '0x97ff1b9cd1effbf0301587d89f907d7909b84727', 'value': 246.945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0d630ce1211ad68000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:37:21.000Z'}}, {'blockNum': '0x545b10', 'uniqueId': '0x422b94e07415077117687105eb14b9edf23bdf36d9e389633e66c92651c1cd3e:log:20', 'hash': '0x422b94e07415077117687105eb14b9edf23bdf36d9e389633e66c92651c1cd3e', 'from': '0x0ad30cce08e30bc44680bf76862c04ddd7ea1f5c', 'to': '0x8516019aae76ec3ae1bbfa70d41fa71e0f3934b5', 'value': 41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0238fd42c5cf040000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:38:11.000Z'}}, {'blockNum': '0x545b1a', 'uniqueId': '0x4554ea9e0abf61aa0f1803b3c1c9afa2f7947cb7a41cf0131b15c9808a5963d3:log:24', 'hash': '0x4554ea9e0abf61aa0f1803b3c1c9afa2f7947cb7a41cf0131b15c9808a5963d3', 'from': '0x25d1a51d86defe82496484b7aae5ec924e0622fe', 'to': '0x1f3e5b3c2d240b440813e39a02e0e7de3a5e30c8', 'value': 149.656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x081ce4eb16a9dc0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:40:59.000Z'}}, {'blockNum': '0x545b22', 'uniqueId': '0x66ffb5670f5dba7517bae915bd2128b3f5bdabb5126936d4863c3c4ab501fca0:log:30', 'hash': '0x66ffb5670f5dba7517bae915bd2128b3f5bdabb5126936d4863c3c4ab501fca0', 'from': '0xf4108e115c1c2c32f5bc95cc6193a4c2d9d2f9e6', 'to': '0x3e18288d22c9ef5bc362fbbff9e39dfc74f196e5', 'value': 151.8758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x083bb33b6d72458000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:43:44.000Z'}}, {'blockNum': '0x545b2b', 'uniqueId': '0xbd63c920d79e87d64b928328b2d07f03f2c24e1ec22d72797b545f88bbfc0dc7:log:19', 'hash': '0xbd63c920d79e87d64b928328b2d07f03f2c24e1ec22d72797b545f88bbfc0dc7', 'from': '0x42d5696860e9140b7ab6b0fc58cc238cc525b179', 'to': '0xa7d802ec2719fbb5a7e1ce6e759898127f52ea98', 'value': 283.578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0f5f6f708a13b90000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:46:36.000Z'}}, {'blockNum': '0x545b3c', 'uniqueId': '0xaf7e886d99d475ef5efe9b8f5d4b2e9741711ee7caeba0cbc0dd7d8ae10c698f:log:15', 'hash': '0xaf7e886d99d475ef5efe9b8f5d4b2e9741711ee7caeba0cbc0dd7d8ae10c698f', 'from': '0x5919e3f908bdb1767ff82b37c6228b32060b42f0', 'to': '0x9928ca79e1da92c2a8f826b1ffa6d46bb1f9711c', 'value': 638.597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x229e504c116e208000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:50:41.000Z'}}, {'blockNum': '0x545b58', 'uniqueId': '0xc15bda75798f92f2dac556c727613603f6e068d06700a8b31516fa11a4073ea8:log:20', 'hash': '0xc15bda75798f92f2dac556c727613603f6e068d06700a8b31516fa11a4073ea8', 'from': '0x5aaca122b0d46f675016d2ceb030c72f0b4cf618', 'to': '0xd5beb82797939137155bed80c63e3836e73f94cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:00:06.000Z'}}, {'blockNum': '0x545b58', 'uniqueId': '0xa64d56257dfc2f6f21505bf4013cca1ff7b1dcec486059aad9912564b99fdf4a:log:21', 'hash': '0xa64d56257dfc2f6f21505bf4013cca1ff7b1dcec486059aad9912564b99fdf4a', 'from': '0x8c62de41bb1c6ec5ccd48d3c23992e3fa0b633a9', 'to': '0x8516019aae76ec3ae1bbfa70d41fa71e0f3934b5', 'value': 140, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0796e3ea3f8ab00000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:00:06.000Z'}}, {'blockNum': '0x545b64', 'uniqueId': '0x17e9232c9a5b473468679d793a927fa5fdac38247336930ef636c7268801662d:log:101', 'hash': '0x17e9232c9a5b473468679d793a927fa5fdac38247336930ef636c7268801662d', 'from': '0xa7d802ec2719fbb5a7e1ce6e759898127f52ea98', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 855.177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x2e5bf70693fc3a8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:03:41.000Z'}}, {'blockNum': '0x545b64', 'uniqueId': '0xc430ba2ff7582fbde2dced24eb5bf015e402931a839c399f364623f93007f4eb:log:102', 'hash': '0xc430ba2ff7582fbde2dced24eb5bf015e402931a839c399f364623f93007f4eb', 'from': '0xd5beb82797939137155bed80c63e3836e73f94cf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:03:41.000Z'}}, {'blockNum': '0x545b73', 'uniqueId': '0x253a1489be0c999ceffec8207d0aba2c3d2fbe666809656e11404ca56b26b30e:log:16', 'hash': '0x253a1489be0c999ceffec8207d0aba2c3d2fbe666809656e11404ca56b26b30e', 'from': '0x6941a2eabc0ac12e55c81364ed0954cde12fb82e', 'to': '0x53143ebaf9a4012cc7424a4356477044e1a13f12', 'value': 166.4484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0905ef81eb28210000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:06:36.000Z'}}, {'blockNum': '0x545b7e', 'uniqueId': '0x4772a3b6231ad5db9674501411a59f1a17b87b22bcbc9cb99e258106776a4f7e:log:4', 'hash': '0x4772a3b6231ad5db9674501411a59f1a17b87b22bcbc9cb99e258106776a4f7e', 'from': '0xa3645147f051c1c1c0deedf38a725b50a33dd4a9', 'to': '0x659b7540a018cebfe3f69b62a497afc3134c03bb', 'value': 199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0ac9ae05a71ebc0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:08:52.000Z'}}, {'blockNum': '0x545b8d', 'uniqueId': '0x507045588994aa10347c53c8f22db223551b40ba54491923bb6931e1a208b8d4:log:43', 'hash': '0x507045588994aa10347c53c8f22db223551b40ba54491923bb6931e1a208b8d4', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x3d184450e5e93c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:13:17.000Z'}}, {'blockNum': '0x545bcb', 'uniqueId': '0x379506fd886d920f0b62ec1392444acaa5714a825ad1972dfbb239493ac92586:log:3', 'hash': '0x379506fd886d920f0b62ec1392444acaa5714a825ad1972dfbb239493ac92586', 'from': '0x53219970580e15e318e38dcc79ab477542be1b2a', 'to': '0xa7f75f3cb19a382f6e521303d7acda5062d8dae1', 'value': 4004.47418055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xd9153e3298c2363c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:27:03.000Z'}}, {'blockNum': '0x545bda', 'uniqueId': '0x0a17f73cdf51952ef5e2bf62f6c6a1a2adc84eca1122409d3e8878b6630ae40e:log:15', 'hash': '0x0a17f73cdf51952ef5e2bf62f6c6a1a2adc84eca1122409d3e8878b6630ae40e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb15d42dc12fd87efcd47f00a806a1c3e419c572c', 'value': 542.252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1d65421906991e0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:31:11.000Z'}}, {'blockNum': '0x545bfc', 'uniqueId': '0x4da96777be714f08b2b66a8fe3d01a561212025f8a3a51ec44bace3f97316be9:log:68', 'hash': '0x4da96777be714f08b2b66a8fe3d01a561212025f8a3a51ec44bace3f97316be9', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xc13328cb365d27a6c68a534167e9a992664f7683', 'value': 5031.09178606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0110bc6c9b8e0bddf800', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:39:08.000Z'}}, {'blockNum': '0x545c12', 'uniqueId': '0xfb0d4566ef4a33e79b51172255fb7c3659e0f9d56f145cc4c35a0ebd8dcdf716:log:59', 'hash': '0xfb0d4566ef4a33e79b51172255fb7c3659e0f9d56f145cc4c35a0ebd8dcdf716', 'from': '0xc13328cb365d27a6c68a534167e9a992664f7683', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5031.09178606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0110bc6c9b8e0bddf800', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:43:07.000Z'}}, {'blockNum': '0x545c12', 'uniqueId': '0x5dcba5ee7c7bb9e13d5365b0ff87394dfc77cc4e23aed536f747a63f876fc45f:log:61', 'hash': '0x5dcba5ee7c7bb9e13d5365b0ff87394dfc77cc4e23aed536f747a63f876fc45f', 'from': '0xa7f75f3cb19a382f6e521303d7acda5062d8dae1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4004.47418055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xd9153e3298c2363c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:43:07.000Z'}}, {'blockNum': '0x545c63', 'uniqueId': '0x40befef6e0196df9485ae5124949db20fca3fa41cbb8650210b5ee814eeb63c8:log:83', 'hash': '0x40befef6e0196df9485ae5124949db20fca3fa41cbb8650210b5ee814eeb63c8', 'from': '0xe2d4c79d6451c8ace3530c35f8b1dbe873a4657a', 'to': '0x85705f0e394aeb2ff70255f5af3f75edcf4c51a2', 'value': 79.349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x044d3047174a788000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T22:06:25.000Z'}}, {'blockNum': '0x545cb4', 'uniqueId': '0x65990abfbaf664baafd43697a77f4e74474ea4da08d26d94714cc884600fe82e:log:34', 'hash': '0x65990abfbaf664baafd43697a77f4e74474ea4da08d26d94714cc884600fe82e', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x82f7312c145ba9594c231cf2c37d955af3496cf3', 'value': 1089.666728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x3b1229e3d072328000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T22:26:35.000Z'}}, {'blockNum': '0x545cca', 'uniqueId': '0x48680781960dc92609f7f715c69606641233941bdaaba0a928ee2e736e74523b:log:61', 'hash': '0x48680781960dc92609f7f715c69606641233941bdaaba0a928ee2e736e74523b', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xde93851e313a8b7a52fe6902c69669e5665c673b', 'value': 480.87563345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1a117d70d5a0332400', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T22:31:34.000Z'}}, {'blockNum': '0x545cce', 'uniqueId': '0x1f47733b734cc5c180f303ef6bf3637f7c2eeb5c8e45f224f34d3dadfba87793:log:92', 'hash': '0x1f47733b734cc5c180f303ef6bf3637f7c2eeb5c8e45f224f34d3dadfba87793', 'from': '0x82f7312c145ba9594c231cf2c37d955af3496cf3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1089.666728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x3b1229e3d072328000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T22:33:12.000Z'}}, {'blockNum': '0x545cd4', 'uniqueId': '0x9ab866d2af1a2d76a00004e6b04b06d475a78258901936be9fe8a13507a165f3:log:38', 'hash': '0x9ab866d2af1a2d76a00004e6b04b06d475a78258901936be9fe8a13507a165f3', 'from': '0xc00013abc1c6ec7a22f32df1d4199f40482a2b10', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 251.171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0d9db2a5bd2fa38000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T22:34:13.000Z'}}, {'blockNum': '0x545cd6', 'uniqueId': '0x6d63e81511161650b24459c8cd6e549c1cf0c35aa47a9d57e7f4f3850774efd5:log:85', 'hash': '0x6d63e81511161650b24459c8cd6e549c1cf0c35aa47a9d57e7f4f3850774efd5', 'from': '0x6eca7b8ba975f24ab02cbe685da5e0a79b139bae', 'to': '0x2ee6aa47d114e0ed407eadf34e3b42bf0b16e4d5', 'value': 1041.674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x38782177f980410000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T22:34:51.000Z'}}, {'blockNum': '0x545ce0', 'uniqueId': '0xbcf1e7fb5ee20011bc169d150c84ae96b161841f860110a21dc95cc5e2e551ca:log:26', 'hash': '0xbcf1e7fb5ee20011bc169d150c84ae96b161841f860110a21dc95cc5e2e551ca', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xab7c43fdbf5d30cbdae8196aec2d098b1ff24376', 'value': 12925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x02bcaa684c6a43d40000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T22:37:42.000Z'}}, {'blockNum': '0x545cfe', 'uniqueId': '0x7cc7afaa25dafa8184601ee03f7b76aa8d98e1ca8f12818dc93d095b80b0881e:log:62', 'hash': '0x7cc7afaa25dafa8184601ee03f7b76aa8d98e1ca8f12818dc93d095b80b0881e', 'from': '0x2ee6aa47d114e0ed407eadf34e3b42bf0b16e4d5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1131.674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x3d5921b32259690000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T22:44:21.000Z'}}, {'blockNum': '0x545d23', 'uniqueId': '0x7adaccff19b01cd92bedce99e0c43f56949461166518f0c3cb5b3233ec0e2584:log:105', 'hash': '0x7adaccff19b01cd92bedce99e0c43f56949461166518f0c3cb5b3233ec0e2584', 'from': '0xab7c43fdbf5d30cbdae8196aec2d098b1ff24376', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18116.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x03d6136446c9de1a0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T22:53:05.000Z'}}, {'blockNum': '0x545df0', 'uniqueId': '0x9130a2878a9822cd5309cd3de21e584850007ae855c41ff295cf36eafa4ef851:log:96', 'hash': '0x9130a2878a9822cd5309cd3de21e584850007ae855c41ff295cf36eafa4ef851', 'from': '0x25f2edef138db6e687880cb8373e2715a738a396', 'to': '0x0e9dccb1344167fb358747eb83cf84d2aa811d81', 'value': 12.798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xb19ba1317b730000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T23:42:26.000Z'}}, {'blockNum': '0x545e9c', 'uniqueId': '0x752b31d3589721f991a30c3c99ba1d478d6cf03ec514b2080a8282b632550a05:log:51', 'hash': '0x752b31d3589721f991a30c3c99ba1d478d6cf03ec514b2080a8282b632550a05', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0f88ff12bad922f52cc7af57d41f7b9767ebebf5', 'value': 53.471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x02e60f2732d0e98000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-30T00:24:10.000Z'}}, {'blockNum': '0x545eac', 'uniqueId': '0x22e5fd3a25eef657d9fc7528d11cf872ba043a4e588354c4c1158c1123a0804f:log:68', 'hash': '0x22e5fd3a25eef657d9fc7528d11cf872ba043a4e588354c4c1158c1123a0804f', 'from': '0xfb426dab49844b95c12fc3267570311fa90c27b3', 'to': '0x2ee6aa47d114e0ed407eadf34e3b42bf0b16e4d5', 'value': 38, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x020f5b1eaad8d80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-30T00:27:40.000Z'}}, {'blockNum': '0x545edd', 'uniqueId': '0x511d036b4798fa682ba0c58943778f2951edfa6b66424f16e6dd407b8b6cffd3:log:5', 'hash': '0x511d036b4798fa682ba0c58943778f2951edfa6b66424f16e6dd407b8b6cffd3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf148acddf1407469c4ce5b0ba2c0ca8b575bcca3', 'value': 1288.60599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x45db0029a9e8f71c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-30T00:41:25.000Z'}}, {'blockNum': '0x545f78', 'uniqueId': '0xc80d2a395b6a060b9600b8da2392f7362d2fdc831236ad127a034ba449311158:log:3', 'hash': '0xc80d2a395b6a060b9600b8da2392f7362d2fdc831236ad127a034ba449311158', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf148acddf1407469c4ce5b0ba2c0ca8b575bcca3', 'value': 663.23200001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x23f431660e2bebe400', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-30T01:19:21.000Z'}}, {'blockNum': '0x5460bd', 'uniqueId': '0x23d70806ed5802420b8c6ec21e9ff630de9bdc569ab34be4689beeb3524c99f4:log:36', 'hash': '0x23d70806ed5802420b8c6ec21e9ff630de9bdc569ab34be4689beeb3524c99f4', 'from': '0x676211f453def6ed91c0204bb99f7e0ba5907b2c', 'to': '0x9a46e7ec8e0032dedaec5f2976fec0241be7654f', 'value': 307.84, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x10b02360fe68400000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-30T02:45:00.000Z'}}, {'blockNum': '0x5460e6', 'uniqueId': '0xbbafed1235611e14cb0671e027ce14dcb8affd0ec7a07e4605fd21c9b59ee56a:log:7', 'hash': '0xbbafed1235611e14cb0671e027ce14dcb8affd0ec7a07e4605fd21c9b59ee56a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7e4792d72f659c79ca8cccd91cc818861c2f1717', 'value': 6582.2517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0164d317a6e2c70f4000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-30T02:55:10.000Z'}}, {'blockNum': '0x5460ef', 'uniqueId': '0xf598446eb499384950cf29f5f0045b443fadf92fe0211bc3e2281b3e15274150:log:6', 'hash': '0xf598446eb499384950cf29f5f0045b443fadf92fe0211bc3e2281b3e15274150', 'from': '0xa707689622f5024991c325ae2182919944ac83a9', 'to': '0x98dcecdab9a2d9a690591db8dc347707d1532230', 'value': 1391.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x4b6a15a25f14ab0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-30T02:57:58.000Z'}}, {'blockNum': '0x546104', 'uniqueId': '0xf2a5e99c00ad8e1403d8d92e1e5f1bd80c0184e19584e036734ac4b02a9c6670:log:41', 'hash': '0xf2a5e99c00ad8e1403d8d92e1e5f1bd80c0184e19584e036734ac4b02a9c6670', 'from': '0x98dcecdab9a2d9a690591db8dc347707d1532230', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1391.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x4b6a15a25f14ab0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-30T03:03:12.000Z'}}, {'blockNum': '0x54616d', 'uniqueId': '0xf6644e8e4906291293791a2b2c253559a9fdf357e02f40711c1c62c7febc9627:log:101', 'hash': '0xf6644e8e4906291293791a2b2c253559a9fdf357e02f40711c1c62c7febc9627', 'from': '0x599d05daa69fca3835a20fc5c2e48bf527f658b0', 'to': '0x84610182b5ff0661ceaf486d9c5122e91a3f8107', 'value': 509.805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1ba2f7326ff6048000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-30T03:30:50.000Z'}}, {'blockNum': '0x5462a8', 'uniqueId': '0x25bd447c4cf8380cd64c70120209b47429692123d600a85547e0a365593f5fe8:log:12', 'hash': '0x25bd447c4cf8380cd64c70120209b47429692123d600a85547e0a365593f5fe8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4edbc97446dea5606c303bc60b9b056b69161240', 'value': 3794.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xcdb8d123c211e20000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-30T04:47:18.000Z'}}]}}
Number of returned transfers: 90
Answer is complete
symbol YOYOW
group BPS
date 2018-05-12
hour 18:00
exchange binance
Name: 297, dtype: object
HERE
Symbol: YOYOW, Contract:
Datetime timestamps: 2018-05-12 18:00:00 2018-05-12 06:00:00 2018-05-13 06:00:00
Unix timestamps: 1526097600.0 1526184000.0
Hex Block Numbers: 0x556df9 0x558475
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol CHAT
group BPS
date 2018-06-10
hour 20:00
exchange binance
Name: 298, dtype: object
HERE
Symbol: CHAT, Contract: 0x442bc47357919446eabc18c7211e57a13d983469
Datetime timestamps: 2018-06-10 20:00:00 2018-06-10 08:00:00 2018-06-11 08:00:00
Unix timestamps: 1528610400.0 1528696800.0
Hex Block Numbers: 0x57f00e 0x5805fd
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x57f074', 'uniqueId': '0x70cfe6489936bbb7935964a3d2f61afbf95df569b723dde2c4ada247ba063577:log:12', 'hash': '0x70cfe6489936bbb7935964a3d2f61afbf95df569b723dde2c4ada247ba063577', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'value': 119231.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x193f8d74fe705b4e0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T06:28:03.000Z'}}, {'blockNum': '0x57f083', 'uniqueId': '0x83fdd218c577ef7eb800064b8c340ef88cf6d6277edb3844cdc86963d5419259:log:1', 'hash': '0x83fdd218c577ef7eb800064b8c340ef88cf6d6277edb3844cdc86963d5419259', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xab56026ca64141d8d40a62d72c10a419438d9718', 'value': 67998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0e662dd0bb27d3b80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T06:31:33.000Z'}}, {'blockNum': '0x57f089', 'uniqueId': '0x5e44038275a685850c7701ac4b771d354d7b3bea281de25a97dd13b84da87378:log:0', 'hash': '0x5e44038275a685850c7701ac4b771d354d7b3bea281de25a97dd13b84da87378', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb8b521343347018673c1678e44e970c16dcbfa42', 'value': 36511.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x07bb4ad97bc842ce0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T06:34:15.000Z'}}, {'blockNum': '0x57f0c8', 'uniqueId': '0xe0ee218e305718cc0c4d4850de0bbd8f0829b2aac34474be0472fa70f7cacaea:log:52', 'hash': '0xe0ee218e305718cc0c4d4850de0bbd8f0829b2aac34474be0472fa70f7cacaea', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9500bb6678208dfd3059f15a81739d77bbc36f3e', 'value': 15709.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x03539635d6a291a78000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T06:51:49.000Z'}}, {'blockNum': '0x57f147', 'uniqueId': '0x88741cf607b01e9f6c35eaf12167f899e9020d7262d6ea49d4036af303cddf0d:log:8', 'hash': '0x88741cf607b01e9f6c35eaf12167f899e9020d7262d6ea49d4036af303cddf0d', 'from': '0xaa105f77015866d99236a540815c14176a47d24c', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 18926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0401fb0315c122f7ffff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T07:23:14.000Z'}}, {'blockNum': '0x57f220', 'uniqueId': '0x156ab2226a07f444c62116ed69c2d9466800085f452de30c7a38618d9cbf25f5:log:10', 'hash': '0x156ab2226a07f444c62116ed69c2d9466800085f452de30c7a38618d9cbf25f5', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x4f9593d929472dc858ec15772e8f4b2467f47943', 'value': 10141.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0225c623e1d1770a0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T08:21:26.000Z'}}, {'blockNum': '0x57f24c', 'uniqueId': '0x568cc67a59a63194ec6b0c2868ae4555d33958c49d1257350ab4f3b7435e5064:log:2', 'hash': '0x568cc67a59a63194ec6b0c2868ae4555d33958c49d1257350ab4f3b7435e5064', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7ba7d64f8d1e2bb356870b3680e17a7c96f3f9cc', 'value': 73713.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0f9c044fc32384d60000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T08:32:36.000Z'}}, {'blockNum': '0x57f27b', 'uniqueId': '0xa29f26465345bc5ae00a63f44273f18d387a5c5de57688e54c1f8a20d54c1905:log:1', 'hash': '0xa29f26465345bc5ae00a63f44273f18d387a5c5de57688e54c1f8a20d54c1905', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x66692d289655557c40c3c6cb4e3649fa39d1fec1', 'value': 54927.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ba1a03097a1ec8e0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T08:44:11.000Z'}}, {'blockNum': '0x57f285', 'uniqueId': '0xd021dc932434ae2b118c99f9ed88f986d83079b73cc6e0e6969b42bd5d824db6:log:1', 'hash': '0xd021dc932434ae2b118c99f9ed88f986d83079b73cc6e0e6969b42bd5d824db6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'value': 106693.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1697ddc0e39c23a60000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T08:46:27.000Z'}}, {'blockNum': '0x57f28d', 'uniqueId': '0x4320bb29d43ee3477adececacea015483f3f08282f40d72b1762878f236d6b05:log:33', 'hash': '0x4320bb29d43ee3477adececacea015483f3f08282f40d72b1762878f236d6b05', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x98f1509c7479d9cb4b7395e7b2754dbfb4fa847f', 'value': 2577.87, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8bbf2202dc003b0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T08:48:37.000Z'}}, {'blockNum': '0x57f291', 'uniqueId': '0x6da0006623cbfe21524376e1166580460c33ed3e2446ee8e874e893e573c56ec:log:35', 'hash': '0x6da0006623cbfe21524376e1166580460c33ed3e2446ee8e874e893e573c56ec', 'from': '0x2c174bedf6984e2d2d7ec3b0ee3e71cf3380c42d', 'to': '0x639d9ba0f11ff73a25c0a26849d4d5a7175169b6', 'value': 46707.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x09e400bfdd9874c10000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T08:50:01.000Z'}}, {'blockNum': '0x57f291', 'uniqueId': '0x95ddc5f7dfe80efe273aa0b8f236eb9e923b0d4707ec7a61f88ad6cd65cb4ea9:log:36', 'hash': '0x95ddc5f7dfe80efe273aa0b8f236eb9e923b0d4707ec7a61f88ad6cd65cb4ea9', 'from': '0x7d3ff5d8349c7fca79d9724c2aef1299eaae07c5', 'to': '0x639d9ba0f11ff73a25c0a26849d4d5a7175169b6', 'value': 14902.946766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0327e3eed47b2282e000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T08:50:01.000Z'}}, {'blockNum': '0x57f292', 'uniqueId': '0x949f00c0ca2fd7ecf00fed1fa1a42e4505b9a15ef583abc8d5598c4649bc9d4a:log:14', 'hash': '0x949f00c0ca2fd7ecf00fed1fa1a42e4505b9a15ef583abc8d5598c4649bc9d4a', 'from': '0x52a85e13c1fadb3f829640052283a5d101abd30c', 'to': '0x639d9ba0f11ff73a25c0a26849d4d5a7175169b6', 'value': 15697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0352efa29dbacaa40000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T08:50:35.000Z'}}, {'blockNum': '0x57f29c', 'uniqueId': '0xc8c498a7ac5d9a9b4652382dbfa3c2012b293d09d17da153b1b8dc15fa99fa63:log:19', 'hash': '0xc8c498a7ac5d9a9b4652382dbfa3c2012b293d09d17da153b1b8dc15fa99fa63', 'from': '0xeae0d78450dab377376206f419e9bca0d28829f9', 'to': '0x639d9ba0f11ff73a25c0a26849d4d5a7175169b6', 'value': 24558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x05334ab68623baf80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T08:54:53.000Z'}}, {'blockNum': '0x57f2fe', 'uniqueId': '0x1f3eb31031377252fefc004b34e47ecc865ee7b4e9d446d11b8701a0846f91ca:log:25', 'hash': '0x1f3eb31031377252fefc004b34e47ecc865ee7b4e9d446d11b8701a0846f91ca', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xbefeae8eef458e8ab1ac0571c1d13cd473524202', 'value': 26944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x05b4a31d5c91dd000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T09:19:05.000Z'}}, {'blockNum': '0x57f34a', 'uniqueId': '0x4f40ffa12687f0ba5ef16a79dc531c904dff3acfb354353429c56f4afc11eb6d:log:4', 'hash': '0x4f40ffa12687f0ba5ef16a79dc531c904dff3acfb354353429c56f4afc11eb6d', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xdf25aed94ff547748194058b5eccd3824de47ffe', 'value': 1029.17977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x37cabd0bfca439a000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T09:37:41.000Z'}}, {'blockNum': '0x57f37a', 'uniqueId': '0x4b7fcadd13007182871713f7e88b7e52602734b39b3505b71bacc96fd1cbb92e:log:30', 'hash': '0x4b7fcadd13007182871713f7e88b7e52602734b39b3505b71bacc96fd1cbb92e', 'from': '0x9500bb6678208dfd3059f15a81739d77bbc36f3e', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 15709.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x03539635d6a291a77fff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T09:49:07.000Z'}}, {'blockNum': '0x57f380', 'uniqueId': '0x38e2a3a8b3055b906ead807fc398d92cba60748fbab5f1c3fe5510501994745f:log:7', 'hash': '0x38e2a3a8b3055b906ead807fc398d92cba60748fbab5f1c3fe5510501994745f', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x55df6e2378028cb6bb4984375ab21836f7774960', 'value': 119998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x19691ac807590c380000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T09:49:40.000Z'}}, {'blockNum': '0x57f3a8', 'uniqueId': '0x7a5dec7e49256c4686e18055c7f48fbaef379291a8018109aad93d1f55f570ab:log:102', 'hash': '0x7a5dec7e49256c4686e18055c7f48fbaef379291a8018109aad93d1f55f570ab', 'from': '0x4f9593d929472dc858ec15772e8f4b2467f47943', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 84639.68, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x11ec5384e7c18e600000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T10:00:52.000Z'}}, {'blockNum': '0x57f3d3', 'uniqueId': '0xd9d076cc5d303441f4221e6cf74084755846d584f12dc7fad291422e04f53b00:log:34', 'hash': '0xd9d076cc5d303441f4221e6cf74084755846d584f12dc7fad291422e04f53b00', 'from': '0x319e6ab4f159de08d8f19c2ec198bfca4479f438', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 70716.193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ef988522f0d45167fff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T10:10:05.000Z'}}, {'blockNum': '0x57f3f2', 'uniqueId': '0xef79a0eadff6fb3ca0dc326f026f86bf611d5b42716daa2ba7ab41fe10dfe62e:log:155', 'hash': '0xef79a0eadff6fb3ca0dc326f026f86bf611d5b42716daa2ba7ab41fe10dfe62e', 'from': '0xfbe7b352accf06e043b9200ff9c98b990c794424', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 2818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x98c39b25989ac80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T10:18:30.000Z'}}, {'blockNum': '0x57f462', 'uniqueId': '0x42a75f8c0acf643d2811650765ff3b882a8ab10dea7fc97e1c4544d24c9d0e7d:log:57', 'hash': '0x42a75f8c0acf643d2811650765ff3b882a8ab10dea7fc97e1c4544d24c9d0e7d', 'from': '0x35920983093d1c9d90122eda53ecce7e0ad0de4a', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ffdf28905e43bffff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T10:47:54.000Z'}}, {'blockNum': '0x57f4b7', 'uniqueId': '0x17cf051c64a7930b81dd8ed3deca9d80bb4195e833449535b8a6b19dd90536c6:log:1', 'hash': '0x17cf051c64a7930b81dd8ed3deca9d80bb4195e833449535b8a6b19dd90536c6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'value': 122619.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x19f73766f00baabe0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T11:08:59.000Z'}}, {'blockNum': '0x57f4ca', 'uniqueId': '0x65cba18ce6dadcedc9d0ec1f60f3c4088988aa1e81d2daaa3387326901657575:log:139', 'hash': '0x65cba18ce6dadcedc9d0ec1f60f3c4088988aa1e81d2daaa3387326901657575', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7ba7d64f8d1e2bb356870b3680e17a7c96f3f9cc', 'value': 79340.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x10cd0e9fa203d7e20000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T11:14:35.000Z'}}, {'blockNum': '0x57f513', 'uniqueId': '0x39497d19001938f4fd80e5f2e3c0a76472d743808b160666d49a28fe0006b0f1:log:3', 'hash': '0x39497d19001938f4fd80e5f2e3c0a76472d743808b160666d49a28fe0006b0f1', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x8f6ac38d263aa309c839fbe8a5751333087d4ac9', 'value': 23714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x050589dc2dd7dd480000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T11:37:21.000Z'}}, {'blockNum': '0x57f530', 'uniqueId': '0x4dc651bda1b5a8afd20a06054a96dedf01de80826dcf8387eae58caaa7bb204b:log:17', 'hash': '0x4dc651bda1b5a8afd20a06054a96dedf01de80826dcf8387eae58caaa7bb204b', 'from': '0x923bc1ca56bd8c74952d48f6bab3a2dccc430a78', 'to': '0x6ff67737596e36d0194f225aee0e3519c5ad14cb', 'value': 3579.719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xc20e94a855fc900000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T11:45:08.000Z'}}, {'blockNum': '0x57f56c', 'uniqueId': '0xceec65deebafd377816acde78e3cbabece33515123ca9d54949f4f787f4df829:log:19', 'hash': '0xceec65deebafd377816acde78e3cbabece33515123ca9d54949f4f787f4df829', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x99f132e370d420296304cdc6e318c2b45415efa3', 'value': 289998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x3d68d2b56cbee2780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T12:00:05.000Z'}}, {'blockNum': '0x57f581', 'uniqueId': '0x5b03700ae6447de43aa89904738609c1568fdab2f03c422b46b1008d3ac88ffc:log:100', 'hash': '0x5b03700ae6447de43aa89904738609c1568fdab2f03c422b46b1008d3ac88ffc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4c8f4e9b5af447d8d8ba3f1cf2bedf3a22deba93', 'value': 99927.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x152914a4236a0eae0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T12:04:47.000Z'}}, {'blockNum': '0x57f588', 'uniqueId': '0x7f1a8c7ae4810a94ed2a24416e5a2aa96b0de7d3bba33004b8413a0e8a5e0b45:log:27', 'hash': '0x7f1a8c7ae4810a94ed2a24416e5a2aa96b0de7d3bba33004b8413a0e8a5e0b45', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x99f132e370d420296304cdc6e318c2b45415efa3', 'value': 3198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xad5d2a584513380000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T12:07:30.000Z'}}, {'blockNum': '0x57f63d', 'uniqueId': '0x74b3c300fa07b4f1737d40eefce5616501164b33d2a1808a245b7600f3c7b5d7:log:148', 'hash': '0x74b3c300fa07b4f1737d40eefce5616501164b33d2a1808a245b7600f3c7b5d7', 'from': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'to': '0xe5a138db8746c9b7689d27664fbff8382d7e2412', 'value': 659503.13484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ba7bc905b9df8df7ffe', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T12:47:30.000Z'}}, {'blockNum': '0x57f64a', 'uniqueId': '0xa3ab83f5a8105cf6afcf29e404ddcc8d76d8d688b01ac02356f944678858da62:log:7', 'hash': '0xa3ab83f5a8105cf6afcf29e404ddcc8d76d8d688b01ac02356f944678858da62', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 5616.37, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x013076ca863248a50000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T12:51:00.000Z'}}, {'blockNum': '0x57f64a', 'uniqueId': '0x3234ee32a0c08c206a32c190c88227b75b33713bbc3cb64a71e6665147751788:log:71', 'hash': '0x3234ee32a0c08c206a32c190c88227b75b33713bbc3cb64a71e6665147751788', 'from': '0x840859b4d523d51b29b17e7ecbc9412ac1df775e', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 5563.35698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x012d97167161a5f73fff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T12:51:00.000Z'}}, {'blockNum': '0x57f64a', 'uniqueId': '0xa9874884bff4aad54e4c5e7e4a9b2bd007e7845379202540e0de61bc7dc12999:log:74', 'hash': '0xa9874884bff4aad54e4c5e7e4a9b2bd007e7845379202540e0de61bc7dc12999', 'from': '0xab56026ca64141d8d40a62d72c10a419438d9718', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 67998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0e662dd0bb27d3b80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T12:51:00.000Z'}}, {'blockNum': '0x57f64a', 'uniqueId': '0x96cda51c4e543771baa869873eec27369d68b1275f3c72ac57ccf0631fd8c582:log:76', 'hash': '0x96cda51c4e543771baa869873eec27369d68b1275f3c72ac57ccf0631fd8c582', 'from': '0x9038a850e817eb23a28cacddf7ace3bb8a088ced', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 8490, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01cc3e6b220d5a67ffff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T12:51:00.000Z'}}, {'blockNum': '0x57f66c', 'uniqueId': '0x8cd205ff988aac174ab4171dc6c7809f4c55827fe1ec819e870a9bd3fea80c90:log:5', 'hash': '0x8cd205ff988aac174ab4171dc6c7809f4c55827fe1ec819e870a9bd3fea80c90', 'from': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5616.37, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x013076ca863248a50000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T12:58:18.000Z'}}, {'blockNum': '0x57f66f', 'uniqueId': '0x013e4757b8007bba323bdf64c7194bb45eea80adb5273127872c0cc43106dac0:log:7', 'hash': '0x013e4757b8007bba323bdf64c7194bb45eea80adb5273127872c0cc43106dac0', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T12:59:17.000Z'}}, {'blockNum': '0x57f67f', 'uniqueId': '0x5dbcf53be60ea0b4f2809ba25f5f69990ee14197df3a35d44614a64c5af3bb83:log:39', 'hash': '0x5dbcf53be60ea0b4f2809ba25f5f69990ee14197df3a35d44614a64c5af3bb83', 'from': '0xcff8bb9148f7499dde3d082cf82b9e17bbeba9c1', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x169b099aa3a9e3ffff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T13:03:24.000Z'}}, {'blockNum': '0x57f68e', 'uniqueId': '0xf71c5212cad24150d38e251cd3da1cec89fc59c47717d8b5aa0a908c2fd52a80:log:8', 'hash': '0xf71c5212cad24150d38e251cd3da1cec89fc59c47717d8b5aa0a908c2fd52a80', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T13:08:20.000Z'}}, {'blockNum': '0x57f6b0', 'uniqueId': '0x8faede66bbabc7f9490f816d0a1fe5ee4eac291c3f4686621992f44c6f5df7fd:log:32', 'hash': '0x8faede66bbabc7f9490f816d0a1fe5ee4eac291c3f4686621992f44c6f5df7fd', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 81078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x112b3f47a65871180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T13:19:40.000Z'}}, {'blockNum': '0x57f6d3', 'uniqueId': '0x92214eecb7de55366c66bcfbfef9c5dffead42fac85d28d7c6d83916470ee462:log:18', 'hash': '0x92214eecb7de55366c66bcfbfef9c5dffead42fac85d28d7c6d83916470ee462', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 81078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x112b3f47a65871180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T13:28:08.000Z'}}, {'blockNum': '0x57f6e2', 'uniqueId': '0x512bee059b5a1550b494ebbab037148356e0f937b588973b8508a9b3bad96ea4:log:23', 'hash': '0x512bee059b5a1550b494ebbab037148356e0f937b588973b8508a9b3bad96ea4', 'from': '0x9aa4b42c26f19244d4682684d3ab73a6d7f4d69a', 'to': '0xdcadf0d84f207baeeb102638c83bb5623f23ef4d', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x2b5e3af16b18800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T13:31:10.000Z'}}, {'blockNum': '0x57f76b', 'uniqueId': '0x2814dc70e520a5568327dbbdd6c3953d583a8489dbbdc927155aea50efb78150:log:42', 'hash': '0x2814dc70e520a5568327dbbdd6c3953d583a8489dbbdc927155aea50efb78150', 'from': '0x67310bec4c1cee530975c5b25ffe0b14bb73b8b8', 'to': '0xe4da17787a14cf3fa54af619c98ef6d634d76120', 'value': 798.374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x2b47aa3b0883b70000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T14:04:36.000Z'}}, {'blockNum': '0x57f7c9', 'uniqueId': '0xe62d4686403b898b86c128d16b2b54d594743d9375df5c11f23508fd67888c2d:log:95', 'hash': '0xe62d4686403b898b86c128d16b2b54d594743d9375df5c11f23508fd67888c2d', 'from': '0x5ea6b559305580f1f33bdc9d9168ee49ec3525e9', 'to': '0x6ff67737596e36d0194f225aee0e3519c5ad14cb', 'value': 64315.143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0d9e87e84a44aa800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T14:25:43.000Z'}}, {'blockNum': '0x57f817', 'uniqueId': '0x30c80b450a576b1cc335efd1301eeccbf471aad6794ba7fb1c18d8e060f53465:log:21', 'hash': '0x30c80b450a576b1cc335efd1301eeccbf471aad6794ba7fb1c18d8e060f53465', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T14:44:23.000Z'}}, {'blockNum': '0x57f825', 'uniqueId': '0xd72c6b41378d28d035a22371144303c029023fabfe2d187ca6f55969f76f3801:log:28', 'hash': '0xd72c6b41378d28d035a22371144303c029023fabfe2d187ca6f55969f76f3801', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T14:48:17.000Z'}}, {'blockNum': '0x57f85a', 'uniqueId': '0x9bcb8c4308cb6dd5db42bcb7d89d7feee715c6510cb0b080e4b1e241eba55202:log:0', 'hash': '0x9bcb8c4308cb6dd5db42bcb7d89d7feee715c6510cb0b080e4b1e241eba55202', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'value': 120220.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x19752a96d27e08a20000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T15:03:56.000Z'}}, {'blockNum': '0x57f887', 'uniqueId': '0xa7aed8d01cefca072a54ac0b691d0f82e7b24f52f8d7c1a38d18973a92a0ec4a:log:22', 'hash': '0xa7aed8d01cefca072a54ac0b691d0f82e7b24f52f8d7c1a38d18973a92a0ec4a', 'from': '0x5076905e74d5f6318ce804a0d4b6e237f3e911fe', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 315.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x111e9afad1e45bffff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T15:17:53.000Z'}}, {'blockNum': '0x57f89d', 'uniqueId': '0xc7e36433cc647f49aff1caf67dff86755100064ee81002a2e22231edd00ae28e:log:40', 'hash': '0xc7e36433cc647f49aff1caf67dff86755100064ee81002a2e22231edd00ae28e', 'from': '0x4daa30fcd52feadf0791952803b933344c0d89a3', 'to': '0x1ffa3309a24fbd69b3c3057bd5d7e480c2caa1c3', 'value': 168.7078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x09254a823f6da58000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T15:24:39.000Z'}}, {'blockNum': '0x57f8e1', 'uniqueId': '0x988c346f641a8db5e60e635f36a5c889c98efa9b753c4682e05ef475c51a0f3d:log:8', 'hash': '0x988c346f641a8db5e60e635f36a5c889c98efa9b753c4682e05ef475c51a0f3d', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x6e908d362390e74c585597f10e2e55f81bd96d90', 'value': 8708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01d80fc6b709e5900000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T15:41:40.000Z'}}, {'blockNum': '0x57f9a9', 'uniqueId': '0xe6d3cee944768a18e27a5b71fd896f04870df7ccf9fe9ec4d5f9d3e2715e66b7:log:0', 'hash': '0xe6d3cee944768a18e27a5b71fd896f04870df7ccf9fe9ec4d5f9d3e2715e66b7', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T16:31:45.000Z'}}, {'blockNum': '0x57f9c5', 'uniqueId': '0x91a52efe71093dfdece8498453abdf03673f00048cced943ad398935ecc43d8a:log:16', 'hash': '0x91a52efe71093dfdece8498453abdf03673f00048cced943ad398935ecc43d8a', 'from': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T16:38:05.000Z'}}, {'blockNum': '0x57fae9', 'uniqueId': '0x148b70fcca9865034e54b0838d354add3c51d30f69fd09f15981f2af828db670:log:98', 'hash': '0x148b70fcca9865034e54b0838d354add3c51d30f69fd09f15981f2af828db670', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xf66cae345071c62206f00300ea739bdd1dfd5958', 'value': 10887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x024e2f79d233adbc0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T17:56:51.000Z'}}, {'blockNum': '0x57faee', 'uniqueId': '0x0ab65ba4c85cc1e334f23115a2e5d5ef8470663384cf7f9626f417b3df38c1b6:log:21', 'hash': '0x0ab65ba4c85cc1e334f23115a2e5d5ef8470663384cf7f9626f417b3df38c1b6', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T17:58:45.000Z'}}, {'blockNum': '0x57fb01', 'uniqueId': '0x2794c1781216759ebb4f73fe70334d210d55ca8353a95bc84b22ee1d99c334d7:log:6', 'hash': '0x2794c1781216759ebb4f73fe70334d210d55ca8353a95bc84b22ee1d99c334d7', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xb89ede251eb3ade0484ca4f95827ef47166058ed', 'value': 116877.1233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x18bfebeaafcfaee24000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T18:03:28.000Z'}}, {'blockNum': '0x57fb29', 'uniqueId': '0x2aeff4149d4a8e0dd06162556ddcc5cf6828ece1c71afa4ff6c780e10f584255:log:21', 'hash': '0x2aeff4149d4a8e0dd06162556ddcc5cf6828ece1c71afa4ff6c780e10f584255', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x65e3a1759a943aeee894bc779e31d90121a87243', 'value': 30100.874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x065fc58acdbc07810000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T18:14:19.000Z'}}, {'blockNum': '0x57fb3b', 'uniqueId': '0x3eaa6c4fcc9379bcd49940c560f559ec1c0fb6a2f6f10f931b0551e98e34e236:log:39', 'hash': '0x3eaa6c4fcc9379bcd49940c560f559ec1c0fb6a2f6f10f931b0551e98e34e236', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T18:18:10.000Z'}}, {'blockNum': '0x57fbb1', 'uniqueId': '0x134a3700773b1a275e407357132d5721949854c178fcaee66658e356c0a902c2:log:7', 'hash': '0x134a3700773b1a275e407357132d5721949854c178fcaee66658e356c0a902c2', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 75006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0fe2155a312e25380000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T18:48:00.000Z'}}, {'blockNum': '0x57fbd4', 'uniqueId': '0x22817765efc2a1970ee5b14665f9489feaf1af3ce82fbed0290087ed141fde44:log:40', 'hash': '0x22817765efc2a1970ee5b14665f9489feaf1af3ce82fbed0290087ed141fde44', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 75006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0fe2155a312e25380000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T18:58:09.000Z'}}, {'blockNum': '0x57fbf2', 'uniqueId': '0xc9bc6abbc6c95b3379402ec358430fc08d16e09117c7cc5636bef732fde03de7:log:20', 'hash': '0xc9bc6abbc6c95b3379402ec358430fc08d16e09117c7cc5636bef732fde03de7', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T19:04:37.000Z'}}, {'blockNum': '0x57fbfd', 'uniqueId': '0xc2aed8535aa484401e773e2bc1eff50017887faf7fa29b63d9893d601cf80c1c:log:28', 'hash': '0xc2aed8535aa484401e773e2bc1eff50017887faf7fa29b63d9893d601cf80c1c', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T19:08:15.000Z'}}, {'blockNum': '0x57fc54', 'uniqueId': '0xb8492d33a27684208469f891e395424dad4b2fa27a534d6ef1f12bda8234e7e5:log:32', 'hash': '0xb8492d33a27684208469f891e395424dad4b2fa27a534d6ef1f12bda8234e7e5', 'from': '0xf66cae345071c62206f00300ea739bdd1dfd5958', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 10887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x024e2f79d233adbc0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T19:31:25.000Z'}}, {'blockNum': '0x57fcda', 'uniqueId': '0x22493c8f05888ba6deb41470ec6b425480e687c881c54825a11c5476ffdc9827:log:16', 'hash': '0x22493c8f05888ba6deb41470ec6b425480e687c881c54825a11c5476ffdc9827', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 28459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0606c3f695c179cc0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:02:54.000Z'}}, {'blockNum': '0x57fcdd', 'uniqueId': '0xffd13e9a6f6340d76ef12256d0174ad2d194dd95dfcc67fc59371265af2b670b:log:15', 'hash': '0xffd13e9a6f6340d76ef12256d0174ad2d194dd95dfcc67fc59371265af2b670b', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:03:40.000Z'}}, {'blockNum': '0x57fcdf', 'uniqueId': '0x68acd70649618907377cc099f2ec4f8f88191bc8b53ec7c957816f0bb86b7832:log:6', 'hash': '0x68acd70649618907377cc099f2ec4f8f88191bc8b53ec7c957816f0bb86b7832', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 5294.7494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x011f07689e83f0a58000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:04:24.000Z'}}, {'blockNum': '0x57fce0', 'uniqueId': '0x35333272fef9e0e13c3fc3b5a02a14684217f109db793ec7cdedd5d29591ef2f:log:1', 'hash': '0x35333272fef9e0e13c3fc3b5a02a14684217f109db793ec7cdedd5d29591ef2f', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:04:32.000Z'}}, {'blockNum': '0x57fce1', 'uniqueId': '0xc6c0b405d817311780c733163dbe84b98f9175322b1ab3e1dd32e8dd2ca8bdcc:log:25', 'hash': '0xc6c0b405d817311780c733163dbe84b98f9175322b1ab3e1dd32e8dd2ca8bdcc', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xf8851b834dfff1beeaea24ccde31acce8e2739b2', 'value': 2873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x9bbee2663191440000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:04:50.000Z'}}, {'blockNum': '0x57fcec', 'uniqueId': '0xf8b0398464bb3ffde86285743b6a4cb42ef1863232868608b3c0d145564d3c98:log:5', 'hash': '0xf8b0398464bb3ffde86285743b6a4cb42ef1863232868608b3c0d145564d3c98', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x2c359bdac0b1a9711119decc4f1a20530d28b260', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:07:31.000Z'}}, {'blockNum': '0x57fced', 'uniqueId': '0x8df7066f8800e547adff69d31f4197a8615ff6aeaba7d2ef06b76daf28c8c6d9:log:13', 'hash': '0x8df7066f8800e547adff69d31f4197a8615ff6aeaba7d2ef06b76daf28c8c6d9', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x2c359bdac0b1a9711119decc4f1a20530d28b260', 'value': 199.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0acf3b1b8894e40000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:07:38.000Z'}}, {'blockNum': '0x57fcef', 'uniqueId': '0x66d5a62649359ebd0a93ea628c988dce7fb6a67f894dc4237211d8b3e2539156:log:10', 'hash': '0x66d5a62649359ebd0a93ea628c988dce7fb6a67f894dc4237211d8b3e2539156', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:08:07.000Z'}}, {'blockNum': '0x57fcf2', 'uniqueId': '0x3442ca50855b3c24e3f747215cd6826fe38f02d65a829dba43b3454a4016c583:log:5', 'hash': '0x3442ca50855b3c24e3f747215cd6826fe38f02d65a829dba43b3454a4016c583', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xc86d9b6148561e33fdd392820d00dd6106f15b10', 'value': 30080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x065ea3db755466000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:08:40.000Z'}}, {'blockNum': '0x57fcf3', 'uniqueId': '0x7714c1e93450e56b05e217f621e635b831d6ff5785fd27f7a84289d8e942e845:log:2', 'hash': '0x7714c1e93450e56b05e217f621e635b831d6ff5785fd27f7a84289d8e942e845', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:08:50.000Z'}}, {'blockNum': '0x57fcf3', 'uniqueId': '0x6d876e86cd61c23f8b32692384ef460a4e5811cd52cafbee98ed19176104e8bc:log:3', 'hash': '0x6d876e86cd61c23f8b32692384ef460a4e5811cd52cafbee98ed19176104e8bc', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0xa59f4bbbddf87e0baf909e59e3e5fdca6ebef465', 'value': 6962.051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x017969ddd1f911138000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:08:50.000Z'}}, {'blockNum': '0x57fcf5', 'uniqueId': '0x68b317430c37b968728f99f43814bb0075ee8376ef5cb7c8a08bc53b5848953f:log:2', 'hash': '0x68b317430c37b968728f99f43814bb0075ee8376ef5cb7c8a08bc53b5848953f', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x2c359bdac0b1a9711119decc4f1a20530d28b260', 'value': 5056.42508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01121bfe8c2bf81f8000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:09:08.000Z'}}, {'blockNum': '0x57fcf6', 'uniqueId': '0x1a4433c69ea004a0ae410471161d424114c51644121fddc016e01b808601c7f6:log:11', 'hash': '0x1a4433c69ea004a0ae410471161d424114c51644121fddc016e01b808601c7f6', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x2c359bdac0b1a9711119decc4f1a20530d28b260', 'value': 29995.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x065a0b05569e8ce00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:09:23.000Z'}}, {'blockNum': '0x57fcfc', 'uniqueId': '0xb6317d7ec5cc3fb7eb5e7de671a7825dc682d5281d225c5a9e6e0ec5c0642845:log:7', 'hash': '0xb6317d7ec5cc3fb7eb5e7de671a7825dc682d5281d225c5a9e6e0ec5c0642845', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0xa59f4bbbddf87e0baf909e59e3e5fdca6ebef465', 'value': 31918.955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x06c2547c0aa0e6778000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:10:38.000Z'}}, {'blockNum': '0x57fcff', 'uniqueId': '0x43c272006fd9241406727542e1a93c98b56615ea30c2d19db1b39d4264459354:log:13', 'hash': '0x43c272006fd9241406727542e1a93c98b56615ea30c2d19db1b39d4264459354', 'from': '0xf8851b834dfff1beeaea24ccde31acce8e2739b2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x9bbee2663191440000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:11:20.000Z'}}, {'blockNum': '0x57fd02', 'uniqueId': '0x5bbd1e7c757767077aac29766394f020d480b0e1236d1919e71b8d3094730836:log:6', 'hash': '0x5bbd1e7c757767077aac29766394f020d480b0e1236d1919e71b8d3094730836', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x4956124cbe45f6addb87fd6a94f4985d527cbab0', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:11:53.000Z'}}, {'blockNum': '0x57fd03', 'uniqueId': '0x718726ebc25fdf60ced5b0eb5d76335d01f048cf7f0bf49006320a5292798056:log:5', 'hash': '0x718726ebc25fdf60ced5b0eb5d76335d01f048cf7f0bf49006320a5292798056', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x2c359bdac0b1a9711119decc4f1a20530d28b260', 'value': 47927.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a2624e64c481b1a0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:12:03.000Z'}}, {'blockNum': '0x57fd04', 'uniqueId': '0xe853a5e84551f962b57ca4cd946b3f51a183e5387cc47e6ab01cbc1a55d83c1c:log:9', 'hash': '0xe853a5e84551f962b57ca4cd946b3f51a183e5387cc47e6ab01cbc1a55d83c1c', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x602f96301e6bf3fabc5bedf52a3a4af0afcf94e0', 'value': 33.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01d4839d21c1300000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:12:35.000Z'}}, {'blockNum': '0x57fd07', 'uniqueId': '0x65ce7001f49e63344d8f649bf8ac5f8efd79b8fc8a47d5e599aeb323b38cfb49:log:11', 'hash': '0x65ce7001f49e63344d8f649bf8ac5f8efd79b8fc8a47d5e599aeb323b38cfb49', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x379483fff86baa2936c10900edfd7821b895bb5f', 'value': 20727.8594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0463a8d59f64e9748000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:13:31.000Z'}}, {'blockNum': '0x57fd08', 'uniqueId': '0x6ea757b5b16cc781d369e8c2681e96a2f805b238eb4c7595172968959085a019:log:10', 'hash': '0x6ea757b5b16cc781d369e8c2681e96a2f805b238eb4c7595172968959085a019', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x3b881a7f997a0f9e3b72ab10563f78ecc4d9a4bf', 'value': 35010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0769e559e511f9c80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:14:31.000Z'}}, {'blockNum': '0x57fd08', 'uniqueId': '0x5a55cd5b970763b65e2a9ff1bc471a4cb7d6c3b53b7da976ffb83cbb696d4721:log:101', 'hash': '0x5a55cd5b970763b65e2a9ff1bc471a4cb7d6c3b53b7da976ffb83cbb696d4721', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:14:31.000Z'}}, {'blockNum': '0x57fd08', 'uniqueId': '0x364e017063088f1d271cb491ada8a00f296f20c59d9f8342f2231329a9e0d9c7:log:124', 'hash': '0x364e017063088f1d271cb491ada8a00f296f20c59d9f8342f2231329a9e0d9c7', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x4956124cbe45f6addb87fd6a94f4985d527cbab0', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:14:31.000Z'}}, {'blockNum': '0x57fd08', 'uniqueId': '0xafcc6737cfa57e8800e0a3987df5c1ff36b58ddd3b3305ef4cafc1a84c8c1562:log:129', 'hash': '0xafcc6737cfa57e8800e0a3987df5c1ff36b58ddd3b3305ef4cafc1a84c8c1562', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 5017.6046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x011001407f4a9df78000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:14:31.000Z'}}, {'blockNum': '0x57fd08', 'uniqueId': '0xf2f39a0e9d3398acc066df5ee12d9deffbad68b9b8a3e63efc45fc8f2a9d9c42:log:130', 'hash': '0xf2f39a0e9d3398acc066df5ee12d9deffbad68b9b8a3e63efc45fc8f2a9d9c42', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x8051cd54161d25bc37134dbcbc09af514c0255d8', 'value': 71629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0f2b0410194b07140000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:14:31.000Z'}}, {'blockNum': '0x57fd0a', 'uniqueId': '0x05f4a28a303b5a97fbb461ece293fe18779d8d5b4be86057e9186b12c05027ee:log:5', 'hash': '0x05f4a28a303b5a97fbb461ece293fe18779d8d5b4be86057e9186b12c05027ee', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x85a1dc38bd468007641c7142dd842129ef5ff0c7', 'value': 157453.7812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x2157962a3f838e9d0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:15:06.000Z'}}, {'blockNum': '0x57fd0b', 'uniqueId': '0xab1f758e428ef2aafef31bb8499b9846da3f56d1a01f28e5f941f1a31ff2a448:log:14', 'hash': '0xab1f758e428ef2aafef31bb8499b9846da3f56d1a01f28e5f941f1a31ff2a448', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0xa59f4bbbddf87e0baf909e59e3e5fdca6ebef465', 'value': 4543.329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xf64b5b15e94ab68000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:15:24.000Z'}}, {'blockNum': '0x57fd0c', 'uniqueId': '0x9281fb3a33ddf10c30fe15cdf4e3274fd1f0df78426c4211133dc8b9a877efef:log:8', 'hash': '0x9281fb3a33ddf10c30fe15cdf4e3274fd1f0df78426c4211133dc8b9a877efef', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x4956124cbe45f6addb87fd6a94f4985d527cbab0', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:15:52.000Z'}}, {'blockNum': '0x57fd0c', 'uniqueId': '0x9aa11a5287e421a28986b8e7a04f58a9515b50b3d7e060a95480da4d62b5d58a:log:9', 'hash': '0x9aa11a5287e421a28986b8e7a04f58a9515b50b3d7e060a95480da4d62b5d58a', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x2c359bdac0b1a9711119decc4f1a20530d28b260', 'value': 5303.383975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x011f7f3ccabade1d7000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:15:52.000Z'}}, {'blockNum': '0x57fd0c', 'uniqueId': '0x317fea17750370a64586b5ffa5eb7200a80b8b8777f3872d4b71f27d630af1e2:log:94', 'hash': '0x317fea17750370a64586b5ffa5eb7200a80b8b8777f3872d4b71f27d630af1e2', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xf7d6477a43783bcf61e2c48ba26189e6b7177442', 'value': 5233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x011bae76ae60b3240000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:15:52.000Z'}}, {'blockNum': '0x57fd10', 'uniqueId': '0x3530225abbe85cfe19b85c9f21da7880650eae0d3f7faf6f019bc24f782c6169:log:42', 'hash': '0x3530225abbe85cfe19b85c9f21da7880650eae0d3f7faf6f019bc24f782c6169', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x7798ef8eb5071cf25e9b6d26698caf815bf7819a', 'value': 33768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x072691238177dea00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:18:09.000Z'}}, {'blockNum': '0x57fd11', 'uniqueId': '0x6a96f18630157649676bca93b6cd6ec6a9550e063f1ee94d7738fff90ca887fa:log:21', 'hash': '0x6a96f18630157649676bca93b6cd6ec6a9550e063f1ee94d7738fff90ca887fa', 'from': '0x3b881a7f997a0f9e3b72ab10563f78ecc4d9a4bf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0769e559e511f9c80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:18:53.000Z'}}, {'blockNum': '0x57fd11', 'uniqueId': '0xf811ad12d2a36755f54eae56c71d6dd6c721fd19630beb8e80aa86f77f85870e:log:23', 'hash': '0xf811ad12d2a36755f54eae56c71d6dd6c721fd19630beb8e80aa86f77f85870e', 'from': '0x4956124cbe45f6addb87fd6a94f4985d527cbab0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:18:53.000Z'}}, {'blockNum': '0x57fd11', 'uniqueId': '0x31c9f037de79fdf01104eeb0bc2026c8bacd090c5f0de1130db7288c8acbea9f:log:24', 'hash': '0x31c9f037de79fdf01104eeb0bc2026c8bacd090c5f0de1130db7288c8acbea9f', 'from': '0xa59f4bbbddf87e0baf909e59e3e5fdca6ebef465', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 43424.335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x093209b4f28342418000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:18:53.000Z'}}, {'blockNum': '0x57fd11', 'uniqueId': '0x401f75292184dad6afad1fce0a670b24a404d07ab75e1dd09ef50169d062682c:log:26', 'hash': '0x401f75292184dad6afad1fce0a670b24a404d07ab75e1dd09ef50169d062682c', 'from': '0xf7d6477a43783bcf61e2c48ba26189e6b7177442', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x011bae76ae60b3240000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:18:53.000Z'}}, {'blockNum': '0x57fd11', 'uniqueId': '0x58cf08287543539f4a22d6bdab3e3e5daa8b26bff3b52c818aff686a44a1b783:log:30', 'hash': '0x58cf08287543539f4a22d6bdab3e3e5daa8b26bff3b52c818aff686a44a1b783', 'from': '0x85a1dc38bd468007641c7142dd842129ef5ff0c7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 157453.7812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x2157962a3f838e9d0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:18:53.000Z'}}, {'blockNum': '0x57fd11', 'uniqueId': '0x6b9edeed39c0a7246e25b4043f26abd5d0e21e14db25d065687e945022622e69:log:33', 'hash': '0x6b9edeed39c0a7246e25b4043f26abd5d0e21e14db25d065687e945022622e69', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0606c3f695c179cc0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:18:53.000Z'}}, {'blockNum': '0x57fd11', 'uniqueId': '0x02cf70bafa5713a4f31507472ed3183f386432b2bfdf9f45754cbc85bb8ad828:log:34', 'hash': '0x02cf70bafa5713a4f31507472ed3183f386432b2bfdf9f45754cbc85bb8ad828', 'from': '0x8051cd54161d25bc37134dbcbc09af514c0255d8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 71629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0f2b0410194b07140000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:18:53.000Z'}}, {'blockNum': '0x57fd11', 'uniqueId': '0x7da2f896f759a3592e076165ebf723405056344f793e091b1976f981f0af773b:log:36', 'hash': '0x7da2f896f759a3592e076165ebf723405056344f793e091b1976f981f0af773b', 'from': '0x379483fff86baa2936c10900edfd7821b895bb5f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20727.8594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0463a8d59f64e9748000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:18:53.000Z'}}, {'blockNum': '0x57fd16', 'uniqueId': '0x95659c77585710a3771c964ebbf6db1a4d946b660abf1a06d1e3087663f169da:log:40', 'hash': '0x95659c77585710a3771c964ebbf6db1a4d946b660abf1a06d1e3087663f169da', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 28576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x060d1baa15dcfa800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:20:34.000Z'}}, {'blockNum': '0x57fd18', 'uniqueId': '0xfe28fd4831189c6af9500712d28362a70d49c0e48d6949ec9d6780fd21215e24:log:11', 'hash': '0xfe28fd4831189c6af9500712d28362a70d49c0e48d6949ec9d6780fd21215e24', 'from': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5294.7494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x011f07689e83f0a58000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:20:50.000Z'}}, {'blockNum': '0x57fd20', 'uniqueId': '0x6e2283c2d71d1c92fd94f0b40e99f7a4e84a5288c9621e25aa8151e06d0713bf:log:21', 'hash': '0x6e2283c2d71d1c92fd94f0b40e99f7a4e84a5288c9621e25aa8151e06d0713bf', 'from': '0x2c359bdac0b1a9711119decc4f1a20530d28b260', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 45251.02508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0995101fc80dcc238000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:22:39.000Z'}}, {'blockNum': '0x57fd22', 'uniqueId': '0xe13080e9005c408ae87b63ce162c6c68b87d6f067c087c4c770f0ad568004b3a:log:3', 'hash': '0xe13080e9005c408ae87b63ce162c6c68b87d6f067c087c4c770f0ad568004b3a', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:23:41.000Z'}}, {'blockNum': '0x57fd35', 'uniqueId': '0xcb712b36e2b994ef0989d4581ccc0305f5e21fc1a572b687f7c9bc659ebc0162:log:29', 'hash': '0xcb712b36e2b994ef0989d4581ccc0305f5e21fc1a572b687f7c9bc659ebc0162', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x060d1baa15dcfa800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:28:11.000Z'}}, {'blockNum': '0x57fd36', 'uniqueId': '0x465e2ae43e8c89aaf6c118bb8a6e1d8e6bfb4377c2fc4b4c11acec0f50aa9c0a:log:5', 'hash': '0x465e2ae43e8c89aaf6c118bb8a6e1d8e6bfb4377c2fc4b4c11acec0f50aa9c0a', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x4da90b1ff3c651d6ec3f40a918ea473bced334a3', 'value': 16233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x036ffe2125e144040000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:28:28.000Z'}}, {'blockNum': '0x57fd43', 'uniqueId': '0x6019bdba7e0de042359b4e6e4972be99a0af712dbd3a36417e9cae67965df9da:log:34', 'hash': '0x6019bdba7e0de042359b4e6e4972be99a0af712dbd3a36417e9cae67965df9da', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'value': 79990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x10f0443f2ad108180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:32:06.000Z'}}, {'blockNum': '0x57fd43', 'uniqueId': '0xc7cccd5129673f04a619420929d9df8afbda7b27db842689224beba60e8be87c:log:35', 'hash': '0xc7cccd5129673f04a619420929d9df8afbda7b27db842689224beba60e8be87c', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x89007545c1f0f0113eaac2778ccf45476ed891b7', 'value': 42652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x09082b67d404d8f00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:32:06.000Z'}}, {'blockNum': '0x57fd52', 'uniqueId': '0x688986fdf16486f5f5329f0cbebbcc512a556e18ddf7e3a13344d1b318f8db6a:log:5', 'hash': '0x688986fdf16486f5f5329f0cbebbcc512a556e18ddf7e3a13344d1b318f8db6a', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x379483fff86baa2936c10900edfd7821b895bb5f', 'value': 19752.564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x042ec9e4506e40f20000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:35:43.000Z'}}, {'blockNum': '0x57fd59', 'uniqueId': '0xa1d235ab6aa4991f9e9ae9dc4aa4df39fd3d9b8fb5b87a301ed1bbdf08973768:log:8', 'hash': '0xa1d235ab6aa4991f9e9ae9dc4aa4df39fd3d9b8fb5b87a301ed1bbdf08973768', 'from': '0x379483fff86baa2936c10900edfd7821b895bb5f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19752.564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x042ec9e4506e40f20000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:38:04.000Z'}}, {'blockNum': '0x57fd59', 'uniqueId': '0x7a004cfc0ea7b8a255cffbb9721ff679a6ea8a46ebaa634dedad65f609ac2811:log:9', 'hash': '0x7a004cfc0ea7b8a255cffbb9721ff679a6ea8a46ebaa634dedad65f609ac2811', 'from': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 79990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x10f0443f2ad108180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:38:04.000Z'}}, {'blockNum': '0x57fd59', 'uniqueId': '0x3c7bc3c2ba22e2936b3e4a9f4bba65bd22801d42a6c17ea07b22c1ca656126f7:log:12', 'hash': '0x3c7bc3c2ba22e2936b3e4a9f4bba65bd22801d42a6c17ea07b22c1ca656126f7', 'from': '0x89007545c1f0f0113eaac2778ccf45476ed891b7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x09082b67d404d8f00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:38:04.000Z'}}, {'blockNum': '0x57fd84', 'uniqueId': '0xc9059b5a3d9505ba1b8a27a59155dedf183cd408af207bb6289b5f40d2d83a40:log:15', 'hash': '0xc9059b5a3d9505ba1b8a27a59155dedf183cd408af207bb6289b5f40d2d83a40', 'from': '0x4da90b1ff3c651d6ec3f40a918ea473bced334a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x036ffe2125e144040000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:48:25.000Z'}}, {'blockNum': '0x57fd8e', 'uniqueId': '0x0cb937412eb27a7b6aa8ed39eea12185033eb4eef9e2430991429bb938f3b818:log:5', 'hash': '0x0cb937412eb27a7b6aa8ed39eea12185033eb4eef9e2430991429bb938f3b818', 'from': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5017.6046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x011001407f4a9df78000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:50:50.000Z'}}, {'blockNum': '0x57fd8f', 'uniqueId': '0x7dac3ce009bb509bb572eb00548db04f0dcf4608221b68a45b3450786420bb0b:log:11', 'hash': '0x7dac3ce009bb509bb572eb00548db04f0dcf4608221b68a45b3450786420bb0b', 'from': '0x2c359bdac0b1a9711119decc4f1a20530d28b260', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53230.683975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0b45a4231702f9377000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:50:54.000Z'}}, {'blockNum': '0x57fd99', 'uniqueId': '0x93a1bfdbb41ba176841c653708a69467ed2828ad79fb1df5359147e7dad39c3a:log:9', 'hash': '0x93a1bfdbb41ba176841c653708a69467ed2828ad79fb1df5359147e7dad39c3a', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'value': 4980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x010df7621ed445500000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:53:25.000Z'}}, {'blockNum': '0x57fd99', 'uniqueId': '0x0fd007692b1bc205ec397e81cd79abbc2b17335ff0e78f8fe3f35137f3dfbade:log:17', 'hash': '0x0fd007692b1bc205ec397e81cd79abbc2b17335ff0e78f8fe3f35137f3dfbade', 'from': '0xbefeae8eef458e8ab1ac0571c1d13cd473524202', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 26944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x05b4a31d5c91dcffffff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:53:25.000Z'}}, {'blockNum': '0x57fda0', 'uniqueId': '0xdb93ce317d41b6868634531459cf4fc38f5d96195af2a7ba5ac0eb020e074c6e:log:5', 'hash': '0xdb93ce317d41b6868634531459cf4fc38f5d96195af2a7ba5ac0eb020e074c6e', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:55:53.000Z'}}, {'blockNum': '0x57fda9', 'uniqueId': '0xe12a5a0d2414354c94e4109ebba98b9737cd97d94aa6292dccbad564d0210e66:log:11', 'hash': '0xe12a5a0d2414354c94e4109ebba98b9737cd97d94aa6292dccbad564d0210e66', 'from': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x010df7621ed445500000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:58:06.000Z'}}, {'blockNum': '0x57fdb6', 'uniqueId': '0xa913d85601da65343a793d8832c9be4fdf829f0ca03c63d05c816d1bbe5f6f68:log:18', 'hash': '0xa913d85601da65343a793d8832c9be4fdf829f0ca03c63d05c816d1bbe5f6f68', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T21:00:36.000Z'}}, {'blockNum': '0x57fddc', 'uniqueId': '0xfd2ef5cbe086741c12a89d6dbfff20fa6f94262ad463d0515eaad010c1740cf6:log:10', 'hash': '0xfd2ef5cbe086741c12a89d6dbfff20fa6f94262ad463d0515eaad010c1740cf6', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'value': 9980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x021d045283b19e700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T21:09:58.000Z'}}, {'blockNum': '0x57fe01', 'uniqueId': '0x0fb50333504b4c19006ce1656ec40c8cbc8b9fa9da08677de73a816cc6f06725:log:32', 'hash': '0x0fb50333504b4c19006ce1656ec40c8cbc8b9fa9da08677de73a816cc6f06725', 'from': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x021d045283b19e700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T21:18:10.000Z'}}, {'blockNum': '0x57fe46', 'uniqueId': '0x63dc17b2d0b2c7dca3ca8e3aa9ac446298f18431a3ca03b2ad8150147add6247:log:0', 'hash': '0x63dc17b2d0b2c7dca3ca8e3aa9ac446298f18431a3ca03b2ad8150147add6247', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'value': 29980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x06593814172702f00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T21:33:30.000Z'}}, {'blockNum': '0x57fe55', 'uniqueId': '0xbb08e4abd329e48d95cc8fdce56b73938de7d7679b211b18a4b9af63cf2c9ab4:log:23', 'hash': '0xbb08e4abd329e48d95cc8fdce56b73938de7d7679b211b18a4b9af63cf2c9ab4', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T21:36:56.000Z'}}, {'blockNum': '0x57fe5b', 'uniqueId': '0x976e38575b6008877263439dd409a5fa9fc05baf39613edb28937e3483334db0:log:14', 'hash': '0x976e38575b6008877263439dd409a5fa9fc05baf39613edb28937e3483334db0', 'from': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x06593814172702f00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T21:38:12.000Z'}}, {'blockNum': '0x57fe5c', 'uniqueId': '0x1617bbde2e10c9f290908fb5c193d77575fecb10760614269c98d1f5806299f0:log:8', 'hash': '0x1617bbde2e10c9f290908fb5c193d77575fecb10760614269c98d1f5806299f0', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T21:38:46.000Z'}}, {'blockNum': '0x57fe67', 'uniqueId': '0x5d74f2cc3efcafe9bac05ed590e820ebb0e5335b4a0431e6935988cc79a09143:log:5', 'hash': '0x5d74f2cc3efcafe9bac05ed590e820ebb0e5335b4a0431e6935988cc79a09143', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T21:42:01.000Z'}}, {'blockNum': '0x57fe7c', 'uniqueId': '0x943e4394335b4a980236664629337bd5351d921f4d95c0a986695affd660e81b:log:8', 'hash': '0x943e4394335b4a980236664629337bd5351d921f4d95c0a986695affd660e81b', 'from': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T21:48:32.000Z'}}, {'blockNum': '0x57fe80', 'uniqueId': '0x164a3b9864b19c4426d02675d00bcba54b5528d4bb027f7a12a02128c6850669:log:11', 'hash': '0x164a3b9864b19c4426d02675d00bcba54b5528d4bb027f7a12a02128c6850669', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T21:49:22.000Z'}}, {'blockNum': '0x57feff', 'uniqueId': '0x3eb736803400b187c193fd09324f6efc7fc5f81dbdb9bd1ce802aaf04424a5c5:log:1', 'hash': '0x3eb736803400b187c193fd09324f6efc7fc5f81dbdb9bd1ce802aaf04424a5c5', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:17:47.000Z'}}, {'blockNum': '0x57ff04', 'uniqueId': '0xb370b7b2fba198358ae9044a7d6fa52abfa99630b7829066ec8492b5c7509418:log:2', 'hash': '0xb370b7b2fba198358ae9044a7d6fa52abfa99630b7829066ec8492b5c7509418', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'value': 33398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0712825b71cff0180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:18:54.000Z'}}, {'blockNum': '0x57ff2a', 'uniqueId': '0x750878e344d6a877878d2e46c24627b978b53ed06e0707475c607da72c61e441:log:7', 'hash': '0x750878e344d6a877878d2e46c24627b978b53ed06e0707475c607da72c61e441', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:27:49.000Z'}}, {'blockNum': '0x57ff2c', 'uniqueId': '0x01a4be8baef5b5bde5279b7a53ff6aa3ba38502ab38883bac462665a420cd95f:log:12', 'hash': '0x01a4be8baef5b5bde5279b7a53ff6aa3ba38502ab38883bac462665a420cd95f', 'from': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0712825b71cff0180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:28:16.000Z'}}, {'blockNum': '0x57ff40', 'uniqueId': '0x0b76d7eaa702e694f0d314721eb189484e648ec6b16fc4df97baa293369a6664:log:15', 'hash': '0x0b76d7eaa702e694f0d314721eb189484e648ec6b16fc4df97baa293369a6664', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'value': 32246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x06d40f25495eae180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:32:45.000Z'}}, {'blockNum': '0x57ff47', 'uniqueId': '0x4ad48f58fa482a8011f78c589a2e879ebdf580d95e6708751e02799f0406f83f:log:21', 'hash': '0x4ad48f58fa482a8011f78c589a2e879ebdf580d95e6708751e02799f0406f83f', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:34:48.000Z'}}, {'blockNum': '0x57ff50', 'uniqueId': '0x9704903f8519c40a8dc8b9701d677a7f695ceb23874123d56832e4664d5364b9:log:1', 'hash': '0x9704903f8519c40a8dc8b9701d677a7f695ceb23874123d56832e4664d5364b9', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 84000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x11c9a62d04ed0c800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:38:04.000Z'}}, {'blockNum': '0x57ff50', 'uniqueId': '0x9537d49160229161030da2265254dcc198b9c081d0bdae50f062c5fba450c40c:log:5', 'hash': '0x9537d49160229161030da2265254dcc198b9c081d0bdae50f062c5fba450c40c', 'from': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x06d40f25495eae180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:38:04.000Z'}}, {'blockNum': '0x57ff6b', 'uniqueId': '0x502b1ef6878f71009a8b946ce630728cad70081f39506e7fe2774db9ce0d3004:log:18', 'hash': '0x502b1ef6878f71009a8b946ce630728cad70081f39506e7fe2774db9ce0d3004', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7d3ff5d8349c7fca79d9724c2aef1299eaae07c5', 'value': 21437.698055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x048a23d31f3af5837000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:43:41.000Z'}}, {'blockNum': '0x57ff74', 'uniqueId': '0xff52c4f6e4872c66806a84b633566d145392e78976ebbdf7485dad959025cadf:log:1', 'hash': '0xff52c4f6e4872c66806a84b633566d145392e78976ebbdf7485dad959025cadf', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2939364237980f9998081157896355b2bffdbac3', 'value': 17825.939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x03c6589952a09dfb8000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:46:30.000Z'}}, {'blockNum': '0x57ff76', 'uniqueId': '0xea95f9d420b7b56d6e62ce36c432270198ffd63580360b2405353099bf91e072:log:1', 'hash': '0xea95f9d420b7b56d6e62ce36c432270198ffd63580360b2405353099bf91e072', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xad7cb432e042b8c1e14805d27dac441226f7cce9', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:46:41.000Z'}}, {'blockNum': '0x57ff7b', 'uniqueId': '0xf8a46b6bdff4c30c57a7cfe5e4c86d019db03c59649c94d4a080dc967569eab9:log:4', 'hash': '0xf8a46b6bdff4c30c57a7cfe5e4c86d019db03c59649c94d4a080dc967569eab9', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'value': 44059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x09547173f969d78c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:48:02.000Z'}}, {'blockNum': '0x57ff87', 'uniqueId': '0x50564e8ec4843d1a388c95cc9934f76ae43bbe29a549641c133eb51614a78c92:log:3', 'hash': '0x50564e8ec4843d1a388c95cc9934f76ae43bbe29a549641c133eb51614a78c92', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 122000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x19d5a21cd04c18400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:50:52.000Z'}}, {'blockNum': '0x57ff90', 'uniqueId': '0x6d0a01071f46acac04fc9c8567e13ab23f454e63acf486d7a5f60e7aa3fed23d:log:1', 'hash': '0x6d0a01071f46acac04fc9c8567e13ab23f454e63acf486d7a5f60e7aa3fed23d', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 6095.744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x014a7371175d36c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:52:54.000Z'}}, {'blockNum': '0x57ff96', 'uniqueId': '0x0fcc6dcb5a365963e5cf6023039a45ec25bf65488d8a4030db0c54e37dbd044f:log:0', 'hash': '0x0fcc6dcb5a365963e5cf6023039a45ec25bf65488d8a4030db0c54e37dbd044f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7d3ff5d8349c7fca79d9724c2aef1299eaae07c5', 'value': 10708.728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0244857472ba374c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:54:30.000Z'}}, {'blockNum': '0x57ff9c', 'uniqueId': '0x98ba7efbdf8230815d5f0934f81c28404b55092311cb427c7c64cc85f8e60d11:log:47', 'hash': '0x98ba7efbdf8230815d5f0934f81c28404b55092311cb427c7c64cc85f8e60d11', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 69640, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ebf312497777b200000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:55:58.000Z'}}, {'blockNum': '0x57ff9d', 'uniqueId': '0x1de72d79bc83eafccc28ed1f2da4adef548b6109bfb246ae00ae12879790a332:log:12', 'hash': '0x1de72d79bc83eafccc28ed1f2da4adef548b6109bfb246ae00ae12879790a332', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 10942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x02512ac112cca4380000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:56:17.000Z'}}, {'blockNum': '0x57ff9d', 'uniqueId': '0xe0f585f13169021d46804e28a1ce202a4aea496190165085d733318e86fabc76:log:14', 'hash': '0xe0f585f13169021d46804e28a1ce202a4aea496190165085d733318e86fabc76', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x703793b99b17d85cbcdc59ec14cb19b07285c24f', 'value': 11755.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x027d435cf61002370000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:56:17.000Z'}}, {'blockNum': '0x57ff9e', 'uniqueId': '0x855aea44e8fe5629a142b9c044abc376f4fad764fe060a2ca7de7b8db2e376b6:log:6', 'hash': '0x855aea44e8fe5629a142b9c044abc376f4fad764fe060a2ca7de7b8db2e376b6', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 58347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0c5aff49045854cc0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:56:20.000Z'}}, {'blockNum': '0x57ff9e', 'uniqueId': '0xbd486c6530121b2379be44fd7b0436527e5713231562fe9f9a74d00f1df19a27:log:7', 'hash': '0xbd486c6530121b2379be44fd7b0436527e5713231562fe9f9a74d00f1df19a27', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 75089.36105477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0fe69a3826d3e8f37400', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:56:20.000Z'}}, {'blockNum': '0x57ff9e', 'uniqueId': '0xa36a707801d5c86d7dc74ed3ab0b9ffb99806c6788b6c9e7f46c0ccedfe8c09f:log:8', 'hash': '0xa36a707801d5c86d7dc74ed3ab0b9ffb99806c6788b6c9e7f46c0ccedfe8c09f', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 9264.7793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01f63ea426720c364000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:56:20.000Z'}}, {'blockNum': '0x57ff9e', 'uniqueId': '0x81e108bf36f5dbdec68c440a5a1b6ab64881414b714ec4a940f646219f6a65c8:log:9', 'hash': '0x81e108bf36f5dbdec68c440a5a1b6ab64881414b714ec4a940f646219f6a65c8', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x4956124cbe45f6addb87fd6a94f4985d527cbab0', 'value': 137725.80066906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1d2a216ff5f1c9c62800', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:56:20.000Z'}}, {'blockNum': '0x57ff9e', 'uniqueId': '0x0502828756f7f53e34911d96b0e8e417e864439b78edd36da3a184da041b52cb:log:150', 'hash': '0x0502828756f7f53e34911d96b0e8e417e864439b78edd36da3a184da041b52cb', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x4956124cbe45f6addb87fd6a94f4985d527cbab0', 'value': 136311.38532774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1cdd747b3ae85849d800', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:56:20.000Z'}}, {'blockNum': '0x57ffa0', 'uniqueId': '0x51d0911dee77dbac75cd071e1333c738fa191cdf00f08a0dbd0b2e0c76a2761f:log:5', 'hash': '0x51d0911dee77dbac75cd071e1333c738fa191cdf00f08a0dbd0b2e0c76a2761f', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x5bf68cd676a53b7df3533831ffbf5a3edd740527', 'value': 11247.41418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0261b93a355b0f6e4000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:01.000Z'}}, {'blockNum': '0x57ffa0', 'uniqueId': '0x054711ed44aa3781145f988cdbd6afd9740b65ccab97c3a38d6454584e395bbe:log:8', 'hash': '0x054711ed44aa3781145f988cdbd6afd9740b65ccab97c3a38d6454584e395bbe', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xbc0b3e5ca6986ea3309d81a6e37672d149ff5b77', 'value': 6841.5502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0172e194fad042af8000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:01.000Z'}}, {'blockNum': '0x57ffa0', 'uniqueId': '0x89ee871ea29a411e4fe8e35c6262b464d90e18c42566e8c2f43bcf4adcbdb1e7:log:9', 'hash': '0x89ee871ea29a411e4fe8e35c6262b464d90e18c42566e8c2f43bcf4adcbdb1e7', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x5f303ac5e61a84a5750c83a44dd80a33f0c8c72f', 'value': 16263.39402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0371a3ee660918224000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:01.000Z'}}, {'blockNum': '0x57ffa0', 'uniqueId': '0x941586c2d8b0d4fcac4af693841c40d6a8478f26863d00a92cba49da23280400:log:10', 'hash': '0x941586c2d8b0d4fcac4af693841c40d6a8478f26863d00a92cba49da23280400', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xc19fdef12506d5c2c9acbfbeca98ece1d2718576', 'value': 11690.87808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0279c38678d550c80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:01.000Z'}}, {'blockNum': '0x57ffa0', 'uniqueId': '0xcdf81567e8ee96a2771a573e0a398af5fcaad7dce833f53c71447f1e53951443:log:18', 'hash': '0xcdf81567e8ee96a2771a573e0a398af5fcaad7dce833f53c71447f1e53951443', 'from': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 206000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x2b9f4849d53924c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:01.000Z'}}, {'blockNum': '0x57ffa1', 'uniqueId': '0xf7844f9788d2814572f9e25275d25d81f2f5712f63b2b95de8f9aee2e3a44da7:log:3', 'hash': '0xf7844f9788d2814572f9e25275d25d81f2f5712f63b2b95de8f9aee2e3a44da7', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xc19fdef12506d5c2c9acbfbeca98ece1d2718576', 'value': 53394.36700612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0b4e83b20895dc069000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:06.000Z'}}, {'blockNum': '0x57ffa1', 'uniqueId': '0x9982237c969942257a171ae778f310aaee3880f04b2913f30f64b9f015d3d9b2:log:4', 'hash': '0x9982237c969942257a171ae778f310aaee3880f04b2913f30f64b9f015d3d9b2', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xce27dbcd10379c110d00c298ceebf0eb6237b7cd', 'value': 9998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x021dfe1f5c5363780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:06.000Z'}}, {'blockNum': '0x57ffa1', 'uniqueId': '0x7274770261f744e0d68fbaed05ddcb4ca4281efa37f3d5b03d650da314f3d514:log:10', 'hash': '0x7274770261f744e0d68fbaed05ddcb4ca4281efa37f3d5b03d650da314f3d514', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xfa7e17ae2b6425f9c66eacadd9418cb87325c1a0', 'value': 95702.14466961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1444060e75510b702400', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:06.000Z'}}, {'blockNum': '0x57ffa1', 'uniqueId': '0x77e7973ac0bef114c5f60fe1a2999fe67513cd293d3c764a4c164c9eb8535572:log:14', 'hash': '0x77e7973ac0bef114c5f60fe1a2999fe67513cd293d3c764a4c164c9eb8535572', 'from': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 44059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x09547173f969d78c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:06.000Z'}}, {'blockNum': '0x57ffa2', 'uniqueId': '0x75a9cd18b96e28e843d069521046e81637b92378bb5d9479941cf4d2bfe099db:log:6', 'hash': '0x75a9cd18b96e28e843d069521046e81637b92378bb5d9479941cf4d2bfe099db', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xbc4f7f9df41acecc1f55228da01a27efc797bc8e', 'value': 49998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a9665a2833e2c780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:13.000Z'}}, {'blockNum': '0x57ffa2', 'uniqueId': '0xdf133de100d7d5d679dfe61396d6690a3dc129b3c5f5e7660c457de98372a4c5:log:38', 'hash': '0xdf133de100d7d5d679dfe61396d6690a3dc129b3c5f5e7660c457de98372a4c5', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x92df426b5e03600c0f89fc7490a06eae5b2dc191', 'value': 1398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x4bc925b9141c180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:13.000Z'}}, {'blockNum': '0x57ffa4', 'uniqueId': '0x9553eb4d441435705ddc0597661831bef3183a3b8611ebf5baad162f7c8b5e95:log:11', 'hash': '0x9553eb4d441435705ddc0597661831bef3183a3b8611ebf5baad162f7c8b5e95', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x89007545c1f0f0113eaac2778ccf45476ed891b7', 'value': 34408.20096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x074945b636a87eb00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:29.000Z'}}, {'blockNum': '0x57ffa4', 'uniqueId': '0x19627e7978256c397eeac6afcc74c22bf1261cef8f09e4c2b8ab7c667205ae30:log:15', 'hash': '0x19627e7978256c397eeac6afcc74c22bf1261cef8f09e4c2b8ab7c667205ae30', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 127987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1b1a306d9bcfcfec0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:29.000Z'}}, {'blockNum': '0x57ffa8', 'uniqueId': '0x355037930818c2a15aeb2ae230dfa09d8ee4de2ac216b4733951f4310031a4b1:log:16', 'hash': '0x355037930818c2a15aeb2ae230dfa09d8ee4de2ac216b4733951f4310031a4b1', 'from': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6095.744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x014a7371175d36c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:59:22.000Z'}}, {'blockNum': '0x57ffaf', 'uniqueId': '0x31236204e47c2e6d1a8c5630e861b0efe06369bec7cc1e22b28a99659f4cd841:log:11', 'hash': '0x31236204e47c2e6d1a8c5630e861b0efe06369bec7cc1e22b28a99659f4cd841', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 123000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1a0bd7e67e11f6e00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:01:24.000Z'}}, {'blockNum': '0x57ffaf', 'uniqueId': '0x8cc6a79b30b414ca0ffed773a22726155bb0982f7ca6eaa770fcdd69dc66d162:log:18', 'hash': '0x8cc6a79b30b414ca0ffed773a22726155bb0982f7ca6eaa770fcdd69dc66d162', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'value': 90000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x130ee8e7179044400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:01:24.000Z'}}, {'blockNum': '0x57ffb7', 'uniqueId': '0x194fae4cd078ef941b73aa0fda2b13d7b6fa634d9ff1dc8861e3a989bc14abfb:log:11', 'hash': '0x194fae4cd078ef941b73aa0fda2b13d7b6fa634d9ff1dc8861e3a989bc14abfb', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf3ffab21306a12b2a4db2fe1c401b423c9b90b24', 'value': 84971.81, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x11fe54bfb30e50dd0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:03:29.000Z'}}, {'blockNum': '0x57ffbe', 'uniqueId': '0x5094441ae50e775f12169246967a835ca1e154f2643243f42a550e8fa5c4b9d3:log:5', 'hash': '0x5094441ae50e775f12169246967a835ca1e154f2643243f42a550e8fa5c4b9d3', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x61e3a1265c0e1775eef3385b08967b150c314876', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:05:36.000Z'}}, {'blockNum': '0x57ffc3', 'uniqueId': '0xa1196e18d948c99e36f950a755e0214ac4d7e2955f6b27632bf46623fa5b3f4f:log:9', 'hash': '0xa1196e18d948c99e36f950a755e0214ac4d7e2955f6b27632bf46623fa5b3f4f', 'from': '0x7d3ff5d8349c7fca79d9724c2aef1299eaae07c5', 'to': '0x639d9ba0f11ff73a25c0a26849d4d5a7175169b6', 'value': 32146.426055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x06cea94791f52ccf7000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:06:30.000Z'}}, {'blockNum': '0x57ffcb', 'uniqueId': '0xc9176caa64aabc75c40a698df4dd78777e2172d5da91a53231c72da75f8dddea:log:4', 'hash': '0xc9176caa64aabc75c40a698df4dd78777e2172d5da91a53231c72da75f8dddea', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xffd8bf66dabecd7780e457b24992a9792015bfb5', 'value': 87875.21398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x129bb992bbf8ec35c000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:07:58.000Z'}}, {'blockNum': '0x57ffcc', 'uniqueId': '0x2184f540eec06b4adeb292814aee45e44ae5cb7b6860d77e99e23edc1d325bb8:log:17', 'hash': '0x2184f540eec06b4adeb292814aee45e44ae5cb7b6860d77e99e23edc1d325bb8', 'from': '0xc19fdef12506d5c2c9acbfbeca98ece1d2718576', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 65085.24508612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0dc84738816b2cce9000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:08:06.000Z'}}, {'blockNum': '0x57ffcc', 'uniqueId': '0xaba4a843964e53828c58f116df7f3d88a62b1cf8913f19db2ace8abfb89cd956:log:18', 'hash': '0xaba4a843964e53828c58f116df7f3d88a62b1cf8913f19db2ace8abfb89cd956', 'from': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 123000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1a0bd7e67e11f6e00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:08:06.000Z'}}, {'blockNum': '0x57ffcc', 'uniqueId': '0xe24f2ecd082b07fffabf94ee31975dc11515782b99f78f74996888018c826ecf:log:19', 'hash': '0xe24f2ecd082b07fffabf94ee31975dc11515782b99f78f74996888018c826ecf', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 75089.36105477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0fe69a3826d3e8f37400', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:08:06.000Z'}}, {'blockNum': '0x57ffcc', 'uniqueId': '0x617e6f62245d84e7fff2dfc5918ed4ac323589ed3c02e799a695c4a92cef8455:log:20', 'hash': '0x617e6f62245d84e7fff2dfc5918ed4ac323589ed3c02e799a695c4a92cef8455', 'from': '0x5f303ac5e61a84a5750c83a44dd80a33f0c8c72f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16263.39402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0371a3ee660918224000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:08:06.000Z'}}, {'blockNum': '0x57ffcc', 'uniqueId': '0xb99bf1ff0fea7e4fa43feacbdb5dc068f78ea339d5ac386cae81662df07772f1:log:21', 'hash': '0xb99bf1ff0fea7e4fa43feacbdb5dc068f78ea339d5ac386cae81662df07772f1', 'from': '0xfa7e17ae2b6425f9c66eacadd9418cb87325c1a0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 95702.14466961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1444060e75510b702400', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:08:06.000Z'}}, {'blockNum': '0x57ffcc', 'uniqueId': '0x74affdb1a871202ada22da118e2717fc54745dedd9d8d0dc92d4df2fa6b60a46:log:25', 'hash': '0x74affdb1a871202ada22da118e2717fc54745dedd9d8d0dc92d4df2fa6b60a46', 'from': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 90000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x130ee8e7179044400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:08:06.000Z'}}, {'blockNum': '0x57ffcd', 'uniqueId': '0x9cf038989c1772dd3ed668d7ddbf238c18f1460b214241564af6370892a44e21:log:2', 'hash': '0x9cf038989c1772dd3ed668d7ddbf238c18f1460b214241564af6370892a44e21', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 90272.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x131dae9991cbf2320000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:08:32.000Z'}}, {'blockNum': '0x57ffcd', 'uniqueId': '0x390d405d68a7e5d5f438f3b225de8b7d47791f3c5cd1935195c1a54e088d13a8:log:14', 'hash': '0x390d405d68a7e5d5f438f3b225de8b7d47791f3c5cd1935195c1a54e088d13a8', 'from': '0x89007545c1f0f0113eaac2778ccf45476ed891b7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34408.20096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x074945b636a87eb00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:08:32.000Z'}}, {'blockNum': '0x57ffcd', 'uniqueId': '0x6dada408f411e76474d8dbee7438d7bdf525249c9aacddfe0b79c4cdc1e8868d:log:15', 'hash': '0x6dada408f411e76474d8dbee7438d7bdf525249c9aacddfe0b79c4cdc1e8868d', 'from': '0xce27dbcd10379c110d00c298ceebf0eb6237b7cd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x021dfe1f5c5363780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:08:32.000Z'}}, {'blockNum': '0x57ffcd', 'uniqueId': '0x0768a86cd11232a7b27770d04d50dc0e0fbd0af4974147334e4dc72bc6f2f5b8:log:16', 'hash': '0x0768a86cd11232a7b27770d04d50dc0e0fbd0af4974147334e4dc72bc6f2f5b8', 'from': '0x5bf68cd676a53b7df3533831ffbf5a3edd740527', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11247.41418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0261b93a355b0f6e4000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:08:32.000Z'}}, {'blockNum': '0x57ffcd', 'uniqueId': '0x8375933526ed436218dc2f06a8600f7dfb27fc854ba2a7c2b68ff87dc87a0ec9:log:18', 'hash': '0x8375933526ed436218dc2f06a8600f7dfb27fc854ba2a7c2b68ff87dc87a0ec9', 'from': '0x92df426b5e03600c0f89fc7490a06eae5b2dc191', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x4bc925b9141c180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:08:32.000Z'}}, {'blockNum': '0x57ffd0', 'uniqueId': '0xa5e610eb55b5c1541523e33da5cd379016e6b4c09c6f7d1472d241aaff52c512:log:11', 'hash': '0xa5e610eb55b5c1541523e33da5cd379016e6b4c09c6f7d1472d241aaff52c512', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xcb00b2ca435fab0473159e079047df39883b1543', 'value': 92696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x13a10f6b2b8b19600000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:09:51.000Z'}}, {'blockNum': '0x57ffd2', 'uniqueId': '0x9222033b3cbbcf4345a5dbf7346202016fdf7fceb78a438e90b6e01bee98527f:log:4', 'hash': '0x9222033b3cbbcf4345a5dbf7346202016fdf7fceb78a438e90b6e01bee98527f', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x915b58a290d365f9e709ffd6190e5c11622dd7d4', 'value': 92028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x137cd90e6ec250700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:10:22.000Z'}}, {'blockNum': '0x57ffd3', 'uniqueId': '0x345321fb895bc3378a68a6aca6be355bbd28d03f8c5ab38d157c7e62dc957e07:log:120', 'hash': '0x345321fb895bc3378a68a6aca6be355bbd28d03f8c5ab38d157c7e62dc957e07', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x4988966b7e42f6a05ab574eef55ddd411b3ade15', 'value': 486.7896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1a63901214027e0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:10:56.000Z'}}, {'blockNum': '0x57ffd4', 'uniqueId': '0xe4aee5acacc51695f8797342afb271f5a3dee5c5377f789bf4c6be85486a3b82:log:5', 'hash': '0xe4aee5acacc51695f8797342afb271f5a3dee5c5377f789bf4c6be85486a3b82', 'from': '0x2939364237980f9998081157896355b2bffdbac3', 'to': '0x639d9ba0f11ff73a25c0a26849d4d5a7175169b6', 'value': 17825.939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x03c6589952a09dfb8000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:11:00.000Z'}}, {'blockNum': '0x57ffd5', 'uniqueId': '0xf4aa9258c1cd5993351b60fa4ced46b50633b2099bccaeb488df4bc9d0e156c1:log:10', 'hash': '0xf4aa9258c1cd5993351b60fa4ced46b50633b2099bccaeb488df4bc9d0e156c1', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 6389.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x015a6246b8a82a958000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:11:04.000Z'}}, {'blockNum': '0x57ffd5', 'uniqueId': '0xedf4085c4fb3483f2ddab7968f6513a6a9278fb876ca96a151774fae7d3d5918:log:61', 'hash': '0xedf4085c4fb3483f2ddab7968f6513a6a9278fb876ca96a151774fae7d3d5918', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x2c174bedf6984e2d2d7ec3b0ee3e71cf3380c42d', 'value': 15630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x034f4dd2ccb5fb780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:11:04.000Z'}}, {'blockNum': '0x57ffd8', 'uniqueId': '0x965c72669ed6c32175d5c6291adb78d70e14f4648acb455f9e583870905f4ebd:log:7', 'hash': '0x965c72669ed6c32175d5c6291adb78d70e14f4648acb455f9e583870905f4ebd', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x02512ac112cca4380000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:11:32.000Z'}}, {'blockNum': '0x57ffda', 'uniqueId': '0x2fca9e179bde62043530e8dbd01bf2d7fb9924fdd1a118155abdfe69c0ce0a4f:log:3', 'hash': '0x2fca9e179bde62043530e8dbd01bf2d7fb9924fdd1a118155abdfe69c0ce0a4f', 'from': '0xa30d8157911ef23c46c0eb71889efe6a648a41f7', 'to': '0x46da31b0699345c9dbffce9412a6bd4b2a44dea7', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:12:29.000Z'}}, {'blockNum': '0x57ffda', 'uniqueId': '0x0f004a4905763aa2228170593fa218b326c9e7cdb839aa6785f1dcac3d44a41e:log:5', 'hash': '0x0f004a4905763aa2228170593fa218b326c9e7cdb839aa6785f1dcac3d44a41e', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xb2b210a7e3e25561b2aa102b6a0432e6a7e050e2', 'value': 28915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x061f7c3c05c3a3ec0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:12:29.000Z'}}, {'blockNum': '0x57ffda', 'uniqueId': '0xd1ef08bb8743fb3b34cea4631f47c81b83be0c8757ff49e7e83a9ad0ff0caebc:log:8', 'hash': '0xd1ef08bb8743fb3b34cea4631f47c81b83be0c8757ff49e7e83a9ad0ff0caebc', 'from': '0x61e3a1265c0e1775eef3385b08967b150c314876', 'to': '0xa13d8ecbbe96c9926c3d56ca1bfd9a502f65b280', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:12:29.000Z'}}, {'blockNum': '0x57ffdb', 'uniqueId': '0xc5564a3ef8d581326adf8fa8da1c40e30ef1189964cb8acaa3b01c2c37ede76f:log:32', 'hash': '0xc5564a3ef8d581326adf8fa8da1c40e30ef1189964cb8acaa3b01c2c37ede76f', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 123000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1a0bd7e67e11f6e00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:12:50.000Z'}}, {'blockNum': '0x57ffe1', 'uniqueId': '0xc68be16df9536b6c23f387aa9a1ac7350fe7432524973a5b8561d33a3e686ea4:log:8', 'hash': '0xc68be16df9536b6c23f387aa9a1ac7350fe7432524973a5b8561d33a3e686ea4', 'from': '0x61e3a1265c0e1775eef3385b08967b150c314876', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 40001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x08787563dd9e70640000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:13:55.000Z'}}, {'blockNum': '0x57ffe4', 'uniqueId': '0x3fa2dfc4bdc7f04cbd31a54236e5bd1c5baaeabb419dd0c0090b6bcf08e01d9f:log:9', 'hash': '0x3fa2dfc4bdc7f04cbd31a54236e5bd1c5baaeabb419dd0c0090b6bcf08e01d9f', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'value': 33980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x07320f3ace3e7d700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:15:08.000Z'}}, {'blockNum': '0x57ffef', 'uniqueId': '0xb67c9345abc841ec5fd0efb7a8ed4e43fbd10d14716ff3e465e305426257c57a:log:5', 'hash': '0xb67c9345abc841ec5fd0efb7a8ed4e43fbd10d14716ff3e465e305426257c57a', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x5900f05c6d3083a7784a3df43333c28fc5281fd4', 'value': 52255.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0b10cc4aba603ef60000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:16:53.000Z'}}, {'blockNum': '0x57fff3', 'uniqueId': '0x7e419558fb39ae477363a8c884c67fffe41a05194ace59ddae809a6391418da9:log:10', 'hash': '0x7e419558fb39ae477363a8c884c67fffe41a05194ace59ddae809a6391418da9', 'from': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 123000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1a0bd7e67e11f6e00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:18:07.000Z'}}, {'blockNum': '0x57fff3', 'uniqueId': '0xc9cb45fd4969ff9178c2163293a236efae1c09425c348b2da2b2b7c3bf0c4e82:log:12', 'hash': '0xc9cb45fd4969ff9178c2163293a236efae1c09425c348b2da2b2b7c3bf0c4e82', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9264.7793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01f63ea426720c364000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:18:07.000Z'}}, {'blockNum': '0x57fff3', 'uniqueId': '0xfd457ebd957f39b331b68c65dbbdf24cba89e9e53432a659951a6d97446c5a85:log:13', 'hash': '0xfd457ebd957f39b331b68c65dbbdf24cba89e9e53432a659951a6d97446c5a85', 'from': '0x4956124cbe45f6addb87fd6a94f4985d527cbab0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 274037.1859968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x3a0795eb30da22100000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:18:07.000Z'}}, {'blockNum': '0x57fff3', 'uniqueId': '0xa2a9e6bcbbc1b1579b9ecc1304c312fa281947da4137f102651c09e3c84f657f:log:14', 'hash': '0xa2a9e6bcbbc1b1579b9ecc1304c312fa281947da4137f102651c09e3c84f657f', 'from': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x08787563dd9e70640000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:18:07.000Z'}}, {'blockNum': '0x57fff3', 'uniqueId': '0x744c4fa428acf4b91a54d0767a60493ca197e5e7f18266f79244b4d463d5d8a1:log:15', 'hash': '0x744c4fa428acf4b91a54d0767a60493ca197e5e7f18266f79244b4d463d5d8a1', 'from': '0xf3ffab21306a12b2a4db2fe1c401b423c9b90b24', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84971.81, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x11fe54bfb30e50dd0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:18:07.000Z'}}, {'blockNum': '0x57fff3', 'uniqueId': '0x9987a45d7240ceed3bcc2e101dbefd311ebedf2625e552ed0b0e2f457e1ef409:log:18', 'hash': '0x9987a45d7240ceed3bcc2e101dbefd311ebedf2625e552ed0b0e2f457e1ef409', 'from': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x07320f3ace3e7d700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:18:07.000Z'}}, {'blockNum': '0x57fff3', 'uniqueId': '0x65d0d2fbef83081292e5aa9497568a0e04cd58ebf1a6588f531e330c989864b1:log:19', 'hash': '0x65d0d2fbef83081292e5aa9497568a0e04cd58ebf1a6588f531e330c989864b1', 'from': '0x703793b99b17d85cbcdc59ec14cb19b07285c24f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11755.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x027d435cf61002370000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:18:07.000Z'}}, {'blockNum': '0x57fff3', 'uniqueId': '0x402fe6e514807a3b92e8027c3f0de798842475e0b09fefc975cabb5d190f6f8c:log:20', 'hash': '0x402fe6e514807a3b92e8027c3f0de798842475e0b09fefc975cabb5d190f6f8c', 'from': '0xbc4f7f9df41acecc1f55228da01a27efc797bc8e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a9665a2833e2c780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:18:07.000Z'}}, {'blockNum': '0x57fff3', 'uniqueId': '0x5a88d64826eb9f851315facdd2632379fbade83a2f4fb9e5f5c8f840ea122dcc:log:21', 'hash': '0x5a88d64826eb9f851315facdd2632379fbade83a2f4fb9e5f5c8f840ea122dcc', 'from': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6389.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x015a6246b8a82a958000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:18:07.000Z'}}, {'blockNum': '0x57fff4', 'uniqueId': '0x3935e00c3018f1d6d2db179c9292c0bd3736d07af491f7d496cc2fb544733ddc:log:7', 'hash': '0x3935e00c3018f1d6d2db179c9292c0bd3736d07af491f7d496cc2fb544733ddc', 'from': '0xffd8bf66dabecd7780e457b24992a9792015bfb5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 87875.21398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x129bb992bbf8ec35c000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:18:19.000Z'}}, {'blockNum': '0x57fff9', 'uniqueId': '0x4fa7249097b17636362e312a16de53975cd1809b2358170d4cce8c7b1c1247ec:log:5', 'hash': '0x4fa7249097b17636362e312a16de53975cd1809b2358170d4cce8c7b1c1247ec', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xcb00b2ca435fab0473159e079047df39883b1543', 'value': 44489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x096bc0e6db2d01840000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:20:26.000Z'}}, {'blockNum': '0x580000', 'uniqueId': '0x70e1ce883467e2e8c3c7f173dea6acdcca6bb0c759cc2150b1a2280103c84475:log:2', 'hash': '0x70e1ce883467e2e8c3c7f173dea6acdcca6bb0c759cc2150b1a2280103c84475', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xea55a4145d0c97bf58490cdb1b71d4b4a8b6b274', 'value': 1922.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x683c35dc91a9180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:22:22.000Z'}}, {'blockNum': '0x580007', 'uniqueId': '0xbda7754751cb00e90f11ba750dafaaf781120b81c432a440bd84c18c8a843f76:log:10', 'hash': '0xbda7754751cb00e90f11ba750dafaaf781120b81c432a440bd84c18c8a843f76', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xcb00b2ca435fab0473159e079047df39883b1543', 'value': 43525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x09377eb6deaaacf40000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:24:56.000Z'}}, {'blockNum': '0x58000a', 'uniqueId': '0x9133daeda2519d5cdff3330481900a21d8daa0bdeea361a8c567276ab46169ea:log:132', 'hash': '0x9133daeda2519d5cdff3330481900a21d8daa0bdeea361a8c567276ab46169ea', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:25:57.000Z'}}, {'blockNum': '0x58000b', 'uniqueId': '0x58c73a41f617961471d65ff7286d28f416bc9bdbf5b2b7040c19bf2b2ab57373:log:2', 'hash': '0x58c73a41f617961471d65ff7286d28f416bc9bdbf5b2b7040c19bf2b2ab57373', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x46da31b0699345c9dbffce9412a6bd4b2a44dea7', 'value': 95461.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1436fd37643c9b3a0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:26:11.000Z'}}, {'blockNum': '0x580015', 'uniqueId': '0xedeed118ad6205612254d79ea8b99c286c1dd32e60579f0a55dfada70a0e02e0:log:4', 'hash': '0xedeed118ad6205612254d79ea8b99c286c1dd32e60579f0a55dfada70a0e02e0', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xea55a4145d0c97bf58490cdb1b71d4b4a8b6b274', 'value': 15407.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x03434391177275360000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:28:25.000Z'}}, {'blockNum': '0x580015', 'uniqueId': '0xa89fc624ab4af29fb48be6f1fd97f29b544f6106070e55a87e187904272c2b0f:log:19', 'hash': '0xa89fc624ab4af29fb48be6f1fd97f29b544f6106070e55a87e187904272c2b0f', 'from': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:28:25.000Z'}}, {'blockNum': '0x580015', 'uniqueId': '0x1612be797ad5ddd31aaba0f32b08a1f1f00241739a5736eb1ea81a3c4b68aa4a:log:23', 'hash': '0x1612be797ad5ddd31aaba0f32b08a1f1f00241739a5736eb1ea81a3c4b68aa4a', 'from': '0x5900f05c6d3083a7784a3df43333c28fc5281fd4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 52255.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0b10cc4aba603ef60000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:28:25.000Z'}}, {'blockNum': '0x580015', 'uniqueId': '0x91b3fed07693209b785fd0401754357f9e1519ad3e3be66ef70bac32172fa65b:log:25', 'hash': '0x91b3fed07693209b785fd0401754357f9e1519ad3e3be66ef70bac32172fa65b', 'from': '0x915b58a290d365f9e709ffd6190e5c11622dd7d4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 92028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x137cd90e6ec250700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:28:25.000Z'}}, {'blockNum': '0x580017', 'uniqueId': '0x951e77c62c494c47e9972db1ea8e75028d886ac097c2931579e38d4efdf3960b:log:20', 'hash': '0x951e77c62c494c47e9972db1ea8e75028d886ac097c2931579e38d4efdf3960b', 'from': '0xea55a4145d0c97bf58490cdb1b71d4b4a8b6b274', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17330.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x03ab7fc6f4041e4e0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:29:08.000Z'}}, {'blockNum': '0x58001a', 'uniqueId': '0x2afc9ae5e0fa88974321dafce30d012b38a571d7d01dce142de35acfd5120363:log:5', 'hash': '0x2afc9ae5e0fa88974321dafce30d012b38a571d7d01dce142de35acfd5120363', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'value': 33980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x07320f3ace3e7d700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:30:03.000Z'}}, {'blockNum': '0x580022', 'uniqueId': '0xb28a7ee13010aba6d63f72e8ba802b592e74d25c01a4ee1f92e231066cc0ef11:log:8', 'hash': '0xb28a7ee13010aba6d63f72e8ba802b592e74d25c01a4ee1f92e231066cc0ef11', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x9b035da833d64e39ca0c3f41b6d320bc460d49c6', 'value': 34910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0764799286e496b80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:32:46.000Z'}}, {'blockNum': '0x580026', 'uniqueId': '0xd065b91bfdbbac1bcbf489e94b47db650622f16552e39cdef0277c0e3a08b597:log:25', 'hash': '0xd065b91bfdbbac1bcbf489e94b47db650622f16552e39cdef0277c0e3a08b597', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x840859b4d523d51b29b17e7ecbc9412ac1df775e', 'value': 25360, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x055ec4b2e4f622400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:34:11.000Z'}}, {'blockNum': '0x58002e', 'uniqueId': '0x2c5db81021515310ff5903477209cd61e5edfcf1c4d19512b865176acdbcfe9c:log:5', 'hash': '0x2c5db81021515310ff5903477209cd61e5edfcf1c4d19512b865176acdbcfe9c', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x3f129e74a2c6a020ddb5bbdb98560f5b87fcc3f7', 'value': 14583.71299561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x031695aca5af2df28400', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:35:51.000Z'}}, {'blockNum': '0x580032', 'uniqueId': '0x47f608d44d6a51331e7e73043088c014f44e1bfa7a2cb7b2e7093b3eb25274b2:log:9', 'hash': '0x47f608d44d6a51331e7e73043088c014f44e1bfa7a2cb7b2e7093b3eb25274b2', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 58755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0c711d6c32ab1c2c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:37:09.000Z'}}, {'blockNum': '0x580037', 'uniqueId': '0x90bb5f8e293f71199e73743ad5f34b560ca5ca30a40aa5041c3e1ccfcce87b25:log:5', 'hash': '0x90bb5f8e293f71199e73743ad5f34b560ca5ca30a40aa5041c3e1ccfcce87b25', 'from': '0x61e3a1265c0e1775eef3385b08967b150c314876', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 29999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x065a3fc1a67c6f5c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:38:25.000Z'}}, {'blockNum': '0x580037', 'uniqueId': '0xcc22222d6984999423fc76fbc4aff401e288ddf4e30cd9c5759b568656ad4384:log:8', 'hash': '0xcc22222d6984999423fc76fbc4aff401e288ddf4e30cd9c5759b568656ad4384', 'from': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x07320f3ace3e7d700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:38:25.000Z'}}, {'blockNum': '0x580053', 'uniqueId': '0xebc7e5c93213b5cd0b391e1bbfd4cae68d38f57ae4895e467825e8af8c8f7a4d:log:10', 'hash': '0xebc7e5c93213b5cd0b391e1bbfd4cae68d38f57ae4895e467825e8af8c8f7a4d', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 72523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0f5b7ace20ad964c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:46:12.000Z'}}, {'blockNum': '0x58005b', 'uniqueId': '0xdc6e333b59fc3678049f06030dca6f77e9056a78b6bf3855f463263d589fb3d9:log:0', 'hash': '0xdc6e333b59fc3678049f06030dca6f77e9056a78b6bf3855f463263d589fb3d9', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 87000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x126c478a0e3ea8600000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:47:28.000Z'}}, {'blockNum': '0x580060', 'uniqueId': '0x434252cc487e9c0b9fcaaec512b7a6143fea0fb6983c8b61194f53c82792b851:log:8', 'hash': '0x434252cc487e9c0b9fcaaec512b7a6143fea0fb6983c8b61194f53c82792b851', 'from': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x065a3fc1a67c6f5c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:48:06.000Z'}}, {'blockNum': '0x580060', 'uniqueId': '0x03da8b1fa91cb4fb51165996603a1169625e10425ce9113c435bf5a9ad1ce417:log:10', 'hash': '0x03da8b1fa91cb4fb51165996603a1169625e10425ce9113c435bf5a9ad1ce417', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 131278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1bcc983a5358b2780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:48:06.000Z'}}, {'blockNum': '0x580060', 'uniqueId': '0xe8552c90cb4dd5d042e04e32f7fd32db61b2d02590263d400eca6ba5c30304d9:log:11', 'hash': '0xe8552c90cb4dd5d042e04e32f7fd32db61b2d02590263d400eca6ba5c30304d9', 'from': '0x3f129e74a2c6a020ddb5bbdb98560f5b87fcc3f7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14583.71299561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x031695aca5af2df28400', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:48:06.000Z'}}, {'blockNum': '0x580064', 'uniqueId': '0xaa83ef74bc63e22b15109322fc455f2e2cbdf77d2e96703daf6a48404540304d:log:0', 'hash': '0xaa83ef74bc63e22b15109322fc455f2e2cbdf77d2e96703daf6a48404540304d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9b42b9baace30b148b86ccb9ff97db875ccff6c1', 'value': 16217.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x036f27061600a1760000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:49:05.000Z'}}, {'blockNum': '0x580065', 'uniqueId': '0xf63726c6ab822f5753515df570c9ea7a47e2222706d1bd9636c15536755fbccd:log:15', 'hash': '0xf63726c6ab822f5753515df570c9ea7a47e2222706d1bd9636c15536755fbccd', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x5bb59a63dffce8a77a6d1344786d8e12e2c2aede', 'value': 99998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x152ce70673e3a7b80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:49:39.000Z'}}, {'blockNum': '0x58007f', 'uniqueId': '0x51a074877b376c30282aaa6054e9892dec8ecae7a2e9120bd96b5c4d33deb6fe:log:11', 'hash': '0x51a074877b376c30282aaa6054e9892dec8ecae7a2e9120bd96b5c4d33deb6fe', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 37000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x07d5c6261d992d200000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:57:59.000Z'}}, {'blockNum': '0x580080', 'uniqueId': '0xbd49b9a6e726dae719cac8b0982237c9fcd7d936ee628540e1f8e4b9a7f810cd:log:9', 'hash': '0xbd49b9a6e726dae719cac8b0982237c9fcd7d936ee628540e1f8e4b9a7f810cd', 'from': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 87000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x126c478a0e3ea8600000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:58:21.000Z'}}, {'blockNum': '0x580080', 'uniqueId': '0xa6a85ad11293fa03e3d2c676193e454dd6cfe2661dbc1d27de41a92a34ebc403:log:12', 'hash': '0xa6a85ad11293fa03e3d2c676193e454dd6cfe2661dbc1d27de41a92a34ebc403', 'from': '0x5bb59a63dffce8a77a6d1344786d8e12e2c2aede', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x152ce70673e3a7b80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:58:21.000Z'}}, {'blockNum': '0x580082', 'uniqueId': '0xf63cad2c9e1388e800212cd0d614c02f4a6ca1ad2579fdb1d6d75ccdecf9a2f7:log:0', 'hash': '0xf63cad2c9e1388e800212cd0d614c02f4a6ca1ad2579fdb1d6d75ccdecf9a2f7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 91572.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x136427b95a19fa020000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:58:40.000Z'}}, {'blockNum': '0x5800a5', 'uniqueId': '0xd4a6f974caff63dd1e8d2302cf810230dc64be58b639613c893d86f764fa2342:log:10', 'hash': '0xd4a6f974caff63dd1e8d2302cf810230dc64be58b639613c893d86f764fa2342', 'from': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x07d5c6261d992d200000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:08:08.000Z'}}, {'blockNum': '0x5800b9', 'uniqueId': '0x947dd1387bba09937e183ed34d67abac5b1fb124ea31e7fd1266c8d9624d9e26:log:11', 'hash': '0x947dd1387bba09937e183ed34d67abac5b1fb124ea31e7fd1266c8d9624d9e26', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'value': 34980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x076845047c045c100000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:13:19.000Z'}}, {'blockNum': '0x5800c3', 'uniqueId': '0x5da6a621aaee94946d2d3e7124b68cd23cd584f414a37fbb7f9dcc7098207085:log:21', 'hash': '0x5da6a621aaee94946d2d3e7124b68cd23cd584f414a37fbb7f9dcc7098207085', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xbbb1d6b60209a7191c917720bc96f5c736eb8d20', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:16:25.000Z'}}, {'blockNum': '0x5800cb', 'uniqueId': '0x1d97e99c89b9bc2021bb48a0a4f36a3f4354dd7cbd0c666a054fcbc59a534a5c:log:5', 'hash': '0x1d97e99c89b9bc2021bb48a0a4f36a3f4354dd7cbd0c666a054fcbc59a534a5c', 'from': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x076845047c045c100000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:18:07.000Z'}}, {'blockNum': '0x5800ea', 'uniqueId': '0xacfe03b701b2114ef5b64a04a28642e9913c6baa9ac03c307186ca7a2cd44988:log:21', 'hash': '0xacfe03b701b2114ef5b64a04a28642e9913c6baa9ac03c307186ca7a2cd44988', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 59975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0cb34052e2d4d4bc0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:26:52.000Z'}}, {'blockNum': '0x5800ec', 'uniqueId': '0x01a6038cd3318cbca874729afbe253955e0867bfeda0c83bd62ea4522d464534:log:20', 'hash': '0x01a6038cd3318cbca874729afbe253955e0867bfeda0c83bd62ea4522d464534', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xf947f8e56885af63dc21d8ba679869220ee0275b', 'value': 67845.54298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0e5dea0c9737ad184000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:27:35.000Z'}}, {'blockNum': '0x580102', 'uniqueId': '0x86086a7475508dedae0ba43fb453836c87f765fdffc48a67944cf20cc124ae03:log:10', 'hash': '0x86086a7475508dedae0ba43fb453836c87f765fdffc48a67944cf20cc124ae03', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'value': 35658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x078d06285bd1aee80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:32:24.000Z'}}, {'blockNum': '0x58010a', 'uniqueId': '0xdb914592a46995cd09a1b43ca4011dce6dddcf663d58e04df5d8331161835a16:log:9', 'hash': '0xdb914592a46995cd09a1b43ca4011dce6dddcf663d58e04df5d8331161835a16', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 58402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0c5dfa9044f14b480000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:34:07.000Z'}}, {'blockNum': '0x580118', 'uniqueId': '0x5420bcc0c66d60530d1b17a4a772843d095686adefae7bd3d02092925d031d56:log:32', 'hash': '0x5420bcc0c66d60530d1b17a4a772843d095686adefae7bd3d02092925d031d56', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 118377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x19113ae327c620040000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:38:31.000Z'}}, {'blockNum': '0x580131', 'uniqueId': '0x2944f6f090c365fcdbe707ab15c6896bf1755ae8661d4db6f3418651c66dd430:log:4', 'hash': '0x2944f6f090c365fcdbe707ab15c6896bf1755ae8661d4db6f3418651c66dd430', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 86489.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x12509c50fe75b9000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:43:44.000Z'}}, {'blockNum': '0x58013e', 'uniqueId': '0x2977e0784c1ff4bb765521f3b07c2ebd4c3e48802dfee8b90e01ec0b67bb6aa7:log:25', 'hash': '0x2977e0784c1ff4bb765521f3b07c2ebd4c3e48802dfee8b90e01ec0b67bb6aa7', 'from': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x078d06285bd1aee80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:48:02.000Z'}}, {'blockNum': '0x58015c', 'uniqueId': '0x7b2357a6d6fa62a8f73ca259e00a49211078a7181f84da39634957751785c5c7:log:8', 'hash': '0x7b2357a6d6fa62a8f73ca259e00a49211078a7181f84da39634957751785c5c7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 1184244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xfac5fef1d6612f500000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:53:48.000Z'}}, {'blockNum': '0x58015e', 'uniqueId': '0x0302c23438c406d21fbe1677314fd4eb2fdaec72e3f1eab4fd8e49b7f28fe831:log:8', 'hash': '0x0302c23438c406d21fbe1677314fd4eb2fdaec72e3f1eab4fd8e49b7f28fe831', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xdfb62a8310bdf681113fdde65200e79a15137fac', 'value': 926.53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x323a2fce089ead0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:54:04.000Z'}}, {'blockNum': '0x580182', 'uniqueId': '0x3b5954a55f5c116783707c3d2e3ccdff64bbf4adc5d66a3651a785353ab39864:log:0', 'hash': '0x3b5954a55f5c116783707c3d2e3ccdff64bbf4adc5d66a3651a785353ab39864', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xdfb62a8310bdf681113fdde65200e79a15137fac', 'value': 743.04692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x2847d8f4e8a0188000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:01:50.000Z'}}, {'blockNum': '0x5801ab', 'uniqueId': '0xd3c91a3c904e7a2ba60bebebe053692c2728b36903cb81757eee5f8183da2719:log:43', 'hash': '0xd3c91a3c904e7a2ba60bebebe053692c2728b36903cb81757eee5f8183da2719', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x4026e1cb35479e007e97e9140015cc4842a71b59', 'value': 79990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x10f0443f2ad108180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:14:22.000Z'}}, {'blockNum': '0x5801af', 'uniqueId': '0x9da5fd1c4930f23b0c2694ca8ad19c91208d0e8273f191176cba8fabc8e03e4b:log:23', 'hash': '0x9da5fd1c4930f23b0c2694ca8ad19c91208d0e8273f191176cba8fabc8e03e4b', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x61e3a1265c0e1775eef3385b08967b150c314876', 'value': 92000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x137b547a731c01800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:15:11.000Z'}}, {'blockNum': '0x5801af', 'uniqueId': '0x80027a17ff033d5373a3e2c1381c6b61cee57a589d67d9fd43548d19bbcdab43:log:30', 'hash': '0x80027a17ff033d5373a3e2c1381c6b61cee57a589d67d9fd43548d19bbcdab43', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 59781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ca8bc086eaffaf40000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:15:11.000Z'}}, {'blockNum': '0x5801ba', 'uniqueId': '0x86e8e8480bbf818f69259ab1a50691f4b84bbcf027a692295381a15a5166fadc:log:225', 'hash': '0x86e8e8480bbf818f69259ab1a50691f4b84bbcf027a692295381a15a5166fadc', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ca8bc086eaffaf40000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:18:39.000Z'}}, {'blockNum': '0x5801bd', 'uniqueId': '0x8803805105a2048dd2f7409c78e827f78c3679371739a739e7a6b342ac5e473f:log:19', 'hash': '0x8803805105a2048dd2f7409c78e827f78c3679371739a739e7a6b342ac5e473f', 'from': '0xb079a72c627d0a34b880aee0504b901cbce64568', 'to': '0x064469b71356f407037e011d71a15d4a308088e3', 'value': 23485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x04f91fd8bf2320d40000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:19:39.000Z'}}, {'blockNum': '0x5801c1', 'uniqueId': '0xfba0b99c499fc258582bc638d0dc84637079ad9f787f9dc3f0e2ce639a2395ea:log:22', 'hash': '0xfba0b99c499fc258582bc638d0dc84637079ad9f787f9dc3f0e2ce639a2395ea', 'from': '0x61e3a1265c0e1775eef3385b08967b150c314876', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:21:35.000Z'}}, {'blockNum': '0x5801c1', 'uniqueId': '0xc0a7f972f9b59b287cc19d7d00285e5e1ce794628776db07f93ccccef8d077eb:log:230', 'hash': '0xc0a7f972f9b59b287cc19d7d00285e5e1ce794628776db07f93ccccef8d077eb', 'from': '0xa13d8ecbbe96c9926c3d56ca1bfd9a502f65b280', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:21:35.000Z'}}, {'blockNum': '0x5801d4', 'uniqueId': '0xce2620411390cf6e6a22c5f54c5fcf366a92bf28c25fcbfe02b8a19ecc82206e:log:70', 'hash': '0xce2620411390cf6e6a22c5f54c5fcf366a92bf28c25fcbfe02b8a19ecc82206e', 'from': '0x61e3a1265c0e1775eef3385b08967b150c314876', 'to': '0xa13d8ecbbe96c9926c3d56ca1bfd9a502f65b280', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:27:25.000Z'}}, {'blockNum': '0x5801d5', 'uniqueId': '0x8186f29c07600025e4728bc816041a323894c4ef9bce31f3928c26bb8da4c92d:log:16', 'hash': '0x8186f29c07600025e4728bc816041a323894c4ef9bce31f3928c26bb8da4c92d', 'from': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:28:10.000Z'}}, {'blockNum': '0x5801d5', 'uniqueId': '0x5b2c1079e294981b07b478400b4d3105edde39411222f003250894bbb8a25ecc:log:17', 'hash': '0x5b2c1079e294981b07b478400b4d3105edde39411222f003250894bbb8a25ecc', 'from': '0x064469b71356f407037e011d71a15d4a308088e3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x04f91fd8bf2320d40000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:28:10.000Z'}}, {'blockNum': '0x5801f3', 'uniqueId': '0xca97f21b9bea72079dc35f914ee5bc2f3fee48803f0709b1bcf88c9b8700221c:log:37', 'hash': '0xca97f21b9bea72079dc35f914ee5bc2f3fee48803f0709b1bcf88c9b8700221c', 'from': '0x61e3a1265c0e1775eef3385b08967b150c314876', 'to': '0xa13d8ecbbe96c9926c3d56ca1bfd9a502f65b280', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:34:22.000Z'}}, {'blockNum': '0x580220', 'uniqueId': '0x5faf7ad911b958774e1af61d2a2058d7225cb46da17c4fd70277b89a1d455fd6:log:2', 'hash': '0x5faf7ad911b958774e1af61d2a2058d7225cb46da17c4fd70277b89a1d455fd6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9360fc04b2e436f136f66318d3d8d1322b846467', 'value': 515.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1bf3632c3bef680000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:44:49.000Z'}}, {'blockNum': '0x580225', 'uniqueId': '0x571e2dcdaa1f2a55dff7d6a4067930323d4d9a9a959d84670432ea4817ed02d7:log:23', 'hash': '0x571e2dcdaa1f2a55dff7d6a4067930323d4d9a9a959d84670432ea4817ed02d7', 'from': '0x46499f2dff9f551bc71646a0448396b1c4702343', 'to': '0xb9461e8b0a69dceeac71813b322147f7335e4c9b', 'value': 1922.3000000000002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x6835458137d5680000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:45:39.000Z'}}, {'blockNum': '0x580230', 'uniqueId': '0x2d4d0d7d4407460ca324a184046906c336ba656541a3b3e11af55336b143af61:log:11', 'hash': '0x2d4d0d7d4407460ca324a184046906c336ba656541a3b3e11af55336b143af61', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x41b2a09ccdc580a36e008b489f73326b648d4ff2', 'value': 3772.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xcc809114f7db980000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:48:12.000Z'}}, {'blockNum': '0x580246', 'uniqueId': '0x1b4718f410db6df0e80102ad70d23ca2d78d22ba12f4c9e1b618f89bcf01e398:log:8', 'hash': '0x1b4718f410db6df0e80102ad70d23ca2d78d22ba12f4c9e1b618f89bcf01e398', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x4026e1cb35479e007e97e9140015cc4842a71b59', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:54:44.000Z'}}, {'blockNum': '0x580246', 'uniqueId': '0x079f3f5b812d7e4f28ca91431b087e9be4a6a7fca901bd021557405eb7f9f0fc:log:10', 'hash': '0x079f3f5b812d7e4f28ca91431b087e9be4a6a7fca901bd021557405eb7f9f0fc', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x17383d0ba6cbf3001496f567af359ce04491381e', 'value': 59980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0cb385b6745719b00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:54:44.000Z'}}, {'blockNum': '0x580257', 'uniqueId': '0xdd9126d5fbaf9baabab748b0715bd47db505d51668a83f3c10c29fa64c9adb30:log:29', 'hash': '0xdd9126d5fbaf9baabab748b0715bd47db505d51668a83f3c10c29fa64c9adb30', 'from': '0x17383d0ba6cbf3001496f567af359ce04491381e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0cb385b6745719b00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:58:41.000Z'}}, {'blockNum': '0x580277', 'uniqueId': '0xccbf66ff54f919d9f9af433cd3f962563135618dc58542858b75ca81738c5876:log:23', 'hash': '0xccbf66ff54f919d9f9af433cd3f962563135618dc58542858b75ca81738c5876', 'from': '0x41b2a09ccdc580a36e008b489f73326b648d4ff2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3772.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xcc809114f7db980000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:08:29.000Z'}}, {'blockNum': '0x580281', 'uniqueId': '0x0df132c688be672b8715a0feb979ee974386551d128124b3cdd0d2f857b15bdc:log:6', 'hash': '0x0df132c688be672b8715a0feb979ee974386551d128124b3cdd0d2f857b15bdc', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf3ffab21306a12b2a4db2fe1c401b423c9b90b24', 'value': 59832.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0cab8820754c851c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:10:48.000Z'}}, {'blockNum': '0x580285', 'uniqueId': '0x6067cb70b75bea0bf62452a89f0f270381b68920a076ff632d83f98a4d928e13:log:38', 'hash': '0x6067cb70b75bea0bf62452a89f0f270381b68920a076ff632d83f98a4d928e13', 'from': '0xb89ede251eb3ade0484ca4f95827ef47166058ed', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 116877.1233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x18bfebeaafcfaee24000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:11:26.000Z'}}, {'blockNum': '0x580285', 'uniqueId': '0x2754dc2fe3188e607735833f28c6f724888f6af2598447bffea55a392d185965:log:72', 'hash': '0x2754dc2fe3188e607735833f28c6f724888f6af2598447bffea55a392d185965', 'from': '0x65e3a1759a943aeee894bc779e31d90121a87243', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 30100.874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x065fc58acdbc07810000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:11:26.000Z'}}, {'blockNum': '0x5802bd', 'uniqueId': '0x5373dffd9a5c5e7ad44cfcc3b3c5470c16133f18ad36990cbfb6fe7a98026fbe:log:13', 'hash': '0x5373dffd9a5c5e7ad44cfcc3b3c5470c16133f18ad36990cbfb6fe7a98026fbe', 'from': '0xf8467ff91650dc326c0dfc82195005fde128a132', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 65, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x03860e639d8063ffff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:28:02.000Z'}}, {'blockNum': '0x5802c0', 'uniqueId': '0x07af4fcf61f5f48a161ca260a2fb64429cebb8f7e7330a7722ae4f0c2472b483:log:13', 'hash': '0x07af4fcf61f5f48a161ca260a2fb64429cebb8f7e7330a7722ae4f0c2472b483', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xdee8796b2532924991540253cd8582efd1f889e6', 'value': 29998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x065a31e0efc8c7f80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:28:49.000Z'}}, {'blockNum': '0x5802d7', 'uniqueId': '0xe1cc898aa5d269848d5cc8d817c6bd9703e97b8e8db411117221456911334cde:log:10', 'hash': '0xe1cc898aa5d269848d5cc8d817c6bd9703e97b8e8db411117221456911334cde', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xdee8796b2532924991540253cd8582efd1f889e6', 'value': 49998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a9665a2833e2c780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:35:48.000Z'}}, {'blockNum': '0x5802d7', 'uniqueId': '0xc3817690aadac7c02d235e83704d1c5060e35c6df0f942d95d2c9b7f203268eb:log:79', 'hash': '0xc3817690aadac7c02d235e83704d1c5060e35c6df0f942d95d2c9b7f203268eb', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x648ec870fa141fb089ce0fa6fdd6502c460eb8e6', 'value': 26845.52733999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x05af4c8832056d22dc00', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:35:48.000Z'}}, {'blockNum': '0x5802e2', 'uniqueId': '0xaa7b8fb0decb4dbc15e86f5630e97914af58febcc8d6776fcd6120673446a3c4:log:81', 'hash': '0xaa7b8fb0decb4dbc15e86f5630e97914af58febcc8d6776fcd6120673446a3c4', 'from': '0xf947f8e56885af63dc21d8ba679869220ee0275b', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 67845.54298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0e5dea0c9737ad184000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:37:54.000Z'}}, {'blockNum': '0x5802f3', 'uniqueId': '0x9bee628e4e9459cb9a023126e501f854b1ebc210bb8047e2a49c159665d92e05:log:6', 'hash': '0x9bee628e4e9459cb9a023126e501f854b1ebc210bb8047e2a49c159665d92e05', 'from': '0x648ec870fa141fb089ce0fa6fdd6502c460eb8e6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26845.52733999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x05af4c8832056d22dc00', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:40:42.000Z'}}, {'blockNum': '0x5802fe', 'uniqueId': '0x697d3b7749df73b3b0db4a5f150789f35ed79e8f0ee9a46aea9626b7b510a631:log:7', 'hash': '0x697d3b7749df73b3b0db4a5f150789f35ed79e8f0ee9a46aea9626b7b510a631', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xfff90166c6cc1960332ec711845ecc3d0b07fd8a', 'value': 7614.92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x019cce3e726cb9940000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:43:30.000Z'}}, {'blockNum': '0x580307', 'uniqueId': '0x6e0092e8e3defcb5829399336c6f9bca52a7cec75a4bb06c8afe2f2b94702fe1:log:3', 'hash': '0x6e0092e8e3defcb5829399336c6f9bca52a7cec75a4bb06c8afe2f2b94702fe1', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xdee8796b2532924991540253cd8582efd1f889e6', 'value': 55630.34586206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0bc7ba22b356d00db800', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:45:55.000Z'}}, {'blockNum': '0x580309', 'uniqueId': '0x5934196e3095d1112129b27eda39353e0378e9b375784b60d358fd642291ac09:log:56', 'hash': '0x5934196e3095d1112129b27eda39353e0378e9b375784b60d358fd642291ac09', 'from': '0x55df6e2378028cb6bb4984375ab21836f7774960', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 119998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x19691ac807590c380000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:46:03.000Z'}}, {'blockNum': '0x580309', 'uniqueId': '0x79d7b7205bee89bc0fd1e2a9ba6a9d30b117c3d6e4ea9dd71f1421f55f52dbcc:log:58', 'hash': '0x79d7b7205bee89bc0fd1e2a9ba6a9d30b117c3d6e4ea9dd71f1421f55f52dbcc', 'from': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 711708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x96b5c49ae9683ef00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:46:03.000Z'}}, {'blockNum': '0x580309', 'uniqueId': '0x268a8caa2784ef54795e8fc9540997ecb9d3f46cd9ee9804ca4bbeb304bc9214:log:59', 'hash': '0x268a8caa2784ef54795e8fc9540997ecb9d3f46cd9ee9804ca4bbeb304bc9214', 'from': '0x7ba7d64f8d1e2bb356870b3680e17a7c96f3f9cc', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 388117.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x522fe44f3b5abee60000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:46:03.000Z'}}, {'blockNum': '0x580310', 'uniqueId': '0xce8690501bd9b4f7da6a70536ef32fe8dd6dd788eab1c029b0a2e8c2cabf3706:log:35', 'hash': '0xce8690501bd9b4f7da6a70536ef32fe8dd6dd788eab1c029b0a2e8c2cabf3706', 'from': '0xdee8796b2532924991540253cd8582efd1f889e6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 135626.34586206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1cb851a6265dc47db800', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:48:10.000Z'}}, {'blockNum': '0x580322', 'uniqueId': '0xbbd8f43e14ff1e3210dabd289b1746f50264ef9eb1e3bdf7020bdb48f3842a0f:log:27', 'hash': '0xbbd8f43e14ff1e3210dabd289b1746f50264ef9eb1e3bdf7020bdb48f3842a0f', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x020af60c9a8f93a6954f1242c52351fd2cef4490', 'value': 81545.789312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x11449b292327cd780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:54:18.000Z'}}, {'blockNum': '0x580342', 'uniqueId': '0xe037705d2a891fa15883169e8dc2546723fbf3c635d89fd78bae680ce7f9d017:log:110', 'hash': '0xe037705d2a891fa15883169e8dc2546723fbf3c635d89fd78bae680ce7f9d017', 'from': '0x9aa4b42c26f19244d4682684d3ab73a6d7f4d69a', 'to': '0xdab5be688241b3d7cb774b9f4632883523bd4706', 'value': 158.46932576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x089734242c18758000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:02:43.000Z'}}, {'blockNum': '0x580345', 'uniqueId': '0x198e043496a0bc98f439b79aa37bfff67ab0a30b30f64186dc610563e7f36c51:log:60', 'hash': '0x198e043496a0bc98f439b79aa37bfff67ab0a30b30f64186dc610563e7f36c51', 'from': '0x9aa4b42c26f19244d4682684d3ab73a6d7f4d69a', 'to': '0x4073aa51806a8e5366e0f082cc2a4509019b7c1c', 'value': 1795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x614ea10daeb22c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:03:54.000Z'}}, {'blockNum': '0x58034d', 'uniqueId': '0x3e0739d0745fb62368a20890b6967ebc149be3c27f618f327c2d644c5a242521:log:111', 'hash': '0x3e0739d0745fb62368a20890b6967ebc149be3c27f618f327c2d644c5a242521', 'from': '0x9aa4b42c26f19244d4682684d3ab73a6d7f4d69a', 'to': '0xd4abaf31b5b4488d58e4e845b1346546e494207b', 'value': 128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x06f05b59d3b2000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:05:58.000Z'}}, {'blockNum': '0x58035a', 'uniqueId': '0x06de2b42ae3cfc8294e7c97eba9d923c46a777053a189aaf1ec8397121ee58df:log:11', 'hash': '0x06de2b42ae3cfc8294e7c97eba9d923c46a777053a189aaf1ec8397121ee58df', 'from': '0xf3ffab21306a12b2a4db2fe1c401b423c9b90b24', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59832.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0cab8820754c851c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:09:35.000Z'}}, {'blockNum': '0x58035e', 'uniqueId': '0xfeffe49e8134d58c4dec6f5b9a6b96f44552410d5e2f904e198ce8737656d623:log:2', 'hash': '0xfeffe49e8134d58c4dec6f5b9a6b96f44552410d5e2f904e198ce8737656d623', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 109942.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x17480012e723ed540000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:10:14.000Z'}}, {'blockNum': '0x580383', 'uniqueId': '0xd5517826019fe1ba6d1dcb45eb470268c55830ad12c9b4c66ddf774b034f5bab:log:4', 'hash': '0xd5517826019fe1ba6d1dcb45eb470268c55830ad12c9b4c66ddf774b034f5bab', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe0217e40fcbbda85037a34f4c2af8871fd8f86a0', 'value': 27732.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x05df63235e634e0c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:19:55.000Z'}}, {'blockNum': '0x580386', 'uniqueId': '0x211bacba798e1b4fe85f006ccc997b4665eafe91575f17386f90a9bfc076239d:log:262', 'hash': '0x211bacba798e1b4fe85f006ccc997b4665eafe91575f17386f90a9bfc076239d', 'from': '0x4c8f4e9b5af447d8d8ba3f1cf2bedf3a22deba93', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 99927.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x152914a4236a0eae0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:20:32.000Z'}}, {'blockNum': '0x5803b8', 'uniqueId': '0x379d40a0c4e1130218c61ca5ef1eedda89783dc5863f5ef3c61454734e92a9d7:log:10', 'hash': '0x379d40a0c4e1130218c61ca5ef1eedda89783dc5863f5ef3c61454734e92a9d7', 'from': '0xa30d8157911ef23c46c0eb71889efe6a648a41f7', 'to': '0x70bdb3e8a59d81ae83053497b6dab0031462e615', 'value': 178216.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x25bd244c22eea89d0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:32:40.000Z'}}, {'blockNum': '0x5803c0', 'uniqueId': '0x02415cf76891fbd098398f6b5bead59d11fd5f8407407108c930a3e3bbff043e:log:4', 'hash': '0x02415cf76891fbd098398f6b5bead59d11fd5f8407407108c930a3e3bbff043e', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x44a48938a8be140ab1b8bd991d6639fd40b64fe8', 'value': 34880, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0762d93d1dd6f9000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:34:10.000Z'}}, {'blockNum': '0x5803ce', 'uniqueId': '0x403537560bf2a583cd65a2110899c07b4c1cef1d4e865d044c07eeb0ea925bee:log:30', 'hash': '0x403537560bf2a583cd65a2110899c07b4c1cef1d4e865d044c07eeb0ea925bee', 'from': '0x70bdb3e8a59d81ae83053497b6dab0031462e615', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 178216.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x25bd244c22eea89d0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:38:32.000Z'}}, {'blockNum': '0x5803fc', 'uniqueId': '0x7e2196d23f64ebbf8034d9d2c95e0cdf5875a7e02a445ad467208e9849bd7399:log:15', 'hash': '0x7e2196d23f64ebbf8034d9d2c95e0cdf5875a7e02a445ad467208e9849bd7399', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xde916a9e6ba912488c9dc624eefe89f8a0e7223a', 'value': 14773.192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0320db394c4632940000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:49:35.000Z'}}, {'blockNum': '0x5803fe', 'uniqueId': '0xb3a02d00e23f9ade4155b3cfb5db6d82d0be0edc4625aad31cb56900e59025bb:log:17', 'hash': '0xb3a02d00e23f9ade4155b3cfb5db6d82d0be0edc4625aad31cb56900e59025bb', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xa5dad1480ca0ba36bef4455481d8dff090524070', 'value': 598.965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x20784f260c23d88000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:50:13.000Z'}}, {'blockNum': '0x580454', 'uniqueId': '0x56cf8b0eeb4f66042cc404758b80b4bbe8cde3d7e56c587f40123fc567fc6534:log:29', 'hash': '0x56cf8b0eeb4f66042cc404758b80b4bbe8cde3d7e56c587f40123fc567fc6534', 'from': '0xe0217e40fcbbda85037a34f4c2af8871fd8f86a0', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 27732.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x05df63235e634e0bffff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T04:12:07.000Z'}}, {'blockNum': '0x580454', 'uniqueId': '0x57e4b3363675f0216f4f66c7dce87f4b0383c6c1b50bd368849c2833960abefc:log:31', 'hash': '0x57e4b3363675f0216f4f66c7dce87f4b0383c6c1b50bd368849c2833960abefc', 'from': '0x9b035da833d64e39ca0c3f41b6d320bc460d49c6', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 34910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0764799286e496b7ffff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T04:12:07.000Z'}}, {'blockNum': '0x580454', 'uniqueId': '0xd514676764dd2d652606b2e86b4eabd2f4ed4d7c06f4a0cddbb69e2d162b3efd:log:35', 'hash': '0xd514676764dd2d652606b2e86b4eabd2f4ed4d7c06f4a0cddbb69e2d162b3efd', 'from': '0x6e908d362390e74c585597f10e2e55f81bd96d90', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 8708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01d80fc6b709e5900000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T04:12:07.000Z'}}, {'blockNum': '0x580468', 'uniqueId': '0xcce7a88b3d4aa1cbd29a1a172cf9838a8327b220929f1eed41bf30f20ea87f66:log:1', 'hash': '0xcce7a88b3d4aa1cbd29a1a172cf9838a8327b220929f1eed41bf30f20ea87f66', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 109942.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x17480012e723ed540000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T04:20:02.000Z'}}, {'blockNum': '0x5804a1', 'uniqueId': '0x8cded40a3f13e9e399f8691e44607a11ff68ce246c5b06a9b4e6e64275ac7d54:log:229', 'hash': '0x8cded40a3f13e9e399f8691e44607a11ff68ce246c5b06a9b4e6e64275ac7d54', 'from': '0x840859b4d523d51b29b17e7ecbc9412ac1df775e', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 25360, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x055ec4b2e4f622400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T04:34:38.000Z'}}, {'blockNum': '0x5804a2', 'uniqueId': '0x74f19e53610349927fbb6b82ea5ee93b4c06f7086d35b3653880ec080bd33caa:log:36', 'hash': '0x74f19e53610349927fbb6b82ea5ee93b4c06f7086d35b3653880ec080bd33caa', 'from': '0xe5a138db8746c9b7689d27664fbff8382d7e2412', 'to': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'value': 1000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xd3c21bcecceda1000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T04:35:27.000Z'}}, {'blockNum': '0x5804ab', 'uniqueId': '0xd53d7d052de51adc8dee9ed7a8915c8d69785bf2591873d148ae4d43ea69f4d3:log:1', 'hash': '0xd53d7d052de51adc8dee9ed7a8915c8d69785bf2591873d148ae4d43ea69f4d3', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x41c9a61cd12951ec8876e4f4b7660fe12a3ced46', 'value': 39334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x08544ce7d7894ed80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T04:37:57.000Z'}}, {'blockNum': '0x5804ae', 'uniqueId': '0xdc46ea23b1493f7ef9690ffd68dbbafd72a7ad1432f5117b44eb4efa7684a34e:log:3', 'hash': '0xdc46ea23b1493f7ef9690ffd68dbbafd72a7ad1432f5117b44eb4efa7684a34e', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T04:38:17.000Z'}}, {'blockNum': '0x5804ec', 'uniqueId': '0x6a509d060db83cec235e21f32a688269651597acf1708a45a193e1c9432fd319:log:2', 'hash': '0x6a509d060db83cec235e21f32a688269651597acf1708a45a193e1c9432fd319', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x247a350c958d3c0ebf38e866700c214ad35fe4c3', 'value': 48088.99058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a2ee8cea21e45fb4000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T04:53:51.000Z'}}, {'blockNum': '0x5804fb', 'uniqueId': '0xfeedcae9c3b3d667f7a4535cd654b690227b567c160ba49ede61c55a102b786a:log:27', 'hash': '0xfeedcae9c3b3d667f7a4535cd654b690227b567c160ba49ede61c55a102b786a', 'from': '0x247a350c958d3c0ebf38e866700c214ad35fe4c3', 'to': '0x9aa4b42c26f19244d4682684d3ab73a6d7f4d69a', 'value': 48088.99058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a2ee8cea21e45fb4000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T04:56:50.000Z'}}, {'blockNum': '0x580503', 'uniqueId': '0x83c7671b0549dcbbc8586884e58df58dc25ed33bf77349a0d4b4ae425b009b59:log:5', 'hash': '0x83c7671b0549dcbbc8586884e58df58dc25ed33bf77349a0d4b4ae425b009b59', 'from': '0x61e3a1265c0e1775eef3385b08967b150c314876', 'to': '0xa3cf27f61d11de0228c6e83c34de3b72d6faa257', 'value': 39000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x084231b97924ea600000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T04:58:20.000Z'}}, {'blockNum': '0x58051a', 'uniqueId': '0x952704ebd92549bdbabda047331e070bfa27d980e130cdd248f5d5e03b4dd779:log:31', 'hash': '0x952704ebd92549bdbabda047331e070bfa27d980e130cdd248f5d5e03b4dd779', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xb3f6dd322311c6f751f0c7563853d9a1daef7ac0', 'value': 621.773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x21b4d5713498f48000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:03:46.000Z'}}, {'blockNum': '0x58051b', 'uniqueId': '0x2c3cb092aab2f18165daf6e0bf663b9f92e89833bfac3ba97dec55621a317640:log:36', 'hash': '0x2c3cb092aab2f18165daf6e0bf663b9f92e89833bfac3ba97dec55621a317640', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x17383d0ba6cbf3001496f567af359ce04491381e', 'value': 77000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x104e2da94483f6200000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:03:58.000Z'}}, {'blockNum': '0x58051d', 'uniqueId': '0x20cfdedbf0f12b9b1209ad0380f393dca30837c77b05b766d96f0e697d0d3adc:log:258', 'hash': '0x20cfdedbf0f12b9b1209ad0380f393dca30837c77b05b766d96f0e697d0d3adc', 'from': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'to': '0xe5a138db8746c9b7689d27664fbff8382d7e2412', 'value': 266821.23298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x3880687433d481b93ffc', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:04:10.000Z'}}, {'blockNum': '0x58053b', 'uniqueId': '0xd43be760143c736e2f2674641cc650fb6de5b2a8d467e7bf1caf0d1a5b86ecc7:log:14', 'hash': '0xd43be760143c736e2f2674641cc650fb6de5b2a8d467e7bf1caf0d1a5b86ecc7', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xb3f6dd322311c6f751f0c7563853d9a1daef7ac0', 'value': 877.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x2f93258646a2d00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:12:35.000Z'}}, {'blockNum': '0x580559', 'uniqueId': '0xca35ce4c105e836db68ec2ed25bded4e5d9cd4b5a24b17ac8731e527a1c20d96:log:5', 'hash': '0xca35ce4c105e836db68ec2ed25bded4e5d9cd4b5a24b17ac8731e527a1c20d96', 'from': '0x17383d0ba6cbf3001496f567af359ce04491381e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 77000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x104e2da94483f6200000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:18:28.000Z'}}, {'blockNum': '0x580567', 'uniqueId': '0x50f052a09cfc92672220244ad3de31c48597f7b7daa2e17b8a8d5c60ab4d8ff6:log:38', 'hash': '0x50f052a09cfc92672220244ad3de31c48597f7b7daa2e17b8a8d5c60ab4d8ff6', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x96a405fe5e6efae0e5e828a9c3753c2ec70d5804', 'value': 100241.9354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x153a204f15c39e8a8000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:22:22.000Z'}}, {'blockNum': '0x580585', 'uniqueId': '0x2cca4c9f48fe23a5a7d0dd45b5a95940232a75867f1d124611d88b879ffd0161:log:13', 'hash': '0x2cca4c9f48fe23a5a7d0dd45b5a95940232a75867f1d124611d88b879ffd0161', 'from': '0xb2b210a7e3e25561b2aa102b6a0432e6a7e050e2', 'to': '0x639d9ba0f11ff73a25c0a26849d4d5a7175169b6', 'value': 28915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x061f7c3c05c3a3ec0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:29:07.000Z'}}, {'blockNum': '0x580585', 'uniqueId': '0x404f8f26a94fa5db6bd541272733cf49b143aca16e22ba84b3c02b9c26e7c5d3:log:19', 'hash': '0x404f8f26a94fa5db6bd541272733cf49b143aca16e22ba84b3c02b9c26e7c5d3', 'from': '0x2c174bedf6984e2d2d7ec3b0ee3e71cf3380c42d', 'to': '0x639d9ba0f11ff73a25c0a26849d4d5a7175169b6', 'value': 15630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x034f4dd2ccb5fb780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:29:07.000Z'}}, {'blockNum': '0x58058b', 'uniqueId': '0xaa6872404b79bdd67499732f3939e3770cf652822824eb0c7441ad32a4b5b192:log:2', 'hash': '0xaa6872404b79bdd67499732f3939e3770cf652822824eb0c7441ad32a4b5b192', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 109942.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x17480012e723ed540000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:30:28.000Z'}}, {'blockNum': '0x5805ac', 'uniqueId': '0xdc26c673e41425e3512a32cbe25733eb595dacc6e3c94fa15a6a430f0090f4f9:log:9', 'hash': '0xdc26c673e41425e3512a32cbe25733eb595dacc6e3c94fa15a6a430f0090f4f9', 'from': '0x96a405fe5e6efae0e5e828a9c3753c2ec70d5804', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100241.9354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x153a204f15c39e8a8000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:38:09.000Z'}}, {'blockNum': '0x5805bc', 'uniqueId': '0x9df3f78a9fb3d1b1cfdce76d552351ca2ab2caa11ed335e6d579b6bc09a1239b:log:1', 'hash': '0x9df3f78a9fb3d1b1cfdce76d552351ca2ab2caa11ed335e6d579b6bc09a1239b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 109942.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x17480012e723ed540000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:42:04.000Z'}}, {'blockNum': '0x5805f3', 'uniqueId': '0x705c459a575e7d81cefd06186df13e6521085d15e12b358072310a6c183c65eb:log:16', 'hash': '0x705c459a575e7d81cefd06186df13e6521085d15e12b358072310a6c183c65eb', 'from': '0xb287a379e6caca6732e50b88d23c290aa990a892', 'to': '0xfc25f327ab209a06d5cc5e3ced4f8b29115b9abe', 'value': 10183.072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x022806832fc5b2900000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:57:38.000Z'}}]}}
Number of returned transfers: 317
Answer is complete
symbol CLOAK
group BPS
date 2018-07-01
hour 19:00
exchange binance
Name: 299, dtype: object
HERE
{}
No contract for ethereum specified
Symbol: CLOAK, Contract: 0xb4622193ca7c7580ac0ecc09c3b7bd74aef0318d
Datetime timestamps: 2018-07-01 19:00:00 2018-07-01 07:00:00 2018-07-02 07:00:00
Unix timestamps: 1530421200.0 1530507600.0
Hex Block Numbers: 0x59cb00 0x59e221
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers: 0
Answer is complete
symbol NXS
group BPS
date 2018-07-04
hour 18:59
exchange binance
Name: 300, dtype: object
HERE
{}
No contract for ethereum specified
Symbol: NXS, Contract:
Datetime timestamps: 2018-07-04 18:59:00 2018-07-04 06:59:00 2018-07-05 06:59:00
Unix timestamps: 1530680340.0 1530766740.0
Hex Block Numbers: 0x5a0fda 0x5a268a
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol QLC
group BPS
date 2018-07-28
hour 19:00
exchange binance
Name: 301, dtype: object
HERE
{}
No contract for ethereum specified
Symbol: QLC, Contract:
Datetime timestamps: 2018-07-28 19:00:00 2018-07-28 07:00:00 2018-07-29 07:00:00
Unix timestamps: 1532754000.0 1532840400.0
Hex Block Numbers: 0x5c36c7 0x5c4e5e
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol VIBE
group BPS
date 2018-09-09
hour 19:00
exchange binance
Name: 302, dtype: object
HERE
Symbol: VIBE, Contract: 0xe8ff5c9c75deb346acac493c463c8950be03dfba
Datetime timestamps: 2018-09-09 19:00:00 2018-09-09 07:00:00 2018-09-10 07:00:00
Unix timestamps: 1536469200.0 1536555600.0
Hex Block Numbers: 0x601a64 0x60318d
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x60280a', 'uniqueId': '0x91f305a9a9e63e32b4ea2905c3bdc90c5c52760a6956162df9b81c82ddac543d:log:2', 'hash': '0x91f305a9a9e63e32b4ea2905c3bdc90c5c52760a6956162df9b81c82ddac543d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x67d0a0b8aebe72ff1c0acb00a145c830abddf081', 'value': 21115.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x0478b0977fb2615c0000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-09T19:17:37.000Z'}}, {'blockNum': '0x602854', 'uniqueId': '0xfc5a1e9edc4433191285618dcf79e1becf1938c5cfce18eba9ee83227dadf6ab:log:17', 'hash': '0xfc5a1e9edc4433191285618dcf79e1becf1938c5cfce18eba9ee83227dadf6ab', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd0b2cb92a60b817e32c673e00ee780cce9bda12b', 'value': 21072.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x04765bd8cf8543900000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-09T19:36:14.000Z'}}, {'blockNum': '0x60288a', 'uniqueId': '0x64eaff7a34eb082342356063e45e38043e2d4223ef6a911fccd73a650543d1fa:log:13', 'hash': '0x64eaff7a34eb082342356063e45e38043e2d4223ef6a911fccd73a650543d1fa', 'from': '0xd0b2cb92a60b817e32c673e00ee780cce9bda12b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21072.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x04765bd8cf8543900000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-09T19:49:10.000Z'}}, {'blockNum': '0x602a57', 'uniqueId': '0x3e1a2b61fbccfcceebc6050782fad8b4391eb6e6dd818cec91f83e587ec16006:log:3', 'hash': '0x3e1a2b61fbccfcceebc6050782fad8b4391eb6e6dd818cec91f83e587ec16006', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf38984db9fc8d21b682b69cd37cae8b5e2bc7b9a', 'value': 5038.659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x01112570c08a5cf38000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-09T21:34:39.000Z'}}, {'blockNum': '0x602b0f', 'uniqueId': '0x6d08128c437e49bcd49c6db58a1b4f6d22a66787682e0026f7783c5d6eb371ac:log:6', 'hash': '0x6d08128c437e49bcd49c6db58a1b4f6d22a66787682e0026f7783c5d6eb371ac', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd5d0a9f9b3a14d0acbfb7808cbfc1239577e3214', 'value': 144557.37699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x1e9c789aa3aec2da9c00', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-09T22:17:40.000Z'}}, {'blockNum': '0x602b3f', 'uniqueId': '0xa734107f5733698cec55896a90aa69c2730b38dab18496d106a61919f6d664e5:log:18', 'hash': '0xa734107f5733698cec55896a90aa69c2730b38dab18496d106a61919f6d664e5', 'from': '0xd5d0a9f9b3a14d0acbfb7808cbfc1239577e3214', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 144557.37699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x1e9c789aa3aec2da9c00', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-09T22:29:18.000Z'}}, {'blockNum': '0x602bdf', 'uniqueId': '0x6a6dc7aef2217dea6cbb12ffbd6559d74f764d8c9360c7903d96ae548a546758:log:29', 'hash': '0x6a6dc7aef2217dea6cbb12ffbd6559d74f764d8c9360c7903d96ae548a546758', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xf0fe3961e2430c2845365cdfe191e14aac1c9331', 'value': 2895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x9cf03219a1f3dc0000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-09T23:06:52.000Z'}}, {'blockNum': '0x602c09', 'uniqueId': '0x94807952f5b989636b19a53764326c1368fb18ac1ec155d86552e1247780149b:log:13', 'hash': '0x94807952f5b989636b19a53764326c1368fb18ac1ec155d86552e1247780149b', 'from': '0xf0fe3961e2430c2845365cdfe191e14aac1c9331', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x9cf03219a1f3dc0000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-09T23:19:06.000Z'}}, {'blockNum': '0x602d95', 'uniqueId': '0x4f1a0f69abe3a9dbdbe25ec53ab12d9b51fc8163b7552ad62f86e79105010d53:log:0', 'hash': '0x4f1a0f69abe3a9dbdbe25ec53ab12d9b51fc8163b7552ad62f86e79105010d53', 'from': '0xe13f7dc5db4060df3b53a16257df25441db85de9', 'to': '0x60beb5b017cf9800bbb24b3219d9eae2c205993c', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-10T00:52:37.000Z'}}, {'blockNum': '0x602dd6', 'uniqueId': '0xe285396e18f491357e8cb094c91994db681debd8ebbbcca9014d8d6ce8177220:log:11', 'hash': '0xe285396e18f491357e8cb094c91994db681debd8ebbbcca9014d8d6ce8177220', 'from': '0x60beb5b017cf9800bbb24b3219d9eae2c205993c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-10T01:09:09.000Z'}}, {'blockNum': '0x602e07', 'uniqueId': '0xa1fbff4b3f731c954ca66c8657813f6460bcacbe302e7a5522a295d8b0f26c3c:log:10', 'hash': '0xa1fbff4b3f731c954ca66c8657813f6460bcacbe302e7a5522a295d8b0f26c3c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x35af7d17c5b913dca1490b31410a1b60970e86a5', 'value': 1998.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x6c5a5dfe1d9bc40000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-10T01:21:49.000Z'}}, {'blockNum': '0x602e19', 'uniqueId': '0x917abafc25b26649052f2eb0b15b5dcfe8a4edd2e3c6c50ef9c03ef063ffa5b4:log:105', 'hash': '0x917abafc25b26649052f2eb0b15b5dcfe8a4edd2e3c6c50ef9c03ef063ffa5b4', 'from': '0x71dd5427e0f8d1982036ab41c5a20f054eaa2312', 'to': '0x375363af5949d5ad7fb4f63d5e2a08acfa594219', 'value': 647.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x231b4160de3ef80000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-10T01:25:45.000Z'}}, {'blockNum': '0x6030e8', 'uniqueId': '0x7006d8c7005d8730f44e2a478fd3f7e4f70cc2f5849f416f725262230cff4c7a:log:71', 'hash': '0x7006d8c7005d8730f44e2a478fd3f7e4f70cc2f5849f416f725262230cff4c7a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0ef7dd15b8bae032ffafa6b251ea19e475d0fb8a', 'value': 45336.379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x0999b0a5d211c73f8000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-10T04:15:58.000Z'}}, {'blockNum': '0x60313c', 'uniqueId': '0xc0e28d284c25979cd58c98e04eaace9c71319111629cbf38d58fe615951cbf93:log:0', 'hash': '0xc0e28d284c25979cd58c98e04eaace9c71319111629cbf38d58fe615951cbf93', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x36d88e0b58c9483b976477346293a9258a801aa7', 'value': 11000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x02544faa778090e00000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-10T04:38:12.000Z'}}]}}
Number of returned transfers: 14
Answer is complete
symbol NAV
group BPS
date 2018-09-22
hour 19:00
exchange binance
Name: 303, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
Symbol: NAV, Contract:
Datetime timestamps: 2018-09-22 19:00:00 2018-09-22 07:00:00 2018-09-23 07:00:00
Unix timestamps: 1537592400.0 1537678800.0
Hex Block Numbers: 0x614cf7 0x616491
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol DATA
group BPS
date 2018-09-29
hour 19:00
exchange binance
Name: 304, dtype: object
HERE
Symbol: DATA, Contract: 0x8f693ca8d21b157107184d29d398a8d082b38b76
Datetime timestamps: 2018-09-29 19:00:00 2018-09-29 07:00:00 2018-09-30 07:00:00
Unix timestamps: 1538197200.0 1538283600.0
Hex Block Numbers: 0x61f36d 0x620b95
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers: 0
Answer is complete
symbol EVX
group BPS
date 2018-10-06
hour 19:00
exchange binance
Name: 305, dtype: object
HERE
Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps: 2018-10-06 19:00:00 2018-10-06 07:00:00 2018-10-07 07:00:00
Unix timestamps: 1538802000.0 1538888400.0
Hex Block Numbers: 0x629ae0 0x62b31d
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x629b15', 'uniqueId': '0x976c5f7dbb9cc87cf921c4df458dac7aa5df92157396f990418dc4ee1967dfea:log:11', 'hash': '0x976c5f7dbb9cc87cf921c4df458dac7aa5df92157396f990418dc4ee1967dfea', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe9be4f99647753b386067ad98492a8697b1f429c', 'value': 1150.945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xaf9eca', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T05:12:28.000Z'}}, {'blockNum': '0x629bf8', 'uniqueId': '0x0fa5575768f27c938d3f3d0b24f335019507c7450f1ea30edeade59e6e52b778:log:24', 'hash': '0x0fa5575768f27c938d3f3d0b24f335019507c7450f1ea30edeade59e6e52b778', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 6425.495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03d473e6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T06:04:06.000Z'}}, {'blockNum': '0x629cd1', 'uniqueId': '0x5a24f228b08f8615c9a677933e224028c3da4d087d1549121866d675081bff27:log:18', 'hash': '0x5a24f228b08f8615c9a677933e224028c3da4d087d1549121866d675081bff27', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 6109.144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03a42e70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T06:53:20.000Z'}}, {'blockNum': '0x629f1c', 'uniqueId': '0x36233dcbc52513f445a5ee9c3a28ea20f49a7979ca25610cf742a9f9aa6978d6:log:57', 'hash': '0x36233dcbc52513f445a5ee9c3a28ea20f49a7979ca25610cf742a9f9aa6978d6', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 5845.913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x037c03fa', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T09:12:13.000Z'}}, {'blockNum': '0x629fb7', 'uniqueId': '0x79822d21cbcedd40fd34906eb26596c39f1198646bf5fefcbdc8909cc1de8b21:log:40', 'hash': '0x79822d21cbcedd40fd34906eb26596c39f1198646bf5fefcbdc8909cc1de8b21', 'from': '0x9bb5c4947008ad22ece7e8a464a9f51cc7df0d3c', 'to': '0x5d5ed6e30dd5b18206b404bc191f44780af4252b', 'value': 218.6744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x215df8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T09:48:04.000Z'}}, {'blockNum': '0x629fde', 'uniqueId': '0x73a12961e699385a5fca25b622fe8b4719e1fb4021cad3e450cf1d700e48d8e9:log:51', 'hash': '0x73a12961e699385a5fca25b622fe8b4719e1fb4021cad3e450cf1d700e48d8e9', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xec57f2df771f5fe57734cbc2ed1f3455a5546d52', 'value': 469.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x47a7c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T09:57:18.000Z'}}, {'blockNum': '0x62a01c', 'uniqueId': '0x31f82ce0a54ba3fde0e1de0113d8b7ad17935be900263f8eebca8a64d573dccb:log:0', 'hash': '0x31f82ce0a54ba3fde0e1de0113d8b7ad17935be900263f8eebca8a64d573dccb', 'from': '0xec57f2df771f5fe57734cbc2ed1f3455a5546d52', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 469.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x47a7c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T10:11:18.000Z'}}, {'blockNum': '0x62a1df', 'uniqueId': '0xa7890290328ab2a170255a73aa6a2734418e6c183c769bb7b12e40f0e8dcd712:log:40', 'hash': '0xa7890290328ab2a170255a73aa6a2734418e6c183c769bb7b12e40f0e8dcd712', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 5838.382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x037addcc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T11:47:44.000Z'}}, {'blockNum': '0x62a243', 'uniqueId': '0x3c7aa2dda0445dbf2ff8e63bca276e5e8514bb79dbfb32c5ef0c41d0b2958a83:log:17', 'hash': '0x3c7aa2dda0445dbf2ff8e63bca276e5e8514bb79dbfb32c5ef0c41d0b2958a83', 'from': '0x48fd571537fa96664e73f4a1234a6f0f195340e2', 'to': '0x9ad5ed16febc35d24f9e9d0bdde50e0eb7449c83', 'value': 317.6142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x3076ce', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T12:15:01.000Z'}}, {'blockNum': '0x62a2c1', 'uniqueId': '0xb7c9a6a39db71b1e99b2abf282ad98b5faaee5a946c626e9cc43682112d5e3ec:log:22', 'hash': '0xb7c9a6a39db71b1e99b2abf282ad98b5faaee5a946c626e9cc43682112d5e3ec', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 6124.631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03a68b66', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T12:43:56.000Z'}}, {'blockNum': '0x62a35f', 'uniqueId': '0xfdc20a5364cfb573336ef86e80d6e9dd8db6911cdcf5398ed84906ef289fc82d:log:23', 'hash': '0xfdc20a5364cfb573336ef86e80d6e9dd8db6911cdcf5398ed84906ef289fc82d', 'from': '0x376f5819f69e4c141ad30abe7c3f5782d6dc95fa', 'to': '0x0bbc36836a2466d9d7334d7cd1566a443f7ccf10', 'value': 2118.0299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01432f8b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T13:18:16.000Z'}}, {'blockNum': '0x62a43f', 'uniqueId': '0x1e79e7c0aaad499155af5d48768a07ab0b731c6981c11f2c9d12df8978dffdc2:log:0', 'hash': '0x1e79e7c0aaad499155af5d48768a07ab0b731c6981c11f2c9d12df8978dffdc2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'value': 4886.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02e9a2d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T14:15:27.000Z'}}, {'blockNum': '0x62a475', 'uniqueId': '0xcc75a304474a7691dfecc5591b3ef260e84a793e399f1ee4c336a3313e2aefae:log:2', 'hash': '0xcc75a304474a7691dfecc5591b3ef260e84a793e399f1ee4c336a3313e2aefae', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7bf73bece1f4edd61a047c0e614b0ca720db9d0c', 'value': 108.988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x10a158', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T14:27:16.000Z'}}, {'blockNum': '0x62a487', 'uniqueId': '0xf1b865b5051d95c0c212455a9ee81da24980775dabbb0e367fcd3570a9d498c0:log:145', 'hash': '0xf1b865b5051d95c0c212455a9ee81da24980775dabbb0e367fcd3570a9d498c0', 'from': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 4886.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02e9a2d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T14:31:03.000Z'}}, {'blockNum': '0x62a549', 'uniqueId': '0x940de0d3aa9b7e3da71d5d3ebcaa75d34dea061625ce2154b125b29cfc45a816:log:6', 'hash': '0x940de0d3aa9b7e3da71d5d3ebcaa75d34dea061625ce2154b125b29cfc45a816', 'from': '0xd1eb41d1ab3a82e3e94eeaccebff29d13e8a5095', 'to': '0xd8dad59e110ca2c02f77fbcb8e5ed1b52b07ceda', 'value': 4.2798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa72e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T15:15:32.000Z'}}, {'blockNum': '0x62a7ab', 'uniqueId': '0x6704013ceedbc22fc7db6cafbfd9907d977d02f5cbf83c8b2e635335be72ff21:log:8', 'hash': '0x6704013ceedbc22fc7db6cafbfd9907d977d02f5cbf83c8b2e635335be72ff21', 'from': '0x28615671d1ceaa38a5bd3a9718bab431ede4af71', 'to': '0x6ce97fd710ed2f8ceb7f1a757982d5ab8113656e', 'value': 783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x7779f0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T17:37:58.000Z'}}, {'blockNum': '0x62a7ee', 'uniqueId': '0x5e35aa1b8fb3d7bee4df09148d31413299ae1a35f6f41550cb24910962806bbf:log:16', 'hash': '0x5e35aa1b8fb3d7bee4df09148d31413299ae1a35f6f41550cb24910962806bbf', 'from': '0x6ce97fd710ed2f8ceb7f1a757982d5ab8113656e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x7779f0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T17:51:10.000Z'}}, {'blockNum': '0x62a7ee', 'uniqueId': '0x4ab63f23853a6f8e4aa57e5b41ecd28e3fef75303ab22c3322d86ab48bc61a9f:log:61', 'hash': '0x4ab63f23853a6f8e4aa57e5b41ecd28e3fef75303ab22c3322d86ab48bc61a9f', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 6140.044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03a8e578', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T17:51:10.000Z'}}, {'blockNum': '0x62a829', 'uniqueId': '0x3e78c9e99a80a54261b3f2ab1af31f994173f27fdc93bb18c81c9cc58d404666:log:47', 'hash': '0x3e78c9e99a80a54261b3f2ab1af31f994173f27fdc93bb18c81c9cc58d404666', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 3534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x021b3ee0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T18:03:36.000Z'}}, {'blockNum': '0x62a90b', 'uniqueId': '0x44edeaee502f8be9ed9a014c66988277b012c046afd75711bcd37c08051082bf:log:8', 'hash': '0x44edeaee502f8be9ed9a014c66988277b012c046afd75711bcd37c08051082bf', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 5266.148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03238ce8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T18:58:39.000Z'}}, {'blockNum': '0x62a922', 'uniqueId': '0xdbbb0d47265cbbfd618bc4d2729137d65eab74cf4c41b54eebb8d6245a70221a:log:2', 'hash': '0xdbbb0d47265cbbfd618bc4d2729137d65eab74cf4c41b54eebb8d6245a70221a', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 1143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xae6870', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:03:04.000Z'}}, {'blockNum': '0x62a928', 'uniqueId': '0xac45488b31da8128d6b3c74b81b5bf2474e3d0e68c6ea2a148172ca3140bdfd0:log:14', 'hash': '0xac45488b31da8128d6b3c74b81b5bf2474e3d0e68c6ea2a148172ca3140bdfd0', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1167.8538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xb2334a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:03:53.000Z'}}, {'blockNum': '0x62a928', 'uniqueId': '0x0301c9a2a63f27f3c9c342c31ee3b02372b94afa1f5999022b91241635cff49f:log:15', 'hash': '0x0301c9a2a63f27f3c9c342c31ee3b02372b94afa1f5999022b91241635cff49f', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x0e7aecd8dd1b3eef2101c0951772979a50b7cdb7', 'value': 1038.75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x9e802c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:03:53.000Z'}}, {'blockNum': '0x62a928', 'uniqueId': '0x5c6bed12e7f25b7134c0be80ce8952aa0d74136b45918be1751f5cc84c4237fc:log:16', 'hash': '0x5c6bed12e7f25b7134c0be80ce8952aa0d74136b45918be1751f5cc84c4237fc', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'value': 5323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x032c39b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:03:53.000Z'}}, {'blockNum': '0x62a92b', 'uniqueId': '0x77266723a7c9f7863c65513884604f305b64f2dca7680ed5b79b44e503ebce45:log:16', 'hash': '0x77266723a7c9f7863c65513884604f305b64f2dca7680ed5b79b44e503ebce45', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 3640, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x022b6b80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:04:10.000Z'}}, {'blockNum': '0x62a947', 'uniqueId': '0xbb9517df742906269de5286c3c3bb3339bd3e08611e639b46a0d21866112d59c:log:54', 'hash': '0xbb9517df742906269de5286c3c3bb3339bd3e08611e639b46a0d21866112d59c', 'from': '0x376f5819f69e4c141ad30abe7c3f5782d6dc95fa', 'to': '0xab55cbc807147c2503129c6d3d830d05d6221f18', 'value': 614.3098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5dbc7a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:09:48.000Z'}}, {'blockNum': '0x62a947', 'uniqueId': '0x4f749bc55d13c5bd035dc1c9e4371e4386f3dbde622be702d7faff74eb1fcb15:log:55', 'hash': '0x4f749bc55d13c5bd035dc1c9e4371e4386f3dbde622be702d7faff74eb1fcb15', 'from': '0xed8e2268111d4403d887c0739aea1413108b681e', 'to': '0x16216a0a2f03e695031c7ef6936829215c6a4576', 'value': 1.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4dbc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:09:48.000Z'}}, {'blockNum': '0x62a94b', 'uniqueId': '0x2efa4f1f916626ee83d58fe153df5dc47168f486b6e0279a193262110d9a0101:log:9', 'hash': '0x2efa4f1f916626ee83d58fe153df5dc47168f486b6e0279a193262110d9a0101', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x8cda0badb15c2c4abfbc9157a61b0501c0d3e499', 'value': 5290.6267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0327491b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:10:16.000Z'}}, {'blockNum': '0x62a94b', 'uniqueId': '0x3baf66a69619512aad320caae7c966fd4adfcdcaaff576869091399c863f721c:log:10', 'hash': '0x3baf66a69619512aad320caae7c966fd4adfcdcaaff576869091399c863f721c', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 638.347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x61676e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:10:16.000Z'}}, {'blockNum': '0x62a94e', 'uniqueId': '0x56217f5611934a7fdbc64072769376e82d2606172e10a5357b88164a8232a3bf:log:0', 'hash': '0x56217f5611934a7fdbc64072769376e82d2606172e10a5357b88164a8232a3bf', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 70.912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0ad200', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:10:38.000Z'}}, {'blockNum': '0x62a94e', 'uniqueId': '0x51733d83f800e9d4dbe1d4ded3fb47e92c59c5708b86c3d6075c25dd1797f60c:log:1', 'hash': '0x51733d83f800e9d4dbe1d4ded3fb47e92c59c5708b86c3d6075c25dd1797f60c', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 48.5768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x076988', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:10:38.000Z'}}, {'blockNum': '0x62a951', 'uniqueId': '0xa40b70d737ea1e4f64cac04afb563a28f4048d0ea594c0fdf97d805af1ec0a70:log:4', 'hash': '0xa40b70d737ea1e4f64cac04afb563a28f4048d0ea594c0fdf97d805af1ec0a70', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xae6870', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:11:21.000Z'}}, {'blockNum': '0x62a960', 'uniqueId': '0x018a003faafe462565dc2c4131f8bf800fd5eaf6ea5d42baf35cc6c46f83c00f:log:109', 'hash': '0x018a003faafe462565dc2c4131f8bf800fd5eaf6ea5d42baf35cc6c46f83c00f', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 4947.426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02f2ead4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:15:11.000Z'}}, {'blockNum': '0x62a976', 'uniqueId': '0x7046281dcd878cfd963bd154a5d1cb3dce1aac40921b5dc32c5cbef5ee12757c:log:16', 'hash': '0x7046281dcd878cfd963bd154a5d1cb3dce1aac40921b5dc32c5cbef5ee12757c', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 638.347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x61676e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:21:31.000Z'}}, {'blockNum': '0x62a976', 'uniqueId': '0xd3e6248266112bf5384f2bfc95b761c5d528567f73bf5ba28b7df4b652053b45:log:17', 'hash': '0xd3e6248266112bf5384f2bfc95b761c5d528567f73bf5ba28b7df4b652053b45', 'from': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x032c39b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:21:31.000Z'}}, {'blockNum': '0x62a976', 'uniqueId': '0x10224198ca47003c4aa31a3add675a225d67fdf4d69965e09981a822f159ec1b:log:18', 'hash': '0x10224198ca47003c4aa31a3add675a225d67fdf4d69965e09981a822f159ec1b', 'from': '0x0e7aecd8dd1b3eef2101c0951772979a50b7cdb7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1038.75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x9e802c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:21:31.000Z'}}, {'blockNum': '0x62a976', 'uniqueId': '0xe3699eb41f9c99035b09317b7b7d0b41628212e1eea66a83949d0efbd02dae43:log:19', 'hash': '0xe3699eb41f9c99035b09317b7b7d0b41628212e1eea66a83949d0efbd02dae43', 'from': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40349.5156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x180cd8f4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:21:31.000Z'}}, {'blockNum': '0x62a976', 'uniqueId': '0x99f72f3abd69ed5040add5c9ffe299e762eb19f8722db430f05431eac8b457f9:log:20', 'hash': '0x99f72f3abd69ed5040add5c9ffe299e762eb19f8722db430f05431eac8b457f9', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1287.3426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xc46ed2', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:21:31.000Z'}}, {'blockNum': '0x62a990', 'uniqueId': '0xcb10000f853ec2835d1026ff9d9b272caee69c797c2c3b9b1ed319af151ea7b5:log:54', 'hash': '0xcb10000f853ec2835d1026ff9d9b272caee69c797c2c3b9b1ed319af151ea7b5', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 5232.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031e571e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:27:07.000Z'}}, {'blockNum': '0x62a9a4', 'uniqueId': '0x9dc491b6e6b4400bae9761d3e211481e1bf43740ce7aaa11bf3d845d5c106879:log:10', 'hash': '0x9dc491b6e6b4400bae9761d3e211481e1bf43740ce7aaa11bf3d845d5c106879', 'from': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 198343.983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x7638e3d6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:31:10.000Z'}}, {'blockNum': '0x62a9a4', 'uniqueId': '0x75007bc3e8f0cb4202b4c031d0b5bccde89e809382cf08603d7d0941f66cbe76:log:11', 'hash': '0x75007bc3e8f0cb4202b4c031d0b5bccde89e809382cf08603d7d0941f66cbe76', 'from': '0x8cda0badb15c2c4abfbc9157a61b0501c0d3e499', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5290.6267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0327491b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:31:10.000Z'}}, {'blockNum': '0x62a9aa', 'uniqueId': '0xaae1008f9ec98672a3b6815498d51d1145b21d8a64e593257b2147d88b00269b:log:11', 'hash': '0xaae1008f9ec98672a3b6815498d51d1145b21d8a64e593257b2147d88b00269b', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x9ad5ed16febc35d24f9e9d0bdde50e0eb7449c83', 'value': 296.4617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2d3c89', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:31:47.000Z'}}, {'blockNum': '0x62a9c9', 'uniqueId': '0xe1e16832e30d52eb6389704ba0d154d1eb45068eada38a921a3dd60e347a7f2a:log:1', 'hash': '0xe1e16832e30d52eb6389704ba0d154d1eb45068eada38a921a3dd60e347a7f2a', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 398.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x3cce68', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:38:48.000Z'}}, {'blockNum': '0x62a9f9', 'uniqueId': '0x876bd2520e557ff8606abfcdad20609ea17160c475e37e84fd5efae22600d614:log:0', 'hash': '0x876bd2520e557ff8606abfcdad20609ea17160c475e37e84fd5efae22600d614', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'value': 5555.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x034fa418', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:51:03.000Z'}}, {'blockNum': '0x62a9f9', 'uniqueId': '0xe1303e265cf92c720fe9c80d956c0342939859b70dd755c08b3953ce3134d495:log:3', 'hash': '0xe1303e265cf92c720fe9c80d956c0342939859b70dd755c08b3953ce3134d495', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 398.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x3cce68', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:51:03.000Z'}}, {'blockNum': '0x62aa0a', 'uniqueId': '0xb2817e00e7390f3e1c6080b2bcb98c23308a60f3e483b2e8f57767be87366b00:log:78', 'hash': '0xb2817e00e7390f3e1c6080b2bcb98c23308a60f3e483b2e8f57767be87366b00', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 5298.592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03288040', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:54:07.000Z'}}, {'blockNum': '0x62aa1a', 'uniqueId': '0x36705776913a3c74dadac29382073176e6ddf0a97dc97205f8154d27f21acb61:log:44', 'hash': '0x36705776913a3c74dadac29382073176e6ddf0a97dc97205f8154d27f21acb61', 'from': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 5555.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x034fa418', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:59:55.000Z'}}, {'blockNum': '0x62aa1b', 'uniqueId': '0xca9f7208027c92de127fb654b6a98128efd11faca0feb662bcd7c40971e08394:log:10', 'hash': '0xca9f7208027c92de127fb654b6a98128efd11faca0feb662bcd7c40971e08394', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x0169bdd17b624f7a8754b5e17f8e02de7c3fd158', 'value': 1800.3298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0112b562', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:59:58.000Z'}}, {'blockNum': '0x62aa39', 'uniqueId': '0x1763819559b4d27cb1acc09c51cd23ea5b167e0d0c3051612f8f7c9547c7c4ce:log:15', 'hash': '0x1763819559b4d27cb1acc09c51cd23ea5b167e0d0c3051612f8f7c9547c7c4ce', 'from': '0xb31791874a8ff467c5e7792847ea82109766e02b', 'to': '0xbccd4fd887a8c5bbeb4020ad8b75b25717db6aa4', 'value': 107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1053b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T20:06:30.000Z'}}, {'blockNum': '0x62aa54', 'uniqueId': '0xc070ff76a420494d469a5cd439d1d674dfe09d74c509cc4f230e5aa5f2e27728:log:9', 'hash': '0xc070ff76a420494d469a5cd439d1d674dfe09d74c509cc4f230e5aa5f2e27728', 'from': '0x0169bdd17b624f7a8754b5e17f8e02de7c3fd158', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1800.3298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0112b562', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T20:11:02.000Z'}}, {'blockNum': '0x62aa55', 'uniqueId': '0xd9dbfe7cb3f05afac3569276d7458ab2b3747422c0262fef960de91e492fdca0:log:9', 'hash': '0xd9dbfe7cb3f05afac3569276d7458ab2b3747422c0262fef960de91e492fdca0', 'from': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5298.592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03288040', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T20:11:08.000Z'}}, {'blockNum': '0x62aa57', 'uniqueId': '0x5847813510df2fd5c34f4ef6c8dc500c733de10bdf71a11b8389077229636199:log:31', 'hash': '0x5847813510df2fd5c34f4ef6c8dc500c733de10bdf71a11b8389077229636199', 'from': '0xbccd4fd887a8c5bbeb4020ad8b75b25717db6aa4', 'to': '0x8cbc98af743b77ac88db1cfa561fca73091906cc', 'value': 107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1053b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T20:11:41.000Z'}}, {'blockNum': '0x62aac3', 'uniqueId': '0xdd582f934a7c1823a62eb3ef54cf6420fe40e65bdd7829a9104588ee452909ec:log:48', 'hash': '0xdd582f934a7c1823a62eb3ef54cf6420fe40e65bdd7829a9104588ee452909ec', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 1662.31, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xfda5fc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T20:38:27.000Z'}}, {'blockNum': '0x62aacc', 'uniqueId': '0x427bae78e43ca3d0d4205cdf28359245ab6c5a2083607f13033bf989d9855f7c:log:37', 'hash': '0x427bae78e43ca3d0d4205cdf28359245ab6c5a2083607f13033bf989d9855f7c', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x4151d5684925db3d6b09c3de451647cfaae6e186', 'value': 1278.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xc31d38', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T20:40:16.000Z'}}, {'blockNum': '0x62ab28', 'uniqueId': '0xf0bf82d50bf3462f1479135b8162bc94d12d37aecbe18004d146692a5e192a37:log:14', 'hash': '0xf0bf82d50bf3462f1479135b8162bc94d12d37aecbe18004d146692a5e192a37', 'from': '0x4151d5684925db3d6b09c3de451647cfaae6e186', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1326.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xca6868', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T21:01:19.000Z'}}, {'blockNum': '0x62abe0', 'uniqueId': '0xdfa11bd67457a5a561f74b586614a77e3ac0bb6bc77eadecc03f826e9d3e0856:log:4', 'hash': '0xdfa11bd67457a5a561f74b586614a77e3ac0bb6bc77eadecc03f826e9d3e0856', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'value': 5234.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031ea908', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T21:43:24.000Z'}}, {'blockNum': '0x62ac03', 'uniqueId': '0x35080303ae556c1d899405d6a28cc3101ddf45d95cf2baf6e5ed0c84c898cfd2:log:39', 'hash': '0x35080303ae556c1d899405d6a28cc3101ddf45d95cf2baf6e5ed0c84c898cfd2', 'from': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 5234.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031ea908', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T21:51:30.000Z'}}, {'blockNum': '0x62ad1e', 'uniqueId': '0x3ea46d8295000c5e5060ac2118303150713e088492b504406fe1e3347201a68e:log:27', 'hash': '0x3ea46d8295000c5e5060ac2118303150713e088492b504406fe1e3347201a68e', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 3725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x023863d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T22:57:53.000Z'}}, {'blockNum': '0x62ad5c', 'uniqueId': '0x90614a7974fc5dc284135c657f6a7f1ff2239db55a2e633dee9149e2ac86fbe9:log:5', 'hash': '0x90614a7974fc5dc284135c657f6a7f1ff2239db55a2e633dee9149e2ac86fbe9', 'from': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x023863d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T23:11:17.000Z'}}, {'blockNum': '0x62ada7', 'uniqueId': '0x51fdc5bf8cdc349ba7b8943d2af307a21b171c6af9f2b9b7850b2627658e6219:log:5', 'hash': '0x51fdc5bf8cdc349ba7b8943d2af307a21b171c6af9f2b9b7850b2627658e6219', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 3702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0234e160', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T23:30:46.000Z'}}, {'blockNum': '0x62adf5', 'uniqueId': '0x5545ecd589589f4d5921e4d51b3a18575e2601f43773fc2e83e6d861646a6d93:log:35', 'hash': '0x5545ecd589589f4d5921e4d51b3a18575e2601f43773fc2e83e6d861646a6d93', 'from': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0234e160', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T23:51:14.000Z'}}, {'blockNum': '0x62af86', 'uniqueId': '0xc27579aa172ca5ec6f65529016f088e1089ccb3c45c9c81fab10f33ccb7c8173:log:5', 'hash': '0xc27579aa172ca5ec6f65529016f088e1089ccb3c45c9c81fab10f33ccb7c8173', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 5338.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x032e9340', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:30:38.000Z'}}, {'blockNum': '0x62afa7', 'uniqueId': '0x828a08cee019e558388e8a812d39a3e35328554ec1f1b54eec8e5d5963e9e0e4:log:13', 'hash': '0x828a08cee019e558388e8a812d39a3e35328554ec1f1b54eec8e5d5963e9e0e4', 'from': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 5338.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x032e9340', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:37:38.000Z'}}, {'blockNum': '0x62afd5', 'uniqueId': '0x32a0cbb55c82045b0f38aa71819c749b9e0fea861b24f1f7f8c647889245053f:log:4', 'hash': '0x32a0cbb55c82045b0f38aa71819c749b9e0fea861b24f1f7f8c647889245053f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 5373.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0333ea70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:45:36.000Z'}}, {'blockNum': '0x62afde', 'uniqueId': '0xfdc1bc9810fbaa96e8b95a92b86b016150f494cf916e854a8d2d91264addf7fe:log:5', 'hash': '0xfdc1bc9810fbaa96e8b95a92b86b016150f494cf916e854a8d2d91264addf7fe', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6d96e3f5bd99126df7f8cfff0ef809b3c276935a', 'value': 303.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2e4b90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:47:50.000Z'}}, {'blockNum': '0x62afde', 'uniqueId': '0x49113ead55df32aa06314cc2140faa31f5651a1c6b9a8150e03cd5fd21f56379:log:6', 'hash': '0x49113ead55df32aa06314cc2140faa31f5651a1c6b9a8150e03cd5fd21f56379', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x63a6f6e759e27a6a41ebf8785c31d29b42c14719', 'value': 1088.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa613a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:47:50.000Z'}}, {'blockNum': '0x62afdf', 'uniqueId': '0xd426404dacc4de79722fc65d6235e373e1328d2981b5843dc630b424f5dd83da:log:6', 'hash': '0xd426404dacc4de79722fc65d6235e373e1328d2981b5843dc630b424f5dd83da', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 1582.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xf17480', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:47:54.000Z'}}, {'blockNum': '0x62afe5', 'uniqueId': '0x90e3dd3bcec5bc7f608d0a71639d6e13ccda76d0ac9b1ab6c31bb4c5a892ecd9:log:49', 'hash': '0x90e3dd3bcec5bc7f608d0a71639d6e13ccda76d0ac9b1ab6c31bb4c5a892ecd9', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 3665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x022f3c10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:48:58.000Z'}}, {'blockNum': '0x62afec', 'uniqueId': '0xc0bd24a21c204aece13f3f1481168d34f57b8facebaabf2fe78f3d0fa927190f:log:21', 'hash': '0xc0bd24a21c204aece13f3f1481168d34f57b8facebaabf2fe78f3d0fa927190f', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xa38cde626af6d97c39a44ba2bebc589cdafb6ac8', 'value': 1271.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xc21398', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:49:36.000Z'}}, {'blockNum': '0x62afee', 'uniqueId': '0xaaf4781c1f5617f0db5243831ec0ce0b2df8068b27fc66d4d0fd8b0ac27e615a:log:8', 'hash': '0xaaf4781c1f5617f0db5243831ec0ce0b2df8068b27fc66d4d0fd8b0ac27e615a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 1385.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xd36530', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:49:57.000Z'}}, {'blockNum': '0x62aff6', 'uniqueId': '0xba30795000f1ac080f1b214839f802df773438630b8bb91243705cfe0fafaa0f:log:2', 'hash': '0xba30795000f1ac080f1b214839f802df773438630b8bb91243705cfe0fafaa0f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x388118e4769b2f946e763ea5bdd1825c720f428b', 'value': 2481.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x017ab538', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:52:14.000Z'}}, {'blockNum': '0x62aff6', 'uniqueId': '0xf8064d2c0573e5b44077972e58345911e1f26249fefe3083f81f4ff2876dc1ae:log:3', 'hash': '0xf8064d2c0573e5b44077972e58345911e1f26249fefe3083f81f4ff2876dc1ae', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x754652c7ba43392f60875c5dddcd117d3a84d37e', 'value': 10.387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0195be', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:52:14.000Z'}}, {'blockNum': '0x62aff6', 'uniqueId': '0x190598f27cb1f535260f53d8cd622f49658826ddf2670edc841180fb11f2d15a:log:59', 'hash': '0x190598f27cb1f535260f53d8cd622f49658826ddf2670edc841180fb11f2d15a', 'from': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 5373.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0333ea70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:52:14.000Z'}}, {'blockNum': '0x62affc', 'uniqueId': '0x72c513d24367f47100516e02533f82f68896db6806cc810f2b2cdef686528f29:log:37', 'hash': '0x72c513d24367f47100516e02533f82f68896db6806cc810f2b2cdef686528f29', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 6148.9518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03aa416e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:53:58.000Z'}}, {'blockNum': '0x62affd', 'uniqueId': '0x8ae27eaa6a37fad1586b2ee78d3ab906ecf466dcb22d12c40ee03914dcf6452b:log:8', 'hash': '0x8ae27eaa6a37fad1586b2ee78d3ab906ecf466dcb22d12c40ee03914dcf6452b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x7b907f9d57af35ec67240c492c3e8bbe92a16762', 'value': 5445.57, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033eed94', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:54:33.000Z'}}, {'blockNum': '0x62b004', 'uniqueId': '0x78f51c7ff55f9740fc1c721658b9a0cbd0c6786f50acf4cccf4b2965114eac9a:log:2', 'hash': '0x78f51c7ff55f9740fc1c721658b9a0cbd0c6786f50acf4cccf4b2965114eac9a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x381856eca3328afd5627d19d348c222edc36d52b', 'value': 1805.5901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x011382dd', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:55:25.000Z'}}, {'blockNum': '0x62b010', 'uniqueId': '0x74debb61541652ab8534e578462f4c0020a59dd042eeba24f4ef2242031c8487:log:0', 'hash': '0x74debb61541652ab8534e578462f4c0020a59dd042eeba24f4ef2242031c8487', 'from': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 3302.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01f7ebe8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:57:21.000Z'}}, {'blockNum': '0x62b017', 'uniqueId': '0x9e24204edda596c7160a7646aec5c5e4540ae61b37bbaa897c293953dd4d20f6:log:26', 'hash': '0x9e24204edda596c7160a7646aec5c5e4540ae61b37bbaa897c293953dd4d20f6', 'from': '0x388118e4769b2f946e763ea5bdd1825c720f428b', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 2481.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x017ab538', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:58:38.000Z'}}, {'blockNum': '0x62b01b', 'uniqueId': '0x72254e5e6cd7a90ba45139e687c9835eb395fca24d485c5011ac742108210801:log:4', 'hash': '0x72254e5e6cd7a90ba45139e687c9835eb395fca24d485c5011ac742108210801', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 527.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x507990', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:59:51.000Z'}}, {'blockNum': '0x62b01b', 'uniqueId': '0xf0551257f866ff3f9774cf8fb6d0658d2999053d98176f3fda8525133d405371:log:5', 'hash': '0xf0551257f866ff3f9774cf8fb6d0658d2999053d98176f3fda8525133d405371', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 255.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x26f890', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:59:51.000Z'}}, {'blockNum': '0x62b01b', 'uniqueId': '0xa1283fd578ed68660425b5d3b001238f922588485234027f20c2b120ee7295c0:log:6', 'hash': '0xa1283fd578ed68660425b5d3b001238f922588485234027f20c2b120ee7295c0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 571.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x573050', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:59:51.000Z'}}, {'blockNum': '0x62b01b', 'uniqueId': '0x25d4f7f10ef95244bacbd2089f0ee43fddf72219143c96ff0ebaaf55e6d71d37:log:7', 'hash': '0x25d4f7f10ef95244bacbd2089f0ee43fddf72219143c96ff0ebaaf55e6d71d37', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x754652c7ba43392f60875c5dddcd117d3a84d37e', 'value': 463.933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x46ca62', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:59:51.000Z'}}, {'blockNum': '0x62b01d', 'uniqueId': '0x0b1aa4ca226e89ceeebf7f6339462b9261015e7101ed227f119979f41168a7f0:log:76', 'hash': '0x0b1aa4ca226e89ceeebf7f6339462b9261015e7101ed227f119979f41168a7f0', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 5804.0095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03759f1f', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:00:13.000Z'}}, {'blockNum': '0x62b01f', 'uniqueId': '0x217a382e2cd609c183ff0f21904197af21e64ee322fb780d46a796c994ea92f7:log:29', 'hash': '0x217a382e2cd609c183ff0f21904197af21e64ee322fb780d46a796c994ea92f7', 'from': '0x63a6f6e759e27a6a41ebf8785c31d29b42c14719', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 1088.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa613a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:01:01.000Z'}}, {'blockNum': '0x62b01f', 'uniqueId': '0x3e2c32ae67fc9c77329c7bd4c07553a39d34168d88862150ce15795f06049c2d:log:30', 'hash': '0x3e2c32ae67fc9c77329c7bd4c07553a39d34168d88862150ce15795f06049c2d', 'from': '0x7b907f9d57af35ec67240c492c3e8bbe92a16762', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 5445.57, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033eed94', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:01:01.000Z'}}, {'blockNum': '0x62b020', 'uniqueId': '0x9281f2ca9b4ce56fed2b1f77d9f0e965dd9244c046920c58cfd1ff990f0fbdc1:log:0', 'hash': '0x9281f2ca9b4ce56fed2b1f77d9f0e965dd9244c046920c58cfd1ff990f0fbdc1', 'from': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x022f3c10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:01:04.000Z'}}, {'blockNum': '0x62b024', 'uniqueId': '0x1585443d230fe19dad1237a230e8b6dfdb3ec7fcf8f7738f2b484cc1639fc7f1:log:29', 'hash': '0x1585443d230fe19dad1237a230e8b6dfdb3ec7fcf8f7738f2b484cc1639fc7f1', 'from': '0x381856eca3328afd5627d19d348c222edc36d52b', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 1805.5901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x011382dd', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:01:49.000Z'}}, {'blockNum': '0x62b026', 'uniqueId': '0xdf6a55f0c5a982da4ee4aa965c74df0f99f43b35d86c90ebddfd23a339707931:log:6', 'hash': '0xdf6a55f0c5a982da4ee4aa965c74df0f99f43b35d86c90ebddfd23a339707931', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8961b8c41e1d929e0bee94480898127ab677ebc7', 'value': 903.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x89d910', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:02:14.000Z'}}, {'blockNum': '0x62b026', 'uniqueId': '0xafdf5feb292bb4b2196aaa6508376d87098904b0725236ef5dc8b5943e049893:log:7', 'hash': '0xafdf5feb292bb4b2196aaa6508376d87098904b0725236ef5dc8b5943e049893', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 210.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x201ac0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:02:14.000Z'}}, {'blockNum': '0x62b028', 'uniqueId': '0x48d072bdc30aec1ccda3eb54f002b190915086be799409358fc4ec597bb80f89:log:2', 'hash': '0x48d072bdc30aec1ccda3eb54f002b190915086be799409358fc4ec597bb80f89', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 307.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2ee7d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:02:46.000Z'}}, {'blockNum': '0x62b028', 'uniqueId': '0xfbd8abb46c94e062f236471f5943b6e17812d7913e6875716714eafda51868dc:log:3', 'hash': '0xfbd8abb46c94e062f236471f5943b6e17812d7913e6875716714eafda51868dc', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x503bba58811c82386be8fdefab424bdcec5ff67a', 'value': 2437.9728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01740150', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:02:46.000Z'}}, {'blockNum': '0x62b033', 'uniqueId': '0x590d9933dd1564fcf4e206552f22a05ee849986231037e1627836495a0b72d2d:log:0', 'hash': '0x590d9933dd1564fcf4e206552f22a05ee849986231037e1627836495a0b72d2d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6d96e3f5bd99126df7f8cfff0ef809b3c276935a', 'value': 495.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4b9790', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:05:32.000Z'}}, {'blockNum': '0x62b033', 'uniqueId': '0xf58d3a1dff130e23c7989c667679c56befade4eb9dfdad591ff799dfc3d76f3f:log:38', 'hash': '0xf58d3a1dff130e23c7989c667679c56befade4eb9dfdad591ff799dfc3d76f3f', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 6213.0817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03b40a81', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:05:32.000Z'}}, {'blockNum': '0x62b037', 'uniqueId': '0x7c2e39d9de54b6295a74ffad5252e4d493b3efe9b25379c16efc9be7081064f0:log:38', 'hash': '0x7c2e39d9de54b6295a74ffad5252e4d493b3efe9b25379c16efc9be7081064f0', 'from': '0xa38cde626af6d97c39a44ba2bebc589cdafb6ac8', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 1271.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xc21398', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:06:10.000Z'}}, {'blockNum': '0x62b046', 'uniqueId': '0xf318c37725442d744400856346602182a25c0e9dbb571482a226944e991976f9:log:4', 'hash': '0xf318c37725442d744400856346602182a25c0e9dbb571482a226944e991976f9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xff86518463ab901600333bc0d631e8a06d2d786e', 'value': 2381.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x016b5f70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:09:28.000Z'}}, {'blockNum': '0x62b046', 'uniqueId': '0xfce0695299b5fcdaea640280d8ef40d60473a0d28c1089f8259864ff3b553b72:log:5', 'hash': '0xfce0695299b5fcdaea640280d8ef40d60473a0d28c1089f8259864ff3b553b72', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 5408.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033941a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:09:28.000Z'}}, {'blockNum': '0x62b04b', 'uniqueId': '0x3675a77283d5049c816b57e5a9f1ee0f1b5c454e6049678abb55e6413fdaa85d:log:41', 'hash': '0x3675a77283d5049c816b57e5a9f1ee0f1b5c454e6049678abb55e6413fdaa85d', 'from': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 1872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x011da500', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:10:26.000Z'}}, {'blockNum': '0x62b04d', 'uniqueId': '0xad1f29f05fb447f31349ccb98f10fab26907c6f0d4ebfc1a3a964b39b4f11822:log:49', 'hash': '0xad1f29f05fb447f31349ccb98f10fab26907c6f0d4ebfc1a3a964b39b4f11822', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 7841.5411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04ac8633', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:11:01.000Z'}}, {'blockNum': '0x62b04e', 'uniqueId': '0x992b2042dbc4dabf01d91c1f95d3f1dac660b05eb2661c749efd0de277861fd1:log:2', 'hash': '0x992b2042dbc4dabf01d91c1f95d3f1dac660b05eb2661c749efd0de277861fd1', 'from': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 126268.1932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4b42ff4c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:11:17.000Z'}}, {'blockNum': '0x62b052', 'uniqueId': '0x72deab01350824ceab947e2ee36f6246d52deb7913bcfc0fbd0555929a001caa:log:0', 'hash': '0x72deab01350824ceab947e2ee36f6246d52deb7913bcfc0fbd0555929a001caa', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x096a4e7ed3d256dc43b9a10954393566dd84e5ec', 'value': 1490.905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xe37e7a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:11:56.000Z'}}, {'blockNum': '0x62b069', 'uniqueId': '0x9687ce74b28efe65dd18cc79b501e678256c2001d2b7b1d3e3155ed4b0eea333:log:55', 'hash': '0x9687ce74b28efe65dd18cc79b501e678256c2001d2b7b1d3e3155ed4b0eea333', 'from': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 5408.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033941a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:15:57.000Z'}}, {'blockNum': '0x62b06c', 'uniqueId': '0x307495bf72569b49ecfdb1f3412d0aff7c0b6fc1b286c2f9ffe9aa3b5c8860e7:log:82', 'hash': '0x307495bf72569b49ecfdb1f3412d0aff7c0b6fc1b286c2f9ffe9aa3b5c8860e7', 'from': '0x503bba58811c82386be8fdefab424bdcec5ff67a', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 2437.9728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01740150', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:17:11.000Z'}}, {'blockNum': '0x62b081', 'uniqueId': '0xc2f3f3895fc0f8b55b916453cdd5e21ba3220ace474908ead1690a89fe96e05b:log:26', 'hash': '0xc2f3f3895fc0f8b55b916453cdd5e21ba3220ace474908ead1690a89fe96e05b', 'from': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 91294.1501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x366a61bd', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:21:25.000Z'}}, {'blockNum': '0x62b083', 'uniqueId': '0xe268db6920dc23ee3b32fae0112ed8d55885425ccb786a24546d0fbbb4981b6b:log:2', 'hash': '0xe268db6920dc23ee3b32fae0112ed8d55885425ccb786a24546d0fbbb4981b6b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 5444.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033ebfe0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:21:51.000Z'}}, {'blockNum': '0x62b087', 'uniqueId': '0xae35817922d8eb335eebd7af41ac4ccc42d1a340d3f67dacb3a524c0e5184b80:log:57', 'hash': '0xae35817922d8eb335eebd7af41ac4ccc42d1a340d3f67dacb3a524c0e5184b80', 'from': '0x3c020808764d8e123a2c023f36ee9ae38bd9dab0', 'to': '0x164322524976c74641416b7a3047db2c5b86e481', 'value': 55.9295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0888bf', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:22:45.000Z'}}, {'blockNum': '0x62b08e', 'uniqueId': '0x470f4da95835a5f0b87a0418348bc7219add0db5c49fe87c08657e4f8d6c30aa:log:114', 'hash': '0x470f4da95835a5f0b87a0418348bc7219add0db5c49fe87c08657e4f8d6c30aa', 'from': '0xff86518463ab901600333bc0d631e8a06d2d786e', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 2381.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x016b5f70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:24:14.000Z'}}, {'blockNum': '0x62b093', 'uniqueId': '0xa781a4ae1dd46d0e8fb69618f55e0875a6064064304f759b4405da3295a1d767:log:9', 'hash': '0xa781a4ae1dd46d0e8fb69618f55e0875a6064064304f759b4405da3295a1d767', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xdeaf423f4216716e2f258e4c8662397668807a52', 'value': 1306.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xc762f8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:25:00.000Z'}}, {'blockNum': '0x62b095', 'uniqueId': '0x5775e1e5e3b6f41c8829c52a18c0fb18e31eb7941ca16d181237d334a5b1a834:log:5', 'hash': '0x5775e1e5e3b6f41c8829c52a18c0fb18e31eb7941ca16d181237d334a5b1a834', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 78165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2e970850', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:26:07.000Z'}}, {'blockNum': '0x62b095', 'uniqueId': '0x0a94d32462b8034361632fc46ade47226f041eb43547b7355f3478eedb4af91b:log:34', 'hash': '0x0a94d32462b8034361632fc46ade47226f041eb43547b7355f3478eedb4af91b', 'from': '0x096a4e7ed3d256dc43b9a10954393566dd84e5ec', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 1490.905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xe37e7a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:26:07.000Z'}}, {'blockNum': '0x62b09f', 'uniqueId': '0xb96951e7fbea587a1dbf1bfd0b62032b12abc334fa7e57fc499fa7923bff8fa6:log:26', 'hash': '0xb96951e7fbea587a1dbf1bfd0b62032b12abc334fa7e57fc499fa7923bff8fa6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xff86518463ab901600333bc0d631e8a06d2d786e', 'value': 1863.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x011c5510', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:29:46.000Z'}}, {'blockNum': '0x62b0a4', 'uniqueId': '0x9f20011bc568f01c50b8d628daed2020e087ce68d8f9d82d290f00e4b8c4d216:log:147', 'hash': '0x9f20011bc568f01c50b8d628daed2020e087ce68d8f9d82d290f00e4b8c4d216', 'from': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 5444.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033ebfe0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:30:57.000Z'}}, {'blockNum': '0x62b0a7', 'uniqueId': '0x9d0570efa9be5cc47ffe7163b163e7d4cf25d20a2c0f5b8b48d9858f817e1bb3:log:13', 'hash': '0x9d0570efa9be5cc47ffe7163b163e7d4cf25d20a2c0f5b8b48d9858f817e1bb3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 5480.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03443e20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:31:53.000Z'}}, {'blockNum': '0x62b0a7', 'uniqueId': '0xd42c1c80b4e7841e41eda633b692d05ee2a8f63ff0de5de8081fa62e5f303443:log:14', 'hash': '0xd42c1c80b4e7841e41eda633b692d05ee2a8f63ff0de5de8081fa62e5f303443', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 788.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x784ce0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:31:53.000Z'}}, {'blockNum': '0x62b0a7', 'uniqueId': '0x216280ddfe7c65aff85f30098aa819e474c9d13bce00232ba65dae1441030ec4:log:15', 'hash': '0x216280ddfe7c65aff85f30098aa819e474c9d13bce00232ba65dae1441030ec4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7f1ab4f31d4bc218433d6cc1e9a1a77346336e2d', 'value': 1234.162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xbc5174', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:31:53.000Z'}}, {'blockNum': '0x62b0b3', 'uniqueId': '0x0e2196a8ff94f9bafc88c10aad30f13c1d5e92e0b14884f360ccd88b35dde2bb:log:6', 'hash': '0x0e2196a8ff94f9bafc88c10aad30f13c1d5e92e0b14884f360ccd88b35dde2bb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6d96e3f5bd99126df7f8cfff0ef809b3c276935a', 'value': 457.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x45cb30', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:33:44.000Z'}}, {'blockNum': '0x62b0b4', 'uniqueId': '0x3f596649f76d388ef02bd5b561a836c120d4b693a79589c2ab6b485a047c3f24:log:20', 'hash': '0x3f596649f76d388ef02bd5b561a836c120d4b693a79589c2ab6b485a047c3f24', 'from': '0xdeaf423f4216716e2f258e4c8662397668807a52', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 1306.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xc762f8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:34:06.000Z'}}, {'blockNum': '0x62b0c9', 'uniqueId': '0xd1e1235607d727a2e15b18f3cdbc3a2e28617af1baf775b2ed48c31ade3bca81:log:20', 'hash': '0xd1e1235607d727a2e15b18f3cdbc3a2e28617af1baf775b2ed48c31ade3bca81', 'from': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 5480.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03443e20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:38:56.000Z'}}, {'blockNum': '0x62b0ca', 'uniqueId': '0x8939a30d6bb3a706c690e36f2a2653946d2cd067e33ab99783db9473cb04ee93:log:29', 'hash': '0x8939a30d6bb3a706c690e36f2a2653946d2cd067e33ab99783db9473cb04ee93', 'from': '0x7f1ab4f31d4bc218433d6cc1e9a1a77346336e2d', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 1234.162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xbc5174', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:39:13.000Z'}}, {'blockNum': '0x62b0cd', 'uniqueId': '0x473895889573783b2deefabd7394c56483b7d1f115b080dd7c260de2ac6bebcc:log:13', 'hash': '0x473895889573783b2deefabd7394c56483b7d1f115b080dd7c260de2ac6bebcc', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 5232.9949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031e7ddd', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:39:52.000Z'}}, {'blockNum': '0x62b0d0', 'uniqueId': '0x4a2071aa27fa44626009678116491483b62443a35c6a8b52469b655e348a0810:log:0', 'hash': '0x4a2071aa27fa44626009678116491483b62443a35c6a8b52469b655e348a0810', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x503bba58811c82386be8fdefab424bdcec5ff67a', 'value': 4785.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02da31b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:40:20.000Z'}}, {'blockNum': '0x62b0d4', 'uniqueId': '0xeba7a22d951ef16a6ead9c6b6d95fe9517d3ba4586355ef2a9a41d9e8a385453:log:25', 'hash': '0xeba7a22d951ef16a6ead9c6b6d95fe9517d3ba4586355ef2a9a41d9e8a385453', 'from': '0x6d96e3f5bd99126df7f8cfff0ef809b3c276935a', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 1256.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xbfae50', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:41:26.000Z'}}, {'blockNum': '0x62b0e1', 'uniqueId': '0x74402bdc7d353399af39393970f81923721207b42cfa88deaec56cd3a1c891ca:log:38', 'hash': '0x74402bdc7d353399af39393970f81923721207b42cfa88deaec56cd3a1c891ca', 'from': '0xff86518463ab901600333bc0d631e8a06d2d786e', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 1863.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x011c5510', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:44:56.000Z'}}, {'blockNum': '0x62b0e9', 'uniqueId': '0x9904bcb050b52bc737bf4a26661048f0343de4eef0dd81ad86eef515041adf2f:log:0', 'hash': '0x9904bcb050b52bc737bf4a26661048f0343de4eef0dd81ad86eef515041adf2f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x699577ffe874562459b4b31b60537d0362f5aa51', 'value': 8242.009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04e9a17a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:46:57.000Z'}}, {'blockNum': '0x62b0f8', 'uniqueId': '0xb8ace4d9401432f62ad5e4d23d8c7d4c161e057e0f117632592d7487968da740:log:19', 'hash': '0xb8ace4d9401432f62ad5e4d23d8c7d4c161e057e0f117632592d7487968da740', 'from': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5232.9949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031e7ddd', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:51:23.000Z'}}, {'blockNum': '0x62b109', 'uniqueId': '0x6f42218e2df40769dad24852105c4b82b223d2f568aeaf7d2def849c19d1f19f:log:0', 'hash': '0x6f42218e2df40769dad24852105c4b82b223d2f568aeaf7d2def849c19d1f19f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 5516.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0349bc60', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:54:55.000Z'}}, {'blockNum': '0x62b109', 'uniqueId': '0xad491a422b338217a017fcc8a7941b0c464e53edd71013e17ed3c05eb41c9f8e:log:28', 'hash': '0xad491a422b338217a017fcc8a7941b0c464e53edd71013e17ed3c05eb41c9f8e', 'from': '0x699577ffe874562459b4b31b60537d0362f5aa51', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 8242.009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04e9a17a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:54:55.000Z'}}, {'blockNum': '0x62b10f', 'uniqueId': '0x7d6e4b8658b01b75ab8448ae5240cd1d5d67bf54e2380f4ced26d48695fc7200:log:103', 'hash': '0x7d6e4b8658b01b75ab8448ae5240cd1d5d67bf54e2380f4ced26d48695fc7200', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x572cd0a1c8e7deb31fbe8a729b716cd08a5d5c4c', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02160ec0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:55:54.000Z'}}, {'blockNum': '0x62b113', 'uniqueId': '0x387ace7b518ad8b244ea8963db9d35f77b8d462d1fdfd684a18155fe6dba6878:log:31', 'hash': '0x387ace7b518ad8b244ea8963db9d35f77b8d462d1fdfd684a18155fe6dba6878', 'from': '0x503bba58811c82386be8fdefab424bdcec5ff67a', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 4785.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02da31b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:57:30.000Z'}}, {'blockNum': '0x62b12a', 'uniqueId': '0xb64967422dce0fc7d37fa599915cf81385091de4177fe77c37f9a6794fa01e84:log:24', 'hash': '0xb64967422dce0fc7d37fa599915cf81385091de4177fe77c37f9a6794fa01e84', 'from': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 5516.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0349bc60', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T03:03:09.000Z'}}, {'blockNum': '0x62b14e', 'uniqueId': '0x616531ebe9398717f91e5bb526296577a6d17e26dd3dc45be11e51e8c850158d:log:53', 'hash': '0x616531ebe9398717f91e5bb526296577a6d17e26dd3dc45be11e51e8c850158d', 'from': '0x572cd0a1c8e7deb31fbe8a729b716cd08a5d5c4c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03938700', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T03:10:49.000Z'}}, {'blockNum': '0x62b158', 'uniqueId': '0xe14dfd9b34c3ec55de98336afe81b98dd440e9142cf1a74e096e54cedec3c1fe:log:4', 'hash': '0xe14dfd9b34c3ec55de98336afe81b98dd440e9142cf1a74e096e54cedec3c1fe', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7b907f9d57af35ec67240c492c3e8bbe92a16762', 'value': 26648.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0fe23920', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T03:13:21.000Z'}}, {'blockNum': '0x62b17b', 'uniqueId': '0xb384cbf2bbe0b56f04316ffc0976b1a90c9c2cd8e0398c69ee140c39b468581b:log:35', 'hash': '0xb384cbf2bbe0b56f04316ffc0976b1a90c9c2cd8e0398c69ee140c39b468581b', 'from': '0x7b907f9d57af35ec67240c492c3e8bbe92a16762', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 26648.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0fe23920', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T03:20:37.000Z'}}, {'blockNum': '0x62b24f', 'uniqueId': '0xa10113cce4de0dfffcc5c47247a25d81141c0a2e2335d9be360f2b009560e3d4:log:8', 'hash': '0xa10113cce4de0dfffcc5c47247a25d81141c0a2e2335d9be360f2b009560e3d4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 5553.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x034f61b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T04:12:52.000Z'}}, {'blockNum': '0x62b292', 'uniqueId': '0xfce2e489cc66bece36d2f37b715530ef93b25aaafacd3eec8e8f755a13a81d58:log:6', 'hash': '0xfce2e489cc66bece36d2f37b715530ef93b25aaafacd3eec8e8f755a13a81d58', 'from': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 5553.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x034f61b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T04:29:31.000Z'}}, {'blockNum': '0x62b2b7', 'uniqueId': '0x03127033f5594f3e0ba5f34e0b61ef5d3c47c12b064ea40f26df21c74db5aa7a:log:12', 'hash': '0x03127033f5594f3e0ba5f34e0b61ef5d3c47c12b064ea40f26df21c74db5aa7a', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 6143.2865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03a96421', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T04:40:19.000Z'}}, {'blockNum': '0x62b2bf', 'uniqueId': '0x9f6955af25202cb57b99177ffb5aee0abec38c6b85a39b7d2a3b3f0e253750c2:log:61', 'hash': '0x9f6955af25202cb57b99177ffb5aee0abec38c6b85a39b7d2a3b3f0e253750c2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'value': 5125.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x030e12f0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T04:41:03.000Z'}}, {'blockNum': '0x62b2cf', 'uniqueId': '0x1eb42e1375caf2b68b61c6def03802b614677870178c980babfcfa42899acae1:log:103', 'hash': '0x1eb42e1375caf2b68b61c6def03802b614677870178c980babfcfa42899acae1', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 6838.7964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0413847c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T04:45:43.000Z'}}, {'blockNum': '0x62b2ec', 'uniqueId': '0x4f6d512165b0606b2a45ffd8b92657f8b23ea3d5256c55e5cf0626f5bc8f6070:log:4', 'hash': '0x4f6d512165b0606b2a45ffd8b92657f8b23ea3d5256c55e5cf0626f5bc8f6070', 'from': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6143.2865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03a96421', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T04:51:06.000Z'}}, {'blockNum': '0x62b307', 'uniqueId': '0x90b58fd90172dcd56e5950d42e25a19eb76901657681404ce316b5774010e6d7:log:8', 'hash': '0x90b58fd90172dcd56e5950d42e25a19eb76901657681404ce316b5774010e6d7', 'from': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 5125.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x030e12f0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T04:56:37.000Z'}}]}}
Number of returned transfers: 139
Answer is complete
symbol POLY
group BPS
date 2018-10-17
hour 19:01
exchange binance
Name: 306, dtype: object
HERE
{'arbitrum-one': '0x34772c4d12f288368aa35ae7bc527a6b2b3e8906'}
No contract for ethereum specified
Symbol: POLY, Contract: 0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec
Datetime timestamps: 2018-10-17 19:01:00 2018-10-17 07:01:00 2018-10-18 07:01:00
Unix timestamps: 1539752460.0 1539838860.0
Hex Block Numbers: 0x63a3c8 0x63bbbe
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x63a3e1', 'uniqueId': '0x096356870409f39751b203547f845c4c5974986ccfc2f97902db328f5e018753:log:40', 'hash': '0x096356870409f39751b203547f845c4c5974986ccfc2f97902db328f5e018753', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T05:09:22.000Z'}}, {'blockNum': '0x63a42b', 'uniqueId': '0x9a1b829e7cdfe2299393d4ed5f0db02a56223ee409893970c9fc86011beef3ad:log:2', 'hash': '0x9a1b829e7cdfe2299393d4ed5f0db02a56223ee409893970c9fc86011beef3ad', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 27025.86387324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05b91334438c54ce7000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T05:28:47.000Z'}}, {'blockNum': '0x63a42d', 'uniqueId': '0x79138f8a15ab270dac36ba6c33736ac9958c74c570fc3e991749b6b67611b6d8:log:44', 'hash': '0x79138f8a15ab270dac36ba6c33736ac9958c74c570fc3e991749b6b67611b6d8', 'from': '0x3cac9d4be7117ba53c27260945f4c8b91054c81b', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 81991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x115cbdb33d106cbc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T05:28:56.000Z'}}, {'blockNum': '0x63a431', 'uniqueId': '0x32fa946630cf66b28c424b83eba2f1471b38cd1137bce97e8f18cffa5e668eaa:log:12', 'hash': '0x32fa946630cf66b28c424b83eba2f1471b38cd1137bce97e8f18cffa5e668eaa', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T05:29:29.000Z'}}, {'blockNum': '0x63a438', 'uniqueId': '0x7152002108a009a09fdc7c4e575447880f99535f71c0d9c6e57c3698113a8a3f:log:6', 'hash': '0x7152002108a009a09fdc7c4e575447880f99535f71c0d9c6e57c3698113a8a3f', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0x08a9da083869c82813d52be0f5dec79a9e18117e', 'value': 50.51729643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02bd117d7373424c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T05:30:58.000Z'}}, {'blockNum': '0x63a44e', 'uniqueId': '0xa1b63f459bfe3b148f91ddfd50c0d0cd2eb6474d45410e1a5a1a0a4459b2b9b5:log:12', 'hash': '0xa1b63f459bfe3b148f91ddfd50c0d0cd2eb6474d45410e1a5a1a0a4459b2b9b5', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x89bf8656d07ff60cf1890b277e15d8ec61e96fbf', 'value': 6180.6249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x014f0d66a03222344000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T05:36:53.000Z'}}, {'blockNum': '0x63a44f', 'uniqueId': '0xa4086a6d0415ccfef2c77cd79c6609afba0c5a2f1651687adc95bcb0e8e0058f:log:3', 'hash': '0xa4086a6d0415ccfef2c77cd79c6609afba0c5a2f1651687adc95bcb0e8e0058f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'value': 8572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01d0b065a798f8700000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T05:37:17.000Z'}}, {'blockNum': '0x63a44f', 'uniqueId': '0x1a668069193c98b9df615a05cc452f99c80e5e30696a870fa744bb90cb34624b:log:5', 'hash': '0x1a668069193c98b9df615a05cc452f99c80e5e30696a870fa744bb90cb34624b', 'from': '0x000536c29f728e871d303da34a29546f33536e48', 'to': '0xe71427b1e4ecf9069b56452ec39fc1bfb4355905', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T05:37:17.000Z'}}, {'blockNum': '0x63a461', 'uniqueId': '0x7f7d6e27e7b97af33d9d990e50712b74f3433894032bd863250de7011d082294:log:7', 'hash': '0x7f7d6e27e7b97af33d9d990e50712b74f3433894032bd863250de7011d082294', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'value': 8547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cf5573d00d9fac0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T05:41:31.000Z'}}, {'blockNum': '0x63a47e', 'uniqueId': '0x68e5024ab1fea46702995d938100ff12ddb12dc3406aebbdb333197e2daa9426:log:10', 'hash': '0x68e5024ab1fea46702995d938100ff12ddb12dc3406aebbdb333197e2daa9426', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27025.86387324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05b91334438c54ce7000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T05:49:28.000Z'}}, {'blockNum': '0x63a4a8', 'uniqueId': '0x0f9f48bdde95de0f5a5be7bca0b4e83da83bf28f567698ccb3f4da079ab9521d:log:6', 'hash': '0x0f9f48bdde95de0f5a5be7bca0b4e83da83bf28f567698ccb3f4da079ab9521d', 'from': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cf5573d00d9fac0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T05:59:06.000Z'}}, {'blockNum': '0x63a4b8', 'uniqueId': '0x7c229307f751b62e9ff7d4d677aabe9e5324a8915fc9456039c6de611db647e6:log:5', 'hash': '0x7c229307f751b62e9ff7d4d677aabe9e5324a8915fc9456039c6de611db647e6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 26903.85895234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05b2760bb6663eacc800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:01:20.000Z'}}, {'blockNum': '0x63a4df', 'uniqueId': '0x8385d8f59836ba3d54484982e6ba09cb1c12ddc14429d75ba4b9657f32e50fd9:log:34', 'hash': '0x8385d8f59836ba3d54484982e6ba09cb1c12ddc14429d75ba4b9657f32e50fd9', 'from': '0x1059fa1e06e29501ac49a06ded1fda129bdc462c', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 969.903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x34941ba7bbd1b18000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:09:33.000Z'}}, {'blockNum': '0x63a4e5', 'uniqueId': '0x0581aed3550ee72f30a68c23a058093435fb89ce8c81f8e1a1821011cb78ea87:log:30', 'hash': '0x0581aed3550ee72f30a68c23a058093435fb89ce8c81f8e1a1821011cb78ea87', 'from': '0xe9186833ead90e44b219f9f4e71ef658feab750a', 'to': '0x43ff33ea82072463fbe7686435014dd26fa6ed6e', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:10:49.000Z'}}, {'blockNum': '0x63a508', 'uniqueId': '0x6e9398d73053f912fffd09e5adb6d0072c5a7baf4fc6501a3e2b7c9164aa935e:log:10', 'hash': '0x6e9398d73053f912fffd09e5adb6d0072c5a7baf4fc6501a3e2b7c9164aa935e', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26903.85895234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05b2760bb6663eacc800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:19:06.000Z'}}, {'blockNum': '0x63a529', 'uniqueId': '0x2fba38e2f0c7a5798fd0ed96e69a2b98cf9a55e055f33f0a451c2004d95e38e6:log:18', 'hash': '0x2fba38e2f0c7a5798fd0ed96e69a2b98cf9a55e055f33f0a451c2004d95e38e6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3899cafd63b8f28eae59cfa823a8747a63f90ff4', 'value': 62993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d56db7cc4c835a40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:27:25.000Z'}}, {'blockNum': '0x63a546', 'uniqueId': '0xe23c7bd65135f70b40c2366a6904d50a39e7a96fee2e58529c581b74a9a452f4:log:126', 'hash': '0xe23c7bd65135f70b40c2366a6904d50a39e7a96fee2e58529c581b74a9a452f4', 'from': '0x3196ca0111df547437fc90c07f52794622182be1', 'to': '0x749a2f2d196afcafffb2ffe4404a9b71ab2b2a2b', 'value': 470.62017726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x19832abdc3f1ab3800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:34:19.000Z'}}, {'blockNum': '0x63a558', 'uniqueId': '0x567b1fb39a55180be22a4141b49f16e88248060daa31bc36f4dc433db097e7cf:log:29', 'hash': '0x567b1fb39a55180be22a4141b49f16e88248060daa31bc36f4dc433db097e7cf', 'from': '0x02e725b7e99091bd4ccbf15228384e160ecdf78f', 'to': '0xc31714e6759a1ee26db1d06af1ed276340cd4233', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:37:37.000Z'}}, {'blockNum': '0x63a568', 'uniqueId': '0xc6f35ce43afb221d701b512f9114f0f51498eef44e07e5239e80a48b18eed643:log:3', 'hash': '0xc6f35ce43afb221d701b512f9114f0f51498eef44e07e5239e80a48b18eed643', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7d452bc8f8ca389c02a2fe6c3a00d458e8eb2439', 'value': 999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3627e8f712373c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:39:56.000Z'}}, {'blockNum': '0x63a569', 'uniqueId': '0xb92d481281baf9fb2334f3363a8c1385bce1b69a6fec759c37ceabd3ab508925:log:71', 'hash': '0xb92d481281baf9fb2334f3363a8c1385bce1b69a6fec759c37ceabd3ab508925', 'from': '0x5fd9b40d53aa9fced8a54d21904f8eae5842c174', 'to': '0x7de710922846b3c990c04edaf98a3224466e3395', 'value': 357.16890898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x135cb6de5af6ba0800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:40:19.000Z'}}, {'blockNum': '0x63a599', 'uniqueId': '0xa85144660bb28e27f7cc73ea8cd6124761311a0ae23cd229b6e70ae861fb7037:log:97', 'hash': '0xa85144660bb28e27f7cc73ea8cd6124761311a0ae23cd229b6e70ae861fb7037', 'from': '0xf3a71cc1be5ce833c471e3f25aa391f9cd56e1aa', 'to': '0xd1a7b926248efa545df3d5badfc312c4f31001f0', 'value': 0.029141842819703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x67885a055e60d8', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:52:55.000Z'}}, {'blockNum': '0x63a599', 'uniqueId': '0xeea0ec7d3e07d6a08eb0c7e427f70200b075c12623d5634ce0f978b0cbd5a53f:log:98', 'hash': '0xeea0ec7d3e07d6a08eb0c7e427f70200b075c12623d5634ce0f978b0cbd5a53f', 'from': '0xf3a71cc1be5ce833c471e3f25aa391f9cd56e1aa', 'to': '0xafa2a0cd8ed977c2515b266c3bcc6fe1096c573d', 'value': 174.32244321429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x097335ba80e5f58000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:52:55.000Z'}}, {'blockNum': '0x63a599', 'uniqueId': '0x47121adcf08a748332626e7c3b7cd2ccc7d0ce69e6f9ca329b989380fbbf07e3:log:99', 'hash': '0x47121adcf08a748332626e7c3b7cd2ccc7d0ce69e6f9ca329b989380fbbf07e3', 'from': '0xf3a71cc1be5ce833c471e3f25aa391f9cd56e1aa', 'to': '0x040cd1aeaf1c5b9283026e004001d4c43190eda3', 'value': 0.016064524295223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x391299881a36d8', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:52:55.000Z'}}, {'blockNum': '0x63a5a4', 'uniqueId': '0x0b3eb6390a1f6ddd67f7ed69d767058047ea99bb823e9ff4fbbbf8886d6c0fbf:log:23', 'hash': '0x0b3eb6390a1f6ddd67f7ed69d767058047ea99bb823e9ff4fbbbf8886d6c0fbf', 'from': '0x749a2f2d196afcafffb2ffe4404a9b71ab2b2a2b', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 470.62017726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x19832abdc3f1ab3800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:55:12.000Z'}}, {'blockNum': '0x63a5bf', 'uniqueId': '0xda7150612b5bc145990f10a98da14eb756634b4251a6543e6415f4af6a7b3ae1:log:8', 'hash': '0xda7150612b5bc145990f10a98da14eb756634b4251a6543e6415f4af6a7b3ae1', 'from': '0x7d452bc8f8ca389c02a2fe6c3a00d458e8eb2439', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3627e8f712373c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:00:34.000Z'}}, {'blockNum': '0x63a5c3', 'uniqueId': '0x1a1ff12651b4a352c4f8627cad30a788177c80e7e1bc56c1929f0180e3347fad:log:5', 'hash': '0x1a1ff12651b4a352c4f8627cad30a788177c80e7e1bc56c1929f0180e3347fad', 'from': '0x7de710922846b3c990c04edaf98a3224466e3395', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 357.16890898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x135cb6de5af6ba0800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:01:31.000Z'}}, {'blockNum': '0x63a5d3', 'uniqueId': '0x035e126f1e4d489f8b3976271843d0c1e69fe17ac013c55189d22be804bcba7e:log:61', 'hash': '0x035e126f1e4d489f8b3976271843d0c1e69fe17ac013c55189d22be804bcba7e', 'from': '0xbec38e1270d940b8222a9f2d63e0f28093469267', 'to': '0x672b7f5507427c3153a352e5494288f754b88a6a', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:04:42.000Z'}}, {'blockNum': '0x63a604', 'uniqueId': '0x1cbd7851bc884b468e834366a4e5463324d8343ad4b49ccf33fb6400723faa16:log:35', 'hash': '0x1cbd7851bc884b468e834366a4e5463324d8343ad4b49ccf33fb6400723faa16', 'from': '0x672b7f5507427c3153a352e5494288f754b88a6a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:19:33.000Z'}}, {'blockNum': '0x63a604', 'uniqueId': '0x4a26bb7c6e232f6c5e3fd009fb26b4c17f6816a18ced54a692fc2482c1f42494:log:101', 'hash': '0x4a26bb7c6e232f6c5e3fd009fb26b4c17f6816a18ced54a692fc2482c1f42494', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x55087abd678d0d5140a5f65cde589099bbccb19b', 'value': 1822.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x62c6b79819b7420000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:19:33.000Z'}}, {'blockNum': '0x63a632', 'uniqueId': '0x4a47240fe08919cb578bdd71525c548b8b1f5f32187393239b1d9cae95a7ab70:log:26', 'hash': '0x4a47240fe08919cb578bdd71525c548b8b1f5f32187393239b1d9cae95a7ab70', 'from': '0x55087abd678d0d5140a5f65cde589099bbccb19b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1822.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x62c6b79819b7420000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:29:27.000Z'}}, {'blockNum': '0x63a63a', 'uniqueId': '0xc6b9f1d54aef39924b7528424fbbbbf2f79fc6d68e90e1a6fb94b4c7c10e0b9c:log:20', 'hash': '0xc6b9f1d54aef39924b7528424fbbbbf2f79fc6d68e90e1a6fb94b4c7c10e0b9c', 'from': '0x8288b5fcc8376c9bd310e324efaf5a374dd9fc4d', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 237.93061168463157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0ce5f356b77ddec433', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:30:46.000Z'}}, {'blockNum': '0x63a671', 'uniqueId': '0x76f05e2442c91eb629b3bfb2b5cdb186844019d4f3e27f1bfd12c937d8e71cc9:log:25', 'hash': '0x76f05e2442c91eb629b3bfb2b5cdb186844019d4f3e27f1bfd12c937d8e71cc9', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0x7cedf8697d345ea079a681f42faf51a20661e08b', 'value': 185.58744503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0a0f8b0df8697bfc00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:43:01.000Z'}}, {'blockNum': '0x63a68d', 'uniqueId': '0x29b0f4cd0fb14da752c0ebd832628c483dc8a94b2455133d2922b252eeccae71:log:7', 'hash': '0x29b0f4cd0fb14da752c0ebd832628c483dc8a94b2455133d2922b252eeccae71', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'value': 8640, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01d460162f516f000000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:48:07.000Z'}}, {'blockNum': '0x63a69b', 'uniqueId': '0x3de8e168f35cdc5478938f4e47017939e2cd65ac49c8ad91216f3b5fe11cdcc3:log:14', 'hash': '0x3de8e168f35cdc5478938f4e47017939e2cd65ac49c8ad91216f3b5fe11cdcc3', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'value': 8546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cf47931959f8480000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:52:14.000Z'}}, {'blockNum': '0x63a6a9', 'uniqueId': '0x1be5dbf72974f96b67fd355e810a797eb23997bb87fabbf877d99d1fc8dc8037:log:2', 'hash': '0x1be5dbf72974f96b67fd355e810a797eb23997bb87fabbf877d99d1fc8dc8037', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x71fa4c5d4a5e932c0beb9668647426659c85fee4', 'value': 2193.797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x76ed0c9c43eda08000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:54:31.000Z'}}, {'blockNum': '0x63a6bd', 'uniqueId': '0x90402f859e4d7757215d077a995f4842cd65ffbb876666982328f77b4204b968:log:9', 'hash': '0x90402f859e4d7757215d077a995f4842cd65ffbb876666982328f77b4204b968', 'from': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cf47931959f8480000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:59:10.000Z'}}, {'blockNum': '0x63a6cb', 'uniqueId': '0xb03748105b07921505145e6eb18575450b45d24007dc39322f635c4ad7cb41c1:log:17', 'hash': '0xb03748105b07921505145e6eb18575450b45d24007dc39322f635c4ad7cb41c1', 'from': '0xe2c07d432d706e7951b86b1676343e0109006242', 'to': '0x805c93d4761dfa84b0829f157110226cdbad71e0', 'value': 30065.54319897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x065ddb3a956368594400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T08:01:58.000Z'}}, {'blockNum': '0x63a6e1', 'uniqueId': '0x64f20ee5f2edf732024f188ba64ee0010047601c1d6e7b7b0822a0f7d1231911:log:2', 'hash': '0x64f20ee5f2edf732024f188ba64ee0010047601c1d6e7b7b0822a0f7d1231911', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x72034369bb4f10baa8e3bb52bb30689c5bcabf53', 'value': 4123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xdf821e7f68e78c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T08:06:30.000Z'}}, {'blockNum': '0x63a6f8', 'uniqueId': '0x7428e2a7d2b72edda4cac310ef3cdf4bac0d2da28fbe4afc54d122059592b795:log:89', 'hash': '0x7428e2a7d2b72edda4cac310ef3cdf4bac0d2da28fbe4afc54d122059592b795', 'from': '0x37222a4fe6293abd6f5503d29949c13c957fc67e', 'to': '0xcdd9093ee0583b9a7e2c4fda1c17c9c2663d6b59', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T08:14:24.000Z'}}, {'blockNum': '0x63a6fa', 'uniqueId': '0xb3e811bd2630869d186edc69d30919ab005ad572784fc7bf0c3850acef4975e7:log:13', 'hash': '0xb3e811bd2630869d186edc69d30919ab005ad572784fc7bf0c3850acef4975e7', 'from': '0x805c93d4761dfa84b0829f157110226cdbad71e0', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 30065.54319897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x065ddb3a956368594400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T08:14:39.000Z'}}, {'blockNum': '0x63a6fd', 'uniqueId': '0x1fcbc0b35b07ce32b43deb4f58502e35c6b317611ea50bece9b71809a1da6eeb:log:14', 'hash': '0x1fcbc0b35b07ce32b43deb4f58502e35c6b317611ea50bece9b71809a1da6eeb', 'from': '0x74c8e367d41865ac76a8570857afc320f8f42ccf', 'to': '0xc069120ef8fef6f13a15512f4a126abfba845837', 'value': 357.90980673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1366ff10eefa5ce400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T08:14:56.000Z'}}, {'blockNum': '0x63a715', 'uniqueId': '0xc4329c34bb53b1d624cf08d28f3760d97f07a2250d5ccaa6abb8e91c6f78a1ed:log:12', 'hash': '0xc4329c34bb53b1d624cf08d28f3760d97f07a2250d5ccaa6abb8e91c6f78a1ed', 'from': '0xbc91e606275025c4262c51daa28507896808484d', 'to': '0x209ab91cf648c4d1a0b71d68ce71d11f3e4d85fb', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T08:21:30.000Z'}}, {'blockNum': '0x63a72f', 'uniqueId': '0x42c1e076b36ecb17a1f189ec4c6bd4c70368fcfb03f3cbdcb8c5ae1d666d6223:log:16', 'hash': '0x42c1e076b36ecb17a1f189ec4c6bd4c70368fcfb03f3cbdcb8c5ae1d666d6223', 'from': '0xcdd9093ee0583b9a7e2c4fda1c17c9c2663d6b59', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T08:29:12.000Z'}}, {'blockNum': '0x63a730', 'uniqueId': '0xa0f2f95c1347ae80341ae661dbdd4b0e40a8ff7f2dd7402d55558baeda662934:log:10', 'hash': '0xa0f2f95c1347ae80341ae661dbdd4b0e40a8ff7f2dd7402d55558baeda662934', 'from': '0x209ab91cf648c4d1a0b71d68ce71d11f3e4d85fb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T08:29:28.000Z'}}, {'blockNum': '0x63a732', 'uniqueId': '0xc55d9c6a34091900fb9ca5dbf8412c05cbfc4793b3a95dbd8e17dcb38459d056:log:11', 'hash': '0xc55d9c6a34091900fb9ca5dbf8412c05cbfc4793b3a95dbd8e17dcb38459d056', 'from': '0x72034369bb4f10baa8e3bb52bb30689c5bcabf53', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 4123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xdf821e7f68e78c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T08:29:39.000Z'}}, {'blockNum': '0x63a754', 'uniqueId': '0x0739f41c1faed915b6c23d5103d027d9cefcbac241df7febb31aa667791c8f03:log:30', 'hash': '0x0739f41c1faed915b6c23d5103d027d9cefcbac241df7febb31aa667791c8f03', 'from': '0xc069120ef8fef6f13a15512f4a126abfba845837', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 357.90980673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1366ff10eefa5ce400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T08:36:20.000Z'}}, {'blockNum': '0x63a78d', 'uniqueId': '0x0f20f2470beef1be3eac9b3ad9f74fd096c8b87fe27002d3fddd496f32dae9a4:log:58', 'hash': '0x0f20f2470beef1be3eac9b3ad9f74fd096c8b87fe27002d3fddd496f32dae9a4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'value': 44714.99579175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x097801393265396bbc00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T08:51:20.000Z'}}, {'blockNum': '0x63a7ae', 'uniqueId': '0xd4bae30a988371a7b8dc5a8829e7ffb93061fb1beb2925448807e5b61e799997:log:3', 'hash': '0xd4bae30a988371a7b8dc5a8829e7ffb93061fb1beb2925448807e5b61e799997', 'from': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 44714.99579175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x097801393265396bbc00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T09:00:48.000Z'}}, {'blockNum': '0x63a7f2', 'uniqueId': '0x8b62d70d4881eea0c3a07e12779b7a16aec340aef27b6439709d8d24471e0511:log:9', 'hash': '0x8b62d70d4881eea0c3a07e12779b7a16aec340aef27b6439709d8d24471e0511', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x0ae44fafe2548c5b81c7c81b2d089c3ce6c2d023', 'value': 106.7081618516632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05c8df8bd70b4641b1', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T09:16:34.000Z'}}, {'blockNum': '0x63a808', 'uniqueId': '0xe10159ad57e00c49480ead233f765286da7db01e29bbedfb359c677b290944d2:log:14', 'hash': '0xe10159ad57e00c49480ead233f765286da7db01e29bbedfb359c677b290944d2', 'from': '0xa60142f038f00b6d8bca018e673b5a44fa328a73', 'to': '0x287c52f179dd62226b4d9720f095e7916798275f', 'value': 1010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x36c090d0ca68880000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T09:22:42.000Z'}}, {'blockNum': '0x63a826', 'uniqueId': '0x33f88a57aa3beebfc0e4d42600693930d4942dd21ab64caff1d4604b9cbc0235:log:41', 'hash': '0x33f88a57aa3beebfc0e4d42600693930d4942dd21ab64caff1d4604b9cbc0235', 'from': '0x287c52f179dd62226b4d9720f095e7916798275f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x36c090d0ca68880000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T09:29:34.000Z'}}, {'blockNum': '0x63a835', 'uniqueId': '0x09a1c795620c5a62b013e801d4249fb0a19534ddc5344a0da271e2d8bd6b9c19:log:44', 'hash': '0x09a1c795620c5a62b013e801d4249fb0a19534ddc5344a0da271e2d8bd6b9c19', 'from': '0x7784ee628b48295153430ffb691cecd4f9aa9761', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 9028.309174763395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01e96cf5806a4c4894c7', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T09:34:34.000Z'}}, {'blockNum': '0x63a885', 'uniqueId': '0x9ec9dc71f941a603a16c41d1f8bb9f530e7da4433644a48ca9e0f1a829848fdf:log:2', 'hash': '0x9ec9dc71f941a603a16c41d1f8bb9f530e7da4433644a48ca9e0f1a829848fdf', 'from': '0xc3286c059acd670985a4be5c644e41a8eae80d05', 'to': '0x0df865347fd67d6115e4b24a2e6ee6d17e2a88af', 'value': 300.9959580059386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x105128750fbc5cf5ba', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T09:54:06.000Z'}}, {'blockNum': '0x63a888', 'uniqueId': '0x5aae84540fe91047206096b19a130843c1cb2409b402d1adedcfa24cc0592079:log:82', 'hash': '0x5aae84540fe91047206096b19a130843c1cb2409b402d1adedcfa24cc0592079', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 837.7084461336381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x2d698a416393f2bdac', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T09:55:03.000Z'}}, {'blockNum': '0x63a88b', 'uniqueId': '0x66d6a7608f7b1e59f3896901bc21061bb8b046edd6193df282061270d5bec331:log:61', 'hash': '0x66d6a7608f7b1e59f3896901bc21061bb8b046edd6193df282061270d5bec331', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0x7784ee628b48295153430ffb691cecd4f9aa9761', 'value': 837.7084461336381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x2d698a416393f2bdac', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T09:56:07.000Z'}}, {'blockNum': '0x63a89d', 'uniqueId': '0x29608decd321cb92bd127ba6217d057a19a215693bec0fb253dc3116ee8e2fe3:log:13', 'hash': '0x29608decd321cb92bd127ba6217d057a19a215693bec0fb253dc3116ee8e2fe3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x94f1a0226414f32cf1d4aa4a772d3bf3c08764c5', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T10:00:26.000Z'}}, {'blockNum': '0x63a8aa', 'uniqueId': '0x099981fcdc5e438c5103829f28e447ee00ff0ead79dab188b600da4fe99cfddb:log:19', 'hash': '0x099981fcdc5e438c5103829f28e447ee00ff0ead79dab188b600da4fe99cfddb', 'from': '0x226431d6cde565901122e01e1c1c5c8fe656f828', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 218.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0bd70c31d071110000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T10:04:12.000Z'}}, {'blockNum': '0x63a8bd', 'uniqueId': '0xa9c2926ebde97370b4b592256bf97b9d2703ed188c9a3488bbd00990a5ef498c:log:3', 'hash': '0xa9c2926ebde97370b4b592256bf97b9d2703ed188c9a3488bbd00990a5ef498c', 'from': '0x0df865347fd67d6115e4b24a2e6ee6d17e2a88af', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 300.995958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x105128750e5a656000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T10:07:57.000Z'}}, {'blockNum': '0x63a8d1', 'uniqueId': '0x0b4f6c9af87ccc929676e44b26999f63b73b54af15b59aa050ce8882716f05a2:log:1', 'hash': '0x0b4f6c9af87ccc929676e44b26999f63b73b54af15b59aa050ce8882716f05a2', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x39e4660902803636388b5e0846c2d5879f8f3203', 'value': 92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x04fcc1a89027f00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T10:13:53.000Z'}}, {'blockNum': '0x63a8d9', 'uniqueId': '0xa4369e863333f108145ab9d519f8f7b6e71670d8a3cdc5e073389ea85c2b8846:log:5', 'hash': '0xa4369e863333f108145ab9d519f8f7b6e71670d8a3cdc5e073389ea85c2b8846', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'value': 32348.40901288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06d99c5b2fff7ce5a000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T10:16:48.000Z'}}, {'blockNum': '0x63a91c', 'uniqueId': '0x4fb9ec9c2013d7784552109e3fdae42dba964226c1dc4b89e781cfb9bda06153:log:74', 'hash': '0x4fb9ec9c2013d7784552109e3fdae42dba964226c1dc4b89e781cfb9bda06153', 'from': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 32348.40901288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06d99c5b2fff7ce5a000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T10:31:06.000Z'}}, {'blockNum': '0x63a96c', 'uniqueId': '0xe0aa601c56aa96380c5283bae6a678ea4d5e6f43c5bf193452215bdb70101639:log:7', 'hash': '0xe0aa601c56aa96380c5283bae6a678ea4d5e6f43c5bf193452215bdb70101639', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x6063eae48c547b743359bd6d8009d2962c8448e0', 'value': 251.53637690011783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0da2c4ba18044bc6a7', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T10:48:47.000Z'}}, {'blockNum': '0x63a9da', 'uniqueId': '0x113151129f61c9847f900c9213d6db6f9bd968cbff01d27ae7f3a5c4016a40e9:log:27', 'hash': '0x113151129f61c9847f900c9213d6db6f9bd968cbff01d27ae7f3a5c4016a40e9', 'from': '0x0861fca546225fbf8806986d211c8398f7457734', 'to': '0xf61f21091fdbdfdfa51d6e38fb508b0445e74e50', 'value': 422.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x16e496fc8f07760000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T11:20:02.000Z'}}, {'blockNum': '0x63aa05', 'uniqueId': '0xc3c178301a6f0efd5c5d48bea65c75fe4c4ee473dbe86b37730c580e39d26d8e:log:14', 'hash': '0xc3c178301a6f0efd5c5d48bea65c75fe4c4ee473dbe86b37730c580e39d26d8e', 'from': '0x0861fca546225fbf8806986d211c8398f7457734', 'to': '0xf61f21091fdbdfdfa51d6e38fb508b0445e74e50', 'value': 413.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x166a771b2ee0060000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T11:27:26.000Z'}}, {'blockNum': '0x63aa1d', 'uniqueId': '0x6b32a22a067052463c2d6c6e1ffed10d60ccf9dad17fb6a4cae41cf34823b27a:log:10', 'hash': '0x6b32a22a067052463c2d6c6e1ffed10d60ccf9dad17fb6a4cae41cf34823b27a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3e20a5fe4eb128156c51e310f0391799beccf0c1', 'value': 1020.861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x37574ad6bf220c8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T11:32:41.000Z'}}, {'blockNum': '0x63aaa0', 'uniqueId': '0x52e1e67ce628bef15357df8300722cf7a2295b5cf628e14dbf3345333eb2019b:log:12', 'hash': '0x52e1e67ce628bef15357df8300722cf7a2295b5cf628e14dbf3345333eb2019b', 'from': '0x2531da4e9aa82c1a0b84771557232e4da09ca9dd', 'to': '0x6e1683c17d4db937ab7d4fa9ee9d7ccdb3592881', 'value': 950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x337fe5feaf2d180000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T12:01:21.000Z'}}, {'blockNum': '0x63aaf2', 'uniqueId': '0x5f9d130e008243f874fe77cbb1ba11f7f010b4d7b9633bc0898b9fbbdc1fe93b:log:55', 'hash': '0x5f9d130e008243f874fe77cbb1ba11f7f010b4d7b9633bc0898b9fbbdc1fe93b', 'from': '0x6e1683c17d4db937ab7d4fa9ee9d7ccdb3592881', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x337fe5feaf2d180000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T12:19:02.000Z'}}, {'blockNum': '0x63ab12', 'uniqueId': '0x462a8c0d2a3d52c777a2b025d1cbb2c9e2e3e74382b15b81d1e52411d9d56e98:log:16', 'hash': '0x462a8c0d2a3d52c777a2b025d1cbb2c9e2e3e74382b15b81d1e52411d9d56e98', 'from': '0x6b59210ade46b62b25e82e95ab390a7ccadd4c3a', 'to': '0x7da155d3f92faa3425b0a6c9a8751632a56674e1', 'value': 988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x358f411d5a05f00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T12:26:02.000Z'}}, {'blockNum': '0x63ab3f', 'uniqueId': '0x96cda664b8930ca0e5dd13382557d1409419a74c7fd01ee97c6bed52ac2a1bbf:log:10', 'hash': '0x96cda664b8930ca0e5dd13382557d1409419a74c7fd01ee97c6bed52ac2a1bbf', 'from': '0x7da155d3f92faa3425b0a6c9a8751632a56674e1', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x358f411d5a05f00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T12:36:38.000Z'}}, {'blockNum': '0x63ab7e', 'uniqueId': '0x0b4d3b1a93d7c183a3a87eda754bf7612860949337cd1796e6be5cbafd5ad7e0:log:23', 'hash': '0x0b4d3b1a93d7c183a3a87eda754bf7612860949337cd1796e6be5cbafd5ad7e0', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x4054b1cc3a8780d23ae633131a147a6cc1db553d', 'value': 3158.47138584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xab38987f1f74f16000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T12:51:03.000Z'}}, {'blockNum': '0x63ab81', 'uniqueId': '0x2d636e2d03a5add199ca8f1c905e886eb945f0a5918c0877b8fdd200d04fa5ce:log:22', 'hash': '0x2d636e2d03a5add199ca8f1c905e886eb945f0a5918c0877b8fdd200d04fa5ce', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x26048265b294e93477303591f88ca4826ff94455', 'value': 386.1314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x14eea64e7cf8448000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T12:51:57.000Z'}}, {'blockNum': '0x63abc7', 'uniqueId': '0x0da5a2611ddf43fb2b2b2af4f85d9cd5351809c1cde7078ff74869fd875f88ec:log:24', 'hash': '0x0da5a2611ddf43fb2b2b2af4f85d9cd5351809c1cde7078ff74869fd875f88ec', 'from': '0x26048265b294e93477303591f88ca4826ff94455', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 386.1314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x14eea64e7cf8448000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T13:08:54.000Z'}}, {'blockNum': '0x63abc7', 'uniqueId': '0xc77783849189eafed8746a6acaa727af2bd76194913a2dae79ae1aca4e3a2c8d:log:27', 'hash': '0xc77783849189eafed8746a6acaa727af2bd76194913a2dae79ae1aca4e3a2c8d', 'from': '0x4054b1cc3a8780d23ae633131a147a6cc1db553d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3158.47138584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xab38987f1f74f16000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T13:08:54.000Z'}}, {'blockNum': '0x63ac25', 'uniqueId': '0xcd3baede553f92b5d6b13ef152b1696a2a496ce1e8b027b6f78a2e8fd36d4609:log:64', 'hash': '0xcd3baede553f92b5d6b13ef152b1696a2a496ce1e8b027b6f78a2e8fd36d4609', 'from': '0xf68194a1486af6fc2a2f7627b5c0d57dca14c727', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06c6b935b8bbd40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T13:31:17.000Z'}}, {'blockNum': '0x63ac94', 'uniqueId': '0x8420ca36548af0cb369515f2c6ec5f22066d52820aee5661a580daf097add2d3:log:14', 'hash': '0x8420ca36548af0cb369515f2c6ec5f22066d52820aee5661a580daf097add2d3', 'from': '0x45d80dcf9dc5e403d56bae7511d44319dad76bbe', 'to': '0xef58491224958d978facf55d2120c55a24516b98', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T13:54:12.000Z'}}, {'blockNum': '0x63aca4', 'uniqueId': '0x964a29a71c6d8ccbca697c2d9fe83576cc1ddef2bd39dc83a1f6cf2167a8d728:log:148', 'hash': '0x964a29a71c6d8ccbca697c2d9fe83576cc1ddef2bd39dc83a1f6cf2167a8d728', 'from': '0xe415242c6624315175af7b6008c4c3e063d1cd61', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T13:58:23.000Z'}}, {'blockNum': '0x63acf8', 'uniqueId': '0xa8c1a7fe2bb224780df8cefc799a6082835adf63f83b20afd4d1f4104494491f:log:96', 'hash': '0xa8c1a7fe2bb224780df8cefc799a6082835adf63f83b20afd4d1f4104494491f', 'from': '0x026122654b5c91c8152fce1dcff9a8c086db6fa9', 'to': '0x12e1e35edabdae747f0ddfce1f3aaf067e2d2f53', 'value': 165.03231071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x08f2488c364b719c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T14:18:16.000Z'}}, {'blockNum': '0x63ad2c', 'uniqueId': '0x73a3e005a50c6d5d8d35ff6a39153f26254313220bfa82ec309ca57256b16230:log:7', 'hash': '0x73a3e005a50c6d5d8d35ff6a39153f26254313220bfa82ec309ca57256b16230', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0xaed045082ba0caebc8c789ec6d8fceef891e7ed4', 'value': 45.08684172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0271b4a3a9fcdcb000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T14:29:49.000Z'}}, {'blockNum': '0x63ad32', 'uniqueId': '0x3a50ec125481ecc5a60d1d4d290d78a712f8470e5a69081dabbfb36e039fbabe:log:23', 'hash': '0x3a50ec125481ecc5a60d1d4d290d78a712f8470e5a69081dabbfb36e039fbabe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x008024771614f4290696b63ba3dd3a1ceb34d4d9', 'value': 3443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xbaa539323445ec0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T14:31:30.000Z'}}, {'blockNum': '0x63ad4d', 'uniqueId': '0xb1a992e583c71c5b5fd792324eaea311770a6ff606689d8b9f5d674a0bcc1f29:log:10', 'hash': '0xb1a992e583c71c5b5fd792324eaea311770a6ff606689d8b9f5d674a0bcc1f29', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'value': 8568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01d078e2ccca5ae00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T14:37:32.000Z'}}, {'blockNum': '0x63ad4e', 'uniqueId': '0xb48e433a20b5a516ccad5f5beb0c4e9b2d5beecc8072a8543175c198232e35b7:log:7', 'hash': '0xb48e433a20b5a516ccad5f5beb0c4e9b2d5beecc8072a8543175c198232e35b7', 'from': '0x12e1e35edabdae747f0ddfce1f3aaf067e2d2f53', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 165.03231071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x08f2488c364b719c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T14:37:36.000Z'}}, {'blockNum': '0x63ad5f', 'uniqueId': '0x3fe0a0ed6b99b31652c5d053ee20d9af5af9d7ee3f4f0180a3fde92025e44df9:log:6', 'hash': '0x3fe0a0ed6b99b31652c5d053ee20d9af5af9d7ee3f4f0180a3fde92025e44df9', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'value': 8546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cf47931959f8480000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T14:41:51.000Z'}}, {'blockNum': '0x63ad7a', 'uniqueId': '0x4e1767a12894ab0eb3b38ba9f2e014e5367e3c48e0ff586ed88605a702b20299:log:98', 'hash': '0x4e1767a12894ab0eb3b38ba9f2e014e5367e3c48e0ff586ed88605a702b20299', 'from': '0x8ef8f91d8c3fd83345ca579ae8b5688d25522cca', 'to': '0x5ad8caf5685f4dc940f11292485f0a396333258d', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T14:46:33.000Z'}}, {'blockNum': '0x63ad80', 'uniqueId': '0xba3e14a33577567056dd191aec57a6f610e7741e531cb2eba6fa025cc91afaf1:log:11', 'hash': '0xba3e14a33577567056dd191aec57a6f610e7741e531cb2eba6fa025cc91afaf1', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x73c5c4e3ba3fca06367f4d44e6d5a6ed1f9ddb5f', 'value': 1759.3303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5f5f9cd284c16bc000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T14:47:44.000Z'}}, {'blockNum': '0x63ad8b', 'uniqueId': '0xab0979ad78eda19636d6f4d4abf0aa84b6d26f7636b5b25a4afa937b98c8d966:log:10', 'hash': '0xab0979ad78eda19636d6f4d4abf0aa84b6d26f7636b5b25a4afa937b98c8d966', 'from': '0x5ad8caf5685f4dc940f11292485f0a396333258d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T14:51:16.000Z'}}, {'blockNum': '0x63adaf', 'uniqueId': '0x39e1e82533b26c3de9feffcc49b1099930836c52dd784fa50b57fbb4b92eae40:log:7', 'hash': '0x39e1e82533b26c3de9feffcc49b1099930836c52dd784fa50b57fbb4b92eae40', 'from': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cf47931959f8480000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T14:59:26.000Z'}}, {'blockNum': '0x63adaf', 'uniqueId': '0x8c025129017fdcabf412f73989a150b7f670df3da4d91020dfaef5f00a69ba80:log:10', 'hash': '0x8c025129017fdcabf412f73989a150b7f670df3da4d91020dfaef5f00a69ba80', 'from': '0x73c5c4e3ba3fca06367f4d44e6d5a6ed1f9ddb5f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1759.3303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5f5f9cd284c16bc000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T14:59:26.000Z'}}, {'blockNum': '0x63adbd', 'uniqueId': '0x193d076c9b00647e7eb9b1a342b083d91e61263d630c714109a91f126fcb8759:log:67', 'hash': '0x193d076c9b00647e7eb9b1a342b083d91e61263d630c714109a91f126fcb8759', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xbebc8480587f8527d818598b294cac6d77b1dcf3', 'value': 4840.6758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x010669df2119b5d58000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:03:17.000Z'}}, {'blockNum': '0x63adc7', 'uniqueId': '0x84bf74e0fb71277d476a9496d5b542e2d3f350f1a9b2a6ad258917850a530978:log:1', 'hash': '0x84bf74e0fb71277d476a9496d5b542e2d3f350f1a9b2a6ad258917850a530978', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x38e511101797dc8623e0d82ca948680202124447', 'value': 482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1a2117fe412a480000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:06:04.000Z'}}, {'blockNum': '0x63ae04', 'uniqueId': '0x2fca5caae4fb54c203dbfdaebd2ce770fbd0662704582348579bf1e04bd0fa74:log:42', 'hash': '0x2fca5caae4fb54c203dbfdaebd2ce770fbd0662704582348579bf1e04bd0fa74', 'from': '0xbebc8480587f8527d818598b294cac6d77b1dcf3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4840.6758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x010669df2119b5d58000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:20:05.000Z'}}, {'blockNum': '0x63ae41', 'uniqueId': '0xb84edc395d8b4b5715b170cc3e6af10c712f2e65f7cca69712f45ef1a4e97132:log:3', 'hash': '0xb84edc395d8b4b5715b170cc3e6af10c712f2e65f7cca69712f45ef1a4e97132', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xad3e2314082cdb53d0cdb35d55f552ec1a1c12c3', 'value': 3499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xbdae612980e3cc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:34:04.000Z'}}, {'blockNum': '0x63ae48', 'uniqueId': '0xd7eb49e3b0c0e02fce3dbceb411e63ef8efc3db53ce3364913fce8db806b5263:log:156', 'hash': '0xd7eb49e3b0c0e02fce3dbceb411e63ef8efc3db53ce3364913fce8db806b5263', 'from': '0x3b4868d23121761597cc962e3e50c96cd269ba11', 'to': '0xa860f8224100dd4274a4b6361684c02a56c7bdba', 'value': 1.63383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x16ac87ba85606000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:34:35.000Z'}}, {'blockNum': '0x63ae6a', 'uniqueId': '0xf6015f0865c67206fa6a853615825a4c9ce9bd4c91507f92b3a69b2ad8c916d4:log:21', 'hash': '0xf6015f0865c67206fa6a853615825a4c9ce9bd4c91507f92b3a69b2ad8c916d4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xce565d6b238abf43d24be6008a922bcca4258942', 'value': 49999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0a96738339f1d3dc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:42:08.000Z'}}, {'blockNum': '0x63ae6b', 'uniqueId': '0x8e70d8c135fe2d5029432981ad640c371bc74343fdbdf82a29fdd52234415619:log:0', 'hash': '0x8e70d8c135fe2d5029432981ad640c371bc74343fdbdf82a29fdd52234415619', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x1b9b1273757a0b232f8c572ad0ad412341cd37fe', 'value': 6130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x014c4ed6d9de38880000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:42:45.000Z'}}, {'blockNum': '0x63ae7d', 'uniqueId': '0x48b5dd6a194549eaeac360a18df23ceffb0856764207cd589ee06da742ea0480:log:12', 'hash': '0x48b5dd6a194549eaeac360a18df23ceffb0856764207cd589ee06da742ea0480', 'from': '0x1b9b1273757a0b232f8c572ad0ad412341cd37fe', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 6130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x014c4ed6d9de38880000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:49:09.000Z'}}, {'blockNum': '0x63ae97', 'uniqueId': '0xdab1f8dcd54d56d31e8092ad7fc401a0a2f6ddb0726f46dd93f7938f2ade7114:log:4', 'hash': '0xdab1f8dcd54d56d31e8092ad7fc401a0a2f6ddb0726f46dd93f7938f2ade7114', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0a28cf41d69a05dc878fb86d0c78a1f2fcafd349', 'value': 68405.1674448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0e7c406614ef83308000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:58:22.000Z'}}, {'blockNum': '0x63ae9b', 'uniqueId': '0x2a6fe0975d90a5fb7b8d5cdd572ad8d9c9ae40b484e12051e44c6bccdf14a4fa:log:16', 'hash': '0x2a6fe0975d90a5fb7b8d5cdd572ad8d9c9ae40b484e12051e44c6bccdf14a4fa', 'from': '0xad3e2314082cdb53d0cdb35d55f552ec1a1c12c3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xbdae612980e3cc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:58:53.000Z'}}, {'blockNum': '0x63ae9b', 'uniqueId': '0x28733a4dc83e0d1fe10dbc214ecd44c3943c2d225089a5e9421d73bfb7a89092:log:18', 'hash': '0x28733a4dc83e0d1fe10dbc214ecd44c3943c2d225089a5e9421d73bfb7a89092', 'from': '0xce565d6b238abf43d24be6008a922bcca4258942', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0a96738339f1d3dc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:58:53.000Z'}}, {'blockNum': '0x63ae9d', 'uniqueId': '0x4776af313d209c80b98d7c184ace8e115008b459ec9fc5b215c8639906100ac5:log:14', 'hash': '0x4776af313d209c80b98d7c184ace8e115008b459ec9fc5b215c8639906100ac5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3c4396a2bd1c9789fcbe6c36dbac64627b5f519e', 'value': 93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x050aa25f43cf540000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:59:41.000Z'}}, {'blockNum': '0x63aeae', 'uniqueId': '0xc5d64ab9fcabea8ceabf7e68e1592f7b12a6d940d573c59310c0d0dcfd4d7c95:log:42', 'hash': '0xc5d64ab9fcabea8ceabf7e68e1592f7b12a6d940d573c59310c0d0dcfd4d7c95', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x1c391cf7f5b214951cbb87f6c4a31bfc40c61dd9', 'value': 3463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xbbbac7783d59bc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T16:04:17.000Z'}}, {'blockNum': '0x63aed3', 'uniqueId': '0x05f0a9584c7982bb420171960af3331de17722a6e053fa6e4d1c84d8e4fc35b8:log:3', 'hash': '0x05f0a9584c7982bb420171960af3331de17722a6e053fa6e4d1c84d8e4fc35b8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3c4396a2bd1c9789fcbe6c36dbac64627b5f519e', 'value': 24384.136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0529dddd834f7e740000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T16:12:19.000Z'}}, {'blockNum': '0x63aeef', 'uniqueId': '0x4d958df7866f9b150655eee7039a93bf257ac2f09a54fbdb93555ad1f25fab03:log:42', 'hash': '0x4d958df7866f9b150655eee7039a93bf257ac2f09a54fbdb93555ad1f25fab03', 'from': '0x0a28cf41d69a05dc878fb86d0c78a1f2fcafd349', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 68405.1674448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0e7c406614ef83308000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T16:19:25.000Z'}}, {'blockNum': '0x63af55', 'uniqueId': '0x939dc1878dbe3e3e3d79bcba4b07bc6099af5a91ca566dda7e3c23462e4e6955:log:17', 'hash': '0x939dc1878dbe3e3e3d79bcba4b07bc6099af5a91ca566dda7e3c23462e4e6955', 'from': '0xd4a73194d346674a76f1a14d50ecb63dc9682f4f', 'to': '0x11b816fcb5eef018974be86ec270c2ea04ebef99', 'value': 5767.45558579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0138a78659fc97666c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T16:40:32.000Z'}}, {'blockNum': '0x63af82', 'uniqueId': '0xd5f64d1941d8ad3d79ae943c5d4da556303905a3efa10b1e34844ca91cdb987f:log:5', 'hash': '0xd5f64d1941d8ad3d79ae943c5d4da556303905a3efa10b1e34844ca91cdb987f', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0xb5506a5fc5b949cb5de0e232729c7641ea238131', 'value': 229.4234595834083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0c6fe3dcf41a3d5ae9', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T16:51:47.000Z'}}, {'blockNum': '0x63af89', 'uniqueId': '0x21e910df582cd8a46aaf8ec987cb3c86348a15cd7181239345bcfa82dfadb256:log:73', 'hash': '0x21e910df582cd8a46aaf8ec987cb3c86348a15cd7181239345bcfa82dfadb256', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x00443ebe3412c0d8cb2dd65949671389b482da79', 'value': 28.276349988751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x018869c680101fc1c0', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T16:53:25.000Z'}}, {'blockNum': '0x63af9f', 'uniqueId': '0x1a8f8f7465d67d80d7503e3350c0b625cbff5b07ef015901b283d9ca6b320ad8:log:23', 'hash': '0x1a8f8f7465d67d80d7503e3350c0b625cbff5b07ef015901b283d9ca6b320ad8', 'from': '0x00443ebe3412c0d8cb2dd65949671389b482da79', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 28.27634998875101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x018869c680101fe899', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T16:58:06.000Z'}}, {'blockNum': '0x63afa3', 'uniqueId': '0x6055a5529b6a4053c199821a6697409608e2a6cded45297b968c8b45f0f3b3ba:log:28', 'hash': '0x6055a5529b6a4053c199821a6697409608e2a6cded45297b968c8b45f0f3b3ba', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0xb5506a5fc5b949cb5de0e232729c7641ea238131', 'value': 445.4428465690676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1825c2e4e5b01a5dcb', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T16:58:45.000Z'}}, {'blockNum': '0x63afc9', 'uniqueId': '0x1fdda5420bbd1b6ceb67f3b6039ba8b771a4da446d719ad44354c4749cfcc26b:log:5', 'hash': '0x1fdda5420bbd1b6ceb67f3b6039ba8b771a4da446d719ad44354c4749cfcc26b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc519a0788fa2150f69f0abeb5c33bc3dfa5901c8', 'value': 815.177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x2c30da7a81d49a8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T17:08:15.000Z'}}, {'blockNum': '0x63afdd', 'uniqueId': '0x88d39a1fb28cb26c2979e6cb900bc0ff70b04ef0eaf26ab0c3aba96944596b98:log:4', 'hash': '0x88d39a1fb28cb26c2979e6cb900bc0ff70b04ef0eaf26ab0c3aba96944596b98', 'from': '0xf284d7f2710f7401edcc09013321a0d295bf0ca4', 'to': '0xc36124eec1f2fa7057abf5c66db594d35e0ff9c7', 'value': 544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1d7d843dc3b4800000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T17:13:54.000Z'}}, {'blockNum': '0x63b004', 'uniqueId': '0x494ebc6e828c945ae8fe730967ddbae289f474346fab26951ff16cc6f1c2a8d4:log:20', 'hash': '0x494ebc6e828c945ae8fe730967ddbae289f474346fab26951ff16cc6f1c2a8d4', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0x401e636c0dd0bf2a308e7f1a1b1e6329ed1c6129', 'value': 246.97259094100232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d636ee6f1a84ca382', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T17:22:52.000Z'}}, {'blockNum': '0x63b004', 'uniqueId': '0xabd4e97189197be9f20bd9cea6c45f86cdf2c3b1cde0d2c37f2a2b49a4dd640e:log:57', 'hash': '0xabd4e97189197be9f20bd9cea6c45f86cdf2c3b1cde0d2c37f2a2b49a4dd640e', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0xe83949f06e097e0277f6a5e6d031334c0a1853fb', 'value': 591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x2009c5c8bf6fdc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T17:22:52.000Z'}}, {'blockNum': '0x63b020', 'uniqueId': '0xa33d29c5668e7324b5b1286fbe5d6e0076855ee1cefc6e9bac0a5186383d7a61:log:13', 'hash': '0xa33d29c5668e7324b5b1286fbe5d6e0076855ee1cefc6e9bac0a5186383d7a61', 'from': '0xc36124eec1f2fa7057abf5c66db594d35e0ff9c7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1d7d843dc3b4800000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T17:29:20.000Z'}}, {'blockNum': '0x63b044', 'uniqueId': '0x02854495600e8c6e0125164ec18ea9653ffe2a01b95cb1bb844e8b29ccbc3a5d:log:25', 'hash': '0x02854495600e8c6e0125164ec18ea9653ffe2a01b95cb1bb844e8b29ccbc3a5d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x94453ca80307154ffeb30defce19f90db603965c', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T17:37:38.000Z'}}, {'blockNum': '0x63b04c', 'uniqueId': '0xd0d38a603deba4ebdc78ffc374a5e5d9a5770546b94d576246b40876adad7a8e:log:19', 'hash': '0xd0d38a603deba4ebdc78ffc374a5e5d9a5770546b94d576246b40876adad7a8e', 'from': '0x11b816fcb5eef018974be86ec270c2ea04ebef99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5767.45558579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0138a78659fc97666c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T17:39:30.000Z'}}, {'blockNum': '0x63b04c', 'uniqueId': '0x8e1850e650a683f9589cf11cb5d6d3dde8e5e57c9a5cfc3303a6aeeb77aaaae8:log:24', 'hash': '0x8e1850e650a683f9589cf11cb5d6d3dde8e5e57c9a5cfc3303a6aeeb77aaaae8', 'from': '0xe83949f06e097e0277f6a5e6d031334c0a1853fb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x2009c5c8bf6fdc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T17:39:30.000Z'}}, {'blockNum': '0x63b098', 'uniqueId': '0x9e58cd969138e34065f3bcff590df87bad89466fae3fca03c3387584b0c5c387:log:6', 'hash': '0x9e58cd969138e34065f3bcff590df87bad89466fae3fca03c3387584b0c5c387', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1ab54202f4f3b24e10187dd853f58b82077aa633', 'value': 231.28473395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0c89b87020e47a6c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T17:56:27.000Z'}}, {'blockNum': '0x63b0d7', 'uniqueId': '0xbfb221565329b297cfc3d55a03b06fdaaddffdfff7155401c14230732301ef03:log:0', 'hash': '0xbfb221565329b297cfc3d55a03b06fdaaddffdfff7155401c14230732301ef03', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 26009.66823748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0581fca820dc13c49000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:10:38.000Z'}}, {'blockNum': '0x63b0f4', 'uniqueId': '0x78f2092ed45f535f94a430faab601f157c4ee47dbaabebd4f86e41cb6c43bec0:log:0', 'hash': '0x78f2092ed45f535f94a430faab601f157c4ee47dbaabebd4f86e41cb6c43bec0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x58bbb78603ba67730078531b249a0a379dfd5d48', 'value': 3723.338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xc9d7b1d7e8e9610000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:17:00.000Z'}}, {'blockNum': '0x63b0fa', 'uniqueId': '0x0dda8f976278ca9cc3f1d5af43bc80708ac358e5a7a98617e6f2b11cc8e413ff:log:30', 'hash': '0x0dda8f976278ca9cc3f1d5af43bc80708ac358e5a7a98617e6f2b11cc8e413ff', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x89407f3b57636f27c16ddf3197a4202e628d6cd4', 'value': 32266.912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06d5315ba292c5100000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:17:49.000Z'}}, {'blockNum': '0x63b102', 'uniqueId': '0xc61fd937eab699b0e23a4dbcfb6455bd899497388c2785754cf63f8df958e3e6:log:24', 'hash': '0xc61fd937eab699b0e23a4dbcfb6455bd899497388c2785754cf63f8df958e3e6', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26009.66823748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0581fca820dc13c49000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:19:45.000Z'}}, {'blockNum': '0x63b10a', 'uniqueId': '0xc18470152c2ce9c615de2f95a4f82a94c5299f41fbab0d471e31e99489ccdc66:log:0', 'hash': '0xc18470152c2ce9c615de2f95a4f82a94c5299f41fbab0d471e31e99489ccdc66', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf3a71cc1be5ce833c471e3f25aa391f9cd56e1aa', 'value': 41.38724693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x023e5d09cdc606b400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:21:23.000Z'}}, {'blockNum': '0x63b111', 'uniqueId': '0x14f770618f9172541426e5226dba739e8b097deb8a69bed472bd50e24255b9ea:log:0', 'hash': '0x14f770618f9172541426e5226dba739e8b097deb8a69bed472bd50e24255b9ea', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x89407f3b57636f27c16ddf3197a4202e628d6cd4', 'value': 81720.27792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x114e10ad33a6b5da0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:22:23.000Z'}}, {'blockNum': '0x63b129', 'uniqueId': '0x8d3597c17eb25cc5654228e0f036ca6d7b98d834bced1daa7df6e039e37c2e51:log:9', 'hash': '0x8d3597c17eb25cc5654228e0f036ca6d7b98d834bced1daa7df6e039e37c2e51', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc8a8eb695f87332a69ff7d42612a9bee85919ccb', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:26:44.000Z'}}, {'blockNum': '0x63b12f', 'uniqueId': '0x13ef3741987261469189c04472741e4767fabc3f4833210fd3173f3a26ef5398:log:37', 'hash': '0x13ef3741987261469189c04472741e4767fabc3f4833210fd3173f3a26ef5398', 'from': '0x89407f3b57636f27c16ddf3197a4202e628d6cd4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 113987.18992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x18234208d6397aea0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:29:14.000Z'}}, {'blockNum': '0x63b132', 'uniqueId': '0x5d05bd9e37fbddaec93daa62c441083887df90c5246f2d61ecf35fba89fbc31f:log:5', 'hash': '0x5d05bd9e37fbddaec93daa62c441083887df90c5246f2d61ecf35fba89fbc31f', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x175818d253a1c00dedcadcc59b65fd53363b6603', 'value': 28345.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0600a35b5b9d47650000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:30:18.000Z'}}, {'blockNum': '0x63b136', 'uniqueId': '0x14814f9ded14c66450736fbd7a3b58a8dfdf10a1f39e572fac3fb52b87b10fd3:log:6', 'hash': '0x14814f9ded14c66450736fbd7a3b58a8dfdf10a1f39e572fac3fb52b87b10fd3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x35cdc3351be5c7b763e44c27451aa0ad36bb6a9d', 'value': 5192.795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01198081d3e4988f8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:31:22.000Z'}}, {'blockNum': '0x63b13c', 'uniqueId': '0x04ad92afbe9b4a731f6e2813bb33b7a4441694b87664762a05381955f25711b5:log:33', 'hash': '0x04ad92afbe9b4a731f6e2813bb33b7a4441694b87664762a05381955f25711b5', 'from': '0xe7988679da285df185e076fb0b1e435d86734dd8', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:33:01.000Z'}}, {'blockNum': '0x63b15c', 'uniqueId': '0x6c7b55bbde07135bf98b6f5d7465993c42fc636114c8bb2761fd22c373f14236:log:6', 'hash': '0x6c7b55bbde07135bf98b6f5d7465993c42fc636114c8bb2761fd22c373f14236', 'from': '0x69d8ad34e5c07be4cf9761c6126ab59a5d2b5374', 'to': '0x1be3852dd9ccc1b8267865a46b155bc6b72d5a15', 'value': 10013.728450176437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x021ed8660a6da560d05a', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:38:53.000Z'}}, {'blockNum': '0x63b160', 'uniqueId': '0x6d44b12f5a752edc5264b34d0ca88be102a8f110bfad51891b4177a773da6033:log:0', 'hash': '0x6d44b12f5a752edc5264b34d0ca88be102a8f110bfad51891b4177a773da6033', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 25289.30631446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x055aefa0788397619800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:39:39.000Z'}}, {'blockNum': '0x63b177', 'uniqueId': '0x6cd36abd6f01bbe4555ba8a9d37fdf35418e74dbded29c36d4f6af653c0479ad:log:30', 'hash': '0x6cd36abd6f01bbe4555ba8a9d37fdf35418e74dbded29c36d4f6af653c0479ad', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0ce6e9db059ef80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:45:28.000Z'}}, {'blockNum': '0x63b177', 'uniqueId': '0x6cd36abd6f01bbe4555ba8a9d37fdf35418e74dbded29c36d4f6af653c0479ad:log:32', 'hash': '0x6cd36abd6f01bbe4555ba8a9d37fdf35418e74dbded29c36d4f6af653c0479ad', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0ce6e9db059ef80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:45:28.000Z'}}, {'blockNum': '0x63b177', 'uniqueId': '0x6cd36abd6f01bbe4555ba8a9d37fdf35418e74dbded29c36d4f6af653c0479ad:log:33', 'hash': '0x6cd36abd6f01bbe4555ba8a9d37fdf35418e74dbded29c36d4f6af653c0479ad', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0ce6e9db059ef80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:45:28.000Z'}}, {'blockNum': '0x63b187', 'uniqueId': '0xd756f7be62c1fbde884fde7fbf06533467d0b4f88f862aee3c1eaa85209e19c6:log:23', 'hash': '0xd756f7be62c1fbde884fde7fbf06533467d0b4f88f862aee3c1eaa85209e19c6', 'from': '0x175818d253a1c00dedcadcc59b65fd53363b6603', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28345.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0600a35b5b9d47650000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:49:07.000Z'}}, {'blockNum': '0x63b188', 'uniqueId': '0x44114e53c3022141dbf515e1354916fc613233f499e5024286078afb91ce223b:log:5', 'hash': '0x44114e53c3022141dbf515e1354916fc613233f499e5024286078afb91ce223b', 'from': '0x1be3852dd9ccc1b8267865a46b155bc6b72d5a15', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10013.728450176437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x021ed8660a6da560d05a', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:49:14.000Z'}}, {'blockNum': '0x63b18e', 'uniqueId': '0xdd6a60ee8bfda026a8418cf14a826f44fb5ceaa2d75342c30d6887743fa402f4:log:121', 'hash': '0xdd6a60ee8bfda026a8418cf14a826f44fb5ceaa2d75342c30d6887743fa402f4', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x675fd75b1232546931ff24eb643e5110ed416956', 'value': 333.9038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1219d8990079138000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:50:50.000Z'}}, {'blockNum': '0x63b191', 'uniqueId': '0xce9411fc8e2edcc615880471e7aa62fa9c2ed7473fed2d0cfdda5810f554ee21:log:11', 'hash': '0xce9411fc8e2edcc615880471e7aa62fa9c2ed7473fed2d0cfdda5810f554ee21', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x049b6339a45ccc019aeae34b93ef1e80719129ff', 'value': 97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0542253a126ce40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:52:16.000Z'}}, {'blockNum': '0x63b196', 'uniqueId': '0x66e22c147f0029b3ce68ff758f34421a8f33d9c615a60de52b90297dba1f4739:log:117', 'hash': '0x66e22c147f0029b3ce68ff758f34421a8f33d9c615a60de52b90297dba1f4739', 'from': '0x258231c4de1fbf0571a48dca49aa13833c47a046', 'to': '0x16a9d1c974be039d96eb3d35e3300308d341e86b', 'value': 90, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x04e1003b28d9280000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:53:50.000Z'}}, {'blockNum': '0x63b19c', 'uniqueId': '0x7486a9df0578a502fc76aa8bd70002ec3682702f31acba9e0fdba77b54f6bd16:log:29', 'hash': '0x7486a9df0578a502fc76aa8bd70002ec3682702f31acba9e0fdba77b54f6bd16', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0xa89be3419b12bd5eb3ff2115baf856770c687c7d', 'value': 25.48092679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01619e6fe969af3c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:55:34.000Z'}}, {'blockNum': '0x63b1a8', 'uniqueId': '0xc05e7eca908d532cac8cd4740a013105cf42bf9bdb84c299bc6b1f2a55010e20:log:30', 'hash': '0xc05e7eca908d532cac8cd4740a013105cf42bf9bdb84c299bc6b1f2a55010e20', 'from': '0x049b6339a45ccc019aeae34b93ef1e80719129ff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0542253a126ce40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:58:54.000Z'}}, {'blockNum': '0x63b1a9', 'uniqueId': '0x5528b2b1f3b8bb7a20500d1a8a4d1e559af8c5875d368ac77686f290735bcfbd:log:16', 'hash': '0x5528b2b1f3b8bb7a20500d1a8a4d1e559af8c5875d368ac77686f290735bcfbd', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25289.30631446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x055aefa0788397619800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:59:10.000Z'}}, {'blockNum': '0x63b1ab', 'uniqueId': '0x58a0ab58bb99ccccf5a50ef124357e63ef3318fd557fdda7b89a81713e30252b:log:31', 'hash': '0x58a0ab58bb99ccccf5a50ef124357e63ef3318fd557fdda7b89a81713e30252b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'value': 8558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cfee1ba9c5d0f80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:59:59.000Z'}}, {'blockNum': '0x63b1b2', 'uniqueId': '0x20ceeee90dba8d4e84d0669ead1f400a592c90c27e9c271a5b32ed223bc155c4:log:93', 'hash': '0x20ceeee90dba8d4e84d0669ead1f400a592c90c27e9c271a5b32ed223bc155c4', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'value': 9278.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01f6ff69d47fd9bb0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:01:35.000Z'}}, {'blockNum': '0x63b1b3', 'uniqueId': '0x3eb7feffe0746e607613f72ce8b503a1e7f82921c135d8387805f73222890cf2:log:0', 'hash': '0x3eb7feffe0746e607613f72ce8b503a1e7f82921c135d8387805f73222890cf2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x73b6e91d4d2d743ef43f2089a4ee5bfdc402bd7e', 'value': 2347.0432533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7f3bc4abb54fa90800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:01:52.000Z'}}, {'blockNum': '0x63b1b9', 'uniqueId': '0xeae4e475725cf76d367d02e04c428ab9f5da71f92e67b6688f67e1662d434c16:log:0', 'hash': '0xeae4e475725cf76d367d02e04c428ab9f5da71f92e67b6688f67e1662d434c16', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'value': 12405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02a079f52f7e40b40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:03:05.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0xb78b919fdbfe310812b27b409704638876f5b67b074c76630697efb84a4d8aca:log:1', 'hash': '0xb78b919fdbfe310812b27b409704638876f5b67b074c76630697efb84a4d8aca', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 6421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x015c154688157f340000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0xec18a77f56e935baebc212661250f6e8acb1f1350f81704e471b12c4d38f9166:log:2', 'hash': '0xec18a77f56e935baebc212661250f6e8acb1f1350f81704e471b12c4d38f9166', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x8cda0badb15c2c4abfbc9157a61b0501c0d3e499', 'value': 39175.004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x084bae6493eeead60000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0x375381089f1ee044c2a61a48f3397682826282c00547ecfc86f7ede67642cc12:log:3', 'hash': '0x375381089f1ee044c2a61a48f3397682826282c00547ecfc86f7ede67642cc12', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e5389f69174a6d189af70b2075577d012e25194', 'value': 44.93336464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x026f936112aa4c4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0xe26c391b04551e6ed9889016d722382f093842c4f2338f243494e50c1ccab20b:log:4', 'hash': '0xe26c391b04551e6ed9889016d722382f093842c4f2338f243494e50c1ccab20b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4151d5684925db3d6b09c3de451647cfaae6e186', 'value': 5698.78639801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0134ee8c638695e7c400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0xd66227718bcc95316fabbf1224407ca63ea3d05a35f4361d3a4a94fdc4eddce7:log:5', 'hash': '0xd66227718bcc95316fabbf1224407ca63ea3d05a35f4361d3a4a94fdc4eddce7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4bc966c0b047278f3c02b52b5d0b9c6a7be35e93', 'value': 39892.61077839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0872952ffed5d73f5c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0xd9dbe67fee3ce3ed4833e8630ab254ecfdeba4d39fe65f4edc567152871b193a:log:6', 'hash': '0xd9dbe67fee3ce3ed4833e8630ab254ecfdeba4d39fe65f4edc567152871b193a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 1774.40499999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6030d0ea4a50f49c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0x7c7b747444130b1e8c48ace5636d15625d84bc37285939fdd36f3ca268a17d74:log:7', 'hash': '0x7c7b747444130b1e8c48ace5636d15625d84bc37285939fdd36f3ca268a17d74', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x22f1fb736bab2e6ebbbbe0a9aea37c6e328c67e6', 'value': 99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x055de6a779bbac0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0x8d2ad097066d14f1838b64d8b23face105e1d645b371638365ef0606ca948e7a:log:8', 'hash': '0x8d2ad097066d14f1838b64d8b23face105e1d645b371638365ef0606ca948e7a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xfb861c76dab6900585081449d3b81d8efe876945', 'value': 6114.68732424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x014b7a554c64f4ff2000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0xc4fad4bee9fb2a832f523d36378537cff08520673ea010fb588a87e08e68d101:log:9', 'hash': '0xc4fad4bee9fb2a832f523d36378537cff08520673ea010fb588a87e08e68d101', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6285895b68669a5139644d5adb4f664b7b79e226', 'value': 6005.058425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x014588ed355fd7b49000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0x2b3d816e105863a353d4c99980b3ea9ae6b9fcf35916860f8206346b2fc63d7e:log:10', 'hash': '0x2b3d816e105863a353d4c99980b3ea9ae6b9fcf35916860f8206346b2fc63d7e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x38db1e8aac7a6f612439e335765afdf3f1472d01', 'value': 10284.5336494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x022d86936055aec9b000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0xb4c2d0b9b9dcb787457ffd76605ad04d447d60388f2bd112ee136cb8bd28efb2:log:11', 'hash': '0xb4c2d0b9b9dcb787457ffd76605ad04d447d60388f2bd112ee136cb8bd28efb2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 37809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0801a1477b5528240000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0x1a653ad7f1b851c5ccde87094585f4d5d70425c6fd1042aee11fe1a6233034c9:log:12', 'hash': '0x1a653ad7f1b851c5ccde87094585f4d5d70425c6fd1042aee11fe1a6233034c9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x72248f253a859137b1fee18eb65329ee04eea067', 'value': 56323.11067194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0bed482db77fec79a800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0x79f908ca1ab3e49e86467ad2659fd2b0688c330bdebaedb8d09ff53c4f6d0901:log:13', 'hash': '0x79f908ca1ab3e49e86467ad2659fd2b0688c330bdebaedb8d09ff53c4f6d0901', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'value': 2346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7f2d4a4a5bfa680000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bd', 'uniqueId': '0x8f190847fead9794331ec7cf7eaecc5bb1503b2b913e50346e4b05bca0ccba85:log:0', 'hash': '0x8f190847fead9794331ec7cf7eaecc5bb1503b2b913e50346e4b05bca0ccba85', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xb8736cffca4f723e22a9cd217644db10f78c1b12', 'value': 15838, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x035a94673eadfcb80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:11.000Z'}}, {'blockNum': '0x63b1bd', 'uniqueId': '0x83c354ff5f53cd94580cc4713ecbc556e60b4059aa5ff7c584e91af61b514de0:log:1', 'hash': '0x83c354ff5f53cd94580cc4713ecbc556e60b4059aa5ff7c584e91af61b514de0', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xb8736cffca4f723e22a9cd217644db10f78c1b12', 'value': 1029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x37c83e601fd4f40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:11.000Z'}}, {'blockNum': '0x63b1c0', 'uniqueId': '0x1723eb21ec36ba812db28eadb8871a6da69c6e6b3dc5f2b462b0c19b1f6eb66b:log:5', 'hash': '0x1723eb21ec36ba812db28eadb8871a6da69c6e6b3dc5f2b462b0c19b1f6eb66b', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'value': 8545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cf39b262a650e40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:33.000Z'}}, {'blockNum': '0x63b1c1', 'uniqueId': '0x9be3929b6559c5eb6f1ba410a3165ba8dead43b4e11be8ad76b48144d986c129:log:8', 'hash': '0x9be3929b6559c5eb6f1ba410a3165ba8dead43b4e11be8ad76b48144d986c129', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x867a3b59fa70f4f82290818a7e1da9f0afe441e9', 'value': 1594.7839548213308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x567412c561ea092019', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:37.000Z'}}, {'blockNum': '0x63b1c4', 'uniqueId': '0x25918df446eb1d0a1c2d8737350f75f949cefc2126717a8435e0eb1ff5a58c8c:log:2', 'hash': '0x25918df446eb1d0a1c2d8737350f75f949cefc2126717a8435e0eb1ff5a58c8c', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x4c3ecbba6b80c46ef6027690b726432c3d8dbe75', 'value': 4992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x010e9deaaf401e000000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:05:01.000Z'}}, {'blockNum': '0x63b1c8', 'uniqueId': '0xc5150ede802652a771137558fa58a22aef890e0ce90a80fefca4cde122f37483:log:0', 'hash': '0xc5150ede802652a771137558fa58a22aef890e0ce90a80fefca4cde122f37483', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x60a7aaee606c3f1cca0129ca74969acc9110876c', 'value': 8372.20546025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01c5dbb0dc4073068400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:05:52.000Z'}}, {'blockNum': '0x63b1c8', 'uniqueId': '0xe0124e76c5544f547791a4eb29fd4afdd7ee052b7fae6006c85ee5944eb6a2b7:log:1', 'hash': '0xe0124e76c5544f547791a4eb29fd4afdd7ee052b7fae6006c85ee5944eb6a2b7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa79aad710199b16f1aa2845b2ae76d94ab4213ac', 'value': 6476.81193138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x015f1bd257f844948800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:05:52.000Z'}}, {'blockNum': '0x63b1c8', 'uniqueId': '0x90748ddd087b6f55cdddb64f8cfcb8b8547967b0acdadfee2e1bd487b93d38c2:log:2', 'hash': '0x90748ddd087b6f55cdddb64f8cfcb8b8547967b0acdadfee2e1bd487b93d38c2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 113134.06477015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x17f5028b727c99c47c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:05:52.000Z'}}, {'blockNum': '0x63b1c8', 'uniqueId': '0x598ba2d7a9fa169fa6919b167a47de41eecb95829e82fee1c68d83c7fbcc81ce:log:3', 'hash': '0x598ba2d7a9fa169fa6919b167a47de41eecb95829e82fee1c68d83c7fbcc81ce', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 5649.00337516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01323bab900162803000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:05:52.000Z'}}, {'blockNum': '0x63b1c8', 'uniqueId': '0xddb1376fef2204d8379c901a4155304ccace67f5b182f49ece4ae6f2ac70094e:log:4', 'hash': '0xddb1376fef2204d8379c901a4155304ccace67f5b182f49ece4ae6f2ac70094e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'value': 5656.70862801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0132a69a1ea5f7512400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:05:52.000Z'}}, {'blockNum': '0x63b1c8', 'uniqueId': '0x3ccff32d3e8668485c6f9e573a0f863d6b422e822502c25d5ad3659e152beaa5:log:5', 'hash': '0x3ccff32d3e8668485c6f9e573a0f863d6b422e822502c25d5ad3659e152beaa5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x22f1fb736bab2e6ebbbbe0a9aea37c6e328c67e6', 'value': 14149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02ff04d1d76299f40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:05:52.000Z'}}, {'blockNum': '0x63b1c8', 'uniqueId': '0xfc6a1187474c90e4c4ed6e9c900b03b8db08c25501839cf3dd71aa0178e6d586:log:6', 'hash': '0xfc6a1187474c90e4c4ed6e9c900b03b8db08c25501839cf3dd71aa0178e6d586', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4395b47280917914e04ec507593e110b81dbbaa2', 'value': 9998.00027501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x021dfe20567224d41400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:05:52.000Z'}}, {'blockNum': '0x63b1c8', 'uniqueId': '0xd60b992f6f83915e1d524a19b00efae962928da013d3ed5f4e8dd3eb3d7da2db:log:7', 'hash': '0xd60b992f6f83915e1d524a19b00efae962928da013d3ed5f4e8dd3eb3d7da2db', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1c5ea3f17feefe0c2dc0c79aedf770c1151489f6', 'value': 2988.43677705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xa200e4374f727b0400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:05:52.000Z'}}, {'blockNum': '0x63b1c8', 'uniqueId': '0xf3ed80a6e2eef7e2c32aff2e93760d909da5b1f93793382bee5ce8741fc14cb3:log:8', 'hash': '0xf3ed80a6e2eef7e2c32aff2e93760d909da5b1f93793382bee5ce8741fc14cb3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x72248f253a859137b1fee18eb65329ee04eea067', 'value': 67744.83182381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0e587466b040d5431400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:05:52.000Z'}}, {'blockNum': '0x63b1c8', 'uniqueId': '0xeb46897d2bac18ed9cba7fddbce78475260b0bc942f262613ac9fcbc913b862a:log:9', 'hash': '0xeb46897d2bac18ed9cba7fddbce78475260b0bc942f262613ac9fcbc913b862a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4215e853169db2597b5a789bdc16f094ed40cad2', 'value': 14574.60908331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x031617550dae9a234c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:05:52.000Z'}}, {'blockNum': '0x63b1c9', 'uniqueId': '0xe9bb0b5daa84e2e620d4883549f9e0619225314de73bcd007eb9a1fdce0e7cd0:log:12', 'hash': '0xe9bb0b5daa84e2e620d4883549f9e0619225314de73bcd007eb9a1fdce0e7cd0', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x4c3ecbba6b80c46ef6027690b726432c3d8dbe75', 'value': 1077.098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3a63bccc4a4bb10000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:06:01.000Z'}}, {'blockNum': '0x63b1ca', 'uniqueId': '0x782a0f50e13de53aeca7fbc0026bcd026bf150d13d65dc9a14b39404dc59a6ff:log:5', 'hash': '0x782a0f50e13de53aeca7fbc0026bcd026bf150d13d65dc9a14b39404dc59a6ff', 'from': '0x867a3b59fa70f4f82290818a7e1da9f0afe441e9', 'to': '0xc3434a910c0065c28c85158c7e407434c87817bc', 'value': 1594.7839548213308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x567412c561ea092019', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:06:17.000Z'}}, {'blockNum': '0x63b1ca', 'uniqueId': '0x7595e403cb2a1ec79a36495ef4170b85c69aa53b81a54092f4796c9d3bd000aa:log:6', 'hash': '0x7595e403cb2a1ec79a36495ef4170b85c69aa53b81a54092f4796c9d3bd000aa', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xbad67f79d99a7062c8794f2d43baf7d17ac605de', 'value': 12946.58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02bdd5e3dc1450c20000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:06:17.000Z'}}, {'blockNum': '0x63b1cf', 'uniqueId': '0x5e4ab3c4b44071ca1921bf0f78c3482d763fa3c5f70251cdb2ae97b399054fd7:log:17', 'hash': '0x5e4ab3c4b44071ca1921bf0f78c3482d763fa3c5f70251cdb2ae97b399054fd7', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x20217114cc3ccff768d608ab290ae53c984c6e98', 'value': 4310.312200367851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xe9a9991d38c61167c8', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:07:22.000Z'}}, {'blockNum': '0x63b1d1', 'uniqueId': '0xc08d55a2db5a1429e69acad0bcea4c1f1d76226d0797c0c0f0466b5cd6fdf24d:log:3', 'hash': '0xc08d55a2db5a1429e69acad0bcea4c1f1d76226d0797c0c0f0466b5cd6fdf24d', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x4c5c4e1437fc4106f50f40c38878681236b9c12d', 'value': 3897.654474330969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xd34ad25dbedd4b3bf9', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:07:41.000Z'}}, {'blockNum': '0x63b1d2', 'uniqueId': '0x8092306b66c307ee2fba96e77ca6ca8600e8b286f8026f3ff422e66b4bafed1d:log:6', 'hash': '0x8092306b66c307ee2fba96e77ca6ca8600e8b286f8026f3ff422e66b4bafed1d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd001717bf6efa603787424902d54daf1a19c06ca', 'value': 1679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5b04ce4446d8dc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:08:42.000Z'}}, {'blockNum': '0x63b1d2', 'uniqueId': '0x29872677c2adf06d78b82a01833b64242bdf600605f3d07a5e353bdc3a895fad:log:162', 'hash': '0x29872677c2adf06d78b82a01833b64242bdf600605f3d07a5e353bdc3a895fad', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf95f34f311b365b31fe56b94f705cdc78edc223c', 'value': 8551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cf8cf6aadc3d3c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:08:42.000Z'}}, {'blockNum': '0x63b1d2', 'uniqueId': '0x85a7f511ee4e39ccb820016e031bd6782033fee38fac1f6882c8c2088638ba84:log:165', 'hash': '0x85a7f511ee4e39ccb820016e031bd6782033fee38fac1f6882c8c2088638ba84', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'value': 12541.45, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02a7df94f78cd2c10000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:08:42.000Z'}}, {'blockNum': '0x63b1d2', 'uniqueId': '0xbb20a5acc6f4e20dfb9fc6ed280a8b98b4f8022f4542683795fd80c65da05e55:log:173', 'hash': '0xbb20a5acc6f4e20dfb9fc6ed280a8b98b4f8022f4542683795fd80c65da05e55', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x79e4377bf165c4b62b0316301f64ce695866bfeb', 'value': 36243.36006421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x07acc1a910d8f7cdb400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:08:42.000Z'}}, {'blockNum': '0x63b1d2', 'uniqueId': '0xf452a6b17f105e69a168d43c4a9932ad3260a43e1ed390a6244aa7cc5eb9dbe1:log:175', 'hash': '0xf452a6b17f105e69a168d43c4a9932ad3260a43e1ed390a6244aa7cc5eb9dbe1', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xbad67f79d99a7062c8794f2d43baf7d17ac605de', 'value': 13557.22, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02def038f0c51d4a0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:08:42.000Z'}}, {'blockNum': '0x63b1d2', 'uniqueId': '0x302de54d0a4147df9fc9cb6d9b00902e5574e6aeabb94852121fff9e87f94a18:log:182', 'hash': '0x302de54d0a4147df9fc9cb6d9b00902e5574e6aeabb94852121fff9e87f94a18', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x95f86e6c1ddbc82fee6316314f9edef4713ffaaf', 'value': 94091.46499404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x13ecb562be21e02bb000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:08:42.000Z'}}, {'blockNum': '0x63b1d3', 'uniqueId': '0xf835b3786dd6f5270761fbe2c17ba52c1fe5ae7447aacc4bd9886c080aa50e64:log:1', 'hash': '0xf835b3786dd6f5270761fbe2c17ba52c1fe5ae7447aacc4bd9886c080aa50e64', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x1abc665ac6302a1ec9d286d4c2897c95cf64a756', 'value': 37412.73258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x07ec25f6cc5b7f9e4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:09:05.000Z'}}, {'blockNum': '0x63b1d3', 'uniqueId': '0x6662681559e647046dda9c342abe8e0888ef23bff32f91a772096e224a9e28d0:log:2', 'hash': '0x6662681559e647046dda9c342abe8e0888ef23bff32f91a772096e224a9e28d0', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x8cda0badb15c2c4abfbc9157a61b0501c0d3e499', 'value': 9385.35726013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01fcc7ff1e5596135400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:09:05.000Z'}}, {'blockNum': '0x63b1d3', 'uniqueId': '0x4a2152bab5c6fa27fb3a4c9ac59c4e528d7ad2ca40801c5a99e1b0716ac1d0f8:log:11', 'hash': '0x4a2152bab5c6fa27fb3a4c9ac59c4e528d7ad2ca40801c5a99e1b0716ac1d0f8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4e41169d8db09a64cf618719442f69d3ca270f1f', 'value': 1750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5ede20f01a45980000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:09:05.000Z'}}, {'blockNum': '0x63b1d3', 'uniqueId': '0xf1112bbb41a3e1bddbd40ebbdb817d187d27a02af99c7b218e4eeeb7b3455c4f:log:12', 'hash': '0xf1112bbb41a3e1bddbd40ebbdb817d187d27a02af99c7b218e4eeeb7b3455c4f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9f050bc566289fe08f9534eb8b5b7437071a85ca', 'value': 40166.63615093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0881700daf4fd2073400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:09:05.000Z'}}, {'blockNum': '0x63b1d3', 'uniqueId': '0x5798bd624468347d0757bdf07bed9e2c19c736eefc19330a38713762259e9de1:log:25', 'hash': '0x5798bd624468347d0757bdf07bed9e2c19c736eefc19330a38713762259e9de1', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 113134.06477015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x17f5028b727c99c47c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:09:05.000Z'}}, {'blockNum': '0x63b1d3', 'uniqueId': '0x3dbb3d7ab4849a556d711dc6871e504473e043ad196dd482e43c3dae1614fe6d:log:31', 'hash': '0x3dbb3d7ab4849a556d711dc6871e504473e043ad196dd482e43c3dae1614fe6d', 'from': '0x412f9d6a49ef125bffac3ea59688cfcaa6c7cd6c', 'to': '0x967c6cc4eda2d5e77a1d359d8f6342011d4a3573', 'value': 1054.1187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3924d5ecb0948ec000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:09:05.000Z'}}, {'blockNum': '0x63b1d3', 'uniqueId': '0x64d1cfcb7be2cc49ece3ac8e3f31e9d995268453b4773c43e47af3b8209cc6ec:log:55', 'hash': '0x64d1cfcb7be2cc49ece3ac8e3f31e9d995268453b4773c43e47af3b8209cc6ec', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x55087abd678d0d5140a5f65cde589099bbccb19b', 'value': 1525.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x52b12d72159cdc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:09:05.000Z'}}, {'blockNum': '0x63b1d4', 'uniqueId': '0x8dbe1f62904334b8243d6712adc1ef71eb599ab6de699c48c877c5a1fbb785ca:log:9', 'hash': '0x8dbe1f62904334b8243d6712adc1ef71eb599ab6de699c48c877c5a1fbb785ca', 'from': '0x4c5c4e1437fc4106f50f40c38878681236b9c12d', 'to': '0xcfef471878edc247692a952553f14965f78f83fd', 'value': 3897.654474330969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xd34ad25dbedd4b3bf9', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:09:26.000Z'}}, {'blockNum': '0x63b1d5', 'uniqueId': '0x313eb26397c654e9a50af977b674b7569aa25935a4202e4db024f6fd2331ac0f:log:70', 'hash': '0x313eb26397c654e9a50af977b674b7569aa25935a4202e4db024f6fd2331ac0f', 'from': '0x20217114cc3ccff768d608ab290ae53c984c6e98', 'to': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'value': 4310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xe9a543f4a42d980000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:09:32.000Z'}}, {'blockNum': '0x63b1d5', 'uniqueId': '0x18d7cfff01d171c8d4c94a8bd4a1ecda192d21efc854d7decf73deaea68bc2a5:log:132', 'hash': '0x18d7cfff01d171c8d4c94a8bd4a1ecda192d21efc854d7decf73deaea68bc2a5', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xf63f197e4cacabade5ad93636213a43c7d1a1473', 'value': 357482.86074835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4bb32f495140fa28ec00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:09:32.000Z'}}, {'blockNum': '0x63b1d6', 'uniqueId': '0xbeda4add26ad7ccead5a09c743c3d63c737eeb0cd1b889f3e83ebfa7475d1c09:log:1', 'hash': '0xbeda4add26ad7ccead5a09c743c3d63c737eeb0cd1b889f3e83ebfa7475d1c09', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x1abc665ac6302a1ec9d286d4c2897c95cf64a756', 'value': 10640.26482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0240cf565f4039ab4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:10:11.000Z'}}, {'blockNum': '0x63b1d6', 'uniqueId': '0x29ed9ba40ab84a8128f1467cef13de4dc8a3a27e01071b1098c2ed1c4ca6ad23:log:12', 'hash': '0x29ed9ba40ab84a8128f1467cef13de4dc8a3a27e01071b1098c2ed1c4ca6ad23', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 4634.4106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xfb3b5dee8a50ee8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:10:11.000Z'}}, {'blockNum': '0x63b1d7', 'uniqueId': '0xb6ec083563646fd14ccc993d91ebc4c8deb252a13718e564152a4690bfd3c2cb:log:13', 'hash': '0xb6ec083563646fd14ccc993d91ebc4c8deb252a13718e564152a4690bfd3c2cb', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 8593.26702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01d1d789499c2b90c000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:10:16.000Z'}}, {'blockNum': '0x63b1d7', 'uniqueId': '0x833f48c4bf5aecdfb806742c7ef0fa1870e1eb27247759fd9df58fc0d43874a1:log:14', 'hash': '0x833f48c4bf5aecdfb806742c7ef0fa1870e1eb27247759fd9df58fc0d43874a1', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xa4aa2fcd6214c8c868d4334127ac11051dd583d3', 'value': 2033.57852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6e3d92399448998000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:10:16.000Z'}}, {'blockNum': '0x63b1d7', 'uniqueId': '0xc37e09bee3b9e77c79fbba8626ed9ca1099bfbe5859c8148bf0c94c6b4d7dfe4:log:15', 'hash': '0xc37e09bee3b9e77c79fbba8626ed9ca1099bfbe5859c8148bf0c94c6b4d7dfe4', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xb8736cffca4f723e22a9cd217644db10f78c1b12', 'value': 9687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x020d2221681308fc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:10:16.000Z'}}, {'blockNum': '0x63b1d7', 'uniqueId': '0x1779164ec09d9599464478a2a50b546f12c593c1601e57c7d8cb584954b346d2:log:30', 'hash': '0x1779164ec09d9599464478a2a50b546f12c593c1601e57c7d8cb584954b346d2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3e7db0bdc36a1ded5892b1970f1f0f612fb8ea9a', 'value': 56999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0c11ec06fa5aea3c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:10:16.000Z'}}, {'blockNum': '0x63b1d7', 'uniqueId': '0x481ca47618c56e5fa5bd8a76c5f806589ee1d49402e05162bfe030a1ef6f8af2:log:31', 'hash': '0x481ca47618c56e5fa5bd8a76c5f806589ee1d49402e05162bfe030a1ef6f8af2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf709dc519423a3a9fd50588abde00d676a6f24f3', 'value': 52806.12250847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0b2ea029c2a029ab9c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:10:16.000Z'}}, {'blockNum': '0x63b1d7', 'uniqueId': '0x5d355d542561bbc1425c77e9590692ab3bd0a6dd683e336ef8ab73f7674e5c94:log:32', 'hash': '0x5d355d542561bbc1425c77e9590692ab3bd0a6dd683e336ef8ab73f7674e5c94', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x2c7fb08a352d3480f1c63f7a31a8ebe6aa0f9954', 'value': 99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x055de6a779bbac0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:10:16.000Z'}}, {'blockNum': '0x63b1d7', 'uniqueId': '0x99323a401d3bb3eb91e555e585fb3c3dd477090a03281090cc9704c915cf6f44:log:33', 'hash': '0x99323a401d3bb3eb91e555e585fb3c3dd477090a03281090cc9704c915cf6f44', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1cd27134394c70d7663f1ee271b9e37a4fbb85dc', 'value': 21360.37482675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0485f2bfd4d01dd06c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:10:16.000Z'}}, {'blockNum': '0x63b1d7', 'uniqueId': '0xf4652bb5ff099fdb4c962792291793d42e21203a6e232c6115fd53c6a0df5a7c:log:34', 'hash': '0xf4652bb5ff099fdb4c962792291793d42e21203a6e232c6115fd53c6a0df5a7c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 9319.4922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01f935ef6b1d37ae8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:10:16.000Z'}}, {'blockNum': '0x63b1d8', 'uniqueId': '0x3400d9887dd0e7c917fb5b816f1bb604ea1b63bb1f1ed99ecbb4781ca4460daf:log:66', 'hash': '0x3400d9887dd0e7c917fb5b816f1bb604ea1b63bb1f1ed99ecbb4781ca4460daf', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0xc7e029158a140a91f24c151e7fb5fd3f7c09524d', 'value': 2244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x79a5c17ec748900000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:10:42.000Z'}}, {'blockNum': '0x63b1d9', 'uniqueId': '0x4f672a7cee1d92fa86952db37234643eb8845b136e17a835a464223c77c3e398:log:126', 'hash': '0x4f672a7cee1d92fa86952db37234643eb8845b136e17a835a464223c77c3e398', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0x5fd9b40d53aa9fced8a54d21904f8eae5842c174', 'value': 689.1493813505577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x255bde6f1184338165', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:11:02.000Z'}}, {'blockNum': '0x63b1db', 'uniqueId': '0xb0f2cd5c6ca36178bf6be62af4725bc0b38f469e58cefc66db00fae460969cfa:log:16', 'hash': '0xb0f2cd5c6ca36178bf6be62af4725bc0b38f469e58cefc66db00fae460969cfa', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'value': 7780.6585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01a5ca53e20df3a84000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:11:07.000Z'}}, {'blockNum': '0x63b1dd', 'uniqueId': '0x658fd94e840cc6b6ba6dca8330d92f342ba16d31d1993505f1236fc9a22ebd5c:log:1', 'hash': '0x658fd94e840cc6b6ba6dca8330d92f342ba16d31d1993505f1236fc9a22ebd5c', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xaea424a9c42986d1431957afcb01c4fa78d99df8', 'value': 1442.83654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4e37611ca785afc000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:11:58.000Z'}}, {'blockNum': '0x63b1de', 'uniqueId': '0x6131661bc7a93982532a87a73c6197b3e5e13830566aa824bde4549c589194fe:log:7', 'hash': '0x6131661bc7a93982532a87a73c6197b3e5e13830566aa824bde4549c589194fe', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x269b268e501c280244d64479caac62d107444144', 'value': 6740, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x016d604a31f314d00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:12:10.000Z'}}, {'blockNum': '0x63b1de', 'uniqueId': '0xbac9bfa21d025b3b14581b15a628fcab694c9ab982103813d79cdad021b69dab:log:8', 'hash': '0xbac9bfa21d025b3b14581b15a628fcab694c9ab982103813d79cdad021b69dab', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe5d3ba1018d1a3a224c81d6a7cc531703627e1df', 'value': 21026.88872993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0473deb336a3e6306400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:12:10.000Z'}}, {'blockNum': '0x63b1de', 'uniqueId': '0x861b84f3f72adf511e74dc6783658fc42c4cb3ffc7f45dbe0d8b10b863a748f6:log:9', 'hash': '0x861b84f3f72adf511e74dc6783658fc42c4cb3ffc7f45dbe0d8b10b863a748f6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x22f1fb736bab2e6ebbbbe0a9aea37c6e328c67e6', 'value': 13663.38356164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02e4b189ad9a57c69000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:12:10.000Z'}}, {'blockNum': '0x63b1de', 'uniqueId': '0x4664df671851ebee12c1cf9e0836c0c30d44e353d6c3a3eaa852d222cf367b07:log:10', 'hash': '0x4664df671851ebee12c1cf9e0836c0c30d44e353d6c3a3eaa852d222cf367b07', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x666eb514017c7c55eee1241eb01fbb2183efdb5a', 'value': 9201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01f2c9868f0341240000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:12:10.000Z'}}, {'blockNum': '0x63b1de', 'uniqueId': '0xd7857ddd14e1aa6b8ba3f0b3ca21cf45e3d9a6cb51fb8246108d3d6618960690:log:11', 'hash': '0xd7857ddd14e1aa6b8ba3f0b3ca21cf45e3d9a6cb51fb8246108d3d6618960690', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4395b47280917914e04ec507593e110b81dbbaa2', 'value': 9998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x021dfe1f5c5363780000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:12:10.000Z'}}, {'blockNum': '0x63b1e0', 'uniqueId': '0x1215819cf1439a07cfdf7632aae97abe37ba23b678e6aca6ed1f39faa4761f59:log:5', 'hash': '0x1215819cf1439a07cfdf7632aae97abe37ba23b678e6aca6ed1f39faa4761f59', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x20217114cc3ccff768d608ab290ae53c984c6e98', 'value': 3314.6724407766965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xb3b0521effc805a0ac', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:12:20.000Z'}}, {'blockNum': '0x63b1e6', 'uniqueId': '0x1acc1f336dec5fb186016003d739627fb293764838dac6f5b0f3efd947088b16:log:8', 'hash': '0x1acc1f336dec5fb186016003d739627fb293764838dac6f5b0f3efd947088b16', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x4151d5684925db3d6b09c3de451647cfaae6e186', 'value': 4472.59526184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xf275ba5dd1746ba000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:13:28.000Z'}}, {'blockNum': '0x63b1e7', 'uniqueId': '0x6f04815446b26ec5593721bf3868a09d5dbb3a41f055b9628e89718ce99634a4:log:61', 'hash': '0x6f04815446b26ec5593721bf3868a09d5dbb3a41f055b9628e89718ce99634a4', 'from': '0xec893c816bc01bea6ce629a3d8e6053d0abd84b1', 'to': '0x43a5b1be13c083a858b217989b27b0246548791a', 'value': 210.8660752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0b6e5aca2d94ce8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:13:32.000Z'}}, {'blockNum': '0x63b1e9', 'uniqueId': '0x0ddc44b4b0bdff2a0a63e993aeb3692585621eaf7116c616ab27305ba6b826a7:log:4', 'hash': '0x0ddc44b4b0bdff2a0a63e993aeb3692585621eaf7116c616ab27305ba6b826a7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9f050bc566289fe08f9534eb8b5b7437071a85ca', 'value': 63603.42625451, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d77f2da7914fe614c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:14:26.000Z'}}, {'blockNum': '0x63b1e9', 'uniqueId': '0xfa3592e56a9f2d3e92de4f83cf685d14d0573cdc83539bedf386bd9d88b82c08:log:5', 'hash': '0xfa3592e56a9f2d3e92de4f83cf685d14d0573cdc83539bedf386bd9d88b82c08', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x25e6ce3e76b6e7ebaae0b92fcf5177f433f43676', 'value': 2334.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7e8db21549f56a0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:14:26.000Z'}}, {'blockNum': '0x63b1e9', 'uniqueId': '0x5d073a29626ccf5e7fad19018e7b4f2495190703877069cbc843d2a236d34190:log:6', 'hash': '0x5d073a29626ccf5e7fad19018e7b4f2495190703877069cbc843d2a236d34190', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x2c7fb08a352d3480f1c63f7a31a8ebe6aa0f9954', 'value': 3023.93722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xa3ed8f20157e404000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:14:26.000Z'}}, {'blockNum': '0x63b1e9', 'uniqueId': '0xae0343da1b664221fa379a43a7460c6d5b19426bf47c1dab374b9d1126273eeb:log:7', 'hash': '0xae0343da1b664221fa379a43a7460c6d5b19426bf47c1dab374b9d1126273eeb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe51f926179ad4c39fd27ecdf75293631c0e627bd', 'value': 717.42410109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x26e4426add95625400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:14:26.000Z'}}, {'blockNum': '0x63b1e9', 'uniqueId': '0x623acbe9bec1f6009471c8ca157904f36fae39c025df900850d2f9be605b6862:log:11', 'hash': '0x623acbe9bec1f6009471c8ca157904f36fae39c025df900850d2f9be605b6862', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xeb8f7b8c27732e00bef318441422000d8ccd1e54', 'value': 7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6124fee993bc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:14:26.000Z'}}, {'blockNum': '0x63b1e9', 'uniqueId': '0x733e37c7dc063270275478b29f2d976c46792c5aaab319545c8120add39193c0:log:52', 'hash': '0x733e37c7dc063270275478b29f2d976c46792c5aaab319545c8120add39193c0', 'from': '0x20217114cc3ccff768d608ab290ae53c984c6e98', 'to': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'value': 3315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xb3b4ddd86093ec0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:14:26.000Z'}}, {'blockNum': '0x63b1eb', 'uniqueId': '0xf09dd246d6ceb11a629b09f92f32e245affc48d8485260c33b72e44a73f94614:log:69', 'hash': '0xf09dd246d6ceb11a629b09f92f32e245affc48d8485260c33b72e44a73f94614', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x6f616d9579ad49b99a9b0794ef69f63066b1561f', 'value': 1819.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x629e78b9771ea00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:14:51.000Z'}}, {'blockNum': '0x63b1ed', 'uniqueId': '0xe2ba7c6fe687e5a5e0ceaceef7cca4c4f77e0a8b12fb8e38b6fa6e1fbe9f2d19:log:25', 'hash': '0xe2ba7c6fe687e5a5e0ceaceef7cca4c4f77e0a8b12fb8e38b6fa6e1fbe9f2d19', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x793e3c4acca8404260ef34bce9f49a98fe0bd7d1', 'value': 5798.600000000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x013a57bd89b354234240', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:15:04.000Z'}}, {'blockNum': '0x63b1f2', 'uniqueId': '0x42bd47ff4afdacf408ace92149ee2ba41caa6157539fa5d922204c34d0b1ee90:log:27', 'hash': '0x42bd47ff4afdacf408ace92149ee2ba41caa6157539fa5d922204c34d0b1ee90', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 697.14938135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x25cae424ae9e157c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:16:02.000Z'}}, {'blockNum': '0x63b1f2', 'uniqueId': '0x7223d3be019bf7c6875fb2666ed6a5a820fc463225b23fece3c7743f20806d79:log:28', 'hash': '0x7223d3be019bf7c6875fb2666ed6a5a820fc463225b23fece3c7743f20806d79', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 24930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x054775400332f8480000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:16:02.000Z'}}, {'blockNum': '0x63b1f3', 'uniqueId': '0xd84c37219ded57b0062bb650fb001c57fb7b7e5b78fe97de367f29753bbe0e94:log:4', 'hash': '0xd84c37219ded57b0062bb650fb001c57fb7b7e5b78fe97de367f29753bbe0e94', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0xaba3b498a450234314a41945102fbe7a7427342e', 'value': 7818.90465987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01a7dd1989d1c5ceac00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:16:03.000Z'}}, {'blockNum': '0x63b1f5', 'uniqueId': '0x05fb610396d468488401aed09d2fcf54cdd755b39efc87a8b4f0aff372d411cb:log:11', 'hash': '0x05fb610396d468488401aed09d2fcf54cdd755b39efc87a8b4f0aff372d411cb', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x40eb8da68712a2998af3c428f211723430fa4449', 'value': 15201.60386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x033814a1f91ef2f54000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:16:17.000Z'}}, {'blockNum': '0x63b1f7', 'uniqueId': '0x671cef3faa67e2eb6a1dcbbb9d969ad90148f70535122b446688cee62a7f4a67:log:15', 'hash': '0x671cef3faa67e2eb6a1dcbbb9d969ad90148f70535122b446688cee62a7f4a67', 'from': '0xdd795b7c0236cc28d88e7a0c90eae047121a5daf', 'to': '0xe7878ca0b3f7b0057a106f6190af7570a6a9a832', 'value': 889.7901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x303c5175a3d74d4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:16:46.000Z'}}, {'blockNum': '0x63b1f7', 'uniqueId': '0xfa82954111e6861dcac6cdaed094ec86b8e95b9d6131a83297056ad1729d7f2a:log:50', 'hash': '0xfa82954111e6861dcac6cdaed094ec86b8e95b9d6131a83297056ad1729d7f2a', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x2ad603904851b49b85deaf1d9a2a6f08a900d556', 'value': 1379.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4ac8688518835e0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:16:46.000Z'}}, {'blockNum': '0x63b1fb', 'uniqueId': '0x8d66a34b056a8796956cdb5bfb6f7a666e4b004d630214391acc381de8bcea22:log:1', 'hash': '0x8d66a34b056a8796956cdb5bfb6f7a666e4b004d630214391acc381de8bcea22', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 17590.17714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x03b990bef013c89b4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:17:12.000Z'}}, {'blockNum': '0x63b1fc', 'uniqueId': '0x655a8e9a689bd1d520fcb67716c58c4e3d7740dfb4dfa7196c11e7f5a8411f3f:log:10', 'hash': '0x655a8e9a689bd1d520fcb67716c58c4e3d7740dfb4dfa7196c11e7f5a8411f3f', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'value': 8158.68, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01ba486e0975f3fc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:17:23.000Z'}}, {'blockNum': '0x63b1ff', 'uniqueId': '0xd05bffbb5e04a3df70643e45b5041ed5e8bf4f6c89e75169e2924bb093b4b745:log:1', 'hash': '0xd05bffbb5e04a3df70643e45b5041ed5e8bf4f6c89e75169e2924bb093b4b745', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6fdc6a397615545d91600adbf435e00f0ae97cd7', 'value': 37846.59912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0803ab1263c3936d0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:18:00.000Z'}}, {'blockNum': '0x63b1ff', 'uniqueId': '0x61abd84da5d055365cf8de8a54debe3b6f6746071742b4a2489b82f2961b73d9:log:4', 'hash': '0x61abd84da5d055365cf8de8a54debe3b6f6746071742b4a2489b82f2961b73d9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6dec88550c05b6e77d261590813b3f938f2500eb', 'value': 4151.78934221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xe111a6c99e07c19400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:18:00.000Z'}}, {'blockNum': '0x63b1ff', 'uniqueId': '0x3a77e4405424084fbbecd4e420c711ab7c1c6af43ea6b2924f796892ec08d81d:log:5', 'hash': '0x3a77e4405424084fbbecd4e420c711ab7c1c6af43ea6b2924f796892ec08d81d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x22f1fb736bab2e6ebbbbe0a9aea37c6e328c67e6', 'value': 11595.31701157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x027495595b6681d5f400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:18:00.000Z'}}, {'blockNum': '0x63b1ff', 'uniqueId': '0x7c3e632f7296fdfdf4884a53ea90fa77027be1f6e0a4f130d432acf5605eb600:log:6', 'hash': '0x7c3e632f7296fdfdf4884a53ea90fa77027be1f6e0a4f130d432acf5605eb600', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 75549.02759664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0fff855fc33da685c000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:18:00.000Z'}}, {'blockNum': '0x63b201', 'uniqueId': '0x5661c0bc0d68a0d78831d1381705fcbe370697a2804c6545e9bd6ae31aa7c477:log:0', 'hash': '0x5661c0bc0d68a0d78831d1381705fcbe370697a2804c6545e9bd6ae31aa7c477', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x3300482bfd2418361b6e0c52fccf49ebdd718eb3', 'value': 5471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x012895608966521c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:18:36.000Z'}}, {'blockNum': '0x63b201', 'uniqueId': '0x44bef05a30302bdc925efe0ab46503219fa81ed5989d9f6081b1918397199c18:log:48', 'hash': '0x44bef05a30302bdc925efe0ab46503219fa81ed5989d9f6081b1918397199c18', 'from': '0x6dec88550c05b6e77d261590813b3f938f2500eb', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 4151.78934221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xe111a6c99e07c19400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:18:36.000Z'}}, {'blockNum': '0x63b204', 'uniqueId': '0x4f44a685bd02dea8f6f73d40f7d886238a005d4faea315eca2f7590ca03cef0c:log:4', 'hash': '0x4f44a685bd02dea8f6f73d40f7d886238a005d4faea315eca2f7590ca03cef0c', 'from': '0x73b6e91d4d2d743ef43f2089a4ee5bfdc402bd7e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2347.0432533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7f3bc4abb54fa90800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:03.000Z'}}, {'blockNum': '0x63b204', 'uniqueId': '0xa8ab7cc81afb985e2eb8ec554e235dd142b85daffdca4600a935a72bea843d29:log:5', 'hash': '0xa8ab7cc81afb985e2eb8ec554e235dd142b85daffdca4600a935a72bea843d29', 'from': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x015c154688157f340000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:03.000Z'}}, {'blockNum': '0x63b204', 'uniqueId': '0xaeed73a527f79f7e2c082426fe32b34959133c0e6e128e193c1e99837721a25d:log:6', 'hash': '0xaeed73a527f79f7e2c082426fe32b34959133c0e6e128e193c1e99837721a25d', 'from': '0xbad67f79d99a7062c8794f2d43baf7d17ac605de', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26503.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x059cc61cccd96e0c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:03.000Z'}}, {'blockNum': '0x63b204', 'uniqueId': '0xab02a762a6a6e1b6ed61aacabf4a066aa4af890dbfcbbe050f5485d9f6e96f23:log:7', 'hash': '0xab02a762a6a6e1b6ed61aacabf4a066aa4af890dbfcbbe050f5485d9f6e96f23', 'from': '0x1c5ea3f17feefe0c2dc0c79aedf770c1151489f6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2988.43677705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xa200e4374f727b0400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:03.000Z'}}, {'blockNum': '0x63b204', 'uniqueId': '0xb7af3465ff9be61d4435dc82ef554f2680d241290d5ee9a947607daec2e855fc:log:8', 'hash': '0xb7af3465ff9be61d4435dc82ef554f2680d241290d5ee9a947607daec2e855fc', 'from': '0x72248f253a859137b1fee18eb65329ee04eea067', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 124067.94249575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1a45bc9467c0c1bcbc00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:03.000Z'}}, {'blockNum': '0x63b205', 'uniqueId': '0x1192ab3ee948365152a2f4d98f7c73b945382c3e98b931db3d5c34a6de40f55e:log:0', 'hash': '0x1192ab3ee948365152a2f4d98f7c73b945382c3e98b931db3d5c34a6de40f55e', 'from': '0xa79aad710199b16f1aa2845b2ae76d94ab4213ac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6476.81193138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x015f1bd257f844948800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:05.000Z'}}, {'blockNum': '0x63b205', 'uniqueId': '0xf7c12cf484d9965da219408b845e5131d9c33238f7d127209ec1082311eef391:log:1', 'hash': '0xf7c12cf484d9965da219408b845e5131d9c33238f7d127209ec1082311eef391', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 62739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d4916877e88206c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:05.000Z'}}, {'blockNum': '0x63b205', 'uniqueId': '0x0d1099e90f9e5c7a78c07456bdebe6b14399f2cc0cea040ce5899403e65bbea6:log:2', 'hash': '0x0d1099e90f9e5c7a78c07456bdebe6b14399f2cc0cea040ce5899403e65bbea6', 'from': '0x60a7aaee606c3f1cca0129ca74969acc9110876c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8372.20546025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01c5dbb0dc4073068400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:05.000Z'}}, {'blockNum': '0x63b205', 'uniqueId': '0xd12d5d27fb335f73ae46a8f301a4a706c8f6faf47d2a99f4bb7f53760199434d:log:3', 'hash': '0xd12d5d27fb335f73ae46a8f301a4a706c8f6faf47d2a99f4bb7f53760199434d', 'from': '0x8cda0badb15c2c4abfbc9157a61b0501c0d3e499', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 48560.36126013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0a487663b24480e95400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:05.000Z'}}, {'blockNum': '0x63b205', 'uniqueId': '0x7adc46140635fde0cf6bbf583d629af2e141347d72b4759605f1122bbcae322e:log:4', 'hash': '0x7adc46140635fde0cf6bbf583d629af2e141347d72b4759605f1122bbcae322e', 'from': '0xc3434a910c0065c28c85158c7e407434c87817bc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1594.7839548213308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x567412c561ea092019', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:05.000Z'}}, {'blockNum': '0x63b205', 'uniqueId': '0x0dea22ba47817470a474335d211d29405ea10f25f8eab293bed53c49c95ddb9f:log:5', 'hash': '0x0dea22ba47817470a474335d211d29405ea10f25f8eab293bed53c49c95ddb9f', 'from': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cf39b262a650e40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:05.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0x1f3658471accab3d2d37750be700483a4414f5eaa5b3df4ba3b0ab46ea99ffab:log:5', 'hash': '0x1f3658471accab3d2d37750be700483a4414f5eaa5b3df4ba3b0ab46ea99ffab', 'from': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37759.4585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x07fef1c0b79094204000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0x646687070227d82e48b9343d86f961d76e7a3c4660a22b4631bf971b5c30103f:log:6', 'hash': '0x646687070227d82e48b9343d86f961d76e7a3c4660a22b4631bf971b5c30103f', 'from': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5656.70862801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0132a69a1ea5f7512400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0xfdf91a9ed8eb84a232bb1560173033aa133f56de0863c38f14b5071f30d54cc1:log:7', 'hash': '0xfdf91a9ed8eb84a232bb1560173033aa133f56de0863c38f14b5071f30d54cc1', 'from': '0x38db1e8aac7a6f612439e335765afdf3f1472d01', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10284.5336494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x022d86936055aec9b000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0x1c29c41ea2e99a28f468d4b4c846df81e07375604b005c3366674a997f8285b2:log:9', 'hash': '0x1c29c41ea2e99a28f468d4b4c846df81e07375604b005c3366674a997f8285b2', 'from': '0x16a9d1c974be039d96eb3d35e3300308d341e86b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 90, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x04e1003b28d9280000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0x30028d3c9aef9f76cd357335be9d5e9e30c7a6c5ef264ceb6c472c41a28fd827:log:10', 'hash': '0x30028d3c9aef9f76cd357335be9d5e9e30c7a6c5ef264ceb6c472c41a28fd827', 'from': '0x4c3ecbba6b80c46ef6027690b726432c3d8dbe75', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6069.098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x014901a77b8a69b10000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0x497263187f9fc8301160c1235c41fb7c7d1e144fdf67f148292e9f0b2e94c6d7:log:12', 'hash': '0x497263187f9fc8301160c1235c41fb7c7d1e144fdf67f148292e9f0b2e94c6d7', 'from': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5649.00337516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01323bab900162803000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0xfb783feffaaf617ed49b5e74c251a8261cdf2307624bd82d01eedee84967fe65:log:13', 'hash': '0xfb783feffaaf617ed49b5e74c251a8261cdf2307624bd82d01eedee84967fe65', 'from': '0x22f1fb736bab2e6ebbbbe0a9aea37c6e328c67e6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 39506.70057321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x085da99b87dd2f3c8400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0x7c8c5d73427f344fe733806dbcb5b11c29e99f117439787998d6855bc7f44c63:log:14', 'hash': '0x7c8c5d73427f344fe733806dbcb5b11c29e99f117439787998d6855bc7f44c63', 'from': '0x4215e853169db2597b5a789bdc16f094ed40cad2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14574.60908331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x031617550dae9a234c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0xa0ad4ab8bbca8d0e1c4064c2322e5f47268abc5cf85d344219bd22d758582ee4:log:16', 'hash': '0xa0ad4ab8bbca8d0e1c4064c2322e5f47268abc5cf85d344219bd22d758582ee4', 'from': '0x4395b47280917914e04ec507593e110b81dbbaa2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19996.00027501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x043bfc3fb2c5884c1400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0x59ac978d4f7e90a0cb1a6d568cd90e9dca75d004d7cb588749b667feb0e1a9d2:log:17', 'hash': '0x59ac978d4f7e90a0cb1a6d568cd90e9dca75d004d7cb588749b667feb0e1a9d2', 'from': '0x4151d5684925db3d6b09c3de451647cfaae6e186', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10171.38165985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02276446c1580a536400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0x63b3529dd7d61f02647ea37249041d3b8be621203126e221bc0fe5b589ee0ea2:log:19', 'hash': '0x63b3529dd7d61f02647ea37249041d3b8be621203126e221bc0fe5b589ee0ea2', 'from': '0xfb861c76dab6900585081449d3b81d8efe876945', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6114.68732424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x014b7a554c64f4ff2000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0x25d069bc8b57a17aff87e740a42eb903ae4efce46da346547db70889c69cfad5:log:20', 'hash': '0x25d069bc8b57a17aff87e740a42eb903ae4efce46da346547db70889c69cfad5', 'from': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7f2d4a4a5bfa680000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0x50822e8b4e2bd84fe9fc07ffdb707d11556a5540197ccfb57b64af89dbaf020b:log:23', 'hash': '0x50822e8b4e2bd84fe9fc07ffdb707d11556a5540197ccfb57b64af89dbaf020b', 'from': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02a079f52f7e40b40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0x4f11291c30f05e225224dcfde9270f9dd3fd84686a476dc8afe285ac5c361ad5:log:26', 'hash': '0x4f11291c30f05e225224dcfde9270f9dd3fd84686a476dc8afe285ac5c361ad5', 'from': '0x4bc966c0b047278f3c02b52b5d0b9c6a7be35e93', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 39892.61077839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0872952ffed5d73f5c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0xaa6635a247daac79abef06c2ab7441c5b5a3819d1b888a1cd81b7a1133fadda0:log:27', 'hash': '0xaa6635a247daac79abef06c2ab7441c5b5a3819d1b888a1cd81b7a1133fadda0', 'from': '0x6285895b68669a5139644d5adb4f664b7b79e226', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6005.058425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x014588ed355fd7b49000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b20a', 'uniqueId': '0x5fb5bc182d1be5d2098c08f7bc46db63eae69ddee53a0c9e70aae298368a6a91:log:5', 'hash': '0x5fb5bc182d1be5d2098c08f7bc46db63eae69ddee53a0c9e70aae298368a6a91', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'value': 7907.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01acb12130c77dcd0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:20:13.000Z'}}, {'blockNum': '0x63b20a', 'uniqueId': '0x009617a3b8442ceee205c7623aaf94937c8fd8ccdbde8530dc2412937e18efb3:log:83', 'hash': '0x009617a3b8442ceee205c7623aaf94937c8fd8ccdbde8530dc2412937e18efb3', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x73cda4b2f7b1f9458633ec9a40be3c2230f3fc84', 'value': 1988.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6bc9349b88fd2c7960', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:20:13.000Z'}}, {'blockNum': '0x63b20c', 'uniqueId': '0x9016a123c8af76e7c05035361a80e2f9d7255d64b4755e941d0e5a66d63b7444:log:7', 'hash': '0x9016a123c8af76e7c05035361a80e2f9d7255d64b4755e941d0e5a66d63b7444', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe51f926179ad4c39fd27ecdf75293631c0e627bd', 'value': 763.66441268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x2965f90143d6b65000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:20:42.000Z'}}, {'blockNum': '0x63b20c', 'uniqueId': '0xd8c18f2f4e180e4af63eeb443f7954903d2f047d0ba012a60fb559a29a8037b0:log:8', 'hash': '0xd8c18f2f4e180e4af63eeb443f7954903d2f047d0ba012a60fb559a29a8037b0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x269b3d15f507a3577e555e3377fece12264b4943', 'value': 3949.96141428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xd620b9f27ec2f75000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:20:42.000Z'}}, {'blockNum': '0x63b20c', 'uniqueId': '0xe0ec96d82449988afc79c8acb9b88fff675ed783dcf33e7108cac22c180871b7:log:9', 'hash': '0xe0ec96d82449988afc79c8acb9b88fff675ed783dcf33e7108cac22c180871b7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf95f34f311b365b31fe56b94f705cdc78edc223c', 'value': 5691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0134827d8bca2c0c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:20:42.000Z'}}, {'blockNum': '0x63b20f', 'uniqueId': '0x7dd3dbeafded8688db05169a42d0dda58febee316172da6f83a704c388b227a0:log:0', 'hash': '0x7dd3dbeafded8688db05169a42d0dda58febee316172da6f83a704c388b227a0', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 18309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x03e0886abec2b2f40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:21:14.000Z'}}, {'blockNum': '0x63b212', 'uniqueId': '0x1498217dce5f755ae9f6a444e185c72a79aa6cafb359f168bb1e710bce85d151:log:7', 'hash': '0x1498217dce5f755ae9f6a444e185c72a79aa6cafb359f168bb1e710bce85d151', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x17f0ae4d42c81c93483d0973e6250abe0c31d1f8', 'value': 1958.12037489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6a26610a65652ba400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:22:36.000Z'}}, {'blockNum': '0x63b212', 'uniqueId': '0xdb6ab0c3e7b6687c9b7ccf3d3b27c71b6353dc196fcbe0ae4af7f281f850dfd6:log:8', 'hash': '0xdb6ab0c3e7b6687c9b7ccf3d3b27c71b6353dc196fcbe0ae4af7f281f850dfd6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 2168.07437829, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x758813801ab9537400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:22:36.000Z'}}, {'blockNum': '0x63b215', 'uniqueId': '0xdc6233d3b8b7bd30bceefb17966bbb4108f13563ef44902005663ef5f64729a3:log:9', 'hash': '0xdc6233d3b8b7bd30bceefb17966bbb4108f13563ef44902005663ef5f64729a3', 'from': '0x8c7d6ffaf732292ce786b0a09209422b8c3d7998', 'to': '0x83a5fe3972c096dac1a96adcc7f9a4e7d134fed0', 'value': 5103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0114a259e725b25c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:23:24.000Z'}}, {'blockNum': '0x63b215', 'uniqueId': '0x7829a84d212175d483bc1408ea88abd24a75acbe676d3d00573ff3a3b87da885:log:14', 'hash': '0x7829a84d212175d483bc1408ea88abd24a75acbe676d3d00573ff3a3b87da885', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x76a2aaa2e54ca4fac6af634e18a5e6a3d7c80991', 'value': 3524.09580686183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xbf0aa760e18b01ff80', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:23:24.000Z'}}, {'blockNum': '0x63b216', 'uniqueId': '0xcd0714028923de77536a90912f6569fd04abd5d195584554b885e7f39bb50db5:log:8', 'hash': '0xcd0714028923de77536a90912f6569fd04abd5d195584554b885e7f39bb50db5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xeb8f7b8c27732e00bef318441422000d8ccd1e54', 'value': 2068.92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x70280862645d2c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:23:40.000Z'}}, {'blockNum': '0x63b216', 'uniqueId': '0xfee1b302f95c697816b8eaf828df73f97dc0586cb5167a2ba7417a88ae0956b3:log:9', 'hash': '0xfee1b302f95c697816b8eaf828df73f97dc0586cb5167a2ba7417a88ae0956b3', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 2073.3676700252495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7065c1aeb71a4fd77f', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:23:40.000Z'}}, {'blockNum': '0x63b218', 'uniqueId': '0xf793232c3453c5ba786bb13539a3d5339f458b756cc1f34ae547d262e945d4b0:log:2', 'hash': '0xf793232c3453c5ba786bb13539a3d5339f458b756cc1f34ae547d262e945d4b0', 'from': '0x76a2aaa2e54ca4fac6af634e18a5e6a3d7c80991', 'to': '0xeb423ee26757e0393e33854d73cf8d194969a59a', 'value': 3524.09580686183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xbf0aa760e18b01ff80', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:24:03.000Z'}}, {'blockNum': '0x63b219', 'uniqueId': '0xb1258edda0058f912bf7fc77d82ce756e710d073d66df7d8a1e195437134ce42:log:0', 'hash': '0xb1258edda0058f912bf7fc77d82ce756e710d073d66df7d8a1e195437134ce42', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4e41169d8db09a64cf618719442f69d3ca270f1f', 'value': 1762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5f84a980861e480000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:24:17.000Z'}}, {'blockNum': '0x63b219', 'uniqueId': '0xbc563d5064e2ff7baf06a6c7be4d98904673a793ea2344399507d8da4a303877:log:1', 'hash': '0xbc563d5064e2ff7baf06a6c7be4d98904673a793ea2344399507d8da4a303877', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4395b47280917914e04ec507593e110b81dbbaa2', 'value': 10008.4588115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x021e8f4485f8c9bd3800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:24:17.000Z'}}, {'blockNum': '0x63b21e', 'uniqueId': '0x365bc0a82ecfb772b935839455ee3c31939028979ebb12d479708d89049ee38f:log:6', 'hash': '0x365bc0a82ecfb772b935839455ee3c31939028979ebb12d479708d89049ee38f', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0ec6f7a6b489585c026427fcb6ab9667f882c784', 'value': 357698.4167916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4bbedeba38865b25e000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:27:20.000Z'}}, {'blockNum': '0x63b21e', 'uniqueId': '0x5ee98d2465c5c0ab127bf2607379578b61828e6942a0f99aac17433de8f37776:log:7', 'hash': '0x5ee98d2465c5c0ab127bf2607379578b61828e6942a0f99aac17433de8f37776', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0bc3221c1619b19653dd514d5100d298df569ce9', 'value': 18.17804459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xfc45633e42294c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:27:20.000Z'}}, {'blockNum': '0x63b21e', 'uniqueId': '0x0bac679c2e499a64539945d6a145c6b35a56173d846d1e77097a56b8e0a39faf:log:19', 'hash': '0x0bac679c2e499a64539945d6a145c6b35a56173d846d1e77097a56b8e0a39faf', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x950c5e88436da0eae5c877c912edb70a03f1c360', 'value': 2073.3676700252495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7065c1aeb71a4fd77f', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:27:20.000Z'}}, {'blockNum': '0x63b21f', 'uniqueId': '0x56b0634265f412e2fcc6d0c03949ef7cbf1bbaf799f37214a3facf655ccd0625:log:25', 'hash': '0x56b0634265f412e2fcc6d0c03949ef7cbf1bbaf799f37214a3facf655ccd0625', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'value': 8072.47, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01b59c0697388d8f0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:27:26.000Z'}}, {'blockNum': '0x63b21f', 'uniqueId': '0xa7e6e1977319736fc821626e5b7abe69a3314c1de9aa3934999200766b1b8244:log:27', 'hash': '0xa7e6e1977319736fc821626e5b7abe69a3314c1de9aa3934999200766b1b8244', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x535b78da570d960db73436102bf55aed4204ddd9', 'value': 989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x359d21d40dad540000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:27:26.000Z'}}, {'blockNum': '0x63b221', 'uniqueId': '0x7552657190e419e327d7c663026edf26100d96f771a63014781774cd45ffdfc3:log:130', 'hash': '0x7552657190e419e327d7c663026edf26100d96f771a63014781774cd45ffdfc3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf95f34f311b365b31fe56b94f705cdc78edc223c', 'value': 5732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0136bb7ace8ffb100000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:28:17.000Z'}}, {'blockNum': '0x63b221', 'uniqueId': '0x86dfb5dd7c8975400248ea8fa7416c72c0a621aaadba57aed814f8d1d34a62e8:log:132', 'hash': '0x86dfb5dd7c8975400248ea8fa7416c72c0a621aaadba57aed814f8d1d34a62e8', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'value': 4326.7151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xea8d3beb87eab9c000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:28:17.000Z'}}, {'blockNum': '0x63b223', 'uniqueId': '0x094df9e5bb5d23f0ff3f60b5c0262fd771a7dc4e91d8671718bc75cd506552b9:log:40', 'hash': '0x094df9e5bb5d23f0ff3f60b5c0262fd771a7dc4e91d8671718bc75cd506552b9', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x461f5586a9f6700bf8a968a74cc0ba8239929c9e', 'value': 285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0f732b66015a540000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:28:33.000Z'}}, {'blockNum': '0x63b224', 'uniqueId': '0xcfac14090767527af6ee606580035a116189fea1d0a9123d1d3d5b2c4348d026:log:0', 'hash': '0xcfac14090767527af6ee606580035a116189fea1d0a9123d1d3d5b2c4348d026', 'from': '0x2ef5625a8acecfdcbcdcff13a049152793da8cc9', 'to': '0x01b596aee21a283a35582425ff93c1df5d6c15c7', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:28:45.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x2997d9d96ecad91c00341ef14596fd9d1eac6ec595e197763e2a0ebdaaf4d432:log:0', 'hash': '0x2997d9d96ecad91c00341ef14596fd9d1eac6ec595e197763e2a0ebdaaf4d432', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x8051cd54161d25bc37134dbcbc09af514c0255d8', 'value': 5358.4596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01227b90b7dd41bd0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0xfc7521bcaef28ad0f6463f32258c9d4b273d34baad4494666f683c0c059b4ac6:log:3', 'hash': '0xfc7521bcaef28ad0f6463f32258c9d4b273d34baad4494666f683c0c059b4ac6', 'from': '0x490e3a01cdccf6cf240837b3de70b8c99ebd9fc7', 'to': '0xe5967a51c2f63d8dbfcc511acf1978f5250be713', 'value': 2565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x8b0c86960c2cf40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x81cbf1856c466a2854f776eec50d2bd6578f96bee9650c6f690c1e7d936be73b:log:10', 'hash': '0x81cbf1856c466a2854f776eec50d2bd6578f96bee9650c6f690c1e7d936be73b', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3942.47937828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xd5b8e46a650a481000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x731e57fbbf095faf59eaf324db3d202a9b35874c83b08ca0534e49283b87a1cf:log:12', 'hash': '0x731e57fbbf095faf59eaf324db3d202a9b35874c83b08ca0534e49283b87a1cf', 'from': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23689.61264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0504376adf220bb60000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0xd564823b5d63ab07295733b556cdb01ef72a07ecdb427e611a16cc58aaad8c12:log:16', 'hash': '0xd564823b5d63ab07295733b556cdb01ef72a07ecdb427e611a16cc58aaad8c12', 'from': '0x967c6cc4eda2d5e77a1d359d8f6342011d4a3573', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1054.1187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3924d5ecb0948ec000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x7f58e192146341ab46d825f70187e958c8ba381854cd842d7b407c171722fe5b:log:17', 'hash': '0x7f58e192146341ab46d825f70187e958c8ba381854cd842d7b407c171722fe5b', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17912.75922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x03cb0d78b4b9633f4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x413a3b9ac4e91e1ac94368f896f2b8d583cd6f0ee6c241d9b293e40524eee51d:log:19', 'hash': '0x413a3b9ac4e91e1ac94368f896f2b8d583cd6f0ee6c241d9b293e40524eee51d', 'from': '0xa4aa2fcd6214c8c868d4334127ac11051dd583d3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2033.57852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6e3d92399448998000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x50e351c29e70cc7a050b616655c3a4ca46c1370c05f0c8491d4a0f0f0f8bf87f:log:20', 'hash': '0x50e351c29e70cc7a050b616655c3a4ca46c1370c05f0c8491d4a0f0f0f8bf87f', 'from': '0x1abc665ac6302a1ec9d286d4c2897c95cf64a756', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 48052.9974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0a2cf54d2b9bb9498000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x12962ff762fef1615060be3c169c0a2c40d124a8e35a697d097d24ba79181cf3:log:21', 'hash': '0x12962ff762fef1615060be3c169c0a2c40d124a8e35a697d097d24ba79181cf3', 'from': '0x40eb8da68712a2998af3c428f211723430fa4449', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15201.60386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x033814a1f91ef2f54000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0xdae4549a0f5200b751e81d83b0e48ecec4a28641c18627d0661a671eec7cbdd9:log:22', 'hash': '0xdae4549a0f5200b751e81d83b0e48ecec4a28641c18627d0661a671eec7cbdd9', 'from': '0xcfef471878edc247692a952553f14965f78f83fd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3897.654474330969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xd34ad25dbedd4b3bf9', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x9835097031fe322722f5929cee3461f03d7c70c42b029bb34e8ef9401c1f45ab:log:24', 'hash': '0x9835097031fe322722f5929cee3461f03d7c70c42b029bb34e8ef9401c1f45ab', 'from': '0x4e41169d8db09a64cf618719442f69d3ca270f1f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xbe62ca70a063e00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x56a71b3750bc34a092c18d3149bb95c0f01ab2e39f8bbf73e27b83bf21865f49:log:25', 'hash': '0x56a71b3750bc34a092c18d3149bb95c0f01ab2e39f8bbf73e27b83bf21865f49', 'from': '0x1cd27134394c70d7663f1ee271b9e37a4fbb85dc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34860.83652675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0761cf4ac873880cac00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x9502ce5319184738f1e7213f8d1498903c8c368b8bdf14aceb04abf56822bc84:log:26', 'hash': '0x9502ce5319184738f1e7213f8d1498903c8c368b8bdf14aceb04abf56822bc84', 'from': '0x6fdc6a397615545d91600adbf435e00f0ae97cd7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37846.59912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0803ab1263c3936d0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0xde10701d1fdd36e0dfffe9af39e52a57dc1c082ba1da9da9859a772ef5a2911b:log:27', 'hash': '0xde10701d1fdd36e0dfffe9af39e52a57dc1c082ba1da9da9859a772ef5a2911b', 'from': '0xf63f197e4cacabade5ad93636213a43c7d1a1473', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 357482.86074835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4bb32f495140fa28ec00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0xadbdc5c0af9e41dfcbca3eff7b9b45f6e66cc9f71c095f47d0e79eaa62c12aa8:log:28', 'hash': '0xadbdc5c0af9e41dfcbca3eff7b9b45f6e66cc9f71c095f47d0e79eaa62c12aa8', 'from': '0xe5d3ba1018d1a3a224c81d6a7cc531703627e1df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21026.88872993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0473deb336a3e6306400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x2a4c4767ef0007cc0bf213976ebef66e7c61305502a2695583a186005de7dead:log:29', 'hash': '0x2a4c4767ef0007cc0bf213976ebef66e7c61305502a2695583a186005de7dead', 'from': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20307.1551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x044cda63b387f615c000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x5e43d490f30e47b1525291bf59c71a9e258af67b71e468cff2de87caa62b9f6f:log:30', 'hash': '0x5e43d490f30e47b1525291bf59c71a9e258af67b71e468cff2de87caa62b9f6f', 'from': '0xc7e029158a140a91f24c151e7fb5fd3f7c09524d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x79a5c17ec748900000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x9a3f3bb038c1bcb129ef53ee2a36c4665af59c4be0ad83be935d3ab9f55c0eba:log:31', 'hash': '0x9a3f3bb038c1bcb129ef53ee2a36c4665af59c4be0ad83be935d3ab9f55c0eba', 'from': '0xf709dc519423a3a9fd50588abde00d676a6f24f3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 52806.12250847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0b2ea029c2a029ab9c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x25cd2d779e7d8f4e11852356233e19a84ad5f9078269d4b90fb888f5266477fd:log:32', 'hash': '0x25cd2d779e7d8f4e11852356233e19a84ad5f9078269d4b90fb888f5266477fd', 'from': '0x6f616d9579ad49b99a9b0794ef69f63066b1561f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1819.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x629e78b9771ea00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x6dbc2bf7672f2d91d1ab4d8e721c6acc0ca51559ce77a5819b60c1742ebf5cca:log:33', 'hash': '0x6dbc2bf7672f2d91d1ab4d8e721c6acc0ca51559ce77a5819b60c1742ebf5cca', 'from': '0x4395b47280917914e04ec507593e110b81dbbaa2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10008.4588115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x021e8f4485f8c9bd3800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0xeb6a1386c8f7bc61e5888dc1ad1132e804c5b5615d51c2784d81392deaae55e0:log:34', 'hash': '0xeb6a1386c8f7bc61e5888dc1ad1132e804c5b5615d51c2784d81392deaae55e0', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 75549.02759664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0fff855fc33da685c000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x86b0a3059432ffb04b8c805a9cf246a4c2cff1ec44ad00b29a39236d0fafe419:log:35', 'hash': '0x86b0a3059432ffb04b8c805a9cf246a4c2cff1ec44ad00b29a39236d0fafe419', 'from': '0xd001717bf6efa603787424902d54daf1a19c06ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5b04ce4446d8dc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x490c1a1122c34272cf55df194e56387b4a811f54b647d6d216394084d5aa3a4f:log:36', 'hash': '0x490c1a1122c34272cf55df194e56387b4a811f54b647d6d216394084d5aa3a4f', 'from': '0x3e7db0bdc36a1ded5892b1970f1f0f612fb8ea9a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0c11ec06fa5aea3c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x2b18dd385391d0bbec37b2fcdb0617e3be5681563fc2f2578bf97187dd8f3ae2:log:37', 'hash': '0x2b18dd385391d0bbec37b2fcdb0617e3be5681563fc2f2578bf97187dd8f3ae2', 'from': '0x3300482bfd2418361b6e0c52fccf49ebdd718eb3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x012895608966521c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x8cc0af8d4f1bf0735a865b6ee58ed32a6cb8dff1c9e83f8c6fdb8c3d753cda7d:log:38', 'hash': '0x8cc0af8d4f1bf0735a865b6ee58ed32a6cb8dff1c9e83f8c6fdb8c3d753cda7d', 'from': '0x793e3c4acca8404260ef34bce9f49a98fe0bd7d1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5798.600000000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x013a57bd89b354234240', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x42adc6b54f5cbf66234737c49d2383df71b156359e05bb43b5eaceedf47320f7:log:39', 'hash': '0x42adc6b54f5cbf66234737c49d2383df71b156359e05bb43b5eaceedf47320f7', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x03e0886abec2b2f40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x34b9a1f454b1d3403db14a1e974cefe537e8aa5b2b115911ed5278f97933c395:log:40', 'hash': '0x34b9a1f454b1d3403db14a1e974cefe537e8aa5b2b115911ed5278f97933c395', 'from': '0x2ad603904851b49b85deaf1d9a2a6f08a900d556', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1379.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4ac8688518835e0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0xb6d1688f195b98be17e0430e3983809155ec0f23096bf242de1e603535add61f:log:41', 'hash': '0xb6d1688f195b98be17e0430e3983809155ec0f23096bf242de1e603535add61f', 'from': '0x2c7fb08a352d3480f1c63f7a31a8ebe6aa0f9954', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3122.93722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xa94b75c78f39ec4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x221150e70940feb912cde7573a554ed943f534499593acdd17fcd1d431e716d6:log:42', 'hash': '0x221150e70940feb912cde7573a554ed943f534499593acdd17fcd1d431e716d6', 'from': '0xe51f926179ad4c39fd27ecdf75293631c0e627bd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1481.08851377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x504a3b6c216c18a400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x4fee104563c89754aa60f9c9fc52d47276cc5a8a7411959d0dc522f204b15bb7:log:43', 'hash': '0x4fee104563c89754aa60f9c9fc52d47276cc5a8a7411959d0dc522f204b15bb7', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb23eac7f5f7b8e1c76cf9ed15ccb2b22789a45be', 'value': 12687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02afc37e7164a4dc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b227', 'uniqueId': '0x051bb37043a33400cc401611c91fe57b293d2a22fdcab5f74653fd2c091b6338:log:20', 'hash': '0x051bb37043a33400cc401611c91fe57b293d2a22fdcab5f74653fd2c091b6338', 'from': '0xe7878ca0b3f7b0057a106f6190af7570a6a9a832', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 889.7901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x303c5175a3d74d4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:44.000Z'}}, {'blockNum': '0x63b229', 'uniqueId': '0x37e2a4c68fa8e71b8add67ac48b3b4c6f256ce321e19b3c06fac326cc816c07d:log:0', 'hash': '0x37e2a4c68fa8e71b8add67ac48b3b4c6f256ce321e19b3c06fac326cc816c07d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0ff125d9e6619eded842bebe9a6f60bcb4aaac6b', 'value': 28484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06081ee86d4cd2900000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:30:07.000Z'}}, {'blockNum': '0x63b229', 'uniqueId': '0xd6c92b81f941e6c9b43bdd82665750d23e2031f000ecd0ded6ac4d247764bd91:log:1', 'hash': '0xd6c92b81f941e6c9b43bdd82665750d23e2031f000ecd0ded6ac4d247764bd91', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'value': 5664.18920331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01330e6a763ff760cc00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:30:07.000Z'}}, {'blockNum': '0x63b229', 'uniqueId': '0xd089ec66d61b01e07373f089c3dc1098a14bce14aba6beea92224d7c6a401b0f:log:2', 'hash': '0xd089ec66d61b01e07373f089c3dc1098a14bce14aba6beea92224d7c6a401b0f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x55b71d6782040615eaf2746a0f959014bdfdc232', 'value': 1280.71869472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x456d8ad34f338c8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:30:07.000Z'}}, {'blockNum': '0x63b229', 'uniqueId': '0x74243d800e6f7df78bad30af24f184d80d7b93b89db0d5639dc39a8fcdec7efe:log:3', 'hash': '0x74243d800e6f7df78bad30af24f184d80d7b93b89db0d5639dc39a8fcdec7efe', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 28866.82287548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x061cdfa47e44418f7000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:30:07.000Z'}}, {'blockNum': '0x63b229', 'uniqueId': '0xa29df6fc037ad39075fb50df63c785556b0a43b12f3f02938b9a71eefc045c35:log:4', 'hash': '0xa29df6fc037ad39075fb50df63c785556b0a43b12f3f02938b9a71eefc045c35', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdbf9af083ac99e7830afe9ed151e7e988ed52ec8', 'value': 130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x070c1cc73b00c80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:30:07.000Z'}}, {'blockNum': '0x63b22c', 'uniqueId': '0x3d9ff277805214781ddd7d946bbd2bcb970af90921e38681242fcb62f6bb0b6a:log:3', 'hash': '0x3d9ff277805214781ddd7d946bbd2bcb970af90921e38681242fcb62f6bb0b6a', 'from': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x03ad5bc9084972340000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:30:37.000Z'}}, {'blockNum': '0x63b22c', 'uniqueId': '0xb6c88ab1cd8e839b24917d4346c52e399acd8b5e970d0825846bf03a998dd77e:log:7', 'hash': '0xb6c88ab1cd8e839b24917d4346c52e399acd8b5e970d0825846bf03a998dd77e', 'from': '0x95f86e6c1ddbc82fee6316314f9edef4713ffaaf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 94091.46499404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x13ecb562be21e02bb000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:30:37.000Z'}}, {'blockNum': '0x63b22e', 'uniqueId': '0xb5add8ab7bf2470754ee22d510735135e167156b4ff26ce3bbd26877245dfc37:log:11', 'hash': '0xb5add8ab7bf2470754ee22d510735135e167156b4ff26ce3bbd26877245dfc37', 'from': '0xaea424a9c42986d1431957afcb01c4fa78d99df8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1442.83654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4e37611ca785afc000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:30:58.000Z'}}, {'blockNum': '0x63b230', 'uniqueId': '0xa501d6c5e1fe4fb14fb25d88b1e4084e6a01dceefd2c4191df19de0ed714e061:log:10', 'hash': '0xa501d6c5e1fe4fb14fb25d88b1e4084e6a01dceefd2c4191df19de0ed714e061', 'from': '0x9fd8a7e073212bfc1c19f7d83fe558d4a22bfe81', 'to': '0x5d5e37325bf71dd65680041beb65396ac3bfbdad', 'value': 2800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x97c9ce4cf6d5c00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:31:19.000Z'}}, {'blockNum': '0x63b234', 'uniqueId': '0x6f794c6d6a9ec62c77cfe38bb07b63f06431f732e9604fcbf161e254c0e80331:log:1', 'hash': '0x6f794c6d6a9ec62c77cfe38bb07b63f06431f732e9604fcbf161e254c0e80331', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 59154.95236896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0c86cbe07332f4f08000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:32:11.000Z'}}, {'blockNum': '0x63b234', 'uniqueId': '0x760418dd5fe99df4e596232b97f645100682278bdcaf4f9e1fb6b1a53349a4a7:log:2', 'hash': '0x760418dd5fe99df4e596232b97f645100682278bdcaf4f9e1fb6b1a53349a4a7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 39436.63491265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0859dd404ccef756e400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:32:11.000Z'}}, {'blockNum': '0x63b236', 'uniqueId': '0xdebfadb7fd919b13b53eb73563909579e96d6b99aa3d0eeac91c7207845ef0c6:log:4', 'hash': '0xdebfadb7fd919b13b53eb73563909579e96d6b99aa3d0eeac91c7207845ef0c6', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x4504444270c138a59e276e17594ad31fb5667f42', 'value': 5667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0133356c6af27aac0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:32:44.000Z'}}, {'blockNum': '0x63b237', 'uniqueId': '0xde148ec53b38dd6e85f2d9e573836cafc05e93d768311d2c83c6c3bf23aaef91:log:2', 'hash': '0xde148ec53b38dd6e85f2d9e573836cafc05e93d768311d2c83c6c3bf23aaef91', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x535b78da570d960db73436102bf55aed4204ddd9', 'value': 3980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xd7c198710e66b00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:33:10.000Z'}}, {'blockNum': '0x63b23c', 'uniqueId': '0xa510c69797fd892ff15004b9f7af95c48d1c7b13bb63a25fd2b647b3c1c8f490:log:4', 'hash': '0xa510c69797fd892ff15004b9f7af95c48d1c7b13bb63a25fd2b647b3c1c8f490', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x175818d253a1c00dedcadcc59b65fd53363b6603', 'value': 28345.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0600a35b5b9d47650000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:34:12.000Z'}}, {'blockNum': '0x63b23c', 'uniqueId': '0x8dd83783947e5650ffb73784b6b35a0389b0c41de8d526d6c7618e74866c8d5b:log:89', 'hash': '0x8dd83783947e5650ffb73784b6b35a0389b0c41de8d526d6c7618e74866c8d5b', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x55087abd678d0d5140a5f65cde589099bbccb19b', 'value': 5492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0129b8cf86230d500000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:34:12.000Z'}}, {'blockNum': '0x63b23d', 'uniqueId': '0xc08b2634dcdb5d41d145a87f9e16b75e24f6111bc09d39f0d1ab13c194d768aa:log:0', 'hash': '0xc08b2634dcdb5d41d145a87f9e16b75e24f6111bc09d39f0d1ab13c194d768aa', 'from': '0xd39dc2a2915aa94d2f03e9aa6d654d2e52239016', 'to': '0x0159c8618bb1f81ce2066095bbca31efe79ead5f', 'value': 560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1e5b8fa8fe2ac00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:34:22.000Z'}}, {'blockNum': '0x63b244', 'uniqueId': '0x4b4c6c9b1439f777bd71a27e081f65e1817ffbce3fc9a53d30b0d15c4ddd81b8:log:4', 'hash': '0x4b4c6c9b1439f777bd71a27e081f65e1817ffbce3fc9a53d30b0d15c4ddd81b8', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xcc050a9dd24f97c23410a8ade625a52d6232145a', 'value': 107567.69438089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x16c741a339595aa10400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:36:17.000Z'}}, {'blockNum': '0x63b244', 'uniqueId': '0x92a769827ff6a04376450cd12e889f46d7d7289347fe22cc87fb36ee687bf334:log:16', 'hash': '0x92a769827ff6a04376450cd12e889f46d7d7289347fe22cc87fb36ee687bf334', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9e8049a8193ab55775b9601a87584562ac9b76c3', 'value': 98.395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x055581432e528f8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:36:17.000Z'}}, {'blockNum': '0x63b244', 'uniqueId': '0x318450095d7ea6e89399cf9ad544fd273d2158520306a723826a87f54a43bca5:log:165', 'hash': '0x318450095d7ea6e89399cf9ad544fd273d2158520306a723826a87f54a43bca5', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xd5d93e4b2dc59141138f73080c7659f4c765bbe2', 'value': 571.0664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1ef523692919220000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:36:17.000Z'}}, {'blockNum': '0x63b248', 'uniqueId': '0x297ac0d80639d83d8e9be81122eb2c8c617268782786d6788aefc9de19fe7c7d:log:2', 'hash': '0x297ac0d80639d83d8e9be81122eb2c8c617268782786d6788aefc9de19fe7c7d', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xcc050a9dd24f97c23410a8ade625a52d6232145a', 'value': 107800.26819923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x16d3dd3f68e67e8eec00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:36:45.000Z'}}, {'blockNum': '0x63b24b', 'uniqueId': '0xd5eb081688d1d9621dd591c34d7db0d4f8c4e7a168c3f6f1150f37485735f805:log:26', 'hash': '0xd5eb081688d1d9621dd591c34d7db0d4f8c4e7a168c3f6f1150f37485735f805', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x1c391cf7f5b214951cbb87f6c4a31bfc40c61dd9', 'value': 2103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7200fcddd4167c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:37:08.000Z'}}, {'blockNum': '0x63b24c', 'uniqueId': '0x67f414284a24efd7c4787d5a6a93ae5d2419a7e186da2fb2555e1ba6400bdb5e:log:142', 'hash': '0x67f414284a24efd7c4787d5a6a93ae5d2419a7e186da2fb2555e1ba6400bdb5e', 'from': '0x43a5b1be13c083a858b217989b27b0246548791a', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 210.8660752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0b6e5aca2d94ce8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:37:26.000Z'}}, {'blockNum': '0x63b24c', 'uniqueId': '0xc325caa1010621fdc7114cfb4d7e0cbc949bedb759374094f5e20074f3200c26:log:143', 'hash': '0xc325caa1010621fdc7114cfb4d7e0cbc949bedb759374094f5e20074f3200c26', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0x9e8049a8193ab55775b9601a87584562ac9b76c3', 'value': 126.31734850584814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06d9015f35444c5e5f', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:37:26.000Z'}}, {'blockNum': '0x63b24f', 'uniqueId': '0xfd1df604477cce750b854b42971dafcb1e96e8a0d16dcd6c3f21369f32d3b2bb:log:21', 'hash': '0xfd1df604477cce750b854b42971dafcb1e96e8a0d16dcd6c3f21369f32d3b2bb', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0x7a63b4bcca591a3a79ee907c27bd6ca5a6ce2417', 'value': 4136.78934221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xe0417c151738e59400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:38:08.000Z'}}, {'blockNum': '0x63b251', 'uniqueId': '0x3e94fb5abcbe3fc2a0d8488f8c7179372d85942afc2a55faf1bc845ca49d2671:log:0', 'hash': '0x3e94fb5abcbe3fc2a0d8488f8c7179372d85942afc2a55faf1bc845ca49d2671', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 37799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0801168058509e3c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:38:54.000Z'}}, {'blockNum': '0x63b253', 'uniqueId': '0xc36c2f2b93059ccb94d4e8c1611b266e8b31601286cb0bffd4ac66259c73f6ae:log:21', 'hash': '0xc36c2f2b93059ccb94d4e8c1611b266e8b31601286cb0bffd4ac66259c73f6ae', 'from': '0x79e4377bf165c4b62b0316301f64ce695866bfeb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36243.36006421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x07acc1a910d8f7cdb400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:39:48.000Z'}}, {'blockNum': '0x63b253', 'uniqueId': '0xab41b02f87731d609c53c73f0f0227e882cb12367e20749c249fc24693731c15:log:26', 'hash': '0xab41b02f87731d609c53c73f0f0227e882cb12367e20749c249fc24693731c15', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 127458.41015709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1afd88c53e462dd6d400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:39:48.000Z'}}, {'blockNum': '0x63b253', 'uniqueId': '0x404b85c5a4b731bf5b9ca6f819ec2aa77d02f32dd2900c76521abe647f31e46c:log:27', 'hash': '0x404b85c5a4b731bf5b9ca6f819ec2aa77d02f32dd2900c76521abe647f31e46c', 'from': '0xf95f34f311b365b31fe56b94f705cdc78edc223c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x043acaef053664580000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:39:48.000Z'}}, {'blockNum': '0x63b253', 'uniqueId': '0xdced4234813c2e604ad88017d603f6847e11cc51972e50a31b39098b0dcbcfc8:log:28', 'hash': '0xdced4234813c2e604ad88017d603f6847e11cc51972e50a31b39098b0dcbcfc8', 'from': '0x269b3d15f507a3577e555e3377fece12264b4943', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3949.96141428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xd620b9f27ec2f75000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:39:48.000Z'}}, {'blockNum': '0x63b253', 'uniqueId': '0x6d8fbb8ba7393f90a079cda3e32046c8c8cf90b5a9aa18276eefaad2caf64e28:log:29', 'hash': '0x6d8fbb8ba7393f90a079cda3e32046c8c8cf90b5a9aa18276eefaad2caf64e28', 'from': '0x0ec6f7a6b489585c026427fcb6ab9667f882c784', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 357698.4167916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4bbedeba38865b25e000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:39:48.000Z'}}, {'blockNum': '0x63b253', 'uniqueId': '0x75b5299bc8872f8bb009babebaa4061d18edf41df235b8394ec2fae70366c5fd:log:37', 'hash': '0x75b5299bc8872f8bb009babebaa4061d18edf41df235b8394ec2fae70366c5fd', 'from': '0x73cda4b2f7b1f9458633ec9a40be3c2230f3fc84', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1988.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6bc9349b88fd2c7960', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:39:48.000Z'}}, {'blockNum': '0x63b253', 'uniqueId': '0xd5ccfe878cdbb3d672a6f16213558d222d824d1bd5f5a8313accfd7317aed1ef:log:39', 'hash': '0xd5ccfe878cdbb3d672a6f16213558d222d824d1bd5f5a8313accfd7317aed1ef', 'from': '0x55087abd678d0d5140a5f65cde589099bbccb19b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7017.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x017c69fcf838aa2c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:39:48.000Z'}}, {'blockNum': '0x63b253', 'uniqueId': '0x5239274f7f1c9bb6b56a2a3126a16e67ff5cb358960cd646107daaadcd4da724:log:41', 'hash': '0x5239274f7f1c9bb6b56a2a3126a16e67ff5cb358960cd646107daaadcd4da724', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0801168058509e3c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:39:48.000Z'}}, {'blockNum': '0x63b253', 'uniqueId': '0x42b164feab7d1bca6da087980bd6dd07f7c5637950710118a67e2933bafc7f74:log:42', 'hash': '0x42b164feab7d1bca6da087980bd6dd07f7c5637950710118a67e2933bafc7f74', 'from': '0x269b268e501c280244d64479caac62d107444144', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6740, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x016d604a31f314d00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:39:48.000Z'}}, {'blockNum': '0x63b254', 'uniqueId': '0xdc6c022cd4d51d0afaa218996da30858b7cd689f1c00ea51ac0900f1db785287:log:6', 'hash': '0xdc6c022cd4d51d0afaa218996da30858b7cd689f1c00ea51ac0900f1db785287', 'from': '0x25e6ce3e76b6e7ebaae0b92fcf5177f433f43676', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2334.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7e8db21549f56a0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:39:59.000Z'}}, {'blockNum': '0x63b255', 'uniqueId': '0x611b3364b9b76120f04086368e9ea326665f1910c8e3ebaa42fc32df060a997b:log:9', 'hash': '0x611b3364b9b76120f04086368e9ea326665f1910c8e3ebaa42fc32df060a997b', 'from': '0x0bc3221c1619b19653dd514d5100d298df569ce9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18.17804459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xfc45633e42294c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:40:22.000Z'}}, {'blockNum': '0x63b25f', 'uniqueId': '0x5a29c52d952d2a1d5536892e80b27b810c5678e2af41842602e2b895257dce25:log:93', 'hash': '0x5a29c52d952d2a1d5536892e80b27b810c5678e2af41842602e2b895257dce25', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xc3f6d7dc769b025b2add0c12b6bb2dccb29b1e81', 'value': 32538.56379856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06e3eb48b21739d54000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:41:53.000Z'}}, {'blockNum': '0x63b260', 'uniqueId': '0x54d97f7cccfdf9f311be4f9cb7c2e0b2fdb84e79a337772402c2b3837ca3d532:log:0', 'hash': '0x54d97f7cccfdf9f311be4f9cb7c2e0b2fdb84e79a337772402c2b3837ca3d532', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xf293e1755758bcbb0c2061497f90f781b970a29d', 'value': 32963.30401411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06faf1bd11c36a6dac00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:42:22.000Z'}}, {'blockNum': '0x63b260', 'uniqueId': '0x05b5219c878b701f1affabf9f6ed3103fee8bedb0344ec3954910e25af37d513:log:1', 'hash': '0x05b5219c878b701f1affabf9f6ed3103fee8bedb0344ec3954910e25af37d513', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x2607a3fc9fbf124a8fe6625eb3a10d5e8d205d1f', 'value': 10954.05243647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0251d203ede98c881c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:42:22.000Z'}}, {'blockNum': '0x63b260', 'uniqueId': '0x0b98ede95d8cdd6bd7f88e2fbeba5b20463f3d09e34f9781e5291fe506851ec7:log:2', 'hash': '0x0b98ede95d8cdd6bd7f88e2fbeba5b20463f3d09e34f9781e5291fe506851ec7', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xd4dc63e1e63218beefcde69ffbd28a41511974f7', 'value': 16772.34267714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x038d3b03412dc5e8c800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:42:22.000Z'}}, {'blockNum': '0x63b260', 'uniqueId': '0xb16276b86b9381f3b88b8a983688b2d0a7a952644deebf6e6120544ba88d2c69:log:3', 'hash': '0xb16276b86b9381f3b88b8a983688b2d0a7a952644deebf6e6120544ba88d2c69', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4e41169d8db09a64cf618719442f69d3ca270f1f', 'value': 1765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5fae4ba4a114740000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:42:22.000Z'}}, {'blockNum': '0x63b270', 'uniqueId': '0x5914f7050ecffc994d717de5e22709318a8a3c7fec06f6b9de8d29b9095aed34:log:3', 'hash': '0x5914f7050ecffc994d717de5e22709318a8a3c7fec06f6b9de8d29b9095aed34', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5903ef129da0aebe70ba6c385c792d8f5e1c067f', 'value': 59360.15971282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0c91ebb3633461ad0800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:46:22.000Z'}}, {'blockNum': '0x63b27b', 'uniqueId': '0xc06cdb3c181d8fde1dadb994827f0d6510ca3c33595ec5b725f561f58be46931:log:0', 'hash': '0xc06cdb3c181d8fde1dadb994827f0d6510ca3c33595ec5b725f561f58be46931', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa6c4a90574a53640f88a1ca34d25b153c3c597fb', 'value': 3066.32938462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xa639de5933d93bb800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:48:50.000Z'}}, {'blockNum': '0x63b27e', 'uniqueId': '0x4b972ce9e1d3a7b06c2a32da21fc6488d94d42cea4d4227cfb4af8a9488d5a10:log:0', 'hash': '0x4b972ce9e1d3a7b06c2a32da21fc6488d94d42cea4d4227cfb4af8a9488d5a10', 'from': '0x175818d253a1c00dedcadcc59b65fd53363b6603', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28345.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0600a35b5b9d47650000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:03.000Z'}}, {'blockNum': '0x63b27f', 'uniqueId': '0xa7d9950b5575d071b3ab73608614e3e4444425326dca3ebf05fbf9fda520b576:log:0', 'hash': '0xa7d9950b5575d071b3ab73608614e3e4444425326dca3ebf05fbf9fda520b576', 'from': '0x55b71d6782040615eaf2746a0f959014bdfdc232', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1280.71869472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x456d8ad34f338c8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:05.000Z'}}, {'blockNum': '0x63b27f', 'uniqueId': '0x237c8c049db6be3ad41bfd7cfe67a99755863ff70ec62271a828b504235a2f5a:log:18', 'hash': '0x237c8c049db6be3ad41bfd7cfe67a99755863ff70ec62271a828b504235a2f5a', 'from': '0x8051cd54161d25bc37134dbcbc09af514c0255d8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5358.4596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01227b90b7dd41bd0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:05.000Z'}}, {'blockNum': '0x63b27f', 'uniqueId': '0xf6d6cd15fe65d42239130882390b72759fc82dd46bd7f13321b99a322cc5510b:log:19', 'hash': '0xf6d6cd15fe65d42239130882390b72759fc82dd46bd7f13321b99a322cc5510b', 'from': '0x01b596aee21a283a35582425ff93c1df5d6c15c7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:05.000Z'}}, {'blockNum': '0x63b27f', 'uniqueId': '0x3aa4028a52bfb783cec35baa2826a134752629734edd84eef58f15171c3cbce7:log:21', 'hash': '0x3aa4028a52bfb783cec35baa2826a134752629734edd84eef58f15171c3cbce7', 'from': '0x4e41169d8db09a64cf618719442f69d3ca270f1f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5fae4ba4a114740000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:05.000Z'}}, {'blockNum': '0x63b27f', 'uniqueId': '0x14cceebeab94dfb3a1cd499999be2ec9f083bd702af5c06fb726eda4e11f613b:log:22', 'hash': '0x14cceebeab94dfb3a1cd499999be2ec9f083bd702af5c06fb726eda4e11f613b', 'from': '0x83a5fe3972c096dac1a96adcc7f9a4e7d134fed0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0114a259e725b25c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:05.000Z'}}, {'blockNum': '0x63b27f', 'uniqueId': '0xab2aee66f05468c0031a8f26ca512eb415f94fe4a0c7e51b81880c5a1ee760fc:log:33', 'hash': '0xab2aee66f05468c0031a8f26ca512eb415f94fe4a0c7e51b81880c5a1ee760fc', 'from': '0x461f5586a9f6700bf8a968a74cc0ba8239929c9e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0f732b66015a540000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:05.000Z'}}, {'blockNum': '0x63b27f', 'uniqueId': '0xb22291d944f278b87a5409750650886f8742f40fe62c69e2622a4dce9f3b7928:log:34', 'hash': '0xb22291d944f278b87a5409750650886f8742f40fe62c69e2622a4dce9f3b7928', 'from': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5664.18920331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01330e6a763ff760cc00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:05.000Z'}}, {'blockNum': '0x63b27f', 'uniqueId': '0x886dae87bddb3c173266602c7d73a851c7d67314652f6e65090ac42015bce0a9:log:35', 'hash': '0x886dae87bddb3c173266602c7d73a851c7d67314652f6e65090ac42015bce0a9', 'from': '0x5d5e37325bf71dd65680041beb65396ac3bfbdad', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x97c9ce4cf6d5c00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:05.000Z'}}, {'blockNum': '0x63b27f', 'uniqueId': '0x3875ac288854270da5a59ea31c64424e512e8c56dd902722fb89b3ae84087071:log:60', 'hash': '0x3875ac288854270da5a59ea31c64424e512e8c56dd902722fb89b3ae84087071', 'from': '0xe5967a51c2f63d8dbfcc511acf1978f5250be713', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x8b0c86960c2cf40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:05.000Z'}}, {'blockNum': '0x63b27f', 'uniqueId': '0x1e0da1584a11eb4de12858dad2017c436d7029d2708a2a609514eaa3db35b338:log:69', 'hash': '0x1e0da1584a11eb4de12858dad2017c436d7029d2708a2a609514eaa3db35b338', 'from': '0x0159c8618bb1f81ce2066095bbca31efe79ead5f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1e5b8fa8fe2ac00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:05.000Z'}}, {'blockNum': '0x63b283', 'uniqueId': '0xee2c35925c1d7709e460c87c9c47c52ef58bf63947bde531756fd269eedee68f:log:6', 'hash': '0xee2c35925c1d7709e460c87c9c47c52ef58bf63947bde531756fd269eedee68f', 'from': '0x17f0ae4d42c81c93483d0973e6250abe0c31d1f8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1958.12037489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6a26610a65652ba400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:53.000Z'}}, {'blockNum': '0x63b283', 'uniqueId': '0x3427e27b5807899706a2be0adb77fd4d7fd018c48b2a505777c772b4258cfc8a:log:54', 'hash': '0x3427e27b5807899706a2be0adb77fd4d7fd018c48b2a505777c772b4258cfc8a', 'from': '0xd38eeb423b79802497b3b14cf7f10e400c80a730', 'to': '0xe2e6aaea1601c65d5fdf1aa48eadc2e88d69f79b', 'value': 469.42168675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x197288d8ff16712c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:53.000Z'}}, {'blockNum': '0x63b286', 'uniqueId': '0x56991630354f724f6f3c73c208f2a21474e5191f54639662fe637ca0f75a1f21:log:0', 'hash': '0x56991630354f724f6f3c73c208f2a21474e5191f54639662fe637ca0f75a1f21', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 35748.56995313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0791ef117854a455a400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:50:38.000Z'}}, {'blockNum': '0x63b293', 'uniqueId': '0x754303f1d0e035ef6479417c2d5f97b0dd93bd0e8469e50f058f1c5bb941bf2b:log:7', 'hash': '0x754303f1d0e035ef6479417c2d5f97b0dd93bd0e8469e50f058f1c5bb941bf2b', 'from': '0x16aea04055c947153228cb7b14cffd8cad8f6152', 'to': '0x737e135b991e532dda02775e68eaa18ab26e2342', 'value': 2422.6543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x8355151213d0a1c000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:52:26.000Z'}}, {'blockNum': '0x63b297', 'uniqueId': '0x1035d3b0a0b4a4f1e225fa537e621c2f0b12d0b168d72b2d7e0dddb11a1088d6:log:3', 'hash': '0x1035d3b0a0b4a4f1e225fa537e621c2f0b12d0b168d72b2d7e0dddb11a1088d6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 10841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x024bb118fdeb99c40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:53:13.000Z'}}, {'blockNum': '0x63b297', 'uniqueId': '0xb6f915593088705db5cc9a2759525def5bcb66c800f2c4483ba3b26f19ed08cc:log:5', 'hash': '0xb6f915593088705db5cc9a2759525def5bcb66c800f2c4483ba3b26f19ed08cc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1715a73594ca440184f3f88425d7c958dfcd6891', 'value': 7486.34442492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0195d5e63e1cae9c7000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:53:13.000Z'}}, {'blockNum': '0x63b298', 'uniqueId': '0x24db5184af4c9c8930cebd8019478d8d8cc665a3b5e111a373fcedd78e121140:log:0', 'hash': '0x24db5184af4c9c8930cebd8019478d8d8cc665a3b5e111a373fcedd78e121140', 'from': '0x58bbb78603ba67730078531b249a0a379dfd5d48', 'to': '0x24c88f7908525330ff9d48f183a01333c7f93cad', 'value': 3723.338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xc9d7b1d7e8e9610000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:53:27.000Z'}}, {'blockNum': '0x63b299', 'uniqueId': '0x3a484d2c03a9df514010a3dd7fae4da8d43dbb27e27da4eb10aab2884a5941ae:log:4', 'hash': '0x3a484d2c03a9df514010a3dd7fae4da8d43dbb27e27da4eb10aab2884a5941ae', 'from': '0x1715a73594ca440184f3f88425d7c958dfcd6891', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 7486.34442492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0195d5e63e1cae9c7000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:53:35.000Z'}}, {'blockNum': '0x63b29f', 'uniqueId': '0x0040708c1879c930d6d9a15a43edefd67134c53cd0832f04617819ecfafdad70:log:10', 'hash': '0x0040708c1879c930d6d9a15a43edefd67134c53cd0832f04617819ecfafdad70', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 25087.31946152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x054ffc7f03eff39da000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:54:38.000Z'}}, {'blockNum': '0x63b2b8', 'uniqueId': '0x2e8c4ef852342ca4bd04a0b52e9f4466e9ac7e4baa9b8b6c3afd53c45b2af25e:log:8', 'hash': '0x2e8c4ef852342ca4bd04a0b52e9f4466e9ac7e4baa9b8b6c3afd53c45b2af25e', 'from': '0x2607a3fc9fbf124a8fe6625eb3a10d5e8d205d1f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10954.05243647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0251d203ede98c881c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:59:03.000Z'}}, {'blockNum': '0x63b2b8', 'uniqueId': '0xde0379fe7dc39d4d51e12345fa985e0b5be19d405f5203093fe448cc10f07b99:log:9', 'hash': '0xde0379fe7dc39d4d51e12345fa985e0b5be19d405f5203093fe448cc10f07b99', 'from': '0xc3f6d7dc769b025b2add0c12b6bb2dccb29b1e81', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32538.56379856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06e3eb48b21739d54000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:59:03.000Z'}}, {'blockNum': '0x63b2b9', 'uniqueId': '0xd7d049d5bf0122a0af992ce0c3eb72d0d8d52c51310bd2d758b6e4028406881c:log:12', 'hash': '0xd7d049d5bf0122a0af992ce0c3eb72d0d8d52c51310bd2d758b6e4028406881c', 'from': '0x4504444270c138a59e276e17594ad31fb5667f42', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0133356c6af27aac0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:59:23.000Z'}}, {'blockNum': '0x63b2b9', 'uniqueId': '0xf7f9ea84a23d3945c2d75ebca16e48d78ade7b73f0475285c0492a79793c0a49:log:14', 'hash': '0xf7f9ea84a23d3945c2d75ebca16e48d78ade7b73f0475285c0492a79793c0a49', 'from': '0xdbf9af083ac99e7830afe9ed151e7e988ed52ec8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x070c1cc73b00c80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:59:23.000Z'}}, {'blockNum': '0x63b2b9', 'uniqueId': '0x78f96f24685ed243204c6452104b2cd5bf2fbc59fac70a08f88c63092fd8d60c:log:15', 'hash': '0x78f96f24685ed243204c6452104b2cd5bf2fbc59fac70a08f88c63092fd8d60c', 'from': '0xd4dc63e1e63218beefcde69ffbd28a41511974f7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16772.34267714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x038d3b03412dc5e8c800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:59:23.000Z'}}, {'blockNum': '0x63b2b9', 'uniqueId': '0x43f3852c4cb1a7a13b314bf97e161efbb191b50afc76c6a64281a76367b17345:log:16', 'hash': '0x43f3852c4cb1a7a13b314bf97e161efbb191b50afc76c6a64281a76367b17345', 'from': '0xf293e1755758bcbb0c2061497f90f781b970a29d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32963.30401411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06faf1bd11c36a6dac00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:59:23.000Z'}}, {'blockNum': '0x63b2b9', 'uniqueId': '0xcfbf7a110ae62ff32f3356991387c90033d947d2c5737c08f37e77366215d57a:log:23', 'hash': '0xcfbf7a110ae62ff32f3356991387c90033d947d2c5737c08f37e77366215d57a', 'from': '0xcc050a9dd24f97c23410a8ade625a52d6232145a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 215367.96258012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x2d9b1ee2a23fd92ff000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:59:23.000Z'}}, {'blockNum': '0x63b2b9', 'uniqueId': '0xf10c0f04c6af5d543b56dd608255c39e17e6ea26356c0dc7fae6a2f0aa5faa0b:log:24', 'hash': '0xf10c0f04c6af5d543b56dd608255c39e17e6ea26356c0dc7fae6a2f0aa5faa0b', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60835.88941465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0ce1eb907c4497f34400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:59:23.000Z'}}, {'blockNum': '0x63b2b9', 'uniqueId': '0x65655b05523bd8a227cbdfcff6c23b8d07b2d438fea99e193a094d577e0da912:log:26', 'hash': '0x65655b05523bd8a227cbdfcff6c23b8d07b2d438fea99e193a094d577e0da912', 'from': '0xd5d93e4b2dc59141138f73080c7659f4c765bbe2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 571.0664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1ef523692919220000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:59:23.000Z'}}, {'blockNum': '0x63b2d5', 'uniqueId': '0x6c85511ba004db90806751a27233c71a8476824a49de9abb4bf2cf539e64483e:log:0', 'hash': '0x6c85511ba004db90806751a27233c71a8476824a49de9abb4bf2cf539e64483e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 29236.71827162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0630ecf8ed4422a82800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:04:47.000Z'}}, {'blockNum': '0x63b2d6', 'uniqueId': '0x28b8a861d577466e8c8c1eaf6ab1f5cc463bb99106858d4b562e2e71d2da7dfe:log:3', 'hash': '0x28b8a861d577466e8c8c1eaf6ab1f5cc463bb99106858d4b562e2e71d2da7dfe', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xaa208e8045c4ab864a4e98080aa33d2cf21efbc1', 'value': 3866.1393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xd19575f9aa855e4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:05:01.000Z'}}, {'blockNum': '0x63b2d7', 'uniqueId': '0xe0173c065443258f78703334b194311ccac6edebabbd36d9050066e0c83e15e4:log:7', 'hash': '0xe0173c065443258f78703334b194311ccac6edebabbd36d9050066e0c83e15e4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4761df1edb4dee36e2161a31becba39db20b6363', 'value': 3393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xb7ef55831d94640000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:05:21.000Z'}}, {'blockNum': '0x63b2e4', 'uniqueId': '0x90a0b60b3071030af95fca4c5ef0bdc5efaae25f3774b231ce8baeb1a3647e1c:log:12', 'hash': '0x90a0b60b3071030af95fca4c5ef0bdc5efaae25f3774b231ce8baeb1a3647e1c', 'from': '0xa6c4a90574a53640f88a1ca34d25b153c3c597fb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3066.32938462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xa639de5933d93bb800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:09:08.000Z'}}, {'blockNum': '0x63b2e4', 'uniqueId': '0x1d37a6b26afc814dfcb7b8e438e78a490c212ed6f555fffdd14e912b675f5432:log:16', 'hash': '0x1d37a6b26afc814dfcb7b8e438e78a490c212ed6f555fffdd14e912b675f5432', 'from': '0x737e135b991e532dda02775e68eaa18ab26e2342', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2422.6543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x8355151213d0a1c000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:09:08.000Z'}}, {'blockNum': '0x63b2e4', 'uniqueId': '0xc5c41a42e4dfc7dcb494f33e3bbf2aabac2436a13c638cbc807100c770dd648b:log:18', 'hash': '0xc5c41a42e4dfc7dcb494f33e3bbf2aabac2436a13c638cbc807100c770dd648b', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29236.71827162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0630ecf8ed4422a82800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:09:08.000Z'}}, {'blockNum': '0x63b2e4', 'uniqueId': '0xb1f968c85e71c419a7e5e7d14fd54deb45cdd3b789f0ea7fa17bd0bc18028137:log:19', 'hash': '0xb1f968c85e71c419a7e5e7d14fd54deb45cdd3b789f0ea7fa17bd0bc18028137', 'from': '0xe2e6aaea1601c65d5fdf1aa48eadc2e88d69f79b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 469.42168675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x197288d8ff16712c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:09:08.000Z'}}, {'blockNum': '0x63b2e5', 'uniqueId': '0x3d313cd439770ec890bbc367426e9d33705a92b776f6493d1b88a9f561ab462d:log:1', 'hash': '0x3d313cd439770ec890bbc367426e9d33705a92b776f6493d1b88a9f561ab462d', 'from': '0x5903ef129da0aebe70ba6c385c792d8f5e1c067f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59360.15971282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0c91ebb3633461ad0800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:09:18.000Z'}}, {'blockNum': '0x63b2e7', 'uniqueId': '0xc2f543e143e336d9e8ab5193ad065a1935820353c648d4fdeb8024882620d66a:log:8', 'hash': '0xc2f543e143e336d9e8ab5193ad065a1935820353c648d4fdeb8024882620d66a', 'from': '0x24c88f7908525330ff9d48f183a01333c7f93cad', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3723.338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xc9d7b1d7e8e9610000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:09:32.000Z'}}, {'blockNum': '0x63b2ec', 'uniqueId': '0x368b3bac9eac48dac3f5b4f9a8871e9e1d975b1ad845614f833761d412c115fc:log:56', 'hash': '0x368b3bac9eac48dac3f5b4f9a8871e9e1d975b1ad845614f833761d412c115fc', 'from': '0x5fd9b40d53aa9fced8a54d21904f8eae5842c174', 'to': '0x791c11999b051bf1c013ddb883deea47b9de2432', 'value': 146.90848344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x07f6c3c7558c8e6000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:11:06.000Z'}}, {'blockNum': '0x63b2fc', 'uniqueId': '0x4e6adff4e57ee0a56f8f9d2a46825c46bffcdebe1e6cd08cb9d137159457fae2:log:1', 'hash': '0x4e6adff4e57ee0a56f8f9d2a46825c46bffcdebe1e6cd08cb9d137159457fae2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb5142014349b773e56cd3356e8e196152d4eef61', 'value': 2319.07546845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7db7a323911cdbd400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:14:30.000Z'}}, {'blockNum': '0x63b309', 'uniqueId': '0xb761cec57ebb04be849b8ed769c6764dbc87b3db09562057b96b5e68a18c68e5:log:45', 'hash': '0xb761cec57ebb04be849b8ed769c6764dbc87b3db09562057b96b5e68a18c68e5', 'from': '0xfc1c7565c8e795ba117c265bbf861aeef3f262dd', 'to': '0x9f2ce5d60a9c86e43efa95ccb5b99e7cce38394b', 'value': 175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x097c9ce4cf6d5c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:18:12.000Z'}}, {'blockNum': '0x63b30b', 'uniqueId': '0x06b2d8a73f7c6da8a6cac3f1c6e36ffe7a06b5a46a82fedf02493e43ee19fee9:log:14', 'hash': '0x06b2d8a73f7c6da8a6cac3f1c6e36ffe7a06b5a46a82fedf02493e43ee19fee9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9f050bc566289fe08f9534eb8b5b7437071a85ca', 'value': 27196.51529743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05c25377e9b2f0425c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:19:03.000Z'}}, {'blockNum': '0x63b30c', 'uniqueId': '0x4f3a7697237dcbc8d086571737a0f4c152bc12ee7b4087a2512a521831d59697:log:9', 'hash': '0x4f3a7697237dcbc8d086571737a0f4c152bc12ee7b4087a2512a521831d59697', 'from': '0xaa208e8045c4ab864a4e98080aa33d2cf21efbc1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3866.1393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xd19575f9aa855e4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:19:17.000Z'}}, {'blockNum': '0x63b30c', 'uniqueId': '0x95f9f6656fafd4355d39f7cf4aed4bff5f138a0fa10193261a8aa59ece47c454:log:19', 'hash': '0x95f9f6656fafd4355d39f7cf4aed4bff5f138a0fa10193261a8aa59ece47c454', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x86c60d0207266d88c1e69ccac30f2778cfcafdfa', 'value': 4109.277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xdec3ac9b9e0adc8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:19:17.000Z'}}, {'blockNum': '0x63b30d', 'uniqueId': '0x925c55f744bbb67653ed60987237b0d46cdaa6f5b385fa8c6505dad669ec593f:log:2', 'hash': '0x925c55f744bbb67653ed60987237b0d46cdaa6f5b385fa8c6505dad669ec593f', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e2e93afbd1628565767ccc8fe94a4a166a8cd08', 'value': 4262.64988916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xe7142691b438055000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:19:38.000Z'}}, {'blockNum': '0x63b329', 'uniqueId': '0xafcf4ed9afeb13ae7f3d90f3526fbf4743eb6ccc88eda742948480f21c751a66:log:21', 'hash': '0xafcf4ed9afeb13ae7f3d90f3526fbf4743eb6ccc88eda742948480f21c751a66', 'from': '0xc231b840bfb4678540de40070121adccca328ef6', 'to': '0xe40743942a8e13ac82eb09ece0db5ea78224d1fb', 'value': 1106.159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3bf70a35d185518000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:25:54.000Z'}}, {'blockNum': '0x63b334', 'uniqueId': '0x45e19bcb27bce7b74446d0f60fa4bc2703c939f8d31be1136f26ce694ea1499b:log:5', 'hash': '0x45e19bcb27bce7b74446d0f60fa4bc2703c939f8d31be1136f26ce694ea1499b', 'from': '0x30a2175b18ba5275f1ddfcf22c1d35f44dc1fa02', 'to': '0x1c7dd1b8bc95e079c43507a88a60253dee0b8df1', 'value': 10157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02269cb0d5e85a940000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:29:12.000Z'}}, {'blockNum': '0x63b334', 'uniqueId': '0x13652e896cbcd81679fcf0a4bad358d5abe4f3e7e4f96eeb9463a8ace46308a6:log:12', 'hash': '0x13652e896cbcd81679fcf0a4bad358d5abe4f3e7e4f96eeb9463a8ace46308a6', 'from': '0x86c60d0207266d88c1e69ccac30f2778cfcafdfa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4109.277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xdec3ac9b9e0adc8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:29:12.000Z'}}, {'blockNum': '0x63b334', 'uniqueId': '0x7bf40ff7456309689c1108d9de7eb228688abde844240952ff97c4a8744d5f06:log:17', 'hash': '0x7bf40ff7456309689c1108d9de7eb228688abde844240952ff97c4a8744d5f06', 'from': '0x3e2e93afbd1628565767ccc8fe94a4a166a8cd08', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4262.64988916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xe7142691b438055000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:29:12.000Z'}}, {'blockNum': '0x63b33c', 'uniqueId': '0x53f416c35dbcc5bfb7ac8ff6a587111af3d62c5bc3bc42f9dcc3b77f3d44ea23:log:0', 'hash': '0x53f416c35dbcc5bfb7ac8ff6a587111af3d62c5bc3bc42f9dcc3b77f3d44ea23', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x82fd368e4c825d29ae56c1ab8daafc2fd9421d5b', 'value': 9989.21906181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x021d84433390b9db7400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:31:16.000Z'}}, {'blockNum': '0x63b33f', 'uniqueId': '0xe2bada1bc54db8755b39564de02aed0891f703e09483ccaea3eeed0b9517c1a0:log:13', 'hash': '0xe2bada1bc54db8755b39564de02aed0891f703e09483ccaea3eeed0b9517c1a0', 'from': '0x791c11999b051bf1c013ddb883deea47b9de2432', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 146.90848344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x07f6c3c7558c8e6000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:32:22.000Z'}}, {'blockNum': '0x63b33f', 'uniqueId': '0x1a2df1d4db15981bc159a33d63efbf40bd550faecf51b9d4bff7b9900bc12588:log:26', 'hash': '0x1a2df1d4db15981bc159a33d63efbf40bd550faecf51b9d4bff7b9900bc12588', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0xe5e14089b9db8798a80254e3740e6f1b8007e713', 'value': 137.41071752581243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0772f4ef8e7997e1f2', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:32:22.000Z'}}, {'blockNum': '0x63b33f', 'uniqueId': '0x3ab643616167920ce171b1096c2ccf7deae0534a3b83432a780ecd7bf7918113:log:61', 'hash': '0x3ab643616167920ce171b1096c2ccf7deae0534a3b83432a780ecd7bf7918113', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x1b9b1273757a0b232f8c572ad0ad412341cd37fe', 'value': 4088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xdd9c6584d904e00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:32:22.000Z'}}, {'blockNum': '0x63b34d', 'uniqueId': '0xc4ac5a4cabd0aa7a68bec973ac6e0af962659a5def3199ba7c02539c32078feb:log:84', 'hash': '0xc4ac5a4cabd0aa7a68bec973ac6e0af962659a5def3199ba7c02539c32078feb', 'from': '0xfa4de5a6a5f5262ad6ab8a67877b4718a5317d2e', 'to': '0xcbe2575fae0c3fb4709d8cd2141d5881bf111d8b', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:35:22.000Z'}}, {'blockNum': '0x63b357', 'uniqueId': '0x54b8fa36d8a82a8b937e874218db0ba20c2cfe8b7f9e74b97fb997c1558fa30c:log:43', 'hash': '0x54b8fa36d8a82a8b937e874218db0ba20c2cfe8b7f9e74b97fb997c1558fa30c', 'from': '0x1b9b1273757a0b232f8c572ad0ad412341cd37fe', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 4088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xdd9c6584d904e00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:37:49.000Z'}}, {'blockNum': '0x63b359', 'uniqueId': '0x6a443bef01cecbc526576b38ca6e05a34d0f2342d1035650f550bdc93cbbd342:log:2', 'hash': '0x6a443bef01cecbc526576b38ca6e05a34d0f2342d1035650f550bdc93cbbd342', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9748565ee7f0c9017cc1935aea63b28ea45d5773', 'value': 62583.62459893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d40aa432e7905393400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:38:23.000Z'}}, {'blockNum': '0x63b35f', 'uniqueId': '0xdb168e211f9be8fd84e8465e3541b3b97bf8dfe66f0c8cfebc895994f9f99db5:log:10', 'hash': '0xdb168e211f9be8fd84e8465e3541b3b97bf8dfe66f0c8cfebc895994f9f99db5', 'from': '0xb5142014349b773e56cd3356e8e196152d4eef61', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2319.07546845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7db7a323911cdbd400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:39:15.000Z'}}, {'blockNum': '0x63b35f', 'uniqueId': '0x7383c6134a13106be792ccaf75ce0a78ed210440429e2e7bb0dbdd1a9614a040:log:11', 'hash': '0x7383c6134a13106be792ccaf75ce0a78ed210440429e2e7bb0dbdd1a9614a040', 'from': '0x0ff125d9e6619eded842bebe9a6f60bcb4aaac6b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59781.55257332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0ca8c3b39131bde95000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:39:15.000Z'}}, {'blockNum': '0x63b36a', 'uniqueId': '0x6a37cc54ef8979354ff67460c1f87576e92f07c114321f1cc7b6bf2b4d9cd5f3:log:19', 'hash': '0x6a37cc54ef8979354ff67460c1f87576e92f07c114321f1cc7b6bf2b4d9cd5f3', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9748565ee7f0c9017cc1935aea63b28ea45d5773', 'value': 30010.43654618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x065ade786ca4b39c2800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:41:39.000Z'}}, {'blockNum': '0x63b370', 'uniqueId': '0xcccf5512bfb187fe131f4742cf584ba3176a9f59b602dcfa4df87b392282f762:log:21', 'hash': '0xcccf5512bfb187fe131f4742cf584ba3176a9f59b602dcfa4df87b392282f762', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 27704.86130896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05dde22fbdda58894000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:43:20.000Z'}}, {'blockNum': '0x63b379', 'uniqueId': '0x9f3afb446ebd6de06bfee5bcc644d650d83b9b3da11bc4bb26b7627b820c227d:log:1', 'hash': '0x9f3afb446ebd6de06bfee5bcc644d650d83b9b3da11bc4bb26b7627b820c227d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x371a8134b6c842ea02524ba2bc4e93b6f2beccbb', 'value': 34999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x07694cb20b59c87c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:45:16.000Z'}}, {'blockNum': '0x63b381', 'uniqueId': '0x949c33c7a144a6611f336017d11492c8142db4525c4174c3aa631d85a7291770:log:0', 'hash': '0x949c33c7a144a6611f336017d11492c8142db4525c4174c3aa631d85a7291770', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x285cb45173c943aa060628a06a985761156de4da', 'value': 5050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0111c2d413f40aa80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:46:24.000Z'}}, {'blockNum': '0x63b38c', 'uniqueId': '0x01ce4d31c26535e4461299bef54983aeb1a69038f826527c588de9a79581370f:log:17', 'hash': '0x01ce4d31c26535e4461299bef54983aeb1a69038f826527c588de9a79581370f', 'from': '0x58d3651b81273a2391605a681a60626d5ef3751b', 'to': '0xc9e86c0a4a41457856716a12a1819b1fe96fb15f', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:49:21.000Z'}}, {'blockNum': '0x63b38c', 'uniqueId': '0x89ca84b71c804f90e84e03157b93f5a1734c18ac8e161387b5e2776a7dd82055:log:38', 'hash': '0x89ca84b71c804f90e84e03157b93f5a1734c18ac8e161387b5e2776a7dd82055', 'from': '0x9748565ee7f0c9017cc1935aea63b28ea45d5773', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 92594.06114511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x139b88bb9b1db8d55c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:49:21.000Z'}}, {'blockNum': '0x63b38c', 'uniqueId': '0xb6b71c31ddd9c53f22def78e467ef77df08e63228673fae7b36b41b1b352dff1:log:41', 'hash': '0xb6b71c31ddd9c53f22def78e467ef77df08e63228673fae7b36b41b1b352dff1', 'from': '0x1c7dd1b8bc95e079c43507a88a60253dee0b8df1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02269cb0d5e85a940000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:49:21.000Z'}}, {'blockNum': '0x63b394', 'uniqueId': '0xc7278ad9572e54711d5c77de1ee5e7bf40859da8ae37a330372527a8311ed98e:log:2', 'hash': '0xc7278ad9572e54711d5c77de1ee5e7bf40859da8ae37a330372527a8311ed98e', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0x1168ed13bbc78ad6fc865859e223d12c17224c92', 'value': 80.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x045c30c2dd14ab0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:50:47.000Z'}}, {'blockNum': '0x63b3a3', 'uniqueId': '0xd6ae04722f189a1f6d80a2ab59bc83ab683361311146f72c93e06bbbbac3330c:log:12', 'hash': '0xd6ae04722f189a1f6d80a2ab59bc83ab683361311146f72c93e06bbbbac3330c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'value': 8585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01d164ceeeb878840000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:55:25.000Z'}}, {'blockNum': '0x63b3af', 'uniqueId': '0x3d8dbbf30672ca782bca92c00d3caab70fc44d7ee021bafc23c8647f079711fb:log:7', 'hash': '0x3d8dbbf30672ca782bca92c00d3caab70fc44d7ee021bafc23c8647f079711fb', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'value': 8545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cf39b262a650e40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:59:12.000Z'}}, {'blockNum': '0x63b3b2', 'uniqueId': '0x27fd61119273237ef43db4197189d6bbb65f6621845fcfd15a05d8f7006429b0:log:7', 'hash': '0x27fd61119273237ef43db4197189d6bbb65f6621845fcfd15a05d8f7006429b0', 'from': '0x371a8134b6c842ea02524ba2bc4e93b6f2beccbb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x07694cb20b59c87c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:59:39.000Z'}}, {'blockNum': '0x63b3bd', 'uniqueId': '0x1d019676da52fe218814d01fdd517b2f279af043964b1d1376e8d45985363fac:log:5', 'hash': '0x1d019676da52fe218814d01fdd517b2f279af043964b1d1376e8d45985363fac', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x1b9b1273757a0b232f8c572ad0ad412341cd37fe', 'value': 8987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01e72fadd4d5538c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:02:18.000Z'}}, {'blockNum': '0x63b3df', 'uniqueId': '0x1cff390b0ee4801adf50a35dd33864ee93b171e5a0ab0a5cd8d89c6afa2f3ed4:log:13', 'hash': '0x1cff390b0ee4801adf50a35dd33864ee93b171e5a0ab0a5cd8d89c6afa2f3ed4', 'from': '0x1b9b1273757a0b232f8c572ad0ad412341cd37fe', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 8987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01e72fadd4d5538c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:08:52.000Z'}}, {'blockNum': '0x63b3e1', 'uniqueId': '0xe181109aa265734365b440b95b891a119e3511cf201d8be04d3a750292e863ca:log:14', 'hash': '0xe181109aa265734365b440b95b891a119e3511cf201d8be04d3a750292e863ca', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27704.86130896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05dde22fbdda58894000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:09:07.000Z'}}, {'blockNum': '0x63b3e2', 'uniqueId': '0x14aba8d6831857f8374393f0cb19f2750f6ce552ae6327c16af8ebbf0c312a80:log:8', 'hash': '0x14aba8d6831857f8374393f0cb19f2750f6ce552ae6327c16af8ebbf0c312a80', 'from': '0x285cb45173c943aa060628a06a985761156de4da', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0111c2d413f40aa80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:09:18.000Z'}}, {'blockNum': '0x63b3f3', 'uniqueId': '0x6188f20d5a89cac48c0bdfa7b6d1ff13094f6a2c8e8ab266e8591a99b4e95d64:log:27', 'hash': '0x6188f20d5a89cac48c0bdfa7b6d1ff13094f6a2c8e8ab266e8591a99b4e95d64', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc4facbe73b74bb97c3be680ebf1819f49ba7d4bb', 'value': 1325.9208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x47e0d8f6920dc20000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:13:08.000Z'}}, {'blockNum': '0x63b3fb', 'uniqueId': '0x8cd9924d09e822c293ade0c4b4856a3f502c88745402ae6b6e402067ba70613d:log:11', 'hash': '0x8cd9924d09e822c293ade0c4b4856a3f502c88745402ae6b6e402067ba70613d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 27428.83811407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05ceeb985c88b5ab5c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:15:34.000Z'}}, {'blockNum': '0x63b40b', 'uniqueId': '0x64de097ba646bbb1298d44ab886d30b8f986e8dd20444bdab31d0427757df993:log:10', 'hash': '0x64de097ba646bbb1298d44ab886d30b8f986e8dd20444bdab31d0427757df993', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27428.83811407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05ceeb985c88b5ab5c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:19:16.000Z'}}, {'blockNum': '0x63b40b', 'uniqueId': '0xf686f3dde4ca7d0b33f9be1aa7dba16b78a0f63747c7410062b2d63245b93ea6:log:11', 'hash': '0xf686f3dde4ca7d0b33f9be1aa7dba16b78a0f63747c7410062b2d63245b93ea6', 'from': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cf39b262a650e40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:19:16.000Z'}}, {'blockNum': '0x63b429', 'uniqueId': '0xc0406383cd4076e856d5c6acad50f2c515b5bbedb2589e66a83ac22df9e72234:log:17', 'hash': '0xc0406383cd4076e856d5c6acad50f2c515b5bbedb2589e66a83ac22df9e72234', 'from': '0x47fc7c8476def8662bb31d8dc4f6cdacc60389d4', 'to': '0xf490af7013492356868c42eb2a9d1f1b76753966', 'value': 2264.84798301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7ac71468de62fdd400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:25:00.000Z'}}, {'blockNum': '0x63b430', 'uniqueId': '0x26bcc563326cd4a830f394e0a9fa3ebe403feb7e9e0d0499ce34af67716a27af:log:35', 'hash': '0x26bcc563326cd4a830f394e0a9fa3ebe403feb7e9e0d0499ce34af67716a27af', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0xbd825705ffe24abed5dc12cd1e3b789253b82e3e', 'value': 216.2236738265873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0bb8b4cdbe3fa98c1e', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:26:41.000Z'}}, {'blockNum': '0x63b43a', 'uniqueId': '0xdfb8dd41a7c76b2170013e37b92938577847e7fe6c48066f26cb3bf44b6cfdb6:log:1', 'hash': '0xdfb8dd41a7c76b2170013e37b92938577847e7fe6c48066f26cb3bf44b6cfdb6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 27821.26519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05e4319d66ecb2906000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:29:12.000Z'}}, {'blockNum': '0x63b448', 'uniqueId': '0xef75f50c5106a6e32408b2eca2e57619c740d62771ec202ac45bff243e8981c1:log:16', 'hash': '0xef75f50c5106a6e32408b2eca2e57619c740d62771ec202ac45bff243e8981c1', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x638606582f4d7989eb898e208d62d88b97c09d6c', 'value': 1213.3509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x41c6a056f100834000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:33:09.000Z'}}, {'blockNum': '0x63b450', 'uniqueId': '0x1cddb53a5dcb9e83f5840a2de5d41277743083352c2dfbd4d83fbfd2310b999d:log:15', 'hash': '0x1cddb53a5dcb9e83f5840a2de5d41277743083352c2dfbd4d83fbfd2310b999d', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0xd646f40170a0c425e22e0b9e557fe341224baf92', 'value': 2256.84798301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7a580eb34127ddd400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:34:43.000Z'}}, {'blockNum': '0x63b45a', 'uniqueId': '0x070ae57806015b1657cb6c4c2ee9d22efc46c4b7cbcb2c12a899bf4a368a3307:log:3', 'hash': '0x070ae57806015b1657cb6c4c2ee9d22efc46c4b7cbcb2c12a899bf4a368a3307', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa3a2a13a167ae5a58188affc69ef0e2eecd1803a', 'value': 6754.07900677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x016e23ace00358fb7400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:37:42.000Z'}}, {'blockNum': '0x63b463', 'uniqueId': '0x049203aff5fbe8b8bd2a00db693a6535c4c213be36b671ef7853fa4165983d40:log:54', 'hash': '0x049203aff5fbe8b8bd2a00db693a6535c4c213be36b671ef7853fa4165983d40', 'from': '0xc4facbe73b74bb97c3be680ebf1819f49ba7d4bb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1325.9208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x47e0d8f6920dc20000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:39:09.000Z'}}, {'blockNum': '0x63b467', 'uniqueId': '0xb5d5dfe997efb249ca3f3f02b8db7fd2f9c4bd77a068d7ce158c6cc2f65a60cb:log:62', 'hash': '0xb5d5dfe997efb249ca3f3f02b8db7fd2f9c4bd77a068d7ce158c6cc2f65a60cb', 'from': '0xf517a26f51484a4045d4752e14dfe098c5bdf66a', 'to': '0x0fe07dbd07ba4c1075c1db97806ba3c5b113cee0', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:40:19.000Z'}}, {'blockNum': '0x63b46d', 'uniqueId': '0x820ee469be7f7c8cc4f19d079213d6d07dd46a5567e2993b6b73a6524fa19292:log:2', 'hash': '0x820ee469be7f7c8cc4f19d079213d6d07dd46a5567e2993b6b73a6524fa19292', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 51791.30852636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0af79cca3e9c8b80f000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:41:31.000Z'}}, {'blockNum': '0x63b471', 'uniqueId': '0x160ca6fa63cd5dc454d557f38fb09ce4672abae46e5fb4c881df64cef0fcc420:log:0', 'hash': '0x160ca6fa63cd5dc454d557f38fb09ce4672abae46e5fb4c881df64cef0fcc420', 'from': '0xd646f40170a0c425e22e0b9e557fe341224baf92', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2256.84798301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7a580eb34127ddd400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:42:41.000Z'}}, {'blockNum': '0x63b47d', 'uniqueId': '0x5b67c3a11948a5cd6d7e46905d552a8856474f3c4f1e9b87c6116de5bd3a9aba:log:2', 'hash': '0x5b67c3a11948a5cd6d7e46905d552a8856474f3c4f1e9b87c6116de5bd3a9aba', 'from': '0xf490af7013492356868c42eb2a9d1f1b76753966', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 2264.84798301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7ac71468de62fdd400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:44:46.000Z'}}, {'blockNum': '0x63b491', 'uniqueId': '0xe6ab0ee75f986540eb13703500998b3041ecafc399b34ecdf86bd0aae24d2d49:log:5', 'hash': '0xe6ab0ee75f986540eb13703500998b3041ecafc399b34ecdf86bd0aae24d2d49', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x271244831b4017c9955ed638f5e4791d2c0ca06c', 'value': 1537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x535228ec9fff640000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:48:32.000Z'}}, {'blockNum': '0x63b497', 'uniqueId': '0x3fb34f40b19c9d15da69cfcaba0ab32f28574d9f361b4fee85345e06665877c0:log:8', 'hash': '0x3fb34f40b19c9d15da69cfcaba0ab32f28574d9f361b4fee85345e06665877c0', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 79612.57371636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x10dbce67a5893e115000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:49:06.000Z'}}, {'blockNum': '0x63b498', 'uniqueId': '0x41f140661d016dd0c6f46d143372b2160b38e49e126190c4fdade8522e62cd02:log:136', 'hash': '0x41f140661d016dd0c6f46d143372b2160b38e49e126190c4fdade8522e62cd02', 'from': '0x638606582f4d7989eb898e208d62d88b97c09d6c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1213.3509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x41c6a056f100834000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:49:10.000Z'}}, {'blockNum': '0x63b499', 'uniqueId': '0xb4cab174bec706a09c7b52c29707346aaa6366b9cf4fd4f8b76cb9221634a1bd:log:9', 'hash': '0xb4cab174bec706a09c7b52c29707346aaa6366b9cf4fd4f8b76cb9221634a1bd', 'from': '0xa3a2a13a167ae5a58188affc69ef0e2eecd1803a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6754.07900677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x016e23ace00358fb7400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:49:39.000Z'}}, {'blockNum': '0x63b4c8', 'uniqueId': '0x1394155aaf2330411bde7546db42f29d695d8c111bbddac18da898dd5bed68f9:log:2', 'hash': '0x1394155aaf2330411bde7546db42f29d695d8c111bbddac18da898dd5bed68f9', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x175818d253a1c00dedcadcc59b65fd53363b6603', 'value': 28454.685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06068814a01e1bfc8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:58:45.000Z'}}, {'blockNum': '0x63b4da', 'uniqueId': '0x62058f71efc76ab9aa1976a67528d94bab5afe7365f56284cc35d6d649831249:log:0', 'hash': '0x62058f71efc76ab9aa1976a67528d94bab5afe7365f56284cc35d6d649831249', 'from': '0x2e93b992ab8a11e954464e6b0b2e28098241f1ef', 'to': '0xe0480b387b823095fe51182666f68e841b3108a5', 'value': 8449.7012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01ca0f2908f6dfe50000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:05:22.000Z'}}, {'blockNum': '0x63b4ea', 'uniqueId': '0x6653bc32e66fa818e116c77273f86f3da8455ab1d91224a19dca0bcb94817482:log:4', 'hash': '0x6653bc32e66fa818e116c77273f86f3da8455ab1d91224a19dca0bcb94817482', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 30666.91566539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x067e74f2c563b0f9cc00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:09:44.000Z'}}, {'blockNum': '0x63b4ef', 'uniqueId': '0x2b560779899d9751889ac42162285826b83526b4c3122e7bfd247aa081ce395e:log:3', 'hash': '0x2b560779899d9751889ac42162285826b83526b4c3122e7bfd247aa081ce395e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf53354a8dc35416d28ab2523589d1b44843e025c', 'value': 15875.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x035c966fc26eed300000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:10:43.000Z'}}, {'blockNum': '0x63b4f0', 'uniqueId': '0xb0e811f67989575089b2c9671770a2f37a8f2be00b0180495722c85b7bf73389:log:11', 'hash': '0xb0e811f67989575089b2c9671770a2f37a8f2be00b0180495722c85b7bf73389', 'from': '0xe0480b387b823095fe51182666f68e841b3108a5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 8449.7012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01ca0f2908f6dfe50000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:11:17.000Z'}}, {'blockNum': '0x63b4f2', 'uniqueId': '0x221a4354abb8d7aec1cb898c95beaedd5afc5d135a3625d7774c40a6746952d9:log:36', 'hash': '0x221a4354abb8d7aec1cb898c95beaedd5afc5d135a3625d7774c40a6746952d9', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0xa7d64d140d96c74371ce2274660e503f1dda2374', 'value': 453.3193313178186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x189311ca0b782fa3d5', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:11:33.000Z'}}, {'blockNum': '0x63b518', 'uniqueId': '0x47439becec4e4c5af577e7bd168038c70f45f9e76f0a459635b4ddae8eb10122:log:79', 'hash': '0x47439becec4e4c5af577e7bd168038c70f45f9e76f0a459635b4ddae8eb10122', 'from': '0x175818d253a1c00dedcadcc59b65fd53363b6603', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28454.685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06068814a01e1bfc8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:19:25.000Z'}}, {'blockNum': '0x63b518', 'uniqueId': '0x35664bea5cfbdb026ebce297b58ef068c475586e51d200bef7e2cfa03e568deb:log:80', 'hash': '0x35664bea5cfbdb026ebce297b58ef068c475586e51d200bef7e2cfa03e568deb', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30666.91566539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x067e74f2c563b0f9cc00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:19:25.000Z'}}, {'blockNum': '0x63b51a', 'uniqueId': '0x53a3224e1863366fdf697d8fd7a37d86b1ee94215edbb15c691980f8fe6511a2:log:14', 'hash': '0x53a3224e1863366fdf697d8fd7a37d86b1ee94215edbb15c691980f8fe6511a2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 461.31933131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1902177fa6e149cc00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:19:51.000Z'}}, {'blockNum': '0x63b529', 'uniqueId': '0xbe2907586926b8be359f582a502a482ec3be8dc407cb68c8da53ef01ba688e09:log:1', 'hash': '0xbe2907586926b8be359f582a502a482ec3be8dc407cb68c8da53ef01ba688e09', 'from': '0x3bb5bf73a903b20f9d917874deab162e78a24998', 'to': '0xb9b5419705cfb6b8e7c402c6d676821a4ec93733', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:24:42.000Z'}}, {'blockNum': '0x63b531', 'uniqueId': '0x0ae3b30945196e532bdca14ac221b4b2f3ed527700e384030445c4684d84f36b:log:21', 'hash': '0x0ae3b30945196e532bdca14ac221b4b2f3ed527700e384030445c4684d84f36b', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'value': 15952.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0360cdd9d45653120000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:27:19.000Z'}}, {'blockNum': '0x63b543', 'uniqueId': '0xa14dbc31e0169d308cae082d6ebb13fad8b7c932832f9397470ef0c6afdd608e:log:2', 'hash': '0xa14dbc31e0169d308cae082d6ebb13fad8b7c932832f9397470ef0c6afdd608e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 32299.6179038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06d6f73e58cbce293000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:32:00.000Z'}}, {'blockNum': '0x63b549', 'uniqueId': '0x44b641060ecb452bfe6258c5d6416c09870441632464ef298e154d8a299f92d6:log:3', 'hash': '0x44b641060ecb452bfe6258c5d6416c09870441632464ef298e154d8a299f92d6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x238724df353f920ec90141f3f62db31d63f06b66', 'value': 1070.921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3a0e03af84721a8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:34:16.000Z'}}, {'blockNum': '0x63b54d', 'uniqueId': '0x5469d385d12acef0347166c70ec82b4d44aaa587ec6ad35bf3f12f57eef4135e:log:51', 'hash': '0x5469d385d12acef0347166c70ec82b4d44aaa587ec6ad35bf3f12f57eef4135e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 32753.61917602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06ef93c6e07a76ae4800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:34:54.000Z'}}, {'blockNum': '0x63b558', 'uniqueId': '0x563d1f61e3f294494e309deb11354d7b975b06cf3ff9874187be1c7ca78b611f:log:24', 'hash': '0x563d1f61e3f294494e309deb11354d7b975b06cf3ff9874187be1c7ca78b611f', 'from': '0x5986591391b5dd78c7170e6e16a17aed05b50b1d', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:37:04.000Z'}}, {'blockNum': '0x63b562', 'uniqueId': '0xdb762ae2e39a639c49b472eb03282228c8603ee41b16ba3dedf845fdf6c440d6:log:8', 'hash': '0xdb762ae2e39a639c49b472eb03282228c8603ee41b16ba3dedf845fdf6c440d6', 'from': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15952.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0360cdd9d45653120000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:39:07.000Z'}}, {'blockNum': '0x63b563', 'uniqueId': '0x9b8cd352658c89009d0e3b8283bc16b6f31f203bc6b5475bc67948382ba4ae40:log:8', 'hash': '0x9b8cd352658c89009d0e3b8283bc16b6f31f203bc6b5475bc67948382ba4ae40', 'from': '0xb9b5419705cfb6b8e7c402c6d676821a4ec93733', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:39:14.000Z'}}, {'blockNum': '0x63b584', 'uniqueId': '0xe23e220cd8120e40c205834d9f77b53c3c9ac0a0c7405141a70baac5333193c9:log:14', 'hash': '0xe23e220cd8120e40c205834d9f77b53c3c9ac0a0c7405141a70baac5333193c9', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb4db0bfaf58af0b0a0c01edefcb6034c41ff55f9', 'value': 240.386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d0806a161610d0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:47:15.000Z'}}, {'blockNum': '0x63b592', 'uniqueId': '0x3784cd135e8375337111c7b5982ac7bade29279d2ec8f7881106baab7ffb2d3b:log:74', 'hash': '0x3784cd135e8375337111c7b5982ac7bade29279d2ec8f7881106baab7ffb2d3b', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 65053.23707982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0dc68b05394644d77800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:49:29.000Z'}}, {'blockNum': '0x63b5a5', 'uniqueId': '0x121d3ae84cd3fb3e9afd7b02bdb16dda9e868440819aeceee29fed794e4c5b34:log:2', 'hash': '0x121d3ae84cd3fb3e9afd7b02bdb16dda9e868440819aeceee29fed794e4c5b34', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0ec6f7a6b489585c026427fcb6ab9667f882c784', 'value': 17888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x03c9b5de49506b800000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:53:30.000Z'}}, {'blockNum': '0x63b5bb', 'uniqueId': '0xc899c40bfdc561270124f2fadb72914e547b9586c7857c2201dc3241498fd842:log:5', 'hash': '0xc899c40bfdc561270124f2fadb72914e547b9586c7857c2201dc3241498fd842', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb4db0bfaf58af0b0a0c01edefcb6034c41ff55f9', 'value': 589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1fee045b5821140000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:58:23.000Z'}}, {'blockNum': '0x63b5d9', 'uniqueId': '0x3a173ff00b6f5b99f33887170552f75baf725d4c4b42126f3c5e673437d2e8b9:log:2', 'hash': '0x3a173ff00b6f5b99f33887170552f75baf725d4c4b42126f3c5e673437d2e8b9', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x175818d253a1c00dedcadcc59b65fd53363b6603', 'value': 28454.685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06068814a01e1bfc8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:05:32.000Z'}}, {'blockNum': '0x63b5da', 'uniqueId': '0x8add477505c2d9a5c62899afada218ff1d5f45956ebd6c58cf4a0134a816eb9a:log:3', 'hash': '0x8add477505c2d9a5c62899afada218ff1d5f45956ebd6c58cf4a0134a816eb9a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 34375.37337996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x07477e23388a2ec8b000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:05:45.000Z'}}, {'blockNum': '0x63b5e3', 'uniqueId': '0x9108e890527a75b1d43357a2444bf4018e192cc34acf1733a356c0e69be18b61:log:5', 'hash': '0x9108e890527a75b1d43357a2444bf4018e192cc34acf1733a356c0e69be18b61', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfeacb5a0f52fbc6dd1c302e1b899a17613cba478', 'value': 494.398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1acd2689912f930000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:08:24.000Z'}}, {'blockNum': '0x63b5e8', 'uniqueId': '0x625b3555a72af7446e6bded450843f67b743b4f92521f7e7c03e1d773991a808:log:11', 'hash': '0x625b3555a72af7446e6bded450843f67b743b4f92521f7e7c03e1d773991a808', 'from': '0x0ec6f7a6b489585c026427fcb6ab9667f882c784', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x03c9b5de49506b800000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:09:12.000Z'}}, {'blockNum': '0x63b610', 'uniqueId': '0x89d42682aabf6a8ccc9e568982c98a14f306939eb91d9a1511f59a0855b81654:log:15', 'hash': '0x89d42682aabf6a8ccc9e568982c98a14f306939eb91d9a1511f59a0855b81654', 'from': '0x175818d253a1c00dedcadcc59b65fd53363b6603', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28454.685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06068814a01e1bfc8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:19:22.000Z'}}, {'blockNum': '0x63b61c', 'uniqueId': '0xf10fb68dadb46d5244a06a3cdbaafaa3c6fa7f202e5fff2481f01170bc5e62c7:log:13', 'hash': '0xf10fb68dadb46d5244a06a3cdbaafaa3c6fa7f202e5fff2481f01170bc5e62c7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9f050bc566289fe08f9534eb8b5b7437071a85ca', 'value': 27036.88995718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05b9ac38c87910255800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:22:21.000Z'}}, {'blockNum': '0x63b630', 'uniqueId': '0x64dd4fa34930bafa996984e0e4b01206a2a9d62d3ab3d0ef85ce4af0eaae023c:log:38', 'hash': '0x64dd4fa34930bafa996984e0e4b01206a2a9d62d3ab3d0ef85ce4af0eaae023c', 'from': '0x495a9ecaf36093860c8ef495a433dea9dfaedb9f', 'to': '0x7c25063ba78c0840c6f5e2eb349d4b10de2ae63c', 'value': 1897.4948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x66dd07bb3ddee10000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:27:49.000Z'}}, {'blockNum': '0x63b634', 'uniqueId': '0x9cd6442160755aa5e135cdb28194fab0b7bfeef636e3cbd69b3519c90b1f37f0:log:9', 'hash': '0x9cd6442160755aa5e135cdb28194fab0b7bfeef636e3cbd69b3519c90b1f37f0', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34375.37337996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x07477e23388a2ec8b000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:29:06.000Z'}}, {'blockNum': '0x63b63a', 'uniqueId': '0x20e0bedbd3adce3ba7c6ab3baaa80cc3adcd1584017b4a46095d92550ff3cb0a:log:0', 'hash': '0x20e0bedbd3adce3ba7c6ab3baaa80cc3adcd1584017b4a46095d92550ff3cb0a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc72d1f7dfab2aa2a24d5d5f7afb0b2e1b34666b0', 'value': 629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x221920e76a48b40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:30:12.000Z'}}, {'blockNum': '0x63b662', 'uniqueId': '0x8cdf53168e7d71e84be55288b974ba045eefc69b2bb129dcc4ab33f5840c64f9:log:2', 'hash': '0x8cdf53168e7d71e84be55288b974ba045eefc69b2bb129dcc4ab33f5840c64f9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbe2668aed3526fddf52381e60b283d63a9851de6', 'value': 2635.70996232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x8ee1d2d623e1cf2000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:40:24.000Z'}}, {'blockNum': '0x63b680', 'uniqueId': '0x59a84b5c1f6c9ac15968255b21b90429f8b75ae6db10ebd8c1620063d3f53b44:log:16', 'hash': '0x59a84b5c1f6c9ac15968255b21b90429f8b75ae6db10ebd8c1620063d3f53b44', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xed4f93c94e38e04734c3f9caaccd09a5fc624d84', 'value': 3132.3852692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xa9ce93fe3fbc562000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:48:59.000Z'}}, {'blockNum': '0x63b680', 'uniqueId': '0xc35251db1406ac04538f5dc733b1655871dce17733495f51f3d58ee089412890:log:18', 'hash': '0xc35251db1406ac04538f5dc733b1655871dce17733495f51f3d58ee089412890', 'from': '0x9da4c24b5f05b9a3db59f999d290eccddfbb30c1', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06d499ec6c63380000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:48:59.000Z'}}, {'blockNum': '0x63b681', 'uniqueId': '0x5d9947763f86eb982825a5943f769aa8f0261dd467a148ba586dd4fac0e51ba1:log:18', 'hash': '0x5d9947763f86eb982825a5943f769aa8f0261dd467a148ba586dd4fac0e51ba1', 'from': '0xc72d1f7dfab2aa2a24d5d5f7afb0b2e1b34666b0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x221920e76a48b40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:49:25.000Z'}}, {'blockNum': '0x63b681', 'uniqueId': '0x9cb400bfa2ca71f05c68ef9afcc397ed1fb4bebe77ddf56e1d78dde2fb185a64:log:25', 'hash': '0x9cb400bfa2ca71f05c68ef9afcc397ed1fb4bebe77ddf56e1d78dde2fb185a64', 'from': '0x7c25063ba78c0840c6f5e2eb349d4b10de2ae63c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1897.4948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x66dd07bb3ddee10000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:49:25.000Z'}}, {'blockNum': '0x63b684', 'uniqueId': '0x52131f63f4c8e7be73d2fafbd07d4fd9e8a37b972eee7562bc0e7a376730b7ab:log:2', 'hash': '0x52131f63f4c8e7be73d2fafbd07d4fd9e8a37b972eee7562bc0e7a376730b7ab', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0xf25945d30546e1d4c319b0191ebc9e2bfb6cc789', 'value': 8752.84878444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01da7e2d9ade27d43000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:49:56.000Z'}}, {'blockNum': '0x63b695', 'uniqueId': '0x4bd1b83c37168c8f08fdb5f67d777d3698c87ded998955b079f3037639f4fd09:log:23', 'hash': '0x4bd1b83c37168c8f08fdb5f67d777d3698c87ded998955b079f3037639f4fd09', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0xa29c972a17946a3ce0d006d46f781a8d25747435', 'value': 2159.533137810737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x75118aeb2455adfb80', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:53:00.000Z'}}, {'blockNum': '0x63b69e', 'uniqueId': '0x01075f17c2f0a07a2c702ea365bc50547e3bd30c57f4b6f821537697ef6384ab:log:3', 'hash': '0x01075f17c2f0a07a2c702ea365bc50547e3bd30c57f4b6f821537697ef6384ab', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'value': 12921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02bc72e5719ba6440000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:54:32.000Z'}}, {'blockNum': '0x63b6a5', 'uniqueId': '0x5db1be986b7e62bcefe894db2cecfb27df77818b02908d71d158c4ee39c27d43:log:1', 'hash': '0x5db1be986b7e62bcefe894db2cecfb27df77818b02908d71d158c4ee39c27d43', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 2167.53313781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x758090a0c164dd3400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:56:29.000Z'}}, {'blockNum': '0x63b6b3', 'uniqueId': '0x4b2cfcc00ac0612e71af53a96979454dcd455a65bf22e19763f15ad930219c7b:log:50', 'hash': '0x4b2cfcc00ac0612e71af53a96979454dcd455a65bf22e19763f15ad930219c7b', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'value': 8457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01ca747394e4c6840000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:59:08.000Z'}}, {'blockNum': '0x63b6e5', 'uniqueId': '0xd6bf1f6ab3bf2001abe4d6837803e2f094d7017a24e0ae13bc171732d9821967:log:13', 'hash': '0xd6bf1f6ab3bf2001abe4d6837803e2f094d7017a24e0ae13bc171732d9821967', 'from': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01ca747394e4c6840000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:09:18.000Z'}}, {'blockNum': '0x63b6e5', 'uniqueId': '0x94f6145dc24e74f7a3ab89744d64a7a8c0a9430c4ecac48202cfdbc297523007:log:16', 'hash': '0x94f6145dc24e74f7a3ab89744d64a7a8c0a9430c4ecac48202cfdbc297523007', 'from': '0xbe2668aed3526fddf52381e60b283d63a9851de6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2635.70996232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x8ee1d2d623e1cf2000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:09:18.000Z'}}, {'blockNum': '0x63b6e5', 'uniqueId': '0x98b0eaa7a7fd1852b1f33e8544547f929427db3b1787447c261cf84f56d6c89a:log:19', 'hash': '0x98b0eaa7a7fd1852b1f33e8544547f929427db3b1787447c261cf84f56d6c89a', 'from': '0xed4f93c94e38e04734c3f9caaccd09a5fc624d84', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3132.3852692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xa9ce93fe3fbc562000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:09:18.000Z'}}, {'blockNum': '0x63b6ed', 'uniqueId': '0x1fb0baf40f8d4472bb9a2c92dd8d4cc1343f12cfd5af3e976220c061b1d97aa6:log:4', 'hash': '0x1fb0baf40f8d4472bb9a2c92dd8d4cc1343f12cfd5af3e976220c061b1d97aa6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 32163.43252285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06cf954aae5cf8295400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:10:52.000Z'}}, {'blockNum': '0x63b703', 'uniqueId': '0xeed98cd224076ae6a6a05c74393497885f9bb93c7b36c9517710aa2ca643a7fa:log:23', 'hash': '0xeed98cd224076ae6a6a05c74393497885f9bb93c7b36c9517710aa2ca643a7fa', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x506b947bd113aeced07b1932cdfbb1fbb3f90f8d', 'value': 8558.1344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cfeff925dc52c80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:15:04.000Z'}}, {'blockNum': '0x63b712', 'uniqueId': '0x1e02f55b712643e5d54be3a67f6179588ae324ff923a0555bd717ed63d84095f:log:112', 'hash': '0x1e02f55b712643e5d54be3a67f6179588ae324ff923a0555bd717ed63d84095f', 'from': '0x53d203f07a228ccf767b71a741c078f3936b8318', 'to': '0xf3f963c7ba5757946a6bb6dd664ec121f3025ad3', 'value': 1699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5c1a5c8a4fecac0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:18:39.000Z'}}, {'blockNum': '0x63b72d', 'uniqueId': '0x1c1fade1312de896626f5857efbd3858388b4ee9f9fe853dcd6de685f21e70d6:log:15', 'hash': '0x1c1fade1312de896626f5857efbd3858388b4ee9f9fe853dcd6de685f21e70d6', 'from': '0x3b2657f866b4922393400c663b2ab027c47c9321', 'to': '0x10d8db6be4de3b63fb04a18ac6a8bff6437d5bba', 'value': 973.7822889117542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x34c9f1a8720fe9e1e5', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:25:05.000Z'}}, {'blockNum': '0x63b72f', 'uniqueId': '0xf48b75c64de0b1d21eef14e5e6ce66f6398e3dabcdf0e54c6d5c326b32bc749c:log:11', 'hash': '0xf48b75c64de0b1d21eef14e5e6ce66f6398e3dabcdf0e54c6d5c326b32bc749c', 'from': '0xf3f963c7ba5757946a6bb6dd664ec121f3025ad3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5c1a5c8a4fecac0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:26:08.000Z'}}, {'blockNum': '0x63b73d', 'uniqueId': '0x364922d122909c1d241d02e040a2da0949702efc5bbe229ceff2cd66bff6d5c4:log:3', 'hash': '0x364922d122909c1d241d02e040a2da0949702efc5bbe229ceff2cd66bff6d5c4', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32163.43252285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06cf954aae5cf8295400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:29:08.000Z'}}, {'blockNum': '0x63b73d', 'uniqueId': '0xa78749f75c39e60f0e45a95c0158ef9ccf03d4c97b9d268f0a505bee8d856770:log:9', 'hash': '0xa78749f75c39e60f0e45a95c0158ef9ccf03d4c97b9d268f0a505bee8d856770', 'from': '0x506b947bd113aeced07b1932cdfbb1fbb3f90f8d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8558.1344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cfeff925dc52c80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:29:08.000Z'}}, {'blockNum': '0x63b749', 'uniqueId': '0x7fdbb0186933badfd794e097f5386ac542ff150d7b2f6949cb7cdb46f2d5ec16:log:59', 'hash': '0x7fdbb0186933badfd794e097f5386ac542ff150d7b2f6949cb7cdb46f2d5ec16', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0xcc778f0a81a25e2a51474e5bcb0c6221a08395e6', 'value': 1098.3262566813153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3b8a56b7450e4c32aa', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:33:04.000Z'}}, {'blockNum': '0x63b74d', 'uniqueId': '0x8ee481a29e53b25dd56275cee674f1e4e351f11d516a005d18853ae1fbecf3c1:log:125', 'hash': '0x8ee481a29e53b25dd56275cee674f1e4e351f11d516a005d18853ae1fbecf3c1', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0xcc778f0a81a25e2a51474e5bcb0c6221a08395e6', 'value': 460.897271956588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x18fc3c0ae7f708e464', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:33:44.000Z'}}, {'blockNum': '0x63b759', 'uniqueId': '0x6a00be6fb255bd0fa5306f41d44c1b922aafd738226b48231777095cafed8b84:log:21', 'hash': '0x6a00be6fb255bd0fa5306f41d44c1b922aafd738226b48231777095cafed8b84', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 1106.32625668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3bf95c6ce1fb079000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:36:32.000Z'}}, {'blockNum': '0x63b769', 'uniqueId': '0x0503ce44d7753d1dbafcaf156634201a0952f0ef272f9725816c78d8fe3e29d8:log:75', 'hash': '0x0503ce44d7753d1dbafcaf156634201a0952f0ef272f9725816c78d8fe3e29d8', 'from': '0xf3bd66f75c950de66332d5dfc98fd04edde1055f', 'to': '0x7b2133ca58b043e405a472ab734f0a090a6c522b', 'value': 1320.3045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4792e7db7a19bb4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:39:56.000Z'}}, {'blockNum': '0x63b76f', 'uniqueId': '0xf61c8efa8eb7d36387b37df916fb56fb6486592eeec4a53bb36f3b489339fa4d:log:17', 'hash': '0xf61c8efa8eb7d36387b37df916fb56fb6486592eeec4a53bb36f3b489339fa4d', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0xcc778f0a81a25e2a51474e5bcb0c6221a08395e6', 'value': 1112.288345891971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3c4c1a056eb9bee274', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:41:20.000Z'}}, {'blockNum': '0x63b77e', 'uniqueId': '0x4a9f49077f5e09ab386325750a1dd8c55ef86a384de22a060f875a7fd03c55ec:log:66', 'hash': '0x4a9f49077f5e09ab386325750a1dd8c55ef86a384de22a060f875a7fd03c55ec', 'from': '0x7ff09e0fea5ed9b0c10679c8a21a1ee378e1acfc', 'to': '0x7d140d96e4d8a16bff8bca601addd839023360af', 'value': 113.36443379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06253f5fe6c83d6c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:43:59.000Z'}}, {'blockNum': '0x63b784', 'uniqueId': '0xb66ec7bae4a9289d99913cae51b0e402fd1c40c92a7c2d526a52a2da01a1767f:log:116', 'hash': '0xb66ec7bae4a9289d99913cae51b0e402fd1c40c92a7c2d526a52a2da01a1767f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 468.89727195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x196b41c083a97c0c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:44:39.000Z'}}, {'blockNum': '0x63b795', 'uniqueId': '0xf1c53db26ab632d07ac7a439c5571cd929eeff147246f854790181dd116e19e8:log:1', 'hash': '0xf1c53db26ab632d07ac7a439c5571cd929eeff147246f854790181dd116e19e8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 30421.37490108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06712562bd2e21837000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:49:06.000Z'}}, {'blockNum': '0x63b7a2', 'uniqueId': '0x69296abcc9023b4b68cef81f01d92eff9983ebe912b7c2a76a50771bc62c2195:log:7', 'hash': '0x69296abcc9023b4b68cef81f01d92eff9983ebe912b7c2a76a50771bc62c2195', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 1120.28834589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3cbb1fbb0b7f64d400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:52:54.000Z'}}, {'blockNum': '0x63b7a3', 'uniqueId': '0x5eac7157a986769097235638ab215697e1d7dfbb4ee78d2e9a71f4fd88c8a698:log:32', 'hash': '0x5eac7157a986769097235638ab215697e1d7dfbb4ee78d2e9a71f4fd88c8a698', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0xd646f40170a0c425e22e0b9e557fe341224baf92', 'value': 1312.3045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4723e225dcde9b4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:53:10.000Z'}}, {'blockNum': '0x63b7b7', 'uniqueId': '0xcf9ddb876c8834be95e1c673fb9e65875422c16add901ad476e74ae743e7b596:log:12', 'hash': '0xcf9ddb876c8834be95e1c673fb9e65875422c16add901ad476e74ae743e7b596', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 25865.66742171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x057a2e3e75ddaa730c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:56:52.000Z'}}, {'blockNum': '0x63b7bc', 'uniqueId': '0xf8c642e4823f22139387c8eb554c4e978455dd403aa2f5dc83d853362d62b42e:log:8', 'hash': '0xf8c642e4823f22139387c8eb554c4e978455dd403aa2f5dc83d853362d62b42e', 'from': '0xd646f40170a0c425e22e0b9e557fe341224baf92', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1312.3045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4723e225dcde9b4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:59:10.000Z'}}, {'blockNum': '0x63b7bc', 'uniqueId': '0x2d35fde1a3c2cedd8df136e046adab00265553766a9184c02f9fa8396b2b67d6:log:18', 'hash': '0x2d35fde1a3c2cedd8df136e046adab00265553766a9184c02f9fa8396b2b67d6', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56287.04232279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0beb53a1330bcbf67c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:59:10.000Z'}}, {'blockNum': '0x63b7c2', 'uniqueId': '0x4db6bb606e47cd005fa44137fc7d16ecac3ce890067e49ac54c0b376764213dc:log:69', 'hash': '0x4db6bb606e47cd005fa44137fc7d16ecac3ce890067e49ac54c0b376764213dc', 'from': '0x7b2133ca58b043e405a472ab734f0a090a6c522b', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 1320.3045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4792e7db7a19bb4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:00:31.000Z'}}, {'blockNum': '0x63b7ce', 'uniqueId': '0xe3f7fd3bb382ed30eab357a12786440dd78b68ec3b529910e3bd7cadd54be175:log:12', 'hash': '0xe3f7fd3bb382ed30eab357a12786440dd78b68ec3b529910e3bd7cadd54be175', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x2df60a5875fce3d2feac4a5e8b4ca6db1c573034', 'value': 28.7227385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x018e9baa7c74efa800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:03:50.000Z'}}, {'blockNum': '0x63b7d4', 'uniqueId': '0x8bd2fdd4e7042646583b1e2f470e451f1f11db58b204251db01703c6aa6e7b66:log:8', 'hash': '0x8bd2fdd4e7042646583b1e2f470e451f1f11db58b204251db01703c6aa6e7b66', 'from': '0x7d140d96e4d8a16bff8bca601addd839023360af', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 113.36443379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06253f5fe6c83d6c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:05:28.000Z'}}, {'blockNum': '0x63b7d5', 'uniqueId': '0x33301df9f453bb460926470b6c36a39df4030c91e0db9a2a64ee8eacc9ce3661:log:69', 'hash': '0x33301df9f453bb460926470b6c36a39df4030c91e0db9a2a64ee8eacc9ce3661', 'from': '0xf25945d30546e1d4c319b0191ebc9e2bfb6cc789', 'to': '0x20f690450a223908f4a9823c240684f5dc946ded', 'value': 3337.88446688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xb4f273cdc1ec838000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:06:16.000Z'}}, {'blockNum': '0x63b7e5', 'uniqueId': '0x5099a543072a78bb34c21ca8a5f1e55f4d9d72cb86bf371c2fac615ba86689b2:log:4', 'hash': '0x5099a543072a78bb34c21ca8a5f1e55f4d9d72cb86bf371c2fac615ba86689b2', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'value': 1636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x58b00f9419bb100000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:09:25.000Z'}}, {'blockNum': '0x63b7f7', 'uniqueId': '0x2f6c9c5149e963d06593018d763f35037ad47b89490b1275e2339fa68db6792c:log:0', 'hash': '0x2f6c9c5149e963d06593018d763f35037ad47b89490b1275e2339fa68db6792c', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x175818d253a1c00dedcadcc59b65fd53363b6603', 'value': 28454.685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06068814a01e1bfc8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:13:36.000Z'}}, {'blockNum': '0x63b80f', 'uniqueId': '0xc710c5d93774fbacd5813d89764684f9ae6a7fd06fe5e2d7fafd894923e879a7:log:18', 'hash': '0xc710c5d93774fbacd5813d89764684f9ae6a7fd06fe5e2d7fafd894923e879a7', 'from': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x58b00f9419bb100000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:19:12.000Z'}}, {'blockNum': '0x63b81c', 'uniqueId': '0x09ed57018fc2bfbbbb57e6fc88a6c30ae50e462a2601d4f177384f0368bd8ce1:log:9', 'hash': '0x09ed57018fc2bfbbbb57e6fc88a6c30ae50e462a2601d4f177384f0368bd8ce1', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x3260eb070b83568993c69ff8b5b3f663b382e8a8', 'value': 1464.7397417318734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4f6758ea94d5b8f52a', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:21:53.000Z'}}, {'blockNum': '0x63b821', 'uniqueId': '0x9996daec0e898ee9f9311d67836651917448b3d225d5fdcc95428d8077bbe0dc:log:7', 'hash': '0x9996daec0e898ee9f9311d67836651917448b3d225d5fdcc95428d8077bbe0dc', 'from': '0x3260eb070b83568993c69ff8b5b3f663b382e8a8', 'to': '0xf67fe1373e9d1f0a978b125b77a12b149628f3ac', 'value': 1464.7397417318734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4f6758ea94d5b8f52a', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:25:09.000Z'}}, {'blockNum': '0x63b825', 'uniqueId': '0xe51d45b96587418bc5e86c47161698e14113fade68bf4198e71908d812141879:log:16', 'hash': '0xe51d45b96587418bc5e86c47161698e14113fade68bf4198e71908d812141879', 'from': '0x20f690450a223908f4a9823c240684f5dc946ded', 'to': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'value': 3337.88446688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xb4f273cdc1ec838000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:25:50.000Z'}}, {'blockNum': '0x63b82d', 'uniqueId': '0x965357f17cc753652d810fb3072846c1e7c7879f8192e523257d739d352ce6ee:log:12', 'hash': '0x965357f17cc753652d810fb3072846c1e7c7879f8192e523257d739d352ce6ee', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x08c04040d57b7f6268778a8d6502c098d02fb29e', 'value': 16910.067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0394b25257200f6b8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:28:13.000Z'}}, {'blockNum': '0x63b82d', 'uniqueId': '0x96dcf9af749d93ee1a56117f31ce6b923f1ae94a7f201f46d6c9b988ea7a0b1b:log:13', 'hash': '0x96dcf9af749d93ee1a56117f31ce6b923f1ae94a7f201f46d6c9b988ea7a0b1b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf33ceee08e164b6b60ca6bb1e4aafd16d1b04633', 'value': 33603.357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x071da4421148c3fc8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:28:13.000Z'}}, {'blockNum': '0x63b849', 'uniqueId': '0x5ccaf942a6e1e5ae90b423a795bbeb2e5b54af21921103406e2a50dca80d564d:log:9', 'hash': '0x5ccaf942a6e1e5ae90b423a795bbeb2e5b54af21921103406e2a50dca80d564d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9a56a4b1a553bd80cf521b31c8924209e4e66aac', 'value': 1499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5142cdcdf5268c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:35:16.000Z'}}, {'blockNum': '0x63b849', 'uniqueId': '0x1241f2f6ac2548b37e1d214987b53ff8d9d419678b6a9145df61ff50958104c5:log:10', 'hash': '0x1241f2f6ac2548b37e1d214987b53ff8d9d419678b6a9145df61ff50958104c5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd4edb53ce6ad280fa12abe68fd6adb3f51237178', 'value': 1499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5142cdcdf5268c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:35:16.000Z'}}, {'blockNum': '0x63b85d', 'uniqueId': '0xc9f602524b803b9008ac637780174c4696d93d2b47071e739686c231ca1e90c2:log:0', 'hash': '0xc9f602524b803b9008ac637780174c4696d93d2b47071e739686c231ca1e90c2', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xb4175163b55f6c522b106fc908a40c0a553c0aee', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:38:57.000Z'}}, {'blockNum': '0x63b85e', 'uniqueId': '0x54ce437e699980ac70c1c3630bed5d821c39e4c63b5a3843ffbe59b1ff4302ca:log:14', 'hash': '0x54ce437e699980ac70c1c3630bed5d821c39e4c63b5a3843ffbe59b1ff4302ca', 'from': '0xf67fe1373e9d1f0a978b125b77a12b149628f3ac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1464.7397417318734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4f6758ea94d5b8f52a', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:39:18.000Z'}}, {'blockNum': '0x63b85e', 'uniqueId': '0xd446cb42f21e605ab2b13d519080a8a19dcc1af96c8c112af0a45af0c985822e:log:17', 'hash': '0xd446cb42f21e605ab2b13d519080a8a19dcc1af96c8c112af0a45af0c985822e', 'from': '0x175818d253a1c00dedcadcc59b65fd53363b6603', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28454.685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06068814a01e1bfc8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:39:18.000Z'}}, {'blockNum': '0x63b85f', 'uniqueId': '0xc8e11bab4d6aa7823438535672ef9aaf6e2ce07c6bb2053c3131c5f749871ea4:log:17', 'hash': '0xc8e11bab4d6aa7823438535672ef9aaf6e2ce07c6bb2053c3131c5f749871ea4', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x3079f797a3b2f72cddf2638d64d9c4ae9f46a725', 'value': 534.1372836275567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1cf4a4d57a88962af3', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:39:24.000Z'}}, {'blockNum': '0x63b866', 'uniqueId': '0x490ba60fcec1e272cb584ad0392c56365e4445695b72d960f9da289b66af8ccf:log:9', 'hash': '0x490ba60fcec1e272cb584ad0392c56365e4445695b72d960f9da289b66af8ccf', 'from': '0x2e42e23b855480402d6ce33869a588f7ff566464', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 440, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x17da3a04c7b3e00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:43:13.000Z'}}, {'blockNum': '0x63b87c', 'uniqueId': '0x8ad100af15487945912015d034e073ecdd519cf2ea9518a8f7268c6d75617ebd:log:19', 'hash': '0x8ad100af15487945912015d034e073ecdd519cf2ea9518a8f7268c6d75617ebd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9f050bc566289fe08f9534eb8b5b7437071a85ca', 'value': 37864.3538597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0804a177e573d5738800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:48:04.000Z'}}, {'blockNum': '0x63b882', 'uniqueId': '0xce821f48a522863581c4ffe67a456d9955664c9e2b3b45079418983762a8545f:log:18', 'hash': '0xce821f48a522863581c4ffe67a456d9955664c9e2b3b45079418983762a8545f', 'from': '0x9a56a4b1a553bd80cf521b31c8924209e4e66aac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5142cdcdf5268c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:49:11.000Z'}}, {'blockNum': '0x63b890', 'uniqueId': '0x459398246e3c9f92626c3baaf1cd3e8824a987ec3d0264efc12acef28ae042bc:log:8', 'hash': '0x459398246e3c9f92626c3baaf1cd3e8824a987ec3d0264efc12acef28ae042bc', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x76a2aaa2e54ca4fac6af634e18a5e6a3d7c80991', 'value': 3394.88807214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xb809894ab93366f800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:51:28.000Z'}}, {'blockNum': '0x63b89e', 'uniqueId': '0x118d710a586e9b8c735e2166aedbe3e38dd75e9a9fbcac63076aaacfd6a1999a:log:1', 'hash': '0x118d710a586e9b8c735e2166aedbe3e38dd75e9a9fbcac63076aaacfd6a1999a', 'from': '0x76a2aaa2e54ca4fac6af634e18a5e6a3d7c80991', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 3394.88807214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xb809894ab93366f800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:53:26.000Z'}}, {'blockNum': '0x63b8ab', 'uniqueId': '0xdb67b7e5c7da73640870010c236415a253ea6ad9790cd692dcdf6b592e110b8d:log:6', 'hash': '0xdb67b7e5c7da73640870010c236415a253ea6ad9790cd692dcdf6b592e110b8d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'value': 28935.73839718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06209c099c1f68c8d800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:55:40.000Z'}}, {'blockNum': '0x63b8d2', 'uniqueId': '0x27cf4232113a21c92c3a5527b098a8f8731f9143fd5f9fc941b584fc768b02a7:log:17', 'hash': '0x27cf4232113a21c92c3a5527b098a8f8731f9143fd5f9fc941b584fc768b02a7', 'from': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 28935.73839718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06209c099c1f68c8d800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:05:07.000Z'}}, {'blockNum': '0x63b8df', 'uniqueId': '0xc1a01adca28728568487fe73b1ea16548e63ad2b2b2ce3f97125e5bd38a7cb92:log:2', 'hash': '0xc1a01adca28728568487fe73b1ea16548e63ad2b2b2ce3f97125e5bd38a7cb92', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x440d08e428ede1985a1f47f7336ac3fd6b0dc387', 'value': 1077.915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3a6f135d76292f8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:07:43.000Z'}}, {'blockNum': '0x63b8eb', 'uniqueId': '0xc87f05c8056e55c33b5b0cb55fd57571beedf13c1c0c26b926876fad94109b88:log:5', 'hash': '0xc87f05c8056e55c33b5b0cb55fd57571beedf13c1c0c26b926876fad94109b88', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xe0847b7484a30c7e3b3c92dfb2749f087b926517', 'value': 5463.4887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01282d2309d8a4b7c000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:09:36.000Z'}}, {'blockNum': '0x63b900', 'uniqueId': '0xe07dc0fd700f0dfda617694866296b0b4dd6c1211e1f43be4cb4f63b16cad3a0:log:7', 'hash': '0xe07dc0fd700f0dfda617694866296b0b4dd6c1211e1f43be4cb4f63b16cad3a0', 'from': '0x9de85fc08dc6fa936a70437e46ec44a7d919795a', 'to': '0xe0847b7484a30c7e3b3c92dfb2749f087b926517', 'value': 55338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0bb7e1058eb5d6680000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:14:51.000Z'}}, {'blockNum': '0x63b90d', 'uniqueId': '0xedff6b52764c09618bd52bba522e0bb8ed025b034fda131c17aba061828f223c:log:22', 'hash': '0xedff6b52764c09618bd52bba522e0bb8ed025b034fda131c17aba061828f223c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0f2bb5136d048b540510d25e7fca0a2ea806c79b', 'value': 5500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x012a27d53bc048700000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:18:08.000Z'}}, {'blockNum': '0x63b915', 'uniqueId': '0x24d0da06c5fa7a49616e38f6d3d9fbad7fe96347e0b05f920a72041f2b39b996:log:11', 'hash': '0x24d0da06c5fa7a49616e38f6d3d9fbad7fe96347e0b05f920a72041f2b39b996', 'from': '0xe0847b7484a30c7e3b3c92dfb2749f087b926517', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60801.4887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0ce00e28988e7b1fc000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:19:28.000Z'}}, {'blockNum': '0x63b922', 'uniqueId': '0x941b5e85e35121b4cfe7d8a7c4ccab113683fdfcf920eda72aea5d2001529155:log:85', 'hash': '0x941b5e85e35121b4cfe7d8a7c4ccab113683fdfcf920eda72aea5d2001529155', 'from': '0x440d08e428ede1985a1f47f7336ac3fd6b0dc387', 'to': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'value': 1077.915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3a6f135d76292f8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:22:28.000Z'}}, {'blockNum': '0x63b925', 'uniqueId': '0xfd41c7e712e1dcf2d961f401241117d0ca87190cef0ab70b5dfbefc5f37467e2:log:82', 'hash': '0xfd41c7e712e1dcf2d961f401241117d0ca87190cef0ab70b5dfbefc5f37467e2', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0x03756ed9957de46d36af8a17fb9bb69431a0da42', 'value': 2004.4542769820614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6ca96420dc7c3972cf', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:23:39.000Z'}}, {'blockNum': '0x63b946', 'uniqueId': '0xad4893e8cca79c031e0e664772eb942ad32a4e7bc7caff9a4f0cda45636b879a:log:6', 'hash': '0xad4893e8cca79c031e0e664772eb942ad32a4e7bc7caff9a4f0cda45636b879a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 2012.45427698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6d1869d6793c798800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:30:01.000Z'}}, {'blockNum': '0x63b952', 'uniqueId': '0x0408042210203a1d77f325a0477dd0b3a937f0e686c44ecb61c59eb3e079475b:log:22', 'hash': '0x0408042210203a1d77f325a0477dd0b3a937f0e686c44ecb61c59eb3e079475b', 'from': '0x0f2bb5136d048b540510d25e7fca0a2ea806c79b', 'to': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'value': 5500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x012a27d53bc048700000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:33:52.000Z'}}, {'blockNum': '0x63b954', 'uniqueId': '0x1903adfb9f6addcf28d79cc58246b2e24fd35982f0b50e91cc97562e9d255f37:log:5', 'hash': '0x1903adfb9f6addcf28d79cc58246b2e24fd35982f0b50e91cc97562e9d255f37', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'value': 1702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5c43feae6ae2d80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:34:17.000Z'}}, {'blockNum': '0x63b961', 'uniqueId': '0x557cb8582628f2326eeaa63716232c933e7ecfa9f6406ff8185516a6c73b1a8a:log:8', 'hash': '0x557cb8582628f2326eeaa63716232c933e7ecfa9f6406ff8185516a6c73b1a8a', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xb4175163b55f6c522b106fc908a40c0a553c0aee', 'value': 22560.25731037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x04c6fe76be6a5d5fd400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:36:38.000Z'}}, {'blockNum': '0x63b974', 'uniqueId': '0x2fa3ea61429bd7928cb737d4ef52bb983a0cd9e6924425fc57d1616165c4b066:log:14', 'hash': '0x2fa3ea61429bd7928cb737d4ef52bb983a0cd9e6924425fc57d1616165c4b066', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe9bd0792177a17d73bab6ce3ed000cfc04e1895b', 'value': 201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0ae56f730e6d840000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:41:32.000Z'}}, {'blockNum': '0x63b980', 'uniqueId': '0x19d32564a79ab4f58e8fee7d4b60996d30a458ece68c15a37cf93bd7a550be87:log:1', 'hash': '0x19d32564a79ab4f58e8fee7d4b60996d30a458ece68c15a37cf93bd7a550be87', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6f5c678e1d3c83fb5f31ec2fe5930eac801f9884', 'value': 1377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4aa5b6bc5760e40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:43:59.000Z'}}, {'blockNum': '0x63b98f', 'uniqueId': '0xc6f0d56b6abb3a9e2af3dbe6bf6b055be92a16aba43c1f7710a3e4b3e25f6f04:log:109', 'hash': '0xc6f0d56b6abb3a9e2af3dbe6bf6b055be92a16aba43c1f7710a3e4b3e25f6f04', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 1992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6bfc8da5ee82200000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:47:05.000Z'}}, {'blockNum': '0x63b9a1', 'uniqueId': '0xbdc1e5b4ab646d368ea1184e9d9ab84f32ddb9f6b95633e6fbfaafcb3ab16ac2:log:62', 'hash': '0xbdc1e5b4ab646d368ea1184e9d9ab84f32ddb9f6b95633e6fbfaafcb3ab16ac2', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xb4175163b55f6c522b106fc908a40c0a553c0aee', 'value': 17357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x03acecc352ac37140000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:50:32.000Z'}}, {'blockNum': '0x63b9c7', 'uniqueId': '0xd7cf33e0a320730c09a96b9f6aad3e736d3f25a83bef9fb95219266d491b7ce4:log:17', 'hash': '0xd7cf33e0a320730c09a96b9f6aad3e736d3f25a83bef9fb95219266d491b7ce4', 'from': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5c43feae6ae2d80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:59:05.000Z'}}, {'blockNum': '0x63b9c7', 'uniqueId': '0xa74cdb43f3bd9daf84609897f477a9ffc3c6fd29ced31a5f103d34474d83b2fd:log:23', 'hash': '0xa74cdb43f3bd9daf84609897f477a9ffc3c6fd29ced31a5f103d34474d83b2fd', 'from': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6bfc8da5ee82200000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:59:05.000Z'}}, {'blockNum': '0x63b9ef', 'uniqueId': '0x2dc386dcc99db5a6cb6e854276c108b0007ea1932086be32fd74b406d84593b3:log:1', 'hash': '0x2dc386dcc99db5a6cb6e854276c108b0007ea1932086be32fd74b406d84593b3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x00e3288576a962f74790440a419be8fd2d17ea96', 'value': 5411.3425722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01255976c6e4e9989000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T03:06:02.000Z'}}, {'blockNum': '0x63ba55', 'uniqueId': '0xb402b8d39d31553207d9780a8dd0d6d2b70c7ede7496951c0bc300be2e2c6042:log:5', 'hash': '0xb402b8d39d31553207d9780a8dd0d6d2b70c7ede7496951c0bc300be2e2c6042', 'from': '0xc8e6d4220b863a4cef97a1a390429447cbd235b1', 'to': '0x81823168c51c686ab4c8cb5f25c59ed0beb99707', 'value': 1125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3cfc82e37e9a740000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T03:31:26.000Z'}}, {'blockNum': '0x63ba5a', 'uniqueId': '0x780d751e693b78457d2293740d8c3721b928805efb5e81bae11914bb050af39b:log:3', 'hash': '0x780d751e693b78457d2293740d8c3721b928805efb5e81bae11914bb050af39b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x64ab2318b4861b52b91f2c101d1f0214578f5cdf', 'value': 233.2605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0ca523c4e206014000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T03:33:25.000Z'}}, {'blockNum': '0x63ba79', 'uniqueId': '0x61800a62a74a3e12e32e486d246a40f2b654ea9a979e0eaf8b45028dddbdcb09:log:1', 'hash': '0x61800a62a74a3e12e32e486d246a40f2b654ea9a979e0eaf8b45028dddbdcb09', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'value': 28030.32961606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05ef86f772c15fc85800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T03:41:41.000Z'}}, {'blockNum': '0x63bb04', 'uniqueId': '0x9dbde0d18c15553a0019b7430d5ed8c13c4ba4c0aec700fc0659baea05114618:log:10', 'hash': '0x9dbde0d18c15553a0019b7430d5ed8c13c4ba4c0aec700fc0659baea05114618', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:13:26.000Z'}}, {'blockNum': '0x63bb27', 'uniqueId': '0xc669ea12b0c889c7a2fee6e4648056e8418d132d4e1d84345762fc499b4a215c:log:7', 'hash': '0xc669ea12b0c889c7a2fee6e4648056e8418d132d4e1d84345762fc499b4a215c', 'from': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 28030.32961606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05ef86f772c15fc85800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:23:30.000Z'}}, {'blockNum': '0x63bb40', 'uniqueId': '0xae6fd71449ca8fab87c904fdef40aff685a5caa4f1f672ec9ec12c6a71c1d94d:log:10', 'hash': '0xae6fd71449ca8fab87c904fdef40aff685a5caa4f1f672ec9ec12c6a71c1d94d', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:29:11.000Z'}}, {'blockNum': '0x63bb58', 'uniqueId': '0xd41cb777903f6f0b2273cec363303c8b77cd502d37c9c70f135b3a01f890a428:log:9', 'hash': '0xd41cb777903f6f0b2273cec363303c8b77cd502d37c9c70f135b3a01f890a428', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x9a56a4b1a553bd80cf521b31c8924209e4e66aac', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:35:45.000Z'}}, {'blockNum': '0x63bb5f', 'uniqueId': '0xf3b3f195417d629b15930bed3f8f29ceba57686c38971b79fede585f043afa2b:log:18', 'hash': '0xf3b3f195417d629b15930bed3f8f29ceba57686c38971b79fede585f043afa2b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 34292.12848416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0742fae1f0dc2b608000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:37:20.000Z'}}, {'blockNum': '0x63bb5f', 'uniqueId': '0x9abb3194e96feebffa774b3b09303a555bf7db4717cee7a1c3663fb176f07feb:log:19', 'hash': '0x9abb3194e96feebffa774b3b09303a555bf7db4717cee7a1c3663fb176f07feb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf3a71cc1be5ce833c471e3f25aa391f9cd56e1aa', 'value': 36.97603404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x020125430d4cf3b000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:37:20.000Z'}}, {'blockNum': '0x63bb66', 'uniqueId': '0x376a12c42c13d57eaf31c770b8b006e5b1ad0e67958919ef6daee0221ea880ea:log:40', 'hash': '0x376a12c42c13d57eaf31c770b8b006e5b1ad0e67958919ef6daee0221ea880ea', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'value': 15963.37, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x03616042f570df710000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:39:56.000Z'}}, {'blockNum': '0x63bb6a', 'uniqueId': '0xb5592866b2a39a2dc37c816591977b06f6640dc8d7bd0fa1a399b35a1fe63676:log:9', 'hash': '0xb5592866b2a39a2dc37c816591977b06f6640dc8d7bd0fa1a399b35a1fe63676', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xe89d01615a43bc8b58d2bc4a7744c3393602ad56', 'value': 14058.9456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02fa231057b6bd040000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:40:36.000Z'}}, {'blockNum': '0x63bb7c', 'uniqueId': '0x6cd5ff9a3513d6cfa4a5cdd68f0623b0cdfef5428ca371aeeced232b6ac6f354:log:3', 'hash': '0x6cd5ff9a3513d6cfa4a5cdd68f0623b0cdfef5428ca371aeeced232b6ac6f354', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x669d7796c9a1435cad8c62a2a43d951bbb45b39a', 'value': 1994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6c184f1355d0e80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:44:02.000Z'}}, {'blockNum': '0x63bb84', 'uniqueId': '0x4d51e124c5a9c4fe36613770a1f205716c8f2de6d2c20550420003d9892dd400:log:16', 'hash': '0x4d51e124c5a9c4fe36613770a1f205716c8f2de6d2c20550420003d9892dd400', 'from': '0x56f2cf864a053e5184c6613ecbd6560193a7d724', 'to': '0x52ce9026e4062171ec710214744f15a472bc764a', 'value': 1142.7764135076848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3df335656574745fb5', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:46:21.000Z'}}, {'blockNum': '0x63bb91', 'uniqueId': '0x2c97b11c83fb1d4c87c1f78ef539d1e096c64a822cea461182b529fbccaed89a:log:10', 'hash': '0x2c97b11c83fb1d4c87c1f78ef539d1e096c64a822cea461182b529fbccaed89a', 'from': '0x9a56a4b1a553bd80cf521b31c8924209e4e66aac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:49:14.000Z'}}, {'blockNum': '0x63bb91', 'uniqueId': '0x9e42b3dc4da2b305bcd54c43d141f2455c4bbfe3d2293724ccdddd187396aeed:log:12', 'hash': '0x9e42b3dc4da2b305bcd54c43d141f2455c4bbfe3d2293724ccdddd187396aeed', 'from': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15963.37, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x03616042f570df710000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:49:14.000Z'}}, {'blockNum': '0x63bb91', 'uniqueId': '0x2e3762118a29b38264b82a3665f0c1ff9fc0339d74e52d589b43d138f2546fb5:log:15', 'hash': '0x2e3762118a29b38264b82a3665f0c1ff9fc0339d74e52d589b43d138f2546fb5', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34292.12848416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0742fae1f0dc2b608000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:49:14.000Z'}}, {'blockNum': '0x63bb93', 'uniqueId': '0xbe24f39e588fc249ff09e4c6359b69c6c18e2649e091e3d3e39a938e2a690100:log:18', 'hash': '0xbe24f39e588fc249ff09e4c6359b69c6c18e2649e091e3d3e39a938e2a690100', 'from': '0x669d7796c9a1435cad8c62a2a43d951bbb45b39a', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6c184f1355d0e80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:50:17.000Z'}}, {'blockNum': '0x63bbb8', 'uniqueId': '0xdb8dabd42f4e305d0f244a3ab31ce24d9cbaa27fd9308463e201d911f5db9e10:log:32', 'hash': '0xdb8dabd42f4e305d0f244a3ab31ce24d9cbaa27fd9308463e201d911f5db9e10', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 28449.535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0606409c26674ab98000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:59:43.000Z'}}, {'blockNum': '0x63bbb8', 'uniqueId': '0x15f141e830123a4696d9df06c877c56889ed9bcb97be16040fb28e55cbfa5520:log:57', 'hash': '0x15f141e830123a4696d9df06c877c56889ed9bcb97be16040fb28e55cbfa5520', 'from': '0x52ce9026e4062171ec710214744f15a472bc764a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1142.7764135076848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3df335656574745fb5', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:59:43.000Z'}}]}}
Number of returned transfers: 578
Answer is complete
symbol XZC
group BPS
date 2018-10-20
hour 20:05
exchange binance
Name: 307, dtype: object
HERE
Symbol: XZC, Contract:
Datetime timestamps: 2018-10-20 20:05:00 2018-10-20 08:05:00 2018-10-21 08:05:00
Unix timestamps: 1540015500.0 1540101900.0
Hex Block Numbers: 0x63ec74 0x640485
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol BNT
group BPS
date 2019-01-06
hour 21:00
exchange binance
Name: 308, dtype: object
HERE
Symbol: BNT, Contract: 0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c
Datetime timestamps: 2019-01-06 21:00:00 2019-01-06 09:00:00 2019-01-07 09:00:00
Unix timestamps: 1546761600.0 1546848000.0
Hex Block Numbers: 0x6b1a1f 0x6b2fc9
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x6b1a3a', 'uniqueId': '0xa70f8a629c1f8c9cd5d9316951efdcf0a2f3a289690a9290c381d52032fab6c4:log:54', 'hash': '0xa70f8a629c1f8c9cd5d9316951efdcf0a2f3a289690a9290c381d52032fab6c4', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 86.7824850948604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b459526684c9382d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:08:14.000Z'}}, {'blockNum': '0x6b1a3a', 'uniqueId': '0xa70f8a629c1f8c9cd5d9316951efdcf0a2f3a289690a9290c381d52032fab6c4:log:58', 'hash': '0xa70f8a629c1f8c9cd5d9316951efdcf0a2f3a289690a9290c381d52032fab6c4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 86.7824850948604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b459526684c9382d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:08:14.000Z'}}, {'blockNum': '0x6b1a44', 'uniqueId': '0x8c95552dda867153a8f7e7d39ca6750d917f2cd00a52912b4fb3ebc993d9d647:log:45', 'hash': '0x8c95552dda867153a8f7e7d39ca6750d917f2cd00a52912b4fb3ebc993d9d647', 'from': '0x99f357f722ec3e456af0eb530c1c14a3251305ad', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 284.71836387374753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f6f42d370cd21b311', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:11:16.000Z'}}, {'blockNum': '0x6b1a44', 'uniqueId': '0x8c95552dda867153a8f7e7d39ca6750d917f2cd00a52912b4fb3ebc993d9d647:log:49', 'hash': '0x8c95552dda867153a8f7e7d39ca6750d917f2cd00a52912b4fb3ebc993d9d647', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 284.71836387374753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f6f42d370cd21b311', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:11:16.000Z'}}, {'blockNum': '0x6b1a58', 'uniqueId': '0xf58fac6413a28b8bb5c8f6a659d639a978dfcd40efd626d3d88a8c9d2d50b7a0:log:199', 'hash': '0xf58fac6413a28b8bb5c8f6a659d639a978dfcd40efd626d3d88a8c9d2d50b7a0', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 445.65913148990586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1828c34ae304f0db8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:14:28.000Z'}}, {'blockNum': '0x6b1a58', 'uniqueId': '0xf58fac6413a28b8bb5c8f6a659d639a978dfcd40efd626d3d88a8c9d2d50b7a0:log:203', 'hash': '0xf58fac6413a28b8bb5c8f6a659d639a978dfcd40efd626d3d88a8c9d2d50b7a0', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 445.65913148990586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1828c34ae304f0db8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:14:28.000Z'}}, {'blockNum': '0x6b1a60', 'uniqueId': '0xaab70c8217ae9d8efe4cd8eb26ce55fe184b7d81f774c898bdd2fb6c0103dfcb:log:51', 'hash': '0xaab70c8217ae9d8efe4cd8eb26ce55fe184b7d81f774c898bdd2fb6c0103dfcb', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 434.721, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1790f73e3fda968000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:16:31.000Z'}}, {'blockNum': '0x6b1a62', 'uniqueId': '0xba124000943d1f1e1f3399f2cb4271063ad2e446572c3091c5aa3375cf71729f:log:108', 'hash': '0xba124000943d1f1e1f3399f2cb4271063ad2e446572c3091c5aa3375cf71729f', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'value': 435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1794d673456eec0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:16:53.000Z'}}, {'blockNum': '0x6b1a7a', 'uniqueId': '0x872288e5bd93d9522dfbddb54c6bdd9b2c47ae4f5b618f7578479deed6c0b12b:log:74', 'hash': '0x872288e5bd93d9522dfbddb54c6bdd9b2c47ae4f5b618f7578479deed6c0b12b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 220.30111646698853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf14aca38accf181d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:21:40.000Z'}}, {'blockNum': '0x6b1a7a', 'uniqueId': '0x872288e5bd93d9522dfbddb54c6bdd9b2c47ae4f5b618f7578479deed6c0b12b:log:78', 'hash': '0x872288e5bd93d9522dfbddb54c6bdd9b2c47ae4f5b618f7578479deed6c0b12b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x99f357f722ec3e456af0eb530c1c14a3251305ad', 'value': 220.30111646698853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf14aca38accf181d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:21:40.000Z'}}, {'blockNum': '0x6b1a80', 'uniqueId': '0xf4d14be94db39d7eeef270120157ba17cc598e7afebe429f9b01cb9e000b5b98:log:239', 'hash': '0xf4d14be94db39d7eeef270120157ba17cc598e7afebe429f9b01cb9e000b5b98', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 802.7449687491827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b845307f3c7158257', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:23:33.000Z'}}, {'blockNum': '0x6b1a80', 'uniqueId': '0xf4d14be94db39d7eeef270120157ba17cc598e7afebe429f9b01cb9e000b5b98:log:243', 'hash': '0xf4d14be94db39d7eeef270120157ba17cc598e7afebe429f9b01cb9e000b5b98', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 802.7449687491827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b845307f3c7158257', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:23:33.000Z'}}, {'blockNum': '0x6b1a85', 'uniqueId': '0xcfa4fb5d9d4bde751f4b93cbb8d3d36b8d4f542275d7348c70ddc773fc860fce:log:78', 'hash': '0xcfa4fb5d9d4bde751f4b93cbb8d3d36b8d4f542275d7348c70ddc773fc860fce', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 612.4469499825277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x213368a82047fe3a9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:24:48.000Z'}}, {'blockNum': '0x6b1a85', 'uniqueId': '0xcfa4fb5d9d4bde751f4b93cbb8d3d36b8d4f542275d7348c70ddc773fc860fce:log:82', 'hash': '0xcfa4fb5d9d4bde751f4b93cbb8d3d36b8d4f542275d7348c70ddc773fc860fce', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 612.4469499825277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x213368a82047fe3a9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:24:48.000Z'}}, {'blockNum': '0x6b1a86', 'uniqueId': '0x05cb9407a6a608b154b7e70e1a3fde104886369901bc058d94c6fe8c49a5942d:log:50', 'hash': '0x05cb9407a6a608b154b7e70e1a3fde104886369901bc058d94c6fe8c49a5942d', 'from': '0x83e240d1cbc6ec7f394cd6ba5ed01b7fcdf44ed5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 222.52228100548976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c101df399d5de749d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:25:34.000Z'}}, {'blockNum': '0x6b1a86', 'uniqueId': '0x05cb9407a6a608b154b7e70e1a3fde104886369901bc058d94c6fe8c49a5942d:log:54', 'hash': '0x05cb9407a6a608b154b7e70e1a3fde104886369901bc058d94c6fe8c49a5942d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 222.52228100548976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c101df399d5de749d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:25:34.000Z'}}, {'blockNum': '0x6b1a8d', 'uniqueId': '0x8de305b0c690988e6938f52a855b616e20f9ca5c870c272683974cd4aecacae3:log:41', 'hash': '0x8de305b0c690988e6938f52a855b616e20f9ca5c870c272683974cd4aecacae3', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 910.5460558130136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x315c5d6d7b6fae674e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:26:52.000Z'}}, {'blockNum': '0x6b1a8d', 'uniqueId': '0x8de305b0c690988e6938f52a855b616e20f9ca5c870c272683974cd4aecacae3:log:45', 'hash': '0x8de305b0c690988e6938f52a855b616e20f9ca5c870c272683974cd4aecacae3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 910.5460558130136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x315c5d6d7b6fae674e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:26:52.000Z'}}, {'blockNum': '0x6b1a92', 'uniqueId': '0x996df9673d7e467ce1c9c32ad6ea34199ba0df011698925bdb2af7515314bced:log:111', 'hash': '0x996df9673d7e467ce1c9c32ad6ea34199ba0df011698925bdb2af7515314bced', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 601.6834357685901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x209e08f8f9df6062a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:28:33.000Z'}}, {'blockNum': '0x6b1a92', 'uniqueId': '0x996df9673d7e467ce1c9c32ad6ea34199ba0df011698925bdb2af7515314bced:log:115', 'hash': '0x996df9673d7e467ce1c9c32ad6ea34199ba0df011698925bdb2af7515314bced', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 601.6834357685901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x209e08f8f9df6062a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:28:33.000Z'}}, {'blockNum': '0x6b1a97', 'uniqueId': '0x9644d4a74e9d2ab93dbe15ee85df206cec762e6a59ca83941c0e3539ff6cb90d:log:4', 'hash': '0x9644d4a74e9d2ab93dbe15ee85df206cec762e6a59ca83941c0e3539ff6cb90d', 'from': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1794d673456eec0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:30:04.000Z'}}, {'blockNum': '0x6b1aa4', 'uniqueId': '0xf82c2af568d3894d785c2ce77cd59105e820465bc4940ba1f72f1a48b8eb5229:log:33', 'hash': '0xf82c2af568d3894d785c2ce77cd59105e820465bc4940ba1f72f1a48b8eb5229', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 244.44884567000346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4068c1fdcad7643f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:32:32.000Z'}}, {'blockNum': '0x6b1aa4', 'uniqueId': '0xf82c2af568d3894d785c2ce77cd59105e820465bc4940ba1f72f1a48b8eb5229:log:37', 'hash': '0xf82c2af568d3894d785c2ce77cd59105e820465bc4940ba1f72f1a48b8eb5229', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 244.44884567000346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4068c1fdcad7643f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:32:32.000Z'}}, {'blockNum': '0x6b1aab', 'uniqueId': '0x92ec8294b6c8480fcfef205b587cd3ca65190e0e3575482dd60b03b2df9c9845:log:69', 'hash': '0x92ec8294b6c8480fcfef205b587cd3ca65190e0e3575482dd60b03b2df9c9845', 'from': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 359.71956948729587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13801ca2929eb74909', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:34:04.000Z'}}, {'blockNum': '0x6b1aab', 'uniqueId': '0x92ec8294b6c8480fcfef205b587cd3ca65190e0e3575482dd60b03b2df9c9845:log:73', 'hash': '0x92ec8294b6c8480fcfef205b587cd3ca65190e0e3575482dd60b03b2df9c9845', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 359.71956948729587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13801ca2929eb74909', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:34:04.000Z'}}, {'blockNum': '0x6b1aac', 'uniqueId': '0x94190d3659832b6b4a1a42ec8e3417c48ae91ecb283e5e95a457ae7f1277919b:log:33', 'hash': '0x94190d3659832b6b4a1a42ec8e3417c48ae91ecb283e5e95a457ae7f1277919b', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 342.3415775357067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x128ef19af71ea5025a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:34:11.000Z'}}, {'blockNum': '0x6b1aac', 'uniqueId': '0x94190d3659832b6b4a1a42ec8e3417c48ae91ecb283e5e95a457ae7f1277919b:log:37', 'hash': '0x94190d3659832b6b4a1a42ec8e3417c48ae91ecb283e5e95a457ae7f1277919b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 342.3415775357067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x128ef19af71ea5025a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:34:11.000Z'}}, {'blockNum': '0x6b1abb', 'uniqueId': '0x2c4ff5d0012abe8575fdd6f056489bf2dca84e191271e0b47c41d46596d2f87b:log:18', 'hash': '0x2c4ff5d0012abe8575fdd6f056489bf2dca84e191271e0b47c41d46596d2f87b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 221.78426949645788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c05e0020b29dffc48', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:37:30.000Z'}}, {'blockNum': '0x6b1abb', 'uniqueId': '0x2c4ff5d0012abe8575fdd6f056489bf2dca84e191271e0b47c41d46596d2f87b:log:22', 'hash': '0x2c4ff5d0012abe8575fdd6f056489bf2dca84e191271e0b47c41d46596d2f87b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 221.78426949645788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c05e0020b29dffc48', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:37:30.000Z'}}, {'blockNum': '0x6b1ac4', 'uniqueId': '0xffdd9faeb603402fa26553931f5d75183ce4f08a3b99b27e0a6e868c4453191e:log:80', 'hash': '0xffdd9faeb603402fa26553931f5d75183ce4f08a3b99b27e0a6e868c4453191e', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:39:04.000Z'}}, {'blockNum': '0x6b1ac4', 'uniqueId': '0xffdd9faeb603402fa26553931f5d75183ce4f08a3b99b27e0a6e868c4453191e:log:83', 'hash': '0xffdd9faeb603402fa26553931f5d75183ce4f08a3b99b27e0a6e868c4453191e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:39:04.000Z'}}, {'blockNum': '0x6b1ac4', 'uniqueId': '0xffdd9faeb603402fa26553931f5d75183ce4f08a3b99b27e0a6e868c4453191e:log:85', 'hash': '0xffdd9faeb603402fa26553931f5d75183ce4f08a3b99b27e0a6e868c4453191e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:39:04.000Z'}}, {'blockNum': '0x6b1acb', 'uniqueId': '0x2a8a38129108e5a1b43477b218f8f17e6fc2a250a0325d756466c6c4c75c87d1:log:66', 'hash': '0x2a8a38129108e5a1b43477b218f8f17e6fc2a250a0325d756466c6c4c75c87d1', 'from': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 67.09304102874553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a31a5d576b161f79', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:42:19.000Z'}}, {'blockNum': '0x6b1acb', 'uniqueId': '0x2a8a38129108e5a1b43477b218f8f17e6fc2a250a0325d756466c6c4c75c87d1:log:70', 'hash': '0x2a8a38129108e5a1b43477b218f8f17e6fc2a250a0325d756466c6c4c75c87d1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 67.09304102874553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a31a5d576b161f79', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:42:19.000Z'}}, {'blockNum': '0x6b1ae4', 'uniqueId': '0xcdf6b2a1cf8c9e7bc7a0fa2267edcda3244bee47198a90fc1672ca7a27cf6aa3:log:77', 'hash': '0xcdf6b2a1cf8c9e7bc7a0fa2267edcda3244bee47198a90fc1672ca7a27cf6aa3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 8.920211247487716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7bcaf4de47f30bbc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:48:04.000Z'}}, {'blockNum': '0x6b1ae4', 'uniqueId': '0xcdf6b2a1cf8c9e7bc7a0fa2267edcda3244bee47198a90fc1672ca7a27cf6aa3:log:81', 'hash': '0xcdf6b2a1cf8c9e7bc7a0fa2267edcda3244bee47198a90fc1672ca7a27cf6aa3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'value': 8.920211247487716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7bcaf4de47f30bbc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:48:04.000Z'}}, {'blockNum': '0x6b1af5', 'uniqueId': '0xe3472bfa7a7cd8f675d3de4196bb26d9998b0c9d2008a5116f140f76bb321644:log:19', 'hash': '0xe3472bfa7a7cd8f675d3de4196bb26d9998b0c9d2008a5116f140f76bb321644', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1601.405645020698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56cff7bd891c001e7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:53:16.000Z'}}, {'blockNum': '0x6b1af5', 'uniqueId': '0xe3472bfa7a7cd8f675d3de4196bb26d9998b0c9d2008a5116f140f76bb321644:log:22', 'hash': '0xe3472bfa7a7cd8f675d3de4196bb26d9998b0c9d2008a5116f140f76bb321644', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x848d0146890ef4ffc6eb49fba58c7e89a6af8111', 'value': 1601.405645020698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56cff7bd891c001e7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:53:16.000Z'}}, {'blockNum': '0x6b1af6', 'uniqueId': '0x75eaea4b9a0575946681e88a7370782aa214073a8880d0990829c3e64936ce15:log:48', 'hash': '0x75eaea4b9a0575946681e88a7370782aa214073a8880d0990829c3e64936ce15', 'from': '0x99f357f722ec3e456af0eb530c1c14a3251305ad', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.98192165760648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x092918627168858f3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:53:22.000Z'}}, {'blockNum': '0x6b1af6', 'uniqueId': '0x75eaea4b9a0575946681e88a7370782aa214073a8880d0990829c3e64936ce15:log:52', 'hash': '0x75eaea4b9a0575946681e88a7370782aa214073a8880d0990829c3e64936ce15', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 168.98192165760648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x092918627168858f3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:53:22.000Z'}}, {'blockNum': '0x6b1af6', 'uniqueId': '0x19386f0d473698146bbe1982afca4fa2b361bb059fc8e8e5d24c8b31e0dac349:log:68', 'hash': '0x19386f0d473698146bbe1982afca4fa2b361bb059fc8e8e5d24c8b31e0dac349', 'from': '0x848d0146890ef4ffc6eb49fba58c7e89a6af8111', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56ca569989d8640000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:53:22.000Z'}}, {'blockNum': '0x6b1af6', 'uniqueId': '0x19386f0d473698146bbe1982afca4fa2b361bb059fc8e8e5d24c8b31e0dac349:log:71', 'hash': '0x19386f0d473698146bbe1982afca4fa2b361bb059fc8e8e5d24c8b31e0dac349', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 1601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56ca569989d8640000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:53:22.000Z'}}, {'blockNum': '0x6b1afd', 'uniqueId': '0xec31ad387a5a9fd7efabc12d051e70ebec241b7538806789d5e393e3394e2036:log:76', 'hash': '0xec31ad387a5a9fd7efabc12d051e70ebec241b7538806789d5e393e3394e2036', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 248.68423769321905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d7b2fe498af20eb10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:55:48.000Z'}}, {'blockNum': '0x6b1afd', 'uniqueId': '0xec31ad387a5a9fd7efabc12d051e70ebec241b7538806789d5e393e3394e2036:log:80', 'hash': '0xec31ad387a5a9fd7efabc12d051e70ebec241b7538806789d5e393e3394e2036', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 248.68423769321905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d7b2fe498af20eb10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:55:48.000Z'}}, {'blockNum': '0x6b1b05', 'uniqueId': '0x527ca0ceb7366e8c58a44125b2e969cad4a80fc8b119ace36ea181e76a58150c:log:10', 'hash': '0x527ca0ceb7366e8c58a44125b2e969cad4a80fc8b119ace36ea181e76a58150c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 222.17150986252054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c0b3fc31ad7bb544b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:57:23.000Z'}}, {'blockNum': '0x6b1b05', 'uniqueId': '0x527ca0ceb7366e8c58a44125b2e969cad4a80fc8b119ace36ea181e76a58150c:log:14', 'hash': '0x527ca0ceb7366e8c58a44125b2e969cad4a80fc8b119ace36ea181e76a58150c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 222.17150986252054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c0b3fc31ad7bb544b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:57:23.000Z'}}, {'blockNum': '0x6b1b07', 'uniqueId': '0x2989a38ed34063e76f9ed87dcf973a5be7c631e7b7c38a607724511fe1e7fe8c:log:94', 'hash': '0x2989a38ed34063e76f9ed87dcf973a5be7c631e7b7c38a607724511fe1e7fe8c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 446.99302491172955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183b463be2fcf94a0d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:58:12.000Z'}}, {'blockNum': '0x6b1b07', 'uniqueId': '0x2989a38ed34063e76f9ed87dcf973a5be7c631e7b7c38a607724511fe1e7fe8c:log:98', 'hash': '0x2989a38ed34063e76f9ed87dcf973a5be7c631e7b7c38a607724511fe1e7fe8c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 446.99302491172955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183b463be2fcf94a0d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:58:12.000Z'}}, {'blockNum': '0x6b1b08', 'uniqueId': '0xd51dfe54de8cd775b079c472aa79a4023b7e39f2b14e5f38aa569ca1c5c61d07:log:44', 'hash': '0xd51dfe54de8cd775b079c472aa79a4023b7e39f2b14e5f38aa569ca1c5c61d07', 'from': '0x32131848edc60e032abf0369241d34ec969ebf90', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 275.23852267035886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0eebb3aa17ae0a0e21', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:58:28.000Z'}}, {'blockNum': '0x6b1b08', 'uniqueId': '0xd51dfe54de8cd775b079c472aa79a4023b7e39f2b14e5f38aa569ca1c5c61d07:log:48', 'hash': '0xd51dfe54de8cd775b079c472aa79a4023b7e39f2b14e5f38aa569ca1c5c61d07', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 275.23852267035886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0eebb3aa17ae0a0e21', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:58:28.000Z'}}, {'blockNum': '0x6b1b09', 'uniqueId': '0x0cfce216144194aa4adbf5b2692fa1f73f60866d0b8e6b4b0573721bcd63167a:log:100', 'hash': '0x0cfce216144194aa4adbf5b2692fa1f73f60866d0b8e6b4b0573721bcd63167a', 'from': '0x51907923c3280c24b6b69b0d217ea34cabde684d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 446.3185943606039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1831ea2cdfab752a36', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:58:46.000Z'}}, {'blockNum': '0x6b1b09', 'uniqueId': '0x0cfce216144194aa4adbf5b2692fa1f73f60866d0b8e6b4b0573721bcd63167a:log:102', 'hash': '0x0cfce216144194aa4adbf5b2692fa1f73f60866d0b8e6b4b0573721bcd63167a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 446.3185943606039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1831ea2cdfab752a36', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:58:46.000Z'}}, {'blockNum': '0x6b1b14', 'uniqueId': '0xbfe582fd5e6bef96cc15fc994c9d7985c28804c6ab83464c09a8d6ad8981eedb:log:32', 'hash': '0xbfe582fd5e6bef96cc15fc994c9d7985c28804c6ab83464c09a8d6ad8981eedb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 167.6132451928812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091619de732c224a4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:01:23.000Z'}}, {'blockNum': '0x6b1b14', 'uniqueId': '0xbfe582fd5e6bef96cc15fc994c9d7985c28804c6ab83464c09a8d6ad8981eedb:log:36', 'hash': '0xbfe582fd5e6bef96cc15fc994c9d7985c28804c6ab83464c09a8d6ad8981eedb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 167.6132451928812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091619de732c224a4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:01:23.000Z'}}, {'blockNum': '0x6b1b1e', 'uniqueId': '0x7ba37d416ab5ec25e6113b2fd8ae0ac159f380f9369fb1ffaa1afa426d1192c7:log:24', 'hash': '0x7ba37d416ab5ec25e6113b2fd8ae0ac159f380f9369fb1ffaa1afa426d1192c7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.47909367937288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d653ba88d43ab74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:04:03.000Z'}}, {'blockNum': '0x6b1b1e', 'uniqueId': '0x7ba37d416ab5ec25e6113b2fd8ae0ac159f380f9369fb1ffaa1afa426d1192c7:log:28', 'hash': '0x7ba37d416ab5ec25e6113b2fd8ae0ac159f380f9369fb1ffaa1afa426d1192c7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 223.47909367937288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d653ba88d43ab74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:04:03.000Z'}}, {'blockNum': '0x6b1b2b', 'uniqueId': '0xc7e4abf885382795fc0a854416415e4be8ec8f05d2eeb654b92d179e651aa23c:log:81', 'hash': '0xc7e4abf885382795fc0a854416415e4be8ec8f05d2eeb654b92d179e651aa23c', 'from': '0xe0569fd1c3f0affd7e08131a16c06f3381c9355a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 225.6204116529042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3b1cb90298c24aa1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:06:33.000Z'}}, {'blockNum': '0x6b1b2b', 'uniqueId': '0xc7e4abf885382795fc0a854416415e4be8ec8f05d2eeb654b92d179e651aa23c:log:84', 'hash': '0xc7e4abf885382795fc0a854416415e4be8ec8f05d2eeb654b92d179e651aa23c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 225.6204116529042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3b1cb90298c24aa1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:06:33.000Z'}}, {'blockNum': '0x6b1b2c', 'uniqueId': '0x47e3df8ad1d26d8e4c5775b8d98555bcd6ba48b53f4a09b2723c1ab9b2823e42:log:46', 'hash': '0x47e3df8ad1d26d8e4c5775b8d98555bcd6ba48b53f4a09b2723c1ab9b2823e42', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 105.96656991339044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05be94e1e6ba3b9ceb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:06:54.000Z'}}, {'blockNum': '0x6b1b2c', 'uniqueId': '0x47e3df8ad1d26d8e4c5775b8d98555bcd6ba48b53f4a09b2723c1ab9b2823e42:log:48', 'hash': '0x47e3df8ad1d26d8e4c5775b8d98555bcd6ba48b53f4a09b2723c1ab9b2823e42', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 105.96656991339044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05be94e1e6ba3b9ceb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:06:54.000Z'}}, {'blockNum': '0x6b1b2d', 'uniqueId': '0x748d67b4f7e7dd6866fcad8713e12b6bba7ae6968bc8ded158ef121017b838d5:log:95', 'hash': '0x748d67b4f7e7dd6866fcad8713e12b6bba7ae6968bc8ded158ef121017b838d5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 111.75337734334823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x060ee3c099587562e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:06:56.000Z'}}, {'blockNum': '0x6b1b2d', 'uniqueId': '0x748d67b4f7e7dd6866fcad8713e12b6bba7ae6968bc8ded158ef121017b838d5:log:99', 'hash': '0x748d67b4f7e7dd6866fcad8713e12b6bba7ae6968bc8ded158ef121017b838d5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0f1c029c5d7f626f6820bfe0f6a7b2ac48746ddf', 'value': 111.75337734334823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x060ee3c099587562e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:06:56.000Z'}}, {'blockNum': '0x6b1b2f', 'uniqueId': '0x223dc4532bac3bd772f56ceaf2e1e78debeaf911430d8b2529495fd49de4c505:log:24', 'hash': '0x223dc4532bac3bd772f56ceaf2e1e78debeaf911430d8b2529495fd49de4c505', 'from': '0xdc59242010e2d29617bfeec57e62c7c00a5acb52', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 401.1995052078203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15bfc2f857269c1ad3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:07:53.000Z'}}, {'blockNum': '0x6b1b2f', 'uniqueId': '0x223dc4532bac3bd772f56ceaf2e1e78debeaf911430d8b2529495fd49de4c505:log:28', 'hash': '0x223dc4532bac3bd772f56ceaf2e1e78debeaf911430d8b2529495fd49de4c505', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 401.1995052078203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15bfc2f857269c1ad3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:07:53.000Z'}}, {'blockNum': '0x6b1b31', 'uniqueId': '0xe881879b3f2ea8c205d7a0ee2707d97e5c7d5c8748b2e64c4899e56507d92fb9:log:59', 'hash': '0xe881879b3f2ea8c205d7a0ee2707d97e5c7d5c8748b2e64c4899e56507d92fb9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 335.84762911696714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1234d27748edf67d1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:08:12.000Z'}}, {'blockNum': '0x6b1b31', 'uniqueId': '0xe881879b3f2ea8c205d7a0ee2707d97e5c7d5c8748b2e64c4899e56507d92fb9:log:63', 'hash': '0xe881879b3f2ea8c205d7a0ee2707d97e5c7d5c8748b2e64c4899e56507d92fb9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'value': 335.84762911696714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1234d27748edf67d1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:08:12.000Z'}}, {'blockNum': '0x6b1b33', 'uniqueId': '0x2457b9225d322a839fcc278a22dc763d835cd0eb09adc1fdc325b1e29e61e6c3:log:69', 'hash': '0x2457b9225d322a839fcc278a22dc763d835cd0eb09adc1fdc325b1e29e61e6c3', 'from': '0x51907923c3280c24b6b69b0d217ea34cabde684d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 446.3165626074732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1831e2f50147d4f22f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:08:45.000Z'}}, {'blockNum': '0x6b1b33', 'uniqueId': '0x2457b9225d322a839fcc278a22dc763d835cd0eb09adc1fdc325b1e29e61e6c3:log:71', 'hash': '0x2457b9225d322a839fcc278a22dc763d835cd0eb09adc1fdc325b1e29e61e6c3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 446.3165626074732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1831e2f50147d4f22f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:08:45.000Z'}}, {'blockNum': '0x6b1b3e', 'uniqueId': '0x32b6345aa95a6db10c5c34d2f360382c17fa28a11dbd81e3342cf9d48b079250:log:44', 'hash': '0x32b6345aa95a6db10c5c34d2f360382c17fa28a11dbd81e3342cf9d48b079250', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 87.00404727104312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b76c78069bd1ac76', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:11:32.000Z'}}, {'blockNum': '0x6b1b3e', 'uniqueId': '0x32b6345aa95a6db10c5c34d2f360382c17fa28a11dbd81e3342cf9d48b079250:log:48', 'hash': '0x32b6345aa95a6db10c5c34d2f360382c17fa28a11dbd81e3342cf9d48b079250', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 87.00404727104312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b76c78069bd1ac76', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:11:32.000Z'}}, {'blockNum': '0x6b1b53', 'uniqueId': '0x063f5fb862a71fdb530ca7bc91a45fc048bd45d340b7da3111603164a0f4ffe2:log:117', 'hash': '0x063f5fb862a71fdb530ca7bc91a45fc048bd45d340b7da3111603164a0f4ffe2', 'from': '0xe88d6d63389d5c91e6348e379913f330739ad2c4', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.67122435559176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2df088313723019c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:17:02.000Z'}}, {'blockNum': '0x6b1b53', 'uniqueId': '0x063f5fb862a71fdb530ca7bc91a45fc048bd45d340b7da3111603164a0f4ffe2:log:121', 'hash': '0x063f5fb862a71fdb530ca7bc91a45fc048bd45d340b7da3111603164a0f4ffe2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 224.67122435559176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2df088313723019c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:17:02.000Z'}}, {'blockNum': '0x6b1b54', 'uniqueId': '0x79cab0ae976680eb1fc560f6b8ffa2a2d4d6c3a2712df5e1b33dd06c3813d783:log:71', 'hash': '0x79cab0ae976680eb1fc560f6b8ffa2a2d4d6c3a2712df5e1b33dd06c3813d783', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 256.8596739902329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0deca4e097de7a13c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:17:39.000Z'}}, {'blockNum': '0x6b1b54', 'uniqueId': '0x79cab0ae976680eb1fc560f6b8ffa2a2d4d6c3a2712df5e1b33dd06c3813d783:log:75', 'hash': '0x79cab0ae976680eb1fc560f6b8ffa2a2d4d6c3a2712df5e1b33dd06c3813d783', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 256.8596739902329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0deca4e097de7a13c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:17:39.000Z'}}, {'blockNum': '0x6b1b5d', 'uniqueId': '0x42647406a3888d13feceb0f0024ca446f3af96fea8fe8cd2671dd10f6e005ff8:log:67', 'hash': '0x42647406a3888d13feceb0f0024ca446f3af96fea8fe8cd2671dd10f6e005ff8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.49182811517588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d92798f6fb7c733', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:19:54.000Z'}}, {'blockNum': '0x6b1b5d', 'uniqueId': '0x42647406a3888d13feceb0f0024ca446f3af96fea8fe8cd2671dd10f6e005ff8:log:71', 'hash': '0x42647406a3888d13feceb0f0024ca446f3af96fea8fe8cd2671dd10f6e005ff8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 223.49182811517588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d92798f6fb7c733', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:19:54.000Z'}}, {'blockNum': '0x6b1b78', 'uniqueId': '0xd45aaf6012d45406abc13f473ea9f53895968e69a2090a98eaf3c2737615fc6e:log:64', 'hash': '0xd45aaf6012d45406abc13f473ea9f53895968e69a2090a98eaf3c2737615fc6e', 'from': '0x599485dc0f3d8b308b973b2db5cd44bae46d31c4', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.5958810778617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0923bce494bff285f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:27:50.000Z'}}, {'blockNum': '0x6b1b78', 'uniqueId': '0xd45aaf6012d45406abc13f473ea9f53895968e69a2090a98eaf3c2737615fc6e:log:68', 'hash': '0xd45aaf6012d45406abc13f473ea9f53895968e69a2090a98eaf3c2737615fc6e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 168.5958810778617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0923bce494bff285f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:27:50.000Z'}}, {'blockNum': '0x6b1b7f', 'uniqueId': '0x3ae9b64ccf5cd0b828b6619b7ebaa2afdca44e1938239c7c7afe78b12df5e9c2:log:68', 'hash': '0x3ae9b64ccf5cd0b828b6619b7ebaa2afdca44e1938239c7c7afe78b12df5e9c2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3.3527486788014795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e875b28e51f581b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:29:18.000Z'}}, {'blockNum': '0x6b1b7f', 'uniqueId': '0x3ae9b64ccf5cd0b828b6619b7ebaa2afdca44e1938239c7c7afe78b12df5e9c2:log:71', 'hash': '0x3ae9b64ccf5cd0b828b6619b7ebaa2afdca44e1938239c7c7afe78b12df5e9c2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x007eb60fa5eb50a300294fc5164dcc75b88f8e5c', 'value': 3.3527486788014795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e875b28e51f581b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:29:18.000Z'}}, {'blockNum': '0x6b1b87', 'uniqueId': '0x822992af1c1d864149bc2cb55e5aa048ac11f0c6e00d24308981c050a755097d:log:22', 'hash': '0x822992af1c1d864149bc2cb55e5aa048ac11f0c6e00d24308981c050a755097d', 'from': '0x9f547e89078b24d0e2269ba08eb411102e98ca14', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 117.24182161003773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065b0e9f949e03f26f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:31:33.000Z'}}, {'blockNum': '0x6b1b87', 'uniqueId': '0x822992af1c1d864149bc2cb55e5aa048ac11f0c6e00d24308981c050a755097d:log:26', 'hash': '0x822992af1c1d864149bc2cb55e5aa048ac11f0c6e00d24308981c050a755097d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x4f8d76340ae90d4fe17d6c34427aa22da86e784f', 'value': 117.24182161003773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065b0e9f949e03f26f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:31:33.000Z'}}, {'blockNum': '0x6b1b87', 'uniqueId': '0x6088ef4b5f080ead5da2893ebc64024f6da4564da4a5c24eb607826f2f24a805:log:30', 'hash': '0x6088ef4b5f080ead5da2893ebc64024f6da4564da4a5c24eb607826f2f24a805', 'from': '0xc7151af2e9d1a702a61fcb655e2334bfee5b5faf', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 155.6893464381893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08709fabb541003056', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:31:33.000Z'}}, {'blockNum': '0x6b1b87', 'uniqueId': '0x6088ef4b5f080ead5da2893ebc64024f6da4564da4a5c24eb607826f2f24a805:log:34', 'hash': '0x6088ef4b5f080ead5da2893ebc64024f6da4564da4a5c24eb607826f2f24a805', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 155.6893464381893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08709fabb541003056', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:31:33.000Z'}}, {'blockNum': '0x6b1b89', 'uniqueId': '0x74c13ddfc9aeaa931db7fbb1dd1889d21b4365766d77a88e7808aa3feffd1481:log:36', 'hash': '0x74c13ddfc9aeaa931db7fbb1dd1889d21b4365766d77a88e7808aa3feffd1481', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 226.41666638569635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c462996788b8e9c5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:32:47.000Z'}}, {'blockNum': '0x6b1b89', 'uniqueId': '0x74c13ddfc9aeaa931db7fbb1dd1889d21b4365766d77a88e7808aa3feffd1481:log:40', 'hash': '0x74c13ddfc9aeaa931db7fbb1dd1889d21b4365766d77a88e7808aa3feffd1481', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 226.41666638569635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c462996788b8e9c5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:32:47.000Z'}}, {'blockNum': '0x6b1b8a', 'uniqueId': '0x600a61cf79314672c652f31be2f3edd475eade734c8b28ffeaf6d714243a6804:log:28', 'hash': '0x600a61cf79314672c652f31be2f3edd475eade734c8b28ffeaf6d714243a6804', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 217.42098728673884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bc95283fdd4c9f442', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:32:52.000Z'}}, {'blockNum': '0x6b1b8a', 'uniqueId': '0x600a61cf79314672c652f31be2f3edd475eade734c8b28ffeaf6d714243a6804:log:32', 'hash': '0x600a61cf79314672c652f31be2f3edd475eade734c8b28ffeaf6d714243a6804', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 217.42098728673884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bc95283fdd4c9f442', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:32:52.000Z'}}, {'blockNum': '0x6b1b91', 'uniqueId': '0x01e3fa6634ac2fcd35636d39a784feda6898a1c9a1ecf44617b842c6f9b9834e:log:57', 'hash': '0x01e3fa6634ac2fcd35636d39a784feda6898a1c9a1ecf44617b842c6f9b9834e', 'from': '0x4f8d76340ae90d4fe17d6c34427aa22da86e784f', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 117.24194954458285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065b0f13efb321b40a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:35:43.000Z'}}, {'blockNum': '0x6b1b91', 'uniqueId': '0x01e3fa6634ac2fcd35636d39a784feda6898a1c9a1ecf44617b842c6f9b9834e:log:60', 'hash': '0x01e3fa6634ac2fcd35636d39a784feda6898a1c9a1ecf44617b842c6f9b9834e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 117.24194954458285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065b0f13efb321b40a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:35:43.000Z'}}, {'blockNum': '0x6b1b91', 'uniqueId': '0x01e3fa6634ac2fcd35636d39a784feda6898a1c9a1ecf44617b842c6f9b9834e:log:62', 'hash': '0x01e3fa6634ac2fcd35636d39a784feda6898a1c9a1ecf44617b842c6f9b9834e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x83e240d1cbc6ec7f394cd6ba5ed01b7fcdf44ed5', 'value': 117.24194954458285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065b0f13efb321b40a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:35:43.000Z'}}, {'blockNum': '0x6b1b9c', 'uniqueId': '0x69f88fe89cfcfd3dc1ceed7c68b34b9e6223db52a2bbbc11d2aa8cb63e33b126:log:73', 'hash': '0x69f88fe89cfcfd3dc1ceed7c68b34b9e6223db52a2bbbc11d2aa8cb63e33b126', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.53062646350466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2bfd0727811df078', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:37:18.000Z'}}, {'blockNum': '0x6b1b9c', 'uniqueId': '0x69f88fe89cfcfd3dc1ceed7c68b34b9e6223db52a2bbbc11d2aa8cb63e33b126:log:77', 'hash': '0x69f88fe89cfcfd3dc1ceed7c68b34b9e6223db52a2bbbc11d2aa8cb63e33b126', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 224.53062646350466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2bfd0727811df078', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:37:18.000Z'}}, {'blockNum': '0x6b1bb3', 'uniqueId': '0x2f454483c268f835bf649268f943a83c7c5ae1b1eca03360b973f4ddfc01871a:log:41', 'hash': '0x2f454483c268f835bf649268f943a83c7c5ae1b1eca03360b973f4ddfc01871a', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:42:17.000Z'}}, {'blockNum': '0x6b1bb3', 'uniqueId': '0x2f454483c268f835bf649268f943a83c7c5ae1b1eca03360b973f4ddfc01871a:log:44', 'hash': '0x2f454483c268f835bf649268f943a83c7c5ae1b1eca03360b973f4ddfc01871a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:42:17.000Z'}}, {'blockNum': '0x6b1bb3', 'uniqueId': '0x2f454483c268f835bf649268f943a83c7c5ae1b1eca03360b973f4ddfc01871a:log:46', 'hash': '0x2f454483c268f835bf649268f943a83c7c5ae1b1eca03360b973f4ddfc01871a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:42:17.000Z'}}, {'blockNum': '0x6b1bb4', 'uniqueId': '0x8253f694c660f5f0053f8b1e67d98549ba00024abf2d0211005a1f397892e29f:log:98', 'hash': '0x8253f694c660f5f0053f8b1e67d98549ba00024abf2d0211005a1f397892e29f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 111.76854804039105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x060f19a64480b0df33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:42:40.000Z'}}, {'blockNum': '0x6b1bb4', 'uniqueId': '0x8253f694c660f5f0053f8b1e67d98549ba00024abf2d0211005a1f397892e29f:log:102', 'hash': '0x8253f694c660f5f0053f8b1e67d98549ba00024abf2d0211005a1f397892e29f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 111.76854804039105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x060f19a64480b0df33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:42:40.000Z'}}, {'blockNum': '0x6b1bb9', 'uniqueId': '0x745957c16bd4b3faf032c515f3acc728c8d60387979595a55b9897ac2cc4b544:log:76', 'hash': '0x745957c16bd4b3faf032c515f3acc728c8d60387979595a55b9897ac2cc4b544', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 439.98170659938995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17d9f9070776c771c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:45:20.000Z'}}, {'blockNum': '0x6b1bb9', 'uniqueId': '0x745957c16bd4b3faf032c515f3acc728c8d60387979595a55b9897ac2cc4b544:log:80', 'hash': '0x745957c16bd4b3faf032c515f3acc728c8d60387979595a55b9897ac2cc4b544', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 439.98170659938995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17d9f9070776c771c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:45:20.000Z'}}, {'blockNum': '0x6b1bb9', 'uniqueId': '0x1f0ad11f41dbf2b6861b2b0fd5fa497ae3411b98d9bac15e80e7602dbb50b3b5:log:93', 'hash': '0x1f0ad11f41dbf2b6861b2b0fd5fa497ae3411b98d9bac15e80e7602dbb50b3b5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 434.6972478776593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1790a2dbd1ebcfa6a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:45:20.000Z'}}, {'blockNum': '0x6b1bb9', 'uniqueId': '0x1f0ad11f41dbf2b6861b2b0fd5fa497ae3411b98d9bac15e80e7602dbb50b3b5:log:97', 'hash': '0x1f0ad11f41dbf2b6861b2b0fd5fa497ae3411b98d9bac15e80e7602dbb50b3b5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'value': 434.6972478776593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1790a2dbd1ebcfa6a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:45:20.000Z'}}, {'blockNum': '0x6b1bd7', 'uniqueId': '0xbac2b081a1ca65bb22025916e20d57eed00358610b06f7c16614c36a9ac949b7:log:56', 'hash': '0xbac2b081a1ca65bb22025916e20d57eed00358610b06f7c16614c36a9ac949b7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 335.2615505962503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x122cb04bf9b8264d58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:53:01.000Z'}}, {'blockNum': '0x6b1bd7', 'uniqueId': '0xbac2b081a1ca65bb22025916e20d57eed00358610b06f7c16614c36a9ac949b7:log:60', 'hash': '0xbac2b081a1ca65bb22025916e20d57eed00358610b06f7c16614c36a9ac949b7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'value': 335.2615505962503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x122cb04bf9b8264d58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:53:01.000Z'}}, {'blockNum': '0x6b1bdb', 'uniqueId': '0x77dcc66e74c1acb7594ffd14262f5c2caccdfab0633d10d9b88d7d22ac6977ca:log:87', 'hash': '0x77dcc66e74c1acb7594ffd14262f5c2caccdfab0633d10d9b88d7d22ac6977ca', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.35492907676567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c298cd34fdc933f8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:53:49.000Z'}}, {'blockNum': '0x6b1bdb', 'uniqueId': '0x77dcc66e74c1acb7594ffd14262f5c2caccdfab0633d10d9b88d7d22ac6977ca:log:91', 'hash': '0x77dcc66e74c1acb7594ffd14262f5c2caccdfab0633d10d9b88d7d22ac6977ca', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 224.35492907676567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c298cd34fdc933f8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:53:49.000Z'}}, {'blockNum': '0x6b1be9', 'uniqueId': '0xffc8729cdd60d363a444db393277ec5b262815d0fcddcc4ed3ffa9047bec328a:log:11', 'hash': '0xffc8729cdd60d363a444db393277ec5b262815d0fcddcc4ed3ffa9047bec328a', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xfca5d6de2e70ae53907076afc6a3326449a377a6', 'value': 23.935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014c2a33afdaf98000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:57:55.000Z'}}, {'blockNum': '0x6b1bf9', 'uniqueId': '0xbc112a217b3f176a2927b8e784ea3ffc7ae146b3f0311188de7e1701b9677312:log:12', 'hash': '0xbc112a217b3f176a2927b8e784ea3ffc7ae146b3f0311188de7e1701b9677312', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2.9095765579387036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2860e476bebd7d30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:01:50.000Z'}}, {'blockNum': '0x6b1bf9', 'uniqueId': '0xbc112a217b3f176a2927b8e784ea3ffc7ae146b3f0311188de7e1701b9677312:log:17', 'hash': '0xbc112a217b3f176a2927b8e784ea3ffc7ae146b3f0311188de7e1701b9677312', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 2.9095765579387036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2860e476bebd7d30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:01:50.000Z'}}, {'blockNum': '0x6b1c00', 'uniqueId': '0xbd891b9fc283eccd2afca9171050fb29833d269f91c0fed9bcf4c73e0c4f3b30:log:74', 'hash': '0xbd891b9fc283eccd2afca9171050fb29833d269f91c0fed9bcf4c73e0c4f3b30', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1560.4459900187533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x549789d0532a873f88', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:03:39.000Z'}}, {'blockNum': '0x6b1c00', 'uniqueId': '0xbd891b9fc283eccd2afca9171050fb29833d269f91c0fed9bcf4c73e0c4f3b30:log:78', 'hash': '0xbd891b9fc283eccd2afca9171050fb29833d269f91c0fed9bcf4c73e0c4f3b30', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 1560.4459900187533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x549789d0532a873f88', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:03:39.000Z'}}, {'blockNum': '0x6b1c00', 'uniqueId': '0x9df94e9af83a21584053da8dcb4d4c33c0dc94ad306b1f2898f370f08dafe3aa:log:101', 'hash': '0x9df94e9af83a21584053da8dcb4d4c33c0dc94ad306b1f2898f370f08dafe3aa', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 789.4186567622687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2acb6275ce550ab527', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:03:39.000Z'}}, {'blockNum': '0x6b1c00', 'uniqueId': '0x9df94e9af83a21584053da8dcb4d4c33c0dc94ad306b1f2898f370f08dafe3aa:log:103', 'hash': '0x9df94e9af83a21584053da8dcb4d4c33c0dc94ad306b1f2898f370f08dafe3aa', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 789.4186567622687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2acb6275ce550ab527', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:03:39.000Z'}}, {'blockNum': '0x6b1c0e', 'uniqueId': '0x315c537fde39b9b376dff7d28ffceaef862bbe2153921152e8c9a72bd332424f:log:36', 'hash': '0x315c537fde39b9b376dff7d28ffceaef862bbe2153921152e8c9a72bd332424f', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 228.6928447434094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c65c032a0a47a401a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:08:29.000Z'}}, {'blockNum': '0x6b1c0e', 'uniqueId': '0x315c537fde39b9b376dff7d28ffceaef862bbe2153921152e8c9a72bd332424f:log:40', 'hash': '0x315c537fde39b9b376dff7d28ffceaef862bbe2153921152e8c9a72bd332424f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 228.6928447434094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c65c032a0a47a401a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:08:29.000Z'}}, {'blockNum': '0x6b1c10', 'uniqueId': '0xd1ee2cb9e8df23baa88b5a974b703c5f3c3ca2dee2ed362d04b81d3600ded966:log:67', 'hash': '0xd1ee2cb9e8df23baa88b5a974b703c5f3c3ca2dee2ed362d04b81d3600ded966', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 352.57184774230126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131cead38412f998de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:08:52.000Z'}}, {'blockNum': '0x6b1c10', 'uniqueId': '0xd1ee2cb9e8df23baa88b5a974b703c5f3c3ca2dee2ed362d04b81d3600ded966:log:71', 'hash': '0xd1ee2cb9e8df23baa88b5a974b703c5f3c3ca2dee2ed362d04b81d3600ded966', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 352.57184774230126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131cead38412f998de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:08:52.000Z'}}, {'blockNum': '0x6b1c14', 'uniqueId': '0x73969f410eeeea01f5b1892c6ee424316f36c00c61d8149d8a36222806aa2f6e:log:28', 'hash': '0x73969f410eeeea01f5b1892c6ee424316f36c00c61d8149d8a36222806aa2f6e', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 270.7984484676639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0eae155a2132074af3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:10:05.000Z'}}, {'blockNum': '0x6b1c14', 'uniqueId': '0x73969f410eeeea01f5b1892c6ee424316f36c00c61d8149d8a36222806aa2f6e:log:32', 'hash': '0x73969f410eeeea01f5b1892c6ee424316f36c00c61d8149d8a36222806aa2f6e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 270.7984484676639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0eae155a2132074af3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:10:05.000Z'}}, {'blockNum': '0x6b1c1c', 'uniqueId': '0x7f212ff53a4c910a401ab82db6b28de9a63578c485a086ca0272171d28fa4ea8:log:37', 'hash': '0x7f212ff53a4c910a401ab82db6b28de9a63578c485a086ca0272171d28fa4ea8', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.77096400531832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09262ae993713c27eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:12:13.000Z'}}, {'blockNum': '0x6b1c1c', 'uniqueId': '0x7f212ff53a4c910a401ab82db6b28de9a63578c485a086ca0272171d28fa4ea8:log:39', 'hash': '0x7f212ff53a4c910a401ab82db6b28de9a63578c485a086ca0272171d28fa4ea8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 168.77096400531832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09262ae993713c27eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:12:13.000Z'}}, {'blockNum': '0x6b1c22', 'uniqueId': '0x65b4938cc625e96e347060d0a09ddd4366e9e96c411d6ad3f36deeb204ebb11c:log:16', 'hash': '0x65b4938cc625e96e347060d0a09ddd4366e9e96c411d6ad3f36deeb204ebb11c', 'from': '0x599485dc0f3d8b308b973b2db5cd44bae46d31c4', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 280.94272840757424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f3add12fd02818a41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:14:01.000Z'}}, {'blockNum': '0x6b1c22', 'uniqueId': '0x65b4938cc625e96e347060d0a09ddd4366e9e96c411d6ad3f36deeb204ebb11c:log:20', 'hash': '0x65b4938cc625e96e347060d0a09ddd4366e9e96c411d6ad3f36deeb204ebb11c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 280.94272840757424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f3add12fd02818a41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:14:01.000Z'}}, {'blockNum': '0x6b1c2f', 'uniqueId': '0xe362af19003efad4dab8f4cd3bee5eeebad33a4996eab4cb22f318414d6b9445:log:58', 'hash': '0xe362af19003efad4dab8f4cd3bee5eeebad33a4996eab4cb22f318414d6b9445', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 523.0503892613112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c5ac845cb1e3f15f6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:18:11.000Z'}}, {'blockNum': '0x6b1c2f', 'uniqueId': '0xe362af19003efad4dab8f4cd3bee5eeebad33a4996eab4cb22f318414d6b9445:log:62', 'hash': '0xe362af19003efad4dab8f4cd3bee5eeebad33a4996eab4cb22f318414d6b9445', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 523.0503892613112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c5ac845cb1e3f15f6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:18:11.000Z'}}, {'blockNum': '0x6b1c34', 'uniqueId': '0x61ecba881a4cc4ec9ab8453b658a80cb033a068623bf5294551388adc259bcb5:log:78', 'hash': '0x61ecba881a4cc4ec9ab8453b658a80cb033a068623bf5294551388adc259bcb5', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 89.4096801813244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04d8cefe69811fea2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:18:39.000Z'}}, {'blockNum': '0x6b1c34', 'uniqueId': '0x61ecba881a4cc4ec9ab8453b658a80cb033a068623bf5294551388adc259bcb5:log:82', 'hash': '0x61ecba881a4cc4ec9ab8453b658a80cb033a068623bf5294551388adc259bcb5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 89.4096801813244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04d8cefe69811fea2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:18:39.000Z'}}, {'blockNum': '0x6b1c3f', 'uniqueId': '0xcf45e6475d76b1f2a7c403345b058e490f98ccaf70d71ad99ff33040e4b4670e:log:19', 'hash': '0xcf45e6475d76b1f2a7c403345b058e490f98ccaf70d71ad99ff33040e4b4670e', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 868.9023685064876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f1a715483bcc167db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:21:25.000Z'}}, {'blockNum': '0x6b1c3f', 'uniqueId': '0xcf45e6475d76b1f2a7c403345b058e490f98ccaf70d71ad99ff33040e4b4670e:log:24', 'hash': '0xcf45e6475d76b1f2a7c403345b058e490f98ccaf70d71ad99ff33040e4b4670e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'value': 868.9023685064876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f1a715483bcc167db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:21:25.000Z'}}, {'blockNum': '0x6b1c41', 'uniqueId': '0x51f3f93cdfdaaa9d879ca3509cb71623373c72ac1c5daba52c88c91a1a8cc620:log:24', 'hash': '0x51f3f93cdfdaaa9d879ca3509cb71623373c72ac1c5daba52c88c91a1a8cc620', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 791.4222375995218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ae7309bf6484bd071', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:21:40.000Z'}}, {'blockNum': '0x6b1c41', 'uniqueId': '0x51f3f93cdfdaaa9d879ca3509cb71623373c72ac1c5daba52c88c91a1a8cc620:log:28', 'hash': '0x51f3f93cdfdaaa9d879ca3509cb71623373c72ac1c5daba52c88c91a1a8cc620', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 791.4222375995218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ae7309bf6484bd071', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:21:40.000Z'}}, {'blockNum': '0x6b1c53', 'uniqueId': '0x110842ffc7d44b00649b9c6b5b34802c3723f7b0870696096e5e4334574c7349:log:99', 'hash': '0x110842ffc7d44b00649b9c6b5b34802c3723f7b0870696096e5e4334574c7349', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 446.9693095597352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183af1fae651a038f2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:24:48.000Z'}}, {'blockNum': '0x6b1c53', 'uniqueId': '0x110842ffc7d44b00649b9c6b5b34802c3723f7b0870696096e5e4334574c7349:log:103', 'hash': '0x110842ffc7d44b00649b9c6b5b34802c3723f7b0870696096e5e4334574c7349', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa2630fc0233940779f25dfdcff3abbdc85682a4c', 'value': 446.9693095597352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183af1fae651a038f2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:24:48.000Z'}}, {'blockNum': '0x6b1c5b', 'uniqueId': '0x5a249ec4cffaf8bcf1112d82130e03ad528324a47bdcd09d5f01c63cb8f88610:log:198', 'hash': '0x5a249ec4cffaf8bcf1112d82130e03ad528324a47bdcd09d5f01c63cb8f88610', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 357.04569779254655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x135b01226ee235c7af', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:28:05.000Z'}}, {'blockNum': '0x6b1c5b', 'uniqueId': '0x5a249ec4cffaf8bcf1112d82130e03ad528324a47bdcd09d5f01c63cb8f88610:log:202', 'hash': '0x5a249ec4cffaf8bcf1112d82130e03ad528324a47bdcd09d5f01c63cb8f88610', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 357.04569779254655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x135b01226ee235c7af', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:28:05.000Z'}}, {'blockNum': '0x6b1c63', 'uniqueId': '0x3c941f3115b51b6ff23d8f494bf2605aaea07c522e7be2b9db76f30905a17c72:log:55', 'hash': '0x3c941f3115b51b6ff23d8f494bf2605aaea07c522e7be2b9db76f30905a17c72', 'from': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 670.4865755338838, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2458ded40ed541d61b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:29:33.000Z'}}, {'blockNum': '0x6b1c63', 'uniqueId': '0x3c941f3115b51b6ff23d8f494bf2605aaea07c522e7be2b9db76f30905a17c72:log:59', 'hash': '0x3c941f3115b51b6ff23d8f494bf2605aaea07c522e7be2b9db76f30905a17c72', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 670.4865755338838, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2458ded40ed541d61b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:29:33.000Z'}}, {'blockNum': '0x6b1c64', 'uniqueId': '0x5ef6d5b95ee4001584b4136258a5e2d32fd39d9b86e7c5afa071987df7ad4eae:log:52', 'hash': '0x5ef6d5b95ee4001584b4136258a5e2d32fd39d9b86e7c5afa071987df7ad4eae', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 54.37744556331077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f2a37ea2c2479b7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:29:44.000Z'}}, {'blockNum': '0x6b1c64', 'uniqueId': '0x5ef6d5b95ee4001584b4136258a5e2d32fd39d9b86e7c5afa071987df7ad4eae:log:55', 'hash': '0x5ef6d5b95ee4001584b4136258a5e2d32fd39d9b86e7c5afa071987df7ad4eae', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9caac20ade4648bc6a4f80ec5d5f7005985245c', 'value': 54.37744556331077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f2a37ea2c2479b7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:29:44.000Z'}}, {'blockNum': '0x6b1c6f', 'uniqueId': '0x268abc7483e3e961be3d97f0557597936c680570bc096f651c900fd136c21fbd:log:38', 'hash': '0x268abc7483e3e961be3d97f0557597936c680570bc096f651c900fd136c21fbd', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 240.33888539835343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d075f3ee65a2c6636', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:32:46.000Z'}}, {'blockNum': '0x6b1c6f', 'uniqueId': '0x268abc7483e3e961be3d97f0557597936c680570bc096f651c900fd136c21fbd:log:42', 'hash': '0x268abc7483e3e961be3d97f0557597936c680570bc096f651c900fd136c21fbd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 240.33888539835343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d075f3ee65a2c6636', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:32:46.000Z'}}, {'blockNum': '0x6b1c74', 'uniqueId': '0x481faa33643bdd8d46d28809f2e64733687f79e8581b1ae1f5cc0458b250a343:log:91', 'hash': '0x481faa33643bdd8d46d28809f2e64733687f79e8581b1ae1f5cc0458b250a343', 'from': '0xe9caac20ade4648bc6a4f80ec5d5f7005985245c', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 54.37744556331077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f2a37ea2c2479b7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:34:36.000Z'}}, {'blockNum': '0x6b1c74', 'uniqueId': '0x481faa33643bdd8d46d28809f2e64733687f79e8581b1ae1f5cc0458b250a343:log:94', 'hash': '0x481faa33643bdd8d46d28809f2e64733687f79e8581b1ae1f5cc0458b250a343', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 54.37744556331077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f2a37ea2c2479b7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:34:36.000Z'}}, {'blockNum': '0x6b1c74', 'uniqueId': '0x481faa33643bdd8d46d28809f2e64733687f79e8581b1ae1f5cc0458b250a343:log:95', 'hash': '0x481faa33643bdd8d46d28809f2e64733687f79e8581b1ae1f5cc0458b250a343', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 54.37744556331077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f2a37ea2c2479b7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:34:36.000Z'}}, {'blockNum': '0x6b1c7e', 'uniqueId': '0x8a0e5b5508e79105bae630fd66ba3091c95502d864b516b6c9c7093a02b34b01:log:64', 'hash': '0x8a0e5b5508e79105bae630fd66ba3091c95502d864b516b6c9c7093a02b34b01', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.39050175862937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2a0b347a46c503cb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:37:02.000Z'}}, {'blockNum': '0x6b1c7e', 'uniqueId': '0x8a0e5b5508e79105bae630fd66ba3091c95502d864b516b6c9c7093a02b34b01:log:68', 'hash': '0x8a0e5b5508e79105bae630fd66ba3091c95502d864b516b6c9c7093a02b34b01', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 224.39050175862937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2a0b347a46c503cb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:37:02.000Z'}}, {'blockNum': '0x6b1c7e', 'uniqueId': '0xea280db1d418826915602fa9dd8e98ff6be0e004f693e2ebbc947567c1215ac6:log:75', 'hash': '0xea280db1d418826915602fa9dd8e98ff6be0e004f693e2ebbc947567c1215ac6', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:37:02.000Z'}}, {'blockNum': '0x6b1c7e', 'uniqueId': '0xea280db1d418826915602fa9dd8e98ff6be0e004f693e2ebbc947567c1215ac6:log:78', 'hash': '0xea280db1d418826915602fa9dd8e98ff6be0e004f693e2ebbc947567c1215ac6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:37:02.000Z'}}, {'blockNum': '0x6b1c7e', 'uniqueId': '0xea280db1d418826915602fa9dd8e98ff6be0e004f693e2ebbc947567c1215ac6:log:79', 'hash': '0xea280db1d418826915602fa9dd8e98ff6be0e004f693e2ebbc947567c1215ac6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:37:02.000Z'}}, {'blockNum': '0x6b1c85', 'uniqueId': '0x982b1ac1836bc2b3fa343be7af6cc1e04d48ae59af12a28eeb0bfff603f9344f:log:88', 'hash': '0x982b1ac1836bc2b3fa343be7af6cc1e04d48ae59af12a28eeb0bfff603f9344f', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 15789.47132300062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0357f2eec0108d01fadf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:39:29.000Z'}}, {'blockNum': '0x6b1c85', 'uniqueId': '0x982b1ac1836bc2b3fa343be7af6cc1e04d48ae59af12a28eeb0bfff603f9344f:log:91', 'hash': '0x982b1ac1836bc2b3fa343be7af6cc1e04d48ae59af12a28eeb0bfff603f9344f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 15789.47132300062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0357f2eec0108d01fadf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:39:29.000Z'}}, {'blockNum': '0x6b1c85', 'uniqueId': '0x982b1ac1836bc2b3fa343be7af6cc1e04d48ae59af12a28eeb0bfff603f9344f:log:92', 'hash': '0x982b1ac1836bc2b3fa343be7af6cc1e04d48ae59af12a28eeb0bfff603f9344f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 15789.47132300062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0357f2eec0108d01fadf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:39:29.000Z'}}, {'blockNum': '0x6b1c88', 'uniqueId': '0xf37ed1f93a7e6e8415311de956392818a01e0bf8f0b34fc40dee5561eb1f56d4:log:47', 'hash': '0xf37ed1f93a7e6e8415311de956392818a01e0bf8f0b34fc40dee5561eb1f56d4', 'from': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 13.32665678543915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb8f1cbbd1ba652b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:40:03.000Z'}}, {'blockNum': '0x6b1c88', 'uniqueId': '0xf37ed1f93a7e6e8415311de956392818a01e0bf8f0b34fc40dee5561eb1f56d4:log:51', 'hash': '0xf37ed1f93a7e6e8415311de956392818a01e0bf8f0b34fc40dee5561eb1f56d4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 13.32665678543915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb8f1cbbd1ba652b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:40:03.000Z'}}, {'blockNum': '0x6b1c98', 'uniqueId': '0xa8eb0d0bf3db7c4d7e8fbefb343d38654d0c8061ed213ea89d32accfc20b66b4:log:29', 'hash': '0xa8eb0d0bf3db7c4d7e8fbefb343d38654d0c8061ed213ea89d32accfc20b66b4', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:43:25.000Z'}}, {'blockNum': '0x6b1c98', 'uniqueId': '0xa8eb0d0bf3db7c4d7e8fbefb343d38654d0c8061ed213ea89d32accfc20b66b4:log:32', 'hash': '0xa8eb0d0bf3db7c4d7e8fbefb343d38654d0c8061ed213ea89d32accfc20b66b4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:43:25.000Z'}}, {'blockNum': '0x6b1c98', 'uniqueId': '0xa8eb0d0bf3db7c4d7e8fbefb343d38654d0c8061ed213ea89d32accfc20b66b4:log:34', 'hash': '0xa8eb0d0bf3db7c4d7e8fbefb343d38654d0c8061ed213ea89d32accfc20b66b4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:43:25.000Z'}}, {'blockNum': '0x6b1ca0', 'uniqueId': '0xa3fb68bcdd5bf7ebc88438725f5ae4c8530f1b3f6839afca7ae3de9fc9c6baf1:log:13', 'hash': '0xa3fb68bcdd5bf7ebc88438725f5ae4c8530f1b3f6839afca7ae3de9fc9c6baf1', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 181.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09d1f61539e6030000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:44:34.000Z'}}, {'blockNum': '0x6b1ca3', 'uniqueId': '0x7ecc0af535d347fa1e12b6484574891c80c1ce1e1e299ecb6e973058c7cf8008:log:34', 'hash': '0x7ecc0af535d347fa1e12b6484574891c80c1ce1e1e299ecb6e973058c7cf8008', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'value': 181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09cfe12d0559b40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:44:50.000Z'}}, {'blockNum': '0x6b1cb4', 'uniqueId': '0x1f0a74fca228aa7fdbd5bf48e6298bcd5fbad02e53a043494c96d0cab6a83bbd:log:42', 'hash': '0x1f0a74fca228aa7fdbd5bf48e6298bcd5fbad02e53a043494c96d0cab6a83bbd', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.94231237336334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09288baa024366ed57', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:48:19.000Z'}}, {'blockNum': '0x6b1cb4', 'uniqueId': '0x1f0a74fca228aa7fdbd5bf48e6298bcd5fbad02e53a043494c96d0cab6a83bbd:log:44', 'hash': '0x1f0a74fca228aa7fdbd5bf48e6298bcd5fbad02e53a043494c96d0cab6a83bbd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 168.94231237336334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09288baa024366ed57', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:48:19.000Z'}}, {'blockNum': '0x6b1cb8', 'uniqueId': '0xc546a9dc8e3f86e5a3cb28697f83709e75fedeeaa6a05559a79cb85f3c75cda1:log:21', 'hash': '0xc546a9dc8e3f86e5a3cb28697f83709e75fedeeaa6a05559a79cb85f3c75cda1', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 109.48348581255333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05ef637a4734c28599', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:50:04.000Z'}}, {'blockNum': '0x6b1cb8', 'uniqueId': '0xc546a9dc8e3f86e5a3cb28697f83709e75fedeeaa6a05559a79cb85f3c75cda1:log:25', 'hash': '0xc546a9dc8e3f86e5a3cb28697f83709e75fedeeaa6a05559a79cb85f3c75cda1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 109.48348581255333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05ef637a4734c28599', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:50:04.000Z'}}, {'blockNum': '0x6b1cba', 'uniqueId': '0xf98a22ba3094828378488c2c6d696bdfdab898c292289d46ce766d67bbfaae2c:log:28', 'hash': '0xf98a22ba3094828378488c2c6d696bdfdab898c292289d46ce766d67bbfaae2c', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 294.59482965854215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff85314be801dc015', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:50:14.000Z'}}, {'blockNum': '0x6b1cba', 'uniqueId': '0xf98a22ba3094828378488c2c6d696bdfdab898c292289d46ce766d67bbfaae2c:log:31', 'hash': '0xf98a22ba3094828378488c2c6d696bdfdab898c292289d46ce766d67bbfaae2c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 294.59482965854215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff85314be801dc015', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:50:14.000Z'}}, {'blockNum': '0x6b1cd6', 'uniqueId': '0x6ab3abb321f6e565647c5c8130991f5cd15dd37c65b506da74a12c6b2e9e4b0f:log:51', 'hash': '0x6ab3abb321f6e565647c5c8130991f5cd15dd37c65b506da74a12c6b2e9e4b0f', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 257.16808940459293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0df0ec96c74ea8e329', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:56:08.000Z'}}, {'blockNum': '0x6b1cd6', 'uniqueId': '0x6ab3abb321f6e565647c5c8130991f5cd15dd37c65b506da74a12c6b2e9e4b0f:log:53', 'hash': '0x6ab3abb321f6e565647c5c8130991f5cd15dd37c65b506da74a12c6b2e9e4b0f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 257.16808940459293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0df0ec96c74ea8e329', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:56:08.000Z'}}, {'blockNum': '0x6b1ce4', 'uniqueId': '0x79dd1e6b4ea30ae6df9209e601036006f1ae619de8e7d5e0e6d6bd47cfe7e76f:log:6', 'hash': '0x79dd1e6b4ea30ae6df9209e601036006f1ae619de8e7d5e0e6d6bd47cfe7e76f', 'from': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09cfe12d0559b40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:00:13.000Z'}}, {'blockNum': '0x6b1ce7', 'uniqueId': '0x63867461e551926ecda77321b3cf277ac4fd408feb66ac0596456f62e7d3a64b:log:80', 'hash': '0x63867461e551926ecda77321b3cf277ac4fd408feb66ac0596456f62e7d3a64b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4.378288179121747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3cc2cde6d8d7f332', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:01:15.000Z'}}, {'blockNum': '0x6b1ce7', 'uniqueId': '0x63867461e551926ecda77321b3cf277ac4fd408feb66ac0596456f62e7d3a64b:log:84', 'hash': '0x63867461e551926ecda77321b3cf277ac4fd408feb66ac0596456f62e7d3a64b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 4.378288179121747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3cc2cde6d8d7f332', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:01:15.000Z'}}, {'blockNum': '0x6b1cec', 'uniqueId': '0x00ce659275471d29c591e95f38b2aeeb8f5c710b8a54e9ff4db07c469cea0105:log:31', 'hash': '0x00ce659275471d29c591e95f38b2aeeb8f5c710b8a54e9ff4db07c469cea0105', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 236.6235566809066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cd3cfbf1daef24e3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:03:34.000Z'}}, {'blockNum': '0x6b1cec', 'uniqueId': '0x00ce659275471d29c591e95f38b2aeeb8f5c710b8a54e9ff4db07c469cea0105:log:35', 'hash': '0x00ce659275471d29c591e95f38b2aeeb8f5c710b8a54e9ff4db07c469cea0105', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 236.6235566809066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cd3cfbf1daef24e3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:03:34.000Z'}}, {'blockNum': '0x6b1cf2', 'uniqueId': '0x72f448c669856518f19ff6b42730b9049499e613269798d9001af3120dc23796:log:29', 'hash': '0x72f448c669856518f19ff6b42730b9049499e613269798d9001af3120dc23796', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 447.45300440502416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1841a868cc7ac35087', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:04:44.000Z'}}, {'blockNum': '0x6b1cf2', 'uniqueId': '0x72f448c669856518f19ff6b42730b9049499e613269798d9001af3120dc23796:log:33', 'hash': '0x72f448c669856518f19ff6b42730b9049499e613269798d9001af3120dc23796', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 447.45300440502416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1841a868cc7ac35087', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:04:44.000Z'}}, {'blockNum': '0x6b1cf9', 'uniqueId': '0x85f3d7e5b28310a5ab49c39be419942753a142969e5e942fe7be6acba79c090d:log:66', 'hash': '0x85f3d7e5b28310a5ab49c39be419942753a142969e5e942fe7be6acba79c090d', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.11974771219957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c26494b1b5fd1f818', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:06:04.000Z'}}, {'blockNum': '0x6b1cf9', 'uniqueId': '0x85f3d7e5b28310a5ab49c39be419942753a142969e5e942fe7be6acba79c090d:log:68', 'hash': '0x85f3d7e5b28310a5ab49c39be419942753a142969e5e942fe7be6acba79c090d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 224.11974771219957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c26494b1b5fd1f818', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:06:04.000Z'}}, {'blockNum': '0x6b1d07', 'uniqueId': '0x5090f78b80af06a68fd3177b776606da52639da88a4f6c209fe3a731991a865e:log:46', 'hash': '0x5090f78b80af06a68fd3177b776606da52639da88a4f6c209fe3a731991a865e', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 447.50133163994656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1842541a29b14a07fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:10:32.000Z'}}, {'blockNum': '0x6b1d07', 'uniqueId': '0x5090f78b80af06a68fd3177b776606da52639da88a4f6c209fe3a731991a865e:log:50', 'hash': '0x5090f78b80af06a68fd3177b776606da52639da88a4f6c209fe3a731991a865e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 447.50133163994656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1842541a29b14a07fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:10:32.000Z'}}, {'blockNum': '0x6b1d09', 'uniqueId': '0x05b06ae429ea114b57af342c3e9a478a89a2f8ccb285d7769adfa414c7ac568d:log:40', 'hash': '0x05b06ae429ea114b57af342c3e9a478a89a2f8ccb285d7769adfa414c7ac568d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1500.0804021890406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5151cc2a063addc8df', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:10:48.000Z'}}, {'blockNum': '0x6b1d09', 'uniqueId': '0x05b06ae429ea114b57af342c3e9a478a89a2f8ccb285d7769adfa414c7ac568d:log:43', 'hash': '0x05b06ae429ea114b57af342c3e9a478a89a2f8ccb285d7769adfa414c7ac568d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xecc996953e976a305ee585a9c7bbbcc85d1c467b', 'value': 1500.0804021890406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5151cc2a063addc8df', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:10:48.000Z'}}, {'blockNum': '0x6b1d0d', 'uniqueId': '0x7ba255e62df0d4cc9cf0434d9a8ae9e56a2542ccaba0ec39ffd05ac4021e9d79:log:24', 'hash': '0x7ba255e62df0d4cc9cf0434d9a8ae9e56a2542ccaba0ec39ffd05ac4021e9d79', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.05168257091935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091c2f82ec1a5a4768', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:11:15.000Z'}}, {'blockNum': '0x6b1d0d', 'uniqueId': '0x7ba255e62df0d4cc9cf0434d9a8ae9e56a2542ccaba0ec39ffd05ac4021e9d79:log:28', 'hash': '0x7ba255e62df0d4cc9cf0434d9a8ae9e56a2542ccaba0ec39ffd05ac4021e9d79', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'value': 168.05168257091935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091c2f82ec1a5a4768', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:11:15.000Z'}}, {'blockNum': '0x6b1d1b', 'uniqueId': '0x3f6ac8ce589f5fa84f92bccf8d7a055dd099e3ccd4852ebb9abcfe057845635e:log:17', 'hash': '0x3f6ac8ce589f5fa84f92bccf8d7a055dd099e3ccd4852ebb9abcfe057845635e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 904.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3109d8cb394a5c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:13:59.000Z'}}, {'blockNum': '0x6b1d1d', 'uniqueId': '0x124e2fcdaddc6bb21fdb62b1b8b8367c18db37415603ef800527dc9d6f1bdf26:log:0', 'hash': '0x124e2fcdaddc6bb21fdb62b1b8b8367c18db37415603ef800527dc9d6f1bdf26', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x310f65e11ac0840000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:14:05.000Z'}}, {'blockNum': '0x6b1d1d', 'uniqueId': '0x124e2fcdaddc6bb21fdb62b1b8b8367c18db37415603ef800527dc9d6f1bdf26:log:3', 'hash': '0x124e2fcdaddc6bb21fdb62b1b8b8367c18db37415603ef800527dc9d6f1bdf26', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x310f65e11ac0840000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:14:05.000Z'}}, {'blockNum': '0x6b1d20', 'uniqueId': '0xa25a9679f80edf30946c40ef4f42d37a130555055068bf925a592a430f2d513e:log:20', 'hash': '0xa25a9679f80edf30946c40ef4f42d37a130555055068bf925a592a430f2d513e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 360.79199813183004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x138efeaabe3320a16b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:14:56.000Z'}}, {'blockNum': '0x6b1d20', 'uniqueId': '0xa25a9679f80edf30946c40ef4f42d37a130555055068bf925a592a430f2d513e:log:24', 'hash': '0xa25a9679f80edf30946c40ef4f42d37a130555055068bf925a592a430f2d513e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'value': 360.79199813183004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x138efeaabe3320a16b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:14:56.000Z'}}, {'blockNum': '0x6b1d21', 'uniqueId': '0x2dba2cd9b070949c4087c051bc560ba6d7cc56a041240a7fa3ba3adc45e16487:log:63', 'hash': '0x2dba2cd9b070949c4087c051bc560ba6d7cc56a041240a7fa3ba3adc45e16487', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 87.57678080480375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04bf5f3a23ea934e72', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:15:09.000Z'}}, {'blockNum': '0x6b1d21', 'uniqueId': '0x2dba2cd9b070949c4087c051bc560ba6d7cc56a041240a7fa3ba3adc45e16487:log:67', 'hash': '0x2dba2cd9b070949c4087c051bc560ba6d7cc56a041240a7fa3ba3adc45e16487', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 87.57678080480375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04bf5f3a23ea934e72', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:15:09.000Z'}}, {'blockNum': '0x6b1d26', 'uniqueId': '0xd3529ea23bdd40b0e108da9b7364adf408aa6eeb07eccea34b0d29001cc79295:log:8', 'hash': '0xd3529ea23bdd40b0e108da9b7364adf408aa6eeb07eccea34b0d29001cc79295', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 269.1186699238008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e96c59471a1bea2f6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:16:08.000Z'}}, {'blockNum': '0x6b1d26', 'uniqueId': '0xd3529ea23bdd40b0e108da9b7364adf408aa6eeb07eccea34b0d29001cc79295:log:10', 'hash': '0xd3529ea23bdd40b0e108da9b7364adf408aa6eeb07eccea34b0d29001cc79295', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 269.1186699238008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e96c59471a1bea2f6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:16:08.000Z'}}, {'blockNum': '0x6b1d27', 'uniqueId': '0x02a80a06514a9a958bd5e63ee6e20e35de098f8d9458ddc90f0e014f0aa8bb1e:log:77', 'hash': '0x02a80a06514a9a958bd5e63ee6e20e35de098f8d9458ddc90f0e014f0aa8bb1e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1153.9710075956723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3e8e90956867a316e7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:16:57.000Z'}}, {'blockNum': '0x6b1d27', 'uniqueId': '0x02a80a06514a9a958bd5e63ee6e20e35de098f8d9458ddc90f0e014f0aa8bb1e:log:81', 'hash': '0x02a80a06514a9a958bd5e63ee6e20e35de098f8d9458ddc90f0e014f0aa8bb1e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'value': 1153.9710075956723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3e8e90956867a316e7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:16:57.000Z'}}, {'blockNum': '0x6b1d29', 'uniqueId': '0xaea0c60000fd55abfbb8e6fa0780ff1e84439cb89ecf8b7a2ffcd0955f36c1d8:log:49', 'hash': '0xaea0c60000fd55abfbb8e6fa0780ff1e84439cb89ecf8b7a2ffcd0955f36c1d8', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 447.4244108927759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x184142d3269e52e241', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:17:16.000Z'}}, {'blockNum': '0x6b1d29', 'uniqueId': '0xaea0c60000fd55abfbb8e6fa0780ff1e84439cb89ecf8b7a2ffcd0955f36c1d8:log:53', 'hash': '0xaea0c60000fd55abfbb8e6fa0780ff1e84439cb89ecf8b7a2ffcd0955f36c1d8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 447.4244108927759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x184142d3269e52e241', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:17:16.000Z'}}, {'blockNum': '0x6b1d2e', 'uniqueId': '0xddd46dd0d0d9ce77617ba3251b43bf3c87ed7eeded6d0d711a80a019c8cb7b59:log:75', 'hash': '0xddd46dd0d0d9ce77617ba3251b43bf3c87ed7eeded6d0d711a80a019c8cb7b59', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 358.0535022402302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1368fd933d1d73fa27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:18:11.000Z'}}, {'blockNum': '0x6b1d2e', 'uniqueId': '0xddd46dd0d0d9ce77617ba3251b43bf3c87ed7eeded6d0d711a80a019c8cb7b59:log:79', 'hash': '0xddd46dd0d0d9ce77617ba3251b43bf3c87ed7eeded6d0d711a80a019c8cb7b59', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 358.0535022402302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1368fd933d1d73fa27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:18:11.000Z'}}, {'blockNum': '0x6b1d3b', 'uniqueId': '0xd243b85e4640ee772ea0d024e1752cf53d87116a6d4860de574d1536f54803f2:log:87', 'hash': '0xd243b85e4640ee772ea0d024e1752cf53d87116a6d4860de574d1536f54803f2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.07516618413197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c25aae8717fced48d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:22:32.000Z'}}, {'blockNum': '0x6b1d3b', 'uniqueId': '0xd243b85e4640ee772ea0d024e1752cf53d87116a6d4860de574d1536f54803f2:log:91', 'hash': '0xd243b85e4640ee772ea0d024e1752cf53d87116a6d4860de574d1536f54803f2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 224.07516618413197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c25aae8717fced48d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:22:32.000Z'}}, {'blockNum': '0x6b1d44', 'uniqueId': '0xbc21d1195c2d7b5d1c7de0a6be54ef33756531c7154a58d22c865474af45ffd6:log:22', 'hash': '0xbc21d1195c2d7b5d1c7de0a6be54ef33756531c7154a58d22c865474af45ffd6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 256.74463754153913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0deb0c2f8d79dc91e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:24:27.000Z'}}, {'blockNum': '0x6b1d44', 'uniqueId': '0xbc21d1195c2d7b5d1c7de0a6be54ef33756531c7154a58d22c865474af45ffd6:log:26', 'hash': '0xbc21d1195c2d7b5d1c7de0a6be54ef33756531c7154a58d22c865474af45ffd6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 256.74463754153913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0deb0c2f8d79dc91e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:24:27.000Z'}}, {'blockNum': '0x6b1d49', 'uniqueId': '0x25e3188bbe1acdb75dc66766540fd335c8229d4c394dc0c7d0766fde66b393d4:log:69', 'hash': '0x25e3188bbe1acdb75dc66766540fd335c8229d4c394dc0c7d0766fde66b393d4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 262.5082988174276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e3b08d2f224ddc455', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:25:26.000Z'}}, {'blockNum': '0x6b1d49', 'uniqueId': '0x25e3188bbe1acdb75dc66766540fd335c8229d4c394dc0c7d0766fde66b393d4:log:73', 'hash': '0x25e3188bbe1acdb75dc66766540fd335c8229d4c394dc0c7d0766fde66b393d4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 262.5082988174276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e3b08d2f224ddc455', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:25:26.000Z'}}, {'blockNum': '0x6b1d4e', 'uniqueId': '0xe0bb78aa940b4c607cb0553b01b37dc07d750040c109da83f9580e92c2c7952b:log:69', 'hash': '0xe0bb78aa940b4c607cb0553b01b37dc07d750040c109da83f9580e92c2c7952b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 268.46817773309783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e8dbe913e2dbaff2d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:25:59.000Z'}}, {'blockNum': '0x6b1d4e', 'uniqueId': '0xe0bb78aa940b4c607cb0553b01b37dc07d750040c109da83f9580e92c2c7952b:log:73', 'hash': '0xe0bb78aa940b4c607cb0553b01b37dc07d750040c109da83f9580e92c2c7952b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 268.46817773309783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e8dbe913e2dbaff2d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:25:59.000Z'}}, {'blockNum': '0x6b1d4f', 'uniqueId': '0x812813b1de0dd73742756e846d94bdc99deae560ff56def6e9d4c6b42f5825da:log:18', 'hash': '0x812813b1de0dd73742756e846d94bdc99deae560ff56def6e9d4c6b42f5825da', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 39.795822886645155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0228472a116ed845b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:26:46.000Z'}}, {'blockNum': '0x6b1d4f', 'uniqueId': '0x812813b1de0dd73742756e846d94bdc99deae560ff56def6e9d4c6b42f5825da:log:22', 'hash': '0x812813b1de0dd73742756e846d94bdc99deae560ff56def6e9d4c6b42f5825da', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 39.795822886645155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0228472a116ed845b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:26:46.000Z'}}, {'blockNum': '0x6b1d5e', 'uniqueId': '0x34f42428b56de09e91f68d9835876191fa83050b58d7045cdfda3148b60b0d16:log:49', 'hash': '0x34f42428b56de09e91f68d9835876191fa83050b58d7045cdfda3148b60b0d16', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.04694291747526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2546a388285595ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:33:25.000Z'}}, {'blockNum': '0x6b1d5e', 'uniqueId': '0x34f42428b56de09e91f68d9835876191fa83050b58d7045cdfda3148b60b0d16:log:53', 'hash': '0x34f42428b56de09e91f68d9835876191fa83050b58d7045cdfda3148b60b0d16', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 224.04694291747526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2546a388285595ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:33:25.000Z'}}, {'blockNum': '0x6b1d60', 'uniqueId': '0x73b7589a9fedeb974728cc2a959a2779188f7504761ce8b861d19f0a2fcf1d18:log:60', 'hash': '0x73b7589a9fedeb974728cc2a959a2779188f7504761ce8b861d19f0a2fcf1d18', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.0409303201547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2531471b40dcfc34', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:34:03.000Z'}}, {'blockNum': '0x6b1d60', 'uniqueId': '0x73b7589a9fedeb974728cc2a959a2779188f7504761ce8b861d19f0a2fcf1d18:log:64', 'hash': '0x73b7589a9fedeb974728cc2a959a2779188f7504761ce8b861d19f0a2fcf1d18', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 224.0409303201547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2531471b40dcfc34', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:34:03.000Z'}}, {'blockNum': '0x6b1d63', 'uniqueId': '0x3e6dea7c1080c9c93c8a4271cfe7247e1259a0b4b2866abf12dc94761f0117a6:log:65', 'hash': '0x3e6dea7c1080c9c93c8a4271cfe7247e1259a0b4b2866abf12dc94761f0117a6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 279.83229982895335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f2b740a14515e4805', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:36:23.000Z'}}, {'blockNum': '0x6b1d63', 'uniqueId': '0x3e6dea7c1080c9c93c8a4271cfe7247e1259a0b4b2866abf12dc94761f0117a6:log:69', 'hash': '0x3e6dea7c1080c9c93c8a4271cfe7247e1259a0b4b2866abf12dc94761f0117a6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 279.83229982895335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f2b740a14515e4805', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:36:23.000Z'}}, {'blockNum': '0x6b1d63', 'uniqueId': '0xef8cbe62cf30c94224ca88cf81e31f4ff9b7a1b833876903128c4c98cb036b44:log:100', 'hash': '0xef8cbe62cf30c94224ca88cf81e31f4ff9b7a1b833876903128c4c98cb036b44', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 265.59581595735835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e65e1e36d205ec8ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:36:23.000Z'}}, {'blockNum': '0x6b1d63', 'uniqueId': '0xef8cbe62cf30c94224ca88cf81e31f4ff9b7a1b833876903128c4c98cb036b44:log:102', 'hash': '0xef8cbe62cf30c94224ca88cf81e31f4ff9b7a1b833876903128c4c98cb036b44', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 265.59581595735835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e65e1e36d205ec8ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:36:23.000Z'}}, {'blockNum': '0x6b1d74', 'uniqueId': '0xd759c5df8ac295bdd5c224068bd9dd5f1003698ebe8ab884c9088880bded5c4c:log:76', 'hash': '0xd759c5df8ac295bdd5c224068bd9dd5f1003698ebe8ab884c9088880bded5c4c', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.04035171882862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c252f38df225b5f96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:41:15.000Z'}}, {'blockNum': '0x6b1d74', 'uniqueId': '0xd759c5df8ac295bdd5c224068bd9dd5f1003698ebe8ab884c9088880bded5c4c:log:80', 'hash': '0xd759c5df8ac295bdd5c224068bd9dd5f1003698ebe8ab884c9088880bded5c4c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 224.04035171882862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c252f38df225b5f96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:41:15.000Z'}}, {'blockNum': '0x6b1d78', 'uniqueId': '0xc0d4e9e2cecd0e84247f8942a666a25d4ebb4b8985c24410883eeccccbecec5a:log:150', 'hash': '0xc0d4e9e2cecd0e84247f8942a666a25d4ebb4b8985c24410883eeccccbecec5a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 286.40287436291106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f86a368ce3c24a29d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:41:50.000Z'}}, {'blockNum': '0x6b1d78', 'uniqueId': '0xc0d4e9e2cecd0e84247f8942a666a25d4ebb4b8985c24410883eeccccbecec5a:log:154', 'hash': '0xc0d4e9e2cecd0e84247f8942a666a25d4ebb4b8985c24410883eeccccbecec5a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 286.40287436291106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f86a368ce3c24a29d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:41:50.000Z'}}, {'blockNum': '0x6b1d8c', 'uniqueId': '0x6caad61b911f8226071f925a5e58c0d71cddd4ced28da94794de4ce60fa5b7ad:log:2', 'hash': '0x6caad61b911f8226071f925a5e58c0d71cddd4ced28da94794de4ce60fa5b7ad', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x161e9e50cca7e4b22a8b4f5721d6728f12a50502', 'value': 4.34300169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c457106df5f0400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:45:40.000Z'}}, {'blockNum': '0x6b1d8f', 'uniqueId': '0x797abf04535f7b281bdae02d821922a972c92c33d6e433c50f81bbde6edbc385:log:42', 'hash': '0x797abf04535f7b281bdae02d821922a972c92c33d6e433c50f81bbde6edbc385', 'from': '0x161e9e50cca7e4b22a8b4f5721d6728f12a50502', 'to': '0x521db06bf657ed1d6c98553a70319a8ddbac75a3', 'value': 4.34300169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c457106df5f0400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:46:07.000Z'}}, {'blockNum': '0x6b1d8f', 'uniqueId': '0x788d6420923a0ab91d20826718113235f07de313f89a50d2b479fda7f35fca4c:log:84', 'hash': '0x788d6420923a0ab91d20826718113235f07de313f89a50d2b479fda7f35fca4c', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:46:07.000Z'}}, {'blockNum': '0x6b1d8f', 'uniqueId': '0x788d6420923a0ab91d20826718113235f07de313f89a50d2b479fda7f35fca4c:log:87', 'hash': '0x788d6420923a0ab91d20826718113235f07de313f89a50d2b479fda7f35fca4c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:46:07.000Z'}}, {'blockNum': '0x6b1d8f', 'uniqueId': '0x788d6420923a0ab91d20826718113235f07de313f89a50d2b479fda7f35fca4c:log:89', 'hash': '0x788d6420923a0ab91d20826718113235f07de313f89a50d2b479fda7f35fca4c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:46:07.000Z'}}, {'blockNum': '0x6b1da1', 'uniqueId': '0xb9cdaa5dc8806aa14debf250a19922f55c1e6d9fd46f305c89690aeb8651db1e:log:14', 'hash': '0xb9cdaa5dc8806aa14debf250a19922f55c1e6d9fd46f305c89690aeb8651db1e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xc7476fe5ce21078cf7a9b8aaadb0cdc26aacd9fe', 'value': 147.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07fd72781824d30000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:52:01.000Z'}}, {'blockNum': '0x6b1da7', 'uniqueId': '0x882a0f1644fa36bfa1b1a451d834c7f936b8d1757942736b337a7a6da6f4a565:log:85', 'hash': '0x882a0f1644fa36bfa1b1a451d834c7f936b8d1757942736b337a7a6da6f4a565', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 104.73700169976951, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05ad849420223ed5e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:52:42.000Z'}}, {'blockNum': '0x6b1da7', 'uniqueId': '0x882a0f1644fa36bfa1b1a451d834c7f936b8d1757942736b337a7a6da6f4a565:log:89', 'hash': '0x882a0f1644fa36bfa1b1a451d834c7f936b8d1757942736b337a7a6da6f4a565', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 104.73700169976951, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05ad849420223ed5e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:52:42.000Z'}}, {'blockNum': '0x6b1da7', 'uniqueId': '0xced04e214b9a8d03f3c4cc456e8cd4b24197269591cf030e6c633ebe3c8dc0b4:log:102', 'hash': '0xced04e214b9a8d03f3c4cc456e8cd4b24197269591cf030e6c633ebe3c8dc0b4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4.480772382431511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3e2ee6bdde360448', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:52:42.000Z'}}, {'blockNum': '0x6b1da7', 'uniqueId': '0xced04e214b9a8d03f3c4cc456e8cd4b24197269591cf030e6c633ebe3c8dc0b4:log:105', 'hash': '0xced04e214b9a8d03f3c4cc456e8cd4b24197269591cf030e6c633ebe3c8dc0b4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1310c4ca76a8b4ff40fd9ec5de46932184b02ac1', 'value': 4.480772382431511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3e2ee6bdde360448', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:52:42.000Z'}}, {'blockNum': '0x6b1dac', 'uniqueId': '0xc4394fb7a44c07b11a0d54690e3ae42cd5fa06a60037380e2e89d2527a994eb4:log:32', 'hash': '0xc4394fb7a44c07b11a0d54690e3ae42cd5fa06a60037380e2e89d2527a994eb4', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 233.67942041485418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0caaf412c7da8c419d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:54:36.000Z'}}, {'blockNum': '0x6b1dac', 'uniqueId': '0xc4394fb7a44c07b11a0d54690e3ae42cd5fa06a60037380e2e89d2527a994eb4:log:36', 'hash': '0xc4394fb7a44c07b11a0d54690e3ae42cd5fa06a60037380e2e89d2527a994eb4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 233.67942041485418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0caaf412c7da8c419d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:54:36.000Z'}}, {'blockNum': '0x6b1db2', 'uniqueId': '0x25bff6bd568c200583ef57a5ccb20385489ab87a83cfdb453ded95147e38c3f8:log:85', 'hash': '0x25bff6bd568c200583ef57a5ccb20385489ab87a83cfdb453ded95147e38c3f8', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 329.7552129560593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11e045db10c7344cd3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:56:34.000Z'}}, {'blockNum': '0x6b1db2', 'uniqueId': '0x25bff6bd568c200583ef57a5ccb20385489ab87a83cfdb453ded95147e38c3f8:log:89', 'hash': '0x25bff6bd568c200583ef57a5ccb20385489ab87a83cfdb453ded95147e38c3f8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 329.7552129560593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11e045db10c7344cd3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:56:34.000Z'}}, {'blockNum': '0x6b1db5', 'uniqueId': '0x9de2412fed163aaacc54e1b47715aa01213d3893786969cfdc8bc8166f927522:log:7', 'hash': '0x9de2412fed163aaacc54e1b47715aa01213d3893786969cfdc8bc8166f927522', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 112.02608830443631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0612ac9dc5f277f34f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:58:21.000Z'}}, {'blockNum': '0x6b1db5', 'uniqueId': '0x9de2412fed163aaacc54e1b47715aa01213d3893786969cfdc8bc8166f927522:log:11', 'hash': '0x9de2412fed163aaacc54e1b47715aa01213d3893786969cfdc8bc8166f927522', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 112.02608830443631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0612ac9dc5f277f34f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:58:21.000Z'}}, {'blockNum': '0x6b1db7', 'uniqueId': '0x09e55eb8f642e2f35652995c3920468294de7cf068e0892959271d3f3684bf08:log:49', 'hash': '0x09e55eb8f642e2f35652995c3920468294de7cf068e0892959271d3f3684bf08', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 336.06924561514336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1237e5ce50d81f9ada', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:58:45.000Z'}}, {'blockNum': '0x6b1db7', 'uniqueId': '0x09e55eb8f642e2f35652995c3920468294de7cf068e0892959271d3f3684bf08:log:53', 'hash': '0x09e55eb8f642e2f35652995c3920468294de7cf068e0892959271d3f3684bf08', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 336.06924561514336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1237e5ce50d81f9ada', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:58:45.000Z'}}, {'blockNum': '0x6b1dc3', 'uniqueId': '0x01a9e1893c2fca20ef4b07586242429385ffe108d5977ba5ab9ea51cc29c4aab:log:48', 'hash': '0x01a9e1893c2fca20ef4b07586242429385ffe108d5977ba5ab9ea51cc29c4aab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2.2404162420234157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f178eb3aed23f7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:00:40.000Z'}}, {'blockNum': '0x6b1dc3', 'uniqueId': '0x01a9e1893c2fca20ef4b07586242429385ffe108d5977ba5ab9ea51cc29c4aab:log:52', 'hash': '0x01a9e1893c2fca20ef4b07586242429385ffe108d5977ba5ab9ea51cc29c4aab', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 2.2404162420234157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f178eb3aed23f7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:00:40.000Z'}}, {'blockNum': '0x6b1ddd', 'uniqueId': '0xb00b0425b22c8bbe8044720e9fcd813e773d8f68b370c9c96ecec59c2a02c912:log:42', 'hash': '0xb00b0425b22c8bbe8044720e9fcd813e773d8f68b370c9c96ecec59c2a02c912', 'from': '0x6b431a7a99780819473722161ee9145e5649c5e2', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 240.06396987456705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d038e8cafffa51d03', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:06:54.000Z'}}, {'blockNum': '0x6b1ddd', 'uniqueId': '0xb00b0425b22c8bbe8044720e9fcd813e773d8f68b370c9c96ecec59c2a02c912:log:44', 'hash': '0xb00b0425b22c8bbe8044720e9fcd813e773d8f68b370c9c96ecec59c2a02c912', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 240.06396987456705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d038e8cafffa51d03', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:06:54.000Z'}}, {'blockNum': '0x6b1dde', 'uniqueId': '0xea9b860cfa8ab47dbdae3fc2f54494439e2873f943a671e35b5e5619fb071383:log:15', 'hash': '0xea9b860cfa8ab47dbdae3fc2f54494439e2873f943a671e35b5e5619fb071383', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.04503033202212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c253fd80ba7cc08b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:06:57.000Z'}}, {'blockNum': '0x6b1dde', 'uniqueId': '0xea9b860cfa8ab47dbdae3fc2f54494439e2873f943a671e35b5e5619fb071383:log:19', 'hash': '0xea9b860cfa8ab47dbdae3fc2f54494439e2873f943a671e35b5e5619fb071383', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 224.04503033202212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c253fd80ba7cc08b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:06:57.000Z'}}, {'blockNum': '0x6b1dee', 'uniqueId': '0xe480b9d0d831e0433cb9861fda15376331c3f94485d64e6fa2b2e1f897ee9d15:log:97', 'hash': '0xe480b9d0d831e0433cb9861fda15376331c3f94485d64e6fa2b2e1f897ee9d15', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 45.05472945688444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0271428dbb18ecceac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:10:51.000Z'}}, {'blockNum': '0x6b1dee', 'uniqueId': '0xe480b9d0d831e0433cb9861fda15376331c3f94485d64e6fa2b2e1f897ee9d15:log:101', 'hash': '0xe480b9d0d831e0433cb9861fda15376331c3f94485d64e6fa2b2e1f897ee9d15', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'value': 45.05472945688444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0271428dbb18ecceac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:10:51.000Z'}}, {'blockNum': '0x6b1e0b', 'uniqueId': '0x901aab46643815390222caf1b488b543cc63a71da4d8d26fb3bce499e5116cc4:log:53', 'hash': '0x901aab46643815390222caf1b488b543cc63a71da4d8d26fb3bce499e5116cc4', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 86.70091141411882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b3378391ed299870', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:19:24.000Z'}}, {'blockNum': '0x6b1e0b', 'uniqueId': '0x901aab46643815390222caf1b488b543cc63a71da4d8d26fb3bce499e5116cc4:log:57', 'hash': '0x901aab46643815390222caf1b488b543cc63a71da4d8d26fb3bce499e5116cc4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 86.70091141411882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b3378391ed299870', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:19:24.000Z'}}, {'blockNum': '0x6b1e10', 'uniqueId': '0x68af280a29ebaf8122f83ec06524feb4fa94acc6dc43283794ccacc4cb389d26:log:12', 'hash': '0x68af280a29ebaf8122f83ec06524feb4fa94acc6dc43283794ccacc4cb389d26', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2.016367090832125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bfb932f99d62d43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:21:34.000Z'}}, {'blockNum': '0x6b1e10', 'uniqueId': '0x68af280a29ebaf8122f83ec06524feb4fa94acc6dc43283794ccacc4cb389d26:log:16', 'hash': '0x68af280a29ebaf8122f83ec06524feb4fa94acc6dc43283794ccacc4cb389d26', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'value': 2.016367090832125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bfb932f99d62d43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:21:34.000Z'}}, {'blockNum': '0x6b1e10', 'uniqueId': '0x5baab0adc0fe52405ec944f270c0304c48d657204ceda8a5f59d5c29c1d0be40:log:30', 'hash': '0x5baab0adc0fe52405ec944f270c0304c48d657204ceda8a5f59d5c29c1d0be40', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 0.7924372527662195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0aff4d7b9deabcf2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:21:34.000Z'}}, {'blockNum': '0x6b1e10', 'uniqueId': '0x5baab0adc0fe52405ec944f270c0304c48d657204ceda8a5f59d5c29c1d0be40:log:34', 'hash': '0x5baab0adc0fe52405ec944f270c0304c48d657204ceda8a5f59d5c29c1d0be40', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 0.7924372527662195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0aff4d7b9deabcf2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:21:34.000Z'}}, {'blockNum': '0x6b1e10', 'uniqueId': '0x56b3d8b1bfe94feb48a117cb5f1a850a8e440d77b4c6bd9b804c64c3d5202667:log:46', 'hash': '0x56b3d8b1bfe94feb48a117cb5f1a850a8e440d77b4c6bd9b804c64c3d5202667', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 527.027075869002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c91f84d3198b61dda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:21:34.000Z'}}, {'blockNum': '0x6b1e10', 'uniqueId': '0x56b3d8b1bfe94feb48a117cb5f1a850a8e440d77b4c6bd9b804c64c3d5202667:log:50', 'hash': '0x56b3d8b1bfe94feb48a117cb5f1a850a8e440d77b4c6bd9b804c64c3d5202667', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0f1c029c5d7f626f6820bfe0f6a7b2ac48746ddf', 'value': 527.027075869002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c91f84d3198b61dda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:21:34.000Z'}}, {'blockNum': '0x6b1e1c', 'uniqueId': '0x8950cb9573ea0c7148f5cfe54d38cd5067909cb998b8a34c92c00490ebc20242:log:50', 'hash': '0x8950cb9573ea0c7148f5cfe54d38cd5067909cb998b8a34c92c00490ebc20242', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 672.0527390865221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x246e9af582dc6dc050', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:25:34.000Z'}}, {'blockNum': '0x6b1e1c', 'uniqueId': '0x8950cb9573ea0c7148f5cfe54d38cd5067909cb998b8a34c92c00490ebc20242:log:53', 'hash': '0x8950cb9573ea0c7148f5cfe54d38cd5067909cb998b8a34c92c00490ebc20242', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92578f6e362c4d28cfae1992af4d00b16beb22d4', 'value': 672.0527390865221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x246e9af582dc6dc050', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:25:34.000Z'}}, {'blockNum': '0x6b1e1c', 'uniqueId': '0xfb52921e1f76844b2083f91a818c6c3bcd02725d2b295f9d44525a09316d20a8:log:60', 'hash': '0xfb52921e1f76844b2083f91a818c6c3bcd02725d2b295f9d44525a09316d20a8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.00555805468403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c24b39c37ea9595b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:25:34.000Z'}}, {'blockNum': '0x6b1e1c', 'uniqueId': '0xfb52921e1f76844b2083f91a818c6c3bcd02725d2b295f9d44525a09316d20a8:log:64', 'hash': '0xfb52921e1f76844b2083f91a818c6c3bcd02725d2b295f9d44525a09316d20a8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 224.00555805468403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c24b39c37ea9595b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:25:34.000Z'}}, {'blockNum': '0x6b1e28', 'uniqueId': '0xd4cffceaeda247e7adfbb7fba646774793f9b3bdbbd9ccd7f98a2ccdeb596dbc:log:20', 'hash': '0xd4cffceaeda247e7adfbb7fba646774793f9b3bdbbd9ccd7f98a2ccdeb596dbc', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 357.9245143263665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x136733516a1b492e10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:28:28.000Z'}}, {'blockNum': '0x6b1e28', 'uniqueId': '0xd4cffceaeda247e7adfbb7fba646774793f9b3bdbbd9ccd7f98a2ccdeb596dbc:log:24', 'hash': '0xd4cffceaeda247e7adfbb7fba646774793f9b3bdbbd9ccd7f98a2ccdeb596dbc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 357.9245143263665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x136733516a1b492e10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:28:28.000Z'}}, {'blockNum': '0x6b1e2f', 'uniqueId': '0xeac2148fdea37f3918f85c25d65a3dda6d64c323f3a5d4825d2d0496530bedd3:log:74', 'hash': '0xeac2148fdea37f3918f85c25d65a3dda6d64c323f3a5d4825d2d0496530bedd3', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 148.17169942117258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08084b9f9384f1bbfa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:31:09.000Z'}}, {'blockNum': '0x6b1e2f', 'uniqueId': '0xeac2148fdea37f3918f85c25d65a3dda6d64c323f3a5d4825d2d0496530bedd3:log:79', 'hash': '0xeac2148fdea37f3918f85c25d65a3dda6d64c323f3a5d4825d2d0496530bedd3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 148.17169942117258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08084b9f9384f1bbfa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:31:09.000Z'}}, {'blockNum': '0x6b1e35', 'uniqueId': '0xbef2eafeea0772fb2599f40db0dabab74b27c0f18c26c7e30b3451055eadfd0d:log:34', 'hash': '0xbef2eafeea0772fb2599f40db0dabab74b27c0f18c26c7e30b3451055eadfd0d', 'from': '0xe65c7e27c1c086f26ce0daa986c3d9c24ef3c2d8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 206.86882730998158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b36e1b666811463d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:33:49.000Z'}}, {'blockNum': '0x6b1e35', 'uniqueId': '0xbef2eafeea0772fb2599f40db0dabab74b27c0f18c26c7e30b3451055eadfd0d:log:39', 'hash': '0xbef2eafeea0772fb2599f40db0dabab74b27c0f18c26c7e30b3451055eadfd0d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 206.86882730998158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b36e1b666811463d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:33:49.000Z'}}, {'blockNum': '0x6b1e39', 'uniqueId': '0xac0090fa547e3e033d3285e44879d4514b4720e3ca45efb32647c2999895f58d:log:19', 'hash': '0xac0090fa547e3e033d3285e44879d4514b4720e3ca45efb32647c2999895f58d', 'from': '0x92578f6e362c4d28cfae1992af4d00b16beb22d4', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 672.0527390865221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x246e9af582dc6dc050', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:35:31.000Z'}}, {'blockNum': '0x6b1e39', 'uniqueId': '0xac0090fa547e3e033d3285e44879d4514b4720e3ca45efb32647c2999895f58d:log:22', 'hash': '0xac0090fa547e3e033d3285e44879d4514b4720e3ca45efb32647c2999895f58d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 672.0527390865221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x246e9af582dc6dc050', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:35:31.000Z'}}, {'blockNum': '0x6b1e39', 'uniqueId': '0xac0090fa547e3e033d3285e44879d4514b4720e3ca45efb32647c2999895f58d:log:24', 'hash': '0xac0090fa547e3e033d3285e44879d4514b4720e3ca45efb32647c2999895f58d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 672.0527390865221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x246e9af582dc6dc050', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:35:31.000Z'}}, {'blockNum': '0x6b1e39', 'uniqueId': '0x1e4bdecb7bb1c7582a74b968767891d25dba0eecdebb336ae2b7a9e7f5056b38:log:57', 'hash': '0x1e4bdecb7bb1c7582a74b968767891d25dba0eecdebb336ae2b7a9e7f5056b38', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 225.88384079157711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3ec49c6a82d81cfe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:35:31.000Z'}}, {'blockNum': '0x6b1e39', 'uniqueId': '0x1e4bdecb7bb1c7582a74b968767891d25dba0eecdebb336ae2b7a9e7f5056b38:log:60', 'hash': '0x1e4bdecb7bb1c7582a74b968767891d25dba0eecdebb336ae2b7a9e7f5056b38', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 225.88384079157711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3ec49c6a82d81cfe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:35:31.000Z'}}, {'blockNum': '0x6b1e43', 'uniqueId': '0xe15aa165692102aee7fd289d3fcc69c02bbec3ef7a49a649585ba3876bb95698:log:50', 'hash': '0xe15aa165692102aee7fd289d3fcc69c02bbec3ef7a49a649585ba3876bb95698', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 13.332226284072508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb905952b0f4499b9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:37:32.000Z'}}, {'blockNum': '0x6b1e43', 'uniqueId': '0xe15aa165692102aee7fd289d3fcc69c02bbec3ef7a49a649585ba3876bb95698:log:54', 'hash': '0xe15aa165692102aee7fd289d3fcc69c02bbec3ef7a49a649585ba3876bb95698', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 13.332226284072508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb905952b0f4499b9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:37:32.000Z'}}, {'blockNum': '0x6b1e53', 'uniqueId': '0x4b9fa28d9635aabe1bcde23bad1daf1d47cd5e27b239238af00b864715c704a1:log:59', 'hash': '0x4b9fa28d9635aabe1bcde23bad1daf1d47cd5e27b239238af00b864715c704a1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 623.8758894800167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21d204680bc3413c16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:40:05.000Z'}}, {'blockNum': '0x6b1e53', 'uniqueId': '0x4b9fa28d9635aabe1bcde23bad1daf1d47cd5e27b239238af00b864715c704a1:log:63', 'hash': '0x4b9fa28d9635aabe1bcde23bad1daf1d47cd5e27b239238af00b864715c704a1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 623.8758894800167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21d204680bc3413c16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:40:05.000Z'}}, {'blockNum': '0x6b1e55', 'uniqueId': '0x4a675ab1f365fcbbdca585f4e605456b5c554e0d9bb72bd32d3f85f2d487caa3:log:52', 'hash': '0x4a675ab1f365fcbbdca585f4e605456b5c554e0d9bb72bd32d3f85f2d487caa3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.97479142098982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c24464e20ca4e70d7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:40:36.000Z'}}, {'blockNum': '0x6b1e55', 'uniqueId': '0x4a675ab1f365fcbbdca585f4e605456b5c554e0d9bb72bd32d3f85f2d487caa3:log:56', 'hash': '0x4a675ab1f365fcbbdca585f4e605456b5c554e0d9bb72bd32d3f85f2d487caa3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 223.97479142098982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c24464e20ca4e70d7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:40:36.000Z'}}, {'blockNum': '0x6b1e5e', 'uniqueId': '0xff85a1b592ee99f2898dcc3c630cd622f3193355c03fc69dfac04b8ee11cf4b5:log:21', 'hash': '0xff85a1b592ee99f2898dcc3c630cd622f3193355c03fc69dfac04b8ee11cf4b5', 'from': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 294.34540706060505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff4dcf4367b1e6a1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:42:29.000Z'}}, {'blockNum': '0x6b1e5e', 'uniqueId': '0xff85a1b592ee99f2898dcc3c630cd622f3193355c03fc69dfac04b8ee11cf4b5:log:24', 'hash': '0xff85a1b592ee99f2898dcc3c630cd622f3193355c03fc69dfac04b8ee11cf4b5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 294.34540706060505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff4dcf4367b1e6a1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:42:29.000Z'}}, {'blockNum': '0x6b1e61', 'uniqueId': '0xe263818b25a43dad59dcee9be57edb663d1b79412754e3aa136c9683aea96970:log:30', 'hash': '0xe263818b25a43dad59dcee9be57edb663d1b79412754e3aa136c9683aea96970', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 559.9304320511291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e5a98814fda8ada51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:42:49.000Z'}}, {'blockNum': '0x6b1e61', 'uniqueId': '0xe263818b25a43dad59dcee9be57edb663d1b79412754e3aa136c9683aea96970:log:34', 'hash': '0xe263818b25a43dad59dcee9be57edb663d1b79412754e3aa136c9683aea96970', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 559.9304320511291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e5a98814fda8ada51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:42:49.000Z'}}, {'blockNum': '0x6b1e65', 'uniqueId': '0x5c239a33ec682756294aa96bebb41a29d504cdd6cad49bb9e218821c6b330eda:log:87', 'hash': '0x5c239a33ec682756294aa96bebb41a29d504cdd6cad49bb9e218821c6b330eda', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 262.11814829076724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e359ebb1be657c3e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:43:50.000Z'}}, {'blockNum': '0x6b1e65', 'uniqueId': '0x5c239a33ec682756294aa96bebb41a29d504cdd6cad49bb9e218821c6b330eda:log:89', 'hash': '0x5c239a33ec682756294aa96bebb41a29d504cdd6cad49bb9e218821c6b330eda', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 262.11814829076724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e359ebb1be657c3e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:43:50.000Z'}}, {'blockNum': '0x6b1e73', 'uniqueId': '0xa296775a19f2f3d680b22b6f44e033f398d8acaa88b6dc25985fc6c66b143dd7:log:39', 'hash': '0xa296775a19f2f3d680b22b6f44e033f398d8acaa88b6dc25985fc6c66b143dd7', 'from': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 272.1979023722994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ec181360a935c5567', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:26.000Z'}}, {'blockNum': '0x6b1e73', 'uniqueId': '0xa296775a19f2f3d680b22b6f44e033f398d8acaa88b6dc25985fc6c66b143dd7:log:42', 'hash': '0xa296775a19f2f3d680b22b6f44e033f398d8acaa88b6dc25985fc6c66b143dd7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 272.1979023722994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ec181360a935c5567', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:26.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0xf778c668ac7bda96333bd74565e09e1dfe033c9ff18ca55e7eb40b1a2c7d2dad:log:57', 'hash': '0xf778c668ac7bda96333bd74565e09e1dfe033c9ff18ca55e7eb40b1a2c7d2dad', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 933.8358472315997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x329f936361fd7296de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0xf778c668ac7bda96333bd74565e09e1dfe033c9ff18ca55e7eb40b1a2c7d2dad:log:61', 'hash': '0xf778c668ac7bda96333bd74565e09e1dfe033c9ff18ca55e7eb40b1a2c7d2dad', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 933.8358472315997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x329f936361fd7296de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0x1a25a407ce3cd9b18b49d09c931a4ea13ff41d2690a322a059ff6115284aedb4:log:72', 'hash': '0x1a25a407ce3cd9b18b49d09c931a4ea13ff41d2690a322a059ff6115284aedb4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.97426226941187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c24446cde16786a97', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0x1a25a407ce3cd9b18b49d09c931a4ea13ff41d2690a322a059ff6115284aedb4:log:76', 'hash': '0x1a25a407ce3cd9b18b49d09c931a4ea13ff41d2690a322a059ff6115284aedb4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'value': 223.97426226941187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c24446cde16786a97', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0x7106444dc734f6cf0009aac647445b2c5defc93e37d79778022237fde01b97cc:log:92', 'hash': '0x7106444dc734f6cf0009aac647445b2c5defc93e37d79778022237fde01b97cc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 80.43896991591006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x045c50a0f46026f440', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0x7106444dc734f6cf0009aac647445b2c5defc93e37d79778022237fde01b97cc:log:96', 'hash': '0x7106444dc734f6cf0009aac647445b2c5defc93e37d79778022237fde01b97cc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 80.43896991591006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x045c50a0f46026f440', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0xec72fdad2a5162046ebba3bc89cad53b698eaac9e9f2a23a4ee0f400f659b93a:log:105', 'hash': '0xec72fdad2a5162046ebba3bc89cad53b698eaac9e9f2a23a4ee0f400f659b93a', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 80.11769634839047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0457db3c58dc6cbf81', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0xec72fdad2a5162046ebba3bc89cad53b698eaac9e9f2a23a4ee0f400f659b93a:log:109', 'hash': '0xec72fdad2a5162046ebba3bc89cad53b698eaac9e9f2a23a4ee0f400f659b93a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 80.11769634839047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0457db3c58dc6cbf81', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0xe031b57e6f5b269f3156eae7c21750e069dd3dc5c56f6d83924db765b193d995:log:121', 'hash': '0xe031b57e6f5b269f3156eae7c21750e069dd3dc5c56f6d83924db765b193d995', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2140.8906250573023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x740ed36890a082327a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0xe031b57e6f5b269f3156eae7c21750e069dd3dc5c56f6d83924db765b193d995:log:125', 'hash': '0xe031b57e6f5b269f3156eae7c21750e069dd3dc5c56f6d83924db765b193d995', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 2140.8906250573023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x740ed36890a082327a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e79', 'uniqueId': '0x485fc60aa116587ed42166d3f471a90c8fdb29fec70ab1bfeb7ab01a5d06443d:log:31', 'hash': '0x485fc60aa116587ed42166d3f471a90c8fdb29fec70ab1bfeb7ab01a5d06443d', 'from': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 226.8270275202719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c4bdb7bbfa38f61f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:43.000Z'}}, {'blockNum': '0x6b1e79', 'uniqueId': '0x485fc60aa116587ed42166d3f471a90c8fdb29fec70ab1bfeb7ab01a5d06443d:log:34', 'hash': '0x485fc60aa116587ed42166d3f471a90c8fdb29fec70ab1bfeb7ab01a5d06443d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 226.8270275202719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c4bdb7bbfa38f61f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:43.000Z'}}, {'blockNum': '0x6b1e7a', 'uniqueId': '0x80e65598707b364bd84f190f57ab18965454e5b0a3c98467cd24bdf9c20d2b73:log:15', 'hash': '0x80e65598707b364bd84f190f57ab18965454e5b0a3c98467cd24bdf9c20d2b73', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 966.8357560978668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34698a9da7d790878f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:48.000Z'}}, {'blockNum': '0x6b1e7a', 'uniqueId': '0x80e65598707b364bd84f190f57ab18965454e5b0a3c98467cd24bdf9c20d2b73:log:19', 'hash': '0x80e65598707b364bd84f190f57ab18965454e5b0a3c98467cd24bdf9c20d2b73', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 966.8357560978668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34698a9da7d790878f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:48.000Z'}}, {'blockNum': '0x6b1e7a', 'uniqueId': '0xd5bf28c68f38a9dedb39d99aaa7913d4f369e5351eee5a3935cc6dd4a1813344:log:34', 'hash': '0xd5bf28c68f38a9dedb39d99aaa7913d4f369e5351eee5a3935cc6dd4a1813344', 'from': '0x7e4b0abad3407b87a381c1c05af78d7ad42975e7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 268.1557747815083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e8968b069e1740fa2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:48.000Z'}}, {'blockNum': '0x6b1e7a', 'uniqueId': '0xd5bf28c68f38a9dedb39d99aaa7913d4f369e5351eee5a3935cc6dd4a1813344:log:37', 'hash': '0xd5bf28c68f38a9dedb39d99aaa7913d4f369e5351eee5a3935cc6dd4a1813344', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 268.1557747815083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e8968b069e1740fa2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:48.000Z'}}, {'blockNum': '0x6b1e7a', 'uniqueId': '0xc56562c81e91ff80db3ba802b1b37a5f70aeea3126e28885cd250bb4bcc21afe:log:94', 'hash': '0xc56562c81e91ff80db3ba802b1b37a5f70aeea3126e28885cd250bb4bcc21afe', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 380.04296543000623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x149a27d7813194fa08', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:48.000Z'}}, {'blockNum': '0x6b1e7a', 'uniqueId': '0xc56562c81e91ff80db3ba802b1b37a5f70aeea3126e28885cd250bb4bcc21afe:log:98', 'hash': '0xc56562c81e91ff80db3ba802b1b37a5f70aeea3126e28885cd250bb4bcc21afe', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 380.04296543000623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x149a27d7813194fa08', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:48.000Z'}}, {'blockNum': '0x6b1e7e', 'uniqueId': '0xe5fb48254a8f85f414b3d30fa6c4d29f558fe7a2777180fbf58f144077bd0d14:log:29', 'hash': '0xe5fb48254a8f85f414b3d30fa6c4d29f558fe7a2777180fbf58f144077bd0d14', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:49:40.000Z'}}, {'blockNum': '0x6b1e7e', 'uniqueId': '0xe5fb48254a8f85f414b3d30fa6c4d29f558fe7a2777180fbf58f144077bd0d14:log:32', 'hash': '0xe5fb48254a8f85f414b3d30fa6c4d29f558fe7a2777180fbf58f144077bd0d14', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:49:40.000Z'}}, {'blockNum': '0x6b1e7e', 'uniqueId': '0xe5fb48254a8f85f414b3d30fa6c4d29f558fe7a2777180fbf58f144077bd0d14:log:34', 'hash': '0xe5fb48254a8f85f414b3d30fa6c4d29f558fe7a2777180fbf58f144077bd0d14', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:49:40.000Z'}}, {'blockNum': '0x6b1e85', 'uniqueId': '0xb77251070b0bfd75f12d49b0a6b48c9ae24e29c033cbc60086b291c0ae1051c1:log:63', 'hash': '0xb77251070b0bfd75f12d49b0a6b48c9ae24e29c033cbc60086b291c0ae1051c1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.9530302986231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c23f8fe80a9b94a0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:51:14.000Z'}}, {'blockNum': '0x6b1e85', 'uniqueId': '0xb77251070b0bfd75f12d49b0a6b48c9ae24e29c033cbc60086b291c0ae1051c1:log:67', 'hash': '0xb77251070b0bfd75f12d49b0a6b48c9ae24e29c033cbc60086b291c0ae1051c1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'value': 223.9530302986231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c23f8fe80a9b94a0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:51:14.000Z'}}, {'blockNum': '0x6b1e87', 'uniqueId': '0x2b00a24b503bb4e5630233250e8a9138a676d319e09791edd8afda20d222dcb4:log:66', 'hash': '0x2b00a24b503bb4e5630233250e8a9138a676d319e09791edd8afda20d222dcb4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 14.647081925061544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcb44e3684356855e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:51:35.000Z'}}, {'blockNum': '0x6b1e87', 'uniqueId': '0x2b00a24b503bb4e5630233250e8a9138a676d319e09791edd8afda20d222dcb4:log:70', 'hash': '0x2b00a24b503bb4e5630233250e8a9138a676d319e09791edd8afda20d222dcb4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 14.647081925061544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcb44e3684356855e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:51:35.000Z'}}, {'blockNum': '0x6b1e8e', 'uniqueId': '0x69e7fdeb9d05970d30052d555d0fe34c30ccf7bdb12ddde2fbea19b267364ccd:log:23', 'hash': '0x69e7fdeb9d05970d30052d555d0fe34c30ccf7bdb12ddde2fbea19b267364ccd', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 645.7631897536954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2301c3b7ae543063e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:53:52.000Z'}}, {'blockNum': '0x6b1e8e', 'uniqueId': '0x69e7fdeb9d05970d30052d555d0fe34c30ccf7bdb12ddde2fbea19b267364ccd:log:27', 'hash': '0x69e7fdeb9d05970d30052d555d0fe34c30ccf7bdb12ddde2fbea19b267364ccd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 645.7631897536954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2301c3b7ae543063e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:53:52.000Z'}}, {'blockNum': '0x6b1e99', 'uniqueId': '0xfd9233c7e7adf00c33bf717639789cf5bc15d1d89c8e538943a2feece7679529:log:79', 'hash': '0xfd9233c7e7adf00c33bf717639789cf5bc15d1d89c8e538943a2feece7679529', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 206.0470573312259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b2b7a32f56a442a8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:56:15.000Z'}}, {'blockNum': '0x6b1e99', 'uniqueId': '0xfd9233c7e7adf00c33bf717639789cf5bc15d1d89c8e538943a2feece7679529:log:83', 'hash': '0xfd9233c7e7adf00c33bf717639789cf5bc15d1d89c8e538943a2feece7679529', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 206.0470573312259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b2b7a32f56a442a8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:56:15.000Z'}}, {'blockNum': '0x6b1e9d', 'uniqueId': '0x6422abb799a0a5b6195489267bd6de4c3c8841883350fc741317d21c96690365:log:34', 'hash': '0x6422abb799a0a5b6195489267bd6de4c3c8841883350fc741317d21c96690365', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1334.6380452533201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4859d2d6f145de92c0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:57:20.000Z'}}, {'blockNum': '0x6b1e9d', 'uniqueId': '0x6422abb799a0a5b6195489267bd6de4c3c8841883350fc741317d21c96690365:log:38', 'hash': '0x6422abb799a0a5b6195489267bd6de4c3c8841883350fc741317d21c96690365', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1334.6380452533201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4859d2d6f145de92c0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:57:20.000Z'}}, {'blockNum': '0x6b1ea9', 'uniqueId': '0xaf7f24f1e77a9d1f45b426f8458442ac868b774362d195e5ed295248f6a056cc:log:75', 'hash': '0xaf7f24f1e77a9d1f45b426f8458442ac868b774362d195e5ed295248f6a056cc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1599.254271295994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56b21c86880be92030', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:59:58.000Z'}}, {'blockNum': '0x6b1ea9', 'uniqueId': '0xaf7f24f1e77a9d1f45b426f8458442ac868b774362d195e5ed295248f6a056cc:log:78', 'hash': '0xaf7f24f1e77a9d1f45b426f8458442ac868b774362d195e5ed295248f6a056cc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x848d0146890ef4ffc6eb49fba58c7e89a6af8111', 'value': 1599.254271295994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56b21c86880be92030', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:59:58.000Z'}}, {'blockNum': '0x6b1eb0', 'uniqueId': '0xe128e8d43f9c98a3c2d5fd242812bb7cb8b2d9311fad3f6e5038195735b8b25e:log:97', 'hash': '0xe128e8d43f9c98a3c2d5fd242812bb7cb8b2d9311fad3f6e5038195735b8b25e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c19375647fffd9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:21.000Z'}}, {'blockNum': '0x6b1eb0', 'uniqueId': '0xe128e8d43f9c98a3c2d5fd242812bb7cb8b2d9311fad3f6e5038195735b8b25e:log:100', 'hash': '0xe128e8d43f9c98a3c2d5fd242812bb7cb8b2d9311fad3f6e5038195735b8b25e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c19375647fffd9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:21.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0x75bd6f9a2749eb168ffff5bc2a66b1aef2d3e84a5cbdcd5114e41c4df6ee23ea:log:20', 'hash': '0x75bd6f9a2749eb168ffff5bc2a66b1aef2d3e84a5cbdcd5114e41c4df6ee23ea', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.41556016164088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1c838442b98481be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0x75bd6f9a2749eb168ffff5bc2a66b1aef2d3e84a5cbdcd5114e41c4df6ee23ea:log:24', 'hash': '0x75bd6f9a2749eb168ffff5bc2a66b1aef2d3e84a5cbdcd5114e41c4df6ee23ea', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 223.41556016164088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1c838442b98481be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0xa49371c358f018e8d000dc6bea1034db05584b0bf7acef34796586d69e8954d1:log:40', 'hash': '0xa49371c358f018e8d000dc6bea1034db05584b0bf7acef34796586d69e8954d1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 631.0592947316215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2235b4fd101ed5fff1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0xa49371c358f018e8d000dc6bea1034db05584b0bf7acef34796586d69e8954d1:log:44', 'hash': '0xa49371c358f018e8d000dc6bea1034db05584b0bf7acef34796586d69e8954d1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 631.0592947316215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2235b4fd101ed5fff1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0xb2fec67d82499c64b5c4b8768cc72997f6b70d3cc0442a70897644c89b775142:log:55', 'hash': '0xb2fec67d82499c64b5c4b8768cc72997f6b70d3cc0442a70897644c89b775142', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.39270194171968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1c324ed4aaead58b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0xb2fec67d82499c64b5c4b8768cc72997f6b70d3cc0442a70897644c89b775142:log:59', 'hash': '0xb2fec67d82499c64b5c4b8768cc72997f6b70d3cc0442a70897644c89b775142', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'value': 223.39270194171968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1c324ed4aaead58b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0x9248291637e535570f5c253a2472dc049edc852bc9bea15adef84ceaa0d8f3da:log:73', 'hash': '0x9248291637e535570f5c253a2472dc049edc852bc9bea15adef84ceaa0d8f3da', 'from': '0x848d0146890ef4ffc6eb49fba58c7e89a6af8111', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56ae952c22899c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0x9248291637e535570f5c253a2472dc049edc852bc9bea15adef84ceaa0d8f3da:log:76', 'hash': '0x9248291637e535570f5c253a2472dc049edc852bc9bea15adef84ceaa0d8f3da', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 1599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56ae952c22899c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb4', 'uniqueId': '0x1e00e08659b511a9f867ca78663bf3e320521b9ce28f801b47fa2988077f9f0b:log:43', 'hash': '0x1e00e08659b511a9f867ca78663bf3e320521b9ce28f801b47fa2988077f9f0b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 279.16570598802434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f2233d283475441a0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:03:01.000Z'}}, {'blockNum': '0x6b1eb4', 'uniqueId': '0x1e00e08659b511a9f867ca78663bf3e320521b9ce28f801b47fa2988077f9f0b:log:47', 'hash': '0x1e00e08659b511a9f867ca78663bf3e320521b9ce28f801b47fa2988077f9f0b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 279.16570598802434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f2233d283475441a0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:03:01.000Z'}}, {'blockNum': '0x6b1eb4', 'uniqueId': '0xa373f70551ad82785c1443533c78137475370ea5f2ff28af8510977f340dea46:log:57', 'hash': '0xa373f70551ad82785c1443533c78137475370ea5f2ff28af8510977f340dea46', 'from': '0x6431750a2e43ac6c6b3d84444875576b0aa7bd5e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 95.58403634558108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052e7eb6a160631050', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:03:01.000Z'}}, {'blockNum': '0x6b1eb4', 'uniqueId': '0xa373f70551ad82785c1443533c78137475370ea5f2ff28af8510977f340dea46:log:61', 'hash': '0xa373f70551ad82785c1443533c78137475370ea5f2ff28af8510977f340dea46', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 95.58403634558108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052e7eb6a160631050', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:03:01.000Z'}}, {'blockNum': '0x6b1ebd', 'uniqueId': '0xb9cf759c36eeb17e15d4456c2b8e6b82866a75f9a8d8199c75e7d3376af840bf:log:99', 'hash': '0xb9cf759c36eeb17e15d4456c2b8e6b82866a75f9a8d8199c75e7d3376af840bf', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 335.0704830716012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x122a097d12f9538702', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:07:56.000Z'}}, {'blockNum': '0x6b1ebd', 'uniqueId': '0xb9cf759c36eeb17e15d4456c2b8e6b82866a75f9a8d8199c75e7d3376af840bf:log:103', 'hash': '0xb9cf759c36eeb17e15d4456c2b8e6b82866a75f9a8d8199c75e7d3376af840bf', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 335.0704830716012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x122a097d12f9538702', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:07:56.000Z'}}, {'blockNum': '0x6b1ec3', 'uniqueId': '0x4b43a7129affb0a574c44a62482f4f05355a265608d4c6c043bdfaa94950de6e:log:48', 'hash': '0x4b43a7129affb0a574c44a62482f4f05355a265608d4c6c043bdfaa94950de6e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.37285346631748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1bebcabf5d3c7069', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:09:19.000Z'}}, {'blockNum': '0x6b1ec3', 'uniqueId': '0x4b43a7129affb0a574c44a62482f4f05355a265608d4c6c043bdfaa94950de6e:log:52', 'hash': '0x4b43a7129affb0a574c44a62482f4f05355a265608d4c6c043bdfaa94950de6e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 223.37285346631748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1bebcabf5d3c7069', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:09:19.000Z'}}, {'blockNum': '0x6b1ec8', 'uniqueId': '0x65527e642e356709778df51ce75b8b73ec3400300aab774db2cae60bf27f3640:log:12', 'hash': '0x65527e642e356709778df51ce75b8b73ec3400300aab774db2cae60bf27f3640', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 915.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x31a280a4f17ba80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:11:48.000Z'}}, {'blockNum': '0x6b1eca', 'uniqueId': '0x9f3b70e5abb6eb99a419babadcfa43b5b209327f9da0e789e01959b86c877fa0:log:8', 'hash': '0x9f3b70e5abb6eb99a419babadcfa43b5b209327f9da0e789e01959b86c877fa0', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x319a2d041f4a6c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:12:52.000Z'}}, {'blockNum': '0x6b1eca', 'uniqueId': '0x9f3b70e5abb6eb99a419babadcfa43b5b209327f9da0e789e01959b86c877fa0:log:11', 'hash': '0x9f3b70e5abb6eb99a419babadcfa43b5b209327f9da0e789e01959b86c877fa0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x319a2d041f4a6c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:12:52.000Z'}}, {'blockNum': '0x6b1ecb', 'uniqueId': '0x50d0501184aa1dd67b84503f20b8cd98c1135310a6cf95b451e8b1be6bb5589d:log:75', 'hash': '0x50d0501184aa1dd67b84503f20b8cd98c1135310a6cf95b451e8b1be6bb5589d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 335.04807817077193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1229b9e3ef7e2b66f4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:04.000Z'}}, {'blockNum': '0x6b1ecb', 'uniqueId': '0x50d0501184aa1dd67b84503f20b8cd98c1135310a6cf95b451e8b1be6bb5589d:log:79', 'hash': '0x50d0501184aa1dd67b84503f20b8cd98c1135310a6cf95b451e8b1be6bb5589d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 335.04807817077193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1229b9e3ef7e2b66f4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:04.000Z'}}, {'blockNum': '0x6b1ecb', 'uniqueId': '0x6e0d21a4ecc24ef8bcb99dd19b64edf7190ff9a75a7c974e795378ce8bda7e0e:log:93', 'hash': '0x6e0d21a4ecc24ef8bcb99dd19b64edf7190ff9a75a7c974e795378ce8bda7e0e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 335.0346367483116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12298a2308732508c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:04.000Z'}}, {'blockNum': '0x6b1ecb', 'uniqueId': '0x6e0d21a4ecc24ef8bcb99dd19b64edf7190ff9a75a7c974e795378ce8bda7e0e:log:97', 'hash': '0x6e0d21a4ecc24ef8bcb99dd19b64edf7190ff9a75a7c974e795378ce8bda7e0e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 335.0346367483116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12298a2308732508c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:04.000Z'}}, {'blockNum': '0x6b1ecb', 'uniqueId': '0x9592f7bc0729b67e4b4914c0b990ea39601b5b8af53992ff4eb633c6eda1d1e2:log:108', 'hash': '0x9592f7bc0729b67e4b4914c0b990ea39601b5b8af53992ff4eb633c6eda1d1e2', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 528.8190807062653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1caad6c819499126ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:04.000Z'}}, {'blockNum': '0x6b1ecb', 'uniqueId': '0x9592f7bc0729b67e4b4914c0b990ea39601b5b8af53992ff4eb633c6eda1d1e2:log:112', 'hash': '0x9592f7bc0729b67e4b4914c0b990ea39601b5b8af53992ff4eb633c6eda1d1e2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 528.8190807062653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1caad6c819499126ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:04.000Z'}}, {'blockNum': '0x6b1ecc', 'uniqueId': '0x5eff47ef1d4f43dee07e6be1a5227aa9520986d0ab0512b4ccc87f3a2ded41b8:log:54', 'hash': '0x5eff47ef1d4f43dee07e6be1a5227aa9520986d0ab0512b4ccc87f3a2ded41b8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1474.0860765150014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fe90dc48c31f0f7f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:23.000Z'}}, {'blockNum': '0x6b1ecc', 'uniqueId': '0x5eff47ef1d4f43dee07e6be1a5227aa9520986d0ab0512b4ccc87f3a2ded41b8:log:58', 'hash': '0x5eff47ef1d4f43dee07e6be1a5227aa9520986d0ab0512b4ccc87f3a2ded41b8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 1474.0860765150014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fe90dc48c31f0f7f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:23.000Z'}}, {'blockNum': '0x6b1ece', 'uniqueId': '0x35a09c5892b4f9091350240d5afd12ad76e238884fa7bfbbe0e53b3d2c642414:log:56', 'hash': '0x35a09c5892b4f9091350240d5afd12ad76e238884fa7bfbbe0e53b3d2c642414', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 357.31502014802965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x135ebdf5b042da0559', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:14:49.000Z'}}, {'blockNum': '0x6b1ece', 'uniqueId': '0x35a09c5892b4f9091350240d5afd12ad76e238884fa7bfbbe0e53b3d2c642414:log:60', 'hash': '0x35a09c5892b4f9091350240d5afd12ad76e238884fa7bfbbe0e53b3d2c642414', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 357.31502014802965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x135ebdf5b042da0559', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:14:49.000Z'}}, {'blockNum': '0x6b1ecf', 'uniqueId': '0x6c75fd410051294c50f669b9862628c604c3a99c0cab36745cd0057b84e9052a:log:51', 'hash': '0x6c75fd410051294c50f669b9862628c604c3a99c0cab36745cd0057b84e9052a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 669.9244605611094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x245111cb77ea1d183c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:05.000Z'}}, {'blockNum': '0x6b1ecf', 'uniqueId': '0x6c75fd410051294c50f669b9862628c604c3a99c0cab36745cd0057b84e9052a:log:55', 'hash': '0x6c75fd410051294c50f669b9862628c604c3a99c0cab36745cd0057b84e9052a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 669.9244605611094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x245111cb77ea1d183c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:05.000Z'}}, {'blockNum': '0x6b1ecf', 'uniqueId': '0x78ed3a7385e8593f51f0e71b7ddb78e075d98c627d85931ffb912b3d3da3aeb4:log:68', 'hash': '0x78ed3a7385e8593f51f0e71b7ddb78e075d98c627d85931ffb912b3d3da3aeb4', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 798.3547476566652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b4765d52106263185', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:05.000Z'}}, {'blockNum': '0x6b1ecf', 'uniqueId': '0x78ed3a7385e8593f51f0e71b7ddb78e075d98c627d85931ffb912b3d3da3aeb4:log:72', 'hash': '0x78ed3a7385e8593f51f0e71b7ddb78e075d98c627d85931ffb912b3d3da3aeb4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 798.3547476566652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b4765d52106263185', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:05.000Z'}}, {'blockNum': '0x6b1ecf', 'uniqueId': '0x99b82f80f3244b4a2b1e3146c04b57da0cd00637ecbe588704dd35f892e4c74c:log:88', 'hash': '0x99b82f80f3244b4a2b1e3146c04b57da0cd00637ecbe588704dd35f892e4c74c', 'from': '0xe88d6d63389d5c91e6348e379913f330739ad2c4', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.39466140836518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0920f2045b95c96a2c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:05.000Z'}}, {'blockNum': '0x6b1ecf', 'uniqueId': '0x99b82f80f3244b4a2b1e3146c04b57da0cd00637ecbe588704dd35f892e4c74c:log:92', 'hash': '0x99b82f80f3244b4a2b1e3146c04b57da0cd00637ecbe588704dd35f892e4c74c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 168.39466140836518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0920f2045b95c96a2c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:05.000Z'}}, {'blockNum': '0x6b1ed2', 'uniqueId': '0xa906289aeedd444af680181e35f4992206d932451be7c41be048d4215126b671:log:55', 'hash': '0xa906289aeedd444af680181e35f4992206d932451be7c41be048d4215126b671', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 0.11818337693393681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a3df27b880dea7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:43.000Z'}}, {'blockNum': '0x6b1ed2', 'uniqueId': '0xa906289aeedd444af680181e35f4992206d932451be7c41be048d4215126b671:log:59', 'hash': '0xa906289aeedd444af680181e35f4992206d932451be7c41be048d4215126b671', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 0.11818337693393681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a3df27b880dea7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:43.000Z'}}, {'blockNum': '0x6b1eda', 'uniqueId': '0xe7db5181554e3c96f8a34b70e954f18d30940cbf5acbe571dc5117702b477554:log:17', 'hash': '0xe7db5181554e3c96f8a34b70e954f18d30940cbf5acbe571dc5117702b477554', 'from': '0x599485dc0f3d8b308b973b2db5cd44bae46d31c4', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 359.1065316927779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13779aaff2569481db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:19:24.000Z'}}, {'blockNum': '0x6b1eda', 'uniqueId': '0xe7db5181554e3c96f8a34b70e954f18d30940cbf5acbe571dc5117702b477554:log:21', 'hash': '0xe7db5181554e3c96f8a34b70e954f18d30940cbf5acbe571dc5117702b477554', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 359.1065316927779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13779aaff2569481db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:19:24.000Z'}}, {'blockNum': '0x6b1eda', 'uniqueId': '0x6d41b69b4d78a5011aa7a6fc9ffada9b22c3a52d7a6aa5ce8b60149285111853:log:33', 'hash': '0x6d41b69b4d78a5011aa7a6fc9ffada9b22c3a52d7a6aa5ce8b60149285111853', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 664.2372103338861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2402249f84e3b4effc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:19:24.000Z'}}, {'blockNum': '0x6b1eda', 'uniqueId': '0x6d41b69b4d78a5011aa7a6fc9ffada9b22c3a52d7a6aa5ce8b60149285111853:log:37', 'hash': '0x6d41b69b4d78a5011aa7a6fc9ffada9b22c3a52d7a6aa5ce8b60149285111853', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 664.2372103338861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2402249f84e3b4effc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:19:24.000Z'}}, {'blockNum': '0x6b1eda', 'uniqueId': '0x6842a023a4487901bfe6bfd837e3df1f7ca034eb5eb4e0f0d51e2e3f3ae79974:log:47', 'hash': '0x6842a023a4487901bfe6bfd837e3df1f7ca034eb5eb4e0f0d51e2e3f3ae79974', 'from': '0x599485dc0f3d8b308b973b2db5cd44bae46d31c4', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 792.2807000552114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2af31a7b0464ad5843', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:19:24.000Z'}}, {'blockNum': '0x6b1eda', 'uniqueId': '0x6842a023a4487901bfe6bfd837e3df1f7ca034eb5eb4e0f0d51e2e3f3ae79974:log:51', 'hash': '0x6842a023a4487901bfe6bfd837e3df1f7ca034eb5eb4e0f0d51e2e3f3ae79974', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 792.2807000552114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2af31a7b0464ad5843', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:19:24.000Z'}}, {'blockNum': '0x6b1ee4', 'uniqueId': '0x6daf7bcd3a3cc8d3d0b73ffd0d7b80a0925e895de91dcb594e77927a02256b63:log:124', 'hash': '0x6daf7bcd3a3cc8d3d0b73ffd0d7b80a0925e895de91dcb594e77927a02256b63', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 675.2430225614543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x249ae11f6dc48e657f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:22:09.000Z'}}, {'blockNum': '0x6b1ee4', 'uniqueId': '0x6daf7bcd3a3cc8d3d0b73ffd0d7b80a0925e895de91dcb594e77927a02256b63:log:128', 'hash': '0x6daf7bcd3a3cc8d3d0b73ffd0d7b80a0925e895de91dcb594e77927a02256b63', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 675.2430225614543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x249ae11f6dc48e657f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:22:09.000Z'}}, {'blockNum': '0x6b1ee5', 'uniqueId': '0xc9434ced67a47f0f60e882dac5df90068e4311a094171dc2a043d2e57240d3e2:log:74', 'hash': '0xc9434ced67a47f0f60e882dac5df90068e4311a094171dc2a043d2e57240d3e2', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 87.27346388084965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04bb29a10147ed6de2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:22:32.000Z'}}, {'blockNum': '0x6b1ee5', 'uniqueId': '0xc9434ced67a47f0f60e882dac5df90068e4311a094171dc2a043d2e57240d3e2:log:78', 'hash': '0xc9434ced67a47f0f60e882dac5df90068e4311a094171dc2a043d2e57240d3e2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 87.27346388084965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04bb29a10147ed6de2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:22:32.000Z'}}, {'blockNum': '0x6b1eeb', 'uniqueId': '0x9410643abbb9e98c9356440748a1f69f87ef3e64c9974652fa95c0abc0705dc8:log:78', 'hash': '0x9410643abbb9e98c9356440748a1f69f87ef3e64c9974652fa95c0abc0705dc8', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 529.7284459325294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cb7757ef43c230cb3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:25.000Z'}}, {'blockNum': '0x6b1eeb', 'uniqueId': '0x9410643abbb9e98c9356440748a1f69f87ef3e64c9974652fa95c0abc0705dc8:log:82', 'hash': '0x9410643abbb9e98c9356440748a1f69f87ef3e64c9974652fa95c0abc0705dc8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 529.7284459325294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cb7757ef43c230cb3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:25.000Z'}}, {'blockNum': '0x6b1eeb', 'uniqueId': '0xd35d586e0393badf097debdaf6496b0e00f1416043c5746554e390b710b77cd1:log:93', 'hash': '0xd35d586e0393badf097debdaf6496b0e00f1416043c5746554e390b710b77cd1', 'from': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1116.8519075480497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c8b6f0c9476eaba89', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:25.000Z'}}, {'blockNum': '0x6b1eeb', 'uniqueId': '0xd35d586e0393badf097debdaf6496b0e00f1416043c5746554e390b710b77cd1:log:97', 'hash': '0xd35d586e0393badf097debdaf6496b0e00f1416043c5746554e390b710b77cd1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1116.8519075480497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c8b6f0c9476eaba89', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:25.000Z'}}, {'blockNum': '0x6b1eec', 'uniqueId': '0x8f21fa5197a5e56f1478d25963120c053111e4a291c3cd5e4b594794c16da6ff:log:52', 'hash': '0x8f21fa5197a5e56f1478d25963120c053111e4a291c3cd5e4b594794c16da6ff', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.39719149842284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1c42420f0b689b16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:50.000Z'}}, {'blockNum': '0x6b1eec', 'uniqueId': '0x8f21fa5197a5e56f1478d25963120c053111e4a291c3cd5e4b594794c16da6ff:log:56', 'hash': '0x8f21fa5197a5e56f1478d25963120c053111e4a291c3cd5e4b594794c16da6ff', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'value': 223.39719149842284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1c42420f0b689b16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:50.000Z'}}, {'blockNum': '0x6b1eed', 'uniqueId': '0x9e13e78b52b43e7dfa4212c8c3b8260372e1c425644a2eeab477294fd682bd32:log:29', 'hash': '0x9e13e78b52b43e7dfa4212c8c3b8260372e1c425644a2eeab477294fd682bd32', 'from': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 334.9817693015157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1228ce505ec8b2c5ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:52.000Z'}}, {'blockNum': '0x6b1eed', 'uniqueId': '0x9e13e78b52b43e7dfa4212c8c3b8260372e1c425644a2eeab477294fd682bd32:log:33', 'hash': '0x9e13e78b52b43e7dfa4212c8c3b8260372e1c425644a2eeab477294fd682bd32', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 334.9817693015157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1228ce505ec8b2c5ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:52.000Z'}}, {'blockNum': '0x6b1efb', 'uniqueId': '0xc4acce900c2b595f1b95a32dbae40a5975d1f5f333cd52cc1616e2e50e6a9661:log:54', 'hash': '0xc4acce900c2b595f1b95a32dbae40a5975d1f5f333cd52cc1616e2e50e6a9661', 'from': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 227.01992972433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c4e88cf47f8d53c4b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:28:04.000Z'}}, {'blockNum': '0x6b1efb', 'uniqueId': '0xc4acce900c2b595f1b95a32dbae40a5975d1f5f333cd52cc1616e2e50e6a9661:log:58', 'hash': '0xc4acce900c2b595f1b95a32dbae40a5975d1f5f333cd52cc1616e2e50e6a9661', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 227.01992972433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c4e88cf47f8d53c4b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:28:04.000Z'}}, {'blockNum': '0x6b1efb', 'uniqueId': '0x26ecbefc49fd711911590e7bee00d0f58b500b03b265cf560025c4748f8f4a6b:log:69', 'hash': '0x26ecbefc49fd711911590e7bee00d0f58b500b03b265cf560025c4748f8f4a6b', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1035.5143087202714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3822a5d96421f49fd3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:28:04.000Z'}}, {'blockNum': '0x6b1efb', 'uniqueId': '0x26ecbefc49fd711911590e7bee00d0f58b500b03b265cf560025c4748f8f4a6b:log:73', 'hash': '0x26ecbefc49fd711911590e7bee00d0f58b500b03b265cf560025c4748f8f4a6b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1035.5143087202714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3822a5d96421f49fd3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:28:04.000Z'}}, {'blockNum': '0x6b1efb', 'uniqueId': '0x3b69d5bbc8aafbfb054ccf44a76ec5a005d46752da4ca31141da5a758dae496a:log:83', 'hash': '0x3b69d5bbc8aafbfb054ccf44a76ec5a005d46752da4ca31141da5a758dae496a', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 641.440112464893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22c5c50fca9c8ef369', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:28:04.000Z'}}, {'blockNum': '0x6b1efb', 'uniqueId': '0x3b69d5bbc8aafbfb054ccf44a76ec5a005d46752da4ca31141da5a758dae496a:log:87', 'hash': '0x3b69d5bbc8aafbfb054ccf44a76ec5a005d46752da4ca31141da5a758dae496a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 641.440112464893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22c5c50fca9c8ef369', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:28:04.000Z'}}, {'blockNum': '0x6b1f01', 'uniqueId': '0x8f36b093471e17d7303838c6c0b2b0d520e41f4280772314b41513d5297312fb:log:94', 'hash': '0x8f36b093471e17d7303838c6c0b2b0d520e41f4280772314b41513d5297312fb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 59.110339266086235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0334521c61ebe4e657', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:29:29.000Z'}}, {'blockNum': '0x6b1f01', 'uniqueId': '0x8f36b093471e17d7303838c6c0b2b0d520e41f4280772314b41513d5297312fb:log:98', 'hash': '0x8f36b093471e17d7303838c6c0b2b0d520e41f4280772314b41513d5297312fb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 59.110339266086235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0334521c61ebe4e657', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:29:29.000Z'}}, {'blockNum': '0x6b1f05', 'uniqueId': '0xdfa22779a535d0633910d3d36e1f5d80710b54f16a4c1551edecc02f0bc8a4ab:log:56', 'hash': '0xdfa22779a535d0633910d3d36e1f5d80710b54f16a4c1551edecc02f0bc8a4ab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.44953383379203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1cfc3722adcd8ffc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:30:39.000Z'}}, {'blockNum': '0x6b1f05', 'uniqueId': '0xdfa22779a535d0633910d3d36e1f5d80710b54f16a4c1551edecc02f0bc8a4ab:log:60', 'hash': '0xdfa22779a535d0633910d3d36e1f5d80710b54f16a4c1551edecc02f0bc8a4ab', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'value': 223.44953383379203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1cfc3722adcd8ffc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:30:39.000Z'}}, {'blockNum': '0x6b1f13', 'uniqueId': '0xf6065ba870d85ba9a59d662f587431b65943c2a79b5fde2b3f81b1ce455d1dac:log:88', 'hash': '0xf6065ba870d85ba9a59d662f587431b65943c2a79b5fde2b3f81b1ce455d1dac', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 279.3035096414199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f241d663498b97064', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:35:27.000Z'}}, {'blockNum': '0x6b1f13', 'uniqueId': '0xf6065ba870d85ba9a59d662f587431b65943c2a79b5fde2b3f81b1ce455d1dac:log:92', 'hash': '0xf6065ba870d85ba9a59d662f587431b65943c2a79b5fde2b3f81b1ce455d1dac', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'value': 279.3035096414199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f241d663498b97064', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:35:27.000Z'}}, {'blockNum': '0x6b1f18', 'uniqueId': '0x2a5d7cbad4e2372b7b9d3c336353ec59ac8e29a427e54c6b6b1d92130cf1db6f:log:23', 'hash': '0x2a5d7cbad4e2372b7b9d3c336353ec59ac8e29a427e54c6b6b1d92130cf1db6f', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.3015407470579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c28cf26e8b13155e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:36:31.000Z'}}, {'blockNum': '0x6b1f18', 'uniqueId': '0x2a5d7cbad4e2372b7b9d3c336353ec59ac8e29a427e54c6b6b1d92130cf1db6f:log:27', 'hash': '0x2a5d7cbad4e2372b7b9d3c336353ec59ac8e29a427e54c6b6b1d92130cf1db6f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 224.3015407470579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c28cf26e8b13155e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:36:31.000Z'}}, {'blockNum': '0x6b1f1a', 'uniqueId': '0xfafc63a0f49d2066cbd775b4255b56a8bcd1e323ccc016669db9253cc5a06786:log:103', 'hash': '0xfafc63a0f49d2066cbd775b4255b56a8bcd1e323ccc016669db9253cc5a06786', 'from': '0xdda1bfaf552b0f303d27853a4a13dd440c7e849f', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 209.86804439108266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b60811271f464c971', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:37:41.000Z'}}, {'blockNum': '0x6b1f1a', 'uniqueId': '0xfafc63a0f49d2066cbd775b4255b56a8bcd1e323ccc016669db9253cc5a06786:log:108', 'hash': '0xfafc63a0f49d2066cbd775b4255b56a8bcd1e323ccc016669db9253cc5a06786', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 209.86804439108266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b60811271f464c971', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:37:41.000Z'}}, {'blockNum': '0x6b1f1a', 'uniqueId': '0xeff1b2867119ed1401ff69737d56e0af97599e0d40fbf9253e87e41f06aab1ee:log:118', 'hash': '0xeff1b2867119ed1401ff69737d56e0af97599e0d40fbf9253e87e41f06aab1ee', 'from': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 0.0756214604351133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010ca9514ea19549', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:37:41.000Z'}}, {'blockNum': '0x6b1f1a', 'uniqueId': '0xeff1b2867119ed1401ff69737d56e0af97599e0d40fbf9253e87e41f06aab1ee:log:122', 'hash': '0xeff1b2867119ed1401ff69737d56e0af97599e0d40fbf9253e87e41f06aab1ee', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5f7a009664b771e889751f4fd721adc439033ecd', 'value': 0.0756214604351133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010ca9514ea19549', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:37:41.000Z'}}, {'blockNum': '0x6b1f1c', 'uniqueId': '0x030311c4b12c7cbfa409cb7374c61dbab388ca47e890df37119c4c34179c6458:log:18', 'hash': '0x030311c4b12c7cbfa409cb7374c61dbab388ca47e890df37119c4c34179c6458', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 171.25195545488253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0948992a278b4b0206', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:37:49.000Z'}}, {'blockNum': '0x6b1f1c', 'uniqueId': '0x030311c4b12c7cbfa409cb7374c61dbab388ca47e890df37119c4c34179c6458:log:22', 'hash': '0x030311c4b12c7cbfa409cb7374c61dbab388ca47e890df37119c4c34179c6458', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'value': 171.25195545488253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0948992a278b4b0206', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:37:49.000Z'}}, {'blockNum': '0x6b1f24', 'uniqueId': '0xce91d5a8245b6122995d2188ba308b669aef23e0607777211a5cfb53df1df172:log:47', 'hash': '0xce91d5a8245b6122995d2188ba308b669aef23e0607777211a5cfb53df1df172', 'from': '0xc18166e01970be040d8c7761cdd1c3372ae1edf0', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 451.7217759550267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x187ce621e813f513c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:39:53.000Z'}}, {'blockNum': '0x6b1f24', 'uniqueId': '0xce91d5a8245b6122995d2188ba308b669aef23e0607777211a5cfb53df1df172:log:51', 'hash': '0xce91d5a8245b6122995d2188ba308b669aef23e0607777211a5cfb53df1df172', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 451.7217759550267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x187ce621e813f513c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:39:53.000Z'}}, {'blockNum': '0x6b1f26', 'uniqueId': '0x2ef4d51243a3159327143b4f40e37b263bd3a7caca1be57b786727f9fbfc1fa9:log:63', 'hash': '0x2ef4d51243a3159327143b4f40e37b263bd3a7caca1be57b786727f9fbfc1fa9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.44958783839542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1cfc68409b00f1fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:40:23.000Z'}}, {'blockNum': '0x6b1f26', 'uniqueId': '0x2ef4d51243a3159327143b4f40e37b263bd3a7caca1be57b786727f9fbfc1fa9:log:67', 'hash': '0x2ef4d51243a3159327143b4f40e37b263bd3a7caca1be57b786727f9fbfc1fa9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb85e52268cbf57b97ae15136aa65d4f567b8107c', 'value': 223.44958783839542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1cfc68409b00f1fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:40:23.000Z'}}, {'blockNum': '0x6b1f31', 'uniqueId': '0xa17c03758e1cfeb0c954c40ae361bc180f69661345ffb8d151aab423130d4bda:log:33', 'hash': '0xa17c03758e1cfeb0c954c40ae361bc180f69661345ffb8d151aab423130d4bda', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 567.3786723861118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ec1f5f86f22ed8115', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:21.000Z'}}, {'blockNum': '0x6b1f31', 'uniqueId': '0xa17c03758e1cfeb0c954c40ae361bc180f69661345ffb8d151aab423130d4bda:log:37', 'hash': '0xa17c03758e1cfeb0c954c40ae361bc180f69661345ffb8d151aab423130d4bda', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'value': 567.3786723861118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ec1f5f86f22ed8115', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:21.000Z'}}, {'blockNum': '0x6b1f31', 'uniqueId': '0x85e82bfbcd6a5ebfa886f5a9741f7aaf3c4369d24730cc5fd070daade128a5cd:log:48', 'hash': '0x85e82bfbcd6a5ebfa886f5a9741f7aaf3c4369d24730cc5fd070daade128a5cd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 670.2673532206027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2455d3fe86874c619d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:21.000Z'}}, {'blockNum': '0x6b1f31', 'uniqueId': '0x85e82bfbcd6a5ebfa886f5a9741f7aaf3c4369d24730cc5fd070daade128a5cd:log:52', 'hash': '0x85e82bfbcd6a5ebfa886f5a9741f7aaf3c4369d24730cc5fd070daade128a5cd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'value': 670.2673532206027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2455d3fe86874c619d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:21.000Z'}}, {'blockNum': '0x6b1f31', 'uniqueId': '0xbe294cd27bc74c81b65fbdd7d0168b2ada8e37e5732376c25b569830ddf1da85:log:67', 'hash': '0xbe294cd27bc74c81b65fbdd7d0168b2ada8e37e5732376c25b569830ddf1da85', 'from': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 435.2354563097107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17981af589935a08bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:21.000Z'}}, {'blockNum': '0x6b1f31', 'uniqueId': '0xbe294cd27bc74c81b65fbdd7d0168b2ada8e37e5732376c25b569830ddf1da85:log:70', 'hash': '0xbe294cd27bc74c81b65fbdd7d0168b2ada8e37e5732376c25b569830ddf1da85', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 435.2354563097107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17981af589935a08bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:21.000Z'}}, {'blockNum': '0x6b1f33', 'uniqueId': '0x0c4acdadc87001a60b3239799a453268bf47890fef499d763ad6cf6108d66d21:log:24', 'hash': '0x0c4acdadc87001a60b3239799a453268bf47890fef499d763ad6cf6108d66d21', 'from': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 569.0573892691539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ed941f88b871ac04c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:41.000Z'}}, {'blockNum': '0x6b1f33', 'uniqueId': '0x0c4acdadc87001a60b3239799a453268bf47890fef499d763ad6cf6108d66d21:log:28', 'hash': '0x0c4acdadc87001a60b3239799a453268bf47890fef499d763ad6cf6108d66d21', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 569.0573892691539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ed941f88b871ac04c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:41.000Z'}}, {'blockNum': '0x6b1f36', 'uniqueId': '0xb98ff1f985144d404187255f73e35c18db493ae73a74c216717a867353f5489a:log:36', 'hash': '0xb98ff1f985144d404187255f73e35c18db493ae73a74c216717a867353f5489a', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1550.2778214679902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x540a6d38e6b6013d92', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:44:30.000Z'}}, {'blockNum': '0x6b1f36', 'uniqueId': '0xb98ff1f985144d404187255f73e35c18db493ae73a74c216717a867353f5489a:log:40', 'hash': '0xb98ff1f985144d404187255f73e35c18db493ae73a74c216717a867353f5489a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1550.2778214679902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x540a6d38e6b6013d92', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:44:30.000Z'}}, {'blockNum': '0x6b1f38', 'uniqueId': '0x0eab9be130267fda63779063190b09914b528d75095efe0d674b13dfeaf085ac:log:66', 'hash': '0x0eab9be130267fda63779063190b09914b528d75095efe0d674b13dfeaf085ac', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3.6459480384363814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3299026c8488631d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:44:50.000Z'}}, {'blockNum': '0x6b1f38', 'uniqueId': '0x0eab9be130267fda63779063190b09914b528d75095efe0d674b13dfeaf085ac:log:70', 'hash': '0x0eab9be130267fda63779063190b09914b528d75095efe0d674b13dfeaf085ac', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'value': 3.6459480384363814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3299026c8488631d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:44:50.000Z'}}, {'blockNum': '0x6b1f38', 'uniqueId': '0xd424f3c350cd2241b811b558d354c5a17f1f3cdf71738744408916c8276da4e5:log:81', 'hash': '0xd424f3c350cd2241b811b558d354c5a17f1f3cdf71738744408916c8276da4e5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1.1174086307862177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f81d53abaf7d6c0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:44:50.000Z'}}, {'blockNum': '0x6b1f38', 'uniqueId': '0xd424f3c350cd2241b811b558d354c5a17f1f3cdf71738744408916c8276da4e5:log:85', 'hash': '0xd424f3c350cd2241b811b558d354c5a17f1f3cdf71738744408916c8276da4e5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'value': 1.1174086307862177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f81d53abaf7d6c0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:44:50.000Z'}}, {'blockNum': '0x6b1f3e', 'uniqueId': '0xfd58a3ff0da97a928126f225d809d5adfd106c89dadbdc60d627dafb2cce5695:log:101', 'hash': '0xfd58a3ff0da97a928126f225d809d5adfd106c89dadbdc60d627dafb2cce5695', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 33.2457215661979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cd60879efec4e1ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:46:08.000Z'}}, {'blockNum': '0x6b1f3e', 'uniqueId': '0xfd58a3ff0da97a928126f225d809d5adfd106c89dadbdc60d627dafb2cce5695:log:105', 'hash': '0xfd58a3ff0da97a928126f225d809d5adfd106c89dadbdc60d627dafb2cce5695', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'value': 33.2457215661979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cd60879efec4e1ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:46:08.000Z'}}, {'blockNum': '0x6b1f3f', 'uniqueId': '0xcce302c367e0374240db131924020ea982fb1eb52a09384293edbae79037a218:log:15', 'hash': '0xcce302c367e0374240db131924020ea982fb1eb52a09384293edbae79037a218', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.47783117661888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d60bf6b391589f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:46:14.000Z'}}, {'blockNum': '0x6b1f3f', 'uniqueId': '0xcce302c367e0374240db131924020ea982fb1eb52a09384293edbae79037a218:log:19', 'hash': '0xcce302c367e0374240db131924020ea982fb1eb52a09384293edbae79037a218', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 223.47783117661888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d60bf6b391589f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:46:14.000Z'}}, {'blockNum': '0x6b1f3f', 'uniqueId': '0x21553a1c9796224f0ea7f4a3983f550273db191ceb2bda5897206b38a15562c6:log:31', 'hash': '0x21553a1c9796224f0ea7f4a3983f550273db191ceb2bda5897206b38a15562c6', 'from': '0x44e18bef2693ddc841f90949b27646a9b01fab59', 'to': '0xc545bb895b9809c321de7a62017c6e7e637a5cfd', 'value': 200.1762597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ada00ef9e2cd78800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:46:14.000Z'}}, {'blockNum': '0x6b1f4b', 'uniqueId': '0x595482a81229a2f50d7a38052dce37b1f7e61ce5c08d37aa8ce99b69b209376a:log:50', 'hash': '0x595482a81229a2f50d7a38052dce37b1f7e61ce5c08d37aa8ce99b69b209376a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 33.22785570105688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cd210eb61d6f03d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:47:38.000Z'}}, {'blockNum': '0x6b1f4b', 'uniqueId': '0x595482a81229a2f50d7a38052dce37b1f7e61ce5c08d37aa8ce99b69b209376a:log:54', 'hash': '0x595482a81229a2f50d7a38052dce37b1f7e61ce5c08d37aa8ce99b69b209376a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'value': 33.22785570105688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cd210eb61d6f03d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:47:38.000Z'}}, {'blockNum': '0x6b1f51', 'uniqueId': '0x9e2390de461902a482b904aa524a277055cdda9729c2afe6cda226f4a5dd5ef7:log:90', 'hash': '0x9e2390de461902a482b904aa524a277055cdda9729c2afe6cda226f4a5dd5ef7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.4709615939197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d485791dc8b89af', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:49:17.000Z'}}, {'blockNum': '0x6b1f51', 'uniqueId': '0x9e2390de461902a482b904aa524a277055cdda9729c2afe6cda226f4a5dd5ef7:log:94', 'hash': '0x9e2390de461902a482b904aa524a277055cdda9729c2afe6cda226f4a5dd5ef7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 223.4709615939197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d485791dc8b89af', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:49:17.000Z'}}, {'blockNum': '0x6b1f51', 'uniqueId': '0xe846a21169a08028a8f69c3e97b96faa97cb41639382bcc13d84c5973cb83a7f:log:106', 'hash': '0xe846a21169a08028a8f69c3e97b96faa97cb41639382bcc13d84c5973cb83a7f', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 253.28070116719005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dbaf9cfc5dc3a7b10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:49:17.000Z'}}, {'blockNum': '0x6b1f51', 'uniqueId': '0xe846a21169a08028a8f69c3e97b96faa97cb41639382bcc13d84c5973cb83a7f:log:108', 'hash': '0xe846a21169a08028a8f69c3e97b96faa97cb41639382bcc13d84c5973cb83a7f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 253.28070116719005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dbaf9cfc5dc3a7b10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:49:17.000Z'}}, {'blockNum': '0x6b1f51', 'uniqueId': '0xebdf96937425750ea1fe373e123d787500f290867744f6a93bbc654e6ed7028d:log:120', 'hash': '0xebdf96937425750ea1fe373e123d787500f290867744f6a93bbc654e6ed7028d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 54.85775827808489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f94de8814b7e8f9a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:49:17.000Z'}}, {'blockNum': '0x6b1f51', 'uniqueId': '0xebdf96937425750ea1fe373e123d787500f290867744f6a93bbc654e6ed7028d:log:124', 'hash': '0xebdf96937425750ea1fe373e123d787500f290867744f6a93bbc654e6ed7028d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8606704880234178125b2d44cbbe190ccdbde015', 'value': 54.85775827808489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f94de8814b7e8f9a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:49:17.000Z'}}, {'blockNum': '0x6b1f56', 'uniqueId': '0xc95993a820c2589406e44f918c863b0792c596fcefac2a5c6876492073ff3e42:log:46', 'hash': '0xc95993a820c2589406e44f918c863b0792c596fcefac2a5c6876492073ff3e42', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 0.22347327841775422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0319efc340e1d86e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:50:16.000Z'}}, {'blockNum': '0x6b1f56', 'uniqueId': '0xc95993a820c2589406e44f918c863b0792c596fcefac2a5c6876492073ff3e42:log:50', 'hash': '0xc95993a820c2589406e44f918c863b0792c596fcefac2a5c6876492073ff3e42', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x6b431a7a99780819473722161ee9145e5649c5e2', 'value': 0.22347327841775422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0319efc340e1d86e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:50:16.000Z'}}, {'blockNum': '0x6b1f5f', 'uniqueId': '0x445343be72d9a612f69b128f25dfb37f5402e851fb6459f47559fc0568091d9a:log:34', 'hash': '0x445343be72d9a612f69b128f25dfb37f5402e851fb6459f47559fc0568091d9a', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2561.6787643643283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ade6f2fd5656049cd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:24.000Z'}}, {'blockNum': '0x6b1f5f', 'uniqueId': '0x445343be72d9a612f69b128f25dfb37f5402e851fb6459f47559fc0568091d9a:log:38', 'hash': '0x445343be72d9a612f69b128f25dfb37f5402e851fb6459f47559fc0568091d9a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2561.6787643643283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ade6f2fd5656049cd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:24.000Z'}}, {'blockNum': '0x6b1f5f', 'uniqueId': '0x331f28868114ace433e23c6ab3471bf98378e5fd03e0fcd96e4655a9a000ee29:log:50', 'hash': '0x331f28868114ace433e23c6ab3471bf98378e5fd03e0fcd96e4655a9a000ee29', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:24.000Z'}}, {'blockNum': '0x6b1f5f', 'uniqueId': '0x331f28868114ace433e23c6ab3471bf98378e5fd03e0fcd96e4655a9a000ee29:log:53', 'hash': '0x331f28868114ace433e23c6ab3471bf98378e5fd03e0fcd96e4655a9a000ee29', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:24.000Z'}}, {'blockNum': '0x6b1f5f', 'uniqueId': '0x331f28868114ace433e23c6ab3471bf98378e5fd03e0fcd96e4655a9a000ee29:log:55', 'hash': '0x331f28868114ace433e23c6ab3471bf98378e5fd03e0fcd96e4655a9a000ee29', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:24.000Z'}}, {'blockNum': '0x6b1f5f', 'uniqueId': '0x375c31da768e7b0538852c9c5bb86387d8dacbb63c5cb6471b105596c513db5a:log:68', 'hash': '0x375c31da768e7b0538852c9c5bb86387d8dacbb63c5cb6471b105596c513db5a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 644.22221809412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22ec61161efa3f2098', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:24.000Z'}}, {'blockNum': '0x6b1f5f', 'uniqueId': '0x375c31da768e7b0538852c9c5bb86387d8dacbb63c5cb6471b105596c513db5a:log:72', 'hash': '0x375c31da768e7b0538852c9c5bb86387d8dacbb63c5cb6471b105596c513db5a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 644.22221809412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22ec61161efa3f2098', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:24.000Z'}}, {'blockNum': '0x6b1f62', 'uniqueId': '0x0b7c96ac5533fa26090c7d4ac57e143e65f6c38193155f67a17aa2f97bf3d3eb:log:21', 'hash': '0x0b7c96ac5533fa26090c7d4ac57e143e65f6c38193155f67a17aa2f97bf3d3eb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 312.9285689718429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10f6c19b83660556c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:54.000Z'}}, {'blockNum': '0x6b1f62', 'uniqueId': '0x0b7c96ac5533fa26090c7d4ac57e143e65f6c38193155f67a17aa2f97bf3d3eb:log:25', 'hash': '0x0b7c96ac5533fa26090c7d4ac57e143e65f6c38193155f67a17aa2f97bf3d3eb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 312.9285689718429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10f6c19b83660556c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:54.000Z'}}, {'blockNum': '0x6b1f64', 'uniqueId': '0x690dafbc7a0c4b5e457a06252cfcbfa278d1ac10bae0addc825b4a99956c8b07:log:24', 'hash': '0x690dafbc7a0c4b5e457a06252cfcbfa278d1ac10bae0addc825b4a99956c8b07', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 368.1230975103365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f4bbf6c9301773a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:54:48.000Z'}}, {'blockNum': '0x6b1f64', 'uniqueId': '0x690dafbc7a0c4b5e457a06252cfcbfa278d1ac10bae0addc825b4a99956c8b07:log:28', 'hash': '0x690dafbc7a0c4b5e457a06252cfcbfa278d1ac10bae0addc825b4a99956c8b07', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 368.1230975103365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f4bbf6c9301773a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:54:48.000Z'}}, {'blockNum': '0x6b1f6e', 'uniqueId': '0x42369201b84e35d2e67eb67bc1b5c5491d5a3e6299d82885adba258303a266d6:log:95', 'hash': '0x42369201b84e35d2e67eb67bc1b5c5491d5a3e6299d82885adba258303a266d6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.50337423488673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1dbb7eb1eb9e0842', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:58:27.000Z'}}, {'blockNum': '0x6b1f6e', 'uniqueId': '0x42369201b84e35d2e67eb67bc1b5c5491d5a3e6299d82885adba258303a266d6:log:99', 'hash': '0x42369201b84e35d2e67eb67bc1b5c5491d5a3e6299d82885adba258303a266d6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 223.50337423488673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1dbb7eb1eb9e0842', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:58:27.000Z'}}, {'blockNum': '0x6b1f6f', 'uniqueId': '0x816835b747dfa7a0eb4cc6ab1fc0e3a36510675a2a6dcf077d3832d06df1d6d5:log:64', 'hash': '0x816835b747dfa7a0eb4cc6ab1fc0e3a36510675a2a6dcf077d3832d06df1d6d5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 167.60615132262075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091600aa9ccb2d35a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:58:33.000Z'}}, {'blockNum': '0x6b1f6f', 'uniqueId': '0x816835b747dfa7a0eb4cc6ab1fc0e3a36510675a2a6dcf077d3832d06df1d6d5:log:68', 'hash': '0x816835b747dfa7a0eb4cc6ab1fc0e3a36510675a2a6dcf077d3832d06df1d6d5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 167.60615132262075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091600aa9ccb2d35a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:58:33.000Z'}}, {'blockNum': '0x6b1f72', 'uniqueId': '0x7538e454e6fc82d482a3569a1ecc94cadc618afb7815ec9a3aa500ca86fe6878:log:57', 'hash': '0x7538e454e6fc82d482a3569a1ecc94cadc618afb7815ec9a3aa500ca86fe6878', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 69.28344079146976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03c1803a52085cfa8e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:59:09.000Z'}}, {'blockNum': '0x6b1f72', 'uniqueId': '0x7538e454e6fc82d482a3569a1ecc94cadc618afb7815ec9a3aa500ca86fe6878:log:61', 'hash': '0x7538e454e6fc82d482a3569a1ecc94cadc618afb7815ec9a3aa500ca86fe6878', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 69.28344079146976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03c1803a52085cfa8e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:59:09.000Z'}}, {'blockNum': '0x6b1f82', 'uniqueId': '0x36c344953d99ffcc41c7d737dd543de5313507153db8ba64d1af1336e29f7f84:log:36', 'hash': '0x36c344953d99ffcc41c7d737dd543de5313507153db8ba64d1af1336e29f7f84', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 222.31045252252653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c0d2d62b7cd893563', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:02:02.000Z'}}, {'blockNum': '0x6b1f82', 'uniqueId': '0x36c344953d99ffcc41c7d737dd543de5313507153db8ba64d1af1336e29f7f84:log:40', 'hash': '0x36c344953d99ffcc41c7d737dd543de5313507153db8ba64d1af1336e29f7f84', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'value': 222.31045252252653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c0d2d62b7cd893563', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:02:02.000Z'}}, {'blockNum': '0x6b1f92', 'uniqueId': '0x72199b01cee43d4e0b1b770a91d40126380effc2c295a6a85d671137e568beb5:log:15', 'hash': '0x72199b01cee43d4e0b1b770a91d40126380effc2c295a6a85d671137e568beb5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 55.871836449710855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x030760a33ab5bcde19', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:07:22.000Z'}}, {'blockNum': '0x6b1f92', 'uniqueId': '0x72199b01cee43d4e0b1b770a91d40126380effc2c295a6a85d671137e568beb5:log:19', 'hash': '0x72199b01cee43d4e0b1b770a91d40126380effc2c295a6a85d671137e568beb5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 55.871836449710855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x030760a33ab5bcde19', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:07:22.000Z'}}, {'blockNum': '0x6b1f92', 'uniqueId': '0xdf0f9667e2ddad0b7529703313e03deba598c9054641d6c8ce124e13f983aa72:log:30', 'hash': '0xdf0f9667e2ddad0b7529703313e03deba598c9054641d6c8ce124e13f983aa72', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 368.744745496172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13fd5c8055db278c96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:07:22.000Z'}}, {'blockNum': '0x6b1f92', 'uniqueId': '0xdf0f9667e2ddad0b7529703313e03deba598c9054641d6c8ce124e13f983aa72:log:34', 'hash': '0xdf0f9667e2ddad0b7529703313e03deba598c9054641d6c8ce124e13f983aa72', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 368.744745496172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13fd5c8055db278c96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:07:22.000Z'}}, {'blockNum': '0x6b1f92', 'uniqueId': '0x8fba1eac61f8f82d977b5b0d6396aa03cbd4a8f45552dbb97d761badb59d9b52:log:100', 'hash': '0x8fba1eac61f8f82d977b5b0d6396aa03cbd4a8f45552dbb97d761badb59d9b52', 'from': '0xba2be1cd1f00470c21385b7cbed6211aefac0172', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 395.3028272650143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x156dedc2fe4ec6b3d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:07:22.000Z'}}, {'blockNum': '0x6b1f92', 'uniqueId': '0x8fba1eac61f8f82d977b5b0d6396aa03cbd4a8f45552dbb97d761badb59d9b52:log:104', 'hash': '0x8fba1eac61f8f82d977b5b0d6396aa03cbd4a8f45552dbb97d761badb59d9b52', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 395.3028272650143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x156dedc2fe4ec6b3d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:07:22.000Z'}}, {'blockNum': '0x6b1f94', 'uniqueId': '0xfbaa8dc9546b6e60c463cc406d4f733ffac7c694231651830cd96df4c8974b68:log:58', 'hash': '0xfbaa8dc9546b6e60c463cc406d4f733ffac7c694231651830cd96df4c8974b68', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 117.83814448089979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0663553012773048a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:08:37.000Z'}}, {'blockNum': '0x6b1f94', 'uniqueId': '0xfbaa8dc9546b6e60c463cc406d4f733ffac7c694231651830cd96df4c8974b68:log:62', 'hash': '0xfbaa8dc9546b6e60c463cc406d4f733ffac7c694231651830cd96df4c8974b68', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 117.83814448089979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0663553012773048a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:08:37.000Z'}}, {'blockNum': '0x6b1f9a', 'uniqueId': '0xd773de44d6ba163d41a5f9e86f126d7a917908303ea7cbb39762356eb4db1fd8:log:60', 'hash': '0xd773de44d6ba163d41a5f9e86f126d7a917908303ea7cbb39762356eb4db1fd8', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 111.74258224484996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x060ebd66839d2744a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:10:03.000Z'}}, {'blockNum': '0x6b1f9a', 'uniqueId': '0xd773de44d6ba163d41a5f9e86f126d7a917908303ea7cbb39762356eb4db1fd8:log:64', 'hash': '0xd773de44d6ba163d41a5f9e86f126d7a917908303ea7cbb39762356eb4db1fd8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 111.74258224484996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x060ebd66839d2744a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:10:03.000Z'}}, {'blockNum': '0x6b1f9e', 'uniqueId': '0x10bd210e364a1752b789edd3c4aaf2f4549bcd2656e9597f3767304213438e8f:log:40', 'hash': '0x10bd210e364a1752b789edd3c4aaf2f4549bcd2656e9597f3767304213438e8f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 283.6400076580915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f604bbc2d059f3f58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:11:40.000Z'}}, {'blockNum': '0x6b1f9e', 'uniqueId': '0x10bd210e364a1752b789edd3c4aaf2f4549bcd2656e9597f3767304213438e8f:log:44', 'hash': '0x10bd210e364a1752b789edd3c4aaf2f4549bcd2656e9597f3767304213438e8f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 283.6400076580915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f604bbc2d059f3f58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:11:40.000Z'}}, {'blockNum': '0x6b1f9e', 'uniqueId': '0xebcb810860ef6169234aa7d293caa8d2cf1e82ab7e083e01a6987bc406c89772:log:58', 'hash': '0xebcb810860ef6169234aa7d293caa8d2cf1e82ab7e083e01a6987bc406c89772', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 74.18588674970611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04058936f1f7975b91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:11:40.000Z'}}, {'blockNum': '0x6b1f9e', 'uniqueId': '0xebcb810860ef6169234aa7d293caa8d2cf1e82ab7e083e01a6987bc406c89772:log:62', 'hash': '0xebcb810860ef6169234aa7d293caa8d2cf1e82ab7e083e01a6987bc406c89772', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 74.18588674970611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04058936f1f7975b91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:11:40.000Z'}}, {'blockNum': '0x6b1f9f', 'uniqueId': '0x89c70f95ca9fc3ecfac706fa762ce68de7cc56d26155ace30fe53af5bd0cadac:log:80', 'hash': '0x89c70f95ca9fc3ecfac706fa762ce68de7cc56d26155ace30fe53af5bd0cadac', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 74.185227706818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040586df8c965a6c53', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:11:51.000Z'}}, {'blockNum': '0x6b1f9f', 'uniqueId': '0x89c70f95ca9fc3ecfac706fa762ce68de7cc56d26155ace30fe53af5bd0cadac:log:84', 'hash': '0x89c70f95ca9fc3ecfac706fa762ce68de7cc56d26155ace30fe53af5bd0cadac', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 74.185227706818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040586df8c965a6c53', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:11:51.000Z'}}, {'blockNum': '0x6b1fa5', 'uniqueId': '0x466dacaba05ea82c3422125b9a613e5ed97165e8beae9783f5248f4b68d9db84:log:75', 'hash': '0x466dacaba05ea82c3422125b9a613e5ed97165e8beae9783f5248f4b68d9db84', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.47890108764088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d648c7f4b7e220b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:12:48.000Z'}}, {'blockNum': '0x6b1fa5', 'uniqueId': '0x466dacaba05ea82c3422125b9a613e5ed97165e8beae9783f5248f4b68d9db84:log:79', 'hash': '0x466dacaba05ea82c3422125b9a613e5ed97165e8beae9783f5248f4b68d9db84', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb85e52268cbf57b97ae15136aa65d4f567b8107c', 'value': 223.47890108764088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d648c7f4b7e220b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:12:48.000Z'}}, {'blockNum': '0x6b1fb5', 'uniqueId': '0x4b997f10f63878a185354b6b4c0903ee4c3b06b420c961e34e3781f1516452b4:log:19', 'hash': '0x4b997f10f63878a185354b6b4c0903ee4c3b06b420c961e34e3781f1516452b4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 446.9398611300955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183a895bb57dc210bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:15:40.000Z'}}, {'blockNum': '0x6b1fb5', 'uniqueId': '0x4b997f10f63878a185354b6b4c0903ee4c3b06b420c961e34e3781f1516452b4:log:23', 'hash': '0x4b997f10f63878a185354b6b4c0903ee4c3b06b420c961e34e3781f1516452b4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb85e52268cbf57b97ae15136aa65d4f567b8107c', 'value': 446.9398611300955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183a895bb57dc210bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:15:40.000Z'}}, {'blockNum': '0x6b1fc5', 'uniqueId': '0xd238645a9a726cba5aacf2302d9f4e2dd6013b8e3aef2e4e2784b9e7b62ad4b0:log:30', 'hash': '0xd238645a9a726cba5aacf2302d9f4e2dd6013b8e3aef2e4e2784b9e7b62ad4b0', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 407.8121573771973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x161b87d474018b5bb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:18:00.000Z'}}, {'blockNum': '0x6b1fc5', 'uniqueId': '0xd238645a9a726cba5aacf2302d9f4e2dd6013b8e3aef2e4e2784b9e7b62ad4b0:log:34', 'hash': '0xd238645a9a726cba5aacf2302d9f4e2dd6013b8e3aef2e4e2784b9e7b62ad4b0', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 407.8121573771973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x161b87d474018b5bb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:18:00.000Z'}}, {'blockNum': '0x6b1fc8', 'uniqueId': '0x0d9f68b598966d3e3e2c4e185e5fb12bcbefe32c496d8db0546099ea95323cec:log:79', 'hash': '0x0d9f68b598966d3e3e2c4e185e5fb12bcbefe32c496d8db0546099ea95323cec', 'from': '0xdda1bfaf552b0f303d27853a4a13dd440c7e849f', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 218.39972559054908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bd6e7b14b13778b33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:19:16.000Z'}}, {'blockNum': '0x6b1fc8', 'uniqueId': '0x0d9f68b598966d3e3e2c4e185e5fb12bcbefe32c496d8db0546099ea95323cec:log:84', 'hash': '0x0d9f68b598966d3e3e2c4e185e5fb12bcbefe32c496d8db0546099ea95323cec', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 218.39972559054908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bd6e7b14b13778b33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:19:16.000Z'}}, {'blockNum': '0x6b1fd8', 'uniqueId': '0xbf3d54b1ff0a906109b6249b77613d4981ebe65b210d0021f9d6da5fe9e4a99e:log:7', 'hash': '0xbf3d54b1ff0a906109b6249b77613d4981ebe65b210d0021f9d6da5fe9e4a99e', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 86.38360801756093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04aed039cfdf4e117e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:24:47.000Z'}}, {'blockNum': '0x6b1fd8', 'uniqueId': '0xbf3d54b1ff0a906109b6249b77613d4981ebe65b210d0021f9d6da5fe9e4a99e:log:11', 'hash': '0xbf3d54b1ff0a906109b6249b77613d4981ebe65b210d0021f9d6da5fe9e4a99e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 86.38360801756093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04aed039cfdf4e117e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:24:47.000Z'}}, {'blockNum': '0x6b1ff5', 'uniqueId': '0x329a0c87b70c9eb033f893c020fec1695822a570c6017f20f73b07fefea80ad8:log:28', 'hash': '0x329a0c87b70c9eb033f893c020fec1695822a570c6017f20f73b07fefea80ad8', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 44.820893596994814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026e03cd415474c251', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:30:05.000Z'}}, {'blockNum': '0x6b1ff5', 'uniqueId': '0x329a0c87b70c9eb033f893c020fec1695822a570c6017f20f73b07fefea80ad8:log:32', 'hash': '0x329a0c87b70c9eb033f893c020fec1695822a570c6017f20f73b07fefea80ad8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 44.820893596994814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026e03cd415474c251', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:30:05.000Z'}}, {'blockNum': '0x6b1ffb', 'uniqueId': '0x1f79ad65a9568833bd561b27f20d3b3165c8aeeaadfb6e395e3a32a4f5e38847:log:84', 'hash': '0x1f79ad65a9568833bd561b27f20d3b3165c8aeeaadfb6e395e3a32a4f5e38847', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 670.4012788777289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2457afcb337a9e2abd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:31:59.000Z'}}, {'blockNum': '0x6b1ffb', 'uniqueId': '0x1f79ad65a9568833bd561b27f20d3b3165c8aeeaadfb6e395e3a32a4f5e38847:log:88', 'hash': '0x1f79ad65a9568833bd561b27f20d3b3165c8aeeaadfb6e395e3a32a4f5e38847', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 670.4012788777289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2457afcb337a9e2abd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:31:59.000Z'}}, {'blockNum': '0x6b2009', 'uniqueId': '0x47cf87e7c7003dd2c6a0dec6292988c5470124e51ee4e4e0ea962e30294a7113:log:23', 'hash': '0x47cf87e7c7003dd2c6a0dec6292988c5470124e51ee4e4e0ea962e30294a7113', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x402f4cfee62e7fffc7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:35:50.000Z'}}, {'blockNum': '0x6b2009', 'uniqueId': '0x47cf87e7c7003dd2c6a0dec6292988c5470124e51ee4e4e0ea962e30294a7113:log:26', 'hash': '0x47cf87e7c7003dd2c6a0dec6292988c5470124e51ee4e4e0ea962e30294a7113', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'value': 1184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x402f4cfee62e7fffc7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:35:50.000Z'}}, {'blockNum': '0x6b200a', 'uniqueId': '0x2c3b0e27fd8597099ad93e7baa638373e3e27f2ebc7015ac70ec18352c33b08b:log:17', 'hash': '0x2c3b0e27fd8597099ad93e7baa638373e3e27f2ebc7015ac70ec18352c33b08b', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 667.7236934889565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2432871979f9109dd1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:35:56.000Z'}}, {'blockNum': '0x6b200a', 'uniqueId': '0x2c3b0e27fd8597099ad93e7baa638373e3e27f2ebc7015ac70ec18352c33b08b:log:21', 'hash': '0x2c3b0e27fd8597099ad93e7baa638373e3e27f2ebc7015ac70ec18352c33b08b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 667.7236934889565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2432871979f9109dd1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:35:56.000Z'}}, {'blockNum': '0x6b200e', 'uniqueId': '0x87d77097de160f6125de9c3baa3e145bf12c0115bdaf30c5eb26fe6d90e959d6:log:43', 'hash': '0x87d77097de160f6125de9c3baa3e145bf12c0115bdaf30c5eb26fe6d90e959d6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 290.4725496388393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fbf1dcce831097ab4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:36:31.000Z'}}, {'blockNum': '0x6b200e', 'uniqueId': '0x87d77097de160f6125de9c3baa3e145bf12c0115bdaf30c5eb26fe6d90e959d6:log:47', 'hash': '0x87d77097de160f6125de9c3baa3e145bf12c0115bdaf30c5eb26fe6d90e959d6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 290.4725496388393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fbf1dcce831097ab4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:36:31.000Z'}}, {'blockNum': '0x6b2018', 'uniqueId': '0xc0bbf7d3d0b27ba763d0d08985529aa0f21acf74f0123a6fd858094d9fc08013:log:97', 'hash': '0xc0bbf7d3d0b27ba763d0d08985529aa0f21acf74f0123a6fd858094d9fc08013', 'from': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'to': '0x77521132fad812cedb7dd5b4f34835e71821b4eb', 'value': 1184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x402f4cfee62e7fffc7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:39:27.000Z'}}, {'blockNum': '0x6b201f', 'uniqueId': '0x74ea72fc31e7b55186d3ed329a9860561bafcc2190d49e42a8532274a1c91266:log:12', 'hash': '0x74ea72fc31e7b55186d3ed329a9860561bafcc2190d49e42a8532274a1c91266', 'from': '0x77521132fad812cedb7dd5b4f34835e71821b4eb', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x402f4cfee62e800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:41:58.000Z'}}, {'blockNum': '0x6b201f', 'uniqueId': '0x74ea72fc31e7b55186d3ed329a9860561bafcc2190d49e42a8532274a1c91266:log:15', 'hash': '0x74ea72fc31e7b55186d3ed329a9860561bafcc2190d49e42a8532274a1c91266', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 1184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x402f4cfee62e800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:41:58.000Z'}}, {'blockNum': '0x6b2030', 'uniqueId': '0x3704b46b16a1c212ac5b62abe319d25fba761ea0a85795becce43759c0f3ed76:log:51', 'hash': '0x3704b46b16a1c212ac5b62abe319d25fba761ea0a85795becce43759c0f3ed76', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 814.3864660422474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c25e1f00f9de19c52', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:46:46.000Z'}}, {'blockNum': '0x6b2030', 'uniqueId': '0x3704b46b16a1c212ac5b62abe319d25fba761ea0a85795becce43759c0f3ed76:log:55', 'hash': '0x3704b46b16a1c212ac5b62abe319d25fba761ea0a85795becce43759c0f3ed76', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 814.3864660422474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c25e1f00f9de19c52', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:46:46.000Z'}}, {'blockNum': '0x6b2030', 'uniqueId': '0xb8c50a989068774dfa280abfc5cb721723ca6532a62edb78765c7b332ea58540:log:104', 'hash': '0xb8c50a989068774dfa280abfc5cb721723ca6532a62edb78765c7b332ea58540', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 15.979266857118635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xddc1c28b75ba9104', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:46:46.000Z'}}, {'blockNum': '0x6b2030', 'uniqueId': '0xb8c50a989068774dfa280abfc5cb721723ca6532a62edb78765c7b332ea58540:log:108', 'hash': '0xb8c50a989068774dfa280abfc5cb721723ca6532a62edb78765c7b332ea58540', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 15.979266857118635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xddc1c28b75ba9104', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:46:46.000Z'}}, {'blockNum': '0x6b2043', 'uniqueId': '0x50bf6127b243c9994c788c452adc2245a42059ff1aeb51197dc34b3b1e4aa5d5:log:69', 'hash': '0x50bf6127b243c9994c788c452adc2245a42059ff1aeb51197dc34b3b1e4aa5d5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 158.62326840801745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0899570e31eb525b4a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:50:24.000Z'}}, {'blockNum': '0x6b2043', 'uniqueId': '0x50bf6127b243c9994c788c452adc2245a42059ff1aeb51197dc34b3b1e4aa5d5:log:73', 'hash': '0x50bf6127b243c9994c788c452adc2245a42059ff1aeb51197dc34b3b1e4aa5d5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 158.62326840801745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0899570e31eb525b4a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:50:24.000Z'}}, {'blockNum': '0x6b2044', 'uniqueId': '0x0c4d2cce37cc69bbd193b49031f3a8b565a5ac0d84ef402ef83712d82b5c18ed:log:43', 'hash': '0x0c4d2cce37cc69bbd193b49031f3a8b565a5ac0d84ef402ef83712d82b5c18ed', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 61.912525113136226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x035b35799053efa0b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:51:22.000Z'}}, {'blockNum': '0x6b2044', 'uniqueId': '0x0c4d2cce37cc69bbd193b49031f3a8b565a5ac0d84ef402ef83712d82b5c18ed:log:47', 'hash': '0x0c4d2cce37cc69bbd193b49031f3a8b565a5ac0d84ef402ef83712d82b5c18ed', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'value': 61.912525113136226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x035b35799053efa0b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:51:22.000Z'}}, {'blockNum': '0x6b2046', 'uniqueId': '0x33b4b5fe12c7db363b70025b2caa0f8493d6661f05e9573451ff1b01973c1357:log:88', 'hash': '0x33b4b5fe12c7db363b70025b2caa0f8493d6661f05e9573451ff1b01973c1357', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 0.14342526870171737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01fd8c85a0c7e381', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:51:54.000Z'}}, {'blockNum': '0x6b2046', 'uniqueId': '0x33b4b5fe12c7db363b70025b2caa0f8493d6661f05e9573451ff1b01973c1357:log:90', 'hash': '0x33b4b5fe12c7db363b70025b2caa0f8493d6661f05e9573451ff1b01973c1357', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x33b8287511ac7f003902e83d642be4603afcd876', 'value': 0.14342526870171737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01fd8c85a0c7e381', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:51:54.000Z'}}, {'blockNum': '0x6b204b', 'uniqueId': '0x134e6c17203ddb04a2596ab32cdd14811d485fbded531f61a5441426813364bb:log:38', 'hash': '0x134e6c17203ddb04a2596ab32cdd14811d485fbded531f61a5441426813364bb', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 311.5405336787728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10e37e50c4b2df3ba0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:53:28.000Z'}}, {'blockNum': '0x6b204b', 'uniqueId': '0x134e6c17203ddb04a2596ab32cdd14811d485fbded531f61a5441426813364bb:log:42', 'hash': '0x134e6c17203ddb04a2596ab32cdd14811d485fbded531f61a5441426813364bb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 311.5405336787728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10e37e50c4b2df3ba0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:53:28.000Z'}}, {'blockNum': '0x6b204b', 'uniqueId': '0xc9ba77d5ec89d09c2facfcfba9d4494dbc920e777a911e9fd70cedfd3031a0fa:log:53', 'hash': '0xc9ba77d5ec89d09c2facfcfba9d4494dbc920e777a911e9fd70cedfd3031a0fa', 'from': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 191.23098716073633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a5ddcf1a332f97402', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:53:28.000Z'}}, {'blockNum': '0x6b204b', 'uniqueId': '0xc9ba77d5ec89d09c2facfcfba9d4494dbc920e777a911e9fd70cedfd3031a0fa:log:57', 'hash': '0xc9ba77d5ec89d09c2facfcfba9d4494dbc920e777a911e9fd70cedfd3031a0fa', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 191.23098716073633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a5ddcf1a332f97402', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:53:28.000Z'}}, {'blockNum': '0x6b2054', 'uniqueId': '0xdcb930d4a726a243f3fc541a7bf265b9fb15b68937448f235db80c31c36e6e14:log:36', 'hash': '0xdcb930d4a726a243f3fc541a7bf265b9fb15b68937448f235db80c31c36e6e14', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:55:41.000Z'}}, {'blockNum': '0x6b2054', 'uniqueId': '0xdcb930d4a726a243f3fc541a7bf265b9fb15b68937448f235db80c31c36e6e14:log:39', 'hash': '0xdcb930d4a726a243f3fc541a7bf265b9fb15b68937448f235db80c31c36e6e14', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:55:41.000Z'}}, {'blockNum': '0x6b2054', 'uniqueId': '0xdcb930d4a726a243f3fc541a7bf265b9fb15b68937448f235db80c31c36e6e14:log:41', 'hash': '0xdcb930d4a726a243f3fc541a7bf265b9fb15b68937448f235db80c31c36e6e14', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:55:41.000Z'}}, {'blockNum': '0x6b2054', 'uniqueId': '0xc12c2e89e23eddf41797a1d04b147378a310ed49ae7843c61ea4cf316ebe8a18:log:103', 'hash': '0xc12c2e89e23eddf41797a1d04b147378a310ed49ae7843c61ea4cf316ebe8a18', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 122.5310299472405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06a475aa8a30052e24', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:55:41.000Z'}}, {'blockNum': '0x6b2054', 'uniqueId': '0xc12c2e89e23eddf41797a1d04b147378a310ed49ae7843c61ea4cf316ebe8a18:log:107', 'hash': '0xc12c2e89e23eddf41797a1d04b147378a310ed49ae7843c61ea4cf316ebe8a18', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 122.5310299472405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06a475aa8a30052e24', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:55:41.000Z'}}, {'blockNum': '0x6b2085', 'uniqueId': '0xd31560204e9e29bb38f8e529887b2a2ee8697ebf0d94bdda031509e86c8fc00e:log:34', 'hash': '0xd31560204e9e29bb38f8e529887b2a2ee8697ebf0d94bdda031509e86c8fc00e', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 680.9789276932363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24ea7b26c189c47bad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:07:42.000Z'}}, {'blockNum': '0x6b2085', 'uniqueId': '0xd31560204e9e29bb38f8e529887b2a2ee8697ebf0d94bdda031509e86c8fc00e:log:38', 'hash': '0xd31560204e9e29bb38f8e529887b2a2ee8697ebf0d94bdda031509e86c8fc00e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 680.9789276932363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24ea7b26c189c47bad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:07:42.000Z'}}, {'blockNum': '0x6b2087', 'uniqueId': '0x6ed4b82682f80ed0b0ae2f00359ee058660a8cf45c7cd0b23f7761dcf5d23769:log:29', 'hash': '0x6ed4b82682f80ed0b0ae2f00359ee058660a8cf45c7cd0b23f7761dcf5d23769', 'from': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 87.032830415613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b7d2ba24af6d2a73', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:08:07.000Z'}}, {'blockNum': '0x6b2087', 'uniqueId': '0x6ed4b82682f80ed0b0ae2f00359ee058660a8cf45c7cd0b23f7761dcf5d23769:log:33', 'hash': '0x6ed4b82682f80ed0b0ae2f00359ee058660a8cf45c7cd0b23f7761dcf5d23769', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 87.032830415613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b7d2ba24af6d2a73', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:08:07.000Z'}}, {'blockNum': '0x6b208e', 'uniqueId': '0x1b02c52df0a31dbe6a98994bcab24678ee0b0004780a77510a7373302bbe0386:log:1', 'hash': '0x1b02c52df0a31dbe6a98994bcab24678ee0b0004780a77510a7373302bbe0386', 'from': '0x80af4d533d298bf79280c2c9a6646cd99925009d', 'to': '0xe8561760826c16609d346f6cd4d6a741977dc7d8', 'value': 66917.2932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e2b97fee662b6990000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:10:21.000Z'}}, {'blockNum': '0x6b2098', 'uniqueId': '0x0a074dd743e878894894ea2f398f3292262f805367fbbefb34acfc73888540e1:log:77', 'hash': '0x0a074dd743e878894894ea2f398f3292262f805367fbbefb34acfc73888540e1', 'from': '0x8c73126b85f59d85aa61391579b4c2710dd70f96', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 114.96299097908611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x063b6e973208dd4f4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:13:01.000Z'}}, {'blockNum': '0x6b2098', 'uniqueId': '0x0a074dd743e878894894ea2f398f3292262f805367fbbefb34acfc73888540e1:log:81', 'hash': '0x0a074dd743e878894894ea2f398f3292262f805367fbbefb34acfc73888540e1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 114.96299097908611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x063b6e973208dd4f4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:13:01.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0x86cc8f77e633e664c0986da45d62b874e5fdd38991cf31d8e5332a79fb46aca0:log:64', 'hash': '0x86cc8f77e633e664c0986da45d62b874e5fdd38991cf31d8e5332a79fb46aca0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 212.74416660495672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b886b1c5c3cf75877', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0x86cc8f77e633e664c0986da45d62b874e5fdd38991cf31d8e5332a79fb46aca0:log:68', 'hash': '0x86cc8f77e633e664c0986da45d62b874e5fdd38991cf31d8e5332a79fb46aca0', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 212.74416660495672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b886b1c5c3cf75877', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0x0c68074634c55f56e79a534ac472b21a0f5b953b05357febb921e88efd8aa2b9:log:79', 'hash': '0x0c68074634c55f56e79a534ac472b21a0f5b953b05357febb921e88efd8aa2b9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 237.51752766953348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ce037c4fe5f8e7d83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0x0c68074634c55f56e79a534ac472b21a0f5b953b05357febb921e88efd8aa2b9:log:83', 'hash': '0x0c68074634c55f56e79a534ac472b21a0f5b953b05357febb921e88efd8aa2b9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 237.51752766953348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ce037c4fe5f8e7d83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0x488a7c3f5b2d4bb14c7712bf0782fb95c6cc8bad1c5dc226210137a48410568f:log:90', 'hash': '0x488a7c3f5b2d4bb14c7712bf0782fb95c6cc8bad1c5dc226210137a48410568f', 'from': '0xe8561760826c16609d346f6cd4d6a741977dc7d8', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 66917.2932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e2b97fee662b6990000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0x488a7c3f5b2d4bb14c7712bf0782fb95c6cc8bad1c5dc226210137a48410568f:log:93', 'hash': '0x488a7c3f5b2d4bb14c7712bf0782fb95c6cc8bad1c5dc226210137a48410568f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 66917.2932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e2b97fee662b6990000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0x488a7c3f5b2d4bb14c7712bf0782fb95c6cc8bad1c5dc226210137a48410568f:log:94', 'hash': '0x488a7c3f5b2d4bb14c7712bf0782fb95c6cc8bad1c5dc226210137a48410568f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 66917.2932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e2b97fee662b6990000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0xbd7c6691cfde4b8fcac3f8364513a0f2d8a76c6fcffaf050c66f6aaa1d3c7de5:log:116', 'hash': '0xbd7c6691cfde4b8fcac3f8364513a0f2d8a76c6fcffaf050c66f6aaa1d3c7de5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 503.1950113408323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b473bccc5e6f7d434', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0xbd7c6691cfde4b8fcac3f8364513a0f2d8a76c6fcffaf050c66f6aaa1d3c7de5:log:120', 'hash': '0xbd7c6691cfde4b8fcac3f8364513a0f2d8a76c6fcffaf050c66f6aaa1d3c7de5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'value': 503.1950113408323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b473bccc5e6f7d434', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209e', 'uniqueId': '0x063537ce260627dc7868b7b8f4001606b7fef3db0392542d6a5e70c40bdcebb4:log:19', 'hash': '0x063537ce260627dc7868b7b8f4001606b7fef3db0392542d6a5e70c40bdcebb4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 225.21939479693518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c358c064de7c7c84e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:15:03.000Z'}}, {'blockNum': '0x6b209e', 'uniqueId': '0x063537ce260627dc7868b7b8f4001606b7fef3db0392542d6a5e70c40bdcebb4:log:23', 'hash': '0x063537ce260627dc7868b7b8f4001606b7fef3db0392542d6a5e70c40bdcebb4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'value': 225.21939479693518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c358c064de7c7c84e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:15:03.000Z'}}, {'blockNum': '0x6b20a2', 'uniqueId': '0xdce69848ae6e2a63cad097ce5a665bdc944b8fc568a23e3e98de8a2d8e080f76:log:40', 'hash': '0xdce69848ae6e2a63cad097ce5a665bdc944b8fc568a23e3e98de8a2d8e080f76', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 292.77612486270874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fdf15be5e452a6a01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:16:10.000Z'}}, {'blockNum': '0x6b20a2', 'uniqueId': '0xdce69848ae6e2a63cad097ce5a665bdc944b8fc568a23e3e98de8a2d8e080f76:log:44', 'hash': '0xdce69848ae6e2a63cad097ce5a665bdc944b8fc568a23e3e98de8a2d8e080f76', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 292.77612486270874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fdf15be5e452a6a01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:16:10.000Z'}}, {'blockNum': '0x6b20a3', 'uniqueId': '0xe19703cfa2002cc750988a99079c0d68dd252a8e6bcd6edca1fc3544cca4d1ac:log:37', 'hash': '0xe19703cfa2002cc750988a99079c0d68dd252a8e6bcd6edca1fc3544cca4d1ac', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 225.20541312235483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c355a5a0b9d0dfd0e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:16:58.000Z'}}, {'blockNum': '0x6b20a3', 'uniqueId': '0xe19703cfa2002cc750988a99079c0d68dd252a8e6bcd6edca1fc3544cca4d1ac:log:41', 'hash': '0xe19703cfa2002cc750988a99079c0d68dd252a8e6bcd6edca1fc3544cca4d1ac', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 225.20541312235483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c355a5a0b9d0dfd0e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:16:58.000Z'}}, {'blockNum': '0x6b20a3', 'uniqueId': '0xda69085de729984e87426ed10415d85c2ddb3c64a0b90c53618629a916dce588:log:58', 'hash': '0xda69085de729984e87426ed10415d85c2ddb3c64a0b90c53618629a916dce588', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 6.668580485358401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c8b8e9ea9e3b6de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:16:58.000Z'}}, {'blockNum': '0x6b20a3', 'uniqueId': '0xda69085de729984e87426ed10415d85c2ddb3c64a0b90c53618629a916dce588:log:62', 'hash': '0xda69085de729984e87426ed10415d85c2ddb3c64a0b90c53618629a916dce588', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8606704880234178125b2d44cbbe190ccdbde015', 'value': 6.668580485358401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c8b8e9ea9e3b6de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:16:58.000Z'}}, {'blockNum': '0x6b20ab', 'uniqueId': '0x5d2aedb8e688b49a459cf4c59b8feb78d2aa4444d54038ac2bd56ca2f1ca889d:log:126', 'hash': '0x5d2aedb8e688b49a459cf4c59b8feb78d2aa4444d54038ac2bd56ca2f1ca889d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 675.5792303210579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x249f8b929ad6774d2a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:19:02.000Z'}}, {'blockNum': '0x6b20ab', 'uniqueId': '0x5d2aedb8e688b49a459cf4c59b8feb78d2aa4444d54038ac2bd56ca2f1ca889d:log:130', 'hash': '0x5d2aedb8e688b49a459cf4c59b8feb78d2aa4444d54038ac2bd56ca2f1ca889d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 675.5792303210579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x249f8b929ad6774d2a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:19:02.000Z'}}, {'blockNum': '0x6b20ad', 'uniqueId': '0xc72ea731f61e0b8e68b046696618d9c974b423763c2d1066f9fa2f50d6adbe68:log:66', 'hash': '0xc72ea731f61e0b8e68b046696618d9c974b423763c2d1066f9fa2f50d6adbe68', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 968.2348481867491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x347cf5307f6d72ad0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:20:20.000Z'}}, {'blockNum': '0x6b20ad', 'uniqueId': '0xc72ea731f61e0b8e68b046696618d9c974b423763c2d1066f9fa2f50d6adbe68:log:69', 'hash': '0xc72ea731f61e0b8e68b046696618d9c974b423763c2d1066f9fa2f50d6adbe68', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'value': 968.2348481867491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x347cf5307f6d72ad0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:20:20.000Z'}}, {'blockNum': '0x6b20b4', 'uniqueId': '0x442d8a12bb9902b58b7cd5de5e37b1d663b32c0a85c91599309b221bb5a40c58:log:37', 'hash': '0x442d8a12bb9902b58b7cd5de5e37b1d663b32c0a85c91599309b221bb5a40c58', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 204.2381685792557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b125fbc38fee1f740', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:21:49.000Z'}}, {'blockNum': '0x6b20b4', 'uniqueId': '0x442d8a12bb9902b58b7cd5de5e37b1d663b32c0a85c91599309b221bb5a40c58:log:41', 'hash': '0x442d8a12bb9902b58b7cd5de5e37b1d663b32c0a85c91599309b221bb5a40c58', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc18166e01970be040d8c7761cdd1c3372ae1edf0', 'value': 204.2381685792557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b125fbc38fee1f740', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:21:49.000Z'}}, {'blockNum': '0x6b20b4', 'uniqueId': '0xf17b755578cd65998e624114902d2e52bfe931000bd5c7adf5edb37a67270e76:log:52', 'hash': '0xf17b755578cd65998e624114902d2e52bfe931000bd5c7adf5edb37a67270e76', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 799.2524529036976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b53db1f4b8085a557', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:21:49.000Z'}}, {'blockNum': '0x6b20b4', 'uniqueId': '0xf17b755578cd65998e624114902d2e52bfe931000bd5c7adf5edb37a67270e76:log:56', 'hash': '0xf17b755578cd65998e624114902d2e52bfe931000bd5c7adf5edb37a67270e76', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc18166e01970be040d8c7761cdd1c3372ae1edf0', 'value': 799.2524529036976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b53db1f4b8085a557', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:21:49.000Z'}}, {'blockNum': '0x6b20b5', 'uniqueId': '0x26d5e63722b73cdac141eca8e889f28c531eb8fc3e950a487a907ca7089de191:log:41', 'hash': '0x26d5e63722b73cdac141eca8e889f28c531eb8fc3e950a487a907ca7089de191', 'from': '0xc18166e01970be040d8c7761cdd1c3372ae1edf0', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 217.54156045794124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bcafee0a6e3c08bd7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:22:02.000Z'}}, {'blockNum': '0x6b20b5', 'uniqueId': '0x26d5e63722b73cdac141eca8e889f28c531eb8fc3e950a487a907ca7089de191:log:45', 'hash': '0x26d5e63722b73cdac141eca8e889f28c531eb8fc3e950a487a907ca7089de191', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 217.54156045794124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bcafee0a6e3c08bd7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:22:02.000Z'}}, {'blockNum': '0x6b20b7', 'uniqueId': '0x2a4e08207616c2a1968e3b307713d4b75d5b34a9f41a5c7f315484eab5a2a9d5:log:48', 'hash': '0x2a4e08207616c2a1968e3b307713d4b75d5b34a9f41a5c7f315484eab5a2a9d5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 301.6672099341672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x105a7939223d3a1c73', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:22:32.000Z'}}, {'blockNum': '0x6b20b7', 'uniqueId': '0x2a4e08207616c2a1968e3b307713d4b75d5b34a9f41a5c7f315484eab5a2a9d5:log:52', 'hash': '0x2a4e08207616c2a1968e3b307713d4b75d5b34a9f41a5c7f315484eab5a2a9d5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x599485dc0f3d8b308b973b2db5cd44bae46d31c4', 'value': 301.6672099341672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x105a7939223d3a1c73', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:22:32.000Z'}}, {'blockNum': '0x6b20bc', 'uniqueId': '0x7acc3cc65a43d9cafd557e89919385313c70359aac28fb6300122f77b72e3cb1:log:27', 'hash': '0x7acc3cc65a43d9cafd557e89919385313c70359aac28fb6300122f77b72e3cb1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 45.97285148460483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x027e0060d9c3a91994', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:23:32.000Z'}}, {'blockNum': '0x6b20bc', 'uniqueId': '0x7acc3cc65a43d9cafd557e89919385313c70359aac28fb6300122f77b72e3cb1:log:31', 'hash': '0x7acc3cc65a43d9cafd557e89919385313c70359aac28fb6300122f77b72e3cb1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5142127a6703f5fc80bf11b7b57ff68998f218e4', 'value': 45.97285148460483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x027e0060d9c3a91994', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:23:32.000Z'}}, {'blockNum': '0x6b20cb', 'uniqueId': '0xc517db2ad132a948a4b2f2d38ac3bc00bfbeda1843819a38ff3a821d7755451e:log:32', 'hash': '0xc517db2ad132a948a4b2f2d38ac3bc00bfbeda1843819a38ff3a821d7755451e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 22.512693944174604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01386d27dd679d6e05', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:26:58.000Z'}}, {'blockNum': '0x6b20cb', 'uniqueId': '0xc517db2ad132a948a4b2f2d38ac3bc00bfbeda1843819a38ff3a821d7755451e:log:36', 'hash': '0xc517db2ad132a948a4b2f2d38ac3bc00bfbeda1843819a38ff3a821d7755451e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 22.512693944174604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01386d27dd679d6e05', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:26:58.000Z'}}, {'blockNum': '0x6b20cc', 'uniqueId': '0xff26d8bd861b7132e5b198aecda568d5df93b35cae07d8aa83fe12bf111822c7:log:87', 'hash': '0xff26d8bd861b7132e5b198aecda568d5df93b35cae07d8aa83fe12bf111822c7', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 87.50063481372257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04be50b3c3cd1caebf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:28:07.000Z'}}, {'blockNum': '0x6b20cc', 'uniqueId': '0xff26d8bd861b7132e5b198aecda568d5df93b35cae07d8aa83fe12bf111822c7:log:91', 'hash': '0xff26d8bd861b7132e5b198aecda568d5df93b35cae07d8aa83fe12bf111822c7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 87.50063481372257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04be50b3c3cd1caebf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:28:07.000Z'}}, {'blockNum': '0x6b20d3', 'uniqueId': '0x2a7ea3928b37790f26ac60ea18d8af474846e0bcd879452384a646574493ed01:log:54', 'hash': '0x2a7ea3928b37790f26ac60ea18d8af474846e0bcd879452384a646574493ed01', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 22.512633203148575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01386cf09f0855cd9e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:30:10.000Z'}}, {'blockNum': '0x6b20d3', 'uniqueId': '0x2a7ea3928b37790f26ac60ea18d8af474846e0bcd879452384a646574493ed01:log:58', 'hash': '0x2a7ea3928b37790f26ac60ea18d8af474846e0bcd879452384a646574493ed01', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 22.512633203148575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01386cf09f0855cd9e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:30:10.000Z'}}, {'blockNum': '0x6b20d4', 'uniqueId': '0x2ceae8cd512f3283d11fcb95ebd11e482be0e74dc161b6fcb428f676936a71ed:log:51', 'hash': '0x2ceae8cd512f3283d11fcb95ebd11e482be0e74dc161b6fcb428f676936a71ed', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.99939564023086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c249db788fe24b2d3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:30:56.000Z'}}, {'blockNum': '0x6b20d4', 'uniqueId': '0x2ceae8cd512f3283d11fcb95ebd11e482be0e74dc161b6fcb428f676936a71ed:log:54', 'hash': '0x2ceae8cd512f3283d11fcb95ebd11e482be0e74dc161b6fcb428f676936a71ed', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'value': 223.99939564023086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c249db788fe24b2d3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:30:56.000Z'}}, {'blockNum': '0x6b20e1', 'uniqueId': '0x337a5b410415f602215bd58b01794ebbbdfb7ab8fd777f5bce0e686e7a8866ab:log:70', 'hash': '0x337a5b410415f602215bd58b01794ebbbdfb7ab8fd777f5bce0e686e7a8866ab', 'from': '0x1c0b76fb720d5885252bde0dc2227d39a71c4a74', 'to': '0xe0f2a13fb2058ad9ea9d32c3de2b9e4391d328b1', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:34:19.000Z'}}, {'blockNum': '0x6b20e7', 'uniqueId': '0x40c30697929c46e7032a1cf494da3ec79b0158dc1f015cbe1ad60e43d77e7401:log:44', 'hash': '0x40c30697929c46e7032a1cf494da3ec79b0158dc1f015cbe1ad60e43d77e7401', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2430.9416883123404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x83c817c9d6c967a10e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:35:18.000Z'}}, {'blockNum': '0x6b20e7', 'uniqueId': '0x40c30697929c46e7032a1cf494da3ec79b0158dc1f015cbe1ad60e43d77e7401:log:47', 'hash': '0x40c30697929c46e7032a1cf494da3ec79b0158dc1f015cbe1ad60e43d77e7401', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'value': 2430.9416883123404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x83c817c9d6c967a10e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:35:18.000Z'}}, {'blockNum': '0x6b20ec', 'uniqueId': '0x47f1dc0711d4d94bb2589addc3260576b0e8934d909a0484bdafb6574c94a73f:log:1', 'hash': '0x47f1dc0711d4d94bb2589addc3260576b0e8934d909a0484bdafb6574c94a73f', 'from': '0xe0f2a13fb2058ad9ea9d32c3de2b9e4391d328b1', 'to': '0x2fa2bc2ce6a4f92952921a4caa46b3727d24a1ec', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:37:06.000Z'}}, {'blockNum': '0x6b20f0', 'uniqueId': '0xf895cfcd69f6f2e6b73104ac98d8c1a52ef5c177191e118636b209e82633bd47:log:45', 'hash': '0xf895cfcd69f6f2e6b73104ac98d8c1a52ef5c177191e118636b209e82633bd47', 'from': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'to': '0x77521132fad812cedb7dd5b4f34835e71821b4eb', 'value': 3623.17593213932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc469aab1df34ff00eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:37:49.000Z'}}, {'blockNum': '0x6b20f0', 'uniqueId': '0x3cde351f5a6c657adf527dbf171a4a1072bfdd38a499ee8c378cf1516237f4c6:log:60', 'hash': '0x3cde351f5a6c657adf527dbf171a4a1072bfdd38a499ee8c378cf1516237f4c6', 'from': '0xc7151af2e9d1a702a61fcb655e2334bfee5b5faf', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 100.88583067525013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x057812787bac7dcb9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:37:49.000Z'}}, {'blockNum': '0x6b20f0', 'uniqueId': '0x3cde351f5a6c657adf527dbf171a4a1072bfdd38a499ee8c378cf1516237f4c6:log:64', 'hash': '0x3cde351f5a6c657adf527dbf171a4a1072bfdd38a499ee8c378cf1516237f4c6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 100.88583067525013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x057812787bac7dcb9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:37:49.000Z'}}, {'blockNum': '0x6b20f3', 'uniqueId': '0xc4550be8d8ed41fbe84d830a5bbceeacd37c946928a904756e3d567ee7e083ce:log:39', 'hash': '0xc4550be8d8ed41fbe84d830a5bbceeacd37c946928a904756e3d567ee7e083ce', 'from': '0x77521132fad812cedb7dd5b4f34835e71821b4eb', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc46739a885f83c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:38:30.000Z'}}, {'blockNum': '0x6b20f3', 'uniqueId': '0xc4550be8d8ed41fbe84d830a5bbceeacd37c946928a904756e3d567ee7e083ce:log:42', 'hash': '0xc4550be8d8ed41fbe84d830a5bbceeacd37c946928a904756e3d567ee7e083ce', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 3623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc46739a885f83c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:38:30.000Z'}}, {'blockNum': '0x6b2101', 'uniqueId': '0x9b00bf4129ea3048237696b51a233d1526555efd2339b696f243a4bf6f20339d:log:78', 'hash': '0x9b00bf4129ea3048237696b51a233d1526555efd2339b696f243a4bf6f20339d', 'from': '0x6b431a7a99780819473722161ee9145e5649c5e2', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 758.9372279460495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29245eabcb8ff19c5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:41:44.000Z'}}, {'blockNum': '0x6b2101', 'uniqueId': '0x9b00bf4129ea3048237696b51a233d1526555efd2339b696f243a4bf6f20339d:log:80', 'hash': '0x9b00bf4129ea3048237696b51a233d1526555efd2339b696f243a4bf6f20339d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 758.9372279460495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29245eabcb8ff19c5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:41:44.000Z'}}, {'blockNum': '0x6b2105', 'uniqueId': '0xc7c387e236824d9db54bfa14ef7e534f6a3c6efcac537574bd467d55e4658c48:log:32', 'hash': '0xc7c387e236824d9db54bfa14ef7e534f6a3c6efcac537574bd467d55e4658c48', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 363.5402720220456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13b5227f48fee82f05', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:43:50.000Z'}}, {'blockNum': '0x6b2105', 'uniqueId': '0xc7c387e236824d9db54bfa14ef7e534f6a3c6efcac537574bd467d55e4658c48:log:36', 'hash': '0xc7c387e236824d9db54bfa14ef7e534f6a3c6efcac537574bd467d55e4658c48', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'value': 363.5402720220456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13b5227f48fee82f05', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:43:50.000Z'}}, {'blockNum': '0x6b2124', 'uniqueId': '0xab752b07aa52afbd8b407431ed43bd85a2ffae2f49c098e1a1db57c9e09be135:log:34', 'hash': '0xab752b07aa52afbd8b407431ed43bd85a2ffae2f49c098e1a1db57c9e09be135', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 675.3159367928558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x249be42a893251780f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:51:18.000Z'}}, {'blockNum': '0x6b2124', 'uniqueId': '0xab752b07aa52afbd8b407431ed43bd85a2ffae2f49c098e1a1db57c9e09be135:log:37', 'hash': '0xab752b07aa52afbd8b407431ed43bd85a2ffae2f49c098e1a1db57c9e09be135', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'value': 675.3159367928558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x249be42a893251780f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:51:18.000Z'}}, {'blockNum': '0x6b2127', 'uniqueId': '0x74bcc6f48aaa8834529223b6e3345b8a6e462a7bb3686eb39cb4b624464354c2:log:106', 'hash': '0x74bcc6f48aaa8834529223b6e3345b8a6e462a7bb3686eb39cb4b624464354c2', 'from': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 675.0280985191921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2497e58f26abd40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:51:58.000Z'}}, {'blockNum': '0x6b2129', 'uniqueId': '0x140ca546279ff2ce0938b732962e46ef14b4b760e118b177dd3e38c912310990:log:8', 'hash': '0x140ca546279ff2ce0938b732962e46ef14b4b760e118b177dd3e38c912310990', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 225.0465452170869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3325f086f959345f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:52:35.000Z'}}, {'blockNum': '0x6b2129', 'uniqueId': '0x140ca546279ff2ce0938b732962e46ef14b4b760e118b177dd3e38c912310990:log:12', 'hash': '0x140ca546279ff2ce0938b732962e46ef14b4b760e118b177dd3e38c912310990', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 225.0465452170869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3325f086f959345f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:52:35.000Z'}}, {'blockNum': '0x6b2131', 'uniqueId': '0x42b29a73d326b8cd12caea37b3a7b771e009fbcf1f8d1792c93a1ceeedd2201b:log:20', 'hash': '0x42b29a73d326b8cd12caea37b3a7b771e009fbcf1f8d1792c93a1ceeedd2201b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 225.01704366703925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c32bd2106166f4b8e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:54:18.000Z'}}, {'blockNum': '0x6b2131', 'uniqueId': '0x42b29a73d326b8cd12caea37b3a7b771e009fbcf1f8d1792c93a1ceeedd2201b:log:24', 'hash': '0x42b29a73d326b8cd12caea37b3a7b771e009fbcf1f8d1792c93a1ceeedd2201b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe0569fd1c3f0affd7e08131a16c06f3381c9355a', 'value': 225.01704366703925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c32bd2106166f4b8e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:54:18.000Z'}}, {'blockNum': '0x6b2132', 'uniqueId': '0x67426a102b55aee7eb3658eb3512fe186e5ac1c1c831a998b1e2a8ada0294333:log:26', 'hash': '0x67426a102b55aee7eb3658eb3512fe186e5ac1c1c831a998b1e2a8ada0294333', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5.629694425699801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4e20b140b5d557ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:54:29.000Z'}}, {'blockNum': '0x6b2132', 'uniqueId': '0x67426a102b55aee7eb3658eb3512fe186e5ac1c1c831a998b1e2a8ada0294333:log:30', 'hash': '0x67426a102b55aee7eb3658eb3512fe186e5ac1c1c831a998b1e2a8ada0294333', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 5.629694425699801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4e20b140b5d557ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:54:29.000Z'}}, {'blockNum': '0x6b214a', 'uniqueId': '0xde2e51a488003e4e866c54e8d1ee3d214587d1ce5f6b285fa25e0cd7d9e11583:log:18', 'hash': '0xde2e51a488003e4e866c54e8d1ee3d214587d1ce5f6b285fa25e0cd7d9e11583', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 13.066621208635326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb555f6c2634b3e26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:00:29.000Z'}}, {'blockNum': '0x6b214a', 'uniqueId': '0xde2e51a488003e4e866c54e8d1ee3d214587d1ce5f6b285fa25e0cd7d9e11583:log:22', 'hash': '0xde2e51a488003e4e866c54e8d1ee3d214587d1ce5f6b285fa25e0cd7d9e11583', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 13.066621208635326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb555f6c2634b3e26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:00:29.000Z'}}, {'blockNum': '0x6b214b', 'uniqueId': '0xc70d2d9a2518a281c8bd7a41bbc40e260735ea2f6f5a0cc77413681dfae5daed:log:52', 'hash': '0xc70d2d9a2518a281c8bd7a41bbc40e260735ea2f6f5a0cc77413681dfae5daed', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 443.5030042122533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x180ad7308d29edb9d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:00:50.000Z'}}, {'blockNum': '0x6b214b', 'uniqueId': '0xc70d2d9a2518a281c8bd7a41bbc40e260735ea2f6f5a0cc77413681dfae5daed:log:56', 'hash': '0xc70d2d9a2518a281c8bd7a41bbc40e260735ea2f6f5a0cc77413681dfae5daed', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 443.5030042122533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x180ad7308d29edb9d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:00:50.000Z'}}, {'blockNum': '0x6b215c', 'uniqueId': '0x90d824021067e17f88abf0d33ba73912fd227959ca8d838fde80b92a466941b8:log:27', 'hash': '0x90d824021067e17f88abf0d33ba73912fd227959ca8d838fde80b92a466941b8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 248.63974774886333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d7a91d53a4dbaeedc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:05:56.000Z'}}, {'blockNum': '0x6b215c', 'uniqueId': '0x90d824021067e17f88abf0d33ba73912fd227959ca8d838fde80b92a466941b8:log:31', 'hash': '0x90d824021067e17f88abf0d33ba73912fd227959ca8d838fde80b92a466941b8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 248.63974774886333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d7a91d53a4dbaeedc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:05:56.000Z'}}, {'blockNum': '0x6b215c', 'uniqueId': '0x000557f1bfeb82ac7d448babc5319b83566567332b295385a795d238f4d3b456:log:47', 'hash': '0x000557f1bfeb82ac7d448babc5319b83566567332b295385a795d238f4d3b456', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 639.0709469270865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22a4e418498581b903', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:05:56.000Z'}}, {'blockNum': '0x6b215c', 'uniqueId': '0x000557f1bfeb82ac7d448babc5319b83566567332b295385a795d238f4d3b456:log:51', 'hash': '0x000557f1bfeb82ac7d448babc5319b83566567332b295385a795d238f4d3b456', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 639.0709469270865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22a4e418498581b903', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:05:56.000Z'}}, {'blockNum': '0x6b215e', 'uniqueId': '0x5cd315c9ae69dcf45bab89b7154690f1044b052515a89265e8f9a4da493c8ea8:log:45', 'hash': '0x5cd315c9ae69dcf45bab89b7154690f1044b052515a89265e8f9a4da493c8ea8', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 251.54894650194086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0da2f162147fecb6d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:06:46.000Z'}}, {'blockNum': '0x6b215e', 'uniqueId': '0x5cd315c9ae69dcf45bab89b7154690f1044b052515a89265e8f9a4da493c8ea8:log:49', 'hash': '0x5cd315c9ae69dcf45bab89b7154690f1044b052515a89265e8f9a4da493c8ea8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 251.54894650194086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0da2f162147fecb6d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:06:46.000Z'}}, {'blockNum': '0x6b215f', 'uniqueId': '0x25204f9f72200552bc36f63293b87da18d385b6ce5effc8b29e9e5733dfd5425:log:12', 'hash': '0x25204f9f72200552bc36f63293b87da18d385b6ce5effc8b29e9e5733dfd5425', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 366.33054442073137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13dbdb893f8d26107b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:06:50.000Z'}}, {'blockNum': '0x6b215f', 'uniqueId': '0x25204f9f72200552bc36f63293b87da18d385b6ce5effc8b29e9e5733dfd5425:log:16', 'hash': '0x25204f9f72200552bc36f63293b87da18d385b6ce5effc8b29e9e5733dfd5425', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'value': 366.33054442073137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13dbdb893f8d26107b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:06:50.000Z'}}, {'blockNum': '0x6b2165', 'uniqueId': '0x606c21ea67ca32e5770051b4d23df9274f6a36719ed64ffbc2b98dc0e37c1f1d:log:34', 'hash': '0x606c21ea67ca32e5770051b4d23df9274f6a36719ed64ffbc2b98dc0e37c1f1d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 956.2840671776211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33d71b7c7ce7e349b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:07:58.000Z'}}, {'blockNum': '0x6b2165', 'uniqueId': '0x606c21ea67ca32e5770051b4d23df9274f6a36719ed64ffbc2b98dc0e37c1f1d:log:37', 'hash': '0x606c21ea67ca32e5770051b4d23df9274f6a36719ed64ffbc2b98dc0e37c1f1d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'value': 956.2840671776211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33d71b7c7ce7e349b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:07:58.000Z'}}, {'blockNum': '0x6b2168', 'uniqueId': '0x238fa317f910322a113bc15dfbb33a268df747fd6691dda213ac2134f471c364:log:21', 'hash': '0x238fa317f910322a113bc15dfbb33a268df747fd6691dda213ac2134f471c364', 'from': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 955.9719028190431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33d2c674a85f500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:08:22.000Z'}}, {'blockNum': '0x6b2172', 'uniqueId': '0xf1626cbba5f89f8e7f0c4aabe51e3957a83911fafbd52e5e8ffe0e9a60d8b2fc:log:37', 'hash': '0xf1626cbba5f89f8e7f0c4aabe51e3957a83911fafbd52e5e8ffe0e9a60d8b2fc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 449.93219237446544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186410411f24bb9c41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:10:00.000Z'}}, {'blockNum': '0x6b2172', 'uniqueId': '0xf1626cbba5f89f8e7f0c4aabe51e3957a83911fafbd52e5e8ffe0e9a60d8b2fc:log:41', 'hash': '0xf1626cbba5f89f8e7f0c4aabe51e3957a83911fafbd52e5e8ffe0e9a60d8b2fc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa2630fc0233940779f25dfdcff3abbdc85682a4c', 'value': 449.93219237446544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186410411f24bb9c41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:10:00.000Z'}}, {'blockNum': '0x6b2174', 'uniqueId': '0xeebc23a690facbfefd899ae2e07293c3c64efc690a6390a4ceb644216eb19575:log:8', 'hash': '0xeebc23a690facbfefd899ae2e07293c3c64efc690a6390a4ceb644216eb19575', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1631.000001338235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x586aac03cf0b240000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:10:22.000Z'}}, {'blockNum': '0x6b2177', 'uniqueId': '0xaf9656f657e45cde59272a75c210e3d52877278ea2d429773abf5678679cb804:log:51', 'hash': '0xaf9656f657e45cde59272a75c210e3d52877278ea2d429773abf5678679cb804', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4.955927942861371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44c6fe34d6af36ff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:11:19.000Z'}}, {'blockNum': '0x6b2177', 'uniqueId': '0xaf9656f657e45cde59272a75c210e3d52877278ea2d429773abf5678679cb804:log:55', 'hash': '0xaf9656f657e45cde59272a75c210e3d52877278ea2d429773abf5678679cb804', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'value': 4.955927942861371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44c6fe34d6af36ff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:11:19.000Z'}}, {'blockNum': '0x6b2179', 'uniqueId': '0x60832f9ef7779f3269c6b0be15ab2c4c4016a00856ae423581c050897345729f:log:45', 'hash': '0x60832f9ef7779f3269c6b0be15ab2c4c4016a00856ae423581c050897345729f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5799.295050109141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013a6162da179c7dd3ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:11:57.000Z'}}, {'blockNum': '0x6b2179', 'uniqueId': '0x60832f9ef7779f3269c6b0be15ab2c4c4016a00856ae423581c050897345729f:log:49', 'hash': '0x60832f9ef7779f3269c6b0be15ab2c4c4016a00856ae423581c050897345729f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 5799.295050109141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013a6162da179c7dd3ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:11:57.000Z'}}, {'blockNum': '0x6b2184', 'uniqueId': '0x68e3029cbf8c4e99ce64a8d0a12bfc088b90495724c8621c769debf282019e03:log:24', 'hash': '0x68e3029cbf8c4e99ce64a8d0a12bfc088b90495724c8621c769debf282019e03', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 448.334212364201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x184de316c4cebec41f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:15:49.000Z'}}, {'blockNum': '0x6b2184', 'uniqueId': '0x68e3029cbf8c4e99ce64a8d0a12bfc088b90495724c8621c769debf282019e03:log:28', 'hash': '0x68e3029cbf8c4e99ce64a8d0a12bfc088b90495724c8621c769debf282019e03', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 448.334212364201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x184de316c4cebec41f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:15:49.000Z'}}, {'blockNum': '0x6b218c', 'uniqueId': '0x5e65590f594be32ab51a83439a01636b6f20bf553802ca47dcb8997f48989c63:log:116', 'hash': '0x5e65590f594be32ab51a83439a01636b6f20bf553802ca47dcb8997f48989c63', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2317.9142532740357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7da785ac8445b79d0e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:18:26.000Z'}}, {'blockNum': '0x6b218c', 'uniqueId': '0x5e65590f594be32ab51a83439a01636b6f20bf553802ca47dcb8997f48989c63:log:120', 'hash': '0x5e65590f594be32ab51a83439a01636b6f20bf553802ca47dcb8997f48989c63', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2317.9142532740357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7da785ac8445b79d0e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:18:26.000Z'}}, {'blockNum': '0x6b2194', 'uniqueId': '0x31f000544b6c0adf8f630dcee72a89be83a847e0f778945173776aefa6289d16:log:35', 'hash': '0x31f000544b6c0adf8f630dcee72a89be83a847e0f778945173776aefa6289d16', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:22:28.000Z'}}, {'blockNum': '0x6b2194', 'uniqueId': '0x31f000544b6c0adf8f630dcee72a89be83a847e0f778945173776aefa6289d16:log:38', 'hash': '0x31f000544b6c0adf8f630dcee72a89be83a847e0f778945173776aefa6289d16', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:22:28.000Z'}}, {'blockNum': '0x6b2194', 'uniqueId': '0x31f000544b6c0adf8f630dcee72a89be83a847e0f778945173776aefa6289d16:log:40', 'hash': '0x31f000544b6c0adf8f630dcee72a89be83a847e0f778945173776aefa6289d16', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:22:28.000Z'}}, {'blockNum': '0x6b21a3', 'uniqueId': '0x2d523e7f3240bf3919eb89ae513022ae800e113a52bda6ca7b2dae15afef3d34:log:13', 'hash': '0x2d523e7f3240bf3919eb89ae513022ae800e113a52bda6ca7b2dae15afef3d34', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 337.27528199371903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248a2820323537602', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:27:27.000Z'}}, {'blockNum': '0x6b21a3', 'uniqueId': '0x2d523e7f3240bf3919eb89ae513022ae800e113a52bda6ca7b2dae15afef3d34:log:17', 'hash': '0x2d523e7f3240bf3919eb89ae513022ae800e113a52bda6ca7b2dae15afef3d34', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'value': 337.27528199371903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248a2820323537602', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:27:27.000Z'}}, {'blockNum': '0x6b21b6', 'uniqueId': '0x48b359a83d7d902a691b6141ecad3c8b719bdf8c3b931eee31f463163bcecff5:log:102', 'hash': '0x48b359a83d7d902a691b6141ecad3c8b719bdf8c3b931eee31f463163bcecff5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 220.3687680140115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf23b22f1e99e3de5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:32:03.000Z'}}, {'blockNum': '0x6b21b6', 'uniqueId': '0x48b359a83d7d902a691b6141ecad3c8b719bdf8c3b931eee31f463163bcecff5:log:106', 'hash': '0x48b359a83d7d902a691b6141ecad3c8b719bdf8c3b931eee31f463163bcecff5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 220.3687680140115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf23b22f1e99e3de5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:32:03.000Z'}}, {'blockNum': '0x6b21d0', 'uniqueId': '0x1d89e00a0afc9a5d03e04726d0df5f9d112bf63513a19d95fbb6760e867e5319:log:73', 'hash': '0x1d89e00a0afc9a5d03e04726d0df5f9d112bf63513a19d95fbb6760e867e5319', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 337.28786489545746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248cf36183fb00b92', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:37:46.000Z'}}, {'blockNum': '0x6b21d0', 'uniqueId': '0x1d89e00a0afc9a5d03e04726d0df5f9d112bf63513a19d95fbb6760e867e5319:log:77', 'hash': '0x1d89e00a0afc9a5d03e04726d0df5f9d112bf63513a19d95fbb6760e867e5319', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa7a402266ceea0652ea8eafd919d619d16bee134', 'value': 337.28786489545746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248cf36183fb00b92', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:37:46.000Z'}}, {'blockNum': '0x6b21d8', 'uniqueId': '0xb5a3195875d39cf7e53bcc7b7076acf4e048976500144072def1f4b5fa86d388:log:84', 'hash': '0xb5a3195875d39cf7e53bcc7b7076acf4e048976500144072def1f4b5fa86d388', 'from': '0x99f357f722ec3e456af0eb530c1c14a3251305ad', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 162.40111236231851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08cdc4a7416c4b7195', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:39:48.000Z'}}, {'blockNum': '0x6b21d8', 'uniqueId': '0xb5a3195875d39cf7e53bcc7b7076acf4e048976500144072def1f4b5fa86d388:log:88', 'hash': '0xb5a3195875d39cf7e53bcc7b7076acf4e048976500144072def1f4b5fa86d388', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 162.40111236231851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08cdc4a7416c4b7195', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:39:48.000Z'}}, {'blockNum': '0x6b21e1', 'uniqueId': '0x09c0d1443618333e3e7da184d7e738997b1547bd6f309349053da9246e2fd00a:log:56', 'hash': '0x09c0d1443618333e3e7da184d7e738997b1547bd6f309349053da9246e2fd00a', 'from': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1592.8932121170208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5659d580e915f7c80a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:42:28.000Z'}}, {'blockNum': '0x6b21e1', 'uniqueId': '0x09c0d1443618333e3e7da184d7e738997b1547bd6f309349053da9246e2fd00a:log:60', 'hash': '0x09c0d1443618333e3e7da184d7e738997b1547bd6f309349053da9246e2fd00a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1592.8932121170208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5659d580e915f7c80a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:42:28.000Z'}}, {'blockNum': '0x6b21e1', 'uniqueId': '0x3cc6b8b9232cf10dc0bc04d52bd4aa5b0c4c00cfa05852f9fe88f6ef3f17a767:log:89', 'hash': '0x3cc6b8b9232cf10dc0bc04d52bd4aa5b0c4c00cfa05852f9fe88f6ef3f17a767', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 449.7905451707992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18621905bd8ac67dda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:42:28.000Z'}}, {'blockNum': '0x6b21e1', 'uniqueId': '0x3cc6b8b9232cf10dc0bc04d52bd4aa5b0c4c00cfa05852f9fe88f6ef3f17a767:log:93', 'hash': '0x3cc6b8b9232cf10dc0bc04d52bd4aa5b0c4c00cfa05852f9fe88f6ef3f17a767', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'value': 449.7905451707992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18621905bd8ac67dda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:42:28.000Z'}}, {'blockNum': '0x6b21e6', 'uniqueId': '0xe8bce40d13352ec8bb0e7c79cb8c12591c403994bfe40e933fa6e1c6dc0b7502:log:62', 'hash': '0xe8bce40d13352ec8bb0e7c79cb8c12591c403994bfe40e933fa6e1c6dc0b7502', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x31dfe0a93d0b67d77723ab7d3b3a5755cf20a59c', 'value': 3092.67100305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa7a76e9399ca442400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:44:42.000Z'}}, {'blockNum': '0x6b2219', 'uniqueId': '0xfcc88391081760716be2761806ddd1ee6fa7af0d8aa0c3d75a8da7e8ef7cffef:log:84', 'hash': '0xfcc88391081760716be2761806ddd1ee6fa7af0d8aa0c3d75a8da7e8ef7cffef', 'from': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 447.34544373118786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18402a46ef8ef2a98b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:56:27.000Z'}}, {'blockNum': '0x6b2219', 'uniqueId': '0xfcc88391081760716be2761806ddd1ee6fa7af0d8aa0c3d75a8da7e8ef7cffef:log:88', 'hash': '0xfcc88391081760716be2761806ddd1ee6fa7af0d8aa0c3d75a8da7e8ef7cffef', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 447.34544373118786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18402a46ef8ef2a98b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:56:27.000Z'}}, {'blockNum': '0x6b2226', 'uniqueId': '0x7c36c6a41c7149c638938c60e4fc71d0787c99e63cc293db3187e04ee8219196:log:84', 'hash': '0x7c36c6a41c7149c638938c60e4fc71d0787c99e63cc293db3187e04ee8219196', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 618.455568277443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2186cb8ea15b54f189', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:02:17.000Z'}}, {'blockNum': '0x6b2226', 'uniqueId': '0x7c36c6a41c7149c638938c60e4fc71d0787c99e63cc293db3187e04ee8219196:log:87', 'hash': '0x7c36c6a41c7149c638938c60e4fc71d0787c99e63cc293db3187e04ee8219196', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x33c89e7a1e860ddeb10847200975df2f92f099ad', 'value': 618.455568277443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2186cb8ea15b54f189', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:02:17.000Z'}}, {'blockNum': '0x6b222b', 'uniqueId': '0xc7c50202c628b60f4b3fe20c87433442e56be08d2b60cb9627c82fa82d972dfb:log:54', 'hash': '0xc7c50202c628b60f4b3fe20c87433442e56be08d2b60cb9627c82fa82d972dfb', 'from': '0x33c89e7a1e860ddeb10847200975df2f92f099ad', 'to': '0xa291acae6e80a0c6fd51b984eb7152986b28b666', 'value': 619.1876224039456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2190f455fad1e237a0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:03:38.000Z'}}, {'blockNum': '0x6b2231', 'uniqueId': '0xf94c85987fcbc0ac2d7a9088b67f11e47fb123a1b98bf67c04275dff131470b6:log:102', 'hash': '0xf94c85987fcbc0ac2d7a9088b67f11e47fb123a1b98bf67c04275dff131470b6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 112.44154273566114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0618709b6093fcb0bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:05:00.000Z'}}, {'blockNum': '0x6b2231', 'uniqueId': '0xf94c85987fcbc0ac2d7a9088b67f11e47fb123a1b98bf67c04275dff131470b6:log:105', 'hash': '0xf94c85987fcbc0ac2d7a9088b67f11e47fb123a1b98bf67c04275dff131470b6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9d7f8a2ab92ab0119e32972e3c78ed6e38042871', 'value': 112.44154273566114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0618709b6093fcb0bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:05:00.000Z'}}, {'blockNum': '0x6b223a', 'uniqueId': '0x27f24ec3a224b63e43dbc14f355493a3678eb785b6fefb23e313ae073caee4fb:log:33', 'hash': '0x27f24ec3a224b63e43dbc14f355493a3678eb785b6fefb23e313ae073caee4fb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 7.196207150608628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x63de1046be273806', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:06:36.000Z'}}, {'blockNum': '0x6b223a', 'uniqueId': '0x27f24ec3a224b63e43dbc14f355493a3678eb785b6fefb23e313ae073caee4fb:log:36', 'hash': '0x27f24ec3a224b63e43dbc14f355493a3678eb785b6fefb23e313ae073caee4fb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdc8d71fde487566538c780207d2a2b988be44b31', 'value': 7.196207150608628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x63de1046be273806', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:06:36.000Z'}}, {'blockNum': '0x6b223d', 'uniqueId': '0xe5a7ddff482f804260ae38c460255c963a9e68cd696234d6b79d3d4d5da58364:log:38', 'hash': '0xe5a7ddff482f804260ae38c460255c963a9e68cd696234d6b79d3d4d5da58364', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 140.8442658952499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07a29b599b59089ab1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:07:16.000Z'}}, {'blockNum': '0x6b223d', 'uniqueId': '0xe5a7ddff482f804260ae38c460255c963a9e68cd696234d6b79d3d4d5da58364:log:42', 'hash': '0xe5a7ddff482f804260ae38c460255c963a9e68cd696234d6b79d3d4d5da58364', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 140.8442658952499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07a29b599b59089ab1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:07:16.000Z'}}, {'blockNum': '0x6b2241', 'uniqueId': '0xb216d2a2f9e3233066588f716f5e2d384f72d04ac47a5f9783cb4fa4b1f4b231:log:68', 'hash': '0xb216d2a2f9e3233066588f716f5e2d384f72d04ac47a5f9783cb4fa4b1f4b231', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 112.30871389938335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x061698b44121b8758e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:09:54.000Z'}}, {'blockNum': '0x6b2241', 'uniqueId': '0xb216d2a2f9e3233066588f716f5e2d384f72d04ac47a5f9783cb4fa4b1f4b231:log:70', 'hash': '0xb216d2a2f9e3233066588f716f5e2d384f72d04ac47a5f9783cb4fa4b1f4b231', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 112.30871389938335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x061698b44121b8758e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:09:54.000Z'}}, {'blockNum': '0x6b2243', 'uniqueId': '0x2ca74251bff9e8aacfe5f07ec560df31bfb4ffde140cc41a18e3cd4738e044b6:log:18', 'hash': '0x2ca74251bff9e8aacfe5f07ec560df31bfb4ffde140cc41a18e3cd4738e044b6', 'from': '0x9d7f8a2ab92ab0119e32972e3c78ed6e38042871', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06124fee993bc00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:10:04.000Z'}}, {'blockNum': '0x6b2243', 'uniqueId': '0x2ca74251bff9e8aacfe5f07ec560df31bfb4ffde140cc41a18e3cd4738e044b6:log:21', 'hash': '0x2ca74251bff9e8aacfe5f07ec560df31bfb4ffde140cc41a18e3cd4738e044b6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06124fee993bc00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:10:04.000Z'}}, {'blockNum': '0x6b2248', 'uniqueId': '0x474ff7a8f45c8319fa99743759394cea619b59bdca5e4be9164d469c5379f141:log:89', 'hash': '0x474ff7a8f45c8319fa99743759394cea619b59bdca5e4be9164d469c5379f141', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'value': 1214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x41cfa267f3cc380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:11:27.000Z'}}, {'blockNum': '0x6b224b', 'uniqueId': '0xc7be9f36b05cae520ef70fa18881102d2d1bfaaefaaaf80756691dc68a980260:log:36', 'hash': '0xc7be9f36b05cae520ef70fa18881102d2d1bfaaefaaaf80756691dc68a980260', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 157.42025422284362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0888a5172adc47a2b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:12:15.000Z'}}, {'blockNum': '0x6b224b', 'uniqueId': '0xc7be9f36b05cae520ef70fa18881102d2d1bfaaefaaaf80756691dc68a980260:log:40', 'hash': '0xc7be9f36b05cae520ef70fa18881102d2d1bfaaefaaaf80756691dc68a980260', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x83e240d1cbc6ec7f394cd6ba5ed01b7fcdf44ed5', 'value': 157.42025422284362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0888a5172adc47a2b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:12:15.000Z'}}, {'blockNum': '0x6b224d', 'uniqueId': '0x9083f8a2b613bf5450cacd0cf26c1fdb91727d96832b3efae431cc2fae806e0c:log:57', 'hash': '0x9083f8a2b613bf5450cacd0cf26c1fdb91727d96832b3efae431cc2fae806e0c', 'from': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x41cfa267f3cc380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:13:00.000Z'}}, {'blockNum': '0x6b224d', 'uniqueId': '0x9083f8a2b613bf5450cacd0cf26c1fdb91727d96832b3efae431cc2fae806e0c:log:60', 'hash': '0x9083f8a2b613bf5450cacd0cf26c1fdb91727d96832b3efae431cc2fae806e0c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x41cfa267f3cc380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:13:00.000Z'}}, {'blockNum': '0x6b224d', 'uniqueId': '0x9083f8a2b613bf5450cacd0cf26c1fdb91727d96832b3efae431cc2fae806e0c:log:61', 'hash': '0x9083f8a2b613bf5450cacd0cf26c1fdb91727d96832b3efae431cc2fae806e0c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x41cfa267f3cc380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:13:00.000Z'}}, {'blockNum': '0x6b2256', 'uniqueId': '0x8b0801cf889383b29be48173c3159a5680af7e342960f9f7748eff7de7988feb:log:74', 'hash': '0x8b0801cf889383b29be48173c3159a5680af7e342960f9f7748eff7de7988feb', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 649.366817124029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2333c65fae73cb3fbb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:15:08.000Z'}}, {'blockNum': '0x6b2256', 'uniqueId': '0x8b0801cf889383b29be48173c3159a5680af7e342960f9f7748eff7de7988feb:log:78', 'hash': '0x8b0801cf889383b29be48173c3159a5680af7e342960f9f7748eff7de7988feb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 649.366817124029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2333c65fae73cb3fbb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:15:08.000Z'}}, {'blockNum': '0x6b2260', 'uniqueId': '0xf77e3e7827a3a8e742cf5438225486bdda4238a5c8cd8ec33b7f5a2cd2a0ce96:log:89', 'hash': '0xf77e3e7827a3a8e742cf5438225486bdda4238a5c8cd8ec33b7f5a2cd2a0ce96', 'from': '0x7172c5b24bdce3b93a78c53ef1ece011b0472c1b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 0.1519136673519275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021bb4acf309dab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:16:30.000Z'}}, {'blockNum': '0x6b2260', 'uniqueId': '0xf77e3e7827a3a8e742cf5438225486bdda4238a5c8cd8ec33b7f5a2cd2a0ce96:log:93', 'hash': '0xf77e3e7827a3a8e742cf5438225486bdda4238a5c8cd8ec33b7f5a2cd2a0ce96', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x303a839d243cba9dd65ca95b8db2837833e38791', 'value': 0.1519136673519275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021bb4acf309dab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:16:30.000Z'}}, {'blockNum': '0x6b2261', 'uniqueId': '0x7a24a1f694514bb74392abb252efbf78fdee99120f8855f07fbd6d5355068b97:log:12', 'hash': '0x7a24a1f694514bb74392abb252efbf78fdee99120f8855f07fbd6d5355068b97', 'from': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 570.8585444895023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ef240f5accd4f4673', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:16:39.000Z'}}, {'blockNum': '0x6b2261', 'uniqueId': '0x7a24a1f694514bb74392abb252efbf78fdee99120f8855f07fbd6d5355068b97:log:15', 'hash': '0x7a24a1f694514bb74392abb252efbf78fdee99120f8855f07fbd6d5355068b97', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 570.8585444895023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ef240f5accd4f4673', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:16:39.000Z'}}, {'blockNum': '0x6b2265', 'uniqueId': '0xf7a0b7a3055fb97a6b1044064ef424933ec3909e490f35d97078ac0f60fe6489:log:24', 'hash': '0xf7a0b7a3055fb97a6b1044064ef424933ec3909e490f35d97078ac0f60fe6489', 'from': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 226.90985702325062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c4d01c0be21873c09', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:17:58.000Z'}}, {'blockNum': '0x6b2265', 'uniqueId': '0xf7a0b7a3055fb97a6b1044064ef424933ec3909e490f35d97078ac0f60fe6489:log:27', 'hash': '0xf7a0b7a3055fb97a6b1044064ef424933ec3909e490f35d97078ac0f60fe6489', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 226.90985702325062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c4d01c0be21873c09', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:17:58.000Z'}}, {'blockNum': '0x6b2265', 'uniqueId': '0x35bd3ade5be66fe3767f756a87d37e8281cd532993cc3d65c09d8365b5b71017:log:45', 'hash': '0x35bd3ade5be66fe3767f756a87d37e8281cd532993cc3d65c09d8365b5b71017', 'from': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 228.98463217018323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c69ccd5bf0741aef4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:17:58.000Z'}}, {'blockNum': '0x6b2265', 'uniqueId': '0x35bd3ade5be66fe3767f756a87d37e8281cd532993cc3d65c09d8365b5b71017:log:48', 'hash': '0x35bd3ade5be66fe3767f756a87d37e8281cd532993cc3d65c09d8365b5b71017', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 228.98463217018323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c69ccd5bf0741aef4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:17:58.000Z'}}, {'blockNum': '0x6b2268', 'uniqueId': '0xe9a130735e47bc8f81c5e5408702ff56b03dc24eddcd033c308d72583fedb080:log:4', 'hash': '0xe9a130735e47bc8f81c5e5408702ff56b03dc24eddcd033c308d72583fedb080', 'from': '0xdc8d71fde487566538c780207d2a2b988be44b31', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f05b59d3b200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:18:23.000Z'}}, {'blockNum': '0x6b2268', 'uniqueId': '0xe9a130735e47bc8f81c5e5408702ff56b03dc24eddcd033c308d72583fedb080:log:7', 'hash': '0xe9a130735e47bc8f81c5e5408702ff56b03dc24eddcd033c308d72583fedb080', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f05b59d3b200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:18:23.000Z'}}, {'blockNum': '0x6b226a', 'uniqueId': '0x897afd5b1d693d0fdbe36ab91c44c8823e2ee6b044d066e0e6451b0d4b751948:log:41', 'hash': '0x897afd5b1d693d0fdbe36ab91c44c8823e2ee6b044d066e0e6451b0d4b751948', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 28.937239745665597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019195ba3b8cb67f2a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:07.000Z'}}, {'blockNum': '0x6b226a', 'uniqueId': '0x897afd5b1d693d0fdbe36ab91c44c8823e2ee6b044d066e0e6451b0d4b751948:log:45', 'hash': '0x897afd5b1d693d0fdbe36ab91c44c8823e2ee6b044d066e0e6451b0d4b751948', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 28.937239745665597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019195ba3b8cb67f2a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:07.000Z'}}, {'blockNum': '0x6b226a', 'uniqueId': '0xaff29573a6249d4108405b97e006b54e9675385258ceafee2062f1927b730efb:log:72', 'hash': '0xaff29573a6249d4108405b97e006b54e9675385258ceafee2062f1927b730efb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 816.6806127954429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c45b86260ccb677f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:07.000Z'}}, {'blockNum': '0x6b226a', 'uniqueId': '0xaff29573a6249d4108405b97e006b54e9675385258ceafee2062f1927b730efb:log:75', 'hash': '0xaff29573a6249d4108405b97e006b54e9675385258ceafee2062f1927b730efb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'value': 816.6806127954429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c45b86260ccb677f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:07.000Z'}}, {'blockNum': '0x6b226b', 'uniqueId': '0x35e66126bd4d890ac2be05156eab301e6056b87681534129f9439cc2eb6bb535:log:40', 'hash': '0x35e66126bd4d890ac2be05156eab301e6056b87681534129f9439cc2eb6bb535', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 241.1526030763898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d12aa26d114fc42f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:14.000Z'}}, {'blockNum': '0x6b226b', 'uniqueId': '0x35e66126bd4d890ac2be05156eab301e6056b87681534129f9439cc2eb6bb535:log:44', 'hash': '0x35e66126bd4d890ac2be05156eab301e6056b87681534129f9439cc2eb6bb535', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 241.1526030763898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d12aa26d114fc42f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:14.000Z'}}, {'blockNum': '0x6b226b', 'uniqueId': '0x0fab0e0f3fb37bdae658d3c5683b146e66a3e0c9bd3e77d06620ff1c39278885:log:55', 'hash': '0x0fab0e0f3fb37bdae658d3c5683b146e66a3e0c9bd3e77d06620ff1c39278885', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.92952828066248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3186363e59113d12', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:14.000Z'}}, {'blockNum': '0x6b226b', 'uniqueId': '0x0fab0e0f3fb37bdae658d3c5683b146e66a3e0c9bd3e77d06620ff1c39278885:log:59', 'hash': '0x0fab0e0f3fb37bdae658d3c5683b146e66a3e0c9bd3e77d06620ff1c39278885', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 224.92952828066248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3186363e59113d12', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:14.000Z'}}, {'blockNum': '0x6b226e', 'uniqueId': '0x342ed1f6033c8aa76f33de3f0023b0360d9b0de40c46b5e3929fef7cc24b9fff:log:39', 'hash': '0x342ed1f6033c8aa76f33de3f0023b0360d9b0de40c46b5e3929fef7cc24b9fff', 'from': '0xa291acae6e80a0c6fd51b984eb7152986b28b666', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 619.1876224039456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2190f455fad1e237a0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:13.000Z'}}, {'blockNum': '0x6b226e', 'uniqueId': '0x40c7d63411cb476fa07b036d9713b50607cf1725d94cbf0afda8b0a5828e0d36:log:76', 'hash': '0x40c7d63411cb476fa07b036d9713b50607cf1725d94cbf0afda8b0a5828e0d36', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2248.9618907540917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x79ea9dac214c7e1e14', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:13.000Z'}}, {'blockNum': '0x6b226e', 'uniqueId': '0x40c7d63411cb476fa07b036d9713b50607cf1725d94cbf0afda8b0a5828e0d36:log:80', 'hash': '0x40c7d63411cb476fa07b036d9713b50607cf1725d94cbf0afda8b0a5828e0d36', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 2248.9618907540917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x79ea9dac214c7e1e14', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:13.000Z'}}, {'blockNum': '0x6b226e', 'uniqueId': '0x3f29539c0762dd5c96a9d1268dafe84c5c311914885882df490270ce1eb07837:log:108', 'hash': '0x3f29539c0762dd5c96a9d1268dafe84c5c311914885882df490270ce1eb07837', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 27.804421190283886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0181dd25c228370464', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:13.000Z'}}, {'blockNum': '0x6b226e', 'uniqueId': '0x3f29539c0762dd5c96a9d1268dafe84c5c311914885882df490270ce1eb07837:log:112', 'hash': '0x3f29539c0762dd5c96a9d1268dafe84c5c311914885882df490270ce1eb07837', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 27.804421190283886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0181dd25c228370464', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:13.000Z'}}, {'blockNum': '0x6b226e', 'uniqueId': '0x54473232103e29a9761fcd08bc4df901481d4d2ed948f719b797f22f476b2326:log:142', 'hash': '0x54473232103e29a9761fcd08bc4df901481d4d2ed948f719b797f22f476b2326', 'from': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 817.013897199324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4a5872c713380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:13.000Z'}}, {'blockNum': '0x6b2270', 'uniqueId': '0x1185a2e96909d333f9c4952b51fd470ab24b187dbea2e443d4e494aa1957a014:log:75', 'hash': '0x1185a2e96909d333f9c4952b51fd470ab24b187dbea2e443d4e494aa1957a014', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 552.7127625516791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1df66e31249da86dc6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:49.000Z'}}, {'blockNum': '0x6b2270', 'uniqueId': '0x1185a2e96909d333f9c4952b51fd470ab24b187dbea2e443d4e494aa1957a014:log:79', 'hash': '0x1185a2e96909d333f9c4952b51fd470ab24b187dbea2e443d4e494aa1957a014', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 552.7127625516791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1df66e31249da86dc6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:49.000Z'}}, {'blockNum': '0x6b2271', 'uniqueId': '0x241f2c5ee1085a6e42ab2011c26a08c5bcb5850f5cedae32fcad047394ffaa2f:log:52', 'hash': '0x241f2c5ee1085a6e42ab2011c26a08c5bcb5850f5cedae32fcad047394ffaa2f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 10.401407631376106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x90593921b835bed4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:59.000Z'}}, {'blockNum': '0x6b2271', 'uniqueId': '0x241f2c5ee1085a6e42ab2011c26a08c5bcb5850f5cedae32fcad047394ffaa2f:log:56', 'hash': '0x241f2c5ee1085a6e42ab2011c26a08c5bcb5850f5cedae32fcad047394ffaa2f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 10.401407631376106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x90593921b835bed4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:59.000Z'}}, {'blockNum': '0x6b2272', 'uniqueId': '0xd95892fed977374b5ed58548623bdaa7f44279991302fa1108800a4245e2e44c:log:19', 'hash': '0xd95892fed977374b5ed58548623bdaa7f44279991302fa1108800a4245e2e44c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 7.591834554424923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x695b9d4dd2089621', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:21:23.000Z'}}, {'blockNum': '0x6b2272', 'uniqueId': '0xd95892fed977374b5ed58548623bdaa7f44279991302fa1108800a4245e2e44c:log:23', 'hash': '0xd95892fed977374b5ed58548623bdaa7f44279991302fa1108800a4245e2e44c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 7.591834554424923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x695b9d4dd2089621', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:21:23.000Z'}}, {'blockNum': '0x6b2277', 'uniqueId': '0x970bf15e068565da403021424fbced56ec7b4d0f5c1e1385f0bae61a17b6a66e:log:28', 'hash': '0x970bf15e068565da403021424fbced56ec7b4d0f5c1e1385f0bae61a17b6a66e', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:22:50.000Z'}}, {'blockNum': '0x6b2277', 'uniqueId': '0x970bf15e068565da403021424fbced56ec7b4d0f5c1e1385f0bae61a17b6a66e:log:31', 'hash': '0x970bf15e068565da403021424fbced56ec7b4d0f5c1e1385f0bae61a17b6a66e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:22:50.000Z'}}, {'blockNum': '0x6b2277', 'uniqueId': '0x970bf15e068565da403021424fbced56ec7b4d0f5c1e1385f0bae61a17b6a66e:log:33', 'hash': '0x970bf15e068565da403021424fbced56ec7b4d0f5c1e1385f0bae61a17b6a66e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:22:50.000Z'}}, {'blockNum': '0x6b2277', 'uniqueId': '0x7a42422d92fb2e188e9563e55bc0bdeed76346a1de205c1b0482c29b42301cf9:log:46', 'hash': '0x7a42422d92fb2e188e9563e55bc0bdeed76346a1de205c1b0482c29b42301cf9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 337.31250296939635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x124926be4adcc384cf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:22:50.000Z'}}, {'blockNum': '0x6b2277', 'uniqueId': '0x7a42422d92fb2e188e9563e55bc0bdeed76346a1de205c1b0482c29b42301cf9:log:50', 'hash': '0x7a42422d92fb2e188e9563e55bc0bdeed76346a1de205c1b0482c29b42301cf9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 337.31250296939635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x124926be4adcc384cf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:22:50.000Z'}}, {'blockNum': '0x6b2277', 'uniqueId': '0x35b61b8b1acd0cefbbcea75300ee66e510c0e9ea6fda19f69923e765b80aef18:log:61', 'hash': '0x35b61b8b1acd0cefbbcea75300ee66e510c0e9ea6fda19f69923e765b80aef18', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.8674275077511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c30a995eb6b683fe9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:22:50.000Z'}}, {'blockNum': '0x6b2277', 'uniqueId': '0x35b61b8b1acd0cefbbcea75300ee66e510c0e9ea6fda19f69923e765b80aef18:log:65', 'hash': '0x35b61b8b1acd0cefbbcea75300ee66e510c0e9ea6fda19f69923e765b80aef18', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb85e52268cbf57b97ae15136aa65d4f567b8107c', 'value': 224.8674275077511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c30a995eb6b683fe9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:22:50.000Z'}}, {'blockNum': '0x6b2279', 'uniqueId': '0xf0843203969f5bc87845a8c4c45742b72a7eedd13f0d77cd7badb7560a5e4b5d:log:21', 'hash': '0xf0843203969f5bc87845a8c4c45742b72a7eedd13f0d77cd7badb7560a5e4b5d', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 904.7759552885955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x310c49e9a06371a8c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:23:09.000Z'}}, {'blockNum': '0x6b2279', 'uniqueId': '0xf0843203969f5bc87845a8c4c45742b72a7eedd13f0d77cd7badb7560a5e4b5d:log:25', 'hash': '0xf0843203969f5bc87845a8c4c45742b72a7eedd13f0d77cd7badb7560a5e4b5d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 904.7759552885955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x310c49e9a06371a8c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:23:09.000Z'}}, {'blockNum': '0x6b2279', 'uniqueId': '0xf69e083e03b461ee1829a567c576a1b6e37227a7aa0472b62789b97991fa928c:log:97', 'hash': '0xf69e083e03b461ee1829a567c576a1b6e37227a7aa0472b62789b97991fa928c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.88574911693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c30eaad537a3a35a0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:23:09.000Z'}}, {'blockNum': '0x6b2279', 'uniqueId': '0xf69e083e03b461ee1829a567c576a1b6e37227a7aa0472b62789b97991fa928c:log:101', 'hash': '0xf69e083e03b461ee1829a567c576a1b6e37227a7aa0472b62789b97991fa928c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 224.88574911693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c30eaad537a3a35a0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:23:09.000Z'}}, {'blockNum': '0x6b227a', 'uniqueId': '0x1cd27da31c4dd62a79d72f51ab4a0b68986da2866c106f316463b3d7f46928ac:log:17', 'hash': '0x1cd27da31c4dd62a79d72f51ab4a0b68986da2866c106f316463b3d7f46928ac', 'from': '0x51907923c3280c24b6b69b0d217ea34cabde684d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 449.0665398116891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18580cd6b3c58a7ca1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:23:53.000Z'}}, {'blockNum': '0x6b227a', 'uniqueId': '0x1cd27da31c4dd62a79d72f51ab4a0b68986da2866c106f316463b3d7f46928ac:log:19', 'hash': '0x1cd27da31c4dd62a79d72f51ab4a0b68986da2866c106f316463b3d7f46928ac', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 449.0665398116891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18580cd6b3c58a7ca1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:23:53.000Z'}}, {'blockNum': '0x6b227e', 'uniqueId': '0xc2cb30fc0a1de379329ae8537d1ed4fcad275caeb042d55119ad5e749090fa93:log:59', 'hash': '0xc2cb30fc0a1de379329ae8537d1ed4fcad275caeb042d55119ad5e749090fa93', 'from': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 367.99191348329043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f2e9e79bbbceba7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:24:20.000Z'}}, {'blockNum': '0x6b227e', 'uniqueId': '0xc2cb30fc0a1de379329ae8537d1ed4fcad275caeb042d55119ad5e749090fa93:log:63', 'hash': '0xc2cb30fc0a1de379329ae8537d1ed4fcad275caeb042d55119ad5e749090fa93', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 367.99191348329043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f2e9e79bbbceba7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:24:20.000Z'}}, {'blockNum': '0x6b2284', 'uniqueId': '0xe04568fd974dbf0b4bc6d606592644cdfa5bd0720162e869a2c402d68ccdaf00:log:28', 'hash': '0xe04568fd974dbf0b4bc6d606592644cdfa5bd0720162e869a2c402d68ccdaf00', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1304.3455407170193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46b56e3e9032bedeff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:25:15.000Z'}}, {'blockNum': '0x6b2284', 'uniqueId': '0xe04568fd974dbf0b4bc6d606592644cdfa5bd0720162e869a2c402d68ccdaf00:log:31', 'hash': '0xe04568fd974dbf0b4bc6d606592644cdfa5bd0720162e869a2c402d68ccdaf00', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9d7f8a2ab92ab0119e32972e3c78ed6e38042871', 'value': 1304.3455407170193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46b56e3e9032bedeff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:25:15.000Z'}}, {'blockNum': '0x6b228b', 'uniqueId': '0x42fcb44f53370fb0570b5f8674a8874bbd77c4ea8e4b48429a2ee9c4b6727aee:log:15', 'hash': '0x42fcb44f53370fb0570b5f8674a8874bbd77c4ea8e4b48429a2ee9c4b6727aee', 'from': '0x9d7f8a2ab92ab0119e32972e3c78ed6e38042871', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46b0a2a31ca5600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:27:30.000Z'}}, {'blockNum': '0x6b228b', 'uniqueId': '0x42fcb44f53370fb0570b5f8674a8874bbd77c4ea8e4b48429a2ee9c4b6727aee:log:18', 'hash': '0x42fcb44f53370fb0570b5f8674a8874bbd77c4ea8e4b48429a2ee9c4b6727aee', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 1304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46b0a2a31ca5600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:27:30.000Z'}}, {'blockNum': '0x6b228d', 'uniqueId': '0x1c4c3099c38098add8b331f8456bd06d41d0c0e77680d00326bbe4b7e25fcab1:log:38', 'hash': '0x1c4c3099c38098add8b331f8456bd06d41d0c0e77680d00326bbe4b7e25fcab1', 'from': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 33.17961637446366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cc75ad4ca7a4091c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:06.000Z'}}, {'blockNum': '0x6b228d', 'uniqueId': '0x1c4c3099c38098add8b331f8456bd06d41d0c0e77680d00326bbe4b7e25fcab1:log:42', 'hash': '0x1c4c3099c38098add8b331f8456bd06d41d0c0e77680d00326bbe4b7e25fcab1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 33.17961637446366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cc75ad4ca7a4091c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:06.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x94fff9740c44a20d71932dc3ac6ab4fb0089655dd0bf1f0fc6ff06920fe2afd8:log:90', 'hash': '0x94fff9740c44a20d71932dc3ac6ab4fb0089655dd0bf1f0fc6ff06920fe2afd8', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 688.5143622022996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25530e64847eb3d764', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x94fff9740c44a20d71932dc3ac6ab4fb0089655dd0bf1f0fc6ff06920fe2afd8:log:94', 'hash': '0x94fff9740c44a20d71932dc3ac6ab4fb0089655dd0bf1f0fc6ff06920fe2afd8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 688.5143622022996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25530e64847eb3d764', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x8095764054ea4c849c73b59b18d5f8ecff2fdbe2387d471cf88d8a3c9d203424:log:102', 'hash': '0x8095764054ea4c849c73b59b18d5f8ecff2fdbe2387d471cf88d8a3c9d203424', 'from': '0x303a839d243cba9dd65ca95b8db2837833e38791', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 0.1519136673519275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021bb4acf309dab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x8095764054ea4c849c73b59b18d5f8ecff2fdbe2387d471cf88d8a3c9d203424:log:105', 'hash': '0x8095764054ea4c849c73b59b18d5f8ecff2fdbe2387d471cf88d8a3c9d203424', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 0.1519136673519275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021bb4acf309dab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x8095764054ea4c849c73b59b18d5f8ecff2fdbe2387d471cf88d8a3c9d203424:log:107', 'hash': '0x8095764054ea4c849c73b59b18d5f8ecff2fdbe2387d471cf88d8a3c9d203424', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 0.1519136673519275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021bb4acf309dab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x372a9f1fe7d15d7f5674c64b2ef9aa529843297835ec8f2dc90542cba49ac7e4:log:120', 'hash': '0x372a9f1fe7d15d7f5674c64b2ef9aa529843297835ec8f2dc90542cba49ac7e4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 449.7659511608545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1861c1a59e606be3ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x372a9f1fe7d15d7f5674c64b2ef9aa529843297835ec8f2dc90542cba49ac7e4:log:124', 'hash': '0x372a9f1fe7d15d7f5674c64b2ef9aa529843297835ec8f2dc90542cba49ac7e4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa2630fc0233940779f25dfdcff3abbdc85682a4c', 'value': 449.7659511608545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1861c1a59e606be3ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x1e5a21de2998e931c10f396f6b42821161ad0e5c79024e59c6504109381ba2c7:log:135', 'hash': '0x1e5a21de2998e931c10f396f6b42821161ad0e5c79024e59c6504109381ba2c7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 9.365858930966844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x81fa371344b2d5cf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x1e5a21de2998e931c10f396f6b42821161ad0e5c79024e59c6504109381ba2c7:log:139', 'hash': '0x1e5a21de2998e931c10f396f6b42821161ad0e5c79024e59c6504109381ba2c7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 9.365858930966844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x81fa371344b2d5cf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b2291', 'uniqueId': '0x95689960ac872c88c6a5b5eb0b14352ddf8ea457a3f5f8fbd6c3252c2036b6eb:log:143', 'hash': '0x95689960ac872c88c6a5b5eb0b14352ddf8ea457a3f5f8fbd6c3252c2036b6eb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 29.892263659247398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019ed6a76c0dc269c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:29:54.000Z'}}, {'blockNum': '0x6b2291', 'uniqueId': '0x95689960ac872c88c6a5b5eb0b14352ddf8ea457a3f5f8fbd6c3252c2036b6eb:log:147', 'hash': '0x95689960ac872c88c6a5b5eb0b14352ddf8ea457a3f5f8fbd6c3252c2036b6eb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 29.892263659247398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019ed6a76c0dc269c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:29:54.000Z'}}, {'blockNum': '0x6b2294', 'uniqueId': '0x0026ec0785e26c996fd329f67c2a11cb1dcee1c44c19f54c70cfa874cf362c3c:log:26', 'hash': '0x0026ec0785e26c996fd329f67c2a11cb1dcee1c44c19f54c70cfa874cf362c3c', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 817.013897199324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4a5872c713380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:30:17.000Z'}}, {'blockNum': '0x6b2294', 'uniqueId': '0x1b2ec3f97425e4e9e3ab8f591bd9bb90d48e6bd26927524967784336c8bcfedb:log:51', 'hash': '0x1b2ec3f97425e4e9e3ab8f591bd9bb90d48e6bd26927524967784336c8bcfedb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 19.872377230226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0113c8ddcd722e85d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:30:17.000Z'}}, {'blockNum': '0x6b2294', 'uniqueId': '0x1b2ec3f97425e4e9e3ab8f591bd9bb90d48e6bd26927524967784336c8bcfedb:log:55', 'hash': '0x1b2ec3f97425e4e9e3ab8f591bd9bb90d48e6bd26927524967784336c8bcfedb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 19.872377230226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0113c8ddcd722e85d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:30:17.000Z'}}, {'blockNum': '0x6b2296', 'uniqueId': '0xc48b0ccb01a634c17363c94056a799548384f4aca94e410ccdf78d75c8c7edc7:log:45', 'hash': '0xc48b0ccb01a634c17363c94056a799548384f4aca94e410ccdf78d75c8c7edc7', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0x75cb35f73659474e4cfbd4ba41027dd991b901db', 'value': 1233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42d74ff74938a40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:30:40.000Z'}}, {'blockNum': '0x6b2297', 'uniqueId': '0x75a3e7f1e8e9b4f391c23be82ff1b19af5c6d1ce1ef016f50af49057531d7666:log:10', 'hash': '0x75a3e7f1e8e9b4f391c23be82ff1b19af5c6d1ce1ef016f50af49057531d7666', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 23.454764884074944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0145801064b597d273', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:30:50.000Z'}}, {'blockNum': '0x6b2297', 'uniqueId': '0x75a3e7f1e8e9b4f391c23be82ff1b19af5c6d1ce1ef016f50af49057531d7666:log:14', 'hash': '0x75a3e7f1e8e9b4f391c23be82ff1b19af5c6d1ce1ef016f50af49057531d7666', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 23.454764884074944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0145801064b597d273', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:30:50.000Z'}}, {'blockNum': '0x6b2299', 'uniqueId': '0x1a3197ff34e302dddd6e5592225dd22bd01f2265f636ee4ec9c7096feaff32d1:log:31', 'hash': '0x1a3197ff34e302dddd6e5592225dd22bd01f2265f636ee4ec9c7096feaff32d1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 23.45469896133126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01457fd46fdfdf881f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:10.000Z'}}, {'blockNum': '0x6b2299', 'uniqueId': '0x1a3197ff34e302dddd6e5592225dd22bd01f2265f636ee4ec9c7096feaff32d1:log:35', 'hash': '0x1a3197ff34e302dddd6e5592225dd22bd01f2265f636ee4ec9c7096feaff32d1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 23.45469896133126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01457fd46fdfdf881f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:10.000Z'}}, {'blockNum': '0x6b2299', 'uniqueId': '0x8c162ee2aa4e2f4275abd692b3f1a370623b5bb4491a0c1af06ecaa7f6d9514f:log:55', 'hash': '0x8c162ee2aa4e2f4275abd692b3f1a370623b5bb4491a0c1af06ecaa7f6d9514f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 327.92234249636573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11c6d63117e9dc1972', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:10.000Z'}}, {'blockNum': '0x6b2299', 'uniqueId': '0x8c162ee2aa4e2f4275abd692b3f1a370623b5bb4491a0c1af06ecaa7f6d9514f:log:59', 'hash': '0x8c162ee2aa4e2f4275abd692b3f1a370623b5bb4491a0c1af06ecaa7f6d9514f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'value': 327.92234249636573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11c6d63117e9dc1972', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:10.000Z'}}, {'blockNum': '0x6b2299', 'uniqueId': '0x3ad7fb0d6519c8cce699ec4ca9c947611bdd8d4bfdbd1279fff6ee66eda9e85b:log:74', 'hash': '0x3ad7fb0d6519c8cce699ec4ca9c947611bdd8d4bfdbd1279fff6ee66eda9e85b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 615.5640115376654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x215eaaaf1879006d91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:10.000Z'}}, {'blockNum': '0x6b2299', 'uniqueId': '0x3ad7fb0d6519c8cce699ec4ca9c947611bdd8d4bfdbd1279fff6ee66eda9e85b:log:78', 'hash': '0x3ad7fb0d6519c8cce699ec4ca9c947611bdd8d4bfdbd1279fff6ee66eda9e85b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'value': 615.5640115376654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x215eaaaf1879006d91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:10.000Z'}}, {'blockNum': '0x6b229b', 'uniqueId': '0xfc77220909a1f0a104cbcea9a10d6960919bb2c57373733ea92a20205a8fd0d3:log:14', 'hash': '0xfc77220909a1f0a104cbcea9a10d6960919bb2c57373733ea92a20205a8fd0d3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 8.485973802055826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75c43c365ccefaf9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:31.000Z'}}, {'blockNum': '0x6b229b', 'uniqueId': '0xfc77220909a1f0a104cbcea9a10d6960919bb2c57373733ea92a20205a8fd0d3:log:18', 'hash': '0xfc77220909a1f0a104cbcea9a10d6960919bb2c57373733ea92a20205a8fd0d3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 8.485973802055826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75c43c365ccefaf9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:31.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0xfa6b1a4efd63379eddd6b31761b1de03ca4ed5f9f84b28868cfed8d4c99f3367:log:55', 'hash': '0xfa6b1a4efd63379eddd6b31761b1de03ca4ed5f9f84b28868cfed8d4c99f3367', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 449.68469714059324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1860a0f9848a2d8b91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0xfa6b1a4efd63379eddd6b31761b1de03ca4ed5f9f84b28868cfed8d4c99f3367:log:59', 'hash': '0xfa6b1a4efd63379eddd6b31761b1de03ca4ed5f9f84b28868cfed8d4c99f3367', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'value': 449.68469714059324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1860a0f9848a2d8b91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0x7395d720d5e7213daefe9fb6831a51947cf0b749254f14d2c7515c096d43be1e:log:75', 'hash': '0x7395d720d5e7213daefe9fb6831a51947cf0b749254f14d2c7515c096d43be1e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 337.2476215662663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248403d0002aad897', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0x7395d720d5e7213daefe9fb6831a51947cf0b749254f14d2c7515c096d43be1e:log:79', 'hash': '0x7395d720d5e7213daefe9fb6831a51947cf0b749254f14d2c7515c096d43be1e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 337.2476215662663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248403d0002aad897', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0x6312a8a4a7bb5ec424f3e47542747ceb55436170c4fcc6a13c9da9d3e95419d7:log:91', 'hash': '0x6312a8a4a7bb5ec424f3e47542747ceb55436170c4fcc6a13c9da9d3e95419d7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 19.58587004760048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010fcefd09b4308e6e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0x6312a8a4a7bb5ec424f3e47542747ceb55436170c4fcc6a13c9da9d3e95419d7:log:95', 'hash': '0x6312a8a4a7bb5ec424f3e47542747ceb55436170c4fcc6a13c9da9d3e95419d7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 19.58587004760048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010fcefd09b4308e6e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0x042a405ac49f185c763e2a494bb55ddff0365dbec10dbf89604ef53ef6e238cb:log:115', 'hash': '0x042a405ac49f185c763e2a494bb55ddff0365dbec10dbf89604ef53ef6e238cb', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 665.0045661065257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x240ccad187583c47c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0x042a405ac49f185c763e2a494bb55ddff0365dbec10dbf89604ef53ef6e238cb:log:119', 'hash': '0x042a405ac49f185c763e2a494bb55ddff0365dbec10dbf89604ef53ef6e238cb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 665.0045661065257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x240ccad187583c47c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229e', 'uniqueId': '0xd36dabe31c722b936ee13a84860ba2f859e0fcc30bd5de25a92ae1cc8ea2a1e3:log:53', 'hash': '0xd36dabe31c722b936ee13a84860ba2f859e0fcc30bd5de25a92ae1cc8ea2a1e3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.8415647634875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c304db3e406a85af2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:32:51.000Z'}}, {'blockNum': '0x6b229e', 'uniqueId': '0xd36dabe31c722b936ee13a84860ba2f859e0fcc30bd5de25a92ae1cc8ea2a1e3:log:57', 'hash': '0xd36dabe31c722b936ee13a84860ba2f859e0fcc30bd5de25a92ae1cc8ea2a1e3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 224.8415647634875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c304db3e406a85af2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:32:51.000Z'}}, {'blockNum': '0x6b229e', 'uniqueId': '0x278dfc3906d40b2e2fbb2b2d0e98ac4ab3ec5c49ddf91d25bcd9f637ad5b7155:log:73', 'hash': '0x278dfc3906d40b2e2fbb2b2d0e98ac4ab3ec5c49ddf91d25bcd9f637ad5b7155', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 817.2036300346674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4cfa83c940178306', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:32:51.000Z'}}, {'blockNum': '0x6b229e', 'uniqueId': '0x278dfc3906d40b2e2fbb2b2d0e98ac4ab3ec5c49ddf91d25bcd9f637ad5b7155:log:76', 'hash': '0x278dfc3906d40b2e2fbb2b2d0e98ac4ab3ec5c49ddf91d25bcd9f637ad5b7155', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'value': 817.2036300346674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4cfa83c940178306', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:32:51.000Z'}}, {'blockNum': '0x6b229f', 'uniqueId': '0x953685d163f4b0840ddbe665e488ffeddaca944e9653a7e9597e0a1f4c917ae7:log:24', 'hash': '0x953685d163f4b0840ddbe665e488ffeddaca944e9653a7e9597e0a1f4c917ae7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.81349140342283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2fe9f751885a3e60', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:33:15.000Z'}}, {'blockNum': '0x6b229f', 'uniqueId': '0x953685d163f4b0840ddbe665e488ffeddaca944e9653a7e9597e0a1f4c917ae7:log:28', 'hash': '0x953685d163f4b0840ddbe665e488ffeddaca944e9653a7e9597e0a1f4c917ae7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 224.81349140342283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2fe9f751885a3e60', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:33:15.000Z'}}, {'blockNum': '0x6b229f', 'uniqueId': '0x0d54a190f68f5443ddb1a4d57f1cf716b4c8d5c0534f1dcf4b8dd595b3edea96:log:47', 'hash': '0x0d54a190f68f5443ddb1a4d57f1cf716b4c8d5c0534f1dcf4b8dd595b3edea96', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.80743529579806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2fd4735218a8003f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:33:15.000Z'}}, {'blockNum': '0x6b229f', 'uniqueId': '0x0d54a190f68f5443ddb1a4d57f1cf716b4c8d5c0534f1dcf4b8dd595b3edea96:log:51', 'hash': '0x0d54a190f68f5443ddb1a4d57f1cf716b4c8d5c0534f1dcf4b8dd595b3edea96', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 224.80743529579806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2fd4735218a8003f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:33:15.000Z'}}, {'blockNum': '0x6b22a0', 'uniqueId': '0x0d478ade0e3d2a9e25394edcf482a7a5738c476b6f01683472a6496c2c0331d5:log:79', 'hash': '0x0d478ade0e3d2a9e25394edcf482a7a5738c476b6f01683472a6496c2c0331d5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 336.11685516493264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12388ef2f2f73a8120', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:33:31.000Z'}}, {'blockNum': '0x6b22a0', 'uniqueId': '0x0d478ade0e3d2a9e25394edcf482a7a5738c476b6f01683472a6496c2c0331d5:log:83', 'hash': '0x0d478ade0e3d2a9e25394edcf482a7a5738c476b6f01683472a6496c2c0331d5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 336.11685516493264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12388ef2f2f73a8120', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:33:31.000Z'}}, {'blockNum': '0x6b22a4', 'uniqueId': '0x37c6a92520a575b4bbb106124f8a4d267a2853262a48eef3f6cdd897478cced6:log:40', 'hash': '0x37c6a92520a575b4bbb106124f8a4d267a2853262a48eef3f6cdd897478cced6', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5.9241675066101545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5236def5ad68ec8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:19.000Z'}}, {'blockNum': '0x6b22a4', 'uniqueId': '0x37c6a92520a575b4bbb106124f8a4d267a2853262a48eef3f6cdd897478cced6:log:44', 'hash': '0x37c6a92520a575b4bbb106124f8a4d267a2853262a48eef3f6cdd897478cced6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.9241675066101545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5236def5ad68ec8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:19.000Z'}}, {'blockNum': '0x6b22a4', 'uniqueId': '0xd1e1a0d0d543031a983e42e4ff6ebf8d540a6e9243fe4bc13eac0bd4bd6ca23c:log:51', 'hash': '0xd1e1a0d0d543031a983e42e4ff6ebf8d540a6e9243fe4bc13eac0bd4bd6ca23c', 'from': '0x75cb35f73659474e4cfbd4ba41027dd991b901db', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42d74ff74938a40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:19.000Z'}}, {'blockNum': '0x6b22a4', 'uniqueId': '0xd1e1a0d0d543031a983e42e4ff6ebf8d540a6e9243fe4bc13eac0bd4bd6ca23c:log:54', 'hash': '0xd1e1a0d0d543031a983e42e4ff6ebf8d540a6e9243fe4bc13eac0bd4bd6ca23c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42d74ff74938a40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:19.000Z'}}, {'blockNum': '0x6b22a4', 'uniqueId': '0xd1e1a0d0d543031a983e42e4ff6ebf8d540a6e9243fe4bc13eac0bd4bd6ca23c:log:55', 'hash': '0xd1e1a0d0d543031a983e42e4ff6ebf8d540a6e9243fe4bc13eac0bd4bd6ca23c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42d74ff74938a40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:19.000Z'}}, {'blockNum': '0x6b22a5', 'uniqueId': '0xd0757137ecfe48a50ffebc8d7caa769356181a3713c974b6e24d817e904c6efd:log:26', 'hash': '0xd0757137ecfe48a50ffebc8d7caa769356181a3713c974b6e24d817e904c6efd', 'from': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 817.0000013990432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4a27149ef39c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:26.000Z'}}, {'blockNum': '0x6b22a8', 'uniqueId': '0xc0f845e5c1732a80145f69d50c040375feeb4e5ad97258cd2e9ae857ba28d422:log:44', 'hash': '0xc0f845e5c1732a80145f69d50c040375feeb4e5ad97258cd2e9ae857ba28d422', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 38.232628409349594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02129594f920ca55ec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:57.000Z'}}, {'blockNum': '0x6b22a8', 'uniqueId': '0xc0f845e5c1732a80145f69d50c040375feeb4e5ad97258cd2e9ae857ba28d422:log:48', 'hash': '0xc0f845e5c1732a80145f69d50c040375feeb4e5ad97258cd2e9ae857ba28d422', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 38.232628409349594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02129594f920ca55ec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:57.000Z'}}, {'blockNum': '0x6b22ab', 'uniqueId': '0x70a6f7600133665ea3fc4a3471c3cda0771f21871c2fb4a82f5b90286a8bd0ff:log:101', 'hash': '0x70a6f7600133665ea3fc4a3471c3cda0771f21871c2fb4a82f5b90286a8bd0ff', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 19.16610126177903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0109fbab8d1d815563', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:35:34.000Z'}}, {'blockNum': '0x6b22ab', 'uniqueId': '0x70a6f7600133665ea3fc4a3471c3cda0771f21871c2fb4a82f5b90286a8bd0ff:log:105', 'hash': '0x70a6f7600133665ea3fc4a3471c3cda0771f21871c2fb4a82f5b90286a8bd0ff', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 19.16610126177903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0109fbab8d1d815563', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:35:34.000Z'}}, {'blockNum': '0x6b22b0', 'uniqueId': '0x99d91b2ca06e0127d74142ccf52476ac99a0e8dc3faa452c02f2ee6ce8b0fd59:log:58', 'hash': '0x99d91b2ca06e0127d74142ccf52476ac99a0e8dc3faa452c02f2ee6ce8b0fd59', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3987.6350262137216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd82b8d80f20e5fb795', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:00.000Z'}}, {'blockNum': '0x6b22b0', 'uniqueId': '0x99d91b2ca06e0127d74142ccf52476ac99a0e8dc3faa452c02f2ee6ce8b0fd59:log:62', 'hash': '0x99d91b2ca06e0127d74142ccf52476ac99a0e8dc3faa452c02f2ee6ce8b0fd59', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3987.6350262137216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd82b8d80f20e5fb795', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:00.000Z'}}, {'blockNum': '0x6b22b0', 'uniqueId': '0xad01776d84a2a3ec2ec6150e492530b1784a4bdd9bf2d0768a1ffdd43ffd1a94:log:73', 'hash': '0xad01776d84a2a3ec2ec6150e492530b1784a4bdd9bf2d0768a1ffdd43ffd1a94', 'from': '0x83e240d1cbc6ec7f394cd6ba5ed01b7fcdf44ed5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 133.36413389141458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x073acc952e47668825', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:00.000Z'}}, {'blockNum': '0x6b22b0', 'uniqueId': '0xad01776d84a2a3ec2ec6150e492530b1784a4bdd9bf2d0768a1ffdd43ffd1a94:log:77', 'hash': '0xad01776d84a2a3ec2ec6150e492530b1784a4bdd9bf2d0768a1ffdd43ffd1a94', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 133.36413389141458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x073acc952e47668825', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:00.000Z'}}, {'blockNum': '0x6b22b1', 'uniqueId': '0x5d3728bd883ef656993e708996404f14efa69b68b0b5fb4537217a404d76de7a:log:33', 'hash': '0x5d3728bd883ef656993e708996404f14efa69b68b0b5fb4537217a404d76de7a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 978.4239654989069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x350a5c34b57b66b216', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:27.000Z'}}, {'blockNum': '0x6b22b1', 'uniqueId': '0x5d3728bd883ef656993e708996404f14efa69b68b0b5fb4537217a404d76de7a:log:37', 'hash': '0x5d3728bd883ef656993e708996404f14efa69b68b0b5fb4537217a404d76de7a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 978.4239654989069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x350a5c34b57b66b216', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:27.000Z'}}, {'blockNum': '0x6b22b1', 'uniqueId': '0x284fd778adc2aafdbde4b320f094c635f687edaeffe33817a647c8fd13b92c86:log:50', 'hash': '0x284fd778adc2aafdbde4b320f094c635f687edaeffe33817a647c8fd13b92c86', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 337.36097639215507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1249d2f49d1558c5df', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:27.000Z'}}, {'blockNum': '0x6b22b1', 'uniqueId': '0x284fd778adc2aafdbde4b320f094c635f687edaeffe33817a647c8fd13b92c86:log:54', 'hash': '0x284fd778adc2aafdbde4b320f094c635f687edaeffe33817a647c8fd13b92c86', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 337.36097639215507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1249d2f49d1558c5df', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:27.000Z'}}, {'blockNum': '0x6b22b1', 'uniqueId': '0xe357e71113b9db1012fc21817664e65b0f0a92ec464d25564d32bd55793d9d4b:log:65', 'hash': '0xe357e71113b9db1012fc21817664e65b0f0a92ec464d25564d32bd55793d9d4b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4.273151563410714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3b4d48b4f0802ee7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:27.000Z'}}, {'blockNum': '0x6b22b1', 'uniqueId': '0xe357e71113b9db1012fc21817664e65b0f0a92ec464d25564d32bd55793d9d4b:log:69', 'hash': '0xe357e71113b9db1012fc21817664e65b0f0a92ec464d25564d32bd55793d9d4b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 4.273151563410714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3b4d48b4f0802ee7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:27.000Z'}}, {'blockNum': '0x6b22b9', 'uniqueId': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4:log:27', 'hash': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1686.5994708292142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5b6e4502bb711c41d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:33.000Z'}}, {'blockNum': '0x6b22b9', 'uniqueId': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4:log:30', 'hash': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa96dbfd3ef810dd8d13c330a3881e7e9c2aeb6dd', 'value': 1686.5994708292142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5b6e4502bb711c41d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:33.000Z'}}, {'blockNum': '0x6b22b9', 'uniqueId': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4:log:32', 'hash': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4', 'from': '0xa96dbfd3ef810dd8d13c330a3881e7e9c2aeb6dd', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1686.5994708292142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5b6e4502bb711c41d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:33.000Z'}}, {'blockNum': '0x6b22b9', 'uniqueId': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4:log:33', 'hash': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1686.5994708292142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5b6e4502bb711c41d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:33.000Z'}}, {'blockNum': '0x6b22b9', 'uniqueId': '0xf57d0c137ba0cba18bad2e97f5d3ad4668077d1ac61ef26302dda4755e34b816:log:44', 'hash': '0xf57d0c137ba0cba18bad2e97f5d3ad4668077d1ac61ef26302dda4755e34b816', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 7.231023111354909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6459c1354af2ff01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:33.000Z'}}, {'blockNum': '0x6b22b9', 'uniqueId': '0xf57d0c137ba0cba18bad2e97f5d3ad4668077d1ac61ef26302dda4755e34b816:log:48', 'hash': '0xf57d0c137ba0cba18bad2e97f5d3ad4668077d1ac61ef26302dda4755e34b816', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 7.231023111354909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6459c1354af2ff01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:33.000Z'}}, {'blockNum': '0x6b22bc', 'uniqueId': '0x7ccbfcaead905e3506d57dcaafd125f539cea0c666e0deb1b6e5d5ed07cbf9d6:log:4', 'hash': '0x7ccbfcaead905e3506d57dcaafd125f539cea0c666e0deb1b6e5d5ed07cbf9d6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 1686.456046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5b6c47769c23d4e000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:53.000Z'}}, {'blockNum': '0x6b22bc', 'uniqueId': '0x125ac5807f05f0cffb3c97c898a5ca5b98b76d62c4486b5d1a4a6309976230b5:log:84', 'hash': '0x125ac5807f05f0cffb3c97c898a5ca5b98b76d62c4486b5d1a4a6309976230b5', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 226.31166349514618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c44b48ae5f3ecda43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:53.000Z'}}, {'blockNum': '0x6b22bc', 'uniqueId': '0x125ac5807f05f0cffb3c97c898a5ca5b98b76d62c4486b5d1a4a6309976230b5:log:88', 'hash': '0x125ac5807f05f0cffb3c97c898a5ca5b98b76d62c4486b5d1a4a6309976230b5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 226.31166349514618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c44b48ae5f3ecda43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:53.000Z'}}, {'blockNum': '0x6b22bf', 'uniqueId': '0x8a08bf2e699f9fc8dcae503433e16d0fd3cdfeb28d2795f813a966d686e97ec6:log:15', 'hash': '0x8a08bf2e699f9fc8dcae503433e16d0fd3cdfeb28d2795f813a966d686e97ec6', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 817.0000013990432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4a27149ef39c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:40:07.000Z'}}, {'blockNum': '0x6b22bf', 'uniqueId': '0x65be551304bbdf1e6be2e8c4623def489abb6eaf542796333e70423cbc473826:log:57', 'hash': '0x65be551304bbdf1e6be2e8c4623def489abb6eaf542796333e70423cbc473826', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2.023767735985071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c15de089349632b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:40:07.000Z'}}, {'blockNum': '0x6b22bf', 'uniqueId': '0x65be551304bbdf1e6be2e8c4623def489abb6eaf542796333e70423cbc473826:log:61', 'hash': '0x65be551304bbdf1e6be2e8c4623def489abb6eaf542796333e70423cbc473826', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 2.023767735985071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c15de089349632b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:40:07.000Z'}}, {'blockNum': '0x6b22bf', 'uniqueId': '0x23c8eb9377c4d0ac6b2cf66bd97bda55bc26df723866d154f93dec3fb6506882:log:79', 'hash': '0x23c8eb9377c4d0ac6b2cf66bd97bda55bc26df723866d154f93dec3fb6506882', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 337.287765472856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248cedbab9ed84f47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:40:07.000Z'}}, {'blockNum': '0x6b22bf', 'uniqueId': '0x23c8eb9377c4d0ac6b2cf66bd97bda55bc26df723866d154f93dec3fb6506882:log:83', 'hash': '0x23c8eb9377c4d0ac6b2cf66bd97bda55bc26df723866d154f93dec3fb6506882', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 337.287765472856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248cedbab9ed84f47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:40:07.000Z'}}, {'blockNum': '0x6b22ce', 'uniqueId': '0x0823eabd78c08f457d1288d4685328aa49838e56a47ae0934d868691256a0056:log:23', 'hash': '0x0823eabd78c08f457d1288d4685328aa49838e56a47ae0934d868691256a0056', 'from': '0x7ae5771ed4766124bea19ddd10094fae8afa5ecc', 'to': '0x4a87112f921295447cbd3039bf7a3b7d74e21692', 'value': 59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0332ca1b67940c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:42:34.000Z'}}, {'blockNum': '0x6b22cf', 'uniqueId': '0x8bb54dd676d040166b3f262e8ecc3a8fea932ed8ec84435461d530c72e231c71:log:33', 'hash': '0x8bb54dd676d040166b3f262e8ecc3a8fea932ed8ec84435461d530c72e231c71', 'from': '0x0fec04a7526f601a1019edcd5d5b003101c46a0c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 18.931255148749784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0106b954417583ff7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:42:39.000Z'}}, {'blockNum': '0x6b22cf', 'uniqueId': '0x8bb54dd676d040166b3f262e8ecc3a8fea932ed8ec84435461d530c72e231c71:log:37', 'hash': '0x8bb54dd676d040166b3f262e8ecc3a8fea932ed8ec84435461d530c72e231c71', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 18.931255148749784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0106b954417583ff7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:42:39.000Z'}}, {'blockNum': '0x6b22d2', 'uniqueId': '0x834f0a45e5e51a72eb6c93a55f3976dbf134dcb40c4bb2576e221540f90f1f9a:log:93', 'hash': '0x834f0a45e5e51a72eb6c93a55f3976dbf134dcb40c4bb2576e221540f90f1f9a', 'from': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 437.1622650188606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17b2d85bd9865c2be5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:43:26.000Z'}}, {'blockNum': '0x6b22d2', 'uniqueId': '0x834f0a45e5e51a72eb6c93a55f3976dbf134dcb40c4bb2576e221540f90f1f9a:log:97', 'hash': '0x834f0a45e5e51a72eb6c93a55f3976dbf134dcb40c4bb2576e221540f90f1f9a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 437.1622650188606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17b2d85bd9865c2be5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:43:26.000Z'}}, {'blockNum': '0x6b22d3', 'uniqueId': '0xf8f2550a82d1b7776668f4d3502078d014ec369b111e94e3a5071f05f6c91ef2:log:11', 'hash': '0xf8f2550a82d1b7776668f4d3502078d014ec369b111e94e3a5071f05f6c91ef2', 'from': '0x4a87112f921295447cbd3039bf7a3b7d74e21692', 'to': '0x2051dd2bab0ae6c75dee40546e5ffa196ccc2448', 'value': 59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0332ca1b67940c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:43:59.000Z'}}, {'blockNum': '0x6b22d7', 'uniqueId': '0xadcae4ca16d3157067516a969715b3094b7c2a16c77a18c35b6e3a0d1e28dccc:log:27', 'hash': '0xadcae4ca16d3157067516a969715b3094b7c2a16c77a18c35b6e3a0d1e28dccc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.8632262600858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c309aa8e838b406ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:44:48.000Z'}}, {'blockNum': '0x6b22d7', 'uniqueId': '0xadcae4ca16d3157067516a969715b3094b7c2a16c77a18c35b6e3a0d1e28dccc:log:31', 'hash': '0xadcae4ca16d3157067516a969715b3094b7c2a16c77a18c35b6e3a0d1e28dccc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'value': 224.8632262600858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c309aa8e838b406ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:44:48.000Z'}}, {'blockNum': '0x6b22e2', 'uniqueId': '0x8d59d8b88eb78f4b159c86f7e90b2bf2df58eac65c1a4e84e3aa1b67a479e0b3:log:66', 'hash': '0x8d59d8b88eb78f4b159c86f7e90b2bf2df58eac65c1a4e84e3aa1b67a479e0b3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 337.28347899218403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248bfa123910e343e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:46:36.000Z'}}, {'blockNum': '0x6b22e2', 'uniqueId': '0x8d59d8b88eb78f4b159c86f7e90b2bf2df58eac65c1a4e84e3aa1b67a479e0b3:log:70', 'hash': '0x8d59d8b88eb78f4b159c86f7e90b2bf2df58eac65c1a4e84e3aa1b67a479e0b3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x4f138e1ceec7b33dfa4f3051594ec016a08c7513', 'value': 337.28347899218403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248bfa123910e343e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:46:36.000Z'}}, {'blockNum': '0x6b22e4', 'uniqueId': '0xf6a22df22c3cabd995d491410845f85545eae29f4ab701ee242e15a90db93045:log:80', 'hash': '0xf6a22df22c3cabd995d491410845f85545eae29f4ab701ee242e15a90db93045', 'from': '0xba2be1cd1f00470c21385b7cbed6211aefac0172', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 66.83644810252602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039f8ac36f3fe4e7a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:47:34.000Z'}}, {'blockNum': '0x6b22e4', 'uniqueId': '0xf6a22df22c3cabd995d491410845f85545eae29f4ab701ee242e15a90db93045:log:84', 'hash': '0xf6a22df22c3cabd995d491410845f85545eae29f4ab701ee242e15a90db93045', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 66.83644810252602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039f8ac36f3fe4e7a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:47:34.000Z'}}, {'blockNum': '0x6b22e5', 'uniqueId': '0x5ef9802c7bdb3299d70666b396df088d89192fcf219ab8fb4d2ecfef8d3b56e6:log:65', 'hash': '0x5ef9802c7bdb3299d70666b396df088d89192fcf219ab8fb4d2ecfef8d3b56e6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 27.20057259834356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01797bd8a9d37de353', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:47:44.000Z'}}, {'blockNum': '0x6b22e5', 'uniqueId': '0x5ef9802c7bdb3299d70666b396df088d89192fcf219ab8fb4d2ecfef8d3b56e6:log:69', 'hash': '0x5ef9802c7bdb3299d70666b396df088d89192fcf219ab8fb4d2ecfef8d3b56e6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 27.20057259834356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01797bd8a9d37de353', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:47:44.000Z'}}, {'blockNum': '0x6b22e5', 'uniqueId': '0x5bf46e4c2aead35e0e09c7bdc6e0414ec7329ba3d5d3fdae0a2193118ccfe1b2:log:94', 'hash': '0x5bf46e4c2aead35e0e09c7bdc6e0414ec7329ba3d5d3fdae0a2193118ccfe1b2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 677.1024429748314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24b4af1c717004a9f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:47:44.000Z'}}, {'blockNum': '0x6b22e5', 'uniqueId': '0x5bf46e4c2aead35e0e09c7bdc6e0414ec7329ba3d5d3fdae0a2193118ccfe1b2:log:97', 'hash': '0x5bf46e4c2aead35e0e09c7bdc6e0414ec7329ba3d5d3fdae0a2193118ccfe1b2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'value': 677.1024429748314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24b4af1c717004a9f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:47:44.000Z'}}, {'blockNum': '0x6b22e7', 'uniqueId': '0x7de8aaf2d738b47008dd6a3626624f52f774c941b0f0727dce52c416a0fef245:log:32', 'hash': '0x7de8aaf2d738b47008dd6a3626624f52f774c941b0f0727dce52c416a0fef245', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.8309047953606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3027d4b4c922ea39', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:21.000Z'}}, {'blockNum': '0x6b22e7', 'uniqueId': '0x7de8aaf2d738b47008dd6a3626624f52f774c941b0f0727dce52c416a0fef245:log:36', 'hash': '0x7de8aaf2d738b47008dd6a3626624f52f774c941b0f0727dce52c416a0fef245', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'value': 224.8309047953606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3027d4b4c922ea39', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:21.000Z'}}, {'blockNum': '0x6b22e7', 'uniqueId': '0xdee863d1a28ae1c695c59fa5675d1b9a56baf4ffed7f3745971e6e1330d6fed3:log:52', 'hash': '0xdee863d1a28ae1c695c59fa5675d1b9a56baf4ffed7f3745971e6e1330d6fed3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.82484769741052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c30124fcec5740315', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:21.000Z'}}, {'blockNum': '0x6b22e7', 'uniqueId': '0xdee863d1a28ae1c695c59fa5675d1b9a56baf4ffed7f3745971e6e1330d6fed3:log:56', 'hash': '0xdee863d1a28ae1c695c59fa5675d1b9a56baf4ffed7f3745971e6e1330d6fed3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 224.82484769741052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c30124fcec5740315', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:21.000Z'}}, {'blockNum': '0x6b22e7', 'uniqueId': '0xc2f33748997df87f3318b9694d11c0fe0070d8903e0c9d9ef944ab7a53d04be7:log:74', 'hash': '0xc2f33748997df87f3318b9694d11c0fe0070d8903e0c9d9ef944ab7a53d04be7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 27.196811593940662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01796e7c0cc00efdee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:21.000Z'}}, {'blockNum': '0x6b22e7', 'uniqueId': '0xc2f33748997df87f3318b9694d11c0fe0070d8903e0c9d9ef944ab7a53d04be7:log:78', 'hash': '0xc2f33748997df87f3318b9694d11c0fe0070d8903e0c9d9ef944ab7a53d04be7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 27.196811593940662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01796e7c0cc00efdee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:21.000Z'}}, {'blockNum': '0x6b22e9', 'uniqueId': '0x8c19badf923aec107002f1360898624195bce203672f0228a1322103651bdfa9:log:85', 'hash': '0x8c19badf923aec107002f1360898624195bce203672f0228a1322103651bdfa9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 238.42374164573488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ceccb49cdbd88eaa2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:54.000Z'}}, {'blockNum': '0x6b22e9', 'uniqueId': '0x8c19badf923aec107002f1360898624195bce203672f0228a1322103651bdfa9:log:89', 'hash': '0x8c19badf923aec107002f1360898624195bce203672f0228a1322103651bdfa9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'value': 238.42374164573488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ceccb49cdbd88eaa2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:54.000Z'}}, {'blockNum': '0x6b22e9', 'uniqueId': '0x5070292ff6cbecd003fe055b32c87f56632b864bd68de10cc04ebdc22f449c63:log:100', 'hash': '0x5070292ff6cbecd003fe055b32c87f56632b864bd68de10cc04ebdc22f449c63', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.81163539286783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2fe35f4966855458', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:54.000Z'}}, {'blockNum': '0x6b22e9', 'uniqueId': '0x5070292ff6cbecd003fe055b32c87f56632b864bd68de10cc04ebdc22f449c63:log:104', 'hash': '0x5070292ff6cbecd003fe055b32c87f56632b864bd68de10cc04ebdc22f449c63', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'value': 224.81163539286783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2fe35f4966855458', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:54.000Z'}}, {'blockNum': '0x6b22e9', 'uniqueId': '0x1903c7ed30c702bad60541666fa1efc1c39a8e415a44d23d02dd7bce2a103a06:log:119', 'hash': '0x1903c7ed30c702bad60541666fa1efc1c39a8e415a44d23d02dd7bce2a103a06', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 449.605103123899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185f86332e66df4f5a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:54.000Z'}}, {'blockNum': '0x6b22e9', 'uniqueId': '0x1903c7ed30c702bad60541666fa1efc1c39a8e415a44d23d02dd7bce2a103a06:log:123', 'hash': '0x1903c7ed30c702bad60541666fa1efc1c39a8e415a44d23d02dd7bce2a103a06', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 449.605103123899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185f86332e66df4f5a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:54.000Z'}}, {'blockNum': '0x6b22ea', 'uniqueId': '0x6c51282f360c8451e7f08292d63aa3fbf90bc4de95f593931aa8157705f3155b:log:10', 'hash': '0x6c51282f360c8451e7f08292d63aa3fbf90bc4de95f593931aa8157705f3155b', 'from': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 241.62486342438797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d1937f519e0eb58cb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:59.000Z'}}, {'blockNum': '0x6b22ea', 'uniqueId': '0x6c51282f360c8451e7f08292d63aa3fbf90bc4de95f593931aa8157705f3155b:log:14', 'hash': '0x6c51282f360c8451e7f08292d63aa3fbf90bc4de95f593931aa8157705f3155b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 241.62486342438797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d1937f519e0eb58cb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:59.000Z'}}, {'blockNum': '0x6b22eb', 'uniqueId': '0x2934b2a7fbbafa5de43182ef5971b10f60ae054e36a80098ac599fff54009b32:log:55', 'hash': '0x2934b2a7fbbafa5de43182ef5971b10f60ae054e36a80098ac599fff54009b32', 'from': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 677.0140000091819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24b374e608d1980000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:49:06.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0x1ca387d85bfb30386bf65c69e83ee7ff3991d98193a294e22bc53fa161027ee0:log:31', 'hash': '0x1ca387d85bfb30386bf65c69e83ee7ff3991d98193a294e22bc53fa161027ee0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 299.4838504595425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103c2c5f426f3ccc30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0x1ca387d85bfb30386bf65c69e83ee7ff3991d98193a294e22bc53fa161027ee0:log:35', 'hash': '0x1ca387d85bfb30386bf65c69e83ee7ff3991d98193a294e22bc53fa161027ee0', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 299.4838504595425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103c2c5f426f3ccc30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0x191044884ff932a117fba396fdb25011d57a48bfb7d6b4c7a6a1d42b856d99bc:log:52', 'hash': '0x191044884ff932a117fba396fdb25011d57a48bfb7d6b4c7a6a1d42b856d99bc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 567.3703111210463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ec1d843e868d1e6e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0x191044884ff932a117fba396fdb25011d57a48bfb7d6b4c7a6a1d42b856d99bc:log:56', 'hash': '0x191044884ff932a117fba396fdb25011d57a48bfb7d6b4c7a6a1d42b856d99bc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa2630fc0233940779f25dfdcff3abbdc85682a4c', 'value': 567.3703111210463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ec1d843e868d1e6e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0x330e7a39d501bca19a8594a0d6483930e6475d079d9a1cd3a3475647baa779e2:log:68', 'hash': '0x330e7a39d501bca19a8594a0d6483930e6475d079d9a1cd3a3475647baa779e2', 'from': '0xa2630fc0233940779f25dfdcff3abbdc85682a4c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 170.32982151686636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x093bcd163938818767', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0x330e7a39d501bca19a8594a0d6483930e6475d079d9a1cd3a3475647baa779e2:log:72', 'hash': '0x330e7a39d501bca19a8594a0d6483930e6475d079d9a1cd3a3475647baa779e2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 170.32982151686636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x093bcd163938818767', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0xdf8e259e049e8c28bb771bfc5bf6c2a93c86849a0b1ad4aac9ba2a93e04dd8c4:log:84', 'hash': '0xdf8e259e049e8c28bb771bfc5bf6c2a93c86849a0b1ad4aac9ba2a93e04dd8c4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 44.95672747280974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026fe6617210de890f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0xdf8e259e049e8c28bb771bfc5bf6c2a93c86849a0b1ad4aac9ba2a93e04dd8c4:log:88', 'hash': '0xdf8e259e049e8c28bb771bfc5bf6c2a93c86849a0b1ad4aac9ba2a93e04dd8c4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc31db08240a11df6a4c159ff4e6d69f484fc3828', 'value': 44.95672747280974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026fe6617210de890f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0xcdc616142f03ac072995dbf22bc478c5addb7173b0334366b0e39ebe1bc14aca:log:103', 'hash': '0xcdc616142f03ac072995dbf22bc478c5addb7173b0334366b0e39ebe1bc14aca', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 292.21282551234435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fd7448097f47cbfc4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0xcdc616142f03ac072995dbf22bc478c5addb7173b0334366b0e39ebe1bc14aca:log:107', 'hash': '0xcdc616142f03ac072995dbf22bc478c5addb7173b0334366b0e39ebe1bc14aca', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 292.21282551234435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fd7448097f47cbfc4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b2305', 'uniqueId': '0x62a51982fac7e74765ffe41eb74d9f5d501a378d0bfebc16cf4fec3bda49e538:log:29', 'hash': '0x62a51982fac7e74765ffe41eb74d9f5d501a378d0bfebc16cf4fec3bda49e538', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1499.558460870627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x514a8ddb291d375168', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:34.000Z'}}, {'blockNum': '0x6b2305', 'uniqueId': '0x62a51982fac7e74765ffe41eb74d9f5d501a378d0bfebc16cf4fec3bda49e538:log:32', 'hash': '0x62a51982fac7e74765ffe41eb74d9f5d501a378d0bfebc16cf4fec3bda49e538', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0080ef2e364721695608c066b8330b1488156060', 'value': 1499.558460870627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x514a8ddb291d375168', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:34.000Z'}}, {'blockNum': '0x6b2305', 'uniqueId': '0xbe21606537a1127171a5765672be257ea3236a86c8fbfbd0936eaee88113f415:log:40', 'hash': '0xbe21606537a1127171a5765672be257ea3236a86c8fbfbd0936eaee88113f415', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.53182993686548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0922d956685d68f049', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:34.000Z'}}, {'blockNum': '0x6b2305', 'uniqueId': '0xbe21606537a1127171a5765672be257ea3236a86c8fbfbd0936eaee88113f415:log:44', 'hash': '0xbe21606537a1127171a5765672be257ea3236a86c8fbfbd0936eaee88113f415', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 168.53182993686548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0922d956685d68f049', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:34.000Z'}}, {'blockNum': '0x6b2305', 'uniqueId': '0x8d5f6694b4f92f8f01228a0afb9f3a1d785dcd35577c44b713b199d06a73a23d:log:68', 'hash': '0x8d5f6694b4f92f8f01228a0afb9f3a1d785dcd35577c44b713b199d06a73a23d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 409.2708462478362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x162fc62240a5c97332', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:34.000Z'}}, {'blockNum': '0x6b2305', 'uniqueId': '0x8d5f6694b4f92f8f01228a0afb9f3a1d785dcd35577c44b713b199d06a73a23d:log:72', 'hash': '0x8d5f6694b4f92f8f01228a0afb9f3a1d785dcd35577c44b713b199d06a73a23d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 409.2708462478362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x162fc62240a5c97332', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:34.000Z'}}, {'blockNum': '0x6b2306', 'uniqueId': '0xcb148c03180219a2e1aceec7669a90b098cd9bc59212105aa13a2bb88ec4cc8b:log:19', 'hash': '0xcb148c03180219a2e1aceec7669a90b098cd9bc59212105aa13a2bb88ec4cc8b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1235.864184653517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42ff0f980da4a39b9d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:55.000Z'}}, {'blockNum': '0x6b2306', 'uniqueId': '0xcb148c03180219a2e1aceec7669a90b098cd9bc59212105aa13a2bb88ec4cc8b:log:22', 'hash': '0xcb148c03180219a2e1aceec7669a90b098cd9bc59212105aa13a2bb88ec4cc8b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x75cb35f73659474e4cfbd4ba41027dd991b901db', 'value': 1235.864184653517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42ff0f980da4a39b9d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:55.000Z'}}, {'blockNum': '0x6b230a', 'uniqueId': '0x946048ac6a6a4ec6475d02b1c0fbe9fa1ac8ca17c27684babbfcde833f06ee29:log:53', 'hash': '0x946048ac6a6a4ec6475d02b1c0fbe9fa1ac8ca17c27684babbfcde833f06ee29', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 87.2788487597403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04bb3cc286195cde45', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:54:50.000Z'}}, {'blockNum': '0x6b230a', 'uniqueId': '0x946048ac6a6a4ec6475d02b1c0fbe9fa1ac8ca17c27684babbfcde833f06ee29:log:57', 'hash': '0x946048ac6a6a4ec6475d02b1c0fbe9fa1ac8ca17c27684babbfcde833f06ee29', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 87.2788487597403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04bb3cc286195cde45', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:54:50.000Z'}}, {'blockNum': '0x6b2311', 'uniqueId': '0x6bbf0f6ec70a784069bdc7feeb1cfdcd8b479983acd6a372a3775ecc92cdb855:log:21', 'hash': '0x6bbf0f6ec70a784069bdc7feeb1cfdcd8b479983acd6a372a3775ecc92cdb855', 'from': '0x75cb35f73659474e4cfbd4ba41027dd991b901db', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42f31164b0876c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:16.000Z'}}, {'blockNum': '0x6b2311', 'uniqueId': '0x6bbf0f6ec70a784069bdc7feeb1cfdcd8b479983acd6a372a3775ecc92cdb855:log:24', 'hash': '0x6bbf0f6ec70a784069bdc7feeb1cfdcd8b479983acd6a372a3775ecc92cdb855', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 1235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42f31164b0876c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:16.000Z'}}, {'blockNum': '0x6b2311', 'uniqueId': '0x254f45800f55e81262674874cff459782edfcddbe4e03197b7b1c531cbf16309:log:49', 'hash': '0x254f45800f55e81262674874cff459782edfcddbe4e03197b7b1c531cbf16309', 'from': '0x8a7bdf8388add5a24b357d947911be3a07801c56', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 858.0276728651355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e8386a672057956b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:16.000Z'}}, {'blockNum': '0x6b2311', 'uniqueId': '0x254f45800f55e81262674874cff459782edfcddbe4e03197b7b1c531cbf16309:log:53', 'hash': '0x254f45800f55e81262674874cff459782edfcddbe4e03197b7b1c531cbf16309', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 858.0276728651355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e8386a672057956b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:16.000Z'}}, {'blockNum': '0x6b2311', 'uniqueId': '0xd288b2c475376d631bfb27fd83eadc68c35a3af6a6d391ef6719aa610a7aea88:log:65', 'hash': '0xd288b2c475376d631bfb27fd83eadc68c35a3af6a6d391ef6719aa610a7aea88', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 179.76529890758604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09bebea2eb48950599', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:16.000Z'}}, {'blockNum': '0x6b2311', 'uniqueId': '0xd288b2c475376d631bfb27fd83eadc68c35a3af6a6d391ef6719aa610a7aea88:log:69', 'hash': '0xd288b2c475376d631bfb27fd83eadc68c35a3af6a6d391ef6719aa610a7aea88', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8a7bdf8388add5a24b357d947911be3a07801c56', 'value': 179.76529890758604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09bebea2eb48950599', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:16.000Z'}}, {'blockNum': '0x6b2312', 'uniqueId': '0x2ae93424a7a1454565ec2f2bf43f615fa12a4071c193961d385a231951584bfc:log:52', 'hash': '0x2ae93424a7a1454565ec2f2bf43f615fa12a4071c193961d385a231951584bfc', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0xb7f6a37b2f6869752659a33f3288455e46bc3902', 'value': 1499.55846087, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x514a8ddb28f7da3c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:29.000Z'}}, {'blockNum': '0x6b2316', 'uniqueId': '0xa562b13b09a764fa2ee20383bef5ccc394acefcf2d9fdd007a99b025eca5bc31:log:30', 'hash': '0xa562b13b09a764fa2ee20383bef5ccc394acefcf2d9fdd007a99b025eca5bc31', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1220.9737021769345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x423069f9224dc5c6fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:55.000Z'}}, {'blockNum': '0x6b2316', 'uniqueId': '0xa562b13b09a764fa2ee20383bef5ccc394acefcf2d9fdd007a99b025eca5bc31:log:33', 'hash': '0xa562b13b09a764fa2ee20383bef5ccc394acefcf2d9fdd007a99b025eca5bc31', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'value': 1220.9737021769345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x423069f9224dc5c6fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:55.000Z'}}, {'blockNum': '0x6b2317', 'uniqueId': '0x16cbda803a25e96eb28e77b541450a107aa1853f5e6d46ac17347bb643919e01:log:73', 'hash': '0x16cbda803a25e96eb28e77b541450a107aa1853f5e6d46ac17347bb643919e01', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 449.33056814225205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185bb6db11eb6214f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:58:31.000Z'}}, {'blockNum': '0x6b2317', 'uniqueId': '0x16cbda803a25e96eb28e77b541450a107aa1853f5e6d46ac17347bb643919e01:log:77', 'hash': '0x16cbda803a25e96eb28e77b541450a107aa1853f5e6d46ac17347bb643919e01', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 449.33056814225205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185bb6db11eb6214f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:58:31.000Z'}}, {'blockNum': '0x6b2317', 'uniqueId': '0x7ea60b0b3f225533bfe23f204908be8bc71d919ba080e52e29dee172142583fd:log:89', 'hash': '0x7ea60b0b3f225533bfe23f204908be8bc71d919ba080e52e29dee172142583fd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 643.9447497190929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22e887521aa05aa811', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:58:31.000Z'}}, {'blockNum': '0x6b2317', 'uniqueId': '0x7ea60b0b3f225533bfe23f204908be8bc71d919ba080e52e29dee172142583fd:log:93', 'hash': '0x7ea60b0b3f225533bfe23f204908be8bc71d919ba080e52e29dee172142583fd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 643.9447497190929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22e887521aa05aa811', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:58:31.000Z'}}, {'blockNum': '0x6b2319', 'uniqueId': '0x79e7aa8e04e2e4fd19fc835f5c4c3b8dab65ea5162266a1439be7255222edfda:log:39', 'hash': '0x79e7aa8e04e2e4fd19fc835f5c4c3b8dab65ea5162266a1439be7255222edfda', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 974.5161362679869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34d420ceba5b85b558', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:59:02.000Z'}}, {'blockNum': '0x6b2319', 'uniqueId': '0x79e7aa8e04e2e4fd19fc835f5c4c3b8dab65ea5162266a1439be7255222edfda:log:43', 'hash': '0x79e7aa8e04e2e4fd19fc835f5c4c3b8dab65ea5162266a1439be7255222edfda', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 974.5161362679869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34d420ceba5b85b558', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:59:02.000Z'}}, {'blockNum': '0x6b231c', 'uniqueId': '0x76fe4a53cf1909320d879c2c6df5284756cc951692b2b8a45422588e40c566be:log:71', 'hash': '0x76fe4a53cf1909320d879c2c6df5284756cc951692b2b8a45422588e40c566be', 'from': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'to': '0x77521132fad812cedb7dd5b4f34835e71821b4eb', 'value': 1220.9737021769345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x423069f9224dc5c6fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:59:53.000Z'}}, {'blockNum': '0x6b231f', 'uniqueId': '0x58cce4ce23017214ead66c1ea519b4c18bd424a2e1a1294f0aa3c17a399a2dc5:log:11', 'hash': '0x58cce4ce23017214ead66c1ea519b4c18bd424a2e1a1294f0aa3c17a399a2dc5', 'from': '0x2051dd2bab0ae6c75dee40546e5ffa196ccc2448', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 132.33431128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x072c81eaf8d05e6000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:00:33.000Z'}}, {'blockNum': '0x6b231f', 'uniqueId': '0x9af78743876c9f23ea24beebc1519825d7a562077293116ad51d5b9a39dbd970:log:27', 'hash': '0x9af78743876c9f23ea24beebc1519825d7a562077293116ad51d5b9a39dbd970', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 221.30550447514918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bff3b17cb17e3366c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:00:33.000Z'}}, {'blockNum': '0x6b231f', 'uniqueId': '0x9af78743876c9f23ea24beebc1519825d7a562077293116ad51d5b9a39dbd970:log:31', 'hash': '0x9af78743876c9f23ea24beebc1519825d7a562077293116ad51d5b9a39dbd970', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 221.30550447514918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bff3b17cb17e3366c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:00:33.000Z'}}, {'blockNum': '0x6b2322', 'uniqueId': '0x1dd9331e22fcbbe88758b78ddd04ec7fc4c9b61382e11c8a08787b71ada815fb:log:66', 'hash': '0x1dd9331e22fcbbe88758b78ddd04ec7fc4c9b61382e11c8a08787b71ada815fb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 44.934697558665704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026f981d5af9e1b0dc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:01:53.000Z'}}, {'blockNum': '0x6b2322', 'uniqueId': '0x1dd9331e22fcbbe88758b78ddd04ec7fc4c9b61382e11c8a08787b71ada815fb:log:70', 'hash': '0x1dd9331e22fcbbe88758b78ddd04ec7fc4c9b61382e11c8a08787b71ada815fb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 44.934697558665704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026f981d5af9e1b0dc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:01:53.000Z'}}, {'blockNum': '0x6b2322', 'uniqueId': '0x6d75d335dfd0a17d591ca83ba27066da7537e1ada0f811f52c1e8114b3d451e2:log:77', 'hash': '0x6d75d335dfd0a17d591ca83ba27066da7537e1ada0f811f52c1e8114b3d451e2', 'from': '0x77521132fad812cedb7dd5b4f34835e71821b4eb', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4230c766dd5ff40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:01:53.000Z'}}, {'blockNum': '0x6b2322', 'uniqueId': '0x6d75d335dfd0a17d591ca83ba27066da7537e1ada0f811f52c1e8114b3d451e2:log:80', 'hash': '0x6d75d335dfd0a17d591ca83ba27066da7537e1ada0f811f52c1e8114b3d451e2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 1221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4230c766dd5ff40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:01:53.000Z'}}, {'blockNum': '0x6b2323', 'uniqueId': '0x65b50c91b2d75acd6e3d424a42999c4081a03a5d218999620daf388ac42d304c:log:85', 'hash': '0x65b50c91b2d75acd6e3d424a42999c4081a03a5d218999620daf388ac42d304c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.66985887672485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2debae4be453cf8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:02:39.000Z'}}, {'blockNum': '0x6b2323', 'uniqueId': '0x65b50c91b2d75acd6e3d424a42999c4081a03a5d218999620daf388ac42d304c:log:89', 'hash': '0x65b50c91b2d75acd6e3d424a42999c4081a03a5d218999620daf388ac42d304c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 224.66985887672485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2debae4be453cf8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:02:39.000Z'}}, {'blockNum': '0x6b2328', 'uniqueId': '0xabeaec43a49f3aa3ca477e7c2f09d091928ede4268e5e0c1c19c42557aeec1b5:log:89', 'hash': '0xabeaec43a49f3aa3ca477e7c2f09d091928ede4268e5e0c1c19c42557aeec1b5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 126.27335474046538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06d865131c8e539fc3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:03:18.000Z'}}, {'blockNum': '0x6b2328', 'uniqueId': '0xabeaec43a49f3aa3ca477e7c2f09d091928ede4268e5e0c1c19c42557aeec1b5:log:93', 'hash': '0xabeaec43a49f3aa3ca477e7c2f09d091928ede4268e5e0c1c19c42557aeec1b5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 126.27335474046538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06d865131c8e539fc3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:03:18.000Z'}}, {'blockNum': '0x6b2328', 'uniqueId': '0xd3ef6830f1ca42a6cba0c593c7ac6b233bb8c0d35e6c4cb4cf6c83c0edef7e8a:log:108', 'hash': '0xd3ef6830f1ca42a6cba0c593c7ac6b233bb8c0d35e6c4cb4cf6c83c0edef7e8a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 112.33096186259063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0616e7bea8b9aa8ee8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:03:18.000Z'}}, {'blockNum': '0x6b2328', 'uniqueId': '0xd3ef6830f1ca42a6cba0c593c7ac6b233bb8c0d35e6c4cb4cf6c83c0edef7e8a:log:112', 'hash': '0xd3ef6830f1ca42a6cba0c593c7ac6b233bb8c0d35e6c4cb4cf6c83c0edef7e8a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 112.33096186259063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0616e7bea8b9aa8ee8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:03:18.000Z'}}, {'blockNum': '0x6b2333', 'uniqueId': '0xa2d73b03eafbfc1e488831d381f659a106ed67561c018b652409f970478141ab:log:51', 'hash': '0xa2d73b03eafbfc1e488831d381f659a106ed67561c018b652409f970478141ab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 81.90495366671198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0470a8d968a931fcab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:43.000Z'}}, {'blockNum': '0x6b2333', 'uniqueId': '0xa2d73b03eafbfc1e488831d381f659a106ed67561c018b652409f970478141ab:log:55', 'hash': '0xa2d73b03eafbfc1e488831d381f659a106ed67561c018b652409f970478141ab', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 81.90495366671198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0470a8d968a931fcab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:43.000Z'}}, {'blockNum': '0x6b2334', 'uniqueId': '0xec6214e6b1a2941f97bdd1723636dfc67b1254d91ce97c6440fdd5386b95e88b:log:21', 'hash': '0xec6214e6b1a2941f97bdd1723636dfc67b1254d91ce97c6440fdd5386b95e88b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 134.79383570081757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x074ea3e766cb99253d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:46.000Z'}}, {'blockNum': '0x6b2334', 'uniqueId': '0xec6214e6b1a2941f97bdd1723636dfc67b1254d91ce97c6440fdd5386b95e88b:log:25', 'hash': '0xec6214e6b1a2941f97bdd1723636dfc67b1254d91ce97c6440fdd5386b95e88b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 134.79383570081757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x074ea3e766cb99253d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:46.000Z'}}, {'blockNum': '0x6b2335', 'uniqueId': '0xa930f6f77662caad54d03c69f94e192093da5454fd6505a561fa22a1116a0725:log:37', 'hash': '0xa930f6f77662caad54d03c69f94e192093da5454fd6505a561fa22a1116a0725', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 110.94485840206211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0603ab50e7d6ec8efc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:57.000Z'}}, {'blockNum': '0x6b2335', 'uniqueId': '0xa930f6f77662caad54d03c69f94e192093da5454fd6505a561fa22a1116a0725:log:41', 'hash': '0xa930f6f77662caad54d03c69f94e192093da5454fd6505a561fa22a1116a0725', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 110.94485840206211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0603ab50e7d6ec8efc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:57.000Z'}}, {'blockNum': '0x6b2335', 'uniqueId': '0xc26e35373768f8e418980436751872db8db4c9957e8b75d81792fd31ec842ff1:log:52', 'hash': '0xc26e35373768f8e418980436751872db8db4c9957e8b75d81792fd31ec842ff1', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 682.3318552991844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24fd41b73ed920a35e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:57.000Z'}}, {'blockNum': '0x6b2335', 'uniqueId': '0xc26e35373768f8e418980436751872db8db4c9957e8b75d81792fd31ec842ff1:log:56', 'hash': '0xc26e35373768f8e418980436751872db8db4c9957e8b75d81792fd31ec842ff1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 682.3318552991844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24fd41b73ed920a35e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:57.000Z'}}, {'blockNum': '0x6b2335', 'uniqueId': '0xe574b20d5810740072dc7cbbb2cc8b1197a1bb2e2373ecb690464cb7f84fd679:log:74', 'hash': '0xe574b20d5810740072dc7cbbb2cc8b1197a1bb2e2373ecb690464cb7f84fd679', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 677.0140000091819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24b374e608d1980000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:57.000Z'}}, {'blockNum': '0x6b2339', 'uniqueId': '0xf1b4a5cbf1cad900d2353aa5fb8345a6d1cc348c3a69b147a0d7f12f141cf943:log:21', 'hash': '0xf1b4a5cbf1cad900d2353aa5fb8345a6d1cc348c3a69b147a0d7f12f141cf943', 'from': '0xdda1bfaf552b0f303d27853a4a13dd440c7e849f', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 450.00321498311763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18650c93ced477d7aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:10:38.000Z'}}, {'blockNum': '0x6b2339', 'uniqueId': '0xf1b4a5cbf1cad900d2353aa5fb8345a6d1cc348c3a69b147a0d7f12f141cf943:log:26', 'hash': '0xf1b4a5cbf1cad900d2353aa5fb8345a6d1cc348c3a69b147a0d7f12f141cf943', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 450.00321498311763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18650c93ced477d7aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:10:38.000Z'}}, {'blockNum': '0x6b233a', 'uniqueId': '0x3fbaba1a9dfd7690dee0faf9c55edd7efd3d458b59543e40330b4b9070abba90:log:63', 'hash': '0x3fbaba1a9dfd7690dee0faf9c55edd7efd3d458b59543e40330b4b9070abba90', 'from': '0x7172c5b24bdce3b93a78c53ef1ece011b0472c1b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 23.967250193644336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014c9cc71133152f6f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:11.000Z'}}, {'blockNum': '0x6b233a', 'uniqueId': '0x3fbaba1a9dfd7690dee0faf9c55edd7efd3d458b59543e40330b4b9070abba90:log:67', 'hash': '0x3fbaba1a9dfd7690dee0faf9c55edd7efd3d458b59543e40330b4b9070abba90', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 23.967250193644336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014c9cc71133152f6f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:11.000Z'}}, {'blockNum': '0x6b233b', 'uniqueId': '0xe3774e0d589b65243cb8bddbcb192c21f1587fc9f9e76a0ff5329ffa1b453e14:log:49', 'hash': '0xe3774e0d589b65243cb8bddbcb192c21f1587fc9f9e76a0ff5329ffa1b453e14', 'from': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 719.0605391542651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26faf8369d62d52b39', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:19.000Z'}}, {'blockNum': '0x6b233b', 'uniqueId': '0xe3774e0d589b65243cb8bddbcb192c21f1587fc9f9e76a0ff5329ffa1b453e14:log:54', 'hash': '0xe3774e0d589b65243cb8bddbcb192c21f1587fc9f9e76a0ff5329ffa1b453e14', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 719.0605391542651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26faf8369d62d52b39', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:19.000Z'}}, {'blockNum': '0x6b233b', 'uniqueId': '0xc1490ea6598c05e53240c8899260c40936791897d40780217dce0305ce3d9828:log:68', 'hash': '0xc1490ea6598c05e53240c8899260c40936791897d40780217dce0305ce3d9828', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 112.33753313901074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0616ff17333e68642d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:19.000Z'}}, {'blockNum': '0x6b233b', 'uniqueId': '0xc1490ea6598c05e53240c8899260c40936791897d40780217dce0305ce3d9828:log:72', 'hash': '0xc1490ea6598c05e53240c8899260c40936791897d40780217dce0305ce3d9828', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'value': 112.33753313901074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0616ff17333e68642d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:19.000Z'}}, {'blockNum': '0x6b233c', 'uniqueId': '0xec85f573fe4edab8e225583288dced0f2d1ea581e006e3158b82bf7d42ac96fc:log:93', 'hash': '0xec85f573fe4edab8e225583288dced0f2d1ea581e006e3158b82bf7d42ac96fc', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 542.3694314180254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d66e34c473dfee476', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:34.000Z'}}, {'blockNum': '0x6b233c', 'uniqueId': '0xec85f573fe4edab8e225583288dced0f2d1ea581e006e3158b82bf7d42ac96fc:log:97', 'hash': '0xec85f573fe4edab8e225583288dced0f2d1ea581e006e3158b82bf7d42ac96fc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 542.3694314180254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d66e34c473dfee476', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:34.000Z'}}, {'blockNum': '0x6b233e', 'uniqueId': '0x0c4aca43a9e69843ee32e4f43ea089a0a0817228a42e272d5ea61fef3977c8c9:log:42', 'hash': '0x0c4aca43a9e69843ee32e4f43ea089a0a0817228a42e272d5ea61fef3977c8c9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 22.468785310832722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0137d129320ab2fcf6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:50.000Z'}}, {'blockNum': '0x6b233e', 'uniqueId': '0x0c4aca43a9e69843ee32e4f43ea089a0a0817228a42e272d5ea61fef3977c8c9:log:46', 'hash': '0x0c4aca43a9e69843ee32e4f43ea089a0a0817228a42e272d5ea61fef3977c8c9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 22.468785310832722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0137d129320ab2fcf6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:50.000Z'}}, {'blockNum': '0x6b233e', 'uniqueId': '0xf09783d183f1417110bdd66251fcd42ac79c7b3917a5fb9034e61ef26a551002:log:60', 'hash': '0xf09783d183f1417110bdd66251fcd42ac79c7b3917a5fb9034e61ef26a551002', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 253.49468124734184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dbdf20585a6afa18e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:50.000Z'}}, {'blockNum': '0x6b233e', 'uniqueId': '0xf09783d183f1417110bdd66251fcd42ac79c7b3917a5fb9034e61ef26a551002:log:64', 'hash': '0xf09783d183f1417110bdd66251fcd42ac79c7b3917a5fb9034e61ef26a551002', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'value': 253.49468124734184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dbdf20585a6afa18e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:50.000Z'}}, {'blockNum': '0x6b2348', 'uniqueId': '0x5176b370b67a60bfd1b7a46885357a9058da37f17f0369c870bfa87d6a2eeab1:log:68', 'hash': '0x5176b370b67a60bfd1b7a46885357a9058da37f17f0369c870bfa87d6a2eeab1', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 423.50091352384925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16f5417d0bc2754004', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:14:03.000Z'}}, {'blockNum': '0x6b2348', 'uniqueId': '0x5176b370b67a60bfd1b7a46885357a9058da37f17f0369c870bfa87d6a2eeab1:log:72', 'hash': '0x5176b370b67a60bfd1b7a46885357a9058da37f17f0369c870bfa87d6a2eeab1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 423.50091352384925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16f5417d0bc2754004', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:14:03.000Z'}}, {'blockNum': '0x6b2349', 'uniqueId': '0x626f6f5a11ae038f13f3dbfd073dd393fd054f91021d3ae1d66eebba7ec02b16:log:0', 'hash': '0x626f6f5a11ae038f13f3dbfd073dd393fd054f91021d3ae1d66eebba7ec02b16', 'from': '0xb5f4d354759a310314259c63268356a9fdcae1b7', 'to': '0x54c4bdcc5303911cc1ccd9ccd74ff722eb56c596', 'value': 1842.9608901571594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x63e8385d2c3330bd1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:14:26.000Z'}}, {'blockNum': '0x6b234a', 'uniqueId': '0x78ed7a55b09e2ec6175f0e176ca2fd6dcba350184c4f39e2e65b48e1dad67c51:log:24', 'hash': '0x78ed7a55b09e2ec6175f0e176ca2fd6dcba350184c4f39e2e65b48e1dad67c51', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 295.4340575675368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1003f89e14b955ec51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:15:01.000Z'}}, {'blockNum': '0x6b234a', 'uniqueId': '0x78ed7a55b09e2ec6175f0e176ca2fd6dcba350184c4f39e2e65b48e1dad67c51:log:26', 'hash': '0x78ed7a55b09e2ec6175f0e176ca2fd6dcba350184c4f39e2e65b48e1dad67c51', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 295.4340575675368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1003f89e14b955ec51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:15:01.000Z'}}, {'blockNum': '0x6b234b', 'uniqueId': '0x45f4a3a9652f0a1240e3f8530c09770a471337effc808027c3591c9588cd4207:log:83', 'hash': '0x45f4a3a9652f0a1240e3f8530c09770a471337effc808027c3591c9588cd4207', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.50581241729014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09227ce79c892f94f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:15:08.000Z'}}, {'blockNum': '0x6b234b', 'uniqueId': '0x45f4a3a9652f0a1240e3f8530c09770a471337effc808027c3591c9588cd4207:log:87', 'hash': '0x45f4a3a9652f0a1240e3f8530c09770a471337effc808027c3591c9588cd4207', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x599485dc0f3d8b308b973b2db5cd44bae46d31c4', 'value': 168.50581241729014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09227ce79c892f94f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:15:08.000Z'}}, {'blockNum': '0x6b234c', 'uniqueId': '0xa4b55da1353cf185eac944d96fb48c9db31cd51ca5c11e14a543aa0806be6489:log:24', 'hash': '0xa4b55da1353cf185eac944d96fb48c9db31cd51ca5c11e14a543aa0806be6489', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 706.276474171816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26498e173f0271459e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:16:01.000Z'}}, {'blockNum': '0x6b234c', 'uniqueId': '0xa4b55da1353cf185eac944d96fb48c9db31cd51ca5c11e14a543aa0806be6489:log:28', 'hash': '0xa4b55da1353cf185eac944d96fb48c9db31cd51ca5c11e14a543aa0806be6489', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x599485dc0f3d8b308b973b2db5cd44bae46d31c4', 'value': 706.276474171816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26498e173f0271459e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:16:01.000Z'}}, {'blockNum': '0x6b2351', 'uniqueId': '0xa5727489e46170e5a555354d0f96f9dc2811c16bee28fca8b0a46e322be0d00b:log:9', 'hash': '0xa5727489e46170e5a555354d0f96f9dc2811c16bee28fca8b0a46e322be0d00b', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 26.554916820858022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01708604279349a82b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:16:58.000Z'}}, {'blockNum': '0x6b2351', 'uniqueId': '0xa5727489e46170e5a555354d0f96f9dc2811c16bee28fca8b0a46e322be0d00b:log:12', 'hash': '0xa5727489e46170e5a555354d0f96f9dc2811c16bee28fca8b0a46e322be0d00b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 26.554916820858022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01708604279349a82b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:16:58.000Z'}}, {'blockNum': '0x6b235d', 'uniqueId': '0xf20b28b4843f38b1df086d2e6f5363a58ffdbde834feb8438eafed9b8971538e:log:67', 'hash': '0xf20b28b4843f38b1df086d2e6f5363a58ffdbde834feb8438eafed9b8971538e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 67.4026869689148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a76672aef904597d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:18:23.000Z'}}, {'blockNum': '0x6b235d', 'uniqueId': '0xf20b28b4843f38b1df086d2e6f5363a58ffdbde834feb8438eafed9b8971538e:log:71', 'hash': '0xf20b28b4843f38b1df086d2e6f5363a58ffdbde834feb8438eafed9b8971538e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 67.4026869689148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a76672aef904597d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:18:23.000Z'}}, {'blockNum': '0x6b2367', 'uniqueId': '0x96a53ff5ab3f2441c6c5e51aef1a308e7cc79627428a9aea1867bf4224efb948:log:47', 'hash': '0x96a53ff5ab3f2441c6c5e51aef1a308e7cc79627428a9aea1867bf4224efb948', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0x173b58d0a312631fb8caf130bfb9dc3d67856565', 'value': 1232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42c96f409591400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:19:59.000Z'}}, {'blockNum': '0x6b237a', 'uniqueId': '0xe5c359c6e3364ca29e4f58967c38a3d9a95e2e6cf796cfdc02ad17b3698202bb:log:41', 'hash': '0xe5c359c6e3364ca29e4f58967c38a3d9a95e2e6cf796cfdc02ad17b3698202bb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 67.40214261379911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a76483986bb71fee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:24:35.000Z'}}, {'blockNum': '0x6b237a', 'uniqueId': '0xe5c359c6e3364ca29e4f58967c38a3d9a95e2e6cf796cfdc02ad17b3698202bb:log:45', 'hash': '0xe5c359c6e3364ca29e4f58967c38a3d9a95e2e6cf796cfdc02ad17b3698202bb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 67.40214261379911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a76483986bb71fee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:24:35.000Z'}}, {'blockNum': '0x6b237d', 'uniqueId': '0xc2805b9efc4584c08b8b9dfab6909ff1cfb490cbc500235beecd6b617242982f:log:17', 'hash': '0xc2805b9efc4584c08b8b9dfab6909ff1cfb490cbc500235beecd6b617242982f', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:25:42.000Z'}}, {'blockNum': '0x6b237d', 'uniqueId': '0xc2805b9efc4584c08b8b9dfab6909ff1cfb490cbc500235beecd6b617242982f:log:20', 'hash': '0xc2805b9efc4584c08b8b9dfab6909ff1cfb490cbc500235beecd6b617242982f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:25:42.000Z'}}, {'blockNum': '0x6b237d', 'uniqueId': '0xc2805b9efc4584c08b8b9dfab6909ff1cfb490cbc500235beecd6b617242982f:log:22', 'hash': '0xc2805b9efc4584c08b8b9dfab6909ff1cfb490cbc500235beecd6b617242982f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:25:42.000Z'}}, {'blockNum': '0x6b238d', 'uniqueId': '0x59c440416c3dc6f3ed9ece4bec9f41da8a4bebef72285f837bbb6ad379b9d672:log:3', 'hash': '0x59c440416c3dc6f3ed9ece4bec9f41da8a4bebef72285f837bbb6ad379b9d672', 'from': '0x54c4bdcc5303911cc1ccd9ccd74ff722eb56c596', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1842.9608901571594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x63e8385d2c3330bd1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:30:15.000Z'}}, {'blockNum': '0x6b2394', 'uniqueId': '0x8a8239f84d17209d5f027e0efc6c1fa16685df4e00bcd8f9d84e29e3f1a99f6c:log:44', 'hash': '0x8a8239f84d17209d5f027e0efc6c1fa16685df4e00bcd8f9d84e29e3f1a99f6c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.6698773782121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2debbf1f9ae6dc2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:31:29.000Z'}}, {'blockNum': '0x6b2394', 'uniqueId': '0x8a8239f84d17209d5f027e0efc6c1fa16685df4e00bcd8f9d84e29e3f1a99f6c:log:48', 'hash': '0x8a8239f84d17209d5f027e0efc6c1fa16685df4e00bcd8f9d84e29e3f1a99f6c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x445556b7215349b205997aaaf6c6dfa258eb029d', 'value': 224.6698773782121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2debbf1f9ae6dc2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:31:29.000Z'}}, {'blockNum': '0x6b2394', 'uniqueId': '0x5248842a2831f31698549ce3bea25e04fa10188b821b4287f1c7f306f1e38580:log:59', 'hash': '0x5248842a2831f31698549ce3bea25e04fa10188b821b4287f1c7f306f1e38580', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 26.95997885681835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01762515ee20b311fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:31:29.000Z'}}, {'blockNum': '0x6b2394', 'uniqueId': '0x5248842a2831f31698549ce3bea25e04fa10188b821b4287f1c7f306f1e38580:log:63', 'hash': '0x5248842a2831f31698549ce3bea25e04fa10188b821b4287f1c7f306f1e38580', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 26.95997885681835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01762515ee20b311fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:31:29.000Z'}}, {'blockNum': '0x6b2399', 'uniqueId': '0xc758a9d2966dc4de0f8403c9d5a2d94f4c7f5a4c05b5ebf40942b1a29ef44847:log:15', 'hash': '0xc758a9d2966dc4de0f8403c9d5a2d94f4c7f5a4c05b5ebf40942b1a29ef44847', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 386.79881754135147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14f7e97334b5629363', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:33:37.000Z'}}, {'blockNum': '0x6b2399', 'uniqueId': '0xc758a9d2966dc4de0f8403c9d5a2d94f4c7f5a4c05b5ebf40942b1a29ef44847:log:18', 'hash': '0xc758a9d2966dc4de0f8403c9d5a2d94f4c7f5a4c05b5ebf40942b1a29ef44847', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 386.79881754135147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14f7e97334b5629363', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:33:37.000Z'}}, {'blockNum': '0x6b239a', 'uniqueId': '0x7c611dfe82c6f650cd28b92c81ae82d0b9b2edc121e9288fc701282debdc59a9:log:55', 'hash': '0x7c611dfe82c6f650cd28b92c81ae82d0b9b2edc121e9288fc701282debdc59a9', 'from': '0x32d4fb837f41955b81556f74dadb2c5b8a0d0989', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2.512427822442228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22ddefcb087a28c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:33:42.000Z'}}, {'blockNum': '0x6b239a', 'uniqueId': '0x7c611dfe82c6f650cd28b92c81ae82d0b9b2edc121e9288fc701282debdc59a9:log:59', 'hash': '0x7c611dfe82c6f650cd28b92c81ae82d0b9b2edc121e9288fc701282debdc59a9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2.512427822442228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22ddefcb087a28c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:33:42.000Z'}}, {'blockNum': '0x6b239b', 'uniqueId': '0x3ba7b8435ac9c8ebd788f23e7ac90df0a25b029358fc5e267003003e892f2812:log:78', 'hash': '0x3ba7b8435ac9c8ebd788f23e7ac90df0a25b029358fc5e267003003e892f2812', 'from': '0x5c4c0b176825311452764a2e7327c6b0273b2db2', 'to': '0xd45f856e676e7c606ccf73c6130e497a96f795e9', 'value': 0.0993638726030607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x016102ea6a0339dc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:33:50.000Z'}}, {'blockNum': '0x6b23a7', 'uniqueId': '0xd838912101c19573b6ff7522527caddb2af798071b3eb2f8a376c2b3020cd2c3:log:22', 'hash': '0xd838912101c19573b6ff7522527caddb2af798071b3eb2f8a376c2b3020cd2c3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 674.0026071215254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2489aa48287db05ffb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:36:20.000Z'}}, {'blockNum': '0x6b23a7', 'uniqueId': '0xd838912101c19573b6ff7522527caddb2af798071b3eb2f8a376c2b3020cd2c3:log:26', 'hash': '0xd838912101c19573b6ff7522527caddb2af798071b3eb2f8a376c2b3020cd2c3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 674.0026071215254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2489aa48287db05ffb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:36:20.000Z'}}, {'blockNum': '0x6b23aa', 'uniqueId': '0xd01447b9aa0a96ec1604800366ae894cee3ca8764b90c6b62607e7d310f76f19:log:95', 'hash': '0xd01447b9aa0a96ec1604800366ae894cee3ca8764b90c6b62607e7d310f76f19', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0x707457bda53e824c2fef1832d79783c8e7851f86', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:36:46.000Z'}}, {'blockNum': '0x6b23bb', 'uniqueId': '0x5ed8ac9e171317bcac29bb78d0cb050f65661d825183a83cdfcdc3bcf6c88145:log:39', 'hash': '0x5ed8ac9e171317bcac29bb78d0cb050f65661d825183a83cdfcdc3bcf6c88145', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 746.7313272556684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x287afa99c97214168e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:41:26.000Z'}}, {'blockNum': '0x6b23bb', 'uniqueId': '0x5ed8ac9e171317bcac29bb78d0cb050f65661d825183a83cdfcdc3bcf6c88145:log:43', 'hash': '0x5ed8ac9e171317bcac29bb78d0cb050f65661d825183a83cdfcdc3bcf6c88145', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'value': 746.7313272556684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x287afa99c97214168e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:41:26.000Z'}}, {'blockNum': '0x6b23be', 'uniqueId': '0xc8b383f4c42288533139a2cad131639eb4b23a45007479cabc630cede1a3ade3:log:44', 'hash': '0xc8b383f4c42288533139a2cad131639eb4b23a45007479cabc630cede1a3ade3', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0x707457bda53e824c2fef1832d79783c8e7851f86', 'value': 740, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x281d901f4fdd100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:42:22.000Z'}}, {'blockNum': '0x6b23ce', 'uniqueId': '0xd6facd90b9c35ca7bdf1672321c106e9635755591f85d84fbf096e7b619281a3:log:26', 'hash': '0xd6facd90b9c35ca7bdf1672321c106e9635755591f85d84fbf096e7b619281a3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 893.3198852976733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x306d4dc6aaa8838690', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:45:41.000Z'}}, {'blockNum': '0x6b23ce', 'uniqueId': '0xd6facd90b9c35ca7bdf1672321c106e9635755591f85d84fbf096e7b619281a3:log:30', 'hash': '0xd6facd90b9c35ca7bdf1672321c106e9635755591f85d84fbf096e7b619281a3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 893.3198852976733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x306d4dc6aaa8838690', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:45:41.000Z'}}, {'blockNum': '0x6b23ce', 'uniqueId': '0x76f2a70bd6cc1dc73b5766406dc85745edb3ba55da219ff5d54789cec40dda46:log:46', 'hash': '0x76f2a70bd6cc1dc73b5766406dc85745edb3ba55da219ff5d54789cec40dda46', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4999.465028986442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0583cb8fecdb67ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:45:41.000Z'}}, {'blockNum': '0x6b23ce', 'uniqueId': '0x76f2a70bd6cc1dc73b5766406dc85745edb3ba55da219ff5d54789cec40dda46:log:49', 'hash': '0x76f2a70bd6cc1dc73b5766406dc85745edb3ba55da219ff5d54789cec40dda46', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4999.465028986442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0583cb8fecdb67ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:45:41.000Z'}}, {'blockNum': '0x6b23ce', 'uniqueId': '0x18e55b6118ea96b0b1865b8738a5334e616bc8e7a678e41fe8213bb28968f994:log:55', 'hash': '0x18e55b6118ea96b0b1865b8738a5334e616bc8e7a678e41fe8213bb28968f994', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 91.07915747143707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04effa2b2986df2ded', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:45:41.000Z'}}, {'blockNum': '0x6b23ce', 'uniqueId': '0x18e55b6118ea96b0b1865b8738a5334e616bc8e7a678e41fe8213bb28968f994:log:59', 'hash': '0x18e55b6118ea96b0b1865b8738a5334e616bc8e7a678e41fe8213bb28968f994', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'value': 91.07915747143707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04effa2b2986df2ded', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:45:41.000Z'}}, {'blockNum': '0x6b23da', 'uniqueId': '0x2663c6d0072d8f09f66f86fe3b78e000fcf8da1f1f2901d34c951b22829ff984:log:15', 'hash': '0x2663c6d0072d8f09f66f86fe3b78e000fcf8da1f1f2901d34c951b22829ff984', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x0826c21016ba7a0d663ca520349bee75ec4e79df', 'value': 488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a745c467716a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:49:06.000Z'}}, {'blockNum': '0x6b23de', 'uniqueId': '0x1789c7a439dbb16a4476d1bd7b3f7a7dac5281585bd107705e53cb4caf13df90:log:69', 'hash': '0x1789c7a439dbb16a4476d1bd7b3f7a7dac5281585bd107705e53cb4caf13df90', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0x77e987a77e75d8d73a65b1d4e041c6fe059bf0ef', 'value': 40, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022b1c8c1227a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:49:38.000Z'}}, {'blockNum': '0x6b23ea', 'uniqueId': '0xa5a4ff37fda41a6e439d24bd4a451633119a9fa27f4f5485623398a005506fbd:log:22', 'hash': '0xa5a4ff37fda41a6e439d24bd4a451633119a9fa27f4f5485623398a005506fbd', 'from': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 454.85557423247093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18a8639ed618c06e81', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:53:07.000Z'}}, {'blockNum': '0x6b23ea', 'uniqueId': '0xa5a4ff37fda41a6e439d24bd4a451633119a9fa27f4f5485623398a005506fbd:log:26', 'hash': '0xa5a4ff37fda41a6e439d24bd4a451633119a9fa27f4f5485623398a005506fbd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 454.85557423247093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18a8639ed618c06e81', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:53:07.000Z'}}, {'blockNum': '0x6b23eb', 'uniqueId': '0xa2e2b194ebdf7fa7d4bd154f0447c1e7690e60edf0cbeeb88f5be3b213bc1135:log:25', 'hash': '0xa2e2b194ebdf7fa7d4bd154f0447c1e7690e60edf0cbeeb88f5be3b213bc1135', 'from': '0x77e987a77e75d8d73a65b1d4e041c6fe059bf0ef', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 40, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022b1c8c1227a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:53:26.000Z'}}, {'blockNum': '0x6b23eb', 'uniqueId': '0xa2e2b194ebdf7fa7d4bd154f0447c1e7690e60edf0cbeeb88f5be3b213bc1135:log:26', 'hash': '0xa2e2b194ebdf7fa7d4bd154f0447c1e7690e60edf0cbeeb88f5be3b213bc1135', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 40, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022b1c8c1227a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:53:26.000Z'}}, {'blockNum': '0x6b23ef', 'uniqueId': '0x927dea51da6a3db46afe5fff431898fbd57921fc95575629e3f0befa0664ae53:log:27', 'hash': '0x927dea51da6a3db46afe5fff431898fbd57921fc95575629e3f0befa0664ae53', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 220.91600894412633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf9d353abe7ab1aaf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:54:40.000Z'}}, {'blockNum': '0x6b23ef', 'uniqueId': '0x927dea51da6a3db46afe5fff431898fbd57921fc95575629e3f0befa0664ae53:log:31', 'hash': '0x927dea51da6a3db46afe5fff431898fbd57921fc95575629e3f0befa0664ae53', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 220.91600894412633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf9d353abe7ab1aaf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:54:40.000Z'}}, {'blockNum': '0x6b23ef', 'uniqueId': '0x0c6dc0a97f9a3d9eb96c2555987ebbbe691716ce79e517f998856367745e37a1:log:43', 'hash': '0x0c6dc0a97f9a3d9eb96c2555987ebbbe691716ce79e517f998856367745e37a1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.48064072117745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2b4b7162f1dea61a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:54:40.000Z'}}, {'blockNum': '0x6b23ef', 'uniqueId': '0x0c6dc0a97f9a3d9eb96c2555987ebbbe691716ce79e517f998856367745e37a1:log:47', 'hash': '0x0c6dc0a97f9a3d9eb96c2555987ebbbe691716ce79e517f998856367745e37a1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 224.48064072117745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2b4b7162f1dea61a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:54:40.000Z'}}, {'blockNum': '0x6b23f4', 'uniqueId': '0x003a4c8c4b163fbf9779bec1116c5599dd435aa7dc6df6da5702973dbe17a5cf:log:46', 'hash': '0x003a4c8c4b163fbf9779bec1116c5599dd435aa7dc6df6da5702973dbe17a5cf', 'from': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 22.188906513062324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0133eed4e9696e6f77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:55:14.000Z'}}, {'blockNum': '0x6b23f4', 'uniqueId': '0x003a4c8c4b163fbf9779bec1116c5599dd435aa7dc6df6da5702973dbe17a5cf:log:50', 'hash': '0x003a4c8c4b163fbf9779bec1116c5599dd435aa7dc6df6da5702973dbe17a5cf', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 22.188906513062324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0133eed4e9696e6f77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:55:14.000Z'}}, {'blockNum': '0x6b23f4', 'uniqueId': '0x1922e765973488e47e545ae0203ebb402d29ab52b7d1d0e9374a16787980e8f1:log:113', 'hash': '0x1922e765973488e47e545ae0203ebb402d29ab52b7d1d0e9374a16787980e8f1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.47520026847718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2b381d52d740b9ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:55:14.000Z'}}, {'blockNum': '0x6b23f4', 'uniqueId': '0x1922e765973488e47e545ae0203ebb402d29ab52b7d1d0e9374a16787980e8f1:log:117', 'hash': '0x1922e765973488e47e545ae0203ebb402d29ab52b7d1d0e9374a16787980e8f1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 224.47520026847718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2b381d52d740b9ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:55:14.000Z'}}, {'blockNum': '0x6b23fb', 'uniqueId': '0x48073b82499485d5273da3a75380b7bb9406884074c07914d7da360c01c80fdc:log:34', 'hash': '0x48073b82499485d5273da3a75380b7bb9406884074c07914d7da360c01c80fdc', 'from': '0x707457bda53e824c2fef1832d79783c8e7851f86', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 740, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x281d901f4fdd100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:56:43.000Z'}}, {'blockNum': '0x6b23fb', 'uniqueId': '0x48073b82499485d5273da3a75380b7bb9406884074c07914d7da360c01c80fdc:log:37', 'hash': '0x48073b82499485d5273da3a75380b7bb9406884074c07914d7da360c01c80fdc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 740, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x281d901f4fdd100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:56:43.000Z'}}, {'blockNum': '0x6b23fb', 'uniqueId': '0x48073b82499485d5273da3a75380b7bb9406884074c07914d7da360c01c80fdc:log:38', 'hash': '0x48073b82499485d5273da3a75380b7bb9406884074c07914d7da360c01c80fdc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 740, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x281d901f4fdd100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:56:43.000Z'}}, {'blockNum': '0x6b23fb', 'uniqueId': '0x5498222c899294267543d20305c8e9a8f8584cd3565bfe53bed4d829f02f8e04:log:50', 'hash': '0x5498222c899294267543d20305c8e9a8f8584cd3565bfe53bed4d829f02f8e04', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 213.26475527051605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b8fa49cfe51b968c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:56:43.000Z'}}, {'blockNum': '0x6b23fb', 'uniqueId': '0x5498222c899294267543d20305c8e9a8f8584cd3565bfe53bed4d829f02f8e04:log:54', 'hash': '0x5498222c899294267543d20305c8e9a8f8584cd3565bfe53bed4d829f02f8e04', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 213.26475527051605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b8fa49cfe51b968c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:56:43.000Z'}}, {'blockNum': '0x6b23fb', 'uniqueId': '0x9a1a58659d9c11ea80068c6e1025416f73ce0c373f5fd3507cc1f620a5e9f3b5:log:78', 'hash': '0x9a1a58659d9c11ea80068c6e1025416f73ce0c373f5fd3507cc1f620a5e9f3b5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 448.70321917757104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1853021082ad5d224a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:56:43.000Z'}}, {'blockNum': '0x6b23fb', 'uniqueId': '0x9a1a58659d9c11ea80068c6e1025416f73ce0c373f5fd3507cc1f620a5e9f3b5:log:82', 'hash': '0x9a1a58659d9c11ea80068c6e1025416f73ce0c373f5fd3507cc1f620a5e9f3b5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 448.70321917757104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1853021082ad5d224a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:56:43.000Z'}}, {'blockNum': '0x6b23ff', 'uniqueId': '0x9035c17a74d0b7f0d1bc584117827ecfdb98f12619167d511d96bca56ceecf06:log:49', 'hash': '0x9035c17a74d0b7f0d1bc584117827ecfdb98f12619167d511d96bca56ceecf06', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 87.0376018127681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b7e3adb427f01ec4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:57:41.000Z'}}, {'blockNum': '0x6b23ff', 'uniqueId': '0x9035c17a74d0b7f0d1bc584117827ecfdb98f12619167d511d96bca56ceecf06:log:53', 'hash': '0x9035c17a74d0b7f0d1bc584117827ecfdb98f12619167d511d96bca56ceecf06', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 87.0376018127681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b7e3adb427f01ec4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:57:41.000Z'}}, {'blockNum': '0x6b23ff', 'uniqueId': '0x443849474ab0568f81f94629d227e6d27d5475e5b734bf9941b1c2685e8e02b2:log:69', 'hash': '0x443849474ab0568f81f94629d227e6d27d5475e5b734bf9941b1c2685e8e02b2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 112.23638555591972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x061597be025e60f282', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:57:41.000Z'}}, {'blockNum': '0x6b23ff', 'uniqueId': '0x443849474ab0568f81f94629d227e6d27d5475e5b734bf9941b1c2685e8e02b2:log:73', 'hash': '0x443849474ab0568f81f94629d227e6d27d5475e5b734bf9941b1c2685e8e02b2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x7172c5b24bdce3b93a78c53ef1ece011b0472c1b', 'value': 112.23638555591972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x061597be025e60f282', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:57:41.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0x915f618142b1152a354fdfcebf84569785da967b682dc6aa3572fd5f89f1084b:log:17', 'hash': '0x915f618142b1152a354fdfcebf84569785da967b682dc6aa3572fd5f89f1084b', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4400.987490079801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xee93f874cbe88920ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0x915f618142b1152a354fdfcebf84569785da967b682dc6aa3572fd5f89f1084b:log:21', 'hash': '0x915f618142b1152a354fdfcebf84569785da967b682dc6aa3572fd5f89f1084b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4400.987490079801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xee93f874cbe88920ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0xd61ce305bcdfac2e468f7447a3163923291408efc25bbd4efc54b16c803739cd:log:33', 'hash': '0xd61ce305bcdfac2e468f7447a3163923291408efc25bbd4efc54b16c803739cd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.58663310343297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2cc400e5871b62ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0xd61ce305bcdfac2e468f7447a3163923291408efc25bbd4efc54b16c803739cd:log:37', 'hash': '0xd61ce305bcdfac2e468f7447a3163923291408efc25bbd4efc54b16c803739cd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 224.58663310343297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2cc400e5871b62ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0x02acf54ae0141cd92768c0ec076ccee592deec754743f3f0082adec743ad575f:log:55', 'hash': '0x02acf54ae0141cd92768c0ec076ccee592deec754743f3f0082adec743ad575f', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 336.7028876363268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1240b0f4607b85cecc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0x02acf54ae0141cd92768c0ec076ccee592deec754743f3f0082adec743ad575f:log:59', 'hash': '0x02acf54ae0141cd92768c0ec076ccee592deec754743f3f0082adec743ad575f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 336.7028876363268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1240b0f4607b85cecc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0xd4f99edb3809865199180ae52145ba1028a529f3fc07177be9a842951bac0717:log:69', 'hash': '0xd4f99edb3809865199180ae52145ba1028a529f3fc07177be9a842951bac0717', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 95.90706147981791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0532fa54474c1890bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0xd4f99edb3809865199180ae52145ba1028a529f3fc07177be9a842951bac0717:log:73', 'hash': '0xd4f99edb3809865199180ae52145ba1028a529f3fc07177be9a842951bac0717', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 95.90706147981791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0532fa54474c1890bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240c', 'uniqueId': '0xdc9b2cd8c3b69289d1f601a679cae32c4174e49bc286e41aafb77583535135de:log:46', 'hash': '0xdc9b2cd8c3b69289d1f601a679cae32c4174e49bc286e41aafb77583535135de', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 431.03411380930396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x175dcccacafedba0fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:30.000Z'}}, {'blockNum': '0x6b240c', 'uniqueId': '0xdc9b2cd8c3b69289d1f601a679cae32c4174e49bc286e41aafb77583535135de:log:50', 'hash': '0xdc9b2cd8c3b69289d1f601a679cae32c4174e49bc286e41aafb77583535135de', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 431.03411380930396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x175dcccacafedba0fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:30.000Z'}}, {'blockNum': '0x6b240c', 'uniqueId': '0x7276d9e7acf6bee06445219f3123f28e1440e1ae7bed80cf9704bfa63440f2e5:log:68', 'hash': '0x7276d9e7acf6bee06445219f3123f28e1440e1ae7bed80cf9704bfa63440f2e5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 402.8726997702576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15d6fb59ee14cd2112', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:30.000Z'}}, {'blockNum': '0x6b240c', 'uniqueId': '0x7276d9e7acf6bee06445219f3123f28e1440e1ae7bed80cf9704bfa63440f2e5:log:72', 'hash': '0x7276d9e7acf6bee06445219f3123f28e1440e1ae7bed80cf9704bfa63440f2e5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 402.8726997702576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15d6fb59ee14cd2112', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:30.000Z'}}, {'blockNum': '0x6b240e', 'uniqueId': '0x955ddb54821b55c2c431ff8e99aedbdd92172fc411593eca4fa43ee8473024d9:log:13', 'hash': '0x955ddb54821b55c2c431ff8e99aedbdd92172fc411593eca4fa43ee8473024d9', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 563.2609801412407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e88d0fd276501c3a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:45.000Z'}}, {'blockNum': '0x6b240e', 'uniqueId': '0x955ddb54821b55c2c431ff8e99aedbdd92172fc411593eca4fa43ee8473024d9:log:17', 'hash': '0x955ddb54821b55c2c431ff8e99aedbdd92172fc411593eca4fa43ee8473024d9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 563.2609801412407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e88d0fd276501c3a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:45.000Z'}}, {'blockNum': '0x6b240f', 'uniqueId': '0x4608d204c71909e7f45066ad008e0cfb0685844f97ec976cc7523b679d06e82d:log:41', 'hash': '0x4608d204c71909e7f45066ad008e0cfb0685844f97ec976cc7523b679d06e82d', 'from': '0xdda1bfaf552b0f303d27853a4a13dd440c7e849f', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 716.4837982888096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26d735ca73271f3b47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:50.000Z'}}, {'blockNum': '0x6b240f', 'uniqueId': '0x4608d204c71909e7f45066ad008e0cfb0685844f97ec976cc7523b679d06e82d:log:46', 'hash': '0x4608d204c71909e7f45066ad008e0cfb0685844f97ec976cc7523b679d06e82d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 716.4837982888096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26d735ca73271f3b47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:50.000Z'}}, {'blockNum': '0x6b240f', 'uniqueId': '0x0084804d54b16f936a8de196967065abe73086053b1dc0cee6421c60b4a38789:log:69', 'hash': '0x0084804d54b16f936a8de196967065abe73086053b1dc0cee6421c60b4a38789', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 650.1276626238529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x233e5570a1e5bfc7f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:50.000Z'}}, {'blockNum': '0x6b240f', 'uniqueId': '0x0084804d54b16f936a8de196967065abe73086053b1dc0cee6421c60b4a38789:log:73', 'hash': '0x0084804d54b16f936a8de196967065abe73086053b1dc0cee6421c60b4a38789', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 650.1276626238529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x233e5570a1e5bfc7f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:50.000Z'}}, {'blockNum': '0x6b2417', 'uniqueId': '0x9ab337b03d25c366010448f0a8fe65f15e8d7f82c490225c3c71e875dc84b76f:log:12', 'hash': '0x9ab337b03d25c366010448f0a8fe65f15e8d7f82c490225c3c71e875dc84b76f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 520.415628931636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c3637b93bafa9b59e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:04:26.000Z'}}, {'blockNum': '0x6b2417', 'uniqueId': '0x9ab337b03d25c366010448f0a8fe65f15e8d7f82c490225c3c71e875dc84b76f:log:16', 'hash': '0x9ab337b03d25c366010448f0a8fe65f15e8d7f82c490225c3c71e875dc84b76f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 520.415628931636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c3637b93bafa9b59e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:04:26.000Z'}}, {'blockNum': '0x6b2418', 'uniqueId': '0x9bb8ac75508f446a8b68ab63887c01ead21a480a1099e309475d35a327d3cee4:log:64', 'hash': '0x9bb8ac75508f446a8b68ab63887c01ead21a480a1099e309475d35a327d3cee4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 523.7036055075274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c63d8f6822b7a444c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:04:52.000Z'}}, {'blockNum': '0x6b2418', 'uniqueId': '0x9bb8ac75508f446a8b68ab63887c01ead21a480a1099e309475d35a327d3cee4:log:68', 'hash': '0x9bb8ac75508f446a8b68ab63887c01ead21a480a1099e309475d35a327d3cee4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 523.7036055075274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c63d8f6822b7a444c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:04:52.000Z'}}, {'blockNum': '0x6b241e', 'uniqueId': '0x57684f5ba33ca8106a7c288e832db5d50a25917c0ab69dc4502615935549600d:log:13', 'hash': '0x57684f5ba33ca8106a7c288e832db5d50a25917c0ab69dc4502615935549600d', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 323.99976056320594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x119066619ba181c5d0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:06:23.000Z'}}, {'blockNum': '0x6b241e', 'uniqueId': '0x57684f5ba33ca8106a7c288e832db5d50a25917c0ab69dc4502615935549600d:log:17', 'hash': '0x57684f5ba33ca8106a7c288e832db5d50a25917c0ab69dc4502615935549600d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 323.99976056320594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x119066619ba181c5d0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:06:23.000Z'}}, {'blockNum': '0x6b2421', 'uniqueId': '0x710e2bfb866aa092656ad2da8ae1985ea2740e3b5dd5cc64f1e121f86450da11:log:20', 'hash': '0x710e2bfb866aa092656ad2da8ae1985ea2740e3b5dd5cc64f1e121f86450da11', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2245.790672545669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x79be9b3df8aa35209c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:07:00.000Z'}}, {'blockNum': '0x6b2421', 'uniqueId': '0x710e2bfb866aa092656ad2da8ae1985ea2740e3b5dd5cc64f1e121f86450da11:log:24', 'hash': '0x710e2bfb866aa092656ad2da8ae1985ea2740e3b5dd5cc64f1e121f86450da11', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 2245.790672545669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x79be9b3df8aa35209c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:07:00.000Z'}}, {'blockNum': '0x6b2421', 'uniqueId': '0x16495fdd4509ab09292d6a85bc99fa88a47c0439e12960071770e698fe4bdd58:log:66', 'hash': '0x16495fdd4509ab09292d6a85bc99fa88a47c0439e12960071770e698fe4bdd58', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 233.81629629010595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cacda5aa9fd3fe097', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:07:00.000Z'}}, {'blockNum': '0x6b2421', 'uniqueId': '0x16495fdd4509ab09292d6a85bc99fa88a47c0439e12960071770e698fe4bdd58:log:69', 'hash': '0x16495fdd4509ab09292d6a85bc99fa88a47c0439e12960071770e698fe4bdd58', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 233.81629629010595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cacda5aa9fd3fe097', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:07:00.000Z'}}, {'blockNum': '0x6b2429', 'uniqueId': '0x9552c01368a8049d56a773d7879fcaa9d601acc6888b1fb1532f463104b81012:log:35', 'hash': '0x9552c01368a8049d56a773d7879fcaa9d601acc6888b1fb1532f463104b81012', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 24.701029508972166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0156cbaf777cba3d26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:09:22.000Z'}}, {'blockNum': '0x6b2429', 'uniqueId': '0x9552c01368a8049d56a773d7879fcaa9d601acc6888b1fb1532f463104b81012:log:39', 'hash': '0x9552c01368a8049d56a773d7879fcaa9d601acc6888b1fb1532f463104b81012', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 24.701029508972166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0156cbaf777cba3d26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:09:22.000Z'}}, {'blockNum': '0x6b2444', 'uniqueId': '0x5f278da20e4b89d2a3c9ed458e697af7861739e34721ebd00b9ce46af842e56d:log:38', 'hash': '0x5f278da20e4b89d2a3c9ed458e697af7861739e34721ebd00b9ce46af842e56d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 22.455417935411607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0137a1aba36b24edd8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:17:39.000Z'}}, {'blockNum': '0x6b2444', 'uniqueId': '0x5f278da20e4b89d2a3c9ed458e697af7861739e34721ebd00b9ce46af842e56d:log:42', 'hash': '0x5f278da20e4b89d2a3c9ed458e697af7861739e34721ebd00b9ce46af842e56d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x7172c5b24bdce3b93a78c53ef1ece011b0472c1b', 'value': 22.455417935411607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0137a1aba36b24edd8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:17:39.000Z'}}, {'blockNum': '0x6b2444', 'uniqueId': '0xed33e060059f511258c8050403ea43a8e9651a6994495a480a592d7ac6dfcde4:log:70', 'hash': '0xed33e060059f511258c8050403ea43a8e9651a6994495a480a592d7ac6dfcde4', 'from': '0xa2630fc0233940779f25dfdcff3abbdc85682a4c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 506.5885923159605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b765438b0a201de37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:17:39.000Z'}}, {'blockNum': '0x6b2444', 'uniqueId': '0xed33e060059f511258c8050403ea43a8e9651a6994495a480a592d7ac6dfcde4:log:74', 'hash': '0xed33e060059f511258c8050403ea43a8e9651a6994495a480a592d7ac6dfcde4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 506.5885923159605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b765438b0a201de37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:17:39.000Z'}}, {'blockNum': '0x6b2448', 'uniqueId': '0xddbefd0842aaec29334819822a041877796b7144bd5381a0653594db3b5a6a22:log:13', 'hash': '0xddbefd0842aaec29334819822a041877796b7144bd5381a0653594db3b5a6a22', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 404.2117249192886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15e9908635661b623d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:18:14.000Z'}}, {'blockNum': '0x6b2448', 'uniqueId': '0xddbefd0842aaec29334819822a041877796b7144bd5381a0653594db3b5a6a22:log:17', 'hash': '0xddbefd0842aaec29334819822a041877796b7144bd5381a0653594db3b5a6a22', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 404.2117249192886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15e9908635661b623d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:18:14.000Z'}}, {'blockNum': '0x6b2449', 'uniqueId': '0x69d134151984319e01c3372055a7f1398dcc51795ad2b8e9b391c1eeb7f2d9f4:log:39', 'hash': '0x69d134151984319e01c3372055a7f1398dcc51795ad2b8e9b391c1eeb7f2d9f4', 'from': '0x7172c5b24bdce3b93a78c53ef1ece011b0472c1b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 85.0032054492593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x049ba80cfd64a632a8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:18:23.000Z'}}, {'blockNum': '0x6b2449', 'uniqueId': '0x69d134151984319e01c3372055a7f1398dcc51795ad2b8e9b391c1eeb7f2d9f4:log:43', 'hash': '0x69d134151984319e01c3372055a7f1398dcc51795ad2b8e9b391c1eeb7f2d9f4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 85.0032054492593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x049ba80cfd64a632a8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:18:23.000Z'}}, {'blockNum': '0x6b244a', 'uniqueId': '0x256e4ac34087f2d72b4cf0a9f38350f7c47b6a456d7f4f605a158e47b2de97b3:log:58', 'hash': '0x256e4ac34087f2d72b4cf0a9f38350f7c47b6a456d7f4f605a158e47b2de97b3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.53251614579878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2c03bdcf72ff1f27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:19:04.000Z'}}, {'blockNum': '0x6b244a', 'uniqueId': '0x256e4ac34087f2d72b4cf0a9f38350f7c47b6a456d7f4f605a158e47b2de97b3:log:62', 'hash': '0x256e4ac34087f2d72b4cf0a9f38350f7c47b6a456d7f4f605a158e47b2de97b3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe88d6d63389d5c91e6348e379913f330739ad2c4', 'value': 224.53251614579878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2c03bdcf72ff1f27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:19:04.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0x8d9399cd46b69b2a7d94ea80b101a5baa224f12e6dcaae4d0c0f906283d4916d:log:21', 'hash': '0x8d9399cd46b69b2a7d94ea80b101a5baa224f12e6dcaae4d0c0f906283d4916d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 384.21495046083163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d40db5c93c2ca516', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0x8d9399cd46b69b2a7d94ea80b101a5baa224f12e6dcaae4d0c0f906283d4916d:log:25', 'hash': '0x8d9399cd46b69b2a7d94ea80b101a5baa224f12e6dcaae4d0c0f906283d4916d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 384.21495046083163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d40db5c93c2ca516', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0x40c204820103c69fd47033b62556ada9cc794a60635964b5346a15d64de05e85:log:36', 'hash': '0x40c204820103c69fd47033b62556ada9cc794a60635964b5346a15d64de05e85', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 22.454223884485234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01379d6da7c5d58a17', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0x40c204820103c69fd47033b62556ada9cc794a60635964b5346a15d64de05e85:log:39', 'hash': '0x40c204820103c69fd47033b62556ada9cc794a60635964b5346a15d64de05e85', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcf0f8246f32e74b47f3443d2544f7bc0d7d889e0', 'value': 22.454223884485234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01379d6da7c5d58a17', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0x53788f1e919355b7497818b5e155aed432a1adb37e92e46615fc34d2c14ba489:log:45', 'hash': '0x53788f1e919355b7497818b5e155aed432a1adb37e92e46615fc34d2c14ba489', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 452.4951819390165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1887a1d28d22d4b43e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0x53788f1e919355b7497818b5e155aed432a1adb37e92e46615fc34d2c14ba489:log:49', 'hash': '0x53788f1e919355b7497818b5e155aed432a1adb37e92e46615fc34d2c14ba489', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 452.4951819390165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1887a1d28d22d4b43e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0xd2950688cf6623f5c594a32d73c06a39e1d03c6ca8830df32ad4a5c6d62a7355:log:58', 'hash': '0xd2950688cf6623f5c594a32d73c06a39e1d03c6ca8830df32ad4a5c6d62a7355', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 386.90142779870195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14f955feb0f91300d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0xd2950688cf6623f5c594a32d73c06a39e1d03c6ca8830df32ad4a5c6d62a7355:log:62', 'hash': '0xd2950688cf6623f5c594a32d73c06a39e1d03c6ca8830df32ad4a5c6d62a7355', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 386.90142779870195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14f955feb0f91300d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b245c', 'uniqueId': '0x9443c479e796baa2bb651524f761b06c06d9d395ca214c331422c659c8bf7bdf:log:41', 'hash': '0x9443c479e796baa2bb651524f761b06c06d9d395ca214c331422c659c8bf7bdf', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 169.31303755468048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x092db0be98d91a3663', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:23:38.000Z'}}, {'blockNum': '0x6b245c', 'uniqueId': '0x9443c479e796baa2bb651524f761b06c06d9d395ca214c331422c659c8bf7bdf:log:43', 'hash': '0x9443c479e796baa2bb651524f761b06c06d9d395ca214c331422c659c8bf7bdf', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 169.31303755468048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x092db0be98d91a3663', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:23:38.000Z'}}, {'blockNum': '0x6b245d', 'uniqueId': '0x9966b94270868a0d1db79b0e86a5481e2db35322b437b60d593acd673b6bb559:log:20', 'hash': '0x9966b94270868a0d1db79b0e86a5481e2db35322b437b60d593acd673b6bb559', 'from': '0x4f88dfc8e1d7ba696db158656457797cfbdfb844', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 110.60466187600453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05fef2b1f7b5708407', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:23:51.000Z'}}, {'blockNum': '0x6b245d', 'uniqueId': '0x9966b94270868a0d1db79b0e86a5481e2db35322b437b60d593acd673b6bb559:log:24', 'hash': '0x9966b94270868a0d1db79b0e86a5481e2db35322b437b60d593acd673b6bb559', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 110.60466187600453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05fef2b1f7b5708407', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:23:51.000Z'}}, {'blockNum': '0x6b245f', 'uniqueId': '0x3e7f8d789c7a68241af8d34b81025cb772b1ff104a487a82392bc20c72fa57e1:log:42', 'hash': '0x3e7f8d789c7a68241af8d34b81025cb772b1ff104a487a82392bc20c72fa57e1', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 45.500767128346695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02777332a13ce00fc0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:24:15.000Z'}}, {'blockNum': '0x6b245f', 'uniqueId': '0x3e7f8d789c7a68241af8d34b81025cb772b1ff104a487a82392bc20c72fa57e1:log:44', 'hash': '0x3e7f8d789c7a68241af8d34b81025cb772b1ff104a487a82392bc20c72fa57e1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 45.500767128346695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02777332a13ce00fc0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:24:15.000Z'}}, {'blockNum': '0x6b2469', 'uniqueId': '0x187fc3258a7e4ac71e2a62dcd6af74943693bce0f618392eac07242d85c4253f:log:50', 'hash': '0x187fc3258a7e4ac71e2a62dcd6af74943693bce0f618392eac07242d85c4253f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.52252573113418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2be03f94c5c0d8ae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:26:43.000Z'}}, {'blockNum': '0x6b2469', 'uniqueId': '0x187fc3258a7e4ac71e2a62dcd6af74943693bce0f618392eac07242d85c4253f:log:54', 'hash': '0x187fc3258a7e4ac71e2a62dcd6af74943693bce0f618392eac07242d85c4253f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe88d6d63389d5c91e6348e379913f330739ad2c4', 'value': 224.52252573113418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2be03f94c5c0d8ae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:26:43.000Z'}}, {'blockNum': '0x6b246a', 'uniqueId': '0x26e0e43c9fe2f80ca76f1e45502abfe86006001f2a6bb6c37b0eef866a97e4bb:log:43', 'hash': '0x26e0e43c9fe2f80ca76f1e45502abfe86006001f2a6bb6c37b0eef866a97e4bb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2.199940819256325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e87c284f2a7b303', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:26:56.000Z'}}, {'blockNum': '0x6b246a', 'uniqueId': '0x26e0e43c9fe2f80ca76f1e45502abfe86006001f2a6bb6c37b0eef866a97e4bb:log:46', 'hash': '0x26e0e43c9fe2f80ca76f1e45502abfe86006001f2a6bb6c37b0eef866a97e4bb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc202848358a295a846bbc33e33ee5730c11b468b', 'value': 2.199940819256325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e87c284f2a7b303', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:26:56.000Z'}}, {'blockNum': '0x6b246d', 'uniqueId': '0xbe757f169883d40de3d5b1af63a72add4674245b9f7ce3a50fcaae1bee2e2b6f:log:44', 'hash': '0xbe757f169883d40de3d5b1af63a72add4674245b9f7ce3a50fcaae1bee2e2b6f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd3fff3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:27:36.000Z'}}, {'blockNum': '0x6b246d', 'uniqueId': '0xbe757f169883d40de3d5b1af63a72add4674245b9f7ce3a50fcaae1bee2e2b6f:log:47', 'hash': '0xbe757f169883d40de3d5b1af63a72add4674245b9f7ce3a50fcaae1bee2e2b6f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xeca0f4bd861713af4f248ced18c15af76440b00a', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd3fff3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:27:36.000Z'}}, {'blockNum': '0x6b2473', 'uniqueId': '0x2696bb70e025dccbe9194bc28fc399ea64261e967a0ce37e7455058d3dca9997:log:32', 'hash': '0x2696bb70e025dccbe9194bc28fc399ea64261e967a0ce37e7455058d3dca9997', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:28:32.000Z'}}, {'blockNum': '0x6b2473', 'uniqueId': '0x2696bb70e025dccbe9194bc28fc399ea64261e967a0ce37e7455058d3dca9997:log:35', 'hash': '0x2696bb70e025dccbe9194bc28fc399ea64261e967a0ce37e7455058d3dca9997', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:28:32.000Z'}}, {'blockNum': '0x6b2473', 'uniqueId': '0x2696bb70e025dccbe9194bc28fc399ea64261e967a0ce37e7455058d3dca9997:log:37', 'hash': '0x2696bb70e025dccbe9194bc28fc399ea64261e967a0ce37e7455058d3dca9997', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:28:32.000Z'}}, {'blockNum': '0x6b2478', 'uniqueId': '0x6c7c90b92f5cfe4f1c640e487b70912ad8486f0c4d941c04035851a2c67173ea:log:154', 'hash': '0x6c7c90b92f5cfe4f1c640e487b70912ad8486f0c4d941c04035851a2c67173ea', 'from': '0xc202848358a295a846bbc33e33ee5730c11b468b', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:29:22.000Z'}}, {'blockNum': '0x6b2478', 'uniqueId': '0x6c7c90b92f5cfe4f1c640e487b70912ad8486f0c4d941c04035851a2c67173ea:log:157', 'hash': '0x6c7c90b92f5cfe4f1c640e487b70912ad8486f0c4d941c04035851a2c67173ea', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:29:22.000Z'}}, {'blockNum': '0x6b2479', 'uniqueId': '0xf18a4220eec1d64a46bbba8d5e729d146bafb0d0edb7d94b9f372cfbd2d95cf1:log:37', 'hash': '0xf18a4220eec1d64a46bbba8d5e729d146bafb0d0edb7d94b9f372cfbd2d95cf1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 217.79641365864333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bce884c49a5787514', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:29:39.000Z'}}, {'blockNum': '0x6b2479', 'uniqueId': '0xf18a4220eec1d64a46bbba8d5e729d146bafb0d0edb7d94b9f372cfbd2d95cf1:log:41', 'hash': '0xf18a4220eec1d64a46bbba8d5e729d146bafb0d0edb7d94b9f372cfbd2d95cf1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 217.79641365864333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bce884c49a5787514', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:29:39.000Z'}}, {'blockNum': '0x6b2479', 'uniqueId': '0x6451503214b841b11f15d11e84ce926fff576848c7f9052e5d22115674ed9763:log:52', 'hash': '0x6451503214b841b11f15d11e84ce926fff576848c7f9052e5d22115674ed9763', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 219.9906080022021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0becfba46af5765ae7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:29:39.000Z'}}], 'pageKey': 'b4a861d7-7516-4279-a790-221740950624'}}
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Number of returned transfers: 1002
Answer is complete
symbol POA
group BPS
date 2019-05-26
hour 21:00
exchange binance
Name: 309, dtype: object
HERE
Symbol: POA, Contract:
Datetime timestamps: 2019-05-26 21:00:00 2019-05-26 09:00:00 2019-05-27 09:00:00
Unix timestamps: 1558854000.0 1558940400.0
Hex Block Numbers: 0x7788c1 0x77a1ee
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol SNM
group BPS
date 2019-06-02
hour 21:00
exchange binance
Name: 310, dtype: object
HERE
Symbol: SNM, Contract: 0x46d0dac0926fa16707042cadc23f1eb4141fe86b
Datetime timestamps: 2019-06-02 21:00:00 2019-06-02 09:00:00 2019-06-03 09:00:00
Unix timestamps: 1559458800.0 1559545200.0
Hex Block Numbers: 0x78381c 0x7850d1
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers: 0
Answer is complete
symbol NEBL
group BPS
date 2019-06-16
hour 21:00
exchange binance
Name: 311, dtype: object
HERE
{}
No contract for ethereum specified
Symbol: NEBL, Contract:
Datetime timestamps: 2019-06-16 21:00:00 2019-06-16 09:00:00 2019-06-17 09:00:00
Unix timestamps: 1560668400.0 1560754800.0
Hex Block Numbers: 0x799517 0x79ae68
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol EDO
group BPS
date 2019-12-08
hour 21:01
exchange binance
Name: 312, dtype: object
HERE
Symbol: EDO, Contract:
Datetime timestamps: 2019-12-08 21:01:00 2019-12-08 09:01:00 2019-12-09 09:01:00
Unix timestamps: 1575792060.0 1575878460.0
Hex Block Numbers: 0x8a689c 0x8a7e7f
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol PNT
group BPS
date 2020-12-04
hour 23:01
exchange binance
Name: 313, dtype: object
HERE
Symbol: PNT, Contract: 0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed
Datetime timestamps: 2020-12-04 23:01:00 2020-12-04 11:01:00 2020-12-05 11:01:00
Unix timestamps: 1607076060.0 1607162460.0
Hex Block Numbers: 0xadba73 0xadd3e2
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xadba7d', 'uniqueId': '0x55aea0aed4d0f03b68be285dadcb44b73071111a514eaf0cd972f5870a8b1f9e:log:187', 'hash': '0x55aea0aed4d0f03b68be285dadcb44b73071111a514eaf0cd972f5870a8b1f9e', 'from': '0xabfd88db78d2503af372cb9c21cdc2f181232b4f', 'to': '0xde97a98325170168cbd4548bcc2fdbf06d98167d', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:03:18.000Z'}}, {'blockNum': '0xadba9f', 'uniqueId': '0xdcbb7c23ba5f91728cb3510f554259d74cb7d93dafd91d6d23eca1396dc7d066:log:238', 'hash': '0xdcbb7c23ba5f91728cb3510f554259d74cb7d93dafd91d6d23eca1396dc7d066', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'value': 10.010012176944546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x8aeab50a241d3e7f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:09:36.000Z'}}, {'blockNum': '0xadba9f', 'uniqueId': '0xdcbb7c23ba5f91728cb3510f554259d74cb7d93dafd91d6d23eca1396dc7d066:log:242', 'hash': '0xdcbb7c23ba5f91728cb3510f554259d74cb7d93dafd91d6d23eca1396dc7d066', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x2a24a7a4beb9e6d0431c9bc1800045b8fc27a966', 'value': 0.010010012176944545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x23900d94010da1', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:09:36.000Z'}}, {'blockNum': '0xadba9f', 'uniqueId': '0xdcbb7c23ba5f91728cb3510f554259d74cb7d93dafd91d6d23eca1396dc7d066:log:245', 'hash': '0xdcbb7c23ba5f91728cb3510f554259d74cb7d93dafd91d6d23eca1396dc7d066', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x05589789fc4ed59dffb358830f1840c5d7cfdd8a', 'value': 10.0000021647676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac724fc901c30de', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:09:36.000Z'}}, {'blockNum': '0xadbaa9', 'uniqueId': '0xf4e2abd9478bda8cdb7bb8d52c6c1eac0cb716ba9df16163b70659854a55a4c6:log:138', 'hash': '0xf4e2abd9478bda8cdb7bb8d52c6c1eac0cb716ba9df16163b70659854a55a4c6', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 3428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xb9d50e7dad77100000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:11:52.000Z'}}, {'blockNum': '0xadbaae', 'uniqueId': '0xac640f65e4e55bd18cb7e40f100aa2a48ed47c03f0c125ab795ad0ec446678e9:log:112', 'hash': '0xac640f65e4e55bd18cb7e40f100aa2a48ed47c03f0c125ab795ad0ec446678e9', 'from': '0xde97a98325170168cbd4548bcc2fdbf06d98167d', 'to': '0x922786b796df041f9a91cdbd08bfeffd73227240', 'value': 13000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02c0bb3dd30c4e200000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:12:27.000Z'}}, {'blockNum': '0xadbac6', 'uniqueId': '0xfa6d91ae915447a8d221102afe3785317f07215bc35d3db3d008170130ab94de:log:355', 'hash': '0xfa6d91ae915447a8d221102afe3785317f07215bc35d3db3d008170130ab94de', 'from': '0xde97a98325170168cbd4548bcc2fdbf06d98167d', 'to': '0x7805db2add00f2565cc3be38d5ecd21687615988', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:16:38.000Z'}}, {'blockNum': '0xadbacd', 'uniqueId': '0x66941efef1cbb71506f7c2c705c4dfb11167b836aec21b63acc464a4bb93a9cc:log:39', 'hash': '0x66941efef1cbb71506f7c2c705c4dfb11167b836aec21b63acc464a4bb93a9cc', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'value': 3416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xb92e85ed419e600000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:17:43.000Z'}}, {'blockNum': '0xadbad0', 'uniqueId': '0x0afe107f2636ea0811ab9e5cdbe496b8e8d0405e89720a44ef4a99a45151e618:log:258', 'hash': '0x0afe107f2636ea0811ab9e5cdbe496b8e8d0405e89720a44ef4a99a45151e618', 'from': '0x7805db2add00f2565cc3be38d5ecd21687615988', 'to': '0xabfd88db78d2503af372cb9c21cdc2f181232b4f', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:18:02.000Z'}}, {'blockNum': '0xadbaf7', 'uniqueId': '0x2393191299ec58e54a42fc2f373f76e2b5205c7c6390ad036353cd0ff9e7f5a5:log:228', 'hash': '0x2393191299ec58e54a42fc2f373f76e2b5205c7c6390ad036353cd0ff9e7f5a5', 'from': '0xde97a98325170168cbd4548bcc2fdbf06d98167d', 'to': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'value': 3850.4273548942706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xd0bb69eed67feb1173', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:26:20.000Z'}}, {'blockNum': '0xadbaf7', 'uniqueId': '0x2393191299ec58e54a42fc2f373f76e2b5205c7c6390ad036353cd0ff9e7f5a5:log:232', 'hash': '0x2393191299ec58e54a42fc2f373f76e2b5205c7c6390ad036353cd0ff9e7f5a5', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 3850.4273548942706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xd0bb69eed67feb1173', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:26:20.000Z'}}, {'blockNum': '0xadbb81', 'uniqueId': '0xa5122ceabe254bbcaafcd0576a81a44cf24e739579a88e9ff119724f1e9831e3:log:39', 'hash': '0xa5122ceabe254bbcaafcd0576a81a44cf24e739579a88e9ff119724f1e9831e3', 'from': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 3416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xb92e85ed419e600000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:58:33.000Z'}}, {'blockNum': '0xadbbc9', 'uniqueId': '0x79ae532899b28aa7da911cad5f3b4fc5196ded4bb539d12c49427f66764f4e5a:log:11', 'hash': '0x79ae532899b28aa7da911cad5f3b4fc5196ded4bb539d12c49427f66764f4e5a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x16109b23adf914cbaf1b68e86be0d67f711fb6d5', 'value': 3314.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xb3b04973202c0b0000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T11:14:16.000Z'}}, {'blockNum': '0xadbc6c', 'uniqueId': '0x1188db1b81cf713900ccd6974968ad65a5bd42a718b4119e160d0cd1f85ec252:log:68', 'hash': '0x1188db1b81cf713900ccd6974968ad65a5bd42a718b4119e160d0cd1f85ec252', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x399129e800be4ec6c0c46d78fdb743bb038c7ad7', 'value': 61.954703130515576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x035bcb523f4329944d', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T11:51:26.000Z'}}, {'blockNum': '0xadbcb2', 'uniqueId': '0x9346122d98ddf555942a820192be938fe19af2d015cdb238c22ac5ad56d53d80:log:139', 'hash': '0x9346122d98ddf555942a820192be938fe19af2d015cdb238c22ac5ad56d53d80', 'from': '0x142aa41e242f19451d9ea6a8e7dff7da661857db', 'to': '0xd1fd56c522ea55675c888a4d6858b0ad16d88366', 'value': 57.377049180327866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x031c443a3b9d8f79b4', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T12:07:20.000Z'}}, {'blockNum': '0xadbcd3', 'uniqueId': '0xbd852c5b61e0ddaaa2e192f7c38a60b8c21b38ef0b916c9fe4b9fdd667fb9737:log:45', 'hash': '0xbd852c5b61e0ddaaa2e192f7c38a60b8c21b38ef0b916c9fe4b9fdd667fb9737', 'from': '0xde97a98325170168cbd4548bcc2fdbf06d98167d', 'to': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'value': 2353.4042185795533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x7f940b5bed9c0a76dc', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T12:13:41.000Z'}}, {'blockNum': '0xadbcd3', 'uniqueId': '0xbd852c5b61e0ddaaa2e192f7c38a60b8c21b38ef0b916c9fe4b9fdd667fb9737:log:49', 'hash': '0xbd852c5b61e0ddaaa2e192f7c38a60b8c21b38ef0b916c9fe4b9fdd667fb9737', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 2353.4042185795533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x7f940b5bed9c0a76dc', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T12:13:41.000Z'}}, {'blockNum': '0xadbd5a', 'uniqueId': '0x1a6c74c2c5ee86afc7aaf6b9f4c6cfe823bab87cbd869187271a1c1e7dc6b898:log:155', 'hash': '0x1a6c74c2c5ee86afc7aaf6b9f4c6cfe823bab87cbd869187271a1c1e7dc6b898', 'from': '0x142aa41e242f19451d9ea6a8e7dff7da661857db', 'to': '0xf08e2e3df499ea1d3086e0f04beda6aebce55949', 'value': 31.973862295081968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01bbb9fa5a439dde6d', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T12:41:51.000Z'}}, {'blockNum': '0xadbe28', 'uniqueId': '0x2531b2217f9aecb5bc15d52fa59fb19fca211c346f4d9248f49471e258e314c1:log:41', 'hash': '0x2531b2217f9aecb5bc15d52fa59fb19fca211c346f4d9248f49471e258e314c1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xab7a0c9238d4ef8c2d2b23e52a88e67cbafbf2cf', 'value': 1302.47423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x469b7603617a6d6000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T13:21:24.000Z'}}, {'blockNum': '0xadbf3f', 'uniqueId': '0xd50a9603b7bc97eefe5522002e249ca5aec5bc4573074d391f8967d7e714d0b7:log:180', 'hash': '0xd50a9603b7bc97eefe5522002e249ca5aec5bc4573074d391f8967d7e714d0b7', 'from': '0xaa298fa032ae863e0156f1e1b54a7ad1a27534a4', 'to': '0x55d2bdf6117e41d65ee2b828a04f67ae485a61d5', 'value': 56.62142024453181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0311c7b1b8216e174a', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T14:27:33.000Z'}}, {'blockNum': '0xadbf4a', 'uniqueId': '0x1619a44b3f0769d885f80f969e421c4a22edc328ecd5c4d1892b785b469fc6f7:log:69', 'hash': '0x1619a44b3f0769d885f80f969e421c4a22edc328ecd5c4d1892b785b469fc6f7', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 3112.316721665546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xa8b8123098172999f6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T14:30:04.000Z'}}, {'blockNum': '0xadbf4c', 'uniqueId': '0xbf31622da0bd57e2388ed51905ad53dc6cb13f1698b0f95804241d51cea9fe22:log:46', 'hash': '0xbf31622da0bd57e2388ed51905ad53dc6cb13f1698b0f95804241d51cea9fe22', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 3106.0920882222144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xa861afd974f8600000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T14:31:25.000Z'}}, {'blockNum': '0xadbf67', 'uniqueId': '0x887d8fdd448b63549202744bcd80cf0d8789118538b4b6dcb6d43366265aadad:log:289', 'hash': '0x887d8fdd448b63549202744bcd80cf0d8789118538b4b6dcb6d43366265aadad', 'from': '0x55d2bdf6117e41d65ee2b828a04f67ae485a61d5', 'to': '0xf6592340ecac4e51d5027eda4530f249d954d5e1', 'value': 76.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0429d069189e000000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T14:39:26.000Z'}}, {'blockNum': '0xadc030', 'uniqueId': '0x31830ed18d1721e500e905be105e91f8ca3b3087365104d19b947fb3c13be307:log:205', 'hash': '0x31830ed18d1721e500e905be105e91f8ca3b3087365104d19b947fb3c13be307', 'from': '0x14e942eab884e47a940768f4c7e5225089e51001', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 951.2119974204392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x3390b7dfeaaf0eb4ec', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T15:20:46.000Z'}}, {'blockNum': '0xadc0de', 'uniqueId': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d:log:78', 'hash': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'value': 671.4981816329425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2466e8c6720045f8fd', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T15:57:28.000Z'}}, {'blockNum': '0xadc0de', 'uniqueId': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d:log:80', 'hash': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0x9424b1412450d0f8fc2255faf6046b98213b76bd', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T15:57:28.000Z'}}, {'blockNum': '0xadc0de', 'uniqueId': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d:log:82', 'hash': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d', 'from': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'to': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'value': 671.4981816329425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2466e8c6720045f8fd', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T15:57:28.000Z'}}, {'blockNum': '0xadc0de', 'uniqueId': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d:log:113', 'hash': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d', 'from': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 671.4981816329425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2466e8c6720045f8fd', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T15:57:28.000Z'}}, {'blockNum': '0xadc101', 'uniqueId': '0xdbdce24eac05c0218dea987bba9def5e683fa367f796c28ba3ba4a06f85c8be0:log:90', 'hash': '0xdbdce24eac05c0218dea987bba9def5e683fa367f796c28ba3ba4a06f85c8be0', 'from': '0x5cb53c4834b394e8894bb40253a1e984f87fe0dc', 'to': '0x22ab60db2853bbe799ddaa8bc11eeb5c944025ba', 'value': 50.15031331974153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02b7f9b441adbc1cac', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T16:04:46.000Z'}}, {'blockNum': '0xadc146', 'uniqueId': '0x6f958e8db082d10c1f468f791bd0bd5bc64e2b93f1682c3603568c15625639df:log:325', 'hash': '0x6f958e8db082d10c1f468f791bd0bd5bc64e2b93f1682c3603568c15625639df', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'value': 621.7115962048188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x21b3fb4ac771514bed', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T16:22:48.000Z'}}, {'blockNum': '0xadc146', 'uniqueId': '0x6f958e8db082d10c1f468f791bd0bd5bc64e2b93f1682c3603568c15625639df:log:329', 'hash': '0x6f958e8db082d10c1f468f791bd0bd5bc64e2b93f1682c3603568c15625639df', 'from': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 621.7115962048188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x21b3fb4ac771514bed', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T16:22:48.000Z'}}, {'blockNum': '0xadc176', 'uniqueId': '0x3df24f297642760a7045aa55c0cfa9f2ba53b1b964890b857f3abf8d6f7f1b77:log:144', 'hash': '0x3df24f297642760a7045aa55c0cfa9f2ba53b1b964890b857f3abf8d6f7f1b77', 'from': '0xa3a39829c967e7391c18bfb17247ce88487632ad', 'to': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'value': 14.625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xcaf6700370168000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T16:33:10.000Z'}}, {'blockNum': '0xadc176', 'uniqueId': '0x3df24f297642760a7045aa55c0cfa9f2ba53b1b964890b857f3abf8d6f7f1b77:log:148', 'hash': '0x3df24f297642760a7045aa55c0cfa9f2ba53b1b964890b857f3abf8d6f7f1b77', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 14.551874999999994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xc9f2a5369ee31a3f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T16:33:10.000Z'}}, {'blockNum': '0xadc176', 'uniqueId': '0x3df24f297642760a7045aa55c0cfa9f2ba53b1b964890b857f3abf8d6f7f1b77:log:156', 'hash': '0x3df24f297642760a7045aa55c0cfa9f2ba53b1b964890b857f3abf8d6f7f1b77', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0xa3a39829c967e7391c18bfb17247ce88487632ad', 'value': 0.07312500000000557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0103caccd13365c1', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T16:33:10.000Z'}}, {'blockNum': '0xadc23f', 'uniqueId': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d:log:138', 'hash': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'value': 367.5356060035717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x13ec94c65f86d124f9', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:15:18.000Z'}}, {'blockNum': '0xadc23f', 'uniqueId': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d:log:140', 'hash': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0x9424b1412450d0f8fc2255faf6046b98213b76bd', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:15:18.000Z'}}, {'blockNum': '0xadc23f', 'uniqueId': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d:log:142', 'hash': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d', 'from': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'to': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'value': 367.5356060035717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x13ec94c65f86d124f9', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:15:18.000Z'}}, {'blockNum': '0xadc23f', 'uniqueId': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d:log:173', 'hash': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d', 'from': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 367.5356060035717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x13ec94c65f86d124f9', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:15:18.000Z'}}, {'blockNum': '0xadc2a9', 'uniqueId': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097:log:127', 'hash': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'value': 603.9502151442456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x20bd7e30ceed802640', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:38:26.000Z'}}, {'blockNum': '0xadc2a9', 'uniqueId': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097:log:129', 'hash': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0x9424b1412450d0f8fc2255faf6046b98213b76bd', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:38:26.000Z'}}, {'blockNum': '0xadc2a9', 'uniqueId': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097:log:131', 'hash': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097', 'from': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'to': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'value': 603.9502151442456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x20bd7e30ceed802640', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:38:26.000Z'}}, {'blockNum': '0xadc2a9', 'uniqueId': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097:log:162', 'hash': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097', 'from': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 603.9502151442456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x20bd7e30ceed802640', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:38:26.000Z'}}, {'blockNum': '0xadc2ab', 'uniqueId': '0x12d3e6dd6788a3aa4001d350b06f266cf1d10ebee9be2df0c2aa6055f35ba746:log:164', 'hash': '0x12d3e6dd6788a3aa4001d350b06f266cf1d10ebee9be2df0c2aa6055f35ba746', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0x5cb53c4834b394e8894bb40253a1e984f87fe0dc', 'value': 21.563094290189923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x012b3f8002c10631b6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:38:50.000Z'}}, {'blockNum': '0xadc2bb', 'uniqueId': '0xc1c05a7c7705e97161e9a499583fe8016294f8c52becfed58f385bfd51fc3569:log:262', 'hash': '0xc1c05a7c7705e97161e9a499583fe8016294f8c52becfed58f385bfd51fc3569', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0x369987decd26db2b72c1218ea6692b79fde04d24', 'value': 569.0740918843089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1ed97d4f7c2a3cc30f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:42:06.000Z'}}, {'blockNum': '0xadc2c7', 'uniqueId': '0xacb67c095b0ba29028347c5f8d4d5d0d181041a8058cac80f7a94bcf12d57753:log:39', 'hash': '0xacb67c095b0ba29028347c5f8d4d5d0d181041a8058cac80f7a94bcf12d57753', 'from': '0x369987decd26db2b72c1218ea6692b79fde04d24', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 569.674456152831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1ee1d23b9b3b551225', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:45:54.000Z'}}, {'blockNum': '0xadc494', 'uniqueId': '0x0e1ec6975e37de12a54b880dec96b72159e93fc926906c716698b7f46ee1f3a5:log:67', 'hash': '0x0e1ec6975e37de12a54b880dec96b72159e93fc926906c716698b7f46ee1f3a5', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'value': 608.9273534175942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x21029089b2aa72bacd', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:25:38.000Z'}}, {'blockNum': '0xadc494', 'uniqueId': '0x0e1ec6975e37de12a54b880dec96b72159e93fc926906c716698b7f46ee1f3a5:log:71', 'hash': '0x0e1ec6975e37de12a54b880dec96b72159e93fc926906c716698b7f46ee1f3a5', 'from': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 608.9273534175942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x21029089b2aa72bacd', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:25:38.000Z'}}, {'blockNum': '0xadc4ba', 'uniqueId': '0xd951869b39360ee65b1b6e95cc70d223ef0d5f5756d02d2de37472bed268ed57:log:67', 'hash': '0xd951869b39360ee65b1b6e95cc70d223ef0d5f5756d02d2de37472bed268ed57', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0x53fe88ceb39f23db1fcd4d6beb55965f6ac1764f', 'value': 526.8922360856963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1c901941200f2d84f3', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:34:21.000Z'}}, {'blockNum': '0xadc4ca', 'uniqueId': '0x50b20168443d1db9ddba2798082f6805f41403b9c2d50a739d74dea6f02db5de:log:295', 'hash': '0x50b20168443d1db9ddba2798082f6805f41403b9c2d50a739d74dea6f02db5de', 'from': '0x53fe88ceb39f23db1fcd4d6beb55965f6ac1764f', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 526.8922360856963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1c901941200f2d84f3', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:36:53.000Z'}}, {'blockNum': '0xadc4e1', 'uniqueId': '0x29143fbd90fa294e4023481797e8e60c82efb74746061b9405d769d94ba0fdaf:log:101', 'hash': '0x29143fbd90fa294e4023481797e8e60c82efb74746061b9405d769d94ba0fdaf', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0xbcb127e3e3977a152a5873ea707beff0ae88e66b', 'value': 46.9148287270636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x028b12f4296eeae40e', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:42:08.000Z'}}, {'blockNum': '0xadc4e5', 'uniqueId': '0x15efa0d0afae7f787e7cc97b8f3118a711b2ad887f04b8789d92701411d5a030:log:21', 'hash': '0x15efa0d0afae7f787e7cc97b8f3118a711b2ad887f04b8789d92701411d5a030', 'from': '0xea8ddc2f50626f1f8f8c11242d1876710d65ff44', 'to': '0xbcb127e3e3977a152a5873ea707beff0ae88e66b', 'value': 127.83830002246144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x06ee1ce08dd8a036e6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:42:49.000Z'}}, {'blockNum': '0xadc4fa', 'uniqueId': '0xd16bc0a11921ceee201547e234cb4ff57ccadfda1362e2ea65226727b1aa8583:log:167', 'hash': '0xd16bc0a11921ceee201547e234cb4ff57ccadfda1362e2ea65226727b1aa8583', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0x8dbf963519ee01bc8fa32cbc8df8ab2ca27e2ae1', 'value': 160.3717526487514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x08b19aeb591ba32728', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:47:51.000Z'}}, {'blockNum': '0xadc500', 'uniqueId': '0x7fdfe1cea216637622e313f737e3e5cd266bb3e2ef5af69bdd6eaa5ef789c4d7:log:126', 'hash': '0x7fdfe1cea216637622e313f737e3e5cd266bb3e2ef5af69bdd6eaa5ef789c4d7', 'from': '0xaa298fa032ae863e0156f1e1b54a7ad1a27534a4', 'to': '0x8dbf963519ee01bc8fa32cbc8df8ab2ca27e2ae1', 'value': 64.00429711227304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x03783cf11d43980a10', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:48:46.000Z'}}, {'blockNum': '0xadc50b', 'uniqueId': '0xfd0155dac21b52a18a3217007029b607c48fed7836ff658442bc9dcb2748111b:log:28', 'hash': '0xfd0155dac21b52a18a3217007029b607c48fed7836ff658442bc9dcb2748111b', 'from': '0xea8ddc2f50626f1f8f8c11242d1876710d65ff44', 'to': '0x8dbf963519ee01bc8fa32cbc8df8ab2ca27e2ae1', 'value': 77.09701650169806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x042defa007e2246da1', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:51:42.000Z'}}, {'blockNum': '0xadc514', 'uniqueId': '0xbff8211a93c9b2ff561584b8e5ca5152672a2cd25526c57f8103977e8af69d59:log:3', 'hash': '0xbff8211a93c9b2ff561584b8e5ca5152672a2cd25526c57f8103977e8af69d59', 'from': '0x8dbf963519ee01bc8fa32cbc8df8ab2ca27e2ae1', 'to': '0xcda67a0135d5481cb4c92237b862a080c8bc39d4', 'value': 301.4730662627225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1057c77c7e415f9ed9', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:52:45.000Z'}}, {'blockNum': '0xadc515', 'uniqueId': '0x759d6442a9445d1c8d1d9c3aacd323c188afe3d4650eede2080e8029299cde18:log:216', 'hash': '0x759d6442a9445d1c8d1d9c3aacd323c188afe3d4650eede2080e8029299cde18', 'from': '0xea8ddc2f50626f1f8f8c11242d1876710d65ff44', 'to': '0xc2a3110379f2331842c1f5fb05a2a45ebe41ce0f', 'value': 110.77402916907609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x06014c689f918a2ad1', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:52:48.000Z'}}, {'blockNum': '0xadc521', 'uniqueId': '0xf2b409ed52a25736bbb5bfb6cc0e7d2c4b5448b2c1546269e32bba20fba4ba28:log:211', 'hash': '0xf2b409ed52a25736bbb5bfb6cc0e7d2c4b5448b2c1546269e32bba20fba4ba28', 'from': '0xc2a3110379f2331842c1f5fb05a2a45ebe41ce0f', 'to': '0xcda67a0135d5481cb4c92237b862a080c8bc39d4', 'value': 110.77402916907609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x06014c689f918a2ad1', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:54:59.000Z'}}, {'blockNum': '0xadc53a', 'uniqueId': '0x876094076e927cf48811e9e133c42d1484a2891a582102c769aae85a59db87f3:log:206', 'hash': '0x876094076e927cf48811e9e133c42d1484a2891a582102c769aae85a59db87f3', 'from': '0xbcb127e3e3977a152a5873ea707beff0ae88e66b', 'to': '0x3f91b71d1fee38acc7f8c160332fc4d6d2e42f62', 'value': 174.75312874952505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x09792fd4b7478b1af4', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:59:52.000Z'}}, {'blockNum': '0xadc545', 'uniqueId': '0x18e34254a09ea25d73b76a05ee0e1be69af626a5f99eb0bf52934652f5f273c4:log:206', 'hash': '0x18e34254a09ea25d73b76a05ee0e1be69af626a5f99eb0bf52934652f5f273c4', 'from': '0x142aa41e242f19451d9ea6a8e7dff7da661857db', 'to': '0xb0694e56742b6ee22921948c89622bac3f7ef2e9', 'value': 10.38295081967213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x9017a6c25ee8864c', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:02:29.000Z'}}, {'blockNum': '0xadc549', 'uniqueId': '0xa572aa49713fb3f3ada5d9e1b79905cbb410e64e7ac2793824015785c84f6b20:log:77', 'hash': '0xa572aa49713fb3f3ada5d9e1b79905cbb410e64e7ac2793824015785c84f6b20', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0xb0694e56742b6ee22921948c89622bac3f7ef2e9', 'value': 131.44168176297143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x07201ea927d1d9f181', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:03:59.000Z'}}, {'blockNum': '0xadc550', 'uniqueId': '0x3f6eecb366035b5af724ac438ec76670a5501d3f72a59918a1295c6a8f58b87e:log:102', 'hash': '0x3f6eecb366035b5af724ac438ec76670a5501d3f72a59918a1295c6a8f58b87e', 'from': '0xb0694e56742b6ee22921948c89622bac3f7ef2e9', 'to': '0x18faa01efc7f2ee4ded961087c79f56eba8656ea', 'value': 141.82463258264355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x07b0364fea30c277cd', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:05:15.000Z'}}, {'blockNum': '0xadc551', 'uniqueId': '0x550b314dcfcfb8ae819afa865ddfab4776e55c31330109ca1ed56f7d08700951:log:116', 'hash': '0x550b314dcfcfb8ae819afa865ddfab4776e55c31330109ca1ed56f7d08700951', 'from': '0x18faa01efc7f2ee4ded961087c79f56eba8656ea', 'to': '0xabfd88db78d2503af372cb9c21cdc2f181232b4f', 'value': 141.82463258264355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x07b0364fea30c277cd', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:05:24.000Z'}}, {'blockNum': '0xadc5b1', 'uniqueId': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494:log:99', 'hash': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'value': 367.534668636074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x13ec9171d7a6180ed5', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:26:48.000Z'}}, {'blockNum': '0xadc5b1', 'uniqueId': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494:log:101', 'hash': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0x9424b1412450d0f8fc2255faf6046b98213b76bd', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:26:48.000Z'}}, {'blockNum': '0xadc5b1', 'uniqueId': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494:log:103', 'hash': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494', 'from': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'to': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'value': 367.534668636074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x13ec9171d7a6180ed5', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:26:48.000Z'}}, {'blockNum': '0xadc5b1', 'uniqueId': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494:log:134', 'hash': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494', 'from': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 367.534668636074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x13ec9171d7a6180ed5', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:26:48.000Z'}}, {'blockNum': '0xadc5cc', 'uniqueId': '0xc0f3ff5016935b08b08659d8d63635fa3e1a78a3ce85c085394e3e974d69907e:log:172', 'hash': '0xc0f3ff5016935b08b08659d8d63635fa3e1a78a3ce85c085394e3e974d69907e', 'from': '0xde97a98325170168cbd4548bcc2fdbf06d98167d', 'to': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'value': 792.3647048133639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2af444ece64dcee52e', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:33:59.000Z'}}, {'blockNum': '0xadc5cc', 'uniqueId': '0xc0f3ff5016935b08b08659d8d63635fa3e1a78a3ce85c085394e3e974d69907e:log:176', 'hash': '0xc0f3ff5016935b08b08659d8d63635fa3e1a78a3ce85c085394e3e974d69907e', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 789.9052240116742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2ad2231824313327a9', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:33:59.000Z'}}, {'blockNum': '0xadc5cc', 'uniqueId': '0xc0f3ff5016935b08b08659d8d63635fa3e1a78a3ce85c085394e3e974d69907e:log:184', 'hash': '0xc0f3ff5016935b08b08659d8d63635fa3e1a78a3ce85c085394e3e974d69907e', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0xde97a98325170168cbd4548bcc2fdbf06d98167d', 'value': 2.459480801689714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2221d4c21c9bbd85', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:33:59.000Z'}}, {'blockNum': '0xadc67e', 'uniqueId': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc:log:51', 'hash': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'value': 266.21413483396526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0e6e76992b26718c7f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T21:13:32.000Z'}}, {'blockNum': '0xadc67e', 'uniqueId': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc:log:53', 'hash': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0x9424b1412450d0f8fc2255faf6046b98213b76bd', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T21:13:32.000Z'}}, {'blockNum': '0xadc67e', 'uniqueId': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc:log:55', 'hash': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc', 'from': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'to': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'value': 266.21413483396526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0e6e76992b26718c7f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T21:13:32.000Z'}}, {'blockNum': '0xadc67e', 'uniqueId': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc:log:86', 'hash': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc', 'from': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 266.21413483396526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0e6e76992b26718c7f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T21:13:32.000Z'}}, {'blockNum': '0xadc6ba', 'uniqueId': '0x303b05fa241a77b27a4f284db8750fc1941ced485c0cb63b9a32ee99d4bfc888:log:126', 'hash': '0x303b05fa241a77b27a4f284db8750fc1941ced485c0cb63b9a32ee99d4bfc888', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'value': 706.9920889963752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x26537c7723384c4319', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T21:27:53.000Z'}}, {'blockNum': '0xadc6ba', 'uniqueId': '0x303b05fa241a77b27a4f284db8750fc1941ced485c0cb63b9a32ee99d4bfc888:log:130', 'hash': '0x303b05fa241a77b27a4f284db8750fc1941ced485c0cb63b9a32ee99d4bfc888', 'from': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 706.9920889963752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x26537c7723384c4319', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T21:27:53.000Z'}}, {'blockNum': '0xadc7b8', 'uniqueId': '0x6692c5302887f0fe7c23d0d1f3149dcbce23a7563734036d430571a69f943681:log:253', 'hash': '0x6692c5302887f0fe7c23d0d1f3149dcbce23a7563734036d430571a69f943681', 'from': '0x9a376c8e244cdbb07eb7856da3cac7f5794b58fa', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:29:45.000Z'}}, {'blockNum': '0xadc7b9', 'uniqueId': '0x789db0c6a49404c57c28d4e888f525184fcab4b91549e1fe5dc0fe09d8d35451:log:2', 'hash': '0x789db0c6a49404c57c28d4e888f525184fcab4b91549e1fe5dc0fe09d8d35451', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x00000000000f75712e0cfa682f7bfc795112cbd2', 'value': 1394.087866538311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x4b92db086c2a33536b', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:29:50.000Z'}}, {'blockNum': '0xadc7b9', 'uniqueId': '0x9ce37b828c7dadf5c6c1500655e658d6784893d594e8041c44c567370acaf277:log:8', 'hash': '0x9ce37b828c7dadf5c6c1500655e658d6784893d594e8041c44c567370acaf277', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 12680.63920584683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02af6b385ccfcfd10809', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:29:50.000Z'}}, {'blockNum': '0xadc7b9', 'uniqueId': '0xd3a3f5a985a6e6a288faa9abecf6647d123c7706588339744ac6b2b4e9d43a7b:log:12', 'hash': '0xd3a3f5a985a6e6a288faa9abecf6647d123c7706588339744ac6b2b4e9d43a7b', 'from': '0x00000000000f75712e0cfa682f7bfc795112cbd2', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 1394.087866538311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x4b92db086c2a33536b', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:29:50.000Z'}}, {'blockNum': '0xadc7ba', 'uniqueId': '0xb184b71f85e48d65a3f571effbc4e8f8001f8084b4d0b9449cf07ea4521c67ba:log:15', 'hash': '0xb184b71f85e48d65a3f571effbc4e8f8001f8084b4d0b9449cf07ea4521c67ba', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xbb767a28ca7f6238e42be69619d8735d5970bc3d', 'value': 2652.401531753656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x8fc977341ab6a6a174', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:29:59.000Z'}}, {'blockNum': '0xadc7bb', 'uniqueId': '0x368f053d8c7d8b21727dc5df33585953fcafedabfb1858687d6ba3d06dd41979:log:139', 'hash': '0x368f053d8c7d8b21727dc5df33585953fcafedabfb1858687d6ba3d06dd41979', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 12655.277927435136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02ae0b43007755000000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:30:14.000Z'}}, {'blockNum': '0xadc805', 'uniqueId': '0x2d923e33e511579099679f42939fbe722ef30a209feccda6719c61afbedc9cac:log:171', 'hash': '0x2d923e33e511579099679f42939fbe722ef30a209feccda6719c61afbedc9cac', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 3416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xb92e85ed419e600000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:46:43.000Z'}}, {'blockNum': '0xadc818', 'uniqueId': '0x1a86540af0e5f0aa62321255b2dd1b468c4c5b62890c074e0ad1daf69a69481d:log:91', 'hash': '0x1a86540af0e5f0aa62321255b2dd1b468c4c5b62890c074e0ad1daf69a69481d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'value': 3404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xb887fd5cd5c5b00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:51:29.000Z'}}, {'blockNum': '0xadc820', 'uniqueId': '0x46dbc4e25d4f0f85d35069394fed71cef15bc4076f27c820b5364b09fac14202:log:222', 'hash': '0x46dbc4e25d4f0f85d35069394fed71cef15bc4076f27c820b5364b09fac14202', 'from': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 3404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xb887fd5cd5c5b00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:53:49.000Z'}}, {'blockNum': '0xadc83b', 'uniqueId': '0x11e5442f6ad6dadb0a732672a6fe325674d820e48a9c868dc818f06ff3686cbe:log:2', 'hash': '0x11e5442f6ad6dadb0a732672a6fe325674d820e48a9c868dc818f06ff3686cbe', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x000000000000084e91743124a982076c59f10084', 'value': 28898.851601114035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x061e9c2162890a9d398c', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:09.000Z'}}, {'blockNum': '0xadc83b', 'uniqueId': '0x805a1d9ecffe6c3e7fe59701499a3d542c128b0f5bc32934893ac06013ba06c3:log:8', 'hash': '0x805a1d9ecffe6c3e7fe59701499a3d542c128b0f5bc32934893ac06013ba06c3', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 15473.955553150341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0346d8458f0f5d3fd97e', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:09.000Z'}}, {'blockNum': '0xadc83b', 'uniqueId': '0x7a71d213c09971564b57e7a8bd2d5607296f1de8ded12908226eabbe99988d17:log:12', 'hash': '0x7a71d213c09971564b57e7a8bd2d5607296f1de8ded12908226eabbe99988d17', 'from': '0x000000000000084e91743124a982076c59f10084', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 28898.851601114035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x061e9c2162890a9d398c', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:09.000Z'}}, {'blockNum': '0xadc83b', 'uniqueId': '0x0c6e0404f7d9d2e2c7cae69c4445367d2cbc9a2e866c97b84e194278d4d25f1a:log:19', 'hash': '0x0c6e0404f7d9d2e2c7cae69c4445367d2cbc9a2e866c97b84e194278d4d25f1a', 'from': '0xbb767a28ca7f6238e42be69619d8735d5970bc3d', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 2652.401531753656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x8fc977341ab6a6a174', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:09.000Z'}}, {'blockNum': '0xadc83c', 'uniqueId': '0xf38bdaf909a642ce3efdd76d40a5f7dda9069f20974c557c3c1cf7e46776a633:log:2', 'hash': '0xf38bdaf909a642ce3efdd76d40a5f7dda9069f20974c557c3c1cf7e46776a633', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x0000000071e801062eb0544403f66176bba42dc0', 'value': 3984.6140758657557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xd801a0ee9c17c1c001', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:43.000Z'}}, {'blockNum': '0xadc83c', 'uniqueId': '0x6f102e43fb0bc0d389ccfaff2760571504fbe6a932bb12bfc0e813c84da8eb7e:log:10', 'hash': '0x6f102e43fb0bc0d389ccfaff2760571504fbe6a932bb12bfc0e813c84da8eb7e', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xf0eaf0c77c1362ad4de668755be5559eb47cfb9f', 'value': 12146.26362095979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02927344e999a61e1380', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:43.000Z'}}, {'blockNum': '0xadc83c', 'uniqueId': '0x236ba357e4214e729c095ca411d61b5eea256dd8e2637662cf48ecae1b0c2e6f:log:14', 'hash': '0x236ba357e4214e729c095ca411d61b5eea256dd8e2637662cf48ecae1b0c2e6f', 'from': '0x0000000071e801062eb0544403f66176bba42dc0', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 3984.6140758657557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xd801a0ee9c17c1c001', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:43.000Z'}}, {'blockNum': '0xadc83c', 'uniqueId': '0x66ac01a8f355942384a469c1bf0dc346fcda503de97160ca5ceb70483812ea9a:log:51', 'hash': '0x66ac01a8f355942384a469c1bf0dc346fcda503de97160ca5ceb70483812ea9a', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 3902.6452798983332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xd3901544f7770fed50', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:43.000Z'}}, {'blockNum': '0xadc83d', 'uniqueId': '0x42b5afd9178ce8cd5fa91c414a61d71c203271fd082354e34af141fa20a30d90:log:24', 'hash': '0x42b5afd9178ce8cd5fa91c414a61d71c203271fd082354e34af141fa20a30d90', 'from': '0xf0eaf0c77c1362ad4de668755be5559eb47cfb9f', 'to': '0x7e8eda0099a86709ef44c1f27a446c92620d6c71', 'value': 12146.26362095979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02927344e999a61e1380', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:59.000Z'}}, {'blockNum': '0xadc83e', 'uniqueId': '0xfdca9721560b9c72741788552dad5dd3401e82b926f582240bf4e2602e1d298d:log:16', 'hash': '0xfdca9721560b9c72741788552dad5dd3401e82b926f582240bf4e2602e1d298d', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x0000000071e801062eb0544403f66176bba42dc0', 'value': 2787.583890514025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x971d7f6b2b89d95bb1', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:02:13.000Z'}}, {'blockNum': '0xadc83e', 'uniqueId': '0x58bf57a7ba7234ff92f5cde99fb4e7c878ebe6fea6e892a9a8915b2137cdfaf5:log:22', 'hash': '0x58bf57a7ba7234ff92f5cde99fb4e7c878ebe6fea6e892a9a8915b2137cdfaf5', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x86adc7a944356512c62dfe17356bbf65c43922bb', 'value': 12792.461861400954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02b57b123d939033c312', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:02:13.000Z'}}, {'blockNum': '0xadc83e', 'uniqueId': '0xac1af40f1d310488b0a72357df3e4675b7d57f0b3a620dcbb0e04bf528087395:log:26', 'hash': '0xac1af40f1d310488b0a72357df3e4675b7d57f0b3a620dcbb0e04bf528087395', 'from': '0x0000000071e801062eb0544403f66176bba42dc0', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 2787.583890514025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x971d7f6b2b89d95bb1', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:02:13.000Z'}}, {'blockNum': '0xadc841', 'uniqueId': '0x19f09ab0a9a0a3cf7d749e5614c334c9c3df79abc6e1500aa29b8338f46ca436:log:5', 'hash': '0x19f09ab0a9a0a3cf7d749e5614c334c9c3df79abc6e1500aa29b8338f46ca436', 'from': '0x6e352003c12f491f56c11459cd20596d3866b321', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 209.57105637627777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0b5c61f56b4f660e12', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:02:33.000Z'}}, {'blockNum': '0xadc841', 'uniqueId': '0x19f09ab0a9a0a3cf7d749e5614c334c9c3df79abc6e1500aa29b8338f46ca436:log:7', 'hash': '0x19f09ab0a9a0a3cf7d749e5614c334c9c3df79abc6e1500aa29b8338f46ca436', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 209.57085764132216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0b5c6140abb8f70000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:02:33.000Z'}}, {'blockNum': '0xadc841', 'uniqueId': '0x6343badf931f554f714d3e1ca56076a9650a99878feae45dea33d14db62a27f5:log:186', 'hash': '0x6343badf931f554f714d3e1ca56076a9650a99878feae45dea33d14db62a27f5', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xbb3c80f634a150a3c6d6a9d779c380473dfbcdc7', 'value': 1252.1448477172103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x43e10020d9dfe9626d', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:02:33.000Z'}}, {'blockNum': '0xadc844', 'uniqueId': '0x7583c58a55deec361e67dafa1d41cd4dd20adde184161244f5847d0f9eaa3f74:log:281', 'hash': '0x7583c58a55deec361e67dafa1d41cd4dd20adde184161244f5847d0f9eaa3f74', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x7613486b70026dcf33dc9c7998c57eb0746111aa', 'value': 622.9081478932818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x21c4964c333b8c04c6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:03:06.000Z'}}, {'blockNum': '0xadc845', 'uniqueId': '0xce57b456300cc38453060fc079fae9b5567c971caa36cd3c00b40e518af5c1bd:log:143', 'hash': '0xce57b456300cc38453060fc079fae9b5567c971caa36cd3c00b40e518af5c1bd', 'from': '0x86adc7a944356512c62dfe17356bbf65c43922bb', 'to': '0x82a2ee453f0435978488a9a35d7a923e0c2b3831', 'value': 12792.461861400954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02b57b123d939033c312', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:03:34.000Z'}}, {'blockNum': '0xadc845', 'uniqueId': '0x323c62e0688d71d04b57e40ab0eb3f6bb13a51619f42d259d907001eb1326291:log:148', 'hash': '0x323c62e0688d71d04b57e40ab0eb3f6bb13a51619f42d259d907001eb1326291', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 6716.219561661776, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x016c16451b466befc751', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:03:34.000Z'}}, {'blockNum': '0xadc846', 'uniqueId': '0x761dcc7a8a4474536361e9eb623eef050fb84f47cee9e94658e7d1b683d0cf37:log:103', 'hash': '0x761dcc7a8a4474536361e9eb623eef050fb84f47cee9e94658e7d1b683d0cf37', 'from': '0xbb3c80f634a150a3c6d6a9d779c380473dfbcdc7', 'to': '0x08bb919869aa4d40528c4c2c521096e35846b44e', 'value': 1252.1448477172103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x43e10020d9dfe9626d', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:04:03.000Z'}}, {'blockNum': '0xadc849', 'uniqueId': '0xcace13915a1198a15829ee4196745498f4070af9a3cdc5987f592e6eb251d1a6:log:9', 'hash': '0xcace13915a1198a15829ee4196745498f4070af9a3cdc5987f592e6eb251d1a6', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x00000000000f75712e0cfa682f7bfc795112cbd2', 'value': 1633.0233133062934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x5886c04352e10d1e89', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:04:24.000Z'}}, {'blockNum': '0xadc849', 'uniqueId': '0xc868538b6172ecb1163477b1a3be07661489dd7ccda32bb143a7cd72dd569564:log:88', 'hash': '0xc868538b6172ecb1163477b1a3be07661489dd7ccda32bb143a7cd72dd569564', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x08bf8d6fa77f7bc937e62dcb7a5d1201890c48fa', 'value': 9261.426267874835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01f6101bc97e273fa362', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:04:24.000Z'}}, {'blockNum': '0xadc849', 'uniqueId': '0xc40e62d017b2255280bde3c6d4465dc025b408d6aa323ec5bf80a6f45df5e01f:log:93', 'hash': '0xc40e62d017b2255280bde3c6d4465dc025b408d6aa323ec5bf80a6f45df5e01f', 'from': '0x00000000000f75712e0cfa682f7bfc795112cbd2', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 1633.0233133062934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x5886c04352e10d1e89', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:04:24.000Z'}}, {'blockNum': '0xadc84a', 'uniqueId': '0x00ffd0209f3ec414515cb7af11a44eebdfaa674d4f192d71ed8f4c6fc02df2c1:log:200', 'hash': '0x00ffd0209f3ec414515cb7af11a44eebdfaa674d4f192d71ed8f4c6fc02df2c1', 'from': '0x6e352003c12f491f56c11459cd20596d3866b321', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 226.30066976086863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0c448d7c27b98eaa93', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:05:12.000Z'}}, {'blockNum': '0xadc84a', 'uniqueId': '0x00ffd0209f3ec414515cb7af11a44eebdfaa674d4f192d71ed8f4c6fc02df2c1:log:202', 'hash': '0x00ffd0209f3ec414515cb7af11a44eebdfaa674d4f192d71ed8f4c6fc02df2c1', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 226.30041375353835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0c448c93515f938000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:05:12.000Z'}}, {'blockNum': '0xadc84a', 'uniqueId': '0x974f6cb002c34cfee0a5ed83d037f9ff27371ec70f30fdc5f8badc09b383a127:log:273', 'hash': '0x974f6cb002c34cfee0a5ed83d037f9ff27371ec70f30fdc5f8badc09b383a127', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 4150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xe0f8d1c45b8f180000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:05:12.000Z'}}, {'blockNum': '0xadc84e', 'uniqueId': '0x14e1881c3aa8f0b57157951da42417d9d3b5999dab90634559f0d527aa4cc52d:log:219', 'hash': '0x14e1881c3aa8f0b57157951da42417d9d3b5999dab90634559f0d527aa4cc52d', 'from': '0x22ab60db2853bbe799ddaa8bc11eeb5c944025ba', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 105.40010658971966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x05b6b86682788c66e5', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:06:03.000Z'}}, {'blockNum': '0xadc84e', 'uniqueId': '0x866f5efe3e2e3b54be7a0e3e1f616576c7c83d4f07993b1ea2ad0fabe5471060:log:338', 'hash': '0x866f5efe3e2e3b54be7a0e3e1f616576c7c83d4f07993b1ea2ad0fabe5471060', 'from': '0x7613486b70026dcf33dc9c7998c57eb0746111aa', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 622.9081478932818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x21c4964c333b8c04c6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:06:03.000Z'}}, {'blockNum': '0xadc850', 'uniqueId': '0x71037cce6121c5c54b85453417bc2dac0c8e4ddf3f9377be44c5db054b49614b:log:35', 'hash': '0x71037cce6121c5c54b85453417bc2dac0c8e4ddf3f9377be44c5db054b49614b', 'from': '0x08bf8d6fa77f7bc937e62dcb7a5d1201890c48fa', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 9261.426267874835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01f6101bc97e273fa362', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:06:44.000Z'}}, {'blockNum': '0xadc850', 'uniqueId': '0xcd7ffd05f167f338573df041ded8e01071297b6e52f25e872c4d11ff1b8a0182:log:120', 'hash': '0xcd7ffd05f167f338573df041ded8e01071297b6e52f25e872c4d11ff1b8a0182', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x714870e30c5ab75645e1c13318f318860ed48692', 'value': 6898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0175f0faf4d464880000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:06:44.000Z'}}, {'blockNum': '0xadc850', 'uniqueId': '0xa8dad3e586bc984b62e2ebcea94a7a0d314c405f1b23fd3b76d62006bda6ccd3:log:122', 'hash': '0xa8dad3e586bc984b62e2ebcea94a7a0d314c405f1b23fd3b76d62006bda6ccd3', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x89fd69fb01792c6127ec440509f491a6c364150f', 'value': 6544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0162c03e5066ec400000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:06:44.000Z'}}, {'blockNum': '0xadc85f', 'uniqueId': '0x3f6b2b761d8a738e123f0bc78f617504a0820ae202bbc39abbb4c04909ed3aa5:log:266', 'hash': '0x3f6b2b761d8a738e123f0bc78f617504a0820ae202bbc39abbb4c04909ed3aa5', 'from': '0x7354b71dfa14d0bbc66fd447c5fea71f63379e19', 'to': '0x4d4d05e1205e3a412ae1469c99e0d954113aa76f', 'value': 0.3379930908752916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x04b0caece62877d0', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:10:56.000Z'}}, {'blockNum': '0xadc85f', 'uniqueId': '0x3f6b2b761d8a738e123f0bc78f617504a0820ae202bbc39abbb4c04909ed3aa5:log:270', 'hash': '0x3f6b2b761d8a738e123f0bc78f617504a0820ae202bbc39abbb4c04909ed3aa5', 'from': '0x7354b71dfa14d0bbc66fd447c5fea71f63379e19', 'to': '0x7354b71dfa14d0bbc66fd447c5fea71f63379e19', 'value': 221.305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0bff394cf9d1d28000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:10:56.000Z'}}, {'blockNum': '0xadc861', 'uniqueId': '0x0cabbe70908f952906acff1571249a719ad1cad2ef350ad6fcd0bdbe34051039:log:123', 'hash': '0x0cabbe70908f952906acff1571249a719ad1cad2ef350ad6fcd0bdbe34051039', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 5842.838, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x013cbdaa7c5149cf0000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:11:34.000Z'}}, {'blockNum': '0xadc861', 'uniqueId': '0xe811a65cae3072596e6723ecba82bf5ac3f6e1f60fb1e35ec5cdad847d4c9141:log:141', 'hash': '0xe811a65cae3072596e6723ecba82bf5ac3f6e1f60fb1e35ec5cdad847d4c9141', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 13847.9955235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02eeb38b1ecc6909b800', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:11:34.000Z'}}, {'blockNum': '0xadc864', 'uniqueId': '0x7d6f4873799adebd251626e1efccc8ae06a5f2bb247716ea5032b6e90f8bec71:log:147', 'hash': '0x7d6f4873799adebd251626e1efccc8ae06a5f2bb247716ea5032b6e90f8bec71', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 6784.197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x016fc5a57b48a6c08000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:12:35.000Z'}}, {'blockNum': '0xadc86a', 'uniqueId': '0x4591f257f59a42caa1a8a46fa0e5d52da8b7784508c6fe90f83b1ddb4fd6abe1:log:39', 'hash': '0x4591f257f59a42caa1a8a46fa0e5d52da8b7784508c6fe90f83b1ddb4fd6abe1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xbb3c80f634a150a3c6d6a9d779c380473dfbcdc7', 'value': 1241.78144771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x43512def73c0dbac00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:14:36.000Z'}}, {'blockNum': '0xadc86a', 'uniqueId': '0xee7af7522004ea372c3cb69be96eb6f9be1b1989897cb095f708987a264b2974:log:42', 'hash': '0xee7af7522004ea372c3cb69be96eb6f9be1b1989897cb095f708987a264b2974', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x86adc7a944356512c62dfe17356bbf65c43922bb', 'value': 12786.7057354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02b52b305f79cef31000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:14:36.000Z'}}, {'blockNum': '0xadc86b', 'uniqueId': '0x44590000417b9b7c74c4e6eee81655ae448ddbe153bd5367ad705135153bae54:log:81', 'hash': '0x44590000417b9b7c74c4e6eee81655ae448ddbe153bd5367ad705135153bae54', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'value': 5713.383611233288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0135b9201b9ceaa2d9e6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:15:05.000Z'}}, {'blockNum': '0xadc86b', 'uniqueId': '0x44590000417b9b7c74c4e6eee81655ae448ddbe153bd5367ad705135153bae54:log:85', 'hash': '0x44590000417b9b7c74c4e6eee81655ae448ddbe153bd5367ad705135153bae54', 'from': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'to': '0x41d500e248616056995ab8176a9ede1945e90101', 'value': 5713.383611233288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0135b9201b9ceaa2d9e6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:15:05.000Z'}}, {'blockNum': '0xadc86c', 'uniqueId': '0x1bc0704733a3947cf86c152acddc95b6c836f878cb54a410fe59e0f5fe9d9c16:log:130', 'hash': '0x1bc0704733a3947cf86c152acddc95b6c836f878cb54a410fe59e0f5fe9d9c16', 'from': '0xbb3c80f634a150a3c6d6a9d779c380473dfbcdc7', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 1241.78144771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x43512def73c0dbac00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:15:19.000Z'}}, {'blockNum': '0xadc86d', 'uniqueId': '0x217dcdf405ddbec92176011ec78a5da99b821941ddc2e7cb56fc52e66ac9048e:log:292', 'hash': '0x217dcdf405ddbec92176011ec78a5da99b821941ddc2e7cb56fc52e66ac9048e', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x613158bd6d63e35b991097f705a13b165d083e00', 'value': 120.23403667924957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0684951b5521f53aa6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:15:31.000Z'}}, {'blockNum': '0xadc873', 'uniqueId': '0x3dcadbe406264af838c3ccb676fd78c12176e4c3d55e887c1a6d75af04b7dbe0:log:246', 'hash': '0x3dcadbe406264af838c3ccb676fd78c12176e4c3d55e887c1a6d75af04b7dbe0', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 13847.9955235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02eeb38b1ecc6909b800', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:16:49.000Z'}}, {'blockNum': '0xadc873', 'uniqueId': '0x3dcadbe406264af838c3ccb676fd78c12176e4c3d55e887c1a6d75af04b7dbe0:log:249', 'hash': '0x3dcadbe406264af838c3ccb676fd78c12176e4c3d55e887c1a6d75af04b7dbe0', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 13847.9955235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02eeb38b1ecc6909b800', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:16:49.000Z'}}, {'blockNum': '0xadc873', 'uniqueId': '0x3dcadbe406264af838c3ccb676fd78c12176e4c3d55e887c1a6d75af04b7dbe0:log:251', 'hash': '0x3dcadbe406264af838c3ccb676fd78c12176e4c3d55e887c1a6d75af04b7dbe0', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 13847.9955235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02eeb38b1ecc6909b800', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:16:49.000Z'}}, {'blockNum': '0xadc874', 'uniqueId': '0xf3da35642a7c5eb2b5702e285e47a96ec746eefa149dfee29b91938e116e32c9:log:53', 'hash': '0xf3da35642a7c5eb2b5702e285e47a96ec746eefa149dfee29b91938e116e32c9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'value': 19969.024539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x043a85e2a1cb4988b000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:17:02.000Z'}}, {'blockNum': '0xadc876', 'uniqueId': '0xed6ae57b962984b8d8ddd286511504823cb62b66101d20da1ff13038ac9e8e0f:log:312', 'hash': '0xed6ae57b962984b8d8ddd286511504823cb62b66101d20da1ff13038ac9e8e0f', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 6784.197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x016fc5a57b48a6c08000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:17:36.000Z'}}, {'blockNum': '0xadc876', 'uniqueId': '0xed6ae57b962984b8d8ddd286511504823cb62b66101d20da1ff13038ac9e8e0f:log:315', 'hash': '0xed6ae57b962984b8d8ddd286511504823cb62b66101d20da1ff13038ac9e8e0f', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 6784.197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x016fc5a57b48a6c08000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:17:36.000Z'}}, {'blockNum': '0xadc876', 'uniqueId': '0xed6ae57b962984b8d8ddd286511504823cb62b66101d20da1ff13038ac9e8e0f:log:317', 'hash': '0xed6ae57b962984b8d8ddd286511504823cb62b66101d20da1ff13038ac9e8e0f', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 6784.197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x016fc5a57b48a6c08000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:17:36.000Z'}}, {'blockNum': '0xadc877', 'uniqueId': '0x038e5de22f1497b2d9f968b981152770a42ccc2475151e433e1f936505bd8fc0:log:251', 'hash': '0x038e5de22f1497b2d9f968b981152770a42ccc2475151e433e1f936505bd8fc0', 'from': '0x86adc7a944356512c62dfe17356bbf65c43922bb', 'to': '0x82a2ee453f0435978488a9a35d7a923e0c2b3831', 'value': 12786.7057354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02b52b305f79cef31000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:17:43.000Z'}}, {'blockNum': '0xadc87a', 'uniqueId': '0x8e27afee198a18150db05a7d5903c6773f34ba533bc882ff40f55fa9d61fc5f1:log:1', 'hash': '0x8e27afee198a18150db05a7d5903c6773f34ba533bc882ff40f55fa9d61fc5f1', 'from': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'to': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'value': 19969.024539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x043a85e2a1cb4988b000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:18:33.000Z'}}, {'blockNum': '0xadc87a', 'uniqueId': '0x1c58639c1e47b48508311f240a5a623be1e6b586528fb176f0a2de9971876c9f:log:274', 'hash': '0x1c58639c1e47b48508311f240a5a623be1e6b586528fb176f0a2de9971876c9f', 'from': '0x41d500e248616056995ab8176a9ede1945e90101', 'to': '0xcd9ae85c8db98bd0298452fc7279b5ce5662e840', 'value': 5713.383611233288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0135b9201b9ceaa2d9e6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:18:33.000Z'}}, {'blockNum': '0xadc87e', 'uniqueId': '0x88fa328125931b3da1d85eef3242dd97dea5c72a5123c6ae39dce3349a01bca1:log:81', 'hash': '0x88fa328125931b3da1d85eef3242dd97dea5c72a5123c6ae39dce3349a01bca1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf43a28ceea7080ef2d9972e92f7d52af203763c4', 'value': 1188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x4066cfd9b4cc100000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:19:10.000Z'}}, {'blockNum': '0xadc87f', 'uniqueId': '0xeba085ef685d6d28fa55d430ea599daff49418edb53cd73e03282894ff919aa3:log:162', 'hash': '0xeba085ef685d6d28fa55d430ea599daff49418edb53cd73e03282894ff919aa3', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 5293.963111717925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x011efc7f297d208856b7', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:19:30.000Z'}}, {'blockNum': '0xadc883', 'uniqueId': '0x49b241c0fe739025aef5c34d2d7701376c90ddb63619e9bad614a239785680ca:log:18', 'hash': '0x49b241c0fe739025aef5c34d2d7701376c90ddb63619e9bad614a239785680ca', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x8129a73c9e93343eed2f5e0a5886d040e772703d', 'value': 15820.92983866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0359a781d961eb69a800', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:20:07.000Z'}}, {'blockNum': '0xadc883', 'uniqueId': '0xcdf446d4feafc9fc0b79cc419dbe522755b62bfb01647be286718136bd3b9512:log:20', 'hash': '0xcdf446d4feafc9fc0b79cc419dbe522755b62bfb01647be286718136bd3b9512', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x6e07bf1e7725e322b691247cedf48e1589e886eb', 'value': 3496.0621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xbd859ba504e62d4000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:20:07.000Z'}}, {'blockNum': '0xadc889', 'uniqueId': '0xd01569d41743dc71b357a42469cc10a9d402742943c8f23911a5187174faa097:log:191', 'hash': '0xd01569d41743dc71b357a42469cc10a9d402742943c8f23911a5187174faa097', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xf71a09ffad24f1a263fbc0a6def8f0766f327de4', 'value': 445.387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1824fc7cbd10e78000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:22:07.000Z'}}, {'blockNum': '0xadc893', 'uniqueId': '0x3f18f6a51c91726723efc1450db4a009600549888de8871bf3c90b698ceab22a:log:4', 'hash': '0x3f18f6a51c91726723efc1450db4a009600549888de8871bf3c90b698ceab22a', 'from': '0xf43a28ceea7080ef2d9972e92f7d52af203763c4', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 1188.513699197655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x406df0e067a1aeb18b', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:23:38.000Z'}}, {'blockNum': '0xadc89a', 'uniqueId': '0x33b2e04c9554d803223163c4b0978eb6cc3c9eac959b5fb17ce96381593af65c:log:50', 'hash': '0x33b2e04c9554d803223163c4b0978eb6cc3c9eac959b5fb17ce96381593af65c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x351e17de911fdb2c0fb4bd6950857e0d8e0a84be', 'value': 3961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xd6b9eae1b8fa440000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:25:45.000Z'}}, {'blockNum': '0xadc8ac', 'uniqueId': '0x7533ff03b162af99abe07e7ca5b757a7f8f97157a40306cc1d3a80fe05df68c9:log:169', 'hash': '0x7533ff03b162af99abe07e7ca5b757a7f8f97157a40306cc1d3a80fe05df68c9', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xccb586177f8e2461a81cacdb8b793b2e265df169', 'value': 69.02163302460254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x03bdde198b28cded5f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:29:10.000Z'}}, {'blockNum': '0xadc8b6', 'uniqueId': '0xbb503edf995aa99ff85b82c01b4043a4b1863f5d62d9fb7e1a532fb8124d202a:log:112', 'hash': '0xbb503edf995aa99ff85b82c01b4043a4b1863f5d62d9fb7e1a532fb8124d202a', 'from': '0x8129a73c9e93343eed2f5e0a5886d040e772703d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18374.00662994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x03e40e90b04565ed0800', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:31:22.000Z'}}, {'blockNum': '0xadc8b6', 'uniqueId': '0x51bc8ca970650e3547c169f890045db2d5b0f17ddfa3e4e476e9022934160121:log:115', 'hash': '0x51bc8ca970650e3547c169f890045db2d5b0f17ddfa3e4e476e9022934160121', 'from': '0x82a2ee453f0435978488a9a35d7a923e0c2b3831', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25579.167596800955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x056aa6429d0d5f26d312', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:31:22.000Z'}}, {'blockNum': '0xadc8b6', 'uniqueId': '0x4654a40269ff3062debef3f804195105b0f5b968137479c7d3d6f949a04736aa:log:118', 'hash': '0x4654a40269ff3062debef3f804195105b0f5b968137479c7d3d6f949a04736aa', 'from': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19982.1726777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x043b3c5a3447a899a800', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:31:22.000Z'}}, {'blockNum': '0xadc8b6', 'uniqueId': '0x142bcb10a60d4c229fbe00a154ef2510d1d1af4e50337f6fbdd7f9d5de6da0dc:log:121', 'hash': '0x142bcb10a60d4c229fbe00a154ef2510d1d1af4e50337f6fbdd7f9d5de6da0dc', 'from': '0x714870e30c5ab75645e1c13318f318860ed48692', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0175f0faf4d464880000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:31:22.000Z'}}, {'blockNum': '0xadc8c9', 'uniqueId': '0xbe78d46364642024794a74157b1315ba755a89abd457b4f1e57f3c588e3ce561:log:134', 'hash': '0xbe78d46364642024794a74157b1315ba755a89abd457b4f1e57f3c588e3ce561', 'from': '0x351e17de911fdb2c0fb4bd6950857e0d8e0a84be', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 3961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xd6b9eae1b8fa440000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:36:16.000Z'}}, {'blockNum': '0xadc8d3', 'uniqueId': '0x52048d7c4a181b4ba0e1492e627f52ad83c55432e7a1feb8ccbd91b249e16234:log:323', 'hash': '0x52048d7c4a181b4ba0e1492e627f52ad83c55432e7a1feb8ccbd91b249e16234', 'from': '0x613158bd6d63e35b991097f705a13b165d083e00', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 120.23403667924957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0684951b5521f53aa6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:37:50.000Z'}}, {'blockNum': '0xadc8d4', 'uniqueId': '0xfeb86c9b070cedde2f90b56ab3e88e3e5c034241880f853e6af28d3c374cf51a:log:32', 'hash': '0xfeb86c9b070cedde2f90b56ab3e88e3e5c034241880f853e6af28d3c374cf51a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 13955.019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02f480cae3a3fae78000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:38:14.000Z'}}, {'blockNum': '0xadc8d8', 'uniqueId': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d:log:233', 'hash': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 13955.019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02f480cae3a3fae78000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:39:07.000Z'}}, {'blockNum': '0xadc8d8', 'uniqueId': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d:log:236', 'hash': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 13955.019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02f480cae3a3fae78000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:39:07.000Z'}}, {'blockNum': '0xadc8d8', 'uniqueId': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d:log:238', 'hash': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 13815.46881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02ecf025053442a2a000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:39:07.000Z'}}, {'blockNum': '0xadc8d8', 'uniqueId': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d:log:247', 'hash': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x6e352003c12f491f56c11459cd20596d3866b321', 'value': 139.55019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0790a5de6fb844e000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:39:07.000Z'}}, {'blockNum': '0xadc8e1', 'uniqueId': '0xdf4983862263ab66de4b27d9134fae6e353f145b9d1123a04fc4949f098c8fd2:log:1', 'hash': '0xdf4983862263ab66de4b27d9134fae6e353f145b9d1123a04fc4949f098c8fd2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 14466.507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x03103b1d4da935e78000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:40:34.000Z'}}, {'blockNum': '0xadc8ed', 'uniqueId': '0x2ba9335998dd7fc32e8f95527107f1487808bf67a7cd93501f6908cef1abaf24:log:34', 'hash': '0x2ba9335998dd7fc32e8f95527107f1487808bf67a7cd93501f6908cef1abaf24', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x444a7786ea391eac153dd6dd727c8b69d5168f88', 'value': 8320.04961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01c307e20ec86d4ea000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:42:26.000Z'}}, {'blockNum': '0xadc8ee', 'uniqueId': '0xf6bdc0be8468ee3c25300f2d0618b8daab0d8e3f3d1f2c7650e1d19ca9ddda07:log:127', 'hash': '0xf6bdc0be8468ee3c25300f2d0618b8daab0d8e3f3d1f2c7650e1d19ca9ddda07', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x591c9304c2ceca8b4e8a6ce97d30dbe5d4dd640b', 'value': 14466.507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x03103b1d4da935e78000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:43:12.000Z'}}, {'blockNum': '0xadc8ee', 'uniqueId': '0x0f6d1d16874ee313ae78abc600ded29f579dc5933b619b0ad416ad34216d3755:log:254', 'hash': '0x0f6d1d16874ee313ae78abc600ded29f579dc5933b619b0ad416ad34216d3755', 'from': '0xb710659faa700169f6eeef3645a1b369da6ea802', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 2966.9730652860117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xa0d705cb2e3c95fe21', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:43:12.000Z'}}, {'blockNum': '0xadc8ee', 'uniqueId': '0x0f6d1d16874ee313ae78abc600ded29f579dc5933b619b0ad416ad34216d3755:log:257', 'hash': '0x0f6d1d16874ee313ae78abc600ded29f579dc5933b619b0ad416ad34216d3755', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x10908c875d865c66f271f5d3949848971c9595c9', 'value': 2966.9730652860117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xa0d705cb2e3c95fe21', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:43:12.000Z'}}, {'blockNum': '0xadc8ee', 'uniqueId': '0x0f6d1d16874ee313ae78abc600ded29f579dc5933b619b0ad416ad34216d3755:log:260', 'hash': '0x0f6d1d16874ee313ae78abc600ded29f579dc5933b619b0ad416ad34216d3755', 'from': '0x10908c875d865c66f271f5d3949848971c9595c9', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 2966.9730652860117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xa0d705cb2e3c95fe21', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:43:12.000Z'}}, {'blockNum': '0xadc8f9', 'uniqueId': '0xfb1e849ab4b90f201a8a87322cc85530d2df407d4a673959e240146a3b777923:log:128', 'hash': '0xfb1e849ab4b90f201a8a87322cc85530d2df407d4a673959e240146a3b777923', 'from': '0xb710659faa700169f6eeef3645a1b369da6ea802', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 4450.459597929018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xf14288b0c55ae0fd32', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:46:20.000Z'}}, {'blockNum': '0xadc8f9', 'uniqueId': '0xfb1e849ab4b90f201a8a87322cc85530d2df407d4a673959e240146a3b777923:log:131', 'hash': '0xfb1e849ab4b90f201a8a87322cc85530d2df407d4a673959e240146a3b777923', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x10908c875d865c66f271f5d3949848971c9595c9', 'value': 4450.459597929018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xf14288b0c55ae0fd32', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:46:20.000Z'}}, {'blockNum': '0xadc8f9', 'uniqueId': '0xfb1e849ab4b90f201a8a87322cc85530d2df407d4a673959e240146a3b777923:log:134', 'hash': '0xfb1e849ab4b90f201a8a87322cc85530d2df407d4a673959e240146a3b777923', 'from': '0x10908c875d865c66f271f5d3949848971c9595c9', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 4450.459597929018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xf14288b0c55ae0fd32', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:46:20.000Z'}}, {'blockNum': '0xadc8fb', 'uniqueId': '0x5a0b8df205fabdd3c775d935c649aeb28a79d01a6a3b61d34a481ccdf818e494:log:6', 'hash': '0x5a0b8df205fabdd3c775d935c649aeb28a79d01a6a3b61d34a481ccdf818e494', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x94edc4a3065a7a42db6c57614e513992b2eb3ee4', 'value': 2590.882202259523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x8c73b6a3df70a6b0a0', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:46:30.000Z'}}, {'blockNum': '0xadc8fb', 'uniqueId': '0x9b8aab86fba1497d2a180d21dfddbe312cf3d181d72e7e1a868b5d964975866b:log:62', 'hash': '0x9b8aab86fba1497d2a180d21dfddbe312cf3d181d72e7e1a868b5d964975866b', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 4097.257184042096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xde1cdda4aff66c5e0c', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:46:30.000Z'}}, {'blockNum': '0xadc8fb', 'uniqueId': '0x45cf5103aec773128ad46320f65057497d0e6cec505253bcd102745af8db0821:log:66', 'hash': '0x45cf5103aec773128ad46320f65057497d0e6cec505253bcd102745af8db0821', 'from': '0x94edc4a3065a7a42db6c57614e513992b2eb3ee4', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 2590.882202259523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x8c73b6a3df70a6b0a0', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:46:30.000Z'}}, {'blockNum': '0xadc8ff', 'uniqueId': '0x39fed1e0ce83358799cfc5d61140698e2b5a0a68edc8696628654a0728cca649:log:169', 'hash': '0x39fed1e0ce83358799cfc5d61140698e2b5a0a68edc8696628654a0728cca649', 'from': '0xb710659faa700169f6eeef3645a1b369da6ea802', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 4450.459597929018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xf14288b0c55ae0fd32', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:47:46.000Z'}}, {'blockNum': '0xadc8ff', 'uniqueId': '0x39fed1e0ce83358799cfc5d61140698e2b5a0a68edc8696628654a0728cca649:log:172', 'hash': '0x39fed1e0ce83358799cfc5d61140698e2b5a0a68edc8696628654a0728cca649', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x10908c875d865c66f271f5d3949848971c9595c9', 'value': 4450.459597929018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xf14288b0c55ae0fd32', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:47:46.000Z'}}, {'blockNum': '0xadc8ff', 'uniqueId': '0x39fed1e0ce83358799cfc5d61140698e2b5a0a68edc8696628654a0728cca649:log:175', 'hash': '0x39fed1e0ce83358799cfc5d61140698e2b5a0a68edc8696628654a0728cca649', 'from': '0x10908c875d865c66f271f5d3949848971c9595c9', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 4450.459597929018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xf14288b0c55ae0fd32', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:47:46.000Z'}}, {'blockNum': '0xadc906', 'uniqueId': '0x20b580c341ae2afb6f1e426133ac4352b37bf063436d35efe24f081003fb9fad:log:264', 'hash': '0x20b580c341ae2afb6f1e426133ac4352b37bf063436d35efe24f081003fb9fad', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x444a7786ea391eac153dd6dd727c8b69d5168f88', 'value': 2584.5013168989644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x8c1b292e71dc0e9fc4', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:48:39.000Z'}}, {'blockNum': '0xadc90e', 'uniqueId': '0x354ef5f88e972fcd2fbc763d5093f8dda8bff24be655d1fbb74d1d058cb38bd6:log:236', 'hash': '0x354ef5f88e972fcd2fbc763d5093f8dda8bff24be655d1fbb74d1d058cb38bd6', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x22ab60db2853bbe799ddaa8bc11eeb5c944025ba', 'value': 79.55241369375157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x045002f2c488fbb5e9', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:50:34.000Z'}}, {'blockNum': '0xadc911', 'uniqueId': '0x27502b0ea509076a2d273d016f8c81fa36270ae4e666c03d9d21984d37843c6c:log:18', 'hash': '0x27502b0ea509076a2d273d016f8c81fa36270ae4e666c03d9d21984d37843c6c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 79912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x10ec09c7801407a00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:50:54.000Z'}}, {'blockNum': '0xadc97f', 'uniqueId': '0xfae6ba27b2e7ee8e9a9edda7cf008e14d45cebbc732d344fa375801103505431:log:248', 'hash': '0xfae6ba27b2e7ee8e9a9edda7cf008e14d45cebbc732d344fa375801103505431', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'value': 1467.5329875470197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x4f8e1c84d9dbdece7c', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T00:19:36.000Z'}}, {'blockNum': '0xadc97f', 'uniqueId': '0xfae6ba27b2e7ee8e9a9edda7cf008e14d45cebbc732d344fa375801103505431:log:252', 'hash': '0xfae6ba27b2e7ee8e9a9edda7cf008e14d45cebbc732d344fa375801103505431', 'from': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 1467.5329875470197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x4f8e1c84d9dbdece7c', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T00:19:36.000Z'}}, {'blockNum': '0xadca52', 'uniqueId': '0x9f286c5e1675c8d6664674abf56cbb5d88195642604baffe57b6a57316d46855:log:43', 'hash': '0x9f286c5e1675c8d6664674abf56cbb5d88195642604baffe57b6a57316d46855', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 4150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xe0f8d1c45b8f180000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T01:01:32.000Z'}}, {'blockNum': '0xadca6f', 'uniqueId': '0xb3db3d78bd0afd54ec6a6afc30c763bc591a0c8d6fc59344be5117d45c5035c9:log:58', 'hash': '0xb3db3d78bd0afd54ec6a6afc30c763bc591a0c8d6fc59344be5117d45c5035c9', 'from': '0xccb586177f8e2461a81cacdb8b793b2e265df169', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 69.02163302460254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x03bdde198b28cded5f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T01:06:03.000Z'}}, {'blockNum': '0xadca76', 'uniqueId': '0xdba1f1aad24d90d71bfdeb59369e8d6a80824c4fdf8303b851bdf4fca1ae2000:log:229', 'hash': '0xdba1f1aad24d90d71bfdeb59369e8d6a80824c4fdf8303b851bdf4fca1ae2000', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x17b77f7f76ccb8cc55f7db8f4560e45a830e92cf', 'value': 1620, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x57d20428df44d00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T01:08:03.000Z'}}, {'blockNum': '0xadcafb', 'uniqueId': '0x051a23c488312fed753408799b6ada9800a057a2ecbbd91c956554c39857c790:log:104', 'hash': '0x051a23c488312fed753408799b6ada9800a057a2ecbbd91c956554c39857c790', 'from': '0x9a376c8e244cdbb07eb7856da3cac7f5794b58fa', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T01:41:59.000Z'}}, {'blockNum': '0xadcafd', 'uniqueId': '0xea2e64acd5dcfe186e096aee2be7a57d3bf9900474a8c0aefd621057b809af0e:log:107', 'hash': '0xea2e64acd5dcfe186e096aee2be7a57d3bf9900474a8c0aefd621057b809af0e', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 167.77163720140814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x09184c972477a48444', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T01:42:15.000Z'}}, {'blockNum': '0xadcafd', 'uniqueId': '0xea2e64acd5dcfe186e096aee2be7a57d3bf9900474a8c0aefd621057b809af0e:log:114', 'hash': '0xea2e64acd5dcfe186e096aee2be7a57d3bf9900474a8c0aefd621057b809af0e', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0x6e352003c12f491f56c11459cd20596d3866b321', 'value': 167.77163652622173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x09184c968743658000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T01:42:15.000Z'}}, {'blockNum': '0xadcb4e', 'uniqueId': '0x375323b2efd21d5dfcd15f6eb18bd8e60a05eb258202bb34125608f06bc9ade9:log:52', 'hash': '0x375323b2efd21d5dfcd15f6eb18bd8e60a05eb258202bb34125608f06bc9ade9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x607e0591d76eb0ba42f3510e57a82cc7dada6763', 'value': 586.48192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1fcb1256ecf5100000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T01:57:24.000Z'}}, {'blockNum': '0xadcb60', 'uniqueId': '0xff442cb35ba290ab7203330e9a35771482da546a239d8ab5350d179c7c4879be:log:270', 'hash': '0xff442cb35ba290ab7203330e9a35771482da546a239d8ab5350d179c7c4879be', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xca9af520706a57cecde6f596852eabb5a0e6bb0e', 'value': 603.9461671500414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x20bd6fcf2dd4e90c54', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:01:42.000Z'}}, {'blockNum': '0xadcb60', 'uniqueId': '0xff442cb35ba290ab7203330e9a35771482da546a239d8ab5350d179c7c4879be:log:304', 'hash': '0xff442cb35ba290ab7203330e9a35771482da546a239d8ab5350d179c7c4879be', 'from': '0xca9af520706a57cecde6f596852eabb5a0e6bb0e', 'to': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'value': 603.9461671500414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x20bd6fcf2dd4e90c54', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:01:42.000Z'}}, {'blockNum': '0xadcb60', 'uniqueId': '0xff442cb35ba290ab7203330e9a35771482da546a239d8ab5350d179c7c4879be:log:308', 'hash': '0xff442cb35ba290ab7203330e9a35771482da546a239d8ab5350d179c7c4879be', 'from': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'to': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'value': 603.9461671500414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x20bd6fcf2dd4e90c54', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:01:42.000Z'}}, {'blockNum': '0xadcba5', 'uniqueId': '0x0b5f65f3e8b6012a8a77422ce9f670f02b89271638c90a21464f25c8c13fa8f6:log:30', 'hash': '0x0b5f65f3e8b6012a8a77422ce9f670f02b89271638c90a21464f25c8c13fa8f6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x306d55cb0b6b115fb9e47e638e137b6b2c9f14f4', 'value': 1300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x46791fc84e07d00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:14:21.000Z'}}, {'blockNum': '0xadcbc3', 'uniqueId': '0x0831ea9bb4758cbf4a98a546b94bececc283ca8f87ea7b4c8f2a4eaf950bb670:log:121', 'hash': '0x0831ea9bb4758cbf4a98a546b94bececc283ca8f87ea7b4c8f2a4eaf950bb670', 'from': '0x306d55cb0b6b115fb9e47e638e137b6b2c9f14f4', 'to': '0x444a5e0d2515f322e7278f6ee95cb34d8de98f09', 'value': 1300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x46791fc84e07d00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:20:19.000Z'}}, {'blockNum': '0xadcbd2', 'uniqueId': '0xa279f408d243b29ff0e376c6ee8c611e0620d0435b6de7c52bc222156ea1ea6f:log:145', 'hash': '0xa279f408d243b29ff0e376c6ee8c611e0620d0435b6de7c52bc222156ea1ea6f', 'from': '0x444a5e0d2515f322e7278f6ee95cb34d8de98f09', 'to': '0xf43a28ceea7080ef2d9972e92f7d52af203763c4', 'value': 1376.76394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x4aa2701505a3364000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:24:09.000Z'}}, {'blockNum': '0xadcc68', 'uniqueId': '0xe8b8768ed4df2772110527c717ccff75c9dff6a69df95f4f90d00d8982af39d2:log:168', 'hash': '0xe8b8768ed4df2772110527c717ccff75c9dff6a69df95f4f90d00d8982af39d2', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 15473.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0346d831d47fcbc30000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:58:19.000Z'}}, {'blockNum': '0xadcc6b', 'uniqueId': '0xdc2fd943fe1be2bcb0d6961b6e110a030a4f7eac95bcb4a16fb7e7dd6cc7c673:log:8', 'hash': '0xdc2fd943fe1be2bcb0d6961b6e110a030a4f7eac95bcb4a16fb7e7dd6cc7c673', 'from': '0xf43a28ceea7080ef2d9972e92f7d52af203763c4', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 1376.76394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x4aa2701505a3364000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:58:31.000Z'}}, {'blockNum': '0xadcff1', 'uniqueId': '0x1064dc9e3e4bde249db0d32ed26f842f7f6722137f2cd167a423bd12aca106ea:log:139', 'hash': '0x1064dc9e3e4bde249db0d32ed26f842f7f6722137f2cd167a423bd12aca106ea', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xe6ebea9bb68b98196af4ad072bfb8436c566fe1a', 'value': 32, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01bc16d674ec800000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:17:04.000Z'}}, {'blockNum': '0xadd055', 'uniqueId': '0x3a7e9c395873093953edaf5a350d93d740d0a47e1149188e2fd7e2271e06b905:log:98', 'hash': '0x3a7e9c395873093953edaf5a350d93d740d0a47e1149188e2fd7e2271e06b905', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0xf63a7b334cc687700d8bc5031ba52d26bd77411a', 'value': 821.675660071205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2c8b0a5b6918cb47ed', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:39:56.000Z'}}, {'blockNum': '0xadd057', 'uniqueId': '0x58a3c36793b8917dc4998e294d91168dc2f819120ef039751e133119f6f84914:log:118', 'hash': '0x58a3c36793b8917dc4998e294d91168dc2f819120ef039751e133119f6f84914', 'from': '0x607e0591d76eb0ba42f3510e57a82cc7dada6763', 'to': '0x137b4b67380f0f14321c413278fc2393c822cb55', 'value': 586.48192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1fcb1256ecf5100000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:40:20.000Z'}}, {'blockNum': '0xadd05a', 'uniqueId': '0xcf48e56dbe0ed6222660febd82b6375e78da6de82aa4b773092bc8edbfffefc9:log:175', 'hash': '0xcf48e56dbe0ed6222660febd82b6375e78da6de82aa4b773092bc8edbfffefc9', 'from': '0xf63a7b334cc687700d8bc5031ba52d26bd77411a', 'to': '0x757f6a0e982969a69d99e38cdce55c2333b30654', 'value': 821.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2c8af63f9b13370000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:41:00.000Z'}}, {'blockNum': '0xadd05d', 'uniqueId': '0xd7c5c69175d21c5bc40e507c2917bdd4f11e666d67852609a4981075c3402c76:log:30', 'hash': '0xd7c5c69175d21c5bc40e507c2917bdd4f11e666d67852609a4981075c3402c76', 'from': '0x757f6a0e982969a69d99e38cdce55c2333b30654', 'to': '0xabfd88db78d2503af372cb9c21cdc2f181232b4f', 'value': 821.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2c8af63f9b13370000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:41:24.000Z'}}, {'blockNum': '0xadd07a', 'uniqueId': '0xf20db87fd893aecbc17ee704414b983d19f86cf6a969e4a511c38111b7d910d9:log:203', 'hash': '0xf20db87fd893aecbc17ee704414b983d19f86cf6a969e4a511c38111b7d910d9', 'from': '0xd495826cabb093e7dca498d1a98e4dc55e0c29db', 'to': '0xcbb3f70eaa5554df93c960a593a2b5fc42b69c7a', 'value': 95.08196721311475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x052787016a1b0b0432', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:46:53.000Z'}}, {'blockNum': '0xadd0bd', 'uniqueId': '0x6c8887fefcf4854805cafd8adc26d0fd157e2e7359ee444701a534152420499c:log:77', 'hash': '0x6c8887fefcf4854805cafd8adc26d0fd157e2e7359ee444701a534152420499c', 'from': '0xea8ddc2f50626f1f8f8c11242d1876710d65ff44', 'to': '0xd32b219fb28454484fb86d22a4c13a197195fc73', 'value': 2.1716087440667198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1e231aa5a53a9fb8', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:59:32.000Z'}}, {'blockNum': '0xadd0bd', 'uniqueId': '0x6c8887fefcf4854805cafd8adc26d0fd157e2e7359ee444701a534152420499c:log:82', 'hash': '0x6c8887fefcf4854805cafd8adc26d0fd157e2e7359ee444701a534152420499c', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'value': 1520.4461795407888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x526c6df09f8c82b9b2', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:59:32.000Z'}}, {'blockNum': '0xadd0bd', 'uniqueId': '0x6c8887fefcf4854805cafd8adc26d0fd157e2e7359ee444701a534152420499c:log:88', 'hash': '0x6c8887fefcf4854805cafd8adc26d0fd157e2e7359ee444701a534152420499c', 'from': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'to': '0xd32b219fb28454484fb86d22a4c13a197195fc73', 'value': 1520.4461795407888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x526c6df09f8c82b9b2', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:59:32.000Z'}}, {'blockNum': '0xadd0ee', 'uniqueId': '0xa48a87e64b68ae3932548273f04ae3ae55fdd628a9a6115a0b415377918b8090:log:158', 'hash': '0xa48a87e64b68ae3932548273f04ae3ae55fdd628a9a6115a0b415377918b8090', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'value': 20.020028473701352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0115d56dd3802cc578', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:12:19.000Z'}}, {'blockNum': '0xadd0ee', 'uniqueId': '0xa48a87e64b68ae3932548273f04ae3ae55fdd628a9a6115a0b415377918b8090:log:162', 'hash': '0xa48a87e64b68ae3932548273f04ae3ae55fdd628a9a6115a0b415377918b8090', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x2a24a7a4beb9e6d0431c9bc1800045b8fc27a966', 'value': 0.02002002847370135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x47201c1d9173e8', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:12:19.000Z'}}, {'blockNum': '0xadd0ee', 'uniqueId': '0xa48a87e64b68ae3932548273f04ae3ae55fdd628a9a6115a0b415377918b8090:log:165', 'hash': '0xa48a87e64b68ae3932548273f04ae3ae55fdd628a9a6115a0b415377918b8090', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x4d2cc143027f42da5905bd106f3db8e0f5bc076f', 'value': 20.000008445227653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01158e4db7629b5190', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:12:19.000Z'}}, {'blockNum': '0xadd0f2', 'uniqueId': '0xe3f247223342ea354f14169d99ed106cd116aac2c18be658d2f851dfebb5b691:log:34', 'hash': '0xe3f247223342ea354f14169d99ed106cd116aac2c18be658d2f851dfebb5b691', 'from': '0x4d2cc143027f42da5905bd106f3db8e0f5bc076f', 'to': '0x99dec4a119f5e2b45808b04a3efa3f88cff62494', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01158e460913d00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:13:27.000Z'}}, {'blockNum': '0xadd0f2', 'uniqueId': '0xe3f247223342ea354f14169d99ed106cd116aac2c18be658d2f851dfebb5b691:log:37', 'hash': '0xe3f247223342ea354f14169d99ed106cd116aac2c18be658d2f851dfebb5b691', 'from': '0x99dec4a119f5e2b45808b04a3efa3f88cff62494', 'to': '0x0000000000000000000000000000000000000000', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01158e460913d00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:13:27.000Z'}}, {'blockNum': '0xadd16a', 'uniqueId': '0xa6283a572a13d57851ce83b8b618b9d616b26d91395a80e58d724d38548b998d:log:162', 'hash': '0xa6283a572a13d57851ce83b8b618b9d616b26d91395a80e58d724d38548b998d', 'from': '0x142aa41e242f19451d9ea6a8e7dff7da661857db', 'to': '0xe173e352cebd8c23e04a6fe7ba670bb22cc61add', 'value': 8.39344262295082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x747b7f985f9b4758', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:40:21.000Z'}}, {'blockNum': '0xadd1a5', 'uniqueId': '0x4bd2d537bffa4caf788decfe6ee7ccad0a1e2a3849be3fe01636947bee08ec03:log:148', 'hash': '0x4bd2d537bffa4caf788decfe6ee7ccad0a1e2a3849be3fe01636947bee08ec03', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'value': 1.0933046720471544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0f2c32ce80a5449a', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:54:07.000Z'}}, {'blockNum': '0xadd1a5', 'uniqueId': '0x4bd2d537bffa4caf788decfe6ee7ccad0a1e2a3849be3fe01636947bee08ec03:log:150', 'hash': '0x4bd2d537bffa4caf788decfe6ee7ccad0a1e2a3849be3fe01636947bee08ec03', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0x9424b1412450d0f8fc2255faf6046b98213b76bd', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:54:07.000Z'}}, {'blockNum': '0xadd1a5', 'uniqueId': '0x4bd2d537bffa4caf788decfe6ee7ccad0a1e2a3849be3fe01636947bee08ec03:log:152', 'hash': '0x4bd2d537bffa4caf788decfe6ee7ccad0a1e2a3849be3fe01636947bee08ec03', 'from': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'to': '0x75559167905e8a1471c42d22b8cd1892e8df5634', 'value': 1.0933046720471544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0f2c32ce80a5449a', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:54:07.000Z'}}, {'blockNum': '0xadd1b6', 'uniqueId': '0x003ea04540e8e78a4bd604e8105e618469fb89d0d55faa2fab5f82431ad9f2a2:log:247', 'hash': '0x003ea04540e8e78a4bd604e8105e618469fb89d0d55faa2fab5f82431ad9f2a2', 'from': '0x142aa41e242f19451d9ea6a8e7dff7da661857db', 'to': '0x841a465f81d2b77b6952a11c893404591976a93d', 'value': 45.90163934426229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x027d0361c94ad92e2a', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:56:48.000Z'}}, {'blockNum': '0xadd21e', 'uniqueId': '0x850f214d9fc994af86a26942962c22f487e504a4bc9dd9ea68738d62d1ba7cce:log:6', 'hash': '0x850f214d9fc994af86a26942962c22f487e504a4bc9dd9ea68738d62d1ba7cce', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x66774e6456b06e0f9c0ebc6647c3bd83ab41e991', 'value': 988.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x359d21d40b59481c00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T08:19:15.000Z'}}, {'blockNum': '0xadd26a', 'uniqueId': '0x17beb84a7171c5a98cf9ac418dc61e11a920c07bded3b91fc77dea1d12b23b0e:log:95', 'hash': '0x17beb84a7171c5a98cf9ac418dc61e11a920c07bded3b91fc77dea1d12b23b0e', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'value': 430.35206373961114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x175455a9de43c9865d', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T08:35:59.000Z'}}, {'blockNum': '0xadd26a', 'uniqueId': '0x17beb84a7171c5a98cf9ac418dc61e11a920c07bded3b91fc77dea1d12b23b0e:log:99', 'hash': '0x17beb84a7171c5a98cf9ac418dc61e11a920c07bded3b91fc77dea1d12b23b0e', 'from': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 430.35206373961114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x175455a9de43c9865d', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T08:35:59.000Z'}}, {'blockNum': '0xadd379', 'uniqueId': '0xff5dfedb86562ea16090c3d7b894ce138b70208945dff578ae0f9ef28558b568:log:227', 'hash': '0xff5dfedb86562ea16090c3d7b894ce138b70208945dff578ae0f9ef28558b568', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x89fd69fb01792c6127ec440509f491a6c364150f', 'value': 6389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x015a592fb1a092b40000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T09:37:21.000Z'}}, {'blockNum': '0xadd3c7', 'uniqueId': '0x11b7c57a68ae8ce1a54d63668dbe2ef49d979199aed13535317b17ccbd8bcd5c:log:173', 'hash': '0x11b7c57a68ae8ce1a54d63668dbe2ef49d979199aed13535317b17ccbd8bcd5c', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0x5c92f30bf7d3ae7051753600d4b1203f6b78efa7', 'value': 233.15705400710928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0ca3b4414cea50eb3d', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T09:55:16.000Z'}}, {'blockNum': '0xadd3d0', 'uniqueId': '0x2b6f09a3f483a7c3c4fdcdd4886ed9592a81e838fca784383e520935aac235f5:log:7', 'hash': '0x2b6f09a3f483a7c3c4fdcdd4886ed9592a81e838fca784383e520935aac235f5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x919d8ce0dba4e3aede19dcd019cecff9e640f588', 'value': 997.9947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x3619f56c0c2688c000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T09:57:56.000Z'}}]}}
Number of returned transfers: 214
Answer is complete
symbol DLT
group BPS
date 2020-12-26
hour 21:00
exchange binance
Name: 314, dtype: object
HERE
Symbol: DLT, Contract: 0x07e3c70653548b04f0a75970c1f81b4cbbfb606f
Datetime timestamps: 2020-12-26 21:00:00 2020-12-26 09:00:00 2020-12-27 09:00:00
Unix timestamps: 1608969600.0 1609056000.0
Hex Block Numbers: 0xafe799 0xb00113
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xafebb4', 'uniqueId': '0x741b9990d1867021bbcc3c19240b5d60132f796bed66d68b984b4b464cd9b4e2:log:0', 'hash': '0x741b9990d1867021bbcc3c19240b5d60132f796bed66d68b984b4b464cd9b4e2', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0x5ca51af7787d547b23328ca30eb4dae4e41bc4a6', 'value': 1820.53539418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x62b100ff6594a62800', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T11:47:40.000Z'}}, {'blockNum': '0xaff418', 'uniqueId': '0xd48a3fc8005188276011e9f88f3a96c0a9f2b99f01747179971f53fc1121eaa2:log:52', 'hash': '0xd48a3fc8005188276011e9f88f3a96c0a9f2b99f01747179971f53fc1121eaa2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x39e1fc43f1f85dd5442d4a2d2f25ef6704cf96af', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xbdbc41e0348b300000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T19:45:32.000Z'}}, {'blockNum': '0xaff43c', 'uniqueId': '0x76d7feeb0d1a14f247358f62d4ca57b740c6aae3faccd2b2e4d08ca101b175db:log:60', 'hash': '0x76d7feeb0d1a14f247358f62d4ca57b740c6aae3faccd2b2e4d08ca101b175db', 'from': '0x39e1fc43f1f85dd5442d4a2d2f25ef6704cf96af', 'to': '0x9ce7456ec06b1457c91bd4619a08dbe8adc926fd', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xbdbc41e0348b300000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T19:53:55.000Z'}}, {'blockNum': '0xaff548', 'uniqueId': '0x046888b531880c0c9e8824a162337696a47b392f956fcebeeec563beb233815d:log:216', 'hash': '0x046888b531880c0c9e8824a162337696a47b392f956fcebeeec563beb233815d', 'from': '0xa5f09b4a58c8e84ee3250d3d5000747cac6589e2', 'to': '0x463f5d0c30cadc302ac8d6ce434f4a1c9dd27555', 'value': 4185.892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xe2eaebc431956a0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T20:54:35.000Z'}}, {'blockNum': '0xaff563', 'uniqueId': '0x8d583be9abe12e0fadc398caf325b0ff69a1853d3854580ef81dbb5f4664cc25:log:267', 'hash': '0x8d583be9abe12e0fadc398caf325b0ff69a1853d3854580ef81dbb5f4664cc25', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 1302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x4694e135b556980000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:01:00.000Z'}}, {'blockNum': '0xaff569', 'uniqueId': '0x74f869ea56858c12e3cda06e6eadaaa2723186ca89e26a7e88eaf4182141797a:log:1', 'hash': '0x74f869ea56858c12e3cda06e6eadaaa2723186ca89e26a7e88eaf4182141797a', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0xeaad46dd85845fff460ee002ae7a2b4fa8e16b3c', 'value': 7648.83369837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x019ea4e41b68e52c1400', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:02:54.000Z'}}, {'blockNum': '0xaff57c', 'uniqueId': '0xb6354259a92ffd86835c21ec919de0cf5974e5768ce0d2c08081d4f8c8ca96df:log:225', 'hash': '0xb6354259a92ffd86835c21ec919de0cf5974e5768ce0d2c08081d4f8c8ca96df', 'from': '0x2c529bfca95d8cce2c8fd87448115f0463c5d84c', 'to': '0xa9de49a9a3adb9d3964ef3e514d491fefb993873', 'value': 18010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x03d052f55aee31280000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:07:18.000Z'}}, {'blockNum': '0xaff57f', 'uniqueId': '0x2664195eb274f7f8cd8939b3928028c449e90d6ff6c078640805fa47c6b2542e:log:106', 'hash': '0x2664195eb274f7f8cd8939b3928028c449e90d6ff6c078640805fa47c6b2542e', 'from': '0x9ce7456ec06b1457c91bd4619a08dbe8adc926fd', 'to': '0x605e0ebb227fcacaa43b1480db3c0df8b044c10a', 'value': 12655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x02ae07679aefb85c0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:07:41.000Z'}}, {'blockNum': '0xaff580', 'uniqueId': '0x5aee95392cb6396a1f303a548cabd186b58c974831d98d0807cb64e18089bc06:log:8', 'hash': '0x5aee95392cb6396a1f303a548cabd186b58c974831d98d0807cb64e18089bc06', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0x287e6d4dd4d57ede08b9353e13d51d9f7f1f95fa', 'value': 14380.459167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x030b90f5fd72ccc4f000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:07:58.000Z'}}, {'blockNum': '0xaff580', 'uniqueId': '0x4ef055bd7ee8548f9b09c7d3e73875e6299695ee4f4ffe5b3b436ffa9d6ab612:log:149', 'hash': '0x4ef055bd7ee8548f9b09c7d3e73875e6299695ee4f4ffe5b3b436ffa9d6ab612', 'from': '0x787c87ff468db69e29305a263f5315ef30a48cf7', 'to': '0xe431fda6e29b2d1b6ef5105dd01b8531a0b8c3fb', 'value': 1651.0324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x5980ad644164a50000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:07:58.000Z'}}, {'blockNum': '0xaff589', 'uniqueId': '0xbdacda543704900db404424f997c0f8089b1139162b092dc20403c23f2c25a3e:log:244', 'hash': '0xbdacda543704900db404424f997c0f8089b1139162b092dc20403c23f2c25a3e', 'from': '0xdd701212f6fe99e550ae650a13990de34816ed7f', 'to': '0x1fc0fbafe0170a1afcbb546f7330e4c8fcc70dd5', 'value': 1310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x4703e6eb5291b80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:09:05.000Z'}}, {'blockNum': '0xaff58a', 'uniqueId': '0xfd1c847b831e1a457620706997d6d795c7dabfc633b03075e1e0b4f4e9269d23:log:294', 'hash': '0xfd1c847b831e1a457620706997d6d795c7dabfc633b03075e1e0b4f4e9269d23', 'from': '0x1a19564d2358e6fe30ab78ead75c37b771973f2c', 'to': '0x7159ec883c7b9f5ee88241c4d5e203a2a9a38f4a', 'value': 2929.731, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x9ed22f661eb1f38000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:09:26.000Z'}}, {'blockNum': '0xaff58c', 'uniqueId': '0x1971f858a1b1fca5136112906616fe4fa8cdee889aac21314fc95c91da280e06:log:198', 'hash': '0x1971f858a1b1fca5136112906616fe4fa8cdee889aac21314fc95c91da280e06', 'from': '0x1fc0fbafe0170a1afcbb546f7330e4c8fcc70dd5', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x4703e6eb5291b80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:10:13.000Z'}}, {'blockNum': '0xaff58d', 'uniqueId': '0xa27740d08de8670cc7b58a4ca6c39795cc35b91137d5905badc900b45a3f49d0:log:305', 'hash': '0xa27740d08de8670cc7b58a4ca6c39795cc35b91137d5905badc900b45a3f49d0', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xf7e68bef461390d8def9b9e6a093245c92466ea0', 'value': 1172.966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x3f962c5a5c1ad70000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:10:35.000Z'}}, {'blockNum': '0xaff595', 'uniqueId': '0xf9044bc04c8859206dc83641ad258bb49427740aa5486278cb75c81575e7a76d:log:113', 'hash': '0xf9044bc04c8859206dc83641ad258bb49427740aa5486278cb75c81575e7a76d', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xfe2da586531d5ce345c9110bb65d423ec8827165', 'value': 772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x29d9a6f5c4c9900000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:11:46.000Z'}}, {'blockNum': '0xaff5b5', 'uniqueId': '0x450fe96ec083a0a24211c53ae6491201f438d3afa60da8f661160b6a4d70724f:log:15', 'hash': '0x450fe96ec083a0a24211c53ae6491201f438d3afa60da8f661160b6a4d70724f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 13959, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x02f4b80a3e0c5dbc0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:18:23.000Z'}}, {'blockNum': '0xaff5b5', 'uniqueId': '0xa311167c65b147d51a99c7f0bfb079e815b827bb304bbc7ae085ffe9a3cc664d:log:17', 'hash': '0xa311167c65b147d51a99c7f0bfb079e815b827bb304bbc7ae085ffe9a3cc664d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8beb76d8c49016f8612ff9c7b1e0eafdcd25dad0', 'value': 2241.625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x7984cbccdc9b028000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:18:23.000Z'}}, {'blockNum': '0xaff5cc', 'uniqueId': '0x21e2a392a92d851f892823791319d673cc5c7bc3f93486004af903f4722fafd3:log:184', 'hash': '0x21e2a392a92d851f892823791319d673cc5c7bc3f93486004af903f4722fafd3', 'from': '0x81c9b436543df12d5c59c2797ea74a2f4c6e77e1', 'to': '0x761d44af7d6dab2666e0b14d597d83e48b8eb18e', 'value': 1339.806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x48a18b1a6751030000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:23:14.000Z'}}, {'blockNum': '0xaff5d0', 'uniqueId': '0xd2a0c87360813f80f4cd8d3fec13a55fe807d1791aec54bb7b0cb2b72dc96985:log:18', 'hash': '0xd2a0c87360813f80f4cd8d3fec13a55fe807d1791aec54bb7b0cb2b72dc96985', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1931ed5d0e15450a31a5a922f742e5e59c92c8d1', 'value': 1263.604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x44800737239ab20000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:24:03.000Z'}}, {'blockNum': '0xaff5d1', 'uniqueId': '0xc1cb4d6e62d3104277614ab829b17d50e70928c0d020b275e209e4609db21061:log:21', 'hash': '0xc1cb4d6e62d3104277614ab829b17d50e70928c0d020b275e209e4609db21061', 'from': '0x54a6cf34c1733cf7483f96efd9bffce81eac2874', 'to': '0x1cd27e8beaf4029eaad08e77050a3fcc383078dc', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:24:24.000Z'}}, {'blockNum': '0xaff5d1', 'uniqueId': '0x363f7efda790fb32d7aa4768aa13be234a23fe4da3854bb5eb2fe00dadac2538:log:273', 'hash': '0x363f7efda790fb32d7aa4768aa13be234a23fe4da3854bb5eb2fe00dadac2538', 'from': '0xe5dbfeb3777df64bb6a4c54e1a4f2394eabf9409', 'to': '0x90735a8768a33d1a71f60c754921b77446e43faf', 'value': 2850, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x9a7fb1fc0d87480000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:24:24.000Z'}}, {'blockNum': '0xaff5f2', 'uniqueId': '0x6f97dcc4676c6706e1c5225f95eb7f85bcb5594a4a2d42b51e563f0343228b3d:log:13', 'hash': '0x6f97dcc4676c6706e1c5225f95eb7f85bcb5594a4a2d42b51e563f0343228b3d', 'from': '0x1d035c78958af98a7e2f9d86abeb175ab713e41a', 'to': '0xaa56ecc5122a1cd97b12287afc7c62c5fa1b6755', 'value': 551.421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1de480edf242ac8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:30:02.000Z'}}, {'blockNum': '0xaff613', 'uniqueId': '0x81836b53db5f9219c96a7fb62b07268478b6ebf487a2d63eab29b99eb5755d0a:log:326', 'hash': '0x81836b53db5f9219c96a7fb62b07268478b6ebf487a2d63eab29b99eb5755d0a', 'from': '0x9930eda98d5b95d3b3a48c3032460375a5a7b506', 'to': '0xfe8cebba2f585688d8a3571198f32ef5144ed317', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:38:05.000Z'}}, {'blockNum': '0xaff617', 'uniqueId': '0x5aa10e84c5d61ad16e910b41bce220912d0f8f20c5ed0c151ab5e2cd11a59d71:log:85', 'hash': '0x5aa10e84c5d61ad16e910b41bce220912d0f8f20c5ed0c151ab5e2cd11a59d71', 'from': '0x1b0fa0ee9a1c2f211c072b3cfd973cbc1bf0f8a9', 'to': '0xeca95e89f92e31749ca1d6eaecdc57dfb3eb1674', 'value': 5492.475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0129bf67101ec99f8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:38:50.000Z'}}, {'blockNum': '0xaff631', 'uniqueId': '0x84b7a468d2f12a8797e6cfbe4cb7af50cbc40c5b458a64bd9eedbcb803a9481f:log:39', 'hash': '0x84b7a468d2f12a8797e6cfbe4cb7af50cbc40c5b458a64bd9eedbcb803a9481f', 'from': '0x753328fbeaacd9ca88d64c6b587e0bc0d98da6be', 'to': '0xa5ba8159ac80b4a955c9fab0ab1fe1b7a8f3e903', 'value': 4900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0109a12906aff6100000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:42:14.000Z'}}, {'blockNum': '0xaff655', 'uniqueId': '0xc829a0df860aecdf9ea29defd65b637868ff3cd02cea4447b2a930ea1d63f65c:log:111', 'hash': '0xc829a0df860aecdf9ea29defd65b637868ff3cd02cea4447b2a930ea1d63f65c', 'from': '0x1c05602f5445b5ff22d1eb9c59d19f7553a82b4c', 'to': '0x92744df2f0b8d25a05836a2fe51d25702576e4ea', 'value': 1788.0788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x60ee9402f3d6bd0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:49:35.000Z'}}, {'blockNum': '0xaff65e', 'uniqueId': '0xe2a5cbe91df3da3f9b1913e66406f232eff39965f883b4ffbabe9f60b263b7b4:log:293', 'hash': '0xe2a5cbe91df3da3f9b1913e66406f232eff39965f883b4ffbabe9f60b263b7b4', 'from': '0x9930eda98d5b95d3b3a48c3032460375a5a7b506', 'to': '0x128dfab0ce72f8beb487e79f81e68287fb042270', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:52:15.000Z'}}, {'blockNum': '0xaff667', 'uniqueId': '0xb9ab7f26ab52b6cea9fd166098e167cdb87e966a4c7e26f62c8d6c3c8e5b9320:log:254', 'hash': '0xb9ab7f26ab52b6cea9fd166098e167cdb87e966a4c7e26f62c8d6c3c8e5b9320', 'from': '0x128dfab0ce72f8beb487e79f81e68287fb042270', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:55:07.000Z'}}, {'blockNum': '0xaff66f', 'uniqueId': '0x8f399890ccfd54742d4348e744f62fc40726bf13b22eee92954163585a52deb8:log:172', 'hash': '0x8f399890ccfd54742d4348e744f62fc40726bf13b22eee92954163585a52deb8', 'from': '0x9f158387d4265cd9e515b53c241ff0c7697bea6a', 'to': '0x3bbc15f8e5bb6c1a473ca987f9ae1abecb64660e', 'value': 3846.1538461538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xd0801b6147cba72200', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:56:30.000Z'}}, {'blockNum': '0xaff6bd', 'uniqueId': '0x11d3b960634025c13d04c094fd7920a9c82269863b30234d89e5a9d6ec7f736f:log:2', 'hash': '0x11d3b960634025c13d04c094fd7920a9c82269863b30234d89e5a9d6ec7f736f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 5818.045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x013b65980e2d2d8c8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:13:11.000Z'}}, {'blockNum': '0xaff6cb', 'uniqueId': '0x6737a8e368782eb93dc996815c3854e7217a7e323ecb9fca70a14555cc03c809:log:8', 'hash': '0x6737a8e368782eb93dc996815c3854e7217a7e323ecb9fca70a14555cc03c809', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe94c2c237076cfe280d84e28b8a4ac15acfdb35c', 'value': 412.456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x165bfa12b6e6840000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:16:32.000Z'}}, {'blockNum': '0xaff6de', 'uniqueId': '0xfc68e02da95673e4dd7f9cea070590cb437bc69a4dfb028f5851ef35627e5b48:log:139', 'hash': '0xfc68e02da95673e4dd7f9cea070590cb437bc69a4dfb028f5851ef35627e5b48', 'from': '0xb5fecdf757d13d4ec3724a7b461c5b61c7a3b364', 'to': '0x2c8c81eeee09581bcbcf09dec3ce3b72e31b41e6', 'value': 6419.431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x015bff8052e59a9d8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:20:23.000Z'}}, {'blockNum': '0xaff6fa', 'uniqueId': '0x7412f25a1a807beb73613016791649f4dc100873836c9c6da029e85bd396125e:log:20', 'hash': '0x7412f25a1a807beb73613016791649f4dc100873836c9c6da029e85bd396125e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5c02af0f4a2da2959941289038ee1cd10fc5ce15', 'value': 15352.70699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0340459c2a5cf1079c00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:24:20.000Z'}}, {'blockNum': '0xaff6ff', 'uniqueId': '0x05544d653bf566544c687cd9ba071f2bf31234be220222ea0ef5fc5d8bb81f28:log:92', 'hash': '0x05544d653bf566544c687cd9ba071f2bf31234be220222ea0ef5fc5d8bb81f28', 'from': '0x149e0caaa66c66f36ed689f17623efc7b90779aa', 'to': '0x7b06f7d399084c73b4e31b40c21501745c846fd2', 'value': 10375.284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x023271fd6363b1f20000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:25:24.000Z'}}, {'blockNum': '0xaff702', 'uniqueId': '0xf59cdd72c259eff081b38ee8aefc8081e34339af209071a48da4637478019fe6:log:128', 'hash': '0xf59cdd72c259eff081b38ee8aefc8081e34339af209071a48da4637478019fe6', 'from': '0xea075c1d004d56b5e7643e1b2a4656ef72af1af1', 'to': '0xd001286827be9f2b4321f3e34de2af60959b8344', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:26:10.000Z'}}, {'blockNum': '0xaff70c', 'uniqueId': '0xcb1bd28f6d0ce8304aec4c92594e4108f0aebfa7ae0c09056beaf0074f3d8ea4:log:166', 'hash': '0xcb1bd28f6d0ce8304aec4c92594e4108f0aebfa7ae0c09056beaf0074f3d8ea4', 'from': '0x7b06f7d399084c73b4e31b40c21501745c846fd2', 'to': '0x2fd44501a7193910af2f420a8f5ced77f9655d8b', 'value': 10375.284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x023271fd6363b1f20000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:28:09.000Z'}}, {'blockNum': '0xaff734', 'uniqueId': '0x4f7600d21bb9a7d4b0b1582b59643a82c1c864d55ec908a9b68ee2b2d0b8e61d:log:79', 'hash': '0x4f7600d21bb9a7d4b0b1582b59643a82c1c864d55ec908a9b68ee2b2d0b8e61d', 'from': '0xea075c1d004d56b5e7643e1b2a4656ef72af1af1', 'to': '0xd001286827be9f2b4321f3e34de2af60959b8344', 'value': 9554.5403505292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0205f3e232ae95310c00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:38:32.000Z'}}, {'blockNum': '0xaff754', 'uniqueId': '0x064bcaec36703118b15d6bde078266d57bf129efa223148446e589ace0ec830e:log:290', 'hash': '0x064bcaec36703118b15d6bde078266d57bf129efa223148446e589ace0ec830e', 'from': '0x4ffb72b66eba24521736924f87dfe10677d82286', 'to': '0xd1226edbaaa328b9122c7b2067e5c7cec792d8be', 'value': 1899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x66f1eb46aab2cc0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:45:38.000Z'}}, {'blockNum': '0xaff763', 'uniqueId': '0xe85c6f0e20fb72b3f7b0847524b6c1da46c5336e2d1591c2b75ce9d1a1eeeb4f:log:50', 'hash': '0xe85c6f0e20fb72b3f7b0847524b6c1da46c5336e2d1591c2b75ce9d1a1eeeb4f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 7250.611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01890e70e11dd3cb8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:48:46.000Z'}}, {'blockNum': '0xaff768', 'uniqueId': '0x9cfbfae74e3dafe62435625c8af4d288fbd8c10c7fd3df6757907bd842bd2abc:log:17', 'hash': '0x9cfbfae74e3dafe62435625c8af4d288fbd8c10c7fd3df6757907bd842bd2abc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 190658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x285f9744929f79c80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:50:12.000Z'}}, {'blockNum': '0xaff781', 'uniqueId': '0x42e36af6b5acefa76b320cdaf391e56039f2e0b28ea7a51f0cacb4b1e977385b:log:4', 'hash': '0x42e36af6b5acefa76b320cdaf391e56039f2e0b28ea7a51f0cacb4b1e977385b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x85aa1e68eefe8171b0cb677599fe2dee2b4b7288', 'value': 2711.155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x92f8d5742f682b8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:56:13.000Z'}}, {'blockNum': '0xaff7ac', 'uniqueId': '0x124cda6871e34bced7da8d6a09cc796960935e9225b55280aa9ddd2533985dec:log:53', 'hash': '0x124cda6871e34bced7da8d6a09cc796960935e9225b55280aa9ddd2533985dec', 'from': '0xbb9e54a8550f43609ccb42c3c14030d636a24025', 'to': '0xb1cb24eb8150c34e4766d7b493094365d3c3e85b', 'value': 227.80297090909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0c5966bb1706f42c80', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T23:07:23.000Z'}}, {'blockNum': '0xaff7db', 'uniqueId': '0x163b23237f3febe4577305fd415db2195ddce1c47f96ecc0afbc9b9d1a6912d1:log:233', 'hash': '0x163b23237f3febe4577305fd415db2195ddce1c47f96ecc0afbc9b9d1a6912d1', 'from': '0x85aa1e68eefe8171b0cb677599fe2dee2b4b7288', 'to': '0x55dd02d2965e3eb261b4a063a484de0a265de7a4', 'value': 2711.155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x92f8d5742f682b8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T23:18:31.000Z'}}, {'blockNum': '0xaff821', 'uniqueId': '0x5b097be9e23ab8054190d3d539389582c8c7262862a48ee9adc815b17d04c562:log:2', 'hash': '0x5b097be9e23ab8054190d3d539389582c8c7262862a48ee9adc815b17d04c562', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x93c541f45db0b8edab35928b7f6f92f37086eaa4', 'value': 9249.755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01f56e231d32994f8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T23:30:33.000Z'}}, {'blockNum': '0xaff86f', 'uniqueId': '0x811c1ecf3e61708c9452365c744e062330e612045ca8dab8f93c7405e1a661a2:log:3', 'hash': '0x811c1ecf3e61708c9452365c744e062330e612045ca8dab8f93c7405e1a661a2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 9304.555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01f866a3d2dad4b78000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T23:48:01.000Z'}}, {'blockNum': '0xaff87d', 'uniqueId': '0x9d49ced48b98a746d60e9d42e28870111f8eb14c48321db32228b77f9b9aa5f3:log:260', 'hash': '0x9d49ced48b98a746d60e9d42e28870111f8eb14c48321db32228b77f9b9aa5f3', 'from': '0x6d7dd712c2b1d04aa8c636e7be92b3ac4cdc506b', 'to': '0xb4143cdc3bf6377c7cd2c629ceaa3ab30efb713a', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T23:50:48.000Z'}}, {'blockNum': '0xaff89d', 'uniqueId': '0x948f28df2f5c458c878392ab45fa77194cf4c3150b9ea03e1e91ff833e92b4e9:log:144', 'hash': '0x948f28df2f5c458c878392ab45fa77194cf4c3150b9ea03e1e91ff833e92b4e9', 'from': '0xa9edadfe5bce820650d86671261eeaccece2f80b', 'to': '0x91ee5c39b2df87f507107828ab0fc7b8af1b0d3f', 'value': 1186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x404b0e6c4d7d480000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T23:57:28.000Z'}}, {'blockNum': '0xaff911', 'uniqueId': '0xb7ab7388f19f78e412bf4184241082da165d9cb21ec2e0dfb4f1ddaeea8b0354:log:57', 'hash': '0xb7ab7388f19f78e412bf4184241082da165d9cb21ec2e0dfb4f1ddaeea8b0354', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 796.072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x2b27b7e23ad2c40000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T00:19:47.000Z'}}, {'blockNum': '0xaff937', 'uniqueId': '0x2f411971fc0a58f45e8c667f04f15d7f4575fedef366630c78bb60d6dec724e5:log:198', 'hash': '0x2f411971fc0a58f45e8c667f04f15d7f4575fedef366630c78bb60d6dec724e5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 1767.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x5fcb705780c0c60000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T00:28:32.000Z'}}, {'blockNum': '0xaff9bb', 'uniqueId': '0xe43863c4cce420a68ac77e5a771e1c48a572e8bf6e1ff1b6f84abaa56681f97e:log:195', 'hash': '0xe43863c4cce420a68ac77e5a771e1c48a572e8bf6e1ff1b6f84abaa56681f97e', 'from': '0xfccb8d2c00c329137236e76ae3c177cf2430701b', 'to': '0x37f763af58adc9636d9b2ff054df4c091f3d2ab6', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xbdbc41e0348b300000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T00:56:53.000Z'}}, {'blockNum': '0xaff9bd', 'uniqueId': '0x182655d26634578af1ea9d0621a6fe343d22ca26ece466fc1f10c4b75414f8c7:log:256', 'hash': '0x182655d26634578af1ea9d0621a6fe343d22ca26ece466fc1f10c4b75414f8c7', 'from': '0x37f763af58adc9636d9b2ff054df4c091f3d2ab6', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xbdbc41e0348b300000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T00:57:27.000Z'}}, {'blockNum': '0xaffa1f', 'uniqueId': '0xd7a614c37e80798531c035fd01035bdeaa61ed19a2c5038ab445737a20a2dbfd:log:161', 'hash': '0xd7a614c37e80798531c035fd01035bdeaa61ed19a2c5038ab445737a20a2dbfd', 'from': '0x6d0bfa463e0e900817ab0334b9b460f454209d86', 'to': '0x032d074590d74b66ce6714b5eeaaadde67645c7f', 'value': 8168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01bac9c55414cea00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T01:18:17.000Z'}}, {'blockNum': '0xaffaab', 'uniqueId': '0x32c40346ec80caefd6109b08f198f97567c1b832d051f80ad9047b259c198902:log:188', 'hash': '0x32c40346ec80caefd6109b08f198f97567c1b832d051f80ad9047b259c198902', 'from': '0x6d7dd712c2b1d04aa8c636e7be92b3ac4cdc506b', 'to': '0xb4143cdc3bf6377c7cd2c629ceaa3ab30efb713a', 'value': 30294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x066a3db42f8253980000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T01:49:14.000Z'}}, {'blockNum': '0xaffaf2', 'uniqueId': '0x58ebd7eebf85d5443fde6bf84e94c070cbc13ce7f2fe032d45ba271f79a8bb5a:log:23', 'hash': '0x58ebd7eebf85d5443fde6bf84e94c070cbc13ce7f2fe032d45ba271f79a8bb5a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x54fc6bcf943bbe0dac876953aa7f4ac1f0bdbfc8', 'value': 18401.528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x03e58c803c86b44c0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T02:07:02.000Z'}}, {'blockNum': '0xaffbf8', 'uniqueId': '0xd16d93935f0594fee03ff511a704e9379751382c654540257ec0c297f88a807f:log:0', 'hash': '0xd16d93935f0594fee03ff511a704e9379751382c654540257ec0c297f88a807f', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0xc6ea8d76c140bf42d27f18762d417169ab183907', 'value': 24, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x014d1120d7b1600000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T03:05:54.000Z'}}, {'blockNum': '0xaffc51', 'uniqueId': '0xc3bb0a3dcb908f5f0cec9f5973adb7b837609210d5b20e398d5a65f301e3c7f9:log:293', 'hash': '0xc3bb0a3dcb908f5f0cec9f5973adb7b837609210d5b20e398d5a65f301e3c7f9', 'from': '0xb0db5e93533a6905cc640c440b7b0f0f420b8308', 'to': '0x4956124cbe45f6addb87fd6a94f4985d527cbab0', 'value': 76657.2527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x103b99163f1e55e1c000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T03:23:53.000Z'}}, {'blockNum': '0xaffc78', 'uniqueId': '0xb1e745b2dcf6753358a2e220481ce6da142d23f4741f70be625d51626cc465a0:log:71', 'hash': '0xb1e745b2dcf6753358a2e220481ce6da142d23f4741f70be625d51626cc465a0', 'from': '0x57f41fd7f13f05984f7e82e55eb9db53219e3cbd', 'to': '0x4956124cbe45f6addb87fd6a94f4985d527cbab0', 'value': 238942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x3299125fd706eab80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T03:33:32.000Z'}}, {'blockNum': '0xafff41', 'uniqueId': '0x7323a6f5f2e3676101852511e7c7544e6124bd01168dbc50a0a0e958bfa06373:log:0', 'hash': '0x7323a6f5f2e3676101852511e7c7544e6124bd01168dbc50a0a0e958bfa06373', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 6650.291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01688353cdbf894b8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T06:16:28.000Z'}}, {'blockNum': '0xafff73', 'uniqueId': '0x5f45899f9440861357d4d9848bb9553d677bec50ef79f72b1607020bb09cc6da:log:298', 'hash': '0x5f45899f9440861357d4d9848bb9553d677bec50ef79f72b1607020bb09cc6da', 'from': '0xdb4bfbcf8485dc5cc3a3d929494acaa3d01887ca', 'to': '0x39773de84ed46ddb45b1d6c786199ff9e7576dd8', 'value': 536.38000769231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1d13c49722116db180', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T06:26:11.000Z'}}, {'blockNum': '0xb0006e', 'uniqueId': '0xc3dedac8c4bc018cabd001428eaf23c521460446d62e08b7be65170b6423f62b:log:159', 'hash': '0xc3dedac8c4bc018cabd001428eaf23c521460446d62e08b7be65170b6423f62b', 'from': '0x1aa6bbdb653b3ac6057a4aefa50bcc4077d55920', 'to': '0x76be5f4144e0e580b55895c55c7e9e5fc526e434', 'value': 547.52, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1dae5dcb1d5de00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T07:23:27.000Z'}}]}}
Number of returned transfers: 60
Answer is complete
symbol NEBL
group BPS
date 2021-01-02
hour 21:00
exchange binance
Name: 315, dtype: object
HERE
{}
No contract for ethereum specified
Symbol: NEBL, Contract:
Datetime timestamps: 2021-01-02 21:00:00 2021-01-02 09:00:00 2021-01-03 09:00:00
Unix timestamps: 1609574400.0 1609660800.0
Hex Block Numbers: 0xb09a05 0xb0b35c
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol EVX
group BPS
date 2021-01-09
hour 21:00
exchange binance
Name: 316, dtype: object
HERE
Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps: 2021-01-09 21:00:00 2021-01-09 09:00:00 2021-01-10 09:00:00
Unix timestamps: 1610179200.0 1610265600.0
Hex Block Numbers: 0xb14c3a 0xb16588
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xb14d1c', 'uniqueId': '0xa4674af2a28f9550b1c57ecc1fdb0672e60e5b834ac0f2f5aaeb2103248a251f:log:6', 'hash': '0xa4674af2a28f9550b1c57ecc1fdb0672e60e5b834ac0f2f5aaeb2103248a251f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xdd9e7f8f62d19c4838cac904473a1abd66d6ef4c', 'value': 99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0f1b30', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T08:47:54.000Z'}}, {'blockNum': '0xb14e9e', 'uniqueId': '0x3c839f4be8bfc289d0a0036e1a67e02b62afe20d2e873a97689f3470019a3ce2:log:247', 'hash': '0x3c839f4be8bfc289d0a0036e1a67e02b62afe20d2e873a97689f3470019a3ce2', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'value': 30256.8269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1208d34d', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T10:19:30.000Z'}}, {'blockNum': '0xb14ed7', 'uniqueId': '0xfe7d69f29b2ce597498f18d61bc829d3183d721ca455ed9d62d894711e220444:log:3', 'hash': '0xfe7d69f29b2ce597498f18d61bc829d3183d721ca455ed9d62d894711e220444', 'from': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30256.8269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1208d34d', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T10:30:32.000Z'}}, {'blockNum': '0xb14f0e', 'uniqueId': '0x07339679c8f082ae64ed5ecd73f54baa25c2e29e63a2fb64263a8736b377664a:log:40', 'hash': '0x07339679c8f082ae64ed5ecd73f54baa25c2e29e63a2fb64263a8736b377664a', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 24032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0e52fe00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T10:45:53.000Z'}}, {'blockNum': '0xb14f2f', 'uniqueId': '0x76b54247455a0a5ecb8744a8dcefa0ffb09049ca4f0b969c093080767d2a64c7:log:61', 'hash': '0x76b54247455a0a5ecb8744a8dcefa0ffb09049ca4f0b969c093080767d2a64c7', 'from': '0x00a44dac55183a0ba3ea487d1a796f94d71a76f9', 'to': '0xc0b7a17250862977e5e3eeede7989456ae9eb20f', 'value': 5750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x036d6160', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T10:52:54.000Z'}}, {'blockNum': '0xb14f4a', 'uniqueId': '0x076b9a1969503d94ab00913d82dd4dea3e7d2127a047f53189dd2a6c7c1209d8:log:189', 'hash': '0x076b9a1969503d94ab00913d82dd4dea3e7d2127a047f53189dd2a6c7c1209d8', 'from': '0xc0b7a17250862977e5e3eeede7989456ae9eb20f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x036d6160', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T11:00:08.000Z'}}, {'blockNum': '0xb14f53', 'uniqueId': '0xf906751f2be953d609bf019b88faed0d8c4199c3434410acbb66edbf79f17dd6:log:286', 'hash': '0xf906751f2be953d609bf019b88faed0d8c4199c3434410acbb66edbf79f17dd6', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 20636.0857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4cd119', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T11:02:55.000Z'}}, {'blockNum': '0xb1503e', 'uniqueId': '0x8d73e7c02bfefc0af131922810753641536de637151f3f4b6e8450ea3a03ed88:log:279', 'hash': '0x8d73e7c02bfefc0af131922810753641536de637151f3f4b6e8450ea3a03ed88', 'from': '0x09ac86553d401187849ca545fe4446ac4f455a89', 'to': '0x8a96c6bd8bb76140c1d438a4ea8841622dd3d766', 'value': 46.3789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0713ad', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T11:57:22.000Z'}}, {'blockNum': '0xb15060', 'uniqueId': '0x6a608c2d33d9a7cb8aad17de5c6940fea00105c1738890548286638643893699:log:257', 'hash': '0x6a608c2d33d9a7cb8aad17de5c6940fea00105c1738890548286638643893699', 'from': '0x8a96c6bd8bb76140c1d438a4ea8841622dd3d766', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 46.3789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0713ad', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T12:06:00.000Z'}}, {'blockNum': '0xb15074', 'uniqueId': '0x0973cf1a6e39246dadc191427544bf9b9eefe7b95ea84f5fd8ad406c6d435743:log:260', 'hash': '0x0973cf1a6e39246dadc191427544bf9b9eefe7b95ea84f5fd8ad406c6d435743', 'from': '0x6b11bda202802402f6e92a426e440ba6abb01ee6', 'to': '0xc42a1b69cf0e8f6a5bb35379f657a2426b17a3dc', 'value': 134.563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x14885e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T12:10:47.000Z'}}, {'blockNum': '0xb1526d', 'uniqueId': '0xe8f88534eb82fb3f624f3e39e3401d9d98b1818ba70858bf0ebda9cc16da008e:log:72', 'hash': '0xe8f88534eb82fb3f624f3e39e3401d9d98b1818ba70858bf0ebda9cc16da008e', 'from': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14096.5877, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0866f7f5', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T14:00:27.000Z'}}, {'blockNum': '0xb152f9', 'uniqueId': '0xb345db715fa5e6d1ddb7253a259ef16bb0aacb8c6172e9cb3c752e8f86b0a87f:log:45', 'hash': '0xb345db715fa5e6d1ddb7253a259ef16bb0aacb8c6172e9cb3c752e8f86b0a87f', 'from': '0x388711a9742bc1650c269da06e1136119e88976d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17860.472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0aa54ab0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T14:30:58.000Z'}}, {'blockNum': '0xb15325', 'uniqueId': '0xcaac821089c96703d9a9f0dcf6b34e1a6b056d13608b97225394e8ec9c6dddb5:log:229', 'hash': '0xcaac821089c96703d9a9f0dcf6b34e1a6b056d13608b97225394e8ec9c6dddb5', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0x6c9494ddbcebf71e958faf7a741ce7e964bacdc8', 'value': 821.4265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x7d56f9', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T14:41:53.000Z'}}, {'blockNum': '0xb15365', 'uniqueId': '0x187a9fef0c89829d32ac1554a1de7b6d0b7d0ea6c01f1dfd901d969e43064332:log:281', 'hash': '0x187a9fef0c89829d32ac1554a1de7b6d0b7d0ea6c01f1dfd901d969e43064332', 'from': '0xa2d3aecb21f387d49009eaa0ff6e8c20e1518b6a', 'to': '0x5243f68d25ba1d7be4deb2938ab8fb720321a565', 'value': 327.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x31f510', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T14:54:09.000Z'}}, {'blockNum': '0xb153b5', 'uniqueId': '0xa41a3652b33916a5d1b21c0c124cac877ff370e83d928987913a4918686400f6:log:182', 'hash': '0xa41a3652b33916a5d1b21c0c124cac877ff370e83d928987913a4918686400f6', 'from': '0x5243f68d25ba1d7be4deb2938ab8fb720321a565', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 327.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x31f510', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T15:11:55.000Z'}}, {'blockNum': '0xb1542a', 'uniqueId': '0xc1e612e34248a8235e3affe551db063c168e9fabd15649e1478daf7e1185ded0:log:292', 'hash': '0xc1e612e34248a8235e3affe551db063c168e9fabd15649e1478daf7e1185ded0', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 23982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0e4b5ce0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T15:43:08.000Z'}}, {'blockNum': '0xb1544c', 'uniqueId': '0xc638195b883fd2c8617fdf7206bdc868bc6321bcb3159e2d1cfb518d4491f90d:log:223', 'hash': '0xc638195b883fd2c8617fdf7206bdc868bc6321bcb3159e2d1cfb518d4491f90d', 'from': '0x413b16d28f0099bc30f59f78bf14b63bdad01101', 'to': '0x5fa9ced8772612eda6a64aa073ed59bec363674f', 'value': 1196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xb67ec0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T15:50:56.000Z'}}, {'blockNum': '0xb1548c', 'uniqueId': '0x3f1fed8d6bd1701724041c88ca6c8a54fd9a686f7cf582ee636285ca5649e806:log:292', 'hash': '0x3f1fed8d6bd1701724041c88ca6c8a54fd9a686f7cf582ee636285ca5649e806', 'from': '0x5fa9ced8772612eda6a64aa073ed59bec363674f', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xb67ec0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T16:02:52.000Z'}}, {'blockNum': '0xb154e1', 'uniqueId': '0x8371da92b697e5bb6d1f4c74a3ba3661bb7f86807955c70a74f61863c8e63035:log:145', 'hash': '0x8371da92b697e5bb6d1f4c74a3ba3661bb7f86807955c70a74f61863c8e63035', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 23982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0e4b5ce0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T16:20:47.000Z'}}, {'blockNum': '0xb155bb', 'uniqueId': '0x5f21b8b145d42f19a6dbcb5faedb644ccab76899fc06e589e5167312671f6aad:log:216', 'hash': '0x5f21b8b145d42f19a6dbcb5faedb644ccab76899fc06e589e5167312671f6aad', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 24816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0eca9f00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T17:08:35.000Z'}}, {'blockNum': '0xb155d5', 'uniqueId': '0xac94c856b8912c7828fb67bfbdcbab8899f3ea6c570c5b029c1bbd9c6ea0343d:log:322', 'hash': '0xac94c856b8912c7828fb67bfbdcbab8899f3ea6c570c5b029c1bbd9c6ea0343d', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'value': 30419.1619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12219883', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T17:14:52.000Z'}}, {'blockNum': '0xb15614', 'uniqueId': '0xc6b46f4574500516c52bde3b941bf2cf0863fc3afe249020918ebfde15e6d8fe:log:60', 'hash': '0xc6b46f4574500516c52bde3b941bf2cf0863fc3afe249020918ebfde15e6d8fe', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 20680.5621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c539a75', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T17:29:33.000Z'}}, {'blockNum': '0xb1561e', 'uniqueId': '0x28f966b1db7026c6fbf4000e4ae9172c8f6a9e48d5e867fdc99047b8240436b9:log:83', 'hash': '0x28f966b1db7026c6fbf4000e4ae9172c8f6a9e48d5e867fdc99047b8240436b9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 723.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6e5de8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T17:31:50.000Z'}}, {'blockNum': '0xb15630', 'uniqueId': '0xbb4cd01582742dedd00644ff908617f4a7e502871c5cd673730d06aae65ce166:log:232', 'hash': '0xbb4cd01582742dedd00644ff908617f4a7e502871c5cd673730d06aae65ce166', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20680.5621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c539a75', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T17:37:00.000Z'}}, {'blockNum': '0xb15644', 'uniqueId': '0x8431c8eb155fc6713d9e0dacfa109dd6a796b05d980c53e7a6116413cf467d98:log:125', 'hash': '0x8431c8eb155fc6713d9e0dacfa109dd6a796b05d980c53e7a6116413cf467d98', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 23725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0e2425d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T17:40:40.000Z'}}, {'blockNum': '0xb15648', 'uniqueId': '0x6a3ee601b30d00fdc33196fe8ac7a1083d3585219b78f2f53c69cd1cd15e0faf:log:145', 'hash': '0x6a3ee601b30d00fdc33196fe8ac7a1083d3585219b78f2f53c69cd1cd15e0faf', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 723.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6e5de8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T17:41:05.000Z'}}, {'blockNum': '0xb158e5', 'uniqueId': '0x9829fdfe798ee7c45e56c7bff7612037183b70cac9469e846bcc38b67669613b:log:223', 'hash': '0x9829fdfe798ee7c45e56c7bff7612037183b70cac9469e846bcc38b67669613b', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 22768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0d921f00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T20:06:35.000Z'}}, {'blockNum': '0xb15979', 'uniqueId': '0x56513875661a89640cbd9f4e5c96c3385a179307df76f44269a37f3571a27d79:log:302', 'hash': '0x56513875661a89640cbd9f4e5c96c3385a179307df76f44269a37f3571a27d79', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 14244.963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x087d9bde', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T20:36:32.000Z'}}, {'blockNum': '0xb159d7', 'uniqueId': '0x814806287051cbecb561bcc31b01e15466bf3e48314e813bb5dc330997829c62:log:125', 'hash': '0x814806287051cbecb561bcc31b01e15466bf3e48314e813bb5dc330997829c62', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x36f2b710c09ca5b4cb287e9bdcd357202993ab0f', 'value': 18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02bf20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T20:54:46.000Z'}}, {'blockNum': '0xb159dc', 'uniqueId': '0x7bb354998cf21f9da6017d724e95f6d88cf9034d6950504950f21b8e49d8d950:log:176', 'hash': '0x7bb354998cf21f9da6017d724e95f6d88cf9034d6950504950f21b8e49d8d950', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 2461.6373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01779db5', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T20:56:52.000Z'}}, {'blockNum': '0xb159fa', 'uniqueId': '0x825c6e3c8732b41e12e9ef8dd75268af86e30bd46e98adedf15ab56be96792a5:log:288', 'hash': '0x825c6e3c8732b41e12e9ef8dd75268af86e30bd46e98adedf15ab56be96792a5', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'value': 7161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0444ae90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:03:21.000Z'}}, {'blockNum': '0xb15a07', 'uniqueId': '0xebe5e56b443772ea91a68560534c4a220eff017ab7279e25f7a5efd3f3c49eda:log:90', 'hash': '0xebe5e56b443772ea91a68560534c4a220eff017ab7279e25f7a5efd3f3c49eda', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 2269.7799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x015a5747', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:06:37.000Z'}}, {'blockNum': '0xb15a0a', 'uniqueId': '0xb4d8f0a0096c9aefef6f8b6212367a322231e65939feb92d46e5c249e59bae53:log:22', 'hash': '0xb4d8f0a0096c9aefef6f8b6212367a322231e65939feb92d46e5c249e59bae53', 'from': '0x90fc780e2a7add0ef532cb33d2b733ba2fa6277a', 'to': '0xb2a75fed542098dbeafcf6fe7d6d414480eea0ec', 'value': 107.0146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x105442', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:07:59.000Z'}}, {'blockNum': '0xb15a17', 'uniqueId': '0x5989cd38e7c320155133af449bd417d1eaa1729a43af6be07781c8e291cb1f8a:log:52', 'hash': '0x5989cd38e7c320155133af449bd417d1eaa1729a43af6be07781c8e291cb1f8a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 438.4802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x42e822', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:09:28.000Z'}}, {'blockNum': '0xb15a20', 'uniqueId': '0x7d7bba9c07f09cfbc698bb07e9ab8f6dd80d044436330ec6ce640e32a6cf574d:log:274', 'hash': '0x7d7bba9c07f09cfbc698bb07e9ab8f6dd80d044436330ec6ce640e32a6cf574d', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xbd47e5b28b273a41137a580c818bdb1cb6941fb6', 'value': 426.9802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4126ea', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:11:57.000Z'}}, {'blockNum': '0xb15a42', 'uniqueId': '0x922550a8dcb9f2811792b19f66c4e6a975988e413d3b4bd9f48f5f1c545bdbae:log:187', 'hash': '0x922550a8dcb9f2811792b19f66c4e6a975988e413d3b4bd9f48f5f1c545bdbae', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xcc1c5ae653c9ebc0974e45316839a33a90f821b2', 'value': 706.3402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6bc76a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:19:30.000Z'}}, {'blockNum': '0xb15a45', 'uniqueId': '0xb8e7ad1ea69f25da3c5857a88f88e3ba765a93d39cf92c5091df18a102b4e813:log:176', 'hash': '0xb8e7ad1ea69f25da3c5857a88f88e3ba765a93d39cf92c5091df18a102b4e813', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2386eb34987da185705f1d59a57d0fc9c8cebe6f', 'value': 60.11, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x092c0c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:21:10.000Z'}}, {'blockNum': '0xb15a60', 'uniqueId': '0xd40ef6a8d5a2545db2c0648f39cf771dc974c1f8df777b791ae9f6d3ffe7a87d:log:217', 'hash': '0xd40ef6a8d5a2545db2c0648f39cf771dc974c1f8df777b791ae9f6d3ffe7a87d', 'from': '0x14e8bd1cfd3605d663952dedb9b4fbfa4b510f22', 'to': '0xce2cc69cc301c799e314828eea7fc4cbbaf87c70', 'value': 1001.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x98d726', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:26:44.000Z'}}, {'blockNum': '0xb15a64', 'uniqueId': '0x4faddb42bf1bf8cf54e9df1688f3ba58dde75ac8b79249f84f391212f67c51dc:log:95', 'hash': '0x4faddb42bf1bf8cf54e9df1688f3ba58dde75ac8b79249f84f391212f67c51dc', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x668877a76f7b9d74c9af8a9b7c204a186460bf92', 'value': 3779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0240a130', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:27:10.000Z'}}, {'blockNum': '0xb15a65', 'uniqueId': '0xcbb102bbe6bfaf1c858e392c51a2376d924feddcc1b33dff587e1954639e5a21:log:24', 'hash': '0xcbb102bbe6bfaf1c858e392c51a2376d924feddcc1b33dff587e1954639e5a21', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xdffd616e83d9f3132da91f915c2863751dc31049', 'value': 2970.3983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01c53f2f', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:27:37.000Z'}}, {'blockNum': '0xb15a71', 'uniqueId': '0xe0600054042c70ce413daa2e6915a37ae7c5d00ce62880c37e65d51607c9cf19:log:67', 'hash': '0xe0600054042c70ce413daa2e6915a37ae7c5d00ce62880c37e65d51607c9cf19', 'from': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0444ae90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:31:22.000Z'}}, {'blockNum': '0xb15a7e', 'uniqueId': '0xcbcb73d7e53f4af73f2f160a6c165fd41c24fe0bce515b62fe58978640c5e946:log:54', 'hash': '0xcbcb73d7e53f4af73f2f160a6c165fd41c24fe0bce515b62fe58978640c5e946', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3d3e4515af535072ad03f63a1a7b41e0607c98a2', 'value': 1942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01285360', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:34:26.000Z'}}, {'blockNum': '0xb15a7e', 'uniqueId': '0xe99a3f9c03c03a58410a667aba6399cdef61f5a5117f59293db9782f9608d851:log:55', 'hash': '0xe99a3f9c03c03a58410a667aba6399cdef61f5a5117f59293db9782f9608d851', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x4483954b2cf526cc45b471c4141b2efe72b9068c', 'value': 460.516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4644e8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:34:26.000Z'}}, {'blockNum': '0xb15a82', 'uniqueId': '0xb7c5ada3f9a8040c4790a6db7048a9b37cf4454f90ee40729deddfc3019626b6:log:80', 'hash': '0xb7c5ada3f9a8040c4790a6db7048a9b37cf4454f90ee40729deddfc3019626b6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x30a60a977758ae98d4bb143c8711d1bfb1f1e962', 'value': 5381.1653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033519c5', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:35:22.000Z'}}, {'blockNum': '0xb15a82', 'uniqueId': '0x4673be76e774e57c0aa68d611010f1b41fcd89cfd71e774213a042085fb8329a:log:82', 'hash': '0x4673be76e774e57c0aa68d611010f1b41fcd89cfd71e774213a042085fb8329a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 4857.9674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02e5445a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:35:22.000Z'}}, {'blockNum': '0xb15a82', 'uniqueId': '0xdd558b52288145d80d84874a7f97af862e8e465c532eb196302062f4a196882a:log:83', 'hash': '0xdd558b52288145d80d84874a7f97af862e8e465c532eb196302062f4a196882a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 5277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x032534d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:35:22.000Z'}}, {'blockNum': '0xb15a8e', 'uniqueId': '0x899622ccc5563d9e16efbc343aea9582e3e39ae1c27ce6d1a4d0e8298431ed1f:log:55', 'hash': '0x899622ccc5563d9e16efbc343aea9582e3e39ae1c27ce6d1a4d0e8298431ed1f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xdb697f324cabe355b878ec646c68b1b364ee50f4', 'value': 1074.901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa40452', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:37:08.000Z'}}, {'blockNum': '0xb15a9f', 'uniqueId': '0x1721e96e279b95bdd63e1fcb60bf967a4e338692c8deddb4d83397d04ffacc2e:log:54', 'hash': '0x1721e96e279b95bdd63e1fcb60bf967a4e338692c8deddb4d83397d04ffacc2e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xef31edc28d9cc1cecd58e379cc5887072afb0b6e', 'value': 8273.673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04ee765a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:40:10.000Z'}}, {'blockNum': '0xb15aa0', 'uniqueId': '0xc5107a4ff919302c2e40566ddb66f02e3bc9b92bcaf14b8d39010d509243f337:log:13', 'hash': '0xc5107a4ff919302c2e40566ddb66f02e3bc9b92bcaf14b8d39010d509243f337', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5672297d55d924a9043ff2b587c5cce73b2ffd44', 'value': 439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x42fc70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:40:40.000Z'}}, {'blockNum': '0xb15aa8', 'uniqueId': '0x6a9b02e6ea7b7aec1ba8f86b67cd576452c034acd415919362de5048bd0ad63f:log:143', 'hash': '0x6a9b02e6ea7b7aec1ba8f86b67cd576452c034acd415919362de5048bd0ad63f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6b7da51869785987efb679d36e7dad1e406f397a', 'value': 2200.774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014fcfbc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:41:40.000Z'}}, {'blockNum': '0xb15aab', 'uniqueId': '0x2797c150e2f3472b25c457d5c212c96bf7294239fd397508dbf7b64ba4492e61:log:286', 'hash': '0x2797c150e2f3472b25c457d5c212c96bf7294239fd397508dbf7b64ba4492e61', 'from': '0x1d4051d87e326256b489ef99db4a238e88591e7c', 'to': '0x335757884399448f6505158ca824e1b280ca26f6', 'value': 1935.56, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x012757d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:42:17.000Z'}}, {'blockNum': '0xb15aaf', 'uniqueId': '0x842f3d49054a223cd715f51611020f58ff4333baa9bf4a888b6b740db4f0c912:log:94', 'hash': '0x842f3d49054a223cd715f51611020f58ff4333baa9bf4a888b6b740db4f0c912', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbd6f3546771f120ef90b49fa86b79da3efff2a7e', 'value': 1043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x9f2630', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:42:45.000Z'}}, {'blockNum': '0xb15aaf', 'uniqueId': '0x5c6195b63b532bfc540a98b3579bb1768fee4c74df176d9d2c147f8a7655c340:log:95', 'hash': '0x5c6195b63b532bfc540a98b3579bb1768fee4c74df176d9d2c147f8a7655c340', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 5337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x032e5c90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:42:45.000Z'}}, {'blockNum': '0xb15ab0', 'uniqueId': '0xfa3b210a159ad973dc876a4a0d163f3c3b004990de11c38cdceef48ff7411e2c:log:27', 'hash': '0xfa3b210a159ad973dc876a4a0d163f3c3b004990de11c38cdceef48ff7411e2c', 'from': '0x3d3e4515af535072ad03f63a1a7b41e0607c98a2', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 1942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01285360', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:42:57.000Z'}}, {'blockNum': '0xb15ab3', 'uniqueId': '0xb8f462c8aa689908cff62aa9cfa76a4c22cb8e53338c2cf52258a3e0da3d215f:log:142', 'hash': '0xb8f462c8aa689908cff62aa9cfa76a4c22cb8e53338c2cf52258a3e0da3d215f', 'from': '0x30a60a977758ae98d4bb143c8711d1bfb1f1e962', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 5381.1653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033519c5', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:43:09.000Z'}}, {'blockNum': '0xb15ab3', 'uniqueId': '0x298acf56c0898206e93ca593c13c467d91d2e8310f2c6541d91741ada90f1578:log:186', 'hash': '0x298acf56c0898206e93ca593c13c467d91d2e8310f2c6541d91741ada90f1578', 'from': '0xdb697f324cabe355b878ec646c68b1b364ee50f4', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 1074.901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa40452', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:43:09.000Z'}}, {'blockNum': '0xb15ab6', 'uniqueId': '0xd1a8d9dc62102d6b48f68cb0c5a6b69e9411f1697c3915eaf70e23c06aafdd97:log:201', 'hash': '0xd1a8d9dc62102d6b48f68cb0c5a6b69e9411f1697c3915eaf70e23c06aafdd97', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 9977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f25e90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:43:36.000Z'}}, {'blockNum': '0xb15abb', 'uniqueId': '0xe75615199eca1ceae0ce22dfc77a7e6b5d4e0c714e381eeb2a676aa4e8501b2c:log:253', 'hash': '0xe75615199eca1ceae0ce22dfc77a7e6b5d4e0c714e381eeb2a676aa4e8501b2c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xaf757dd70852214eca1b8efc7075c1dfd1fc9aa0', 'value': 727.2131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6ef6c3', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:45:14.000Z'}}, {'blockNum': '0xb15abe', 'uniqueId': '0xa3474ba1619bbb6ac3f12a0dccfdb7b9fed49c0cc917b8ad3c6048c55347dc1f:log:5', 'hash': '0xa3474ba1619bbb6ac3f12a0dccfdb7b9fed49c0cc917b8ad3c6048c55347dc1f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 4875.097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02e7e17a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:46:07.000Z'}}, {'blockNum': '0xb15abe', 'uniqueId': '0xbfc557b5bc4b92102f9d65a6fe9e45a9bd6e628410122f27d6c23ae9f89e12e5:log:167', 'hash': '0xbfc557b5bc4b92102f9d65a6fe9e45a9bd6e628410122f27d6c23ae9f89e12e5', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c45eff0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:46:07.000Z'}}, {'blockNum': '0xb15abe', 'uniqueId': '0xc1a2252c206854edc57db87b58b5a7fd12d197ff781549bf8d10f1967ec29c1a:log:168', 'hash': '0xc1a2252c206854edc57db87b58b5a7fd12d197ff781549bf8d10f1967ec29c1a', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 4857.9674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02e5445a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:46:07.000Z'}}, {'blockNum': '0xb15abf', 'uniqueId': '0x0361d7129244b8e4d172ccc12802bb6e734da20fbbf836dec8905ae20bcec063:log:63', 'hash': '0x0361d7129244b8e4d172ccc12802bb6e734da20fbbf836dec8905ae20bcec063', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x00bbc03bd9c69c98312ee04494bbc6333807563d', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08f0d180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:46:13.000Z'}}, {'blockNum': '0xb15ac2', 'uniqueId': '0xb1e8e3e9239360a8c9adc17589170f6a3f26b68f1f192eea91069f244dd057c6:log:137', 'hash': '0xb1e8e3e9239360a8c9adc17589170f6a3f26b68f1f192eea91069f244dd057c6', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x038dc8d5b540712a791f6b17df4e13298debbdcb', 'value': 10217.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0617068c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:46:25.000Z'}}, {'blockNum': '0xb15ac5', 'uniqueId': '0xdf22da59c77948675f48ffb69e97e2c079bf4479acba7c155384f52f095c82e3:log:62', 'hash': '0xdf22da59c77948675f48ffb69e97e2c079bf4479acba7c155384f52f095c82e3', 'from': '0xef31edc28d9cc1cecd58e379cc5887072afb0b6e', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 8273.673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04ee765a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:47:14.000Z'}}, {'blockNum': '0xb15ad3', 'uniqueId': '0x63a22488bc575ab86adbaca9db7734c275652864ea56bc1144dd0aa4740e7895:log:176', 'hash': '0x63a22488bc575ab86adbaca9db7734c275652864ea56bc1144dd0aa4740e7895', 'from': '0xbd6f3546771f120ef90b49fa86b79da3efff2a7e', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 1043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x9f2630', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:49:23.000Z'}}, {'blockNum': '0xb15ad8', 'uniqueId': '0x1cf39cf5ac2845f0e557b6d77ddb4d1ffa7957bc221fad75823250f937d416d6:log:259', 'hash': '0x1cf39cf5ac2845f0e557b6d77ddb4d1ffa7957bc221fad75823250f937d416d6', 'from': '0x6b7da51869785987efb679d36e7dad1e406f397a', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 2200.774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014fcfbc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:50:53.000Z'}}, {'blockNum': '0xb15adb', 'uniqueId': '0x91933f4b7444a3fd532faf1a3f65f023df97d1b71f5e3d2904c560ca0e55e9fc:log:114', 'hash': '0x91933f4b7444a3fd532faf1a3f65f023df97d1b71f5e3d2904c560ca0e55e9fc', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 4875.097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02e7e17a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:51:40.000Z'}}, {'blockNum': '0xb15ae0', 'uniqueId': '0xcb4e256ff9c80c303289a1546a670405818561e03d36c5507e6351f1a622fdd2:log:250', 'hash': '0xcb4e256ff9c80c303289a1546a670405818561e03d36c5507e6351f1a622fdd2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 10194.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0613841c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:52:26.000Z'}}, {'blockNum': '0xb15ae5', 'uniqueId': '0xb9c49eedbcdff45a6da46312897f9dfffae6243fc9f38c7a6114ebec1bea12d8:log:154', 'hash': '0xb9c49eedbcdff45a6da46312897f9dfffae6243fc9f38c7a6114ebec1bea12d8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:53:58.000Z'}}, {'blockNum': '0xb15ae9', 'uniqueId': '0xbb2c376e357df8338e44f1f60aeba27348daeda8621300165ac73036e91b7508:log:202', 'hash': '0xbb2c376e357df8338e44f1f60aeba27348daeda8621300165ac73036e91b7508', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 14977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08ed4f10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:55:18.000Z'}}, {'blockNum': '0xb15aef', 'uniqueId': '0x474369c3b6f700629e8129e75d9fd5e7b84e83f140b11df0c83cdd6aaae09776:log:143', 'hash': '0x474369c3b6f700629e8129e75d9fd5e7b84e83f140b11df0c83cdd6aaae09776', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 14977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08ed4f10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:57:08.000Z'}}, {'blockNum': '0xb15af4', 'uniqueId': '0x30924f8262c3fe1a118bf321283a474359a501a3c529035741d64df7ed05c857:log:83', 'hash': '0x30924f8262c3fe1a118bf321283a474359a501a3c529035741d64df7ed05c857', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:58:00.000Z'}}, {'blockNum': '0xb15afe', 'uniqueId': '0xbe7eb7dc4572d4c2ffbebc3b43dee99c5f553249499c5c90d8bf9c84c53e97c4:log:125', 'hash': '0xbe7eb7dc4572d4c2ffbebc3b43dee99c5f553249499c5c90d8bf9c84c53e97c4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xaf757dd70852214eca1b8efc7075c1dfd1fc9aa0', 'value': 727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6eee70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:01:48.000Z'}}, {'blockNum': '0xb15afe', 'uniqueId': '0x1f62d674b734188eba47c20233fa523827ddbf7ec7975f6ae89e35d55ab82f21:log:126', 'hash': '0x1f62d674b734188eba47c20233fa523827ddbf7ec7975f6ae89e35d55ab82f21', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xcfe0d8f798ac82ce98bbf437e36546235d353912', 'value': 429.547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x418b2e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:01:48.000Z'}}, {'blockNum': '0xb15aff', 'uniqueId': '0x620346cdc5dfa9cefe7f543bc4cb7f89992a4807bcbb3da2f58c7c633b154d8f:log:169', 'hash': '0x620346cdc5dfa9cefe7f543bc4cb7f89992a4807bcbb3da2f58c7c633b154d8f', 'from': '0x00bbc03bd9c69c98312ee04494bbc6333807563d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08f0d180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:02:17.000Z'}}, {'blockNum': '0xb15aff', 'uniqueId': '0x7844e8faf79ed5badd874022a5e80accaef92aca3149a0417a221a2a7fa89114:log:173', 'hash': '0x7844e8faf79ed5badd874022a5e80accaef92aca3149a0417a221a2a7fa89114', 'from': '0x038dc8d5b540712a791f6b17df4e13298debbdcb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10217.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0617068c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:02:17.000Z'}}, {'blockNum': '0xb15aff', 'uniqueId': '0x0f1374cc9cde9e3ff81d4f8dc1eaa3dbfa95185734535ccc3f2ecbac710edc15:log:174', 'hash': '0x0f1374cc9cde9e3ff81d4f8dc1eaa3dbfa95185734535ccc3f2ecbac710edc15', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x88939c46b2f562102d5e1e4ec67c150c865e506a', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x124f80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:02:17.000Z'}}, {'blockNum': '0xb15b01', 'uniqueId': '0x369318e296c35b32c2257c9f69a55503cbe6148018d90dfeeb1042474a7b7a02:log:161', 'hash': '0x369318e296c35b32c2257c9f69a55503cbe6148018d90dfeeb1042474a7b7a02', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 14269.7988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08816604', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:02:40.000Z'}}, {'blockNum': '0xb15b06', 'uniqueId': '0x772a48769029dcde3727f8ef9655988d6339d8f34c6bb82fda27db98cb33bdc6:log:242', 'hash': '0x772a48769029dcde3727f8ef9655988d6339d8f34c6bb82fda27db98cb33bdc6', 'from': '0xaf757dd70852214eca1b8efc7075c1dfd1fc9aa0', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 727.2131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6ef6c3', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:03:41.000Z'}}, {'blockNum': '0xb15b13', 'uniqueId': '0x2006af6975b56a365965bfaa0fe59a0c80c61e25ce1c57d36c252641867822a9:log:286', 'hash': '0x2006af6975b56a365965bfaa0fe59a0c80c61e25ce1c57d36c252641867822a9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 625100.3259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x017496bd7b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:05:48.000Z'}}, {'blockNum': '0xb15b14', 'uniqueId': '0xe1d5eaa964bf439e9a0d1a8320b96fcd14651274c907cb94c37f59a7a6c38334:log:234', 'hash': '0xe1d5eaa964bf439e9a0d1a8320b96fcd14651274c907cb94c37f59a7a6c38334', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 29954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11da9e20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:06:09.000Z'}}, {'blockNum': '0xb15b14', 'uniqueId': '0x0694242544d6ab8461decb6f7e8f2024ecacb69a75d2fa2d46e0028d070aa30e:log:235', 'hash': '0x0694242544d6ab8461decb6f7e8f2024ecacb69a75d2fa2d46e0028d070aa30e', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10194.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0613841c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:06:09.000Z'}}, {'blockNum': '0xb15b17', 'uniqueId': '0x7564529681a6bb6e5b6b8e5136fcaf8bdb0bcece36a77f3ef367c70ef692288b:log:264', 'hash': '0x7564529681a6bb6e5b6b8e5136fcaf8bdb0bcece36a77f3ef367c70ef692288b', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 23602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0e116120', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:07:04.000Z'}}, {'blockNum': '0xb15b18', 'uniqueId': '0x95e8d759d891253124c5e3fe8d35112f76da7655c1c1f15bb922cd9f16141f92:log:64', 'hash': '0x95e8d759d891253124c5e3fe8d35112f76da7655c1c1f15bb922cd9f16141f92', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 7977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04c13190', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:07:15.000Z'}}, {'blockNum': '0xb15b18', 'uniqueId': '0xdce9dc1edf6048370974bdf7fc85bb85af9ed65065d4b0a297876e99372c40cd:log:65', 'hash': '0xdce9dc1edf6048370974bdf7fc85bb85af9ed65065d4b0a297876e99372c40cd', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:07:15.000Z'}}, {'blockNum': '0xb15b1c', 'uniqueId': '0xd30b550ec50b71cfdd373562c8329ac2255da74d3fbf433a9e572e357b6d4b49:log:41', 'hash': '0xd30b550ec50b71cfdd373562c8329ac2255da74d3fbf433a9e572e357b6d4b49', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 10768.198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x066b18bc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:08:24.000Z'}}, {'blockNum': '0xb15b28', 'uniqueId': '0xcedf8433fa469f06d8e9ad198766792ce9bdff6bc6bdd9414027cb2f573ab219:log:16', 'hash': '0xcedf8433fa469f06d8e9ad198766792ce9bdff6bc6bdd9414027cb2f573ab219', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xa444bbd83293de79e5802daa8b81bd0277fe68fd', 'value': 1805.6404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x011384d4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:10:20.000Z'}}, {'blockNum': '0xb15b2a', 'uniqueId': '0xf667a52d8b845493cd76bd81e89febd112410a9094b2ee947f3b253ca1ca9d5e:log:41', 'hash': '0xf667a52d8b845493cd76bd81e89febd112410a9094b2ee947f3b253ca1ca9d5e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 22199.6373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0d3b6555', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:10:29.000Z'}}, {'blockNum': '0xb15b2c', 'uniqueId': '0x0d41d5de8bb34f25ea8211eb0dbffae6cedcc8b62782c1a56d052c5bb2f63ede:log:54', 'hash': '0x0d41d5de8bb34f25ea8211eb0dbffae6cedcc8b62782c1a56d052c5bb2f63ede', 'from': '0x5d0ba857f0c51612f04e4d59d3d0edf2574fd476', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 600000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0165a0bc00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:10:41.000Z'}}, {'blockNum': '0xb15b30', 'uniqueId': '0x18b6d0c863eadc160714e3032b94f5e8b83a5384c4ff9485f7d9cb603fb2b995:log:269', 'hash': '0x18b6d0c863eadc160714e3032b94f5e8b83a5384c4ff9485f7d9cb603fb2b995', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30176.6373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11fc96e5', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:11:34.000Z'}}, {'blockNum': '0xb15b30', 'uniqueId': '0x2f7f12fbd87f2084c1ca84839b7860db5e4e7195ba8ee74490ca7babe86adf6d:log:270', 'hash': '0x2f7f12fbd87f2084c1ca84839b7860db5e4e7195ba8ee74490ca7babe86adf6d', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10768.198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x066b18bc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:11:34.000Z'}}, {'blockNum': '0xb15b30', 'uniqueId': '0x7c1af6cf1dee8c9a0293f62ace38b0bc0e04dde136fc77793c80110f3b26d09a:log:271', 'hash': '0x7c1af6cf1dee8c9a0293f62ace38b0bc0e04dde136fc77793c80110f3b26d09a', 'from': '0xaf757dd70852214eca1b8efc7075c1dfd1fc9aa0', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6eee70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:11:34.000Z'}}, {'blockNum': '0xb15b3f', 'uniqueId': '0xcdd0bfc1b79ff895ef8e89d00d1e422c5055fec37bc2738b8450f01c1c64c810:log:229', 'hash': '0xcdd0bfc1b79ff895ef8e89d00d1e422c5055fec37bc2738b8450f01c1c64c810', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 31473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12c26610', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:13:31.000Z'}}, {'blockNum': '0xb15b49', 'uniqueId': '0x85c51b6beddc397a30bea59fd3024b69901f66709bc7f3742d626b3eadc8ce9a:log:21', 'hash': '0x85c51b6beddc397a30bea59fd3024b69901f66709bc7f3742d626b3eadc8ce9a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 1752.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x010b6cf0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:15:57.000Z'}}, {'blockNum': '0xb15b49', 'uniqueId': '0x17e3e13a5428a45148d454657c542e81fe0488731204729d467e6f47c1aad2e4:log:22', 'hash': '0x17e3e13a5428a45148d454657c542e81fe0488731204729d467e6f47c1aad2e4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:15:57.000Z'}}, {'blockNum': '0xb15b4a', 'uniqueId': '0x46b34b4b5f35fc04a8f0e1f280987cbcf44c0191eb068eaf1976c893280eb08d:log:286', 'hash': '0x46b34b4b5f35fc04a8f0e1f280987cbcf44c0191eb068eaf1976c893280eb08d', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:15:58.000Z'}}, {'blockNum': '0xb15b4e', 'uniqueId': '0x959a6ad5cc631051a67e4e10d14f5346e493750b0fdbb4e5a1f4c230e1e5ae0a:log:273', 'hash': '0x959a6ad5cc631051a67e4e10d14f5346e493750b0fdbb4e5a1f4c230e1e5ae0a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 15088.1998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fe46ce', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:16:48.000Z'}}, {'blockNum': '0xb15b54', 'uniqueId': '0xe13bc5f44fbd627590adbad353f84074ca21fcbc8377bed76c1023aad4f2e917:log:174', 'hash': '0xe13bc5f44fbd627590adbad353f84074ca21fcbc8377bed76c1023aad4f2e917', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 11660.305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x06f338aa', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:18:06.000Z'}}, {'blockNum': '0xb15b5b', 'uniqueId': '0xadde4577526f166d8ca190b693631afb298f960ce63f9956eca76364b112957f:log:75', 'hash': '0xadde4577526f166d8ca190b693631afb298f960ce63f9956eca76364b112957f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 18977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0b4fa910', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:19:19.000Z'}}, {'blockNum': '0xb15b5b', 'uniqueId': '0x3c73540a04866cea131ae93aaf85c34c7a38fccbb266ddb3fafd921004a58762:log:76', 'hash': '0x3c73540a04866cea131ae93aaf85c34c7a38fccbb266ddb3fafd921004a58762', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa614221a6234c588876a278b2fa3f6371595dfb3', 'value': 50023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1dd0e770', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:19:19.000Z'}}, {'blockNum': '0xb15b65', 'uniqueId': '0x75364ead34467abb6443bfa6e8ee16c4cc3bdb8371524a08b69ec7665918804a:log:205', 'hash': '0x75364ead34467abb6443bfa6e8ee16c4cc3bdb8371524a08b69ec7665918804a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12799d40', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:22:13.000Z'}}, {'blockNum': '0xb15b82', 'uniqueId': '0x2ba8fd49f22683532464937ae82e8cb247049cf5d87567839534d19e163d507c:log:154', 'hash': '0x2ba8fd49f22683532464937ae82e8cb247049cf5d87567839534d19e163d507c', 'from': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 217381.6373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x8191ce35', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:30:22.000Z'}}, {'blockNum': '0xb15ba1', 'uniqueId': '0xe58b462277e315ef3872d66461961bd9b1ef5d91d644e59c56a2cd0d0c6a1948:log:62', 'hash': '0xe58b462277e315ef3872d66461961bd9b1ef5d91d644e59c56a2cd0d0c6a1948', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x36f2b710c09ca5b4cb287e9bdcd357202993ab0f', 'value': 8793.865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x053dd65a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:37:07.000Z'}}, {'blockNum': '0xb15ba2', 'uniqueId': '0x191fa53a9e249ff589464095c97ec4118593f4afb8317c47b19e2704f8ea1b98:log:71', 'hash': '0x191fa53a9e249ff589464095c97ec4118593f4afb8317c47b19e2704f8ea1b98', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15088.1998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fe46ce', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:37:08.000Z'}}, {'blockNum': '0xb15ba2', 'uniqueId': '0x48ff7b6637cbb9b63d5f5179353716b0e1e4410b2138b480be57a8c5347e16ae:log:72', 'hash': '0x48ff7b6637cbb9b63d5f5179353716b0e1e4410b2138b480be57a8c5347e16ae', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:37:08.000Z'}}, {'blockNum': '0xb15bb4', 'uniqueId': '0xc2c2d5590a5c4b2351c1c46d5bfa2edd47c6e760cf7c9b2f01d25ef964602bbc:log:70', 'hash': '0xc2c2d5590a5c4b2351c1c46d5bfa2edd47c6e760cf7c9b2f01d25ef964602bbc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 113514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x43a8dca0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:40:36.000Z'}}, {'blockNum': '0xb15bb5', 'uniqueId': '0x28c9918e7666e82b0fe21006df2646aabf79ba07af0a61a4a83889d7505e19db:log:126', 'hash': '0x28c9918e7666e82b0fe21006df2646aabf79ba07af0a61a4a83889d7505e19db', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 7928.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04b9cef0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:40:38.000Z'}}, {'blockNum': '0xb15bb9', 'uniqueId': '0x1a01ee71e0583d46cff04fe5db0ace96d5d1b2e25c21e633594d9324de6221b5:log:148', 'hash': '0x1a01ee71e0583d46cff04fe5db0ace96d5d1b2e25c21e633594d9324de6221b5', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 81446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x308bac60', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:41:07.000Z'}}, {'blockNum': '0xb15bb9', 'uniqueId': '0x148a6e22a62d1bfb38ec9460e91d3c0133e3d260b74ac34237eaefd0ff42d201:log:149', 'hash': '0x148a6e22a62d1bfb38ec9460e91d3c0133e3d260b74ac34237eaefd0ff42d201', 'from': '0xa614221a6234c588876a278b2fa3f6371595dfb3', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 50023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1dd0e770', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:41:07.000Z'}}, {'blockNum': '0xb15bb9', 'uniqueId': '0x5802c776e508640d8e5384fcc052fca1486293d3f299dec33aad62cae1ecd046:log:150', 'hash': '0x5802c776e508640d8e5384fcc052fca1486293d3f299dec33aad62cae1ecd046', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 11660.305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x06f338aa', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:41:07.000Z'}}, {'blockNum': '0xb15bc0', 'uniqueId': '0x3b9b96f132f7f86ef341b7e0305a8bd7adb1562a1e24d68d1aaf89ec47af676a:log:186', 'hash': '0x3b9b96f132f7f86ef341b7e0305a8bd7adb1562a1e24d68d1aaf89ec47af676a', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x96fce4c177b4fe24f7f3af0ab78f4b54c44aa507', 'value': 29982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11dee3e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:42:29.000Z'}}, {'blockNum': '0xb15bd5', 'uniqueId': '0x97ea56db26934ada570149429d77144dd7d8c473956ae7ba73e6babbaeb11c6d:log:293', 'hash': '0x97ea56db26934ada570149429d77144dd7d8c473956ae7ba73e6babbaeb11c6d', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 9681.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05c53be0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:49:29.000Z'}}, {'blockNum': '0xb15bec', 'uniqueId': '0x94fc3ee7a220c210e85e72b5e05492e796c1e054dea08baee95db7d209932b45:log:80', 'hash': '0x94fc3ee7a220c210e85e72b5e05492e796c1e054dea08baee95db7d209932b45', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x96fce4c177b4fe24f7f3af0ab78f4b54c44aa507', 'value': 49982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1dcaa5e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:54:34.000Z'}}, {'blockNum': '0xb15c09', 'uniqueId': '0x110ad3174559d586af6df207d0f559c6539883bf83ecbb2938dd075fc8ae3df9:log:166', 'hash': '0x110ad3174559d586af6df207d0f559c6539883bf83ecbb2938dd075fc8ae3df9', 'from': '0x96fce4c177b4fe24f7f3af0ab78f4b54c44aa507', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 79964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2fa989c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:01:06.000Z'}}, {'blockNum': '0xb15c09', 'uniqueId': '0x6fc03d4e47c2afe192c2bab8da3a33b4df015f33f76ed60ffff6fa6aff0bfd68:log:167', 'hash': '0x6fc03d4e47c2afe192c2bab8da3a33b4df015f33f76ed60ffff6fa6aff0bfd68', 'from': '0x36f2b710c09ca5b4cb287e9bdcd357202993ab0f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8811.865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0540957a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:01:06.000Z'}}, {'blockNum': '0xb15c1c', 'uniqueId': '0x45dba61e2a1b07f24708f657666f830e22c44ed3b162830e747094413f2b7892:log:396', 'hash': '0x45dba61e2a1b07f24708f657666f830e22c44ed3b162830e747094413f2b7892', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 11989.975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07258666', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:05:13.000Z'}}, {'blockNum': '0xb15c2a', 'uniqueId': '0x17ae797f93eed5f7c3e414dd26aadf40872501f6da84a5bc128edd81dc72eab2:log:334', 'hash': '0x17ae797f93eed5f7c3e414dd26aadf40872501f6da84a5bc128edd81dc72eab2', 'from': '0x22b0ac0be4633f57fa4457268ad365c11227e172', 'to': '0x1cbc7f14a99efd6c0f72e029c60d4b7d48aa272a', 'value': 746.966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x71fa5c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:08:38.000Z'}}, {'blockNum': '0xb15c2e', 'uniqueId': '0x0e2fd9f56b0b5884248ea729bedbf611c7f7ff484c30d00bd9860d750e2649aa:log:111', 'hash': '0x0e2fd9f56b0b5884248ea729bedbf611c7f7ff484c30d00bd9860d750e2649aa', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe2e0d798dbddb1c66d499ade2f065303e9f3a3ad', 'value': 503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4cc070', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:09:54.000Z'}}, {'blockNum': '0xb15c4d', 'uniqueId': '0xe44af12791e59938cdf6b23a22c607373beb0142e8580b012f6f7f82bfa991c8:log:196', 'hash': '0xe44af12791e59938cdf6b23a22c607373beb0142e8580b012f6f7f82bfa991c8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 41737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x18e08f90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:16:17.000Z'}}, {'blockNum': '0xb15c61', 'uniqueId': '0x77e7b9fdfb7111079d39ef86cbf8e1cfee2b23cd4a1322da0789f8375183f662:log:46', 'hash': '0x77e7b9fdfb7111079d39ef86cbf8e1cfee2b23cd4a1322da0789f8375183f662', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 119352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4723ab80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:20:41.000Z'}}, {'blockNum': '0xb15c63', 'uniqueId': '0xab032a768e9c28374a098a67792a19c74105d93017d257d762d379f22f23c6f7:log:352', 'hash': '0xab032a768e9c28374a098a67792a19c74105d93017d257d762d379f22f23c6f7', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 11989.975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07258666', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:21:25.000Z'}}, {'blockNum': '0xb15c73', 'uniqueId': '0x5865d12d05f0cf41b51fd76a5b4b987b0c80cecf317c544d339b682c031095a9:log:116', 'hash': '0x5865d12d05f0cf41b51fd76a5b4b987b0c80cecf317c544d339b682c031095a9', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 41737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x18e08f90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:25:53.000Z'}}, {'blockNum': '0xb15c79', 'uniqueId': '0xaa9fc428067ae72e2e595b2d282c9f78660321b4a12c50a9f13627c3079ce286:log:17', 'hash': '0xaa9fc428067ae72e2e595b2d282c9f78660321b4a12c50a9f13627c3079ce286', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 37977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x16a2d490', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:28:01.000Z'}}, {'blockNum': '0xb15c87', 'uniqueId': '0x03d55e8da625d98bd3c7f4de2b474f46149fe89c9d54560ba8b3fdb080fc6122:log:307', 'hash': '0x03d55e8da625d98bd3c7f4de2b474f46149fe89c9d54560ba8b3fdb080fc6122', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 37977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x16a2d490', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:31:24.000Z'}}, {'blockNum': '0xb15c95', 'uniqueId': '0xc2ffe2fd66ce0727ac595c42921d4d2da831eabd4fec3d06daa9d1317a344884:log:263', 'hash': '0xc2ffe2fd66ce0727ac595c42921d4d2da831eabd4fec3d06daa9d1317a344884', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 15075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fc4330', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:34:19.000Z'}}, {'blockNum': '0xb15cb1', 'uniqueId': '0xc699135fbeb4e5e9a7a34ca4aaebaf754b1de531869ca4db829e18faf123767c:log:163', 'hash': '0xc699135fbeb4e5e9a7a34ca4aaebaf754b1de531869ca4db829e18faf123767c', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fc4330', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:41:32.000Z'}}, {'blockNum': '0xb15cb7', 'uniqueId': '0x8ab9c16ba102d0fef09ee2cb57819bd6203950f8a79b16971e31cc67db51967a:log:229', 'hash': '0x8ab9c16ba102d0fef09ee2cb57819bd6203950f8a79b16971e31cc67db51967a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2357c44eba59ebbb3a4c079388206b52b347b0af', 'value': 77, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0bbfd0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:42:17.000Z'}}, {'blockNum': '0xb15d01', 'uniqueId': '0x860e77a18459c36594eb096fc07496d5c8d1ae6e3ecfdd7e50a5c37f6829a301:log:48', 'hash': '0x860e77a18459c36594eb096fc07496d5c8d1ae6e3ecfdd7e50a5c37f6829a301', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 12259.705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x074eaeba', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:00:07.000Z'}}, {'blockNum': '0xb15d02', 'uniqueId': '0x398c7f0c0f5f5b077c6a0b443d9832de9f17516fb996ede870fc1b39028573a3:log:89', 'hash': '0x398c7f0c0f5f5b077c6a0b443d9832de9f17516fb996ede870fc1b39028573a3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 8030, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04c947e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:00:09.000Z'}}, {'blockNum': '0xb15d1f', 'uniqueId': '0xd2c02254eeae23607f9f970585414f0c36a2be9d838fbac7e3cdd3eecac38919:log:125', 'hash': '0xd2c02254eeae23607f9f970585414f0c36a2be9d838fbac7e3cdd3eecac38919', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12259.705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x074eaeba', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:07:03.000Z'}}, {'blockNum': '0xb15d1f', 'uniqueId': '0xb0decef9c57033efe4afbe26868a36a4a27eb816e0a630c5f9a39a46e2d8b182:log:126', 'hash': '0xb0decef9c57033efe4afbe26868a36a4a27eb816e0a630c5f9a39a46e2d8b182', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 8030, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04c947e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:07:03.000Z'}}, {'blockNum': '0xb15d22', 'uniqueId': '0x266675c4308f6efbfada1aec8ffa0e4cd8a6d4ed4296a02af7538daa223d82c6:log:211', 'hash': '0x266675c4308f6efbfada1aec8ffa0e4cd8a6d4ed4296a02af7538daa223d82c6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc70c36336037ed70c55440453b8acc64225b22f6', 'value': 4747.225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02d45e7a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:08:02.000Z'}}, {'blockNum': '0xb15d2b', 'uniqueId': '0x99e314f072274c3d9569f597413988095f87511b54f3492b855b8a5ec8d0cc99:log:126', 'hash': '0x99e314f072274c3d9569f597413988095f87511b54f3492b855b8a5ec8d0cc99', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1206b730', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:10:24.000Z'}}, {'blockNum': '0xb15d2f', 'uniqueId': '0x918d1e9e4e863880ca9eca4434d4e2d3cbfbf5c5b96080ccb4af8b957c976577:log:83', 'hash': '0x918d1e9e4e863880ca9eca4434d4e2d3cbfbf5c5b96080ccb4af8b957c976577', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x115120f2e6b2866c731d9f9186a7775707843e98', 'value': 1107.2439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa8f3b7', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:11:05.000Z'}}, {'blockNum': '0xb15d38', 'uniqueId': '0xabf2a8e23f6abf6d9893a80c62031e47a8cdcdb50cc36f880c4811efd7bd17dc:log:159', 'hash': '0xabf2a8e23f6abf6d9893a80c62031e47a8cdcdb50cc36f880c4811efd7bd17dc', 'from': '0xc70c36336037ed70c55440453b8acc64225b22f6', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 4747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02d455b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:12:53.000Z'}}, {'blockNum': '0xb15d41', 'uniqueId': '0x9165cf5ecb9fddd36365d23b7fe6ee2c06c2426fba4a8bc921504e3240d1c5f8:log:153', 'hash': '0x9165cf5ecb9fddd36365d23b7fe6ee2c06c2426fba4a8bc921504e3240d1c5f8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 15062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fa4760', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:14:15.000Z'}}, {'blockNum': '0xb15d47', 'uniqueId': '0xd32a43a25e35bc763c214ac5bac021462e43c608607d87828b741a0420373dbf:log:112', 'hash': '0xd32a43a25e35bc763c214ac5bac021462e43c608607d87828b741a0420373dbf', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1206b730', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:16:02.000Z'}}, {'blockNum': '0xb15d59', 'uniqueId': '0xb8ce6e3f04ebfdacb0cb2bb327a1709222f1443b5f23acc476c61348c9e58982:log:297', 'hash': '0xb8ce6e3f04ebfdacb0cb2bb327a1709222f1443b5f23acc476c61348c9e58982', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf20f71e5e5862c6aa009ae4d65d9d1d330d0a7e4', 'value': 7224.9581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x044e70ed', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:20:10.000Z'}}, {'blockNum': '0xb15d5a', 'uniqueId': '0x7e4cf56b503ff0926bf9de3104aeed24169356cf56ffca2acba107f345f57c9d:log:33', 'hash': '0x7e4cf56b503ff0926bf9de3104aeed24169356cf56ffca2acba107f345f57c9d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:21:03.000Z'}}, {'blockNum': '0xb15d6d', 'uniqueId': '0xe55c442232541da9d20376784b9f58be70686423ca9731709c6815a72abff9c6:log:179', 'hash': '0xe55c442232541da9d20376784b9f58be70686423ca9731709c6815a72abff9c6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 29993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11e09190', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:25:42.000Z'}}, {'blockNum': '0xb15d6d', 'uniqueId': '0x5a1fc941b0de0a202a9180a8d4274a4aea287da2fd90bddc73d2aa5c5c1fd8e2:log:181', 'hash': '0x5a1fc941b0de0a202a9180a8d4274a4aea287da2fd90bddc73d2aa5c5c1fd8e2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x166b8f9de0fdee735a08704b9eec47cad599ef60', 'value': 985.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x96733c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:25:42.000Z'}}, {'blockNum': '0xb15d6e', 'uniqueId': '0x64611e8ab3193cc923b0f57f8bd3ea870e4edc540256fb5e93cfef36e7fa6930:log:137', 'hash': '0x64611e8ab3193cc923b0f57f8bd3ea870e4edc540256fb5e93cfef36e7fa6930', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fa4760', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:25:48.000Z'}}, {'blockNum': '0xb15d70', 'uniqueId': '0x963e3c42df5336376261e2637ac5db0f166d4e0bd1bb0101379f3113b23a0ecf:log:217', 'hash': '0x963e3c42df5336376261e2637ac5db0f166d4e0bd1bb0101379f3113b23a0ecf', 'from': '0x115120f2e6b2866c731d9f9186a7775707843e98', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1107.2439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa8f3b7', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:26:16.000Z'}}, {'blockNum': '0xb15d7b', 'uniqueId': '0x1fca774e1dd9bb298876c88fa5011aef32124a2307f40960a25b13dbd09ab072:log:208', 'hash': '0x1fca774e1dd9bb298876c88fa5011aef32124a2307f40960a25b13dbd09ab072', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20612.932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4948a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:28:43.000Z'}}, {'blockNum': '0xb15d8f', 'uniqueId': '0xaea210c5d57c4936311f84e2d3261fa1ba71a63c0a299bedcefdba92faea0b29:log:72', 'hash': '0xaea210c5d57c4936311f84e2d3261fa1ba71a63c0a299bedcefdba92faea0b29', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:32:05.000Z'}}, {'blockNum': '0xb15d8f', 'uniqueId': '0xdaa10214496f6efff275c9100384ab9e98472f5e328627f16121745cda97ce55:log:73', 'hash': '0xdaa10214496f6efff275c9100384ab9e98472f5e328627f16121745cda97ce55', 'from': '0xf20f71e5e5862c6aa009ae4d65d9d1d330d0a7e4', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 7224.9581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x044e70ed', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:32:05.000Z'}}, {'blockNum': '0xb15d92', 'uniqueId': '0xb12d4a68241a7279e8ed3852b5359d22737dcd5b1962d14a6f8a28ef28974760:log:21', 'hash': '0xb12d4a68241a7279e8ed3852b5359d22737dcd5b1962d14a6f8a28ef28974760', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:32:17.000Z'}}, {'blockNum': '0xb15d9e', 'uniqueId': '0x55686289a1c298f31df6ba170a4b3196acb69228408cb74d907bc5220abc8962:log:30', 'hash': '0x55686289a1c298f31df6ba170a4b3196acb69228408cb74d907bc5220abc8962', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 15050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08f872a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:34:40.000Z'}}, {'blockNum': '0xb15da1', 'uniqueId': '0x9702ed37b4176b9c3af0884f3e6b801355d2be26fbae6ebc858f02916e4283f4:log:218', 'hash': '0x9702ed37b4176b9c3af0884f3e6b801355d2be26fbae6ebc858f02916e4283f4', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xa97776574b43f8aad31f6e11fe60346f790a0565', 'value': 1732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01084840', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:35:38.000Z'}}, {'blockNum': '0xb15da5', 'uniqueId': '0xd0bac325ad1f95bb20255d5c02bc2571ba00de75f172f3d1e3466ab6078f4848:log:6', 'hash': '0xd0bac325ad1f95bb20255d5c02bc2571ba00de75f172f3d1e3466ab6078f4848', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 12442.528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x076a9440', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:36:56.000Z'}}, {'blockNum': '0xb15dc3', 'uniqueId': '0x1b803d8eaed11e020127edca7600cc45731b82dfc03d82a33ec143e54e622b00:log:174', 'hash': '0x1b803d8eaed11e020127edca7600cc45731b82dfc03d82a33ec143e54e622b00', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 29993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11e09190', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:41:36.000Z'}}, {'blockNum': '0xb15dc3', 'uniqueId': '0xa892385f12c83d087fe84b3c9b55398efb96b8ac9f928657e91740eba9d5eea2:log:176', 'hash': '0xa892385f12c83d087fe84b3c9b55398efb96b8ac9f928657e91740eba9d5eea2', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20612.932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4948a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:41:36.000Z'}}, {'blockNum': '0xb15dc3', 'uniqueId': '0x15da1aa449f8a302f9d99df6d28e42e31c4e6d49ad39419dd56de922e3720455:log:178', 'hash': '0x15da1aa449f8a302f9d99df6d28e42e31c4e6d49ad39419dd56de922e3720455', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:41:36.000Z'}}, {'blockNum': '0xb15dda', 'uniqueId': '0xced4f3fbe7d7dee784c6e5702e48eafaa0f68f439d94c414612e20f613592ee6:log:241', 'hash': '0xced4f3fbe7d7dee784c6e5702e48eafaa0f68f439d94c414612e20f613592ee6', 'from': '0xa97776574b43f8aad31f6e11fe60346f790a0565', 'to': '0x3ee9b4c7598a2ab4e6237734b2944e6914b02c1c', 'value': 1732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01084840', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:46:21.000Z'}}, {'blockNum': '0xb15ddc', 'uniqueId': '0x70a13ae96a6263172b4cc2f6310658b0ecee70e33edf84b74e77ff2aaf1737d1:log:87', 'hash': '0x70a13ae96a6263172b4cc2f6310658b0ecee70e33edf84b74e77ff2aaf1737d1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 105415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x3ed50d70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:46:42.000Z'}}, {'blockNum': '0xb15ddd', 'uniqueId': '0x97b243a28449b3268e245aeb63a9a73e80f5e3736b2486a4850b7df133d82ec3:log:136', 'hash': '0x97b243a28449b3268e245aeb63a9a73e80f5e3736b2486a4850b7df133d82ec3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 120803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x48011330', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:47:12.000Z'}}, {'blockNum': '0xb15ddd', 'uniqueId': '0x3e0c6ee4285ef01eec5d7fc417080f9661043e842f49d8e7108ff102345d36d7:log:137', 'hash': '0x3e0c6ee4285ef01eec5d7fc417080f9661043e842f49d8e7108ff102345d36d7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 115415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x44caee70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:47:12.000Z'}}, {'blockNum': '0xb15de2', 'uniqueId': '0xdd2b6eb948bd158e9a6b85a1e13965a2cfdd5036692077d3df20a149b638cd02:log:207', 'hash': '0xdd2b6eb948bd158e9a6b85a1e13965a2cfdd5036692077d3df20a149b638cd02', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08f872a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:47:39.000Z'}}, {'blockNum': '0xb15de2', 'uniqueId': '0xeac26c6e3091d0039d41b013bb755eadfff7c21f0e47cd19ab53396d5269565a:log:210', 'hash': '0xeac26c6e3091d0039d41b013bb755eadfff7c21f0e47cd19ab53396d5269565a', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12442.528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x076a9440', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:47:39.000Z'}}, {'blockNum': '0xb15df8', 'uniqueId': '0xf711a358126096ce8d673e3e4fb860df5d05216c7c1076f41146b2ae82bc4e70:log:362', 'hash': '0xf711a358126096ce8d673e3e4fb860df5d05216c7c1076f41146b2ae82bc4e70', 'from': '0x375f6832e2eff62823fa952706a2cae1230d8b09', 'to': '0x085a16f8d09daac0ee897dc62526e22e3185240d', 'value': 501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4c7250', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:53:19.000Z'}}, {'blockNum': '0xb15e08', 'uniqueId': '0x1bd7a7f872029017c48d602a3dcad00df59df5855405e60fc2479af27ed04c2a:log:15', 'hash': '0x1bd7a7f872029017c48d602a3dcad00df59df5855405e60fc2479af27ed04c2a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11fbe1c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:57:21.000Z'}}, {'blockNum': '0xb15e0e', 'uniqueId': '0x09453cb0996d5fc208fbc7f0a7f3f44bae5705a813acef470954ade3bf2caea6:log:18', 'hash': '0x09453cb0996d5fc208fbc7f0a7f3f44bae5705a813acef470954ade3bf2caea6', 'from': '0x3ee9b4c7598a2ab4e6237734b2944e6914b02c1c', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 1732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01084840', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:58:21.000Z'}}, {'blockNum': '0xb15e17', 'uniqueId': '0xfa58e140dbe2c38c4a879d6a2fa15e0f3214e1bfe6fdd49aa8a4eac3ede922b1:log:168', 'hash': '0xfa58e140dbe2c38c4a879d6a2fa15e0f3214e1bfe6fdd49aa8a4eac3ede922b1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'value': 1645.349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xfb0f72', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:59:52.000Z'}}, {'blockNum': '0xb15e19', 'uniqueId': '0xdbc97c9fd02593ba52eae3137808f6f5aca8a9924885dca63e14b474e1a9615f:log:61', 'hash': '0xdbc97c9fd02593ba52eae3137808f6f5aca8a9924885dca63e14b474e1a9615f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4c5890', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:00:44.000Z'}}, {'blockNum': '0xb15e31', 'uniqueId': '0x2addca04f888bed6db9a7c8dde4cd61b62163c7ec48764d6eddd914915b79df6:log:56', 'hash': '0x2addca04f888bed6db9a7c8dde4cd61b62163c7ec48764d6eddd914915b79df6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 32493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x135e09d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:05:38.000Z'}}, {'blockNum': '0xb15e32', 'uniqueId': '0xbc983a5cd4a508b8092c22ad1bc6f8afe1b9bc5d35b1265ac3406cc0f611bad9:log:84', 'hash': '0xbc983a5cd4a508b8092c22ad1bc6f8afe1b9bc5d35b1265ac3406cc0f611bad9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 12504.457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0774075a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:05:56.000Z'}}, {'blockNum': '0xb15e40', 'uniqueId': '0xbcee3e381d252ce8a0f24860a1026b49ae93442e2a1a7ea883624283821620cb:log:105', 'hash': '0xbcee3e381d252ce8a0f24860a1026b49ae93442e2a1a7ea883624283821620cb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 28053.0374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x10b88dc6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:08:48.000Z'}}, {'blockNum': '0xb15e40', 'uniqueId': '0x54cc3d12c1e3988d21932f46a3b24423858f8209abf8edaa78c19fb30215f224:log:106', 'hash': '0x54cc3d12c1e3988d21932f46a3b24423858f8209abf8edaa78c19fb30215f224', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:08:48.000Z'}}, {'blockNum': '0xb15e4c', 'uniqueId': '0x0b8770b9f85028b4360b938864f35020709c7aede257b79a224d0af2259ae2b9:log:72', 'hash': '0x0b8770b9f85028b4360b938864f35020709c7aede257b79a224d0af2259ae2b9', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 62665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2559eb90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:11:35.000Z'}}, {'blockNum': '0xb15e4c', 'uniqueId': '0xc3f93c570b2aecf509eb8cfd53c65bcadd6c373e88d15009346e893de40c686a:log:73', 'hash': '0xc3f93c570b2aecf509eb8cfd53c65bcadd6c373e88d15009346e893de40c686a', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4c5890', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:11:35.000Z'}}, {'blockNum': '0xb15e4c', 'uniqueId': '0x0d13055cf54acdb21394ba29bd89181677611d18902af5d4904741281a17ac43:log:74', 'hash': '0x0d13055cf54acdb21394ba29bd89181677611d18902af5d4904741281a17ac43', 'from': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1645.349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xfb0f72', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:11:35.000Z'}}, {'blockNum': '0xb15e66', 'uniqueId': '0x6d371b2a7fbffa8421a60b35870af09f372e253316a75d46d959145a5362f27e:log:294', 'hash': '0x6d371b2a7fbffa8421a60b35870af09f372e253316a75d46d959145a5362f27e', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12504.457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0774075a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:16:30.000Z'}}, {'blockNum': '0xb15e7e', 'uniqueId': '0x245eedb5547599d84f370b491339fb5bbe5a580018a86e1529af54bfad7f3272:log:208', 'hash': '0x245eedb5547599d84f370b491339fb5bbe5a580018a86e1529af54bfad7f3272', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 28053.0374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x10b88dc6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:21:32.000Z'}}, {'blockNum': '0xb15e7e', 'uniqueId': '0xd21f74e98cd151d6bd731994c953bf65c5436577f966820b0368d913267b2c99:log:209', 'hash': '0xd21f74e98cd151d6bd731994c953bf65c5436577f966820b0368d913267b2c99', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:21:32.000Z'}}, {'blockNum': '0xb15e99', 'uniqueId': '0xb5f3c53b7fe7662b32330bc1303f6b5e9765f9d1ff130e951720af65575e6cc5:log:150', 'hash': '0xb5f3c53b7fe7662b32330bc1303f6b5e9765f9d1ff130e951720af65575e6cc5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4be360', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:27:20.000Z'}}, {'blockNum': '0xb15ea6', 'uniqueId': '0xe9832984a6244f51d943dca99aba9424777ab51232551e52017d63cee84c8d1a:log:152', 'hash': '0xe9832984a6244f51d943dca99aba9424777ab51232551e52017d63cee84c8d1a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 1238.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xbcfed0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:31:16.000Z'}}, {'blockNum': '0xb15eb4', 'uniqueId': '0xd77e8271bbc20302d6de95794565a9626d9d12f953d325551274c09a04c6137f:log:169', 'hash': '0xd77e8271bbc20302d6de95794565a9626d9d12f953d325551274c09a04c6137f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'value': 1660.338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xfd58f4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:33:32.000Z'}}, {'blockNum': '0xb15ec1', 'uniqueId': '0xc21aa388cfe511f3ee75a24b0f4f65edb2024ddedb6aa871dbb957d53d07ad25:log:82', 'hash': '0xc21aa388cfe511f3ee75a24b0f4f65edb2024ddedb6aa871dbb957d53d07ad25', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 31585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12d37d10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:36:34.000Z'}}, {'blockNum': '0xb15eda', 'uniqueId': '0x6c0e03843a0f16f23f93cb2335035c07885c101cc36df93b84019bf767328142:log:93', 'hash': '0x6c0e03843a0f16f23f93cb2335035c07885c101cc36df93b84019bf767328142', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4be360', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:41:26.000Z'}}, {'blockNum': '0xb15eda', 'uniqueId': '0x4c2ff4e60a300e2ee05b4b36d2e80c7129b8453745d15241586f9c4e5f82d4dc:log:94', 'hash': '0x4c2ff4e60a300e2ee05b4b36d2e80c7129b8453745d15241586f9c4e5f82d4dc', 'from': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1660.338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xfd58f4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:41:26.000Z'}}, {'blockNum': '0xb15eda', 'uniqueId': '0x20bd4014736cc33ae367f948011459c2a7c694ed6fdbccc1a654618ec1008853:log:95', 'hash': '0x20bd4014736cc33ae367f948011459c2a7c694ed6fdbccc1a654618ec1008853', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1238.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xbcfed0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:41:26.000Z'}}, {'blockNum': '0xb15eee', 'uniqueId': '0x60ded14451e189237cbcdbad09fa2edfffa05400fe9f349eb1b71f8b0251caf7:log:171', 'hash': '0x60ded14451e189237cbcdbad09fa2edfffa05400fe9f349eb1b71f8b0251caf7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4c3180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:44:18.000Z'}}, {'blockNum': '0xb15ef0', 'uniqueId': '0x3bc8d20bfff14715a3ee482f5150fc5a8ca2dde084bf425cbdc831278a9605b2:log:200', 'hash': '0x3bc8d20bfff14715a3ee482f5150fc5a8ca2dde084bf425cbdc831278a9605b2', 'from': '0x22734e9fcc8285b0e2f46e53c9fb3ee92a28d01f', 'to': '0x43d5648ba63ba5f3d546b1e8cd19e64ad39aab2e', 'value': 540, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5265c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:45:01.000Z'}}, {'blockNum': '0xb15ef3', 'uniqueId': '0x2608458f77516bbfa1473a6a7e68581e1f7f42e8cbb42eeece0bf62507270c65:log:267', 'hash': '0x2608458f77516bbfa1473a6a7e68581e1f7f42e8cbb42eeece0bf62507270c65', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 31585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12d37d10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:45:57.000Z'}}, {'blockNum': '0xb15ef4', 'uniqueId': '0x0eb5255a27bc18de8efa0605d6ecc4cee0a81d259ff26dc8d4676bf7117bd018:log:43', 'hash': '0x0eb5255a27bc18de8efa0605d6ecc4cee0a81d259ff26dc8d4676bf7117bd018', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4c3180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:46:17.000Z'}}, {'blockNum': '0xb15f54', 'uniqueId': '0xa3529b9e67e21f376d7eb26a5dca129111e0fd779fdc9bd7dd30eab11b50782f:log:118', 'hash': '0xa3529b9e67e21f376d7eb26a5dca129111e0fd779fdc9bd7dd30eab11b50782f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12050980', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:09:02.000Z'}}, {'blockNum': '0xb15f77', 'uniqueId': '0x4d72f1edff13c938e2f6621c6668503deeacc176ae1b6260e7ecacb47d0053d7:log:226', 'hash': '0x4d72f1edff13c938e2f6621c6668503deeacc176ae1b6260e7ecacb47d0053d7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4ca6b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:16:46.000Z'}}, {'blockNum': '0xb15f83', 'uniqueId': '0x959bdab2cdd8ea8716256323a78851744857a19fdc1641c0fda6ac8ce9eac79b:log:136', 'hash': '0x959bdab2cdd8ea8716256323a78851744857a19fdc1641c0fda6ac8ce9eac79b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 1017.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x9b3660', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:19:35.000Z'}}, {'blockNum': '0xb15f87', 'uniqueId': '0x55af6e76472b1c552617709537050d5ca3e1366a1fdd9ea2c0f18178caebe5dd:log:176', 'hash': '0x55af6e76472b1c552617709537050d5ca3e1366a1fdd9ea2c0f18178caebe5dd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 118934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x46e3e360', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:20:36.000Z'}}, {'blockNum': '0xb15f8c', 'uniqueId': '0x6f3f2d584214cbdb796a37c05016a9a1394ffd5bbbd3b51375c3dafb9d778a4d:log:147', 'hash': '0x6f3f2d584214cbdb796a37c05016a9a1394ffd5bbbd3b51375c3dafb9d778a4d', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12050980', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:21:39.000Z'}}, {'blockNum': '0xb15f9f', 'uniqueId': '0x45e7c7930b84a73f6dc492ec9a8f4f35ab6d6285081f9772266de92e766c3694:log:201', 'hash': '0x45e7c7930b84a73f6dc492ec9a8f4f35ab6d6285081f9772266de92e766c3694', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4ca6b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:26:16.000Z'}}, {'blockNum': '0xb15f9f', 'uniqueId': '0x74c77b1bd4c17cbfc217389ab1e4bf23ccdac90cd256032919f4385ab97068c8:log:202', 'hash': '0x74c77b1bd4c17cbfc217389ab1e4bf23ccdac90cd256032919f4385ab97068c8', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1017.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x9b3660', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:26:16.000Z'}}, {'blockNum': '0xb15fc3', 'uniqueId': '0x4e905520cf804859bb057274266a857a828fe00000f3d29418f61a14364e23d9:log:158', 'hash': '0x4e905520cf804859bb057274266a857a828fe00000f3d29418f61a14364e23d9', 'from': '0x668877a76f7b9d74c9af8a9b7c204a186460bf92', 'to': '0xaf0f7108b52f05f8afd024fd8aeec7e0e7058a68', 'value': 3779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0240a130', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:35:20.000Z'}}, {'blockNum': '0xb15fd9', 'uniqueId': '0xe5a51fd5d80c1ba6abf1e2cd98aa55e571ec63e63a4dc945291dd0da6d8fa54d:log:111', 'hash': '0xe5a51fd5d80c1ba6abf1e2cd98aa55e571ec63e63a4dc945291dd0da6d8fa54d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4d1be0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:41:48.000Z'}}, {'blockNum': '0xb15fde', 'uniqueId': '0xfd3cc48527ae42c3b0a50ac844e6d792b83fc432591cdd644e94bbd960a5ab2f:log:65', 'hash': '0xfd3cc48527ae42c3b0a50ac844e6d792b83fc432591cdd644e94bbd960a5ab2f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 35936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x156b6600', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:43:56.000Z'}}, {'blockNum': '0xb15fed', 'uniqueId': '0x1ff12208aeb0095af6c157eb456dece450629613d97428a70f1e6140859e65da:log:176', 'hash': '0x1ff12208aeb0095af6c157eb456dece450629613d97428a70f1e6140859e65da', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:47:46.000Z'}}, {'blockNum': '0xb15ff1', 'uniqueId': '0x627e2e9241bf74f81cf34c2bb0cf1439d778385fa3e4080fb0c244427a148b7e:log:60', 'hash': '0x627e2e9241bf74f81cf34c2bb0cf1439d778385fa3e4080fb0c244427a148b7e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x11e43f92c0c98839bfddd9c0640d037015b69e2b', 'value': 4674.9086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02c9559e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:49:30.000Z'}}, {'blockNum': '0xb15ff8', 'uniqueId': '0x30eb8bdc0db5649ff10a78a282dde348f5da3a11dd77f0b15772b44c039d0ab1:log:99', 'hash': '0x30eb8bdc0db5649ff10a78a282dde348f5da3a11dd77f0b15772b44c039d0ab1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 948.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x90c298', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:50:37.000Z'}}, {'blockNum': '0xb15ffb', 'uniqueId': '0x2f93463e3ec5d9f0e6a13cae57c962afe76ca3b1162bf56ce13cc806d183369e:log:225', 'hash': '0x2f93463e3ec5d9f0e6a13cae57c962afe76ca3b1162bf56ce13cc806d183369e', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 35936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x156b6600', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:51:11.000Z'}}, {'blockNum': '0xb15ffb', 'uniqueId': '0x872090d24155a3c1cc9947a941f619ab7c027e0a712eb185d024b1c7984bfc81:log:226', 'hash': '0x872090d24155a3c1cc9947a941f619ab7c027e0a712eb185d024b1c7984bfc81', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4d1be0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:51:11.000Z'}}, {'blockNum': '0xb16012', 'uniqueId': '0xb19bde4897591e0b18e1fda0619ef9133c127e4de3b52bc1f67e6a4afbacafc0:log:10', 'hash': '0xb19bde4897591e0b18e1fda0619ef9133c127e4de3b52bc1f67e6a4afbacafc0', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:55:53.000Z'}}, {'blockNum': '0xb16013', 'uniqueId': '0xe964a6fffad0cc03700c82258bdcfe1055a27c4bac4f1d1ff748a397381274e4:log:125', 'hash': '0xe964a6fffad0cc03700c82258bdcfe1055a27c4bac4f1d1ff748a397381274e4', 'from': '0x11e43f92c0c98839bfddd9c0640d037015b69e2b', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 4674.9086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02c9559e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:55:55.000Z'}}, {'blockNum': '0xb1602e', 'uniqueId': '0x8f8c66db455645c6091c8fd01850c12a4f0aed4985f0f16c426d8597ff9c5bee:log:40', 'hash': '0x8f8c66db455645c6091c8fd01850c12a4f0aed4985f0f16c426d8597ff9c5bee', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 2526.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x018173c8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:01:38.000Z'}}, {'blockNum': '0xb16034', 'uniqueId': '0xdcd63e0a5899b4d7bab5c0beb6352d673d37ba292e99a9b7d025c553da94ad99:log:37', 'hash': '0xdcd63e0a5899b4d7bab5c0beb6352d673d37ba292e99a9b7d025c553da94ad99', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 31640, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12dbe180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:03:01.000Z'}}, {'blockNum': '0xb16042', 'uniqueId': '0x4e426e2d0baf8c9e172b70df2ea25e15bb4e19cc3790e40c86f6168f76505a9d:log:72', 'hash': '0x4e426e2d0baf8c9e172b70df2ea25e15bb4e19cc3790e40c86f6168f76505a9d', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 3474.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02123660', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:05:55.000Z'}}, {'blockNum': '0xb1605d', 'uniqueId': '0xc0e1217930ad5d829610a4e132ed09e98611f8c7bc58405035e9887b6ccfcc83:log:300', 'hash': '0xc0e1217930ad5d829610a4e132ed09e98611f8c7bc58405035e9887b6ccfcc83', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 31640, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12dbe180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:11:49.000Z'}}, {'blockNum': '0xb16063', 'uniqueId': '0x5075d7af39d1f2f86b19d4dd36bc5f60bd5d33b97d3f7aae9c707caa0996864e:log:137', 'hash': '0x5075d7af39d1f2f86b19d4dd36bc5f60bd5d33b97d3f7aae9c707caa0996864e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4bbc50', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:12:40.000Z'}}, {'blockNum': '0xb16074', 'uniqueId': '0x2684baf748bcbba453a2167391e93dbe22827555281c3b48a8c6aadf829a4dec:log:102', 'hash': '0x2684baf748bcbba453a2167391e93dbe22827555281c3b48a8c6aadf829a4dec', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 32417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x13527110', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:15:54.000Z'}}, {'blockNum': '0xb16083', 'uniqueId': '0x7f6c55cbf71bc3142fd20b6ce4c1ede6e4f6a997e5f47543f708469c98f221ff:log:112', 'hash': '0x7f6c55cbf71bc3142fd20b6ce4c1ede6e4f6a997e5f47543f708469c98f221ff', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 7510.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x047a06d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:19:23.000Z'}}, {'blockNum': '0xb1608c', 'uniqueId': '0x2ec34aedf11720b0557b0d46d0baa00392446193151ff3be8ea890e7184cb957:log:102', 'hash': '0x2ec34aedf11720b0557b0d46d0baa00392446193151ff3be8ea890e7184cb957', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 32417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x13527110', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:22:10.000Z'}}, {'blockNum': '0xb1608c', 'uniqueId': '0xa686a924452fce17dcb8528f0737be02a74220ecb2c986c647a43c6ae6ca78d0:log:103', 'hash': '0xa686a924452fce17dcb8528f0737be02a74220ecb2c986c647a43c6ae6ca78d0', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4bbc50', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:22:10.000Z'}}, {'blockNum': '0xb1608c', 'uniqueId': '0xa59aba2c319da86c103d6b766c7a44c3edd524d246fed3bc181d0a8a260b4560:log:104', 'hash': '0xa59aba2c319da86c103d6b766c7a44c3edd524d246fed3bc181d0a8a260b4560', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 7510.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x047a06d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:22:10.000Z'}}, {'blockNum': '0xb160b0', 'uniqueId': '0xbde9c275d5f7b2e04b8c661d5ee27c41d3c6d61e2372790daf431d93bd65831c:log:60', 'hash': '0xbde9c275d5f7b2e04b8c661d5ee27c41d3c6d61e2372790daf431d93bd65831c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20600.1634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4755e2', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:31:25.000Z'}}, {'blockNum': '0xb160b8', 'uniqueId': '0xa9b45715b754ece85217f01284ec20cff0389d98fd1506edf4e0574221bf6f4e:log:26', 'hash': '0xa9b45715b754ece85217f01284ec20cff0389d98fd1506edf4e0574221bf6f4e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:32:53.000Z'}}, {'blockNum': '0xb160c8', 'uniqueId': '0x52c74d6fe4a3a1be58831814fd0c3a373ed40593b86fd5a66e69b533b945ebd4:log:133', 'hash': '0x52c74d6fe4a3a1be58831814fd0c3a373ed40593b86fd5a66e69b533b945ebd4', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20600.1634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4755e2', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:37:34.000Z'}}, {'blockNum': '0xb160ca', 'uniqueId': '0xc0dc5d525fd02982c6eb6c31e76f16f670c3af19d57ab56e1286dd909a24f5a5:log:166', 'hash': '0xc0dc5d525fd02982c6eb6c31e76f16f670c3af19d57ab56e1286dd909a24f5a5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x123f2c50', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:37:38.000Z'}}, {'blockNum': '0xb160df', 'uniqueId': '0xbbda20cf53faaffff353a48d6f551e4b93b69863017c7fafd9d0c7d5cdcee5fe:log:107', 'hash': '0xbbda20cf53faaffff353a48d6f551e4b93b69863017c7fafd9d0c7d5cdcee5fe', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:41:22.000Z'}}, {'blockNum': '0xb160e9', 'uniqueId': '0x1b24a7d09193a642afdd556c430e6b812568334acc8224beed8783fa99de2b86:log:28', 'hash': '0x1b24a7d09193a642afdd556c430e6b812568334acc8224beed8783fa99de2b86', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 7520.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x047b9928', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:42:46.000Z'}}, {'blockNum': '0xb160f9', 'uniqueId': '0x819ffd1a1a13bf0d18769244e1a202cbd4f493175304a11c49816f40133ff491:log:28', 'hash': '0x819ffd1a1a13bf0d18769244e1a202cbd4f493175304a11c49816f40133ff491', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x123f2c50', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:45:59.000Z'}}, {'blockNum': '0xb16100', 'uniqueId': '0x976ec3ad8ef324a4973a821f2b4ecf1e3a3b1fc25dc5c06132b5b4099da12637:log:115', 'hash': '0x976ec3ad8ef324a4973a821f2b4ecf1e3a3b1fc25dc5c06132b5b4099da12637', 'from': '0x688ce0199ff85bc4288d38ee86a20a1cea4ae512', 'to': '0x3eccea963b453963d3e7a053515f337d7e35992f', 'value': 58.439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08eac6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:46:47.000Z'}}, {'blockNum': '0xb16114', 'uniqueId': '0x4517dbcf6004e96114d3c4c4d5e5f5edf718bd732a2df482f2e4b6f8d57f42e6:log:232', 'hash': '0x4517dbcf6004e96114d3c4c4d5e5f5edf718bd732a2df482f2e4b6f8d57f42e6', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 7520.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x047b9928', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:51:46.000Z'}}, {'blockNum': '0xb16146', 'uniqueId': '0x66484770613b92eaca1e3f079e5341adcc3ac6d527a6b70f2765f83aa1b6c04e:log:20', 'hash': '0x66484770613b92eaca1e3f079e5341adcc3ac6d527a6b70f2765f83aa1b6c04e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 7492.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04773bf8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:01:14.000Z'}}, {'blockNum': '0xb1614b', 'uniqueId': '0x7f76348cd4521fe84ab2385fdd2f13c559cd85762f05c69e004a2630b5378399:log:157', 'hash': '0x7f76348cd4521fe84ab2385fdd2f13c559cd85762f05c69e004a2630b5378399', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20651.8366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4f385e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:02:34.000Z'}}, {'blockNum': '0xb16166', 'uniqueId': '0x56602af9c0aaca9a729999866f96af75f42b8e20419d787d524bd00357dfc611:log:207', 'hash': '0x56602af9c0aaca9a729999866f96af75f42b8e20419d787d524bd00357dfc611', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11f61560', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:08:45.000Z'}}, {'blockNum': '0xb16177', 'uniqueId': '0x1d6f6b7016fcb1f9b19c3443612c24db695f7eaa153a7dfd1d9f56730a8c152e:log:219', 'hash': '0x1d6f6b7016fcb1f9b19c3443612c24db695f7eaa153a7dfd1d9f56730a8c152e', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20651.8366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4f385e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:12:20.000Z'}}, {'blockNum': '0xb16184', 'uniqueId': '0xdfd362de2b8ad0c27e7eaa175aea49b13e869a7ecf11cc8a296de628d6053bc7:log:181', 'hash': '0xdfd362de2b8ad0c27e7eaa175aea49b13e869a7ecf11cc8a296de628d6053bc7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 15106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0900fe20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:14:37.000Z'}}, {'blockNum': '0xb1619a', 'uniqueId': '0xef5d0c186a4eb65f35aa044d6b5f3d5b0b14534baf5c438af327447595582c21:log:67', 'hash': '0xef5d0c186a4eb65f35aa044d6b5f3d5b0b14534baf5c438af327447595582c21', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x11e43f92c0c98839bfddd9c0640d037015b69e2b', 'value': 4708.261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02ce6c72', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:20:21.000Z'}}, {'blockNum': '0xb1619c', 'uniqueId': '0xc8154bd1e799aa0c229a79dd2ad8aa46d2fd2fd558ec5d9865c142948c8e5f17:log:192', 'hash': '0xc8154bd1e799aa0c229a79dd2ad8aa46d2fd2fd558ec5d9865c142948c8e5f17', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 7492.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04773bf8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:20:54.000Z'}}, {'blockNum': '0xb1619d', 'uniqueId': '0x497776a66b4cc28e0d4a977076e9ad8750b17c65d488876e44200f96c13ab54c:log:39', 'hash': '0x497776a66b4cc28e0d4a977076e9ad8750b17c65d488876e44200f96c13ab54c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 7371.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0464c180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:21:15.000Z'}}, {'blockNum': '0xb1619f', 'uniqueId': '0x873ead121eca6ae03842096abb8b66bf1d97ad7423baef28e491d41c22fdc93f:log:300', 'hash': '0x873ead121eca6ae03842096abb8b66bf1d97ad7423baef28e491d41c22fdc93f', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11f61560', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:22:36.000Z'}}, {'blockNum': '0xb161a6', 'uniqueId': '0x1e1102656e7442cd69eb5b58f1ddcfbecee4102075f1d0f364f127b77309beaf:log:71', 'hash': '0x1e1102656e7442cd69eb5b58f1ddcfbecee4102075f1d0f364f127b77309beaf', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1242d5d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:23:15.000Z'}}, {'blockNum': '0xb161b5', 'uniqueId': '0x71f117ba11c017337b24ab999161fb7afa6dfc748b1687b4d7378909514edd75:log:265', 'hash': '0x71f117ba11c017337b24ab999161fb7afa6dfc748b1687b4d7378909514edd75', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1242d5d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:26:11.000Z'}}, {'blockNum': '0xb161b6', 'uniqueId': '0xa502c660598ee8ef63c54d535fbb00d84c06e77d01eaba15777ea729ff8b9e8e:log:43', 'hash': '0xa502c660598ee8ef63c54d535fbb00d84c06e77d01eaba15777ea729ff8b9e8e', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0900fe20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:26:37.000Z'}}, {'blockNum': '0xb161c7', 'uniqueId': '0x97467ca8b7278bd79d7fb848cbce2e7d5114943f56bff892cfa7153c4f8b30a8:log:70', 'hash': '0x97467ca8b7278bd79d7fb848cbce2e7d5114943f56bff892cfa7153c4f8b30a8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c667040', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:28:30.000Z'}}, {'blockNum': '0xb161d2', 'uniqueId': '0x9b2089474ed5dcfc100347f927a6ca17c25433b30c0b82750e5b3980946562a6:log:238', 'hash': '0x9b2089474ed5dcfc100347f927a6ca17c25433b30c0b82750e5b3980946562a6', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c667040', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:31:02.000Z'}}, {'blockNum': '0xb161d2', 'uniqueId': '0x53bd63d3393580e5033818aad9bd79607cbe075b5736919abb7956720a82224c:log:240', 'hash': '0x53bd63d3393580e5033818aad9bd79607cbe075b5736919abb7956720a82224c', 'from': '0x11e43f92c0c98839bfddd9c0640d037015b69e2b', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 4708.261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02ce6c72', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:31:02.000Z'}}, {'blockNum': '0xb161e7', 'uniqueId': '0xab9b01436f6964e8301464f357f5565a95c275651bee4dd6e66b6f8a80a14d32:log:40', 'hash': '0xab9b01436f6964e8301464f357f5565a95c275651bee4dd6e66b6f8a80a14d32', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 29997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11e12dd0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:35:50.000Z'}}, {'blockNum': '0xb16207', 'uniqueId': '0xf02c796e13c2c42e614c02dc6f42d910bae7499a06fa38286020bf4bb99a4f8d:log:41', 'hash': '0xf02c796e13c2c42e614c02dc6f42d910bae7499a06fa38286020bf4bb99a4f8d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'value': 1585.418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xf1ea64', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:42:44.000Z'}}, {'blockNum': '0xb16214', 'uniqueId': '0xd0a40facf08652e2fc98b3ca5bc785585d7d45a873f3267226e7b667e34d7f3c:log:82', 'hash': '0xd0a40facf08652e2fc98b3ca5bc785585d7d45a873f3267226e7b667e34d7f3c', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 29997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11e12dd0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:46:11.000Z'}}, {'blockNum': '0xb1621b', 'uniqueId': '0x90d1c2e68f70710b2cfbdb8c2be4f4d5c544c2f2d4be2b9dd4576938a2821b88:log:51', 'hash': '0x90d1c2e68f70710b2cfbdb8c2be4f4d5c544c2f2d4be2b9dd4576938a2821b88', 'from': '0xe10941f8c4258ec4caed4e4bdbee0fcefa000823', 'to': '0x2a011f32e77c3a8d3731e4ceaa8c52c8b231c12a', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:47:28.000Z'}}, {'blockNum': '0xb1621d', 'uniqueId': '0x32232dbbf953f0252f149f0d3407765f75466bab3b7cd99702fd7f3c28d42175:log:28', 'hash': '0x32232dbbf953f0252f149f0d3407765f75466bab3b7cd99702fd7f3c28d42175', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8fe0d5ae54c3ededc340b215d874d3f23134248a', 'value': 103.4247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0fc807', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:47:46.000Z'}}, {'blockNum': '0xb1622b', 'uniqueId': '0x518c100a73243a936b77e6cb9ade43aa2fde24e436512f3d6d196a0458e90516:log:101', 'hash': '0x518c100a73243a936b77e6cb9ade43aa2fde24e436512f3d6d196a0458e90516', 'from': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1585.418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xf1ea64', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:51:22.000Z'}}, {'blockNum': '0xb16238', 'uniqueId': '0xa289ef9c8d04fa961154519bca6b8dafb2a5e042a16fdb1ae6e23058a409c945:log:190', 'hash': '0xa289ef9c8d04fa961154519bca6b8dafb2a5e042a16fdb1ae6e23058a409c945', 'from': '0x65b84795becff238d7864c23f6b13bedffa1a812', 'to': '0x90fc780e2a7add0ef532cb33d2b733ba2fa6277a', 'value': 693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x69be50', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:53:58.000Z'}}, {'blockNum': '0xb1623a', 'uniqueId': '0xcdb50d068166aec3488ef5b2fd5518f7b7bf73cc03ea40f77107499170e8d17f:log:102', 'hash': '0xcdb50d068166aec3488ef5b2fd5518f7b7bf73cc03ea40f77107499170e8d17f', 'from': '0x90fc780e2a7add0ef532cb33d2b733ba2fa6277a', 'to': '0x136fdadd377fc44c7b0459bf031d9527578ec802', 'value': 375.5765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x394ef5', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:54:05.000Z'}}, {'blockNum': '0xb16240', 'uniqueId': '0x337d358a8c4de2f4f59297eb55c0b08e586ca78a9bc09ca435256abadcfb5aed:log:148', 'hash': '0x337d358a8c4de2f4f59297eb55c0b08e586ca78a9bc09ca435256abadcfb5aed', 'from': '0x8fe0d5ae54c3ededc340b215d874d3f23134248a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 103.4247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0fc807', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:56:17.000Z'}}, {'blockNum': '0xb16240', 'uniqueId': '0xcb7c21326936e2d7baa768640c420c07463760da25a6122714f92ec670a72c32:log:151', 'hash': '0xcb7c21326936e2d7baa768640c420c07463760da25a6122714f92ec670a72c32', 'from': '0x2a011f32e77c3a8d3731e4ceaa8c52c8b231c12a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:56:17.000Z'}}, {'blockNum': '0xb16249', 'uniqueId': '0xdc447d7fa558cd63268dc939849f32528365db10fa8941222ce2569adb6e028b:log:19', 'hash': '0xdc447d7fa558cd63268dc939849f32528365db10fa8941222ce2569adb6e028b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 11648.1736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x06f15ec8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:57:51.000Z'}}, {'blockNum': '0xb16258', 'uniqueId': '0x0b9ccb20c1281749cc211d6717c5e98adf3d335a670925a03fe8ce274a3cb288:log:224', 'hash': '0x0b9ccb20c1281749cc211d6717c5e98adf3d335a670925a03fe8ce274a3cb288', 'from': '0x44269eee0305b110be271c0570ab2be5b7843215', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5193.927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031887c6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:00:22.000Z'}}, {'blockNum': '0xb16259', 'uniqueId': '0x7650c06b391e2b4301daf4a72dadf188dc0bb9d0aecfb061e8d8522fbfed3e2e:log:41', 'hash': '0x7650c06b391e2b4301daf4a72dadf188dc0bb9d0aecfb061e8d8522fbfed3e2e', 'from': '0x1bc975bcda00d3ca908af56843b3bb1731d4bbcf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02faf080', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:00:49.000Z'}}, {'blockNum': '0xb16259', 'uniqueId': '0x659df72351cdc9d285aaf73d05b58f6cade7395b25492a37430b9f197de9151e:log:45', 'hash': '0x659df72351cdc9d285aaf73d05b58f6cade7395b25492a37430b9f197de9151e', 'from': '0xe60c68e1c5918dc0a284de7148b52b45a90654a8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4812.123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02de458e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:00:49.000Z'}}, {'blockNum': '0xb16259', 'uniqueId': '0x82ebf1d2a47d343ba1dcf79025ca6001fe90e5b148902016df1458923bbfed9b:log:50', 'hash': '0x82ebf1d2a47d343ba1dcf79025ca6001fe90e5b148902016df1458923bbfed9b', 'from': '0x45ce011dab9bf83a5e22b987bfa279f10872e260', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x035ff3e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:00:49.000Z'}}, {'blockNum': '0xb16259', 'uniqueId': '0xac3a365b217091fe38b7d0f71de07cb96d5b9b68d216ed039c9b190fefb801eb:log:61', 'hash': '0xac3a365b217091fe38b7d0f71de07cb96d5b9b68d216ed039c9b190fefb801eb', 'from': '0xd9bef735923dffbfbd08d38115047c4c609bb6dd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5180.8452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031688c4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:00:49.000Z'}}, {'blockNum': '0xb1625b', 'uniqueId': '0x5475e3c42b7c197ed08193df87f9fddb8b5f2f19637d9b47c7a0c77cfd7939ed:log:13', 'hash': '0x5475e3c42b7c197ed08193df87f9fddb8b5f2f19637d9b47c7a0c77cfd7939ed', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 33001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x13ab8d90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:00:58.000Z'}}, {'blockNum': '0xb1626f', 'uniqueId': '0x11ab0d4de25292ae9f8cc7dce579251c7b85a9be5bbc2bcd97312ffebfd59640:log:190', 'hash': '0x11ab0d4de25292ae9f8cc7dce579251c7b85a9be5bbc2bcd97312ffebfd59640', 'from': '0xe10941f8c4258ec4caed4e4bdbee0fcefa000823', 'to': '0x2a011f32e77c3a8d3731e4ceaa8c52c8b231c12a', 'value': 175.8479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1ad50f', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:04:40.000Z'}}, {'blockNum': '0xb16271', 'uniqueId': '0x22ddf55d623f7443fe8c437be875a23a106c4e9a8572d0516d9c5ff6c3e3d473:log:177', 'hash': '0x22ddf55d623f7443fe8c437be875a23a106c4e9a8572d0516d9c5ff6c3e3d473', 'from': '0xf977814e90da44bfa03b6295a0616a897441acec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:05:36.000Z'}}, {'blockNum': '0xb16272', 'uniqueId': '0xfa307587e7a7af8f48b16d3b86f1faf364d218a6274067e8078af521ed413128:log:319', 'hash': '0xfa307587e7a7af8f48b16d3b86f1faf364d218a6274067e8078af521ed413128', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 11648.1736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x06f15ec8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:06:05.000Z'}}, {'blockNum': '0xb16284', 'uniqueId': '0x3ff23b965237742646c3e00d8a47a6db66fac1fbd53aa1f5bba294e7ac3f1188:log:100', 'hash': '0x3ff23b965237742646c3e00d8a47a6db66fac1fbd53aa1f5bba294e7ac3f1188', 'from': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'to': '0xf977814e90da44bfa03b6295a0616a897441acec', 'value': 4955201.3767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0b8987b9c7', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:10:33.000Z'}}, {'blockNum': '0xb16288', 'uniqueId': '0xb333730bee395b34e4267d51825b849da3391ef1a9118fa27ff53b06b3d00e47:log:170', 'hash': '0xb333730bee395b34e4267d51825b849da3391ef1a9118fa27ff53b06b3d00e47', 'from': '0x2a011f32e77c3a8d3731e4ceaa8c52c8b231c12a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 175.8479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1ad50f', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:11:30.000Z'}}, {'blockNum': '0xb1629a', 'uniqueId': '0xf947b20fb0ae493a3b59525d7ad140c440d969f97a2a6a3475ad2c91b55b0643:log:7', 'hash': '0xf947b20fb0ae493a3b59525d7ad140c440d969f97a2a6a3475ad2c91b55b0643', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 32395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x134f15b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:15:03.000Z'}}, {'blockNum': '0xb1629a', 'uniqueId': '0x9b78ddfb02bf6942ea9d1682bed9e3625fe49fe0ac4a6ae5d2ef81c2131db834:log:14', 'hash': '0x9b78ddfb02bf6942ea9d1682bed9e3625fe49fe0ac4a6ae5d2ef81c2131db834', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ca21ff780d37951892ad694867270daf311c603', 'value': 2140.831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0146aa36', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:15:03.000Z'}}, {'blockNum': '0xb1629e', 'uniqueId': '0xdb51a0982b9228a15b0a636f464f1cf23a42cb4baf9b798920c1ff8b7cab6e6b:log:87', 'hash': '0xdb51a0982b9228a15b0a636f464f1cf23a42cb4baf9b798920c1ff8b7cab6e6b', 'from': '0xf977814e90da44bfa03b6295a0616a897441acec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1255201.3767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02ec2887c7', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:16:19.000Z'}}, {'blockNum': '0xb1629e', 'uniqueId': '0xae686423a12fd0c209e4e9b698b35a0aa1d004a94e975ffc14537a321453371b:log:242', 'hash': '0xae686423a12fd0c209e4e9b698b35a0aa1d004a94e975ffc14537a321453371b', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 65396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x26faa340', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:16:19.000Z'}}, {'blockNum': '0xb162ad', 'uniqueId': '0x4879aa8208a6fc3c6bbe64b326701a798887c3473066dce4b9b848176cf6b52e:log:10', 'hash': '0x4879aa8208a6fc3c6bbe64b326701a798887c3473066dce4b9b848176cf6b52e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 248612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x942f2e40', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:19:17.000Z'}}, {'blockNum': '0xb162ad', 'uniqueId': '0x1aa7f51851877b8827ff112b6cd926fc54f52c4c77b0c04a6d5c410d7208d9fe:log:11', 'hash': '0x1aa7f51851877b8827ff112b6cd926fc54f52c4c77b0c04a6d5c410d7208d9fe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 230363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x894e9ab0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:19:17.000Z'}}, {'blockNum': '0xb162ad', 'uniqueId': '0xdd9c4f145eec8f80165650c8c176ce530e4b344e0b46acb89ec5f73af3c6c3d4:log:12', 'hash': '0xdd9c4f145eec8f80165650c8c176ce530e4b344e0b46acb89ec5f73af3c6c3d4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 243528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x91276c80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:19:17.000Z'}}, {'blockNum': '0xb162ba', 'uniqueId': '0x9f17d06f36eb3704a138211a77928aa306ef8b66f0dacb820104fa85e5d6a4f9:log:15', 'hash': '0x9f17d06f36eb3704a138211a77928aa306ef8b66f0dacb820104fa85e5d6a4f9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa647bc744c8cf76c3e27bf9b9bca1af091385035', 'value': 3880.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02500e04', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:20:52.000Z'}}, {'blockNum': '0xb162bc', 'uniqueId': '0x10c803dd0582121103709423126bddad57f1200cc14bad214b9be319cd4fb2b8:log:44', 'hash': '0x10c803dd0582121103709423126bddad57f1200cc14bad214b9be319cd4fb2b8', 'from': '0x2ca21ff780d37951892ad694867270daf311c603', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 2140.831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0146aa36', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:21:26.000Z'}}, {'blockNum': '0xb162c2', 'uniqueId': '0x011c6e4993588d119674c8087372716d954a98822f2753bf4a8196c9917d3052:log:111', 'hash': '0x011c6e4993588d119674c8087372716d954a98822f2753bf4a8196c9917d3052', 'from': '0x1bb90f54ef1a1e2632bbce7f9347855e28bcae57', 'to': '0x47ebe1200e4442d38c3531e79c2a7ea1f7d82312', 'value': 852.964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x8226e8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:22:01.000Z'}}, {'blockNum': '0xb162de', 'uniqueId': '0x304e170c442d8791901f2db5b6aa49ad69b0cea56762b89244cc2f6ae31065f6:log:111', 'hash': '0x304e170c442d8791901f2db5b6aa49ad69b0cea56762b89244cc2f6ae31065f6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'value': 1607.463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xf54786', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:26:16.000Z'}}, {'blockNum': '0xb162e8', 'uniqueId': '0x82e041f9ecb52bf2d91098687ca583df4656ca3526acd42ad780941175cbc1b0:log:57', 'hash': '0x82e041f9ecb52bf2d91098687ca583df4656ca3526acd42ad780941175cbc1b0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 12001.2774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07273fe6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:07.000Z'}}, {'blockNum': '0xb162ea', 'uniqueId': '0xa0ce09dc278054ebac93881bb7e810a4c89515823a7a97a23fe0e3520b21ca4f:log:7', 'hash': '0xa0ce09dc278054ebac93881bb7e810a4c89515823a7a97a23fe0e3520b21ca4f', 'from': '0xa139913d52b99094a96d972c89fd2340d3e5a872', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4680.302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02ca284c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:31.000Z'}}, {'blockNum': '0xb162eb', 'uniqueId': '0x5742f20972ae3b9f27409a91b2e656ac88fef6b529cc5d6485198e1dae76126d:log:222', 'hash': '0x5742f20972ae3b9f27409a91b2e656ac88fef6b529cc5d6485198e1dae76126d', 'from': '0x85a4f76b227aa5d300fca5996ed9a598e9f99013', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4006.7918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0263634e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:33.000Z'}}, {'blockNum': '0xb162eb', 'uniqueId': '0x4ba5d320d36febbf08a0686d667b083ec86c5939da8b005503cc13d7d0268b7f:log:223', 'hash': '0x4ba5d320d36febbf08a0686d667b083ec86c5939da8b005503cc13d7d0268b7f', 'from': '0xd5eb1561221ee2180d9f4d4652aca3e117888162', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02625a00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:33.000Z'}}, {'blockNum': '0xb162eb', 'uniqueId': '0xc12019f0e6f74274dd486f3a90dc246df7458214e60b2a787811865948946c00:log:224', 'hash': '0xc12019f0e6f74274dd486f3a90dc246df7458214e60b2a787811865948946c00', 'from': '0xbef53d1475912e99aa7ca804e940819fc5dc0e72', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02aea540', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:33.000Z'}}, {'blockNum': '0xb162eb', 'uniqueId': '0x29a1d97ebc64041de3870cef1795a5dd811811abbeb7e01312338451e08d684d:log:226', 'hash': '0x29a1d97ebc64041de3870cef1795a5dd811811abbeb7e01312338451e08d684d', 'from': '0xfc7c1aa14a1041035bdec339ca1b043f69f2c1a1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4098.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x027167b6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:33.000Z'}}, {'blockNum': '0xb162eb', 'uniqueId': '0x90bc9698d5acd8017cdbf42dfabf85f4dd246e4239cd98844d14341014c97f18:log:230', 'hash': '0x90bc9698d5acd8017cdbf42dfabf85f4dd246e4239cd98844d14341014c97f18', 'from': '0xf795b99220c119675d82e5ce37606a035121a5b5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3971.7991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x025e0c67', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:33.000Z'}}, {'blockNum': '0xb162eb', 'uniqueId': '0x81ef28512f05bccde07646413edae7286b39e98c0073d918a3b48cb1289b9a11:log:231', 'hash': '0x81ef28512f05bccde07646413edae7286b39e98c0073d918a3b48cb1289b9a11', 'from': '0x577b7fde2cde3ca178986845ad9641d66d10f59c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02625a00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:33.000Z'}}, {'blockNum': '0xb16303', 'uniqueId': '0x988ba4e1ca51596a6d5d51f056aeb01e0d5b8ea443f99080e5daaad2baa2ed4f:log:295', 'hash': '0x988ba4e1ca51596a6d5d51f056aeb01e0d5b8ea443f99080e5daaad2baa2ed4f', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12001.2774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07273fe6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:36:11.000Z'}}, {'blockNum': '0xb16303', 'uniqueId': '0x257745839b9ac2b4b4701f34dd506af8865081778d96f3b6cb763ac861828ac5:log:296', 'hash': '0x257745839b9ac2b4b4701f34dd506af8865081778d96f3b6cb763ac861828ac5', 'from': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1607.463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xf54786', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:36:11.000Z'}}, {'blockNum': '0xb1635d', 'uniqueId': '0x117f3be9d660e013dff0910ce906712ea62c0c9ac72ff44eaa0c63f1016c8e41:log:39', 'hash': '0x117f3be9d660e013dff0910ce906712ea62c0c9ac72ff44eaa0c63f1016c8e41', 'from': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20636.0857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4cd119', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:00:32.000Z'}}, {'blockNum': '0xb1635d', 'uniqueId': '0x63d98f630b5c52bba529053f0707ecbe7f04b83de8bd65c74c6948de66a184eb:log:77', 'hash': '0x63d98f630b5c52bba529053f0707ecbe7f04b83de8bd65c74c6948de66a184eb', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1212ec30', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:00:32.000Z'}}, {'blockNum': '0xb1638c', 'uniqueId': '0x90fbdec9283d7360f3e4e35faaf0abd006aeba154ae10894abb6f4c9fcd42fbe:log:20', 'hash': '0x90fbdec9283d7360f3e4e35faaf0abd006aeba154ae10894abb6f4c9fcd42fbe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 12960.0009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07b98a09', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:09:37.000Z'}}, {'blockNum': '0xb16390', 'uniqueId': '0x13af7190e12837a31f9c87f95ab23f4b7e770833566e8c59f46252dcbbaa4827:log:8', 'hash': '0x13af7190e12837a31f9c87f95ab23f4b7e770833566e8c59f46252dcbbaa4827', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 15090, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fe8d20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:10:13.000Z'}}, {'blockNum': '0xb16398', 'uniqueId': '0x363702e69ebc703d03cbf8195b8d71ab797a4b046209dfa82a290d72886fef4c:log:115', 'hash': '0x363702e69ebc703d03cbf8195b8d71ab797a4b046209dfa82a290d72886fef4c', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1212ec30', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:11:21.000Z'}}, {'blockNum': '0xb163a9', 'uniqueId': '0x3215e83624c333944912fe61f0eb32e9d4aefdf29d346784d8eeddaac2430727:log:49', 'hash': '0x3215e83624c333944912fe61f0eb32e9d4aefdf29d346784d8eeddaac2430727', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15090, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fe8d20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:15:57.000Z'}}, {'blockNum': '0xb163a9', 'uniqueId': '0x54c19dc495caa07bdc41a837a20545140b0b67c79f8a45d00af7971c13e82566:log:50', 'hash': '0x54c19dc495caa07bdc41a837a20545140b0b67c79f8a45d00af7971c13e82566', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12960.0009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07b98a09', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:15:57.000Z'}}, {'blockNum': '0xb163cd', 'uniqueId': '0x00aeafcf538d0bd6e041e2fb13dfccfaf6d85d39db89cadd538d93be86cf86e2:log:121', 'hash': '0x00aeafcf538d0bd6e041e2fb13dfccfaf6d85d39db89cadd538d93be86cf86e2', 'from': '0x33ce729ec6d76a138ce3d550db1e6504d3c41c29', 'to': '0x8358d831ef282b8f485d627f3f6a517e799a6071', 'value': 377.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x399a18', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:23:12.000Z'}}, {'blockNum': '0xb163e8', 'uniqueId': '0x6be39aed1852a34e36aa08c18cbb2441415b2a3bdfde5661d74c7d690537b236:log:6', 'hash': '0x6be39aed1852a34e36aa08c18cbb2441415b2a3bdfde5661d74c7d690537b236', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 7002.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x042c8ae0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:27:23.000Z'}}, {'blockNum': '0xb163eb', 'uniqueId': '0x498bb50964db0d58ae27b958eabe63556c83e048edbde315ffd731eef9484342:log:77', 'hash': '0x498bb50964db0d58ae27b958eabe63556c83e048edbde315ffd731eef9484342', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 13125.1434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07d2bcea', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:27:57.000Z'}}, {'blockNum': '0xb16412', 'uniqueId': '0x6881d5b47926c747ab837f615681e99c93e02ab3c1e2fa1bed9edd780a7d87de:log:77', 'hash': '0x6881d5b47926c747ab837f615681e99c93e02ab3c1e2fa1bed9edd780a7d87de', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 14374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08914c60', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:36:03.000Z'}}, {'blockNum': '0xb16412', 'uniqueId': '0x9d250371d72549da3327699bb752c6420239104fda57ab7f6a3d2cc456ac5b81:log:78', 'hash': '0x9d250371d72549da3327699bb752c6420239104fda57ab7f6a3d2cc456ac5b81', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 13125.1434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07d2bcea', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:36:03.000Z'}}, {'blockNum': '0xb1643c', 'uniqueId': '0xebb0c41bc27777285e9a4a12abaacfd9329b7b011954c8f135608ee6c50fbbd0:log:42', 'hash': '0xebb0c41bc27777285e9a4a12abaacfd9329b7b011954c8f135608ee6c50fbbd0', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xbc6b64e8760bb98b6e96d13377c816a1625ca66e', 'value': 590.4817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5a19b1', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:44:14.000Z'}}, {'blockNum': '0xb16459', 'uniqueId': '0x3983b93513def30a5c0f321b23d33669e96b611eb41b6d7afa9e04bd3c4fbad2:log:213', 'hash': '0x3983b93513def30a5c0f321b23d33669e96b611eb41b6d7afa9e04bd3c4fbad2', 'from': '0xbc6b64e8760bb98b6e96d13377c816a1625ca66e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 590.4817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5a19b1', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:51:48.000Z'}}, {'blockNum': '0xb16466', 'uniqueId': '0xd0bd3eb8680318395781c79602ff65aeb49e9ba93528ba699e1cb5aabe7bf5be:log:40', 'hash': '0xd0bd3eb8680318395781c79602ff65aeb49e9ba93528ba699e1cb5aabe7bf5be', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x11e43f92c0c98839bfddd9c0640d037015b69e2b', 'value': 4701.268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02cd5b48', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:54:14.000Z'}}, {'blockNum': '0xb16478', 'uniqueId': '0x995481f61e5dadf0b5f3b89b285155d5a5c94cbc440271fe848757e93fa48b76:log:6', 'hash': '0x995481f61e5dadf0b5f3b89b285155d5a5c94cbc440271fe848757e93fa48b76', 'from': '0x9f3fa770caea12bbe7ac34c3ede71708fa2a14d1', 'to': '0x6f53c92afa1315946fb969671c7e7a54932b8e85', 'value': 900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x895440', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:57:37.000Z'}}, {'blockNum': '0xb1647c', 'uniqueId': '0x4c6876b9b989cebc318112ccdff606a1b1423e1927c1bf215542b0c2593d1ba9:log:76', 'hash': '0x4c6876b9b989cebc318112ccdff606a1b1423e1927c1bf215542b0c2593d1ba9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x122589d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:58:00.000Z'}}, {'blockNum': '0xb16484', 'uniqueId': '0x023f66d0fbe7a5e27cdcb979c9e802dd14863eee0587097c0be54e5b6d3317b0:log:158', 'hash': '0x023f66d0fbe7a5e27cdcb979c9e802dd14863eee0587097c0be54e5b6d3317b0', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4094.0299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0270b30b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:00:30.000Z'}}, {'blockNum': '0xb1648a', 'uniqueId': '0x374d7c611ec98d7e431bce3b839b0deee14132793d259693d85eaf54f94c189e:log:203', 'hash': '0x374d7c611ec98d7e431bce3b839b0deee14132793d259693d85eaf54f94c189e', 'from': '0x11e43f92c0c98839bfddd9c0640d037015b69e2b', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 4701.268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02cd5b48', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:02:42.000Z'}}, {'blockNum': '0xb16497', 'uniqueId': '0x8b4df978c92d4d53f6cebd3fdf92bd6a143297fdafa61758de125b8a339b4a8b:log:14', 'hash': '0x8b4df978c92d4d53f6cebd3fdf92bd6a143297fdafa61758de125b8a339b4a8b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 5469.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03429070', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:04:26.000Z'}}, {'blockNum': '0xb1649f', 'uniqueId': '0xcd9cc2a6de422f97ade9750b1ea8398aa870ed41c87b87d282bebaf57f3e99b0:log:194', 'hash': '0xcd9cc2a6de422f97ade9750b1ea8398aa870ed41c87b87d282bebaf57f3e99b0', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x122589d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:05:52.000Z'}}, {'blockNum': '0xb164b7', 'uniqueId': '0x533a7a485bd7e21a136b71d0c6fd6989a7b81bce9b716353da8422ad56fa19f4:log:260', 'hash': '0x533a7a485bd7e21a136b71d0c6fd6989a7b81bce9b716353da8422ad56fa19f4', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 5469.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03429070', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:11:19.000Z'}}, {'blockNum': '0xb164d6', 'uniqueId': '0xc210543977f073007ee87dc03d613caca2513935dc0df56e9c3814db402ea176:log:128', 'hash': '0xc210543977f073007ee87dc03d613caca2513935dc0df56e9c3814db402ea176', 'from': '0xaf0f7108b52f05f8afd024fd8aeec7e0e7058a68', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0240a130', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:19:42.000Z'}}, {'blockNum': '0xb16506', 'uniqueId': '0xad9576afe9775d435c707f9309040b661eda3e656433de3a8d3d0c70b510c9f6:log:14', 'hash': '0xad9576afe9775d435c707f9309040b661eda3e656433de3a8d3d0c70b510c9f6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x021ae57e099edd362922f57b399b8aac2d19cf35', 'value': 732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6fb1c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:29:43.000Z'}}, {'blockNum': '0xb16513', 'uniqueId': '0xf0603a425418a863a53a9853a31a901cd67f2b079b0b902d7050bcaa9c3d0fbb:log:34', 'hash': '0xf0603a425418a863a53a9853a31a901cd67f2b079b0b902d7050bcaa9c3d0fbb', 'from': '0x021ae57e099edd362922f57b399b8aac2d19cf35', 'to': '0x031565e3720ae669b360e8d13c7df047947a6537', 'value': 721.4248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6e14a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:33:02.000Z'}}, {'blockNum': '0xb1654f', 'uniqueId': '0x1cb41a5e2fa20aaf89ef8eb5c5f4238010b28af7e7a52e5f38935d20b558af7b:log:67', 'hash': '0x1cb41a5e2fa20aaf89ef8eb5c5f4238010b28af7e7a52e5f38935d20b558af7b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 6514.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03e208a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:46:33.000Z'}}, {'blockNum': '0xb16573', 'uniqueId': '0xf3b23bef823b1624267fd2a5ff9fea3e799f1b903d78ef3c9758edfacace13db:log:262', 'hash': '0xf3b23bef823b1624267fd2a5ff9fea3e799f1b903d78ef3c9758edfacace13db', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6514.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03e208a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:56:14.000Z'}}]}}
Number of returned transfers: 306
Answer is complete
symbol YOYOW
group C4P
date 2018-05-12
hour 18:02
exchange binance
Name: 361, dtype: object
HERE
Symbol: YOYOW, Contract:
Datetime timestamps: 2018-05-12 18:02:00 2018-05-12 06:02:00 2018-05-13 06:02:00
Unix timestamps: 1526097720.0 1526184120.0
Hex Block Numbers: 0x556e00 0x55847b
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol VIA
group CCB
date 2018-09-30
hour 19:00
exchange binance
Name: 362, dtype: object
HERE
{}
No contract for ethereum specified
Symbol: VIA, Contract:
Datetime timestamps: 2018-09-30 19:00:00 2018-09-30 07:00:00 2018-10-01 07:00:00
Unix timestamps: 1538283600.0 1538370000.0
Hex Block Numbers: 0x620b95 0x622312
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol CLOAK
group CCB
date 2018-10-01
hour 19:00
exchange binance
Name: 363, dtype: object
HERE
{}
No contract for ethereum specified
Symbol: CLOAK, Contract: 0xb4622193ca7c7580ac0ecc09c3b7bd74aef0318d
Datetime timestamps: 2018-10-01 19:00:00 2018-10-01 07:00:00 2018-10-02 07:00:00
Unix timestamps: 1538370000.0 1538456400.0
Hex Block Numbers: 0x622313 0x623af8
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers: 0
Answer is complete
symbol QLC
group CCB
date 2018-10-09
hour 17:00
exchange binance
Name: 364, dtype: object
HERE
{}
No contract for ethereum specified
Symbol: QLC, Contract:
Datetime timestamps: 2018-10-09 17:00:00 2018-10-09 05:00:00 2018-10-10 05:00:00
Unix timestamps: 1539054000.0 1539140400.0
Hex Block Numbers: 0x62e1c0 0x62f9a7
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol REQ
group CCB
date 2018-10-14
hour 19:00
exchange binance
Name: 365, dtype: object
HERE
Symbol: REQ, Contract: 0x8f8221afbb33998d8584a2b05749ba73c37a938a
Datetime timestamps: 2018-10-14 19:00:00 2018-10-14 07:00:00 2018-10-15 07:00:00
Unix timestamps: 1539493200.0 1539579600.0
Hex Block Numbers: 0x635bdc 0x637408
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x635c2a', 'uniqueId': '0xebcabc39fd9dcb1477708359e92e85cec9f1154e662f3d38788a05e7793c177e:log:52', 'hash': '0xebcabc39fd9dcb1477708359e92e85cec9f1154e662f3d38788a05e7793c177e', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4341.4040139962635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeb59156cfc3e4418f7', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T05:16:38.000Z'}}, {'blockNum': '0x635c2a', 'uniqueId': '0xebcabc39fd9dcb1477708359e92e85cec9f1154e662f3d38788a05e7793c177e:log:56', 'hash': '0xebcabc39fd9dcb1477708359e92e85cec9f1154e662f3d38788a05e7793c177e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 4341.4040139962635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeb59156cfc3e4418f7', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T05:16:38.000Z'}}, {'blockNum': '0x635c2a', 'uniqueId': '0xebcabc39fd9dcb1477708359e92e85cec9f1154e662f3d38788a05e7793c177e:log:58', 'hash': '0xebcabc39fd9dcb1477708359e92e85cec9f1154e662f3d38788a05e7793c177e', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4341.4040139962635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeb59156cfc3e4418f7', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T05:16:38.000Z'}}, {'blockNum': '0x635c2a', 'uniqueId': '0xebcabc39fd9dcb1477708359e92e85cec9f1154e662f3d38788a05e7793c177e:log:59', 'hash': '0xebcabc39fd9dcb1477708359e92e85cec9f1154e662f3d38788a05e7793c177e', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4341.4040139962635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeb59156cfc3e4418f7', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T05:16:38.000Z'}}, {'blockNum': '0x635c2d', 'uniqueId': '0xaf3504ecfd8337c184fd17bf5320cd5bb7fc988afc0bb80b3019ec7ef5f5eaa7:log:0', 'hash': '0xaf3504ecfd8337c184fd17bf5320cd5bb7fc988afc0bb80b3019ec7ef5f5eaa7', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 21991.684049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x04a82becbda135321000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T05:17:06.000Z'}}, {'blockNum': '0x635cf5', 'uniqueId': '0x5d15efb3f1bf9c70cf55157bbe9bf93831fbd5acae5940b6777cc03c6c814978:log:36', 'hash': '0x5d15efb3f1bf9c70cf55157bbe9bf93831fbd5acae5940b6777cc03c6c814978', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 7583.445363447951, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x019b1972133d8a300baf', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T06:05:16.000Z'}}, {'blockNum': '0x635cf5', 'uniqueId': '0x5d15efb3f1bf9c70cf55157bbe9bf93831fbd5acae5940b6777cc03c6c814978:log:38', 'hash': '0x5d15efb3f1bf9c70cf55157bbe9bf93831fbd5acae5940b6777cc03c6c814978', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x4fe95c36bb9b3a81f278569525162f91615e77d7', 'value': 7583.445363447951, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x019b1972133d8a300baf', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T06:05:16.000Z'}}, {'blockNum': '0x635d48', 'uniqueId': '0xed17422dfcae3ffbb47ce1d96e13cda3d3c56dfef80bb0143e3723ef54bc4091:log:44', 'hash': '0xed17422dfcae3ffbb47ce1d96e13cda3d3c56dfef80bb0143e3723ef54bc4091', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4313.190554892302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe9d18b15695dab3cfb', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T06:22:20.000Z'}}, {'blockNum': '0x635d48', 'uniqueId': '0xed17422dfcae3ffbb47ce1d96e13cda3d3c56dfef80bb0143e3723ef54bc4091:log:48', 'hash': '0xed17422dfcae3ffbb47ce1d96e13cda3d3c56dfef80bb0143e3723ef54bc4091', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 4313.190554892302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe9d18b15695dab3cfb', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T06:22:20.000Z'}}, {'blockNum': '0x635d48', 'uniqueId': '0xed17422dfcae3ffbb47ce1d96e13cda3d3c56dfef80bb0143e3723ef54bc4091:log:49', 'hash': '0xed17422dfcae3ffbb47ce1d96e13cda3d3c56dfef80bb0143e3723ef54bc4091', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4312.766624880919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe9cba8fb4ff3869377', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T06:22:20.000Z'}}, {'blockNum': '0x635d48', 'uniqueId': '0xed17422dfcae3ffbb47ce1d96e13cda3d3c56dfef80bb0143e3723ef54bc4091:log:50', 'hash': '0xed17422dfcae3ffbb47ce1d96e13cda3d3c56dfef80bb0143e3723ef54bc4091', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4312.766624880919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe9cba8fb4ff3869377', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T06:22:20.000Z'}}, {'blockNum': '0x635e5a', 'uniqueId': '0x4a60227e771fe1fccbe1ce5c9f186011c7b15a63d7ab9954dd531ce9b2e315a6:log:42', 'hash': '0x4a60227e771fe1fccbe1ce5c9f186011c7b15a63d7ab9954dd531ce9b2e315a6', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4292.342285106527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe8b037268013057671', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:30:29.000Z'}}, {'blockNum': '0x635e5a', 'uniqueId': '0x4a60227e771fe1fccbe1ce5c9f186011c7b15a63d7ab9954dd531ce9b2e315a6:log:46', 'hash': '0x4a60227e771fe1fccbe1ce5c9f186011c7b15a63d7ab9954dd531ce9b2e315a6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 4292.342285106527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe8b037268013057671', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:30:29.000Z'}}, {'blockNum': '0x635e5a', 'uniqueId': '0x4a60227e771fe1fccbe1ce5c9f186011c7b15a63d7ab9954dd531ce9b2e315a6:log:47', 'hash': '0x4a60227e771fe1fccbe1ce5c9f186011c7b15a63d7ab9954dd531ce9b2e315a6', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4291.962160990665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe8aaf0ada18284d817', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:30:29.000Z'}}, {'blockNum': '0x635e5a', 'uniqueId': '0x4a60227e771fe1fccbe1ce5c9f186011c7b15a63d7ab9954dd531ce9b2e315a6:log:48', 'hash': '0x4a60227e771fe1fccbe1ce5c9f186011c7b15a63d7ab9954dd531ce9b2e315a6', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 4291.962160990665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe8aaf0ada18284d817', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:30:29.000Z'}}, {'blockNum': '0x635e6c', 'uniqueId': '0x0878ae34367805bb082aef8096eec1f27945c6e04736280fef91349794916a49:log:24', 'hash': '0x0878ae34367805bb082aef8096eec1f27945c6e04736280fef91349794916a49', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2133.843067048239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x73ad0573e5304f1724', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:36:40.000Z'}}, {'blockNum': '0x635e6c', 'uniqueId': '0x0878ae34367805bb082aef8096eec1f27945c6e04736280fef91349794916a49:log:28', 'hash': '0x0878ae34367805bb082aef8096eec1f27945c6e04736280fef91349794916a49', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2133.843067048239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x73ad0573e5304f1724', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:36:40.000Z'}}, {'blockNum': '0x635e6c', 'uniqueId': '0x0878ae34367805bb082aef8096eec1f27945c6e04736280fef91349794916a49:log:29', 'hash': '0x0878ae34367805bb082aef8096eec1f27945c6e04736280fef91349794916a49', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2133.631499374778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x73aa15d03799b4af11', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:36:40.000Z'}}, {'blockNum': '0x635e6c', 'uniqueId': '0x0878ae34367805bb082aef8096eec1f27945c6e04736280fef91349794916a49:log:30', 'hash': '0x0878ae34367805bb082aef8096eec1f27945c6e04736280fef91349794916a49', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2133.631499374778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x73aa15d03799b4af11', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:36:40.000Z'}}, {'blockNum': '0x635e6d', 'uniqueId': '0xfd347b413d93fa16799d355c3f8815b904cc6ef325656918273e6ba2b3f0ef7b:log:0', 'hash': '0xfd347b413d93fa16799d355c3f8815b904cc6ef325656918273e6ba2b3f0ef7b', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 42334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x08f6ee44e0daeab80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:37:06.000Z'}}, {'blockNum': '0x635e6d', 'uniqueId': '0xa83d353342bf29c585c6f70a9c65eb1ee70e13f9bfc3dbb1276157b372078abe:log:67', 'hash': '0xa83d353342bf29c585c6f70a9c65eb1ee70e13f9bfc3dbb1276157b372078abe', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4282.802974654262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe82bd4b62f7591d6f4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:37:06.000Z'}}, {'blockNum': '0x635e6d', 'uniqueId': '0xa83d353342bf29c585c6f70a9c65eb1ee70e13f9bfc3dbb1276157b372078abe:log:71', 'hash': '0xa83d353342bf29c585c6f70a9c65eb1ee70e13f9bfc3dbb1276157b372078abe', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'value': 4282.802974654262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe82bd4b62f7591d6f4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:37:06.000Z'}}, {'blockNum': '0x635e6f', 'uniqueId': '0x335ff38f9fa897b8d7c476bb5e0f0300afa9e7cb682269fc3a3f439fa6386cb8:log:14', 'hash': '0x335ff38f9fa897b8d7c476bb5e0f0300afa9e7cb682269fc3a3f439fa6386cb8', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 12038.643097381351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x028c9dbc019a83c1916e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:37:12.000Z'}}, {'blockNum': '0x635e6f', 'uniqueId': '0x335ff38f9fa897b8d7c476bb5e0f0300afa9e7cb682269fc3a3f439fa6386cb8:log:18', 'hash': '0x335ff38f9fa897b8d7c476bb5e0f0300afa9e7cb682269fc3a3f439fa6386cb8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 12038.643097381351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x028c9dbc019a83c1916e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:37:12.000Z'}}, {'blockNum': '0x635e71', 'uniqueId': '0x43d2b2e9855fa73f2f87fe0bf912a25b853e2cebda7830eca56742a129bbdc61:log:1', 'hash': '0x43d2b2e9855fa73f2f87fe0bf912a25b853e2cebda7830eca56742a129bbdc61', 'from': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'to': '0x1a7fe01f4195b183b37bdf3e4d3c9b1f31de34f9', 'value': 4282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe820aff8fddea80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:37:19.000Z'}}, {'blockNum': '0x635e7d', 'uniqueId': '0xf80fa6e2edde19b23dd14d5a7781365948bdc393380c7b86f81356c28011ce13:log:85', 'hash': '0xf80fa6e2edde19b23dd14d5a7781365948bdc393380c7b86f81356c28011ce13', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 11165.428279176633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x025d4771c6efd0400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:40:11.000Z'}}, {'blockNum': '0x635e95', 'uniqueId': '0xaebd09f789f4b66b55edafebc3b3200bc81b21e4ec01ba4d4fc878c43c3a9a55:log:27', 'hash': '0xaebd09f789f4b66b55edafebc3b3200bc81b21e4ec01ba4d4fc878c43c3a9a55', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4220.636494209314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe4cd190197c431f921', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:44:38.000Z'}}, {'blockNum': '0x635e95', 'uniqueId': '0xaebd09f789f4b66b55edafebc3b3200bc81b21e4ec01ba4d4fc878c43c3a9a55:log:31', 'hash': '0xaebd09f789f4b66b55edafebc3b3200bc81b21e4ec01ba4d4fc878c43c3a9a55', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'value': 4220.636494209314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe4cd190197c431f921', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:44:38.000Z'}}, {'blockNum': '0x635e97', 'uniqueId': '0xdcabdeb442b1d7c181aebb2d72868645a72a8580bd04b881efbac20b1f81386e:log:13', 'hash': '0xdcabdeb442b1d7c181aebb2d72868645a72a8580bd04b881efbac20b1f81386e', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 38479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0825f365a5853fdc0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:45:18.000Z'}}, {'blockNum': '0x635e97', 'uniqueId': '0xd7587afa7c7c6bae5ec37d681a2558f96eceac06eb20e8551b90b7b214a21e34:log:49', 'hash': '0xd7587afa7c7c6bae5ec37d681a2558f96eceac06eb20e8551b90b7b214a21e34', 'from': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'to': '0x1a7fe01f4195b183b37bdf3e4d3c9b1f31de34f9', 'value': 4220, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe4c443b97b54700000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:45:18.000Z'}}, {'blockNum': '0x635e97', 'uniqueId': '0xb241fc4d1ca70f3f5c36bb2609e4926b4a8f9af55242ab2af054c4d7b2f429f5:log:95', 'hash': '0xb241fc4d1ca70f3f5c36bb2609e4926b4a8f9af55242ab2af054c4d7b2f429f5', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2077.76593723828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x70a2cb77714641a045', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:45:18.000Z'}}, {'blockNum': '0x635e97', 'uniqueId': '0xb241fc4d1ca70f3f5c36bb2609e4926b4a8f9af55242ab2af054c4d7b2f429f5:log:99', 'hash': '0xb241fc4d1ca70f3f5c36bb2609e4926b4a8f9af55242ab2af054c4d7b2f429f5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2077.76593723828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x70a2cb77714641a045', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:45:18.000Z'}}, {'blockNum': '0x635e97', 'uniqueId': '0xb241fc4d1ca70f3f5c36bb2609e4926b4a8f9af55242ab2af054c4d7b2f429f5:log:100', 'hash': '0xb241fc4d1ca70f3f5c36bb2609e4926b4a8f9af55242ab2af054c4d7b2f429f5', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2087.034705937968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x71236cbf7780691f68', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:45:18.000Z'}}, {'blockNum': '0x635e97', 'uniqueId': '0xb241fc4d1ca70f3f5c36bb2609e4926b4a8f9af55242ab2af054c4d7b2f429f5:log:101', 'hash': '0xb241fc4d1ca70f3f5c36bb2609e4926b4a8f9af55242ab2af054c4d7b2f429f5', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2087.034705937968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x71236cbf7780691f68', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:45:18.000Z'}}, {'blockNum': '0x635e9d', 'uniqueId': '0x3d999f4690d2ca4017652a78b8eb7d65b52002fb9be1ebd5b6e7b8a678a5367d:log:56', 'hash': '0x3d999f4690d2ca4017652a78b8eb7d65b52002fb9be1ebd5b6e7b8a678a5367d', 'from': '0x9c6ea4b8a541a1e361c4862de306032ba8679437', 'to': '0xf46b48e680b0ffca0570fdaab47f53ce4c724e1f', 'value': 4146.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe0c578b9f60a260000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:47:00.000Z'}}, {'blockNum': '0x635ea4', 'uniqueId': '0xed2e993a814d611fe00f1c41859302914f2e5ed4e876301ccd234908c9f65a96:log:4', 'hash': '0xed2e993a814d611fe00f1c41859302914f2e5ed4e876301ccd234908c9f65a96', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x86b1a7b0e0d8bf7691e9e40b67fc5affa52b2dab', 'value': 3483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbcd055be466d8c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:48:05.000Z'}}, {'blockNum': '0x635ea9', 'uniqueId': '0xb66fbeee21c5c16f2fdafb55f44eadda06024d184ad8943e3fe27c79b880f4dd:log:18', 'hash': '0xb66fbeee21c5c16f2fdafb55f44eadda06024d184ad8943e3fe27c79b880f4dd', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4159.824866248502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe1812ab42802c8e29d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:49:17.000Z'}}, {'blockNum': '0x635ea9', 'uniqueId': '0xb66fbeee21c5c16f2fdafb55f44eadda06024d184ad8943e3fe27c79b880f4dd:log:22', 'hash': '0xb66fbeee21c5c16f2fdafb55f44eadda06024d184ad8943e3fe27c79b880f4dd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'value': 4159.824866248502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe1812ab42802c8e29d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:49:17.000Z'}}, {'blockNum': '0x635ea9', 'uniqueId': '0xed5182288cf357b11a620d342991b13718f8f29b33f5a07be97dde402c6f06f4:log:23', 'hash': '0xed5182288cf357b11a620d342991b13718f8f29b33f5a07be97dde402c6f06f4', 'from': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'to': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'value': 4159.824866248502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe1812ab42802c8e29d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:49:17.000Z'}}, {'blockNum': '0x635ea9', 'uniqueId': '0xed5182288cf357b11a620d342991b13718f8f29b33f5a07be97dde402c6f06f4:log:25', 'hash': '0xed5182288cf357b11a620d342991b13718f8f29b33f5a07be97dde402c6f06f4', 'from': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4159.824866248502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe1812ab42802c8e29d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:49:17.000Z'}}, {'blockNum': '0x635ea9', 'uniqueId': '0xed5182288cf357b11a620d342991b13718f8f29b33f5a07be97dde402c6f06f4:log:26', 'hash': '0xed5182288cf357b11a620d342991b13718f8f29b33f5a07be97dde402c6f06f4', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4159.824866248502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe1812ab42802c8e29d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:49:17.000Z'}}, {'blockNum': '0x635ece', 'uniqueId': '0x874eedb7384b44f9dd45295d6efa38a7563910a26c825de71b77ca4a0cf53fb3:log:19', 'hash': '0x874eedb7384b44f9dd45295d6efa38a7563910a26c825de71b77ca4a0cf53fb3', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0825f365a5853fdc0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:56:21.000Z'}}, {'blockNum': '0x635ece', 'uniqueId': '0x4d93a9de4f08f04e79ca501877c3f2d2f68b7421f985399b3c1b77fd18fec1f5:log:20', 'hash': '0x4d93a9de4f08f04e79ca501877c3f2d2f68b7421f985399b3c1b77fd18fec1f5', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11165.428279176633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x025d4771c6efd0400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:56:21.000Z'}}, {'blockNum': '0x635ece', 'uniqueId': '0x878938b79bbf056d70b860b77083b6cc685947f05c9c40b3e03286d7f3965f10:log:22', 'hash': '0x878938b79bbf056d70b860b77083b6cc685947f05c9c40b3e03286d7f3965f10', 'from': '0xf46b48e680b0ffca0570fdaab47f53ce4c724e1f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4146.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe0c578b9f60a260000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:56:21.000Z'}}, {'blockNum': '0x635ece', 'uniqueId': '0x76fe9e2125c576f27196f04eacb9f1b225693407cdecb5987db8c44c52562e90:log:23', 'hash': '0x76fe9e2125c576f27196f04eacb9f1b225693407cdecb5987db8c44c52562e90', 'from': '0x86b1a7b0e0d8bf7691e9e40b67fc5affa52b2dab', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbcd055be466d8c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:56:21.000Z'}}, {'blockNum': '0x635ed1', 'uniqueId': '0xf69166af737ce58ad561e54fc03c4bd0392e8c825ebd790d3c76cc843a3fcea9:log:9', 'hash': '0xf69166af737ce58ad561e54fc03c4bd0392e8c825ebd790d3c76cc843a3fcea9', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x08f6ee44e0daeab80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:57:00.000Z'}}, {'blockNum': '0x635f10', 'uniqueId': '0xd41e5b11623a0132eb0050fe4ba6eb42aa70ee695c6f8f861e82805f4829bf1b:log:32', 'hash': '0xd41e5b11623a0132eb0050fe4ba6eb42aa70ee695c6f8f861e82805f4829bf1b', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5193.29135953519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011987654042a86c3be1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T08:09:41.000Z'}}, {'blockNum': '0x635f10', 'uniqueId': '0xd41e5b11623a0132eb0050fe4ba6eb42aa70ee695c6f8f861e82805f4829bf1b:log:36', 'hash': '0xd41e5b11623a0132eb0050fe4ba6eb42aa70ee695c6f8f861e82805f4829bf1b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 5193.29135953519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011987654042a86c3be1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T08:09:41.000Z'}}, {'blockNum': '0x635f10', 'uniqueId': '0xd41e5b11623a0132eb0050fe4ba6eb42aa70ee695c6f8f861e82805f4829bf1b:log:38', 'hash': '0xd41e5b11623a0132eb0050fe4ba6eb42aa70ee695c6f8f861e82805f4829bf1b', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5193.29135953519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011987654042a86c3be1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T08:09:41.000Z'}}, {'blockNum': '0x635f10', 'uniqueId': '0xd41e5b11623a0132eb0050fe4ba6eb42aa70ee695c6f8f861e82805f4829bf1b:log:39', 'hash': '0xd41e5b11623a0132eb0050fe4ba6eb42aa70ee695c6f8f861e82805f4829bf1b', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5193.29135953519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011987654042a86c3be1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T08:09:41.000Z'}}, {'blockNum': '0x635f2a', 'uniqueId': '0xe0220081a56b1e338153982e28459f1860d0f26b7a02206619d3fd35c1be210f:log:23', 'hash': '0xe0220081a56b1e338153982e28459f1860d0f26b7a02206619d3fd35c1be210f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 59664.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0ca26b4549ee4df20000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T08:17:57.000Z'}}, {'blockNum': '0x635f85', 'uniqueId': '0xc8bf3ab53ef168a003cdc138afe248972dc6ecd5c51d13bd1f069cb4872066bc:log:9', 'hash': '0xc8bf3ab53ef168a003cdc138afe248972dc6ecd5c51d13bd1f069cb4872066bc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x20fd29d140b74de6424f87761e74c3368a307154', 'value': 351.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x130e0adbac55ce0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T08:41:13.000Z'}}, {'blockNum': '0x636046', 'uniqueId': '0x3348e3bd64804f642a6549452f8e21167050d6545695b3b9b4b90d9a7f3644d0:log:1', 'hash': '0x3348e3bd64804f642a6549452f8e21167050d6545695b3b9b4b90d9a7f3644d0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x032d26d12e980b600000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T09:24:51.000Z'}}, {'blockNum': '0x636090', 'uniqueId': '0xc76dd6ace93c9af49e779b81f046a2586d599964d4c48bf29b549d8372b4e92d:log:10', 'hash': '0xc76dd6ace93c9af49e779b81f046a2586d599964d4c48bf29b549d8372b4e92d', 'from': '0xe04f1fed3671f349a588a8d819151a5b314da209', 'to': '0x5aa05dcd9e99b3a98a8ab4e24e6505635780d4e4', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T09:43:41.000Z'}}, {'blockNum': '0x636099', 'uniqueId': '0x84ffea2de9c6bda52a4ee3c82c0631ba4eefc0698c432770407ec46f5a5ef1e4:log:12', 'hash': '0x84ffea2de9c6bda52a4ee3c82c0631ba4eefc0698c432770407ec46f5a5ef1e4', 'from': '0xe04f1fed3671f349a588a8d819151a5b314da209', 'to': '0x5aa05dcd9e99b3a98a8ab4e24e6505635780d4e4', 'value': 2002.835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x6c92eb4d067f7b8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T09:46:42.000Z'}}, {'blockNum': '0x6360eb', 'uniqueId': '0x51c01a8ee76815472a322039be73b6f756a644ac69dbd9211090044104e58b7e:log:2', 'hash': '0x51c01a8ee76815472a322039be73b6f756a644ac69dbd9211090044104e58b7e', 'from': '0x5aa05dcd9e99b3a98a8ab4e24e6505635780d4e4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2102.835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x71feb2ab33e28b8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:06:05.000Z'}}, {'blockNum': '0x6360eb', 'uniqueId': '0x35a7737e3bc79c1216c1ee8a2ef2089a291accfc2034c58aec06477e347920bf:log:34', 'hash': '0x35a7737e3bc79c1216c1ee8a2ef2089a291accfc2034c58aec06477e347920bf', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5240.849028235699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c1b6407f8dff498d6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:06:05.000Z'}}, {'blockNum': '0x6360eb', 'uniqueId': '0x35a7737e3bc79c1216c1ee8a2ef2089a291accfc2034c58aec06477e347920bf:log:36', 'hash': '0x35a7737e3bc79c1216c1ee8a2ef2089a291accfc2034c58aec06477e347920bf', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5240.849028235699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c1b6407f8dff498d6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:06:05.000Z'}}, {'blockNum': '0x6360ec', 'uniqueId': '0xa2ad0f122a125436de2ef9ce4ff520862237c0cf4d61a3d6ee54bcff1871196e:log:17', 'hash': '0xa2ad0f122a125436de2ef9ce4ff520862237c0cf4d61a3d6ee54bcff1871196e', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5240.843787386671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c1b5169729f4e5723', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:06:16.000Z'}}, {'blockNum': '0x6360ec', 'uniqueId': '0xa2ad0f122a125436de2ef9ce4ff520862237c0cf4d61a3d6ee54bcff1871196e:log:19', 'hash': '0xa2ad0f122a125436de2ef9ce4ff520862237c0cf4d61a3d6ee54bcff1871196e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5240.843787386671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c1b5169729f4e5723', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:06:16.000Z'}}, {'blockNum': '0x63614a', 'uniqueId': '0xd9c646d9138fc054cdb0e70b97d5d19a99c1cda1ecf31dd0a22c66c58dffc09a:log:7', 'hash': '0xd9c646d9138fc054cdb0e70b97d5d19a99c1cda1ecf31dd0a22c66c58dffc09a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x20af568d0317a410840c5f112c05e7b2950050e7', 'value': 93.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x051192ba9da3060000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:28:53.000Z'}}, {'blockNum': '0x636164', 'uniqueId': '0x80fa5f55806427b81e16e569062423df533e3d84802bbd375611330bc4e188f2:log:56', 'hash': '0x80fa5f55806427b81e16e569062423df533e3d84802bbd375611330bc4e188f2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x42e19dd1559a4c36f87c31aab196fe825825099d', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:34:06.000Z'}}, {'blockNum': '0x63618c', 'uniqueId': '0xa55a86c60f82ec97e83a736d2b366354454ee46c4a0812e0c01f258df35bb125:log:24', 'hash': '0xa55a86c60f82ec97e83a736d2b366354454ee46c4a0812e0c01f258df35bb125', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4223.985129909286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe4fb91c00527340cd5', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:43:37.000Z'}}, {'blockNum': '0x63618c', 'uniqueId': '0xa55a86c60f82ec97e83a736d2b366354454ee46c4a0812e0c01f258df35bb125:log:26', 'hash': '0xa55a86c60f82ec97e83a736d2b366354454ee46c4a0812e0c01f258df35bb125', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'value': 4223.985129909286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe4fb91c00527340cd5', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:43:37.000Z'}}, {'blockNum': '0x63618c', 'uniqueId': '0xa55a86c60f82ec97e83a736d2b366354454ee46c4a0812e0c01f258df35bb125:log:30', 'hash': '0xa55a86c60f82ec97e83a736d2b366354454ee46c4a0812e0c01f258df35bb125', 'from': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4223.985129909286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe4fb91c00527340cd5', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:43:37.000Z'}}, {'blockNum': '0x63618c', 'uniqueId': '0xa55a86c60f82ec97e83a736d2b366354454ee46c4a0812e0c01f258df35bb125:log:32', 'hash': '0xa55a86c60f82ec97e83a736d2b366354454ee46c4a0812e0c01f258df35bb125', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4223.985129909286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe4fb91c00527340cd5', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:43:37.000Z'}}, {'blockNum': '0x63619c', 'uniqueId': '0x7e178daae1d810aa0f3ae417f26d6daf268f9ddb6857c0b2cb566065b3fd9f7e:log:57', 'hash': '0x7e178daae1d810aa0f3ae417f26d6daf268f9ddb6857c0b2cb566065b3fd9f7e', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5113.022174922876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01152d6fd223cd354498', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:46:47.000Z'}}, {'blockNum': '0x63619c', 'uniqueId': '0x7e178daae1d810aa0f3ae417f26d6daf268f9ddb6857c0b2cb566065b3fd9f7e:log:59', 'hash': '0x7e178daae1d810aa0f3ae417f26d6daf268f9ddb6857c0b2cb566065b3fd9f7e', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5113.022174922876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01152d6fd223cd354498', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:46:47.000Z'}}, {'blockNum': '0x63619c', 'uniqueId': '0x615192d8a87c48227b4b098e4e2923389fe29150a2496de563edf97432069b4a:log:64', 'hash': '0x615192d8a87c48227b4b098e4e2923389fe29150a2496de563edf97432069b4a', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5113.017061900701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01152d5da7df8ebe3c1c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:46:47.000Z'}}, {'blockNum': '0x63619c', 'uniqueId': '0x615192d8a87c48227b4b098e4e2923389fe29150a2496de563edf97432069b4a:log:66', 'hash': '0x615192d8a87c48227b4b098e4e2923389fe29150a2496de563edf97432069b4a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5113.017061900701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01152d5da7df8ebe3c1c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:46:47.000Z'}}, {'blockNum': '0x6361e3', 'uniqueId': '0x1758986d1af0baec5a8b58cbbc33d2c25bba60aca70ce24fdf9b216e83e5534e:log:4', 'hash': '0x1758986d1af0baec5a8b58cbbc33d2c25bba60aca70ce24fdf9b216e83e5534e', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x55f08cfc99a9da49f8d9db5aeb0f1a3e8ad0bf7f', 'value': 5539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012c4511111ec8ac0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:00:33.000Z'}}, {'blockNum': '0x636224', 'uniqueId': '0xe6f5c4ddad6215ec04653b0e7413a582dede170b92b25f4561ecd689f6a57d4c:log:5', 'hash': '0xe6f5c4ddad6215ec04653b0e7413a582dede170b92b25f4561ecd689f6a57d4c', 'from': '0x55f08cfc99a9da49f8d9db5aeb0f1a3e8ad0bf7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012c4511111ec8ac0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:16:16.000Z'}}, {'blockNum': '0x63623b', 'uniqueId': '0x6021b89c6200a7dbb69a4d747c65cb41b12d1fac7976e417a72e855a5853b3f8:log:6', 'hash': '0x6021b89c6200a7dbb69a4d747c65cb41b12d1fac7976e417a72e855a5853b3f8', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc446501c4aea7b39836dc92b9c0e6019066ed322', 'value': 1114.358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3c68d2e8e0d6bf0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:22:05.000Z'}}, {'blockNum': '0x63623b', 'uniqueId': '0x35746483b192586cc7bf682d7083d09e33bd7a8b440b14d908d7ad15ad44864b:log:7', 'hash': '0x35746483b192586cc7bf682d7083d09e33bd7a8b440b14d908d7ad15ad44864b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x557c6a82075f11522b96f6a7cff2673eba96b506', 'value': 1331.141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x48294ad6d00e408000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:22:05.000Z'}}, {'blockNum': '0x636251', 'uniqueId': '0xa9837a0510687c001a3a556890ea348f967b182be7b50ded086f36e638a1df79:log:2', 'hash': '0xa9837a0510687c001a3a556890ea348f967b182be7b50ded086f36e638a1df79', 'from': '0x4903fe8eddf319abad3d6926aed1ac51841217d8', 'to': '0x439dd9d7148658fd0c182be9cf4ffb05210f8f3f', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:26:01.000Z'}}, {'blockNum': '0x63629b', 'uniqueId': '0xa54a68bc3b0e4ee07826eb03fecfcdd1bc7dde6d683e9b7b1a7972d48362d8d0:log:54', 'hash': '0xa54a68bc3b0e4ee07826eb03fecfcdd1bc7dde6d683e9b7b1a7972d48362d8d0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5178.554852009007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0118bae2a8be2071d8cf', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:41:53.000Z'}}, {'blockNum': '0x63629b', 'uniqueId': '0xa54a68bc3b0e4ee07826eb03fecfcdd1bc7dde6d683e9b7b1a7972d48362d8d0:log:56', 'hash': '0xa54a68bc3b0e4ee07826eb03fecfcdd1bc7dde6d683e9b7b1a7972d48362d8d0', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5178.554852009007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0118bae2a8be2071d8cf', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:41:53.000Z'}}, {'blockNum': '0x63629c', 'uniqueId': '0xf0a249c1e4d3c2790604454a3f096afab843d8309f2421fb23270616ab979baa:log:84', 'hash': '0xf0a249c1e4d3c2790604454a3f096afab843d8309f2421fb23270616ab979baa', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5178.549673454155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0118bad042dfde0a74a0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:42:08.000Z'}}, {'blockNum': '0x63629c', 'uniqueId': '0xf0a249c1e4d3c2790604454a3f096afab843d8309f2421fb23270616ab979baa:log:86', 'hash': '0xf0a249c1e4d3c2790604454a3f096afab843d8309f2421fb23270616ab979baa', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5178.549673454155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0118bad042dfde0a74a0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:42:08.000Z'}}, {'blockNum': '0x6362b4', 'uniqueId': '0xcb0da83eee193ed20cbaf4e1f4ce00cd727456b6050b52b1077b1452e3b9a37e:log:59', 'hash': '0xcb0da83eee193ed20cbaf4e1f4ce00cd727456b6050b52b1077b1452e3b9a37e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 38460.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0824f2a87189a7220000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:46:27.000Z'}}, {'blockNum': '0x6362d3', 'uniqueId': '0xbdfdb3f4dbf49f328edb094a52d9bb348bb497503ab5e17bc90b8513573cd3fd:log:5', 'hash': '0xbdfdb3f4dbf49f328edb094a52d9bb348bb497503ab5e17bc90b8513573cd3fd', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe9ad7bd9ef690fe56772961c4204310b81d66c97', 'value': 1430.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x4d8c2ceae2dc4a0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:53:55.000Z'}}, {'blockNum': '0x6362dd', 'uniqueId': '0x1ff92573c4e4929e2777d628894a1842a34413e3246fcdf05b96af329ff9d021:log:5', 'hash': '0x1ff92573c4e4929e2777d628894a1842a34413e3246fcdf05b96af329ff9d021', 'from': '0x6739a4af1692b8f8e24d3785c51b278b72f9099d', 'to': '0xf7b4ec478010b3662e0ae0a260073ea552271679', 'value': 5617.27046155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013083499b348e4acc00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:56:01.000Z'}}, {'blockNum': '0x63635c', 'uniqueId': '0x1fe49034b1f7d4fa800920f18be53e7f4da6b05708ef44e50087d4bcb303beca:log:46', 'hash': '0x1fe49034b1f7d4fa800920f18be53e7f4da6b05708ef44e50087d4bcb303beca', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5344.516040927341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0121ba0f3ec38b3f05f4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:25:31.000Z'}}, {'blockNum': '0x63635c', 'uniqueId': '0x1fe49034b1f7d4fa800920f18be53e7f4da6b05708ef44e50087d4bcb303beca:log:48', 'hash': '0x1fe49034b1f7d4fa800920f18be53e7f4da6b05708ef44e50087d4bcb303beca', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5344.516040927341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0121ba0f3ec38b3f05f4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:25:31.000Z'}}, {'blockNum': '0x63635e', 'uniqueId': '0x7e932e24a21ae35b8494b43ffb446770b661561ef225aa0889fbf624d4bd611f:log:31', 'hash': '0x7e932e24a21ae35b8494b43ffb446770b661561ef225aa0889fbf624d4bd611f', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5344.5106964113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0121b9fc41f46f215d85', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:25:41.000Z'}}, {'blockNum': '0x63635e', 'uniqueId': '0x7e932e24a21ae35b8494b43ffb446770b661561ef225aa0889fbf624d4bd611f:log:33', 'hash': '0x7e932e24a21ae35b8494b43ffb446770b661561ef225aa0889fbf624d4bd611f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5344.5106964113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0121b9fc41f46f215d85', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:25:41.000Z'}}, {'blockNum': '0x63638a', 'uniqueId': '0xa185684c3a86e546322949e6a006df98ab199bebb76589767c20abae3a3f563f:log:3', 'hash': '0xa185684c3a86e546322949e6a006df98ab199bebb76589767c20abae3a3f563f', 'from': '0x82f95509d2052b42c82ebaa862fb12c325266db9', 'to': '0xe03361695e30622be69ad6e3d291758e6d3fa224', 'value': 251960.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x355ace5ade0ed1920000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:33:53.000Z'}}, {'blockNum': '0x636395', 'uniqueId': '0xbde875a1075e422c23a7e747ed407239d0209840d38f9608835b9eb18d0d6ae9:log:172', 'hash': '0xbde875a1075e422c23a7e747ed407239d0209840d38f9608835b9eb18d0d6ae9', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 41.54862563704219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02409a5ee201967998', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:36:11.000Z'}}, {'blockNum': '0x636395', 'uniqueId': '0xbde875a1075e422c23a7e747ed407239d0209840d38f9608835b9eb18d0d6ae9:log:176', 'hash': '0xbde875a1075e422c23a7e747ed407239d0209840d38f9608835b9eb18d0d6ae9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xee52d73202bdd9d3a87c8ec001ad27c0d6502e33', 'value': 41.54862563704219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02409a5ee201967998', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:36:11.000Z'}}, {'blockNum': '0x636395', 'uniqueId': '0xbde875a1075e422c23a7e747ed407239d0209840d38f9608835b9eb18d0d6ae9:log:227', 'hash': '0xbde875a1075e422c23a7e747ed407239d0209840d38f9608835b9eb18d0d6ae9', 'from': '0xee52d73202bdd9d3a87c8ec001ad27c0d6502e33', 'to': '0xcb0243843a1530a04dce2631d6db4850c0a46725', 'value': 40.961142476364046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x023873360f91d7e517', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:36:11.000Z'}}, {'blockNum': '0x6363b4', 'uniqueId': '0x4b172453c46cd805fbc2712e4d62c622f3afcb0be57a87577674bcae775c2852:log:21', 'hash': '0x4b172453c46cd805fbc2712e4d62c622f3afcb0be57a87577674bcae775c2852', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5140.952515285019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0116b10c52b7ca844096', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:43:25.000Z'}}, {'blockNum': '0x6363b4', 'uniqueId': '0x4b172453c46cd805fbc2712e4d62c622f3afcb0be57a87577674bcae775c2852:log:23', 'hash': '0x4b172453c46cd805fbc2712e4d62c622f3afcb0be57a87577674bcae775c2852', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5140.952515285019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0116b10c52b7ca844096', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:43:25.000Z'}}, {'blockNum': '0x6363b4', 'uniqueId': '0xaf78e252d7787fb56c16954d0df5104de67eeb20ff6cd670392b73d0e695dc84:log:28', 'hash': '0xaf78e252d7787fb56c16954d0df5104de67eeb20ff6cd670392b73d0e695dc84', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5140.947374332504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0116b0fa0f0c82093079', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:43:25.000Z'}}, {'blockNum': '0x6363b4', 'uniqueId': '0xaf78e252d7787fb56c16954d0df5104de67eeb20ff6cd670392b73d0e695dc84:log:30', 'hash': '0xaf78e252d7787fb56c16954d0df5104de67eeb20ff6cd670392b73d0e695dc84', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5140.947374332504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0116b0fa0f0c82093079', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:43:25.000Z'}}, {'blockNum': '0x6363bc', 'uniqueId': '0x84db911eb0be5704f25051e623484dd54bb52a79d0be08973998810b5ed2dc7d:log:7', 'hash': '0x84db911eb0be5704f25051e623484dd54bb52a79d0be08973998810b5ed2dc7d', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 125145.20892231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1a8022a7931b6cf83c00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:45:58.000Z'}}, {'blockNum': '0x6363f0', 'uniqueId': '0xb3e6d7cc4a867561b0629c67f464dd3d5c465eddf617ae55e77297b4e4cfbbd2:log:6', 'hash': '0xb3e6d7cc4a867561b0629c67f464dd3d5c465eddf617ae55e77297b4e4cfbbd2', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 125145.20892231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1a8022a7931b6cf83c00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:56:06.000Z'}}, {'blockNum': '0x63641b', 'uniqueId': '0xede07d585c30dac7d51878b664295d86e64ea96f9a7a17733564c058e8870316:log:21', 'hash': '0xede07d585c30dac7d51878b664295d86e64ea96f9a7a17733564c058e8870316', 'from': '0xe03361695e30622be69ad6e3d291758e6d3fa224', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 251960.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x355ace5ade0ed1920000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T13:06:36.000Z'}}, {'blockNum': '0x636462', 'uniqueId': '0x42a6620a37743f6bfb39edbf0b43631d54d3416d61a514e1e9c023c50854a787:log:1', 'hash': '0x42a6620a37743f6bfb39edbf0b43631d54d3416d61a514e1e9c023c50854a787', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x20ab68f68a96d6d289c6ebb30d42023b67770093', 'value': 82961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1191532781c8ada40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T13:23:58.000Z'}}, {'blockNum': '0x63646f', 'uniqueId': '0x22eaa753f32e4116689989ae1ea9d87cd814a4d287d0b642834295f0b8358f40:log:1', 'hash': '0x22eaa753f32e4116689989ae1ea9d87cd814a4d287d0b642834295f0b8358f40', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe9856510d52a7c97086d7d322b6c7375140769e9', 'value': 4119.35, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xdf4f7717bf915f0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T13:26:44.000Z'}}, {'blockNum': '0x636492', 'uniqueId': '0xc81bd108797ee9db7069bf7002aced6c8f3001b8cdc1e580be0d45cde34aacad:log:99', 'hash': '0xc81bd108797ee9db7069bf7002aced6c8f3001b8cdc1e580be0d45cde34aacad', 'from': '0x4e66b98ae75245f9293c8827354a69e180a71551', 'to': '0x20e31d452b8ea39b35e330552ec30269651215f4', 'value': 51590.68432627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0aecbc91e7950c296c00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T13:35:41.000Z'}}, {'blockNum': '0x6364a7', 'uniqueId': '0x3bd90c950a872d2ef20a22a7d1b1517ceca1397f22e0f1e37bdb2006fe2691aa:log:6', 'hash': '0x3bd90c950a872d2ef20a22a7d1b1517ceca1397f22e0f1e37bdb2006fe2691aa', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x11432ffbaa34530d90bc888350a936940a853602', 'value': 1035.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x38227303af94fe0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T13:41:22.000Z'}}, {'blockNum': '0x6364be', 'uniqueId': '0x51a6a2f6924951cd491d8efff70b2be23225744c2b1d3c79251bb2644458f526:log:20', 'hash': '0x51a6a2f6924951cd491d8efff70b2be23225744c2b1d3c79251bb2644458f526', 'from': '0x20ab68f68a96d6d289c6ebb30d42023b67770093', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 82961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1191532781c8ada40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T13:46:15.000Z'}}, {'blockNum': '0x6364ca', 'uniqueId': '0xaf18b7b4ac0e3609b0fcf0103f322813e579043539e6421c88fc5262ca9fc75b:log:2', 'hash': '0xaf18b7b4ac0e3609b0fcf0103f322813e579043539e6421c88fc5262ca9fc75b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4d704fa9cb8042caf0fd5ed38f0b5455ec72d8be', 'value': 1131.34099999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3d5482a563af289c00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T13:48:37.000Z'}}, {'blockNum': '0x6364e6', 'uniqueId': '0xf38e668d787b6184d46ecb38c3b543196272e7a688af72e42212b57229f711ac:log:8', 'hash': '0xf38e668d787b6184d46ecb38c3b543196272e7a688af72e42212b57229f711ac', 'from': '0x20e31d452b8ea39b35e330552ec30269651215f4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 51590.68432627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0aecbc91e7950c296c00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T13:56:09.000Z'}}, {'blockNum': '0x63653f', 'uniqueId': '0xdb28debc61dd491e80f006ce11e415b5f8e6a2d1e1ad1f0b7b05f50517b28968:log:66', 'hash': '0xdb28debc61dd491e80f006ce11e415b5f8e6a2d1e1ad1f0b7b05f50517b28968', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4274.548319464779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe7b94649068d12c243', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:16:25.000Z'}}, {'blockNum': '0x63653f', 'uniqueId': '0xdb28debc61dd491e80f006ce11e415b5f8e6a2d1e1ad1f0b7b05f50517b28968:log:70', 'hash': '0xdb28debc61dd491e80f006ce11e415b5f8e6a2d1e1ad1f0b7b05f50517b28968', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'value': 4274.548319464779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe7b94649068d12c243', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:16:25.000Z'}}, {'blockNum': '0x63653f', 'uniqueId': '0xf92aba71a5f054405c5ac2dd4c00ce9a6ed45a1fc62aef0a66cb2594218440cb:log:82', 'hash': '0xf92aba71a5f054405c5ac2dd4c00ce9a6ed45a1fc62aef0a66cb2594218440cb', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 12026.79168503668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x028bf94354de19010101', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:16:25.000Z'}}, {'blockNum': '0x63653f', 'uniqueId': '0xf92aba71a5f054405c5ac2dd4c00ce9a6ed45a1fc62aef0a66cb2594218440cb:log:86', 'hash': '0xf92aba71a5f054405c5ac2dd4c00ce9a6ed45a1fc62aef0a66cb2594218440cb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 12026.79168503668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x028bf94354de19010101', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:16:25.000Z'}}, {'blockNum': '0x636542', 'uniqueId': '0x29dd7586b88680bb6a7f07beea619216643a0f49c5e12237cd21922a3148ad37:log:38', 'hash': '0x29dd7586b88680bb6a7f07beea619216643a0f49c5e12237cd21922a3148ad37', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 12026.91384283455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x028bfaf552bccda00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:17:06.000Z'}}, {'blockNum': '0x636545', 'uniqueId': '0xeecd689b8a232d74a9b89f51ec15e210606a9ca21727c6517ee1d14d1b6b968e:log:19', 'hash': '0xeecd689b8a232d74a9b89f51ec15e210606a9ca21727c6517ee1d14d1b6b968e', 'from': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'to': '0x1a7fe01f4195b183b37bdf3e4d3c9b1f31de34f9', 'value': 4274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe7b1aa4360a3880000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:17:40.000Z'}}, {'blockNum': '0x636547', 'uniqueId': '0x011aca02e72753fd32ff759047fcfea414d9bc93e381f85cb0fdcae46a00f230:log:18', 'hash': '0x011aca02e72753fd32ff759047fcfea414d9bc93e381f85cb0fdcae46a00f230', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xa837fd02db236f4b454cbaa89f6ae05b5b110563', 'value': 475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x19bff2ff57968c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:17:51.000Z'}}, {'blockNum': '0x63654e', 'uniqueId': '0xf65f3d48074e9dff04ae6c419c252db5cde3b9881950d843937047e4db15e4eb:log:10', 'hash': '0xf65f3d48074e9dff04ae6c419c252db5cde3b9881950d843937047e4db15e4eb', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 52520, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0b1f1d6a691d3ba00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:20:32.000Z'}}, {'blockNum': '0x636567', 'uniqueId': '0x56bcf5b22898f493563fc0b41a79dfd7c223bf0179841e00691f8a6f38f89c24:log:47', 'hash': '0x56bcf5b22898f493563fc0b41a79dfd7c223bf0179841e00691f8a6f38f89c24', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12026.91384283455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x028bfaf552bccda00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:26:12.000Z'}}, {'blockNum': '0x636582', 'uniqueId': '0x8bb996ed36eb21b0eb64b1d64362891d9933b5832a766d618eefa8cce2143e8d:log:55', 'hash': '0x8bb996ed36eb21b0eb64b1d64362891d9933b5832a766d618eefa8cce2143e8d', 'from': '0x10ecd1d529f1d3c35c3dec91547e249a4b080e3f', 'to': '0x8ed9327950ace62571d8f88d1798f0c0fb44f0f1', 'value': 35411.7884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x077fad490a1aa2570000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:34:37.000Z'}}, {'blockNum': '0x636587', 'uniqueId': '0x4345784cffed41ba3a1f602226e122890ee7f88e34b8f2bc9e645564f97bdcc4:log:6', 'hash': '0x4345784cffed41ba3a1f602226e122890ee7f88e34b8f2bc9e645564f97bdcc4', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 52520, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0b1f1d6a691d3ba00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:36:06.000Z'}}, {'blockNum': '0x63659c', 'uniqueId': '0x660a9472d9471f2814009970760d9b4ae9cb4181a77201c674d6aa7bcc7f7a87:log:103', 'hash': '0x660a9472d9471f2814009970760d9b4ae9cb4181a77201c674d6aa7bcc7f7a87', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5242.044795676086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c2bfc401fae3fb6c3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:42:07.000Z'}}, {'blockNum': '0x63659c', 'uniqueId': '0x660a9472d9471f2814009970760d9b4ae9cb4181a77201c674d6aa7bcc7f7a87:log:107', 'hash': '0x660a9472d9471f2814009970760d9b4ae9cb4181a77201c674d6aa7bcc7f7a87', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 5242.044795676086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c2bfc401fae3fb6c3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:42:07.000Z'}}, {'blockNum': '0x63659c', 'uniqueId': '0x660a9472d9471f2814009970760d9b4ae9cb4181a77201c674d6aa7bcc7f7a87:log:109', 'hash': '0x660a9472d9471f2814009970760d9b4ae9cb4181a77201c674d6aa7bcc7f7a87', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5242.044795676086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c2bfc401fae3fb6c3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:42:07.000Z'}}, {'blockNum': '0x63659c', 'uniqueId': '0x660a9472d9471f2814009970760d9b4ae9cb4181a77201c674d6aa7bcc7f7a87:log:110', 'hash': '0x660a9472d9471f2814009970760d9b4ae9cb4181a77201c674d6aa7bcc7f7a87', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5242.044795676086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c2bfc401fae3fb6c3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:42:07.000Z'}}, {'blockNum': '0x6365ac', 'uniqueId': '0x15ee08b095c67ffbc5f3215d0e3d57dc1e8e6abebca5d9918d2e6f0931be0a1d:log:91', 'hash': '0x15ee08b095c67ffbc5f3215d0e3d57dc1e8e6abebca5d9918d2e6f0931be0a1d', 'from': '0x57b0fb22a32272e9a580123b00a8cf037c6fdcab', 'to': '0xa186756c96e637b1c4de94f4b7bc7644c65b0a75', 'value': 20301.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x044c8922351a4db20000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:44:39.000Z'}}, {'blockNum': '0x6365b9', 'uniqueId': '0xaecf3aee034c6a9eec3596294ed04f10c6283c835fb1ec12e0d90a888944b89f:log:74', 'hash': '0xaecf3aee034c6a9eec3596294ed04f10c6283c835fb1ec12e0d90a888944b89f', 'from': '0x8ed9327950ace62571d8f88d1798f0c0fb44f0f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35411.7884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x077fad490a1aa2570000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:47:02.000Z'}}, {'blockNum': '0x6365c3', 'uniqueId': '0x082c04a2c85df873d1c71bfff90bc96d18288bb5112fb6e6aa50a2f4ad13da04:log:57', 'hash': '0x082c04a2c85df873d1c71bfff90bc96d18288bb5112fb6e6aa50a2f4ad13da04', 'from': '0x9c6ea4b8a541a1e361c4862de306032ba8679437', 'to': '0x049b6339a45ccc019aeae34b93ef1e80719129ff', 'value': 402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x15cadee61cdb080000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:49:18.000Z'}}, {'blockNum': '0x6365cf', 'uniqueId': '0x93a342c14ac42980a3aa1273cd25c7f072b7fabb2d92cce97af583500e613ba1:log:75', 'hash': '0x93a342c14ac42980a3aa1273cd25c7f072b7fabb2d92cce97af583500e613ba1', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 15820.730961044324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0359a4bf4b3ea74cd492', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:51:30.000Z'}}, {'blockNum': '0x6365cf', 'uniqueId': '0x93a342c14ac42980a3aa1273cd25c7f072b7fabb2d92cce97af583500e613ba1:log:79', 'hash': '0x93a342c14ac42980a3aa1273cd25c7f072b7fabb2d92cce97af583500e613ba1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'value': 15820.730961044324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0359a4bf4b3ea74cd492', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:51:30.000Z'}}, {'blockNum': '0x6365cf', 'uniqueId': '0x7f567ce465c1d584c5dff161cd82c3ab9733b4b12d00d471372dfd71703ee05b:log:82', 'hash': '0x7f567ce465c1d584c5dff161cd82c3ab9733b4b12d00d471372dfd71703ee05b', 'from': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'to': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'value': 15820.730961044324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0359a4bf4b3ea74cd492', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:51:30.000Z'}}, {'blockNum': '0x6365cf', 'uniqueId': '0x7f567ce465c1d584c5dff161cd82c3ab9733b4b12d00d471372dfd71703ee05b:log:84', 'hash': '0x7f567ce465c1d584c5dff161cd82c3ab9733b4b12d00d471372dfd71703ee05b', 'from': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 15820.730961044324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0359a4bf4b3ea74cd492', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:51:30.000Z'}}, {'blockNum': '0x6365cf', 'uniqueId': '0x7f567ce465c1d584c5dff161cd82c3ab9733b4b12d00d471372dfd71703ee05b:log:85', 'hash': '0x7f567ce465c1d584c5dff161cd82c3ab9733b4b12d00d471372dfd71703ee05b', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 15820.730961044324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0359a4bf4b3ea74cd492', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:51:30.000Z'}}, {'blockNum': '0x6365d4', 'uniqueId': '0x1536530c5a32e48b91f404d33fd5e9a86d1dad42d425cbc7b8407a1690180aad:log:7', 'hash': '0x1536530c5a32e48b91f404d33fd5e9a86d1dad42d425cbc7b8407a1690180aad', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x732c0283711b6391ebbd28eb6e25b48e4ed59648', 'value': 8313.641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01c2aef219f1334a8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:52:28.000Z'}}, {'blockNum': '0x6365d4', 'uniqueId': '0xcd2ed5d54b6f10703b71da5d89605fa9f5d5170b0aede262a6388f9eef04157a:log:71', 'hash': '0xcd2ed5d54b6f10703b71da5d89605fa9f5d5170b0aede262a6388f9eef04157a', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 8145.311535568237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b98ee7b5e3a44ddd6a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:52:28.000Z'}}, {'blockNum': '0x6365d4', 'uniqueId': '0xcd2ed5d54b6f10703b71da5d89605fa9f5d5170b0aede262a6388f9eef04157a:log:75', 'hash': '0xcd2ed5d54b6f10703b71da5d89605fa9f5d5170b0aede262a6388f9eef04157a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 8145.311535568237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b98ee7b5e3a44ddd6a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:52:28.000Z'}}, {'blockNum': '0x6365d4', 'uniqueId': '0xcd2ed5d54b6f10703b71da5d89605fa9f5d5170b0aede262a6388f9eef04157a:log:78', 'hash': '0xcd2ed5d54b6f10703b71da5d89605fa9f5d5170b0aede262a6388f9eef04157a', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 8144.703833282942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b98678b7e168131ca0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:52:28.000Z'}}, {'blockNum': '0x6365dd', 'uniqueId': '0x19c9f9097c1b88fe9d8716d2014d812288869194d3ac9eeb640e423d5c248ccf:log:4', 'hash': '0x19c9f9097c1b88fe9d8716d2014d812288869194d3ac9eeb640e423d5c248ccf', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x66ad9e7eca40bf3a7308c3358d914ca2ad9a7ecd', 'value': 12816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02b6c1ba81ebfe400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:55:02.000Z'}}, {'blockNum': '0x6365e1', 'uniqueId': '0x19e3abd41aaf3e5b5580cf47fddfc021a25c36993aa2a55cd2c3ed7b2d495c71:log:31', 'hash': '0x19e3abd41aaf3e5b5580cf47fddfc021a25c36993aa2a55cd2c3ed7b2d495c71', 'from': '0xa186756c96e637b1c4de94f4b7bc7644c65b0a75', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20301.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x044c8922351a4db20000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:56:13.000Z'}}, {'blockNum': '0x6365e4', 'uniqueId': '0x1b523a1bf339adacb9d3453c752497e3546b2e4b776ff94bcb31241d66c5dadc:log:159', 'hash': '0x1b523a1bf339adacb9d3453c752497e3546b2e4b776ff94bcb31241d66c5dadc', 'from': '0x9c6ea4b8a541a1e361c4862de306032ba8679437', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 13702.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02e6d1c6748383940000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:56:43.000Z'}}, {'blockNum': '0x6365e9', 'uniqueId': '0xc633ae42f5eded8213d33e46eab0217f7a30b3acf139cfe6ce27634e616369c1:log:1', 'hash': '0xc633ae42f5eded8213d33e46eab0217f7a30b3acf139cfe6ce27634e616369c1', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 38344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x081ea1e54cc7fa200000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:57:23.000Z'}}, {'blockNum': '0x636607', 'uniqueId': '0xa9cc39289e075fa7e149f3a230cecc3c10d57c6cc1247996d89170ee650d76bb:log:42', 'hash': '0xa9cc39289e075fa7e149f3a230cecc3c10d57c6cc1247996d89170ee650d76bb', 'from': '0x66ad9e7eca40bf3a7308c3358d914ca2ad9a7ecd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02b6c1ba81ebfe400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T15:06:02.000Z'}}, {'blockNum': '0x636607', 'uniqueId': '0x1ce7f0d6fd20691e929443f08874117bf42f5c09f60e00ac17440122bf7ffedf:log:52', 'hash': '0x1ce7f0d6fd20691e929443f08874117bf42f5c09f60e00ac17440122bf7ffedf', 'from': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13702.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02e6d1c6748383940000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T15:06:02.000Z'}}, {'blockNum': '0x636607', 'uniqueId': '0xea83cafdb893f351fc732f1950222200334a55e1db994ae19982ddc6648509c0:log:53', 'hash': '0xea83cafdb893f351fc732f1950222200334a55e1db994ae19982ddc6648509c0', 'from': '0x732c0283711b6391ebbd28eb6e25b48e4ed59648', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8313.641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01c2aef219f1334a8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T15:06:02.000Z'}}, {'blockNum': '0x636607', 'uniqueId': '0xdfa33a71880902dfcb238f20d2d59a61a4ace09aabf8de22d67fde0358ba9385:log:54', 'hash': '0xdfa33a71880902dfcb238f20d2d59a61a4ace09aabf8de22d67fde0358ba9385', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x081ea1e54cc7fa200000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T15:06:02.000Z'}}, {'blockNum': '0x63670e', 'uniqueId': '0x21a9ee5875c21aa00e44ad69dd83e7405d04e8cd3d1d2cecb9dbfd012ab33822:log:6', 'hash': '0x21a9ee5875c21aa00e44ad69dd83e7405d04e8cd3d1d2cecb9dbfd012ab33822', 'from': '0x2b3c9956ab5f2fe8e804d8231496b9eedb443a53', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:04:05.000Z'}}, {'blockNum': '0x63670e', 'uniqueId': '0x21a9ee5875c21aa00e44ad69dd83e7405d04e8cd3d1d2cecb9dbfd012ab33822:log:7', 'hash': '0x21a9ee5875c21aa00e44ad69dd83e7405d04e8cd3d1d2cecb9dbfd012ab33822', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:04:05.000Z'}}, {'blockNum': '0x63671b', 'uniqueId': '0x3d681eea0b4788861c355f41fe05476f8464e30cffc231a01498102a7f54fb03:log:78', 'hash': '0x3d681eea0b4788861c355f41fe05476f8464e30cffc231a01498102a7f54fb03', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2019.9603518064241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x6d8094c5c262fb81fa', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:07:21.000Z'}}, {'blockNum': '0x63671b', 'uniqueId': '0x3d681eea0b4788861c355f41fe05476f8464e30cffc231a01498102a7f54fb03:log:82', 'hash': '0x3d681eea0b4788861c355f41fe05476f8464e30cffc231a01498102a7f54fb03', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2019.9603518064241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x6d8094c5c262fb81fa', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:07:21.000Z'}}, {'blockNum': '0x63671b', 'uniqueId': '0x3d681eea0b4788861c355f41fe05476f8464e30cffc231a01498102a7f54fb03:log:83', 'hash': '0x3d681eea0b4788861c355f41fe05476f8464e30cffc231a01498102a7f54fb03', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2019.5505181328008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x6d7ae4c0345dac652b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:07:21.000Z'}}, {'blockNum': '0x63671b', 'uniqueId': '0x3d681eea0b4788861c355f41fe05476f8464e30cffc231a01498102a7f54fb03:log:84', 'hash': '0x3d681eea0b4788861c355f41fe05476f8464e30cffc231a01498102a7f54fb03', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2019.5505181328008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x6d7ae4c0345dac652b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:07:21.000Z'}}, {'blockNum': '0x636721', 'uniqueId': '0xeaf675d5271905aa119ba804498f392b901b16d9e7fbeac6b984e4461ad404ea:log:0', 'hash': '0xeaf675d5271905aa119ba804498f392b901b16d9e7fbeac6b984e4461ad404ea', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x168ab6d1c39d3535580b0f0d2dc04199bfb46481', 'value': 972.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x34b8260d7963620000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:08:45.000Z'}}, {'blockNum': '0x636721', 'uniqueId': '0x993e431a5a8fb1b4f896c493026b2de8b224c87bf0cc38da16bf5e4868c3f971:log:4', 'hash': '0x993e431a5a8fb1b4f896c493026b2de8b224c87bf0cc38da16bf5e4868c3f971', 'from': '0x2b3c9956ab5f2fe8e804d8231496b9eedb443a53', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:08:45.000Z'}}, {'blockNum': '0x636721', 'uniqueId': '0x993e431a5a8fb1b4f896c493026b2de8b224c87bf0cc38da16bf5e4868c3f971:log:5', 'hash': '0x993e431a5a8fb1b4f896c493026b2de8b224c87bf0cc38da16bf5e4868c3f971', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:08:45.000Z'}}, {'blockNum': '0x636728', 'uniqueId': '0x66a8022cc6a456e6bfbabf74034102be60a363ba170f94e0fdddf384c886be86:log:26', 'hash': '0x66a8022cc6a456e6bfbabf74034102be60a363ba170f94e0fdddf384c886be86', 'from': '0x3b741b1799e3069b850bec7b20bcf5731971814c', 'to': '0x58d21abe3cfae1caac3d43b7cedcfde7044e6b13', 'value': 2600.0869068796474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8cf37451f4c98d9654', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:10:54.000Z'}}, {'blockNum': '0x63673a', 'uniqueId': '0x56534eec135798ecd4ad7301ed684eaaeec9bd5151e60ec677a255cdf9597470:log:0', 'hash': '0x56534eec135798ecd4ad7301ed684eaaeec9bd5151e60ec677a255cdf9597470', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9a2d77995e7ae1a134236c7e1222b3c585a7a969', 'value': 8623.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01d37b1a68bd250e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:15:19.000Z'}}, {'blockNum': '0x63673d', 'uniqueId': '0xcb57a0fb282dc5f54e5e3380badffe35f8233f5bc202ac44e4dc9d5ae2feb443:log:6', 'hash': '0xcb57a0fb282dc5f54e5e3380badffe35f8233f5bc202ac44e4dc9d5ae2feb443', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0x1b9cbc05718f26b6db7b9c606da09a0633572286', 'value': 456.312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x18bc99e25afc0c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:15:59.000Z'}}, {'blockNum': '0x63673d', 'uniqueId': '0xc5d6eb8dfd9a71f48b42703440eb454ae1cf0be0e76620e572e348c32a1dc4f8:log:61', 'hash': '0xc5d6eb8dfd9a71f48b42703440eb454ae1cf0be0e76620e572e348c32a1dc4f8', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4051.4357734317123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xdba0f74a826b3188b3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:15:59.000Z'}}, {'blockNum': '0x63673d', 'uniqueId': '0xc5d6eb8dfd9a71f48b42703440eb454ae1cf0be0e76620e572e348c32a1dc4f8:log:64', 'hash': '0xc5d6eb8dfd9a71f48b42703440eb454ae1cf0be0e76620e572e348c32a1dc4f8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 4051.4357734317123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xdba0f74a826b3188b3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:15:59.000Z'}}, {'blockNum': '0x63673f', 'uniqueId': '0x18517cf18e865f30e8dd2c94b57a52d1640891ad21647cefefb8f3b8f3dd1b45:log:15', 'hash': '0x18517cf18e865f30e8dd2c94b57a52d1640891ad21647cefefb8f3b8f3dd1b45', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 14036.337714159396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02f8e950ff52d1283c0b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:16:10.000Z'}}, {'blockNum': '0x63673f', 'uniqueId': '0x18517cf18e865f30e8dd2c94b57a52d1640891ad21647cefefb8f3b8f3dd1b45:log:19', 'hash': '0x18517cf18e865f30e8dd2c94b57a52d1640891ad21647cefefb8f3b8f3dd1b45', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 14036.337714159396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02f8e950ff52d1283c0b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:16:10.000Z'}}, {'blockNum': '0x636745', 'uniqueId': '0x49393e21c93f2deb1a9d910f3bd81c38811441c66e893672ddb43b798d64e366:log:34', 'hash': '0x49393e21c93f2deb1a9d910f3bd81c38811441c66e893672ddb43b798d64e366', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 14035.799091388832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02f8e1d76cc475c00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:18:07.000Z'}}, {'blockNum': '0x63674c', 'uniqueId': '0x15237b2f8948d190e864562a4483bb8f025c175564c41d685dae95364ebceb01:log:70', 'hash': '0x15237b2f8948d190e864562a4483bb8f025c175564c41d685dae95364ebceb01', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 3980.2603994082833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd7c53590f03d2376c2', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:19:30.000Z'}}, {'blockNum': '0x63674c', 'uniqueId': '0x15237b2f8948d190e864562a4483bb8f025c175564c41d685dae95364ebceb01:log:72', 'hash': '0x15237b2f8948d190e864562a4483bb8f025c175564c41d685dae95364ebceb01', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 3980.2603994082833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd7c53590f03d2376c2', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:19:30.000Z'}}, {'blockNum': '0x63674c', 'uniqueId': '0x15237b2f8948d190e864562a4483bb8f025c175564c41d685dae95364ebceb01:log:73', 'hash': '0x15237b2f8948d190e864562a4483bb8f025c175564c41d685dae95364ebceb01', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 3980.2603994082833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd7c53590f03d2376c2', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:19:30.000Z'}}, {'blockNum': '0x63674c', 'uniqueId': '0x7a57446793e47f1c00cfa9c8af535f3843223fede9a418d875c0a70de9ebe99f:log:82', 'hash': '0x7a57446793e47f1c00cfa9c8af535f3843223fede9a418d875c0a70de9ebe99f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 991.9803980425294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x35c67e544843904b9a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:19:30.000Z'}}, {'blockNum': '0x63674c', 'uniqueId': '0x7a57446793e47f1c00cfa9c8af535f3843223fede9a418d875c0a70de9ebe99f:log:84', 'hash': '0x7a57446793e47f1c00cfa9c8af535f3843223fede9a418d875c0a70de9ebe99f', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 991.9803980425294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x35c67e544843904b9a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:19:30.000Z'}}, {'blockNum': '0x63674c', 'uniqueId': '0x7a57446793e47f1c00cfa9c8af535f3843223fede9a418d875c0a70de9ebe99f:log:85', 'hash': '0x7a57446793e47f1c00cfa9c8af535f3843223fede9a418d875c0a70de9ebe99f', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 991.9803980425294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x35c67e544843904b9a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:19:30.000Z'}}, {'blockNum': '0x636758', 'uniqueId': '0xfbf9e98623015f3a5ca46b12ee71fa56883a655166bbfd55ef1c14225ba3acec:log:3', 'hash': '0xfbf9e98623015f3a5ca46b12ee71fa56883a655166bbfd55ef1c14225ba3acec', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 36657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x07c32e1152e3e6240000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:23:16.000Z'}}, {'blockNum': '0x636758', 'uniqueId': '0x85883dfe62e4a15f43cfa822e349143e13554f73f8ed14a88fd348377a4d7708:log:4', 'hash': '0x85883dfe62e4a15f43cfa822e349143e13554f73f8ed14a88fd348377a4d7708', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 60797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0cdfcfdd87b04fd40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:23:16.000Z'}}, {'blockNum': '0x636759', 'uniqueId': '0x42f53323e106d33f5bddd5bba2aa32b6bb9c3fcf244a78100cc727cff5ad4dfd:log:50', 'hash': '0x42f53323e106d33f5bddd5bba2aa32b6bb9c3fcf244a78100cc727cff5ad4dfd', 'from': '0x9c6ea4b8a541a1e361c4862de306032ba8679437', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 6307.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0155ee25876ec85e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:23:27.000Z'}}, {'blockNum': '0x636761', 'uniqueId': '0x3c44cdf9a506e423e1248e600fe666a2416f1b7365ec79566dd419816ae727a9:log:7', 'hash': '0x3c44cdf9a506e423e1248e600fe666a2416f1b7365ec79566dd419816ae727a9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2335951658665af2d0db9a8779eec57d4298896a', 'value': 995944.937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd2e648810312a32a8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:25:37.000Z'}}, {'blockNum': '0x636762', 'uniqueId': '0x71f3fae4515d7737435f0a42902d70fd974eca495b08351ca3085f654c88029d:log:10', 'hash': '0x71f3fae4515d7737435f0a42902d70fd974eca495b08351ca3085f654c88029d', 'from': '0x58d21abe3cfae1caac3d43b7cedcfde7044e6b13', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2600.0869068796474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8cf37451f4c98d9654', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:26:13.000Z'}}, {'blockNum': '0x636763', 'uniqueId': '0x17eb136e8734f98e3e15878a6c156c882d4bab3e39355478a9ebd8d4f55dc28e:log:112', 'hash': '0x17eb136e8734f98e3e15878a6c156c882d4bab3e39355478a9ebd8d4f55dc28e', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 1266.0347754432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x44a1c310869f600000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:26:57.000Z'}}, {'blockNum': '0x636763', 'uniqueId': '0x17eb136e8734f98e3e15878a6c156c882d4bab3e39355478a9ebd8d4f55dc28e:log:113', 'hash': '0x17eb136e8734f98e3e15878a6c156c882d4bab3e39355478a9ebd8d4f55dc28e', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 1266.0347754432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x44a1c310869f600000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:26:57.000Z'}}, {'blockNum': '0x636766', 'uniqueId': '0xe6329289ce85d5bfb7b8be7ddccd0eeb96a19e278a176354f5f2659a8985ae20:log:9', 'hash': '0xe6329289ce85d5bfb7b8be7ddccd0eeb96a19e278a176354f5f2659a8985ae20', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 878.4731094912001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2f9f436ebb73d20000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:27:36.000Z'}}, {'blockNum': '0x636766', 'uniqueId': '0xe6329289ce85d5bfb7b8be7ddccd0eeb96a19e278a176354f5f2659a8985ae20:log:10', 'hash': '0xe6329289ce85d5bfb7b8be7ddccd0eeb96a19e278a176354f5f2659a8985ae20', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 878.4731094912001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2f9f436ebb73d20000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:27:36.000Z'}}, {'blockNum': '0x636767', 'uniqueId': '0xe5e53978b1fcbf1295c1f1c0b5b883e6c4e99de66c97acf44c9f2c04b8b1b9a6:log:35', 'hash': '0xe5e53978b1fcbf1295c1f1c0b5b883e6c4e99de66c97acf44c9f2c04b8b1b9a6', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4027.7262452452337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xda57ee203e0804c328', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:27:42.000Z'}}, {'blockNum': '0x636767', 'uniqueId': '0xe5e53978b1fcbf1295c1f1c0b5b883e6c4e99de66c97acf44c9f2c04b8b1b9a6:log:36', 'hash': '0xe5e53978b1fcbf1295c1f1c0b5b883e6c4e99de66c97acf44c9f2c04b8b1b9a6', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4027.7262452452337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xda57ee203e0804c328', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:27:42.000Z'}}, {'blockNum': '0x63676b', 'uniqueId': '0xfea25c047ea7e72800bdb06c5006e621a7bd25eca60b35fe869e35aa3a3e9290:log:0', 'hash': '0xfea25c047ea7e72800bdb06c5006e621a7bd25eca60b35fe869e35aa3a3e9290', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 21480.012927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x048c6f0fbf1ed9a2f000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:29:16.000Z'}}, {'blockNum': '0x63676b', 'uniqueId': '0x2dedc70b49c4c92683d69ec732fb6cd25bf23f239cae6aedc527c04448cf8a96:log:142', 'hash': '0x2dedc70b49c4c92683d69ec732fb6cd25bf23f239cae6aedc527c04448cf8a96', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4052.73927954435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xdbb30e4669a185d14b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:29:16.000Z'}}, {'blockNum': '0x63676b', 'uniqueId': '0x2dedc70b49c4c92683d69ec732fb6cd25bf23f239cae6aedc527c04448cf8a96:log:144', 'hash': '0x2dedc70b49c4c92683d69ec732fb6cd25bf23f239cae6aedc527c04448cf8a96', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4052.73927954435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xdbb30e4669a185d14b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:29:16.000Z'}}, {'blockNum': '0x63676c', 'uniqueId': '0xfba31e1aa81dada3fe716bbdb287e71f6d47c30bcc8bae74f8b77dfc2354d7fe:log:0', 'hash': '0xfba31e1aa81dada3fe716bbdb287e71f6d47c30bcc8bae74f8b77dfc2354d7fe', 'from': '0x4903fe8eddf319abad3d6926aed1ac51841217d8', 'to': '0x439dd9d7148658fd0c182be9cf4ffb05210f8f3f', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:29:30.000Z'}}, {'blockNum': '0x63676c', 'uniqueId': '0x7424e80bd15e35f9957c8f660420ed6c1aafb16a567f00a01517050b77ba09d6:log:28', 'hash': '0x7424e80bd15e35f9957c8f660420ed6c1aafb16a567f00a01517050b77ba09d6', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5782.694568301987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01397b0217d77cc6a546', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:29:30.000Z'}}, {'blockNum': '0x63676c', 'uniqueId': '0x7424e80bd15e35f9957c8f660420ed6c1aafb16a567f00a01517050b77ba09d6:log:30', 'hash': '0x7424e80bd15e35f9957c8f660420ed6c1aafb16a567f00a01517050b77ba09d6', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x5179bc7b6e90719b17cea1feb302d1c5208a1bfa', 'value': 5782.694568301987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01397b0217d77cc6a546', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:29:30.000Z'}}, {'blockNum': '0x63676c', 'uniqueId': '0x7424e80bd15e35f9957c8f660420ed6c1aafb16a567f00a01517050b77ba09d6:log:34', 'hash': '0x7424e80bd15e35f9957c8f660420ed6c1aafb16a567f00a01517050b77ba09d6', 'from': '0x5179bc7b6e90719b17cea1feb302d1c5208a1bfa', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5782.694568301987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01397b0217d77cc6a546', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:29:30.000Z'}}, {'blockNum': '0x63676c', 'uniqueId': '0x7424e80bd15e35f9957c8f660420ed6c1aafb16a567f00a01517050b77ba09d6:log:36', 'hash': '0x7424e80bd15e35f9957c8f660420ed6c1aafb16a567f00a01517050b77ba09d6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5782.694568301987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01397b0217d77cc6a546', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:29:30.000Z'}}, {'blockNum': '0x63678a', 'uniqueId': '0x43ba835be01e55e790f562a33bdb3128fb95268e5cb13b0679bbe49be38b2c9d:log:4', 'hash': '0x43ba835be01e55e790f562a33bdb3128fb95268e5cb13b0679bbe49be38b2c9d', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14035.799091388832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02f8e1d76cc475c00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:36:10.000Z'}}, {'blockNum': '0x636799', 'uniqueId': '0x535273e668070dac3d79e7bd81e9005f61627798f59252e9d65ad391fbe4a814:log:2', 'hash': '0x535273e668070dac3d79e7bd81e9005f61627798f59252e9d65ad391fbe4a814', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 33440.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0714d029c6a33a320000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:39:44.000Z'}}, {'blockNum': '0x6367a9', 'uniqueId': '0x4253dc1efbf3c578c326a38eedd0a89a4e414895923675bb730a011ae443e7bb:log:2', 'hash': '0x4253dc1efbf3c578c326a38eedd0a89a4e414895923675bb730a011ae443e7bb', 'from': '0xb748955641fa963564d3ff5f303151ac5ca5f80b', 'to': '0x7ddbce6b026f69185fe8a5c944fb8fb596d325bb', 'value': 13365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02d484a25131f7b40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:43:25.000Z'}}, {'blockNum': '0x6367af', 'uniqueId': '0xaca12201102b91f1362a5b90302186307d00349281698c5660e26c6b32ecc17c:log:16', 'hash': '0xaca12201102b91f1362a5b90302186307d00349281698c5660e26c6b32ecc17c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 38325.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x081da12818cc61660000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:44:59.000Z'}}, {'blockNum': '0x6367b1', 'uniqueId': '0xda85e677f624201ce8c7ece6fe15da9b2692e2ead59bbd86c5d4cbbe6040938c:log:13', 'hash': '0xda85e677f624201ce8c7ece6fe15da9b2692e2ead59bbd86c5d4cbbe6040938c', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x07c32e1152e3e6240000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:45:57.000Z'}}, {'blockNum': '0x6367b1', 'uniqueId': '0xb95deb049fc2254c11ddd562be2add081412178ec11245564f4359e5b8d0812d:log:14', 'hash': '0xb95deb049fc2254c11ddd562be2add081412178ec11245564f4359e5b8d0812d', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0cdfcfdd87b04fd40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:45:57.000Z'}}, {'blockNum': '0x6367d1', 'uniqueId': '0xe198a5ce6ef4eb86e37fa5a02bb6fb038531ec1dbcb7a55ed8cffa696a079e26:log:54', 'hash': '0xe198a5ce6ef4eb86e37fa5a02bb6fb038531ec1dbcb7a55ed8cffa696a079e26', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4014.7424236036663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd9a3be5340235eec6a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:53:34.000Z'}}, {'blockNum': '0x6367d1', 'uniqueId': '0xe198a5ce6ef4eb86e37fa5a02bb6fb038531ec1dbcb7a55ed8cffa696a079e26:log:57', 'hash': '0xe198a5ce6ef4eb86e37fa5a02bb6fb038531ec1dbcb7a55ed8cffa696a079e26', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 4014.7424236036663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd9a3be5340235eec6a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:53:34.000Z'}}, {'blockNum': '0x6367d8', 'uniqueId': '0x7c6a09a623c3a83ce59301f4c9f56ecc504d0b7696146047fc70da1f84dad548:log:6', 'hash': '0x7c6a09a623c3a83ce59301f4c9f56ecc504d0b7696146047fc70da1f84dad548', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 28564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x060c7521857121d00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:55:26.000Z'}}, {'blockNum': '0x6367db', 'uniqueId': '0xd16d24c944ebe76b801c3ea4539c66ba93015149f354652e15244d2d44e6741c:log:3', 'hash': '0xd16d24c944ebe76b801c3ea4539c66ba93015149f354652e15244d2d44e6741c', 'from': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6307.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0155ee25876ec85e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:56:15.000Z'}}, {'blockNum': '0x6367db', 'uniqueId': '0xb7cdf7827b6e6bc1fe7d411188b84f0dcccd45114d0eaa9a106a0b3be459ecf8:log:4', 'hash': '0xb7cdf7827b6e6bc1fe7d411188b84f0dcccd45114d0eaa9a106a0b3be459ecf8', 'from': '0x7ddbce6b026f69185fe8a5c944fb8fb596d325bb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02d484a25131f7b40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:56:15.000Z'}}, {'blockNum': '0x6367df', 'uniqueId': '0xf8a1931600d5372e580974be43911e54b09d3b074c1f6113f35533ef0e4cdc6e:log:3', 'hash': '0xf8a1931600d5372e580974be43911e54b09d3b074c1f6113f35533ef0e4cdc6e', 'from': '0x4903fe8eddf319abad3d6926aed1ac51841217d8', 'to': '0xc995e99188e122a07133d6d67795c20f7371568a', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:56:44.000Z'}}, {'blockNum': '0x6367e5', 'uniqueId': '0x28f1bf924e6667aef08e4b837885ac3756b17da8e14238d1f0758fde3c09c04f:log:35', 'hash': '0x28f1bf924e6667aef08e4b837885ac3756b17da8e14238d1f0758fde3c09c04f', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 8149.238895255553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b9c5687eb77ff293b0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:57:37.000Z'}}, {'blockNum': '0x6367e5', 'uniqueId': '0x28f1bf924e6667aef08e4b837885ac3756b17da8e14238d1f0758fde3c09c04f:log:39', 'hash': '0x28f1bf924e6667aef08e4b837885ac3756b17da8e14238d1f0758fde3c09c04f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 8149.238895255553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b9c5687eb77ff293b0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:57:37.000Z'}}, {'blockNum': '0x6367e5', 'uniqueId': '0x28f1bf924e6667aef08e4b837885ac3756b17da8e14238d1f0758fde3c09c04f:log:40', 'hash': '0x28f1bf924e6667aef08e4b837885ac3756b17da8e14238d1f0758fde3c09c04f', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 8148.451407059101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b9ba7ac65fd9aabcae', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:57:37.000Z'}}, {'blockNum': '0x6367e5', 'uniqueId': '0x28f1bf924e6667aef08e4b837885ac3756b17da8e14238d1f0758fde3c09c04f:log:41', 'hash': '0x28f1bf924e6667aef08e4b837885ac3756b17da8e14238d1f0758fde3c09c04f', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 8148.451407059101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b9ba7ac65fd9aabcae', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:57:37.000Z'}}, {'blockNum': '0x6367e6', 'uniqueId': '0x65621c6905db7a978222976a8be5b3807b505f32219f27ee2aca3d29b9466257:log:20', 'hash': '0x65621c6905db7a978222976a8be5b3807b505f32219f27ee2aca3d29b9466257', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 9356.713648388806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01fb3a7c9137500cfb38', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:57:44.000Z'}}, {'blockNum': '0x6367e6', 'uniqueId': '0x65621c6905db7a978222976a8be5b3807b505f32219f27ee2aca3d29b9466257:log:24', 'hash': '0x65621c6905db7a978222976a8be5b3807b505f32219f27ee2aca3d29b9466257', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 9356.713648388806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01fb3a7c9137500cfb38', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:57:44.000Z'}}, {'blockNum': '0x6367f5', 'uniqueId': '0xd33ed75568607f629e8022e2f18e805566387ff8cc4fd0dbb52e73aaa7fd3921:log:2', 'hash': '0xd33ed75568607f629e8022e2f18e805566387ff8cc4fd0dbb52e73aaa7fd3921', 'from': '0xbe052119c5bff6d84afacc025157eeaec54510da', 'to': '0x327d9da7da78426c5f11d82f8f31fcd82bf402fe', 'value': 84212.22871236567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x11d52770de62fb2a7cba', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:01:02.000Z'}}, {'blockNum': '0x636809', 'uniqueId': '0xd9c2271b51f2a5bc6221fbbeea590952b17a52ac6d8c0a6fd99903e70694fac7:log:78', 'hash': '0xd9c2271b51f2a5bc6221fbbeea590952b17a52ac6d8c0a6fd99903e70694fac7', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x060c7521857121d00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:06:03.000Z'}}, {'blockNum': '0x636836', 'uniqueId': '0x9aafd20d4ff715f18fb57bd0a51c9c6e831ca92de2947a3c3a9d55ed1b605270:log:9', 'hash': '0x9aafd20d4ff715f18fb57bd0a51c9c6e831ca92de2947a3c3a9d55ed1b605270', 'from': '0xc995e99188e122a07133d6d67795c20f7371568a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:16:11.000Z'}}, {'blockNum': '0x636836', 'uniqueId': '0xa26f9df47adcd6a4c640365a900e13247f82a5f84fac8582a65bf9000a368156:log:11', 'hash': '0xa26f9df47adcd6a4c640365a900e13247f82a5f84fac8582a65bf9000a368156', 'from': '0x327d9da7da78426c5f11d82f8f31fcd82bf402fe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84212.22871236567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x11d52770de62fb2a7cba', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:16:11.000Z'}}, {'blockNum': '0x636844', 'uniqueId': '0xa08ca721c416e977be00f2737402a8a22225615a8782aea880c701030ae2b6be:log:13', 'hash': '0xa08ca721c416e977be00f2737402a8a22225615a8782aea880c701030ae2b6be', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x46b87bbfe936a8a81e37f1958f30ba97f3a89aa8', 'value': 16365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x037725ff5a8393940000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:19:53.000Z'}}, {'blockNum': '0x63684c', 'uniqueId': '0xe21412812990c4dfbb2346994912a3c689026f251b34ce68002f6991da1555ff:log:67', 'hash': '0xe21412812990c4dfbb2346994912a3c689026f251b34ce68002f6991da1555ff', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3919.905634942562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd47f9e5e6e1b6e8b14', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:22:50.000Z'}}, {'blockNum': '0x63684c', 'uniqueId': '0xe21412812990c4dfbb2346994912a3c689026f251b34ce68002f6991da1555ff:log:70', 'hash': '0xe21412812990c4dfbb2346994912a3c689026f251b34ce68002f6991da1555ff', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 3919.905634942562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd47f9e5e6e1b6e8b14', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:22:50.000Z'}}, {'blockNum': '0x63684f', 'uniqueId': '0x7cc63b30cd1fe699ebc3d270040267aff59d73f8cd742c3157180372ff753b47:log:16', 'hash': '0x7cc63b30cd1fe699ebc3d270040267aff59d73f8cd742c3157180372ff753b47', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1938.904350373923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x691bb401e8d936e870', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:23:15.000Z'}}, {'blockNum': '0x63684f', 'uniqueId': '0x7cc63b30cd1fe699ebc3d270040267aff59d73f8cd742c3157180372ff753b47:log:20', 'hash': '0x7cc63b30cd1fe699ebc3d270040267aff59d73f8cd742c3157180372ff753b47', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 1938.904350373923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x691bb401e8d936e870', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:23:15.000Z'}}, {'blockNum': '0x63684f', 'uniqueId': '0x7cc63b30cd1fe699ebc3d270040267aff59d73f8cd742c3157180372ff753b47:log:21', 'hash': '0x7cc63b30cd1fe699ebc3d270040267aff59d73f8cd742c3157180372ff753b47', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 1938.7120304517628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x691908bff5959d411c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:23:15.000Z'}}, {'blockNum': '0x63684f', 'uniqueId': '0x7cc63b30cd1fe699ebc3d270040267aff59d73f8cd742c3157180372ff753b47:log:22', 'hash': '0x7cc63b30cd1fe699ebc3d270040267aff59d73f8cd742c3157180372ff753b47', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 1938.7120304517628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x691908bff5959d411c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:23:15.000Z'}}, {'blockNum': '0x63687c', 'uniqueId': '0x2cbcdc00e4f19c5ffc69ac905722e56ff4affd7990857f05d22f9824465372e1:log:12', 'hash': '0x2cbcdc00e4f19c5ffc69ac905722e56ff4affd7990857f05d22f9824465372e1', 'from': '0x9dc33d9350d90d082af20be14bbf223d41f0aa9b', 'to': '0x97479e88c5ee2eccf1549bc37bac8742e4b30947', 'value': 75000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0fe1c215e8f838e00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:34:01.000Z'}}, {'blockNum': '0x636885', 'uniqueId': '0xd1d2998270d20d967355e891bc7f615d4cec32d46b582b8382ba42a0f820649f:log:5', 'hash': '0xd1d2998270d20d967355e891bc7f615d4cec32d46b582b8382ba42a0f820649f', 'from': '0x46b87bbfe936a8a81e37f1958f30ba97f3a89aa8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x037725ff5a8393940000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:36:09.000Z'}}, {'blockNum': '0x63689d', 'uniqueId': '0x91f4e881100a468382a840302367ecc753c0d814b55b3c49c5436b5c81f0253c:log:9', 'hash': '0x91f4e881100a468382a840302367ecc753c0d814b55b3c49c5436b5c81f0253c', 'from': '0x92bfb43f62aa5f03da3c9c284ee1a7924c475988', 'to': '0xc77b64621858db02165fb116b62edbb59f2f19ec', 'value': 373.729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x14428821661df68000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:42:31.000Z'}}, {'blockNum': '0x6368b3', 'uniqueId': '0x1858f344ab69d1043b78df88e8bb4e50b2f3a6fa748b4202966d748516620e33:log:9', 'hash': '0x1858f344ab69d1043b78df88e8bb4e50b2f3a6fa748b4202966d748516620e33', 'from': '0x97479e88c5ee2eccf1549bc37bac8742e4b30947', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 75000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0fe1c215e8f838e00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:46:35.000Z'}}, {'blockNum': '0x6368c8', 'uniqueId': '0x5f3a1c13650a2f3617393044f916d01c3a94a7532e95803b4b42596413b9359e:log:19', 'hash': '0x5f3a1c13650a2f3617393044f916d01c3a94a7532e95803b4b42596413b9359e', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1936.9667850946798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x6900d0648dc2c78431', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:52:13.000Z'}}, {'blockNum': '0x6368c8', 'uniqueId': '0x5f3a1c13650a2f3617393044f916d01c3a94a7532e95803b4b42596413b9359e:log:23', 'hash': '0x5f3a1c13650a2f3617393044f916d01c3a94a7532e95803b4b42596413b9359e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 1936.9667850946798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x6900d0648dc2c78431', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:52:13.000Z'}}, {'blockNum': '0x6368c8', 'uniqueId': '0x5f3a1c13650a2f3617393044f916d01c3a94a7532e95803b4b42596413b9359e:log:24', 'hash': '0x5f3a1c13650a2f3617393044f916d01c3a94a7532e95803b4b42596413b9359e', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 1936.8220508036707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x68fece317ba05e6399', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:52:13.000Z'}}, {'blockNum': '0x6368c8', 'uniqueId': '0x5f3a1c13650a2f3617393044f916d01c3a94a7532e95803b4b42596413b9359e:log:25', 'hash': '0x5f3a1c13650a2f3617393044f916d01c3a94a7532e95803b4b42596413b9359e', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 1936.8220508036707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x68fece317ba05e6399', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:52:13.000Z'}}, {'blockNum': '0x6368cb', 'uniqueId': '0x820a7be160a2fcf09e4cfacd83a3794d229e07b3ff50cf6be8734a4b722d6bff:log:36', 'hash': '0x820a7be160a2fcf09e4cfacd83a3794d229e07b3ff50cf6be8734a4b722d6bff', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3870.900994692436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd1d78ae9c2a4e5f79b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:52:36.000Z'}}, {'blockNum': '0x6368cb', 'uniqueId': '0x820a7be160a2fcf09e4cfacd83a3794d229e07b3ff50cf6be8734a4b722d6bff:log:40', 'hash': '0x820a7be160a2fcf09e4cfacd83a3794d229e07b3ff50cf6be8734a4b722d6bff', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 3870.900994692436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd1d78ae9c2a4e5f79b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:52:36.000Z'}}, {'blockNum': '0x6368cb', 'uniqueId': '0x820a7be160a2fcf09e4cfacd83a3794d229e07b3ff50cf6be8734a4b722d6bff:log:41', 'hash': '0x820a7be160a2fcf09e4cfacd83a3794d229e07b3ff50cf6be8734a4b722d6bff', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 3870.6053613861163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd1d3709cd5a5e94633', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:52:36.000Z'}}, {'blockNum': '0x6368cb', 'uniqueId': '0x820a7be160a2fcf09e4cfacd83a3794d229e07b3ff50cf6be8734a4b722d6bff:log:42', 'hash': '0x820a7be160a2fcf09e4cfacd83a3794d229e07b3ff50cf6be8734a4b722d6bff', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3870.6053613861163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd1d3709cd5a5e94633', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:52:36.000Z'}}, {'blockNum': '0x6368cc', 'uniqueId': '0x3e0fdcb71f95638d6b1dd6c4ab9683bf86bdf8d4fc2c99143091ea8ac9cf0e46:log:9', 'hash': '0x3e0fdcb71f95638d6b1dd6c4ab9683bf86bdf8d4fc2c99143091ea8ac9cf0e46', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x66ad9e7eca40bf3a7308c3358d914ca2ad9a7ecd', 'value': 11573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02735fa3679e3bb40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:53:01.000Z'}}, {'blockNum': '0x6368cd', 'uniqueId': '0x05b7fc3c6c272586a7e77c1eb281f9f492128607a990c33f7c04329f6681d6a7:log:11', 'hash': '0x05b7fc3c6c272586a7e77c1eb281f9f492128607a990c33f7c04329f6681d6a7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x65d6a0d19753f5a6410f5429cfb52a8cd68fbf1a', 'value': 1155.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3ea3c8a7e60bde0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:53:11.000Z'}}, {'blockNum': '0x6368cd', 'uniqueId': '0xec3a44c07802b9474a5c6816c5b47994b3d4ae973e5c6273768375d73f501d53:log:56', 'hash': '0xec3a44c07802b9474a5c6816c5b47994b3d4ae973e5c6273768375d73f501d53', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x7203841a3d0f4e9ce2ed0a043c3b03a7ec972767', 'value': 31483.25761557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x06aab5f7fbe9c181b400', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:53:11.000Z'}}, {'blockNum': '0x6368cd', 'uniqueId': '0xec3a44c07802b9474a5c6816c5b47994b3d4ae973e5c6273768375d73f501d53:log:57', 'hash': '0xec3a44c07802b9474a5c6816c5b47994b3d4ae973e5c6273768375d73f501d53', 'from': '0x7203841a3d0f4e9ce2ed0a043c3b03a7ec972767', 'to': '0xfc2b4d1ad1adc695092c1503eeb3f32a816e5651', 'value': 31483.25761557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x06aab5f7fbe9c181b400', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:53:11.000Z'}}, {'blockNum': '0x6368d0', 'uniqueId': '0x7fb3bf9a222bdb3bd3000205ab4be7dfe126b58171427381eb44315a9f4ebfd6:log:46', 'hash': '0x7fb3bf9a222bdb3bd3000205ab4be7dfe126b58171427381eb44315a9f4ebfd6', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5795.17261518502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013a282d055ecea2ea41', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:54:22.000Z'}}, {'blockNum': '0x6368d0', 'uniqueId': '0x7fb3bf9a222bdb3bd3000205ab4be7dfe126b58171427381eb44315a9f4ebfd6:log:50', 'hash': '0x7fb3bf9a222bdb3bd3000205ab4be7dfe126b58171427381eb44315a9f4ebfd6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xbe708d227f6dfa0b8f2698bf543b949dfe4e28fb', 'value': 5795.17261518502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013a282d055ecea2ea41', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:54:22.000Z'}}, {'blockNum': '0x6368d0', 'uniqueId': '0x47ceceed38e01bbcd47b5aba82901d8a8104ad8ce63f3c2a81911b532e26153e:log:67', 'hash': '0x47ceceed38e01bbcd47b5aba82901d8a8104ad8ce63f3c2a81911b532e26153e', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 19716.928747776736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x042cdb5a775657ea9c13', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:54:22.000Z'}}, {'blockNum': '0x6368d0', 'uniqueId': '0x47ceceed38e01bbcd47b5aba82901d8a8104ad8ce63f3c2a81911b532e26153e:log:71', 'hash': '0x47ceceed38e01bbcd47b5aba82901d8a8104ad8ce63f3c2a81911b532e26153e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 19716.928747776736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x042cdb5a775657ea9c13', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:54:22.000Z'}}, {'blockNum': '0x6368d2', 'uniqueId': '0x8014c8bb376233390081e7362a874b14085392915c5efd322017b52c44259569:log:21', 'hash': '0x8014c8bb376233390081e7362a874b14085392915c5efd322017b52c44259569', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x66ad9e7eca40bf3a7308c3358d914ca2ad9a7ecd', 'value': 12739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02b295238de2a52c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:54:46.000Z'}}, {'blockNum': '0x6368d3', 'uniqueId': '0xbf6030cdb7d3a5a85a1a8d4e41af3a7ac376cdfb9db5a6fa6a5c3ada9842651c:log:17', 'hash': '0xbf6030cdb7d3a5a85a1a8d4e41af3a7ac376cdfb9db5a6fa6a5c3ada9842651c', 'from': '0xbe708d227f6dfa0b8f2698bf543b949dfe4e28fb', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5795.172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013a282ad5dce2000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:55:07.000Z'}}, {'blockNum': '0x6368d3', 'uniqueId': '0xbf6030cdb7d3a5a85a1a8d4e41af3a7ac376cdfb9db5a6fa6a5c3ada9842651c:log:19', 'hash': '0xbf6030cdb7d3a5a85a1a8d4e41af3a7ac376cdfb9db5a6fa6a5c3ada9842651c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5795.172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013a282ad5dce2000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:55:07.000Z'}}, {'blockNum': '0x6368d5', 'uniqueId': '0x74530f6509d860d3617f30c93d4a69b72fa379075a7f65f31b5a0fc7bbfe3c4e:log:2', 'hash': '0x74530f6509d860d3617f30c93d4a69b72fa379075a7f65f31b5a0fc7bbfe3c4e', 'from': '0xeec05211c010be06fb8e587bfc3a5d8907a4def1', 'to': '0x1da5567d67949ab131a19028907a63dca76ce287', 'value': 20155.979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0444a8664d8be1278000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:55:21.000Z'}}, {'blockNum': '0x6368d7', 'uniqueId': '0xa30b80692c4f5ae624052baddcaac881e819645bc15c6d9b140fb2a7006e900c:log:34', 'hash': '0xa30b80692c4f5ae624052baddcaac881e819645bc15c6d9b140fb2a7006e900c', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 26928.710579917966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x05b3ceee6e0311c00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:55:54.000Z'}}, {'blockNum': '0x6368dc', 'uniqueId': '0xb98dd465a05baacecc601fb4b395b40e25edd13fee8253b83c4c9303bcc724da:log:3', 'hash': '0xb98dd465a05baacecc601fb4b395b40e25edd13fee8253b83c4c9303bcc724da', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x66ad9e7eca40bf3a7308c3358d914ca2ad9a7ecd', 'value': 12888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02baa8ede47312600000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:57:12.000Z'}}, {'blockNum': '0x6368de', 'uniqueId': '0xdc03042a0ff83a2daf307f1d87786523bc3c8bc17aa0ca9a90bdf0680dd73e34:log:0', 'hash': '0xdc03042a0ff83a2daf307f1d87786523bc3c8bc17aa0ca9a90bdf0680dd73e34', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 38435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x082390c63ea47aac0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:57:27.000Z'}}, {'blockNum': '0x6368df', 'uniqueId': '0xe4ce3e72571381634b68d202e337a27f6af76e8438f1bcdaf6a35115e54aa6e0:log:0', 'hash': '0xe4ce3e72571381634b68d202e337a27f6af76e8438f1bcdaf6a35115e54aa6e0', 'from': '0x65d6a0d19753f5a6410f5429cfb52a8cd68fbf1a', 'to': '0xad66ece9bf8c71870aecdaf01b06dcf4b3c2f579', 'value': 1155.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3ea3c8a7e60bde0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:57:52.000Z'}}, {'blockNum': '0x6368f2', 'uniqueId': '0x5029c4d4afc5f81bd1af64c06de25431361bebc03c49b8c4845e27d45de355c6:log:51', 'hash': '0x5029c4d4afc5f81bd1af64c06de25431361bebc03c49b8c4845e27d45de355c6', 'from': '0xd4355277db6d2cca7e556211ca7792a4fbf8f4ec', 'to': '0x0f957ffc48c09fca06dab8179a7b3c630c87cac7', 'value': 3257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xb08ff473aca7440000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:02:23.000Z'}}, {'blockNum': '0x6368fb', 'uniqueId': '0xc3b7d5dea01ec5a2736be82281e972550050517613417951a5f80c75601a16d9:log:3', 'hash': '0xc3b7d5dea01ec5a2736be82281e972550050517613417951a5f80c75601a16d9', 'from': '0x26c6af4554469a1745ec37e0f48d15728af14a19', 'to': '0x4fc679e93f9a5187b977ae33d2275b60edb9d1be', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:04:05.000Z'}}, {'blockNum': '0x636908', 'uniqueId': '0x205b5428d2ee9a44f8219fc61dacfbcefe68e288b2fb9958f02784c4396c889c:log:3', 'hash': '0x205b5428d2ee9a44f8219fc61dacfbcefe68e288b2fb9958f02784c4396c889c', 'from': '0x66ad9e7eca40bf3a7308c3358d914ca2ad9a7ecd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x07e09db4d9f3f3400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:06:11.000Z'}}, {'blockNum': '0x636908', 'uniqueId': '0x59340ad9829480e5c79544efc251f70300813430ae54958a54d8b1e50f075c9e:log:4', 'hash': '0x59340ad9829480e5c79544efc251f70300813430ae54958a54d8b1e50f075c9e', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26928.710579917966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x05b3ceee6e0311c00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:06:11.000Z'}}, {'blockNum': '0x636908', 'uniqueId': '0xd604ce77068e140fc1417c89838a4cef5fe1a78ebbf97e859559f455f63a544f:log:7', 'hash': '0xd604ce77068e140fc1417c89838a4cef5fe1a78ebbf97e859559f455f63a544f', 'from': '0x1da5567d67949ab131a19028907a63dca76ce287', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20155.979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0444a8664d8be1278000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:06:11.000Z'}}, {'blockNum': '0x63691e', 'uniqueId': '0xb17af6b920cdb9e7bdd357fbe74ac80035b75dbe2568998ea62ae901845295b3:log:10', 'hash': '0xb17af6b920cdb9e7bdd357fbe74ac80035b75dbe2568998ea62ae901845295b3', 'from': '0x4b8c4610c373f4680f34267558aa366e9ce8a2f9', 'to': '0xa98bbdc7b6f9048784179d36bf971a7196959c3c', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:11:32.000Z'}}, {'blockNum': '0x63691f', 'uniqueId': '0xd0b653ab7f4ce89ad6c7355f9623f85eb59c095cbbf037992e41282ed389c417:log:25', 'hash': '0xd0b653ab7f4ce89ad6c7355f9623f85eb59c095cbbf037992e41282ed389c417', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 6187.1088197989175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x014f676222e650c9eef9', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:11:48.000Z'}}, {'blockNum': '0x63691f', 'uniqueId': '0xd0b653ab7f4ce89ad6c7355f9623f85eb59c095cbbf037992e41282ed389c417:log:27', 'hash': '0xd0b653ab7f4ce89ad6c7355f9623f85eb59c095cbbf037992e41282ed389c417', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 6187.1088197989175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x014f676222e650c9eef9', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:11:48.000Z'}}, {'blockNum': '0x636926', 'uniqueId': '0xc7c418cfdfa1754487dfb5f9cadcc0c47d330df2784954f095539eea701d1b91:log:5', 'hash': '0xc7c418cfdfa1754487dfb5f9cadcc0c47d330df2784954f095539eea701d1b91', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5557a1d5a492169f5bf77c5484afa220ef6564fc', 'value': 423.05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x16eeff8595c5010000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:13:19.000Z'}}, {'blockNum': '0x636928', 'uniqueId': '0x11482c6ea7ed6fb1d69f6c922248b873f9ed82c0e3dc24242262a11aea65a440:log:0', 'hash': '0x11482c6ea7ed6fb1d69f6c922248b873f9ed82c0e3dc24242262a11aea65a440', 'from': '0x96223967e98c758e1dbfed9f54dfdfd82916b819', 'to': '0x97feeef902d8dfcc2987ce82cab41b5389c6d12a', 'value': 1228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x4291ec65c6f3b00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:13:42.000Z'}}, {'blockNum': '0x636928', 'uniqueId': '0x4f1492e19e67233dd02b5011565cc4584cba8f1ec9e5f6e07db87c66afd75edc:log:27', 'hash': '0x4f1492e19e67233dd02b5011565cc4584cba8f1ec9e5f6e07db87c66afd75edc', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5144.174035817157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0116ddc17692d53fe35b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:13:42.000Z'}}, {'blockNum': '0x636928', 'uniqueId': '0x4f1492e19e67233dd02b5011565cc4584cba8f1ec9e5f6e07db87c66afd75edc:log:29', 'hash': '0x4f1492e19e67233dd02b5011565cc4584cba8f1ec9e5f6e07db87c66afd75edc', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5144.174035817157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0116ddc17692d53fe35b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:13:42.000Z'}}, {'blockNum': '0x636928', 'uniqueId': '0x58d2575e9017fc846fba91f1e3cde25bfe16840ed03d769a80563d3aa1ca0985:log:34', 'hash': '0x58d2575e9017fc846fba91f1e3cde25bfe16840ed03d769a80563d3aa1ca0985', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5144.168891643122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0116ddaf2ff97b2e9096', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:13:42.000Z'}}, {'blockNum': '0x636928', 'uniqueId': '0x58d2575e9017fc846fba91f1e3cde25bfe16840ed03d769a80563d3aa1ca0985:log:36', 'hash': '0x58d2575e9017fc846fba91f1e3cde25bfe16840ed03d769a80563d3aa1ca0985', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5144.168891643122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0116ddaf2ff97b2e9096', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:13:42.000Z'}}, {'blockNum': '0x63692e', 'uniqueId': '0x14c6a1d497790b129f4eae1bf2a86c84a72b6057dc2af8faf900a12c0678bcda:log:51', 'hash': '0x14c6a1d497790b129f4eae1bf2a86c84a72b6057dc2af8faf900a12c0678bcda', 'from': '0x5557a1d5a492169f5bf77c5484afa220ef6564fc', 'to': '0xad66ece9bf8c71870aecdaf01b06dcf4b3c2f579', 'value': 423.05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x16eeff8595c5010000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:14:23.000Z'}}, {'blockNum': '0x636935', 'uniqueId': '0x14c346472bd11bab254a225c150781e55d515a930f4568317da7b641cc5d805d:log:8', 'hash': '0x14c346472bd11bab254a225c150781e55d515a930f4568317da7b641cc5d805d', 'from': '0x4fc679e93f9a5187b977ae33d2275b60edb9d1be', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:16:25.000Z'}}, {'blockNum': '0x636935', 'uniqueId': '0x22fc8eb271375c2f63ed59ffcb3b36dcbb171e96dcbcba3464ba48ef55da5850:log:9', 'hash': '0x22fc8eb271375c2f63ed59ffcb3b36dcbb171e96dcbcba3464ba48ef55da5850', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x082390c63ea47aac0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:16:25.000Z'}}, {'blockNum': '0x636936', 'uniqueId': '0xa703410fc9bc269995d210e08aceb81ae54f2a9deaee3537f9d5f63c9394d16f:log:19', 'hash': '0xa703410fc9bc269995d210e08aceb81ae54f2a9deaee3537f9d5f63c9394d16f', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 9754.285195605113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0210c7e670fc2660fba3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:16:33.000Z'}}, {'blockNum': '0x636936', 'uniqueId': '0xa703410fc9bc269995d210e08aceb81ae54f2a9deaee3537f9d5f63c9394d16f:log:21', 'hash': '0xa703410fc9bc269995d210e08aceb81ae54f2a9deaee3537f9d5f63c9394d16f', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'value': 9754.285195605113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0210c7e670fc2660fba3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:16:33.000Z'}}, {'blockNum': '0x636936', 'uniqueId': '0xa703410fc9bc269995d210e08aceb81ae54f2a9deaee3537f9d5f63c9394d16f:log:25', 'hash': '0xa703410fc9bc269995d210e08aceb81ae54f2a9deaee3537f9d5f63c9394d16f', 'from': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 9754.285195605113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0210c7e670fc2660fba3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:16:33.000Z'}}, {'blockNum': '0x636936', 'uniqueId': '0xa703410fc9bc269995d210e08aceb81ae54f2a9deaee3537f9d5f63c9394d16f:log:27', 'hash': '0xa703410fc9bc269995d210e08aceb81ae54f2a9deaee3537f9d5f63c9394d16f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 9754.285195605113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0210c7e670fc2660fba3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:16:33.000Z'}}, {'blockNum': '0x63693c', 'uniqueId': '0xe76737a4b8c7315da470aa648cedf21e03aa44bdf1e4fe7e8be1442b2e0cada4:log:14', 'hash': '0xe76737a4b8c7315da470aa648cedf21e03aa44bdf1e4fe7e8be1442b2e0cada4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5841.302829688819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013ca85c770d9e19beff', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:17:17.000Z'}}, {'blockNum': '0x63693c', 'uniqueId': '0xe76737a4b8c7315da470aa648cedf21e03aa44bdf1e4fe7e8be1442b2e0cada4:log:16', 'hash': '0xe76737a4b8c7315da470aa648cedf21e03aa44bdf1e4fe7e8be1442b2e0cada4', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5841.302829688819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013ca85c770d9e19beff', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:17:17.000Z'}}, {'blockNum': '0x63693e', 'uniqueId': '0x6ed2e70d667a4270fc6b23fb7d1d7fd15542dffa07ccd3d76f9e7d4299c31eb0:log:17', 'hash': '0x6ed2e70d667a4270fc6b23fb7d1d7fd15542dffa07ccd3d76f9e7d4299c31eb0', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5841.296988385989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013ca847b66b51e9570c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:17:30.000Z'}}, {'blockNum': '0x63693e', 'uniqueId': '0x6ed2e70d667a4270fc6b23fb7d1d7fd15542dffa07ccd3d76f9e7d4299c31eb0:log:19', 'hash': '0x6ed2e70d667a4270fc6b23fb7d1d7fd15542dffa07ccd3d76f9e7d4299c31eb0', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5841.296988385989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013ca847b66b51e9570c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:17:30.000Z'}}, {'blockNum': '0x636947', 'uniqueId': '0x6ff5dbd6b6b7a45ffc78a89478de6d0a233bf2bdd5137146e6380491e4935e54:log:2', 'hash': '0x6ff5dbd6b6b7a45ffc78a89478de6d0a233bf2bdd5137146e6380491e4935e54', 'from': '0xdc443d59e2dced15f9bd34d17a66a7a45889b5e2', 'to': '0x04b04a325bd9fbd8ac345b7761d6c8d3d0176185', 'value': 185000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x272cdebe93fde1a00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:20:10.000Z'}}, {'blockNum': '0x636954', 'uniqueId': '0x45c849b6207f29ddd1bb85ff4f5079fe2a9a996a40743985d444fbe2d710b690:log:49', 'hash': '0x45c849b6207f29ddd1bb85ff4f5079fe2a9a996a40743985d444fbe2d710b690', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3899.5810444042536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd3658eeb051250d107', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:23:29.000Z'}}, {'blockNum': '0x636954', 'uniqueId': '0x45c849b6207f29ddd1bb85ff4f5079fe2a9a996a40743985d444fbe2d710b690:log:52', 'hash': '0x45c849b6207f29ddd1bb85ff4f5079fe2a9a996a40743985d444fbe2d710b690', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 3899.5810444042536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd3658eeb051250d107', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:23:29.000Z'}}, {'blockNum': '0x636960', 'uniqueId': '0x1f0ae68a104a2df2290b163801431c1a661c8d629d69460b137a05b5292c4941:log:30', 'hash': '0x1f0ae68a104a2df2290b163801431c1a661c8d629d69460b137a05b5292c4941', 'from': '0x97feeef902d8dfcc2987ce82cab41b5389c6d12a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x584109de7c7ff00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:25:56.000Z'}}, {'blockNum': '0x636960', 'uniqueId': '0x2fe1448c7640d92b4775784132fa821a7bef830274f74b4bf510095a3af7cc53:log:31', 'hash': '0x2fe1448c7640d92b4775784132fa821a7bef830274f74b4bf510095a3af7cc53', 'from': '0xa98bbdc7b6f9048784179d36bf971a7196959c3c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:25:56.000Z'}}, {'blockNum': '0x63696d', 'uniqueId': '0xb60f58e66330c650c875bdf1b3cd7b445b8591063744ffb7155033b331453408:log:12', 'hash': '0xb60f58e66330c650c875bdf1b3cd7b445b8591063744ffb7155033b331453408', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x50d96ae37788559441f12717efe1b9dd9aa076e5', 'value': 572.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1f0e95aaa54d4a0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:29:43.000Z'}}, {'blockNum': '0x636986', 'uniqueId': '0x8305585226e060d2093ba7e8435ec464ee5d5d0441b1fa1d6c4579170ea8992b:log:0', 'hash': '0x8305585226e060d2093ba7e8435ec464ee5d5d0441b1fa1d6c4579170ea8992b', 'from': '0xcc871936f6a902faf75742806c599b36d3e51d2e', 'to': '0x41c2fd5a92297de213892ec4f8cb500271e3d6f4', 'value': 11554.2605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02725b9353a77b454000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:36:03.000Z'}}, {'blockNum': '0x636987', 'uniqueId': '0x2d6fe2e3752931df8395fabe7c78b31ba50c7e6f24ebb3feeadc877605c7fbba:log:3', 'hash': '0x2d6fe2e3752931df8395fabe7c78b31ba50c7e6f24ebb3feeadc877605c7fbba', 'from': '0x04b04a325bd9fbd8ac345b7761d6c8d3d0176185', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 185000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x272cdebe93fde1a00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:36:17.000Z'}}, {'blockNum': '0x6369da', 'uniqueId': '0x609689492772020fd97bee80c6e7a223f7319cd7e391c6772d5c4d5a7e84937e:log:119', 'hash': '0x609689492772020fd97bee80c6e7a223f7319cd7e391c6772d5c4d5a7e84937e', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1927.7353879583625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x6880b3e1c4b0076f04', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:53:27.000Z'}}, {'blockNum': '0x6369da', 'uniqueId': '0x609689492772020fd97bee80c6e7a223f7319cd7e391c6772d5c4d5a7e84937e:log:123', 'hash': '0x609689492772020fd97bee80c6e7a223f7319cd7e391c6772d5c4d5a7e84937e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 1927.7353879583625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x6880b3e1c4b0076f04', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:53:27.000Z'}}, {'blockNum': '0x6369da', 'uniqueId': '0x609689492772020fd97bee80c6e7a223f7319cd7e391c6772d5c4d5a7e84937e:log:124', 'hash': '0x609689492772020fd97bee80c6e7a223f7319cd7e391c6772d5c4d5a7e84937e', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 1927.544170831808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x687e0c8ace08c7cb0a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:53:27.000Z'}}, {'blockNum': '0x6369da', 'uniqueId': '0x609689492772020fd97bee80c6e7a223f7319cd7e391c6772d5c4d5a7e84937e:log:125', 'hash': '0x609689492772020fd97bee80c6e7a223f7319cd7e391c6772d5c4d5a7e84937e', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 1927.544170831808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x687e0c8ace08c7cb0a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:53:27.000Z'}}, {'blockNum': '0x6369e2', 'uniqueId': '0x8d6f7267f189f3c63c47f713edc5b9b12aa0c896b3684ce26fad156b1809f646:log:18', 'hash': '0x8d6f7267f189f3c63c47f713edc5b9b12aa0c896b3684ce26fad156b1809f646', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5804.328691472842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013aa73df03e3eac66a6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:54:49.000Z'}}, {'blockNum': '0x6369e2', 'uniqueId': '0x8d6f7267f189f3c63c47f713edc5b9b12aa0c896b3684ce26fad156b1809f646:log:22', 'hash': '0x8d6f7267f189f3c63c47f713edc5b9b12aa0c896b3684ce26fad156b1809f646', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 5804.328691472842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013aa73df03e3eac66a6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:54:49.000Z'}}, {'blockNum': '0x6369e2', 'uniqueId': '0x8d6f7267f189f3c63c47f713edc5b9b12aa0c896b3684ce26fad156b1809f646:log:24', 'hash': '0x8d6f7267f189f3c63c47f713edc5b9b12aa0c896b3684ce26fad156b1809f646', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5804.328691472842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013aa73df03e3eac66a6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:54:49.000Z'}}, {'blockNum': '0x6369e2', 'uniqueId': '0x8d6f7267f189f3c63c47f713edc5b9b12aa0c896b3684ce26fad156b1809f646:log:25', 'hash': '0x8d6f7267f189f3c63c47f713edc5b9b12aa0c896b3684ce26fad156b1809f646', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 5804.328691472842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013aa73df03e3eac66a6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:54:49.000Z'}}, {'blockNum': '0x6369eb', 'uniqueId': '0x9d48dd8fc62891f7418eaaafa82689c2d22ba685baa8c94f1fe70d6826ed803e:log:7', 'hash': '0x9d48dd8fc62891f7418eaaafa82689c2d22ba685baa8c94f1fe70d6826ed803e', 'from': '0x41c2fd5a92297de213892ec4f8cb500271e3d6f4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11554.2605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02725b9353a77b454000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:56:24.000Z'}}, {'blockNum': '0x6369f2', 'uniqueId': '0xd6388f5da229e1b6f6fa3607b18cf19b11b2f4dee9b6893a9cee294f846fe700:log:127', 'hash': '0xd6388f5da229e1b6f6fa3607b18cf19b11b2f4dee9b6893a9cee294f846fe700', 'from': '0x9c6ea4b8a541a1e361c4862de306032ba8679437', 'to': '0x7b01a0d8e0d9dcd4154422b24f6284ae3cc5baaa', 'value': 10924.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02503947dafd107b4240', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:58:42.000Z'}}, {'blockNum': '0x6369fa', 'uniqueId': '0xaeb86dc7183e91c70b7965eace442fb8b3ec10b153461a00ffb0d06f07d30386:log:18', 'hash': '0xaeb86dc7183e91c70b7965eace442fb8b3ec10b153461a00ffb0d06f07d30386', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4791.402129654994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0103be0fe2fc1806c332', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:00:36.000Z'}}, {'blockNum': '0x6369fa', 'uniqueId': '0xaeb86dc7183e91c70b7965eace442fb8b3ec10b153461a00ffb0d06f07d30386:log:22', 'hash': '0xaeb86dc7183e91c70b7965eace442fb8b3ec10b153461a00ffb0d06f07d30386', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 4791.402129654994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0103be0fe2fc1806c332', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:00:36.000Z'}}, {'blockNum': '0x6369fa', 'uniqueId': '0xaeb86dc7183e91c70b7965eace442fb8b3ec10b153461a00ffb0d06f07d30386:log:23', 'hash': '0xaeb86dc7183e91c70b7965eace442fb8b3ec10b153461a00ffb0d06f07d30386', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4790.932649250666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0103b78bf50b5f13a9dd', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:00:36.000Z'}}, {'blockNum': '0x6369fa', 'uniqueId': '0xaeb86dc7183e91c70b7965eace442fb8b3ec10b153461a00ffb0d06f07d30386:log:24', 'hash': '0xaeb86dc7183e91c70b7965eace442fb8b3ec10b153461a00ffb0d06f07d30386', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4790.932649250666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0103b78bf50b5f13a9dd', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:00:36.000Z'}}, {'blockNum': '0x6369ff', 'uniqueId': '0xdadf3ee8ee395fc4e2d89de3b49af59792c16b6cbb7b8d4e0d7738f665def6e1:log:19', 'hash': '0xdadf3ee8ee395fc4e2d89de3b49af59792c16b6cbb7b8d4e0d7738f665def6e1', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 19639.941654504353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0428aef15de6b19a22a3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:24.000Z'}}, {'blockNum': '0x6369ff', 'uniqueId': '0xdadf3ee8ee395fc4e2d89de3b49af59792c16b6cbb7b8d4e0d7738f665def6e1:log:23', 'hash': '0xdadf3ee8ee395fc4e2d89de3b49af59792c16b6cbb7b8d4e0d7738f665def6e1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 19639.941654504353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0428aef15de6b19a22a3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:24.000Z'}}, {'blockNum': '0x6369ff', 'uniqueId': '0x8f3ad89caddbecbd05a51f5ade9363e8700f87ec9dce3cb3ba590139e90f7779:log:28', 'hash': '0x8f3ad89caddbecbd05a51f5ade9363e8700f87ec9dce3cb3ba590139e90f7779', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'value': 415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x167f482d3c5b1c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:24.000Z'}}, {'blockNum': '0x6369ff', 'uniqueId': '0x8f3ad89caddbecbd05a51f5ade9363e8700f87ec9dce3cb3ba590139e90f7779:log:33', 'hash': '0x8f3ad89caddbecbd05a51f5ade9363e8700f87ec9dce3cb3ba590139e90f7779', 'from': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'to': '0x34de029e67204e75ba9b108c81f518cf81211aaf', 'value': 415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x167f482d3c5b1c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:24.000Z'}}, {'blockNum': '0x6369ff', 'uniqueId': '0x40692b740541a9ba4fd3e752400a3303ba336e44579bb037396d9884daac1611:log:35', 'hash': '0x40692b740541a9ba4fd3e752400a3303ba336e44579bb037396d9884daac1611', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'value': 875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2f6f10780d22cc0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:24.000Z'}}, {'blockNum': '0x6369ff', 'uniqueId': '0x40692b740541a9ba4fd3e752400a3303ba336e44579bb037396d9884daac1611:log:40', 'hash': '0x40692b740541a9ba4fd3e752400a3303ba336e44579bb037396d9884daac1611', 'from': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'to': '0x34de029e67204e75ba9b108c81f518cf81211aaf', 'value': 875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2f6f10780d22cc0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:24.000Z'}}, {'blockNum': '0x6369ff', 'uniqueId': '0xa6cc66f2e89109afb5701b7ea2ec7310acb19b0e95786213cdd12b91163e2da1:log:42', 'hash': '0xa6cc66f2e89109afb5701b7ea2ec7310acb19b0e95786213cdd12b91163e2da1', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'value': 575.790368889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1f36b251d61ff97a00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:24.000Z'}}, {'blockNum': '0x6369ff', 'uniqueId': '0xa6cc66f2e89109afb5701b7ea2ec7310acb19b0e95786213cdd12b91163e2da1:log:47', 'hash': '0xa6cc66f2e89109afb5701b7ea2ec7310acb19b0e95786213cdd12b91163e2da1', 'from': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'to': '0x34de029e67204e75ba9b108c81f518cf81211aaf', 'value': 575.790368889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1f36b251d61ff97a00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:24.000Z'}}, {'blockNum': '0x6369ff', 'uniqueId': '0xecddc584fb6e68b6b05e966f68a81a1974ed245c520c692b38bca87375ea06f3:log:60', 'hash': '0xecddc584fb6e68b6b05e966f68a81a1974ed245c520c692b38bca87375ea06f3', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 6210.541365645348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0150ac93433230628310', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:24.000Z'}}, {'blockNum': '0x6369ff', 'uniqueId': '0xecddc584fb6e68b6b05e966f68a81a1974ed245c520c692b38bca87375ea06f3:log:62', 'hash': '0xecddc584fb6e68b6b05e966f68a81a1974ed245c520c692b38bca87375ea06f3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 6210.541365645348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0150ac93433230628310', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:24.000Z'}}, {'blockNum': '0x636a01', 'uniqueId': '0xbf180f4f5ad3447f4cb705bfff3832e71e2b5904782c4d2fcbf5035d4e6d5975:log:64', 'hash': '0xbf180f4f5ad3447f4cb705bfff3832e71e2b5904782c4d2fcbf5035d4e6d5975', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 9395.285928249383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01fd51c8d56272a287e2', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:40.000Z'}}, {'blockNum': '0x636a01', 'uniqueId': '0xbf180f4f5ad3447f4cb705bfff3832e71e2b5904782c4d2fcbf5035d4e6d5975:log:68', 'hash': '0xbf180f4f5ad3447f4cb705bfff3832e71e2b5904782c4d2fcbf5035d4e6d5975', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 9395.285928249383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01fd51c8d56272a287e2', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:40.000Z'}}, {'blockNum': '0x636a01', 'uniqueId': '0xbf180f4f5ad3447f4cb705bfff3832e71e2b5904782c4d2fcbf5035d4e6d5975:log:70', 'hash': '0xbf180f4f5ad3447f4cb705bfff3832e71e2b5904782c4d2fcbf5035d4e6d5975', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 9395.285928249383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01fd51c8d56272a287e2', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:40.000Z'}}, {'blockNum': '0x636a01', 'uniqueId': '0xbf180f4f5ad3447f4cb705bfff3832e71e2b5904782c4d2fcbf5035d4e6d5975:log:71', 'hash': '0xbf180f4f5ad3447f4cb705bfff3832e71e2b5904782c4d2fcbf5035d4e6d5975', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 9395.285928249383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01fd51c8d56272a287e2', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:40.000Z'}}, {'blockNum': '0x636a01', 'uniqueId': '0xfb1b8f205f98dc047e2eac2e40bc05bb72f6183a46bcd9d01f90c9388ba0b87b:log:83', 'hash': '0xfb1b8f205f98dc047e2eac2e40bc05bb72f6183a46bcd9d01f90c9388ba0b87b', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:40.000Z'}}, {'blockNum': '0x636a01', 'uniqueId': '0xfb1b8f205f98dc047e2eac2e40bc05bb72f6183a46bcd9d01f90c9388ba0b87b:log:88', 'hash': '0xfb1b8f205f98dc047e2eac2e40bc05bb72f6183a46bcd9d01f90c9388ba0b87b', 'from': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'to': '0x34de029e67204e75ba9b108c81f518cf81211aaf', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:40.000Z'}}, {'blockNum': '0x636a03', 'uniqueId': '0x57c177442fd38203e27969eb49bc71b7ac5247f2f08acec8cac7f39388533c68:log:67', 'hash': '0x57c177442fd38203e27969eb49bc71b7ac5247f2f08acec8cac7f39388533c68', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'value': 6364.1059166916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0158ffb624c0b48a4400', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:03:27.000Z'}}, {'blockNum': '0x636a03', 'uniqueId': '0x57c177442fd38203e27969eb49bc71b7ac5247f2f08acec8cac7f39388533c68:log:72', 'hash': '0x57c177442fd38203e27969eb49bc71b7ac5247f2f08acec8cac7f39388533c68', 'from': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'to': '0x34de029e67204e75ba9b108c81f518cf81211aaf', 'value': 6364.1059166916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0158ffb624c0b48a4400', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:03:27.000Z'}}, {'blockNum': '0x636a04', 'uniqueId': '0x6ec2df90fe1f9d534b879c605a4834d6cce46ab0232be6467d160d393e53ff39:log:64', 'hash': '0x6ec2df90fe1f9d534b879c605a4834d6cce46ab0232be6467d160d393e53ff39', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1835.1821064898738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x637c4492a41a035b89', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:03:41.000Z'}}, {'blockNum': '0x636a04', 'uniqueId': '0x6ec2df90fe1f9d534b879c605a4834d6cce46ab0232be6467d160d393e53ff39:log:68', 'hash': '0x6ec2df90fe1f9d534b879c605a4834d6cce46ab0232be6467d160d393e53ff39', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'value': 1835.1821064898738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x637c4492a41a035b89', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:03:41.000Z'}}, {'blockNum': '0x636a04', 'uniqueId': '0x2bbf31d13f237e338f9c4c3c59375b7f27ef21a4432f46e34134c3c33b12cdfa:log:86', 'hash': '0x2bbf31d13f237e338f9c4c3c59375b7f27ef21a4432f46e34134c3c33b12cdfa', 'from': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'to': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'value': 1835.1821064898738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x637c4492a41a035b89', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:03:41.000Z'}}, {'blockNum': '0x636a04', 'uniqueId': '0x2bbf31d13f237e338f9c4c3c59375b7f27ef21a4432f46e34134c3c33b12cdfa:log:88', 'hash': '0x2bbf31d13f237e338f9c4c3c59375b7f27ef21a4432f46e34134c3c33b12cdfa', 'from': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 1835.1821064898738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x637c4492a41a035b89', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:03:41.000Z'}}, {'blockNum': '0x636a04', 'uniqueId': '0x2bbf31d13f237e338f9c4c3c59375b7f27ef21a4432f46e34134c3c33b12cdfa:log:89', 'hash': '0x2bbf31d13f237e338f9c4c3c59375b7f27ef21a4432f46e34134c3c33b12cdfa', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1835.1821064898738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x637c4492a41a035b89', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:03:41.000Z'}}, {'blockNum': '0x636a05', 'uniqueId': '0x6cfda7a470a414d95dd783793b243b52c32bf05dad60ecc5d254db1c90b79b5b:log:28', 'hash': '0x6cfda7a470a414d95dd783793b243b52c32bf05dad60ecc5d254db1c90b79b5b', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3722.100248232805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc9c684773c459870f0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:03:56.000Z'}}, {'blockNum': '0x636a05', 'uniqueId': '0x6cfda7a470a414d95dd783793b243b52c32bf05dad60ecc5d254db1c90b79b5b:log:31', 'hash': '0x6cfda7a470a414d95dd783793b243b52c32bf05dad60ecc5d254db1c90b79b5b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 3722.100248232805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc9c684773c459870f0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:03:56.000Z'}}, {'blockNum': '0x636a07', 'uniqueId': '0x7eb219a57720b8548716504c1f3124507e61113fbcf70f7b170be2780f20c07b:log:36', 'hash': '0x7eb219a57720b8548716504c1f3124507e61113fbcf70f7b170be2780f20c07b', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 13451.255873328393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02d931acbcfbf1af582d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:04:05.000Z'}}, {'blockNum': '0x636a07', 'uniqueId': '0x7eb219a57720b8548716504c1f3124507e61113fbcf70f7b170be2780f20c07b:log:40', 'hash': '0x7eb219a57720b8548716504c1f3124507e61113fbcf70f7b170be2780f20c07b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5179bc7b6e90719b17cea1feb302d1c5208a1bfa', 'value': 13451.255873328393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02d931acbcfbf1af582d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:04:05.000Z'}}, {'blockNum': '0x636a07', 'uniqueId': '0x7eb219a57720b8548716504c1f3124507e61113fbcf70f7b170be2780f20c07b:log:41', 'hash': '0x7eb219a57720b8548716504c1f3124507e61113fbcf70f7b170be2780f20c07b', 'from': '0x5179bc7b6e90719b17cea1feb302d1c5208a1bfa', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 13451.255873328393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02d931acbcfbf1af582d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:04:05.000Z'}}, {'blockNum': '0x636a07', 'uniqueId': '0x7eb219a57720b8548716504c1f3124507e61113fbcf70f7b170be2780f20c07b:log:42', 'hash': '0x7eb219a57720b8548716504c1f3124507e61113fbcf70f7b170be2780f20c07b', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 13451.255873328393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02d931acbcfbf1af582d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:04:05.000Z'}}, {'blockNum': '0x636a08', 'uniqueId': '0x7be32e6ccc206518cc91b2e1f75da077964166d929353b46013b0e6d19f3a909:log:15', 'hash': '0x7be32e6ccc206518cc91b2e1f75da077964166d929353b46013b0e6d19f3a909', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2095.831058483454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x719d7fab8079342dc5', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:04:10.000Z'}}, {'blockNum': '0x636a08', 'uniqueId': '0x7be32e6ccc206518cc91b2e1f75da077964166d929353b46013b0e6d19f3a909:log:17', 'hash': '0x7be32e6ccc206518cc91b2e1f75da077964166d929353b46013b0e6d19f3a909', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2095.831058483454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x719d7fab8079342dc5', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:04:10.000Z'}}, {'blockNum': '0x636a08', 'uniqueId': '0x7be32e6ccc206518cc91b2e1f75da077964166d929353b46013b0e6d19f3a909:log:18', 'hash': '0x7be32e6ccc206518cc91b2e1f75da077964166d929353b46013b0e6d19f3a909', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2095.831058483454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x719d7fab8079342dc5', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:04:10.000Z'}}, {'blockNum': '0x636a09', 'uniqueId': '0x9376fc6700f68216b7b5f07d15514608ebf0fb540a38ce23d59fafe432fb979d:log:76', 'hash': '0x9376fc6700f68216b7b5f07d15514608ebf0fb540a38ce23d59fafe432fb979d', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5831.6722240897725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013c22b5ae493714cbfa', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:04:36.000Z'}}, {'blockNum': '0x636a09', 'uniqueId': '0x9376fc6700f68216b7b5f07d15514608ebf0fb540a38ce23d59fafe432fb979d:log:79', 'hash': '0x9376fc6700f68216b7b5f07d15514608ebf0fb540a38ce23d59fafe432fb979d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 5831.6722240897725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013c22b5ae493714cbfa', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:04:36.000Z'}}, {'blockNum': '0x636a0a', 'uniqueId': '0x5ee2ba7bee271375677053fc15617f00be460a045230f17da64729632b2e154d:log:4', 'hash': '0x5ee2ba7bee271375677053fc15617f00be460a045230f17da64729632b2e154d', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 6947.543859649124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0178a08a1aaf985a6d90', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:05:01.000Z'}}, {'blockNum': '0x636a0a', 'uniqueId': '0xf5c6c68bb2063c629c3105f4975f624e04fe2a12f0a213b3d7f8b88c80e7f241:log:7', 'hash': '0xf5c6c68bb2063c629c3105f4975f624e04fe2a12f0a213b3d7f8b88c80e7f241', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x4c3ecbba6b80c46ef6027690b726432c3d8dbe75', 'value': 25397.863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0560d2274adaccdd8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:05:01.000Z'}}, {'blockNum': '0x636a0b', 'uniqueId': '0x27f2435414f9b46136eae04fe50390ae4e0c454e2b60929864c17f3dab2f532b:log:33', 'hash': '0x27f2435414f9b46136eae04fe50390ae4e0c454e2b60929864c17f3dab2f532b', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 17973.186614392904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03ce5411efc436c178f3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:05:07.000Z'}}, {'blockNum': '0x636a0b', 'uniqueId': '0x27f2435414f9b46136eae04fe50390ae4e0c454e2b60929864c17f3dab2f532b:log:37', 'hash': '0x27f2435414f9b46136eae04fe50390ae4e0c454e2b60929864c17f3dab2f532b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xeca0f4bd861713af4f248ced18c15af76440b00a', 'value': 17973.186614392904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03ce5411efc436c178f3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:05:07.000Z'}}, {'blockNum': '0x636a10', 'uniqueId': '0x00f1c7d3a6f7c2ef880907c7d6d14357828589bf941ae1d1fcc9cec397c343ee:log:3', 'hash': '0x00f1c7d3a6f7c2ef880907c7d6d14357828589bf941ae1d1fcc9cec397c343ee', 'from': '0xeca0f4bd861713af4f248ced18c15af76440b00a', 'to': '0x2aac5b538c72868db7ad595851e8df93430a3eb6', 'value': 17973.186614392904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03ce5411efc436c178f3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:05:41.000Z'}}, {'blockNum': '0x636a14', 'uniqueId': '0x6c02dac0fc293af1f8a01f1025336a1c923f384505c603237a4cc1cc9902e186:log:23', 'hash': '0x6c02dac0fc293af1f8a01f1025336a1c923f384505c603237a4cc1cc9902e186', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3549.7760933150453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc06f0a1559a9254b78', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:06:14.000Z'}}, {'blockNum': '0x636a14', 'uniqueId': '0x6c02dac0fc293af1f8a01f1025336a1c923f384505c603237a4cc1cc9902e186:log:26', 'hash': '0x6c02dac0fc293af1f8a01f1025336a1c923f384505c603237a4cc1cc9902e186', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 3549.7760933150453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc06f0a1559a9254b78', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:06:14.000Z'}}, {'blockNum': '0x636a17', 'uniqueId': '0xddf3710ebe3b4922fa350d4ccfdc1beb5892929e134a2c70f8f872941ab1a267:log:33', 'hash': '0xddf3710ebe3b4922fa350d4ccfdc1beb5892929e134a2c70f8f872941ab1a267', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 12309.525611332652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x029b4cfc04d85fd33354', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:06:36.000Z'}}, {'blockNum': '0x636a17', 'uniqueId': '0xddf3710ebe3b4922fa350d4ccfdc1beb5892929e134a2c70f8f872941ab1a267:log:37', 'hash': '0xddf3710ebe3b4922fa350d4ccfdc1beb5892929e134a2c70f8f872941ab1a267', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 12309.525611332652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x029b4cfc04d85fd33354', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:06:36.000Z'}}, {'blockNum': '0x636a17', 'uniqueId': '0xddf3710ebe3b4922fa350d4ccfdc1beb5892929e134a2c70f8f872941ab1a267:log:39', 'hash': '0xddf3710ebe3b4922fa350d4ccfdc1beb5892929e134a2c70f8f872941ab1a267', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 12309.525611332652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x029b4cfc04d85fd33354', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:06:36.000Z'}}, {'blockNum': '0x636a17', 'uniqueId': '0xddf3710ebe3b4922fa350d4ccfdc1beb5892929e134a2c70f8f872941ab1a267:log:40', 'hash': '0xddf3710ebe3b4922fa350d4ccfdc1beb5892929e134a2c70f8f872941ab1a267', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 12309.525611332652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x029b4cfc04d85fd33354', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:06:36.000Z'}}, {'blockNum': '0x636a18', 'uniqueId': '0xd90c18d8e1417efa648aad5e7fa85a83bfb71df8f17fe3ba3f648272da6b4601:log:45', 'hash': '0xd90c18d8e1417efa648aad5e7fa85a83bfb71df8f17fe3ba3f648272da6b4601', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x6427fc587266813b6993ae4c8de672640cb3b43f', 'value': 9298.50517133684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01f812ae83bd311007cc', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:06:48.000Z'}}, {'blockNum': '0x636a1a', 'uniqueId': '0xfc2b7271efd266aae840af74b221c88f6123f00c2685134ddd49ab5fbbbd0250:log:26', 'hash': '0xfc2b7271efd266aae840af74b221c88f6123f00c2685134ddd49ab5fbbbd0250', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 17358.957071065965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03ad07ec3c702e200000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:07:28.000Z'}}, {'blockNum': '0x636a23', 'uniqueId': '0xdd0a696174d0ee6945fc6587cb9268c7ddec2ba14de8cd3c133593417784bdef:log:13', 'hash': '0xdd0a696174d0ee6945fc6587cb9268c7ddec2ba14de8cd3c133593417784bdef', 'from': '0x6427fc587266813b6993ae4c8de672640cb3b43f', 'to': '0xe269e891a2ec8585a378882ffa531141205e92e9', 'value': 9298.50517133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01f812ae83bb99649400', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:08:58.000Z'}}, {'blockNum': '0x636a23', 'uniqueId': '0xdd0a696174d0ee6945fc6587cb9268c7ddec2ba14de8cd3c133593417784bdef:log:17', 'hash': '0xdd0a696174d0ee6945fc6587cb9268c7ddec2ba14de8cd3c133593417784bdef', 'from': '0xe269e891a2ec8585a378882ffa531141205e92e9', 'to': '0x52f337325eb2ff7d957a75b28984742a4c5701e4', 'value': 3264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xb0f11972963b000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:08:58.000Z'}}, {'blockNum': '0x636a23', 'uniqueId': '0xdd0a696174d0ee6945fc6587cb9268c7ddec2ba14de8cd3c133593417784bdef:log:20', 'hash': '0xdd0a696174d0ee6945fc6587cb9268c7ddec2ba14de8cd3c133593417784bdef', 'from': '0xe269e891a2ec8585a378882ffa531141205e92e9', 'to': '0x52f337325eb2ff7d957a75b28984742a4c5701e4', 'value': 5136.96628892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011679ba66f5793ef000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:08:58.000Z'}}, {'blockNum': '0x636a23', 'uniqueId': '0xdd0a696174d0ee6945fc6587cb9268c7ddec2ba14de8cd3c133593417784bdef:log:23', 'hash': '0xdd0a696174d0ee6945fc6587cb9268c7ddec2ba14de8cd3c133593417784bdef', 'from': '0xe269e891a2ec8585a378882ffa531141205e92e9', 'to': '0x52f337325eb2ff7d957a75b28984742a4c5701e4', 'value': 897.53888241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x30a7daaa2fe525a400', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:08:58.000Z'}}, {'blockNum': '0x636a26', 'uniqueId': '0x23d35be43fa7104ffaa6972f9e9d49f5c93beecf931e15a2e06c73eb20627a2f:log:0', 'hash': '0x23d35be43fa7104ffaa6972f9e9d49f5c93beecf931e15a2e06c73eb20627a2f', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 38766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0835825278ede8f80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:09:35.000Z'}}, {'blockNum': '0x636a28', 'uniqueId': '0x609ca93e7f4b13bfcc1fbf97d628d9c1a3a7b59971e73b6a56d54a9ec9a0653a:log:1', 'hash': '0x609ca93e7f4b13bfcc1fbf97d628d9c1a3a7b59971e73b6a56d54a9ec9a0653a', 'from': '0x34de029e67204e75ba9b108c81f518cf81211aaf', 'to': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'value': 1083.915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3ac257a5ac15878000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:09:47.000Z'}}, {'blockNum': '0x636a28', 'uniqueId': '0x609ca93e7f4b13bfcc1fbf97d628d9c1a3a7b59971e73b6a56d54a9ec9a0653a:log:5', 'hash': '0x609ca93e7f4b13bfcc1fbf97d628d9c1a3a7b59971e73b6a56d54a9ec9a0653a', 'from': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 1083.915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3ac257a5ac15878000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:09:47.000Z'}}, {'blockNum': '0x636a2b', 'uniqueId': '0x3dd7d86e8c6963f7c3d3f056033d5838e668ebb1238fe9cf65df95d9db9f17e7:log:6', 'hash': '0x3dd7d86e8c6963f7c3d3f056033d5838e668ebb1238fe9cf65df95d9db9f17e7', 'from': '0x839a5e9568b758f97cb8fe66e13df05ff2a52c30', 'to': '0xb3a5c3368b76e2e7d43f4fd894e118afaa40db0b', 'value': 88831.4282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x12cf8fb612d2816e8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:01.000Z'}}, {'blockNum': '0x636a2c', 'uniqueId': '0xf3d7ac86e7ffc2fa966d4e40d5551e8a9f8b1a7cbf88d388670ce2dd1849cf68:log:2', 'hash': '0xf3d7ac86e7ffc2fa966d4e40d5551e8a9f8b1a7cbf88d388670ce2dd1849cf68', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'value': 43884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x094af4d7149a6a300000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:19.000Z'}}, {'blockNum': '0x636a2c', 'uniqueId': '0xa9f287e082f557bdb735245338963d2add637a79ed67f91bc74f18cc10dbe391:log:3', 'hash': '0xa9f287e082f557bdb735245338963d2add637a79ed67f91bc74f18cc10dbe391', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 105977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1671065189ca24440000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:19.000Z'}}, {'blockNum': '0x636a2c', 'uniqueId': '0x5a751f8a8e485c2ac0a8f983f1441f8e4c1faae2ebaf35cff3c870334efe7547:log:5', 'hash': '0x5a751f8a8e485c2ac0a8f983f1441f8e4c1faae2ebaf35cff3c870334efe7547', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'value': 31749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x06b91de29696b4f40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:19.000Z'}}, {'blockNum': '0x636a2c', 'uniqueId': '0xff2c24b42eae2f95d8690911682d4c8674e8f21f1502276ac8d30334c82a9101:log:26', 'hash': '0xff2c24b42eae2f95d8690911682d4c8674e8f21f1502276ac8d30334c82a9101', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 8909.92434674554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01e3020a1a900c42233a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:19.000Z'}}, {'blockNum': '0x636a2c', 'uniqueId': '0xff2c24b42eae2f95d8690911682d4c8674e8f21f1502276ac8d30334c82a9101:log:28', 'hash': '0xff2c24b42eae2f95d8690911682d4c8674e8f21f1502276ac8d30334c82a9101', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'value': 8909.92434674554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01e3020a1a900c42233a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:19.000Z'}}, {'blockNum': '0x636a2c', 'uniqueId': '0xff2c24b42eae2f95d8690911682d4c8674e8f21f1502276ac8d30334c82a9101:log:32', 'hash': '0xff2c24b42eae2f95d8690911682d4c8674e8f21f1502276ac8d30334c82a9101', 'from': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 8909.92434674554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01e3020a1a900c42233a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:19.000Z'}}, {'blockNum': '0x636a2c', 'uniqueId': '0xff2c24b42eae2f95d8690911682d4c8674e8f21f1502276ac8d30334c82a9101:log:34', 'hash': '0xff2c24b42eae2f95d8690911682d4c8674e8f21f1502276ac8d30334c82a9101', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 8909.92434674554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01e3020a1a900c42233a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:19.000Z'}}, {'blockNum': '0x636a2d', 'uniqueId': '0x136ff7f8ad5b9037641f014bc3f9542260651ee4a78f82040abb9aa2d05345d9:log:0', 'hash': '0x136ff7f8ad5b9037641f014bc3f9542260651ee4a78f82040abb9aa2d05345d9', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x55f08cfc99a9da49f8d9db5aeb0f1a3e8ad0bf7f', 'value': 5217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011ad06b43263ce40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:26.000Z'}}, {'blockNum': '0x636a2d', 'uniqueId': '0x85937fda5c0a61c1bccd4484dd0b700459ac10dff31e8c6964263d08c443ec1a:log:15', 'hash': '0x85937fda5c0a61c1bccd4484dd0b700459ac10dff31e8c6964263d08c443ec1a', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 3564.340878188998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc1392a98068b182000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:26.000Z'}}, {'blockNum': '0x636a2d', 'uniqueId': '0x85937fda5c0a61c1bccd4484dd0b700459ac10dff31e8c6964263d08c443ec1a:log:17', 'hash': '0x85937fda5c0a61c1bccd4484dd0b700459ac10dff31e8c6964263d08c443ec1a', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 3564.340878188998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc1392a98068b182000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:26.000Z'}}, {'blockNum': '0x636a2d', 'uniqueId': '0x85937fda5c0a61c1bccd4484dd0b700459ac10dff31e8c6964263d08c443ec1a:log:21', 'hash': '0x85937fda5c0a61c1bccd4484dd0b700459ac10dff31e8c6964263d08c443ec1a', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3564.340878188998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc1392a98068b182000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:26.000Z'}}, {'blockNum': '0x636a2d', 'uniqueId': '0x85937fda5c0a61c1bccd4484dd0b700459ac10dff31e8c6964263d08c443ec1a:log:23', 'hash': '0x85937fda5c0a61c1bccd4484dd0b700459ac10dff31e8c6964263d08c443ec1a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 3564.340878188998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc1392a98068b182000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:26.000Z'}}, {'blockNum': '0x636a48', 'uniqueId': '0x1dca4e49c120fd41d8c8839655edec921596bc98c48e894875f7f5c8360c14cb:log:50', 'hash': '0x1dca4e49c120fd41d8c8839655edec921596bc98c48e894875f7f5c8360c14cb', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2652.7596646797388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8fce6f8c1a682e4b4c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:15:58.000Z'}}, {'blockNum': '0x636a48', 'uniqueId': '0x1dca4e49c120fd41d8c8839655edec921596bc98c48e894875f7f5c8360c14cb:log:54', 'hash': '0x1dca4e49c120fd41d8c8839655edec921596bc98c48e894875f7f5c8360c14cb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 2652.7596646797388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8fce6f8c1a682e4b4c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:15:58.000Z'}}, {'blockNum': '0x636a48', 'uniqueId': '0x1dca4e49c120fd41d8c8839655edec921596bc98c48e894875f7f5c8360c14cb:log:56', 'hash': '0x1dca4e49c120fd41d8c8839655edec921596bc98c48e894875f7f5c8360c14cb', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2652.7596646797388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8fce6f8c1a682e4b4c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:15:58.000Z'}}, {'blockNum': '0x636a48', 'uniqueId': '0x1dca4e49c120fd41d8c8839655edec921596bc98c48e894875f7f5c8360c14cb:log:57', 'hash': '0x1dca4e49c120fd41d8c8839655edec921596bc98c48e894875f7f5c8360c14cb', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2652.7596646797388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8fce6f8c1a682e4b4c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:15:58.000Z'}}, {'blockNum': '0x636a49', 'uniqueId': '0xaa01a9f4e3a3c6ab76aea822283a6dbc931411ebf1e5ae3d91ed7a65d059eb60:log:5', 'hash': '0xaa01a9f4e3a3c6ab76aea822283a6dbc931411ebf1e5ae3d91ed7a65d059eb60', 'from': '0x7b01a0d8e0d9dcd4154422b24f6284ae3cc5baaa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10924.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02503947dafd107b4240', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:16:07.000Z'}}, {'blockNum': '0x636a4d', 'uniqueId': '0x54c62bcaf42421a92b1cd855bf5580737eaa838dbb26efc3e29cb5ce470f9aac:log:78', 'hash': '0x54c62bcaf42421a92b1cd855bf5580737eaa838dbb26efc3e29cb5ce470f9aac', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 12211.206698066044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0295f8891225293ba289', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:17:12.000Z'}}, {'blockNum': '0x636a4d', 'uniqueId': '0x54c62bcaf42421a92b1cd855bf5580737eaa838dbb26efc3e29cb5ce470f9aac:log:82', 'hash': '0x54c62bcaf42421a92b1cd855bf5580737eaa838dbb26efc3e29cb5ce470f9aac', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 12211.206698066044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0295f8891225293ba289', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:17:12.000Z'}}, {'blockNum': '0x636a4d', 'uniqueId': '0x54c62bcaf42421a92b1cd855bf5580737eaa838dbb26efc3e29cb5ce470f9aac:log:83', 'hash': '0x54c62bcaf42421a92b1cd855bf5580737eaa838dbb26efc3e29cb5ce470f9aac', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 12210.815840023284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0295f31c76d37cf6504a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:17:12.000Z'}}, {'blockNum': '0x636a4d', 'uniqueId': '0x54c62bcaf42421a92b1cd855bf5580737eaa838dbb26efc3e29cb5ce470f9aac:log:84', 'hash': '0x54c62bcaf42421a92b1cd855bf5580737eaa838dbb26efc3e29cb5ce470f9aac', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 12210.815840023284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0295f31c76d37cf6504a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:17:12.000Z'}}, {'blockNum': '0x636a51', 'uniqueId': '0xb50f611b64537c7ecf0c485a66188b8945da9f8a81479bfab19ddb549b52357c:log:1', 'hash': '0xb50f611b64537c7ecf0c485a66188b8945da9f8a81479bfab19ddb549b52357c', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:17:34.000Z'}}, {'blockNum': '0x636a51', 'uniqueId': '0xb937905bc3900dbc9a67ef37ffe1a5a2f723ebac3be09b625252dbdea0a0aae2:log:3', 'hash': '0xb937905bc3900dbc9a67ef37ffe1a5a2f723ebac3be09b625252dbdea0a0aae2', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 38912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x083d6c7aab6360000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:17:34.000Z'}}, {'blockNum': '0x636a51', 'uniqueId': '0x42a9322e859f43d1e308d7da1cc9a3663bdf1864646b851d252bbb361a9e6755:log:4', 'hash': '0x42a9322e859f43d1e308d7da1cc9a3663bdf1864646b851d252bbb361a9e6755', 'from': '0x9ca67b1344481fffc1fdfc04526ca42a5d80d228', 'to': '0xfcb1436eaa289ea182b4dcbddebc2b586c718951', 'value': 10957.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0251ff1597bc8bb20000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:17:34.000Z'}}, {'blockNum': '0x636a52', 'uniqueId': '0xdca22c9854b774868cea942922c686c4aefdf03500c1878c951c5a44ea29cbb2:log:0', 'hash': '0xdca22c9854b774868cea942922c686c4aefdf03500c1878c951c5a44ea29cbb2', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x7d6645feba93d57d817763350b33c19d9c2ced3c', 'value': 5311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011fe8ee591db39c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:17:52.000Z'}}, {'blockNum': '0x636a52', 'uniqueId': '0x320c3324e1c5f027ee95e25fa9b73f8a35db6909f890660728e2723018a824fc:log:1', 'hash': '0x320c3324e1c5f027ee95e25fa9b73f8a35db6909f890660728e2723018a824fc', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 3507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbe1d66df1e1eec0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:17:52.000Z'}}, {'blockNum': '0x636a54', 'uniqueId': '0x18660ea3bfce693064a5b7ebde757d4c7232b3cc26df79116ef18421d2101f88:log:35', 'hash': '0x18660ea3bfce693064a5b7ebde757d4c7232b3cc26df79116ef18421d2101f88', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x7203841a3d0f4e9ce2ed0a043c3b03a7ec972767', 'value': 30671.25255821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x067eb122826e6e049400', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:18:26.000Z'}}, {'blockNum': '0x636a54', 'uniqueId': '0x18660ea3bfce693064a5b7ebde757d4c7232b3cc26df79116ef18421d2101f88:log:36', 'hash': '0x18660ea3bfce693064a5b7ebde757d4c7232b3cc26df79116ef18421d2101f88', 'from': '0x7203841a3d0f4e9ce2ed0a043c3b03a7ec972767', 'to': '0xfc2b4d1ad1adc695092c1503eeb3f32a816e5651', 'value': 30671.25255821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x067eb122826e6e049400', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:18:26.000Z'}}, {'blockNum': '0x636a58', 'uniqueId': '0xa4056c3d1e26677b5a4ec81b1edee45e2e0da032d40c8c4cd2dcb37c4c90b8fe:log:29', 'hash': '0xa4056c3d1e26677b5a4ec81b1edee45e2e0da032d40c8c4cd2dcb37c4c90b8fe', 'from': '0x7d6645feba93d57d817763350b33c19d9c2ced3c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011fe8ee591db39c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:19:40.000Z'}}, {'blockNum': '0x636a58', 'uniqueId': '0xa4056c3d1e26677b5a4ec81b1edee45e2e0da032d40c8c4cd2dcb37c4c90b8fe:log:31', 'hash': '0xa4056c3d1e26677b5a4ec81b1edee45e2e0da032d40c8c4cd2dcb37c4c90b8fe', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011fe8ee591db39c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:19:40.000Z'}}, {'blockNum': '0x636a5d', 'uniqueId': '0xe3303a806ca22548344f74e0c6f77f2b5e2e579cc06996a0bf3e15445a72aca4:log:3', 'hash': '0xe3303a806ca22548344f74e0c6f77f2b5e2e579cc06996a0bf3e15445a72aca4', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'value': 31968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x06c4fd1ee246e7800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:20:54.000Z'}}, {'blockNum': '0x636a5d', 'uniqueId': '0xa133ba3ff3d6e587f69f8e9a4a434e56efcaceac4aef89b7dab3328b64194f7d:log:21', 'hash': '0xa133ba3ff3d6e587f69f8e9a4a434e56efcaceac4aef89b7dab3328b64194f7d', 'from': '0x0c76de67e73262ed7096e4043728575728f04e77', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 8950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01e52e336cde22180000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:20:54.000Z'}}, {'blockNum': '0x636a5d', 'uniqueId': '0xa133ba3ff3d6e587f69f8e9a4a434e56efcaceac4aef89b7dab3328b64194f7d:log:22', 'hash': '0xa133ba3ff3d6e587f69f8e9a4a434e56efcaceac4aef89b7dab3328b64194f7d', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 8950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01e52e336cde22180000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:20:54.000Z'}}, {'blockNum': '0x636a60', 'uniqueId': '0x560bcf3d5601d496016e72f2e63a657e3fe69afc487a77cfaa27d2e3dfefca32:log:32', 'hash': '0x560bcf3d5601d496016e72f2e63a657e3fe69afc487a77cfaa27d2e3dfefca32', 'from': '0x9a2d77995e7ae1a134236c7e1222b3c585a7a969', 'to': '0x3717bc7c3bbdd6832bdd6020d084b3eb517d8340', 'value': 8623.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01d37b1a68bd250e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:21:07.000Z'}}, {'blockNum': '0x636a6c', 'uniqueId': '0x86b0738e8ab4af6024b95c8f57da6648f1815abe6d90bb867dcc9118c16feaef:log:74', 'hash': '0x86b0738e8ab4af6024b95c8f57da6648f1815abe6d90bb867dcc9118c16feaef', 'from': '0xec0c666acd059e2bbf5dd055f1a282bf0ebf16fc', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:23:48.000Z'}}, {'blockNum': '0x636a6c', 'uniqueId': '0x86b0738e8ab4af6024b95c8f57da6648f1815abe6d90bb867dcc9118c16feaef:log:75', 'hash': '0x86b0738e8ab4af6024b95c8f57da6648f1815abe6d90bb867dcc9118c16feaef', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:23:48.000Z'}}, {'blockNum': '0x636a6f', 'uniqueId': '0x1f7cf15d8eef9acb602d060563cbb7c699ae594fc589074f12b72bf195688211:log:98', 'hash': '0x1f7cf15d8eef9acb602d060563cbb7c699ae594fc589074f12b72bf195688211', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5317.567547959201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01204412f7304519b22c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:24:42.000Z'}}, {'blockNum': '0x636a6f', 'uniqueId': '0x1f7cf15d8eef9acb602d060563cbb7c699ae594fc589074f12b72bf195688211:log:100', 'hash': '0x1f7cf15d8eef9acb602d060563cbb7c699ae594fc589074f12b72bf195688211', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'value': 5317.567547959201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01204412f7304519b22c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:24:42.000Z'}}, {'blockNum': '0x636a6f', 'uniqueId': '0x1f7cf15d8eef9acb602d060563cbb7c699ae594fc589074f12b72bf195688211:log:104', 'hash': '0x1f7cf15d8eef9acb602d060563cbb7c699ae594fc589074f12b72bf195688211', 'from': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5317.567547959201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01204412f7304519b22c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:24:42.000Z'}}, {'blockNum': '0x636a6f', 'uniqueId': '0x1f7cf15d8eef9acb602d060563cbb7c699ae594fc589074f12b72bf195688211:log:106', 'hash': '0x1f7cf15d8eef9acb602d060563cbb7c699ae594fc589074f12b72bf195688211', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5317.567547959201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01204412f7304519b22c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:24:42.000Z'}}, {'blockNum': '0x636a71', 'uniqueId': '0x61920b54197240d197995a966c2506977c1296508ff6a542ef62bd6af375a930:log:3', 'hash': '0x61920b54197240d197995a966c2506977c1296508ff6a542ef62bd6af375a930', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x79e4377bf165c4b62b0316301f64ce695866bfeb', 'value': 75065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0fe548244c95b9440000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:25:54.000Z'}}, {'blockNum': '0x636a71', 'uniqueId': '0xcddfc09bd53b6456445eaf1f4bdea15b5bde8a0043dc5966cbd08c74362b49d0:log:5', 'hash': '0xcddfc09bd53b6456445eaf1f4bdea15b5bde8a0043dc5966cbd08c74362b49d0', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x55f08cfc99a9da49f8d9db5aeb0f1a3e8ad0bf7f', 'value': 5955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0142d239f50ecb2c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:25:54.000Z'}}, {'blockNum': '0x636a73', 'uniqueId': '0x6c4b5dfb6ed9302d2144333ac477853dce7c6adb5f05f5b5b0b0c34c01420551:log:12', 'hash': '0x6c4b5dfb6ed9302d2144333ac477853dce7c6adb5f05f5b5b0b0c34c01420551', 'from': '0x2aac5b538c72868db7ad595851e8df93430a3eb6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17973.186614392904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03ce5411efc436c178f3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:26:17.000Z'}}, {'blockNum': '0x636a73', 'uniqueId': '0x496d987e86d1024eb0bdfad59cb3875a22659223ae46e413e209da1b807413c2:log:13', 'hash': '0x496d987e86d1024eb0bdfad59cb3875a22659223ae46e413e209da1b807413c2', 'from': '0xb3a5c3368b76e2e7d43f4fd894e118afaa40db0b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 88831.4282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x12cf8fb612d2816e8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:26:17.000Z'}}, {'blockNum': '0x636a73', 'uniqueId': '0x05a2ad531417cd09a2fd0948bdac6c8a49fd880ef5a203ebdcd81243658b4d30:log:14', 'hash': '0x05a2ad531417cd09a2fd0948bdac6c8a49fd880ef5a203ebdcd81243658b4d30', 'from': '0x4c3ecbba6b80c46ef6027690b726432c3d8dbe75', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25397.863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0560d2274adaccdd8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:26:17.000Z'}}, {'blockNum': '0x636a73', 'uniqueId': '0xf565d013cdffa7b86d65ef693ff91a5bae61ab2a72d1a6d43c6bbd65e09eb98e:log:15', 'hash': '0xf565d013cdffa7b86d65ef693ff91a5bae61ab2a72d1a6d43c6bbd65e09eb98e', 'from': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 44451.00804132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0969b1a84e0bdecc1000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:26:17.000Z'}}, {'blockNum': '0x636a73', 'uniqueId': '0xf2b734676ea3f383488c14126af2c663ee29434fa9f55b840af04600b11db6d7:log:16', 'hash': '0xf2b734676ea3f383488c14126af2c663ee29434fa9f55b840af04600b11db6d7', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbe1d66df1e1eec0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:26:17.000Z'}}, {'blockNum': '0x636a73', 'uniqueId': '0xc495484daf83cd889dd54b9f221d2cd520b575db29ec93133354bef8f9d67954:log:17', 'hash': '0xc495484daf83cd889dd54b9f221d2cd520b575db29ec93133354bef8f9d67954', 'from': '0xfcb1436eaa289ea182b4dcbddebc2b586c718951', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10957.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0251ff1597bc8bb20000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:26:17.000Z'}}, {'blockNum': '0x636a73', 'uniqueId': '0xd2ea32c938f4400098e35240c528c16c676d9b5460cf541d212adace0ea54a12:log:18', 'hash': '0xd2ea32c938f4400098e35240c528c16c676d9b5460cf541d212adace0ea54a12', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17358.957071065965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03ad07ec3c702e200000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:26:17.000Z'}}, {'blockNum': '0x636a73', 'uniqueId': '0x0cd350c0d349b7971be222c427ddc4c37f49a3c301ceb6ed2e58fd385ce977ab:log:20', 'hash': '0x0cd350c0d349b7971be222c427ddc4c37f49a3c301ceb6ed2e58fd385ce977ab', 'from': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:26:17.000Z'}}, {'blockNum': '0x636a73', 'uniqueId': '0x73592fc7644530c0bc86a3c4f3fd3b686542ed8df0276976e65837def03b32be:log:21', 'hash': '0x73592fc7644530c0bc86a3c4f3fd3b686542ed8df0276976e65837def03b32be', 'from': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 63717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0d7e1b0178dd9c740000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:26:17.000Z'}}, {'blockNum': '0x636a73', 'uniqueId': '0x6406184e77fd21738c2dad7bffad8368637ed9bf0ddd860c5eb4801f87b2fcea:log:23', 'hash': '0x6406184e77fd21738c2dad7bffad8368637ed9bf0ddd860c5eb4801f87b2fcea', 'from': '0x55f08cfc99a9da49f8d9db5aeb0f1a3e8ad0bf7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x025da2a5383508100000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:26:17.000Z'}}, {'blockNum': '0x636a77', 'uniqueId': '0x57135893f8cfd1597f5548c1d301f4146189cf5c87112ec3d2ce645df467978b:log:9', 'hash': '0x57135893f8cfd1597f5548c1d301f4146189cf5c87112ec3d2ce645df467978b', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 105977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1671065189ca24440000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:27:22.000Z'}}, {'blockNum': '0x636a78', 'uniqueId': '0xaee1097efaf5ac4b0b1f9b7a86e310a4aa12e348e7f163f29d8d81ceb860a901:log:107', 'hash': '0xaee1097efaf5ac4b0b1f9b7a86e310a4aa12e348e7f163f29d8d81ceb860a901', 'from': '0xec0c666acd059e2bbf5dd055f1a282bf0ebf16fc', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:27:29.000Z'}}, {'blockNum': '0x636a78', 'uniqueId': '0xaee1097efaf5ac4b0b1f9b7a86e310a4aa12e348e7f163f29d8d81ceb860a901:log:108', 'hash': '0xaee1097efaf5ac4b0b1f9b7a86e310a4aa12e348e7f163f29d8d81ceb860a901', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:27:29.000Z'}}, {'blockNum': '0x636a7b', 'uniqueId': '0x0fe118b91aeaebb9c363cd33171a9680e9cf41f52b8f3516cdb7d75b770ebab2:log:14', 'hash': '0x0fe118b91aeaebb9c363cd33171a9680e9cf41f52b8f3516cdb7d75b770ebab2', 'from': '0xbf105914c2867dffafd77b7dfb75884d22fa0fa1', 'to': '0x0d21e953e5820dc4a23e96d7f898cc0c086612c3', 'value': 6257.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01533df2752bfcbf0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:28:23.000Z'}}, {'blockNum': '0x636a80', 'uniqueId': '0x997d5609686af9fc2bb8e1fca6a17ccccbe038e663b401ad4864fc4520804609:log:11', 'hash': '0x997d5609686af9fc2bb8e1fca6a17ccccbe038e663b401ad4864fc4520804609', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 38952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x083f9797377587a00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:30:09.000Z'}}, {'blockNum': '0x636a81', 'uniqueId': '0x1d6159592d23d0d3f4132cdacf12e66a590ce4fc6ba715c15e560ab3037b5eb2:log:15', 'hash': '0x1d6159592d23d0d3f4132cdacf12e66a590ce4fc6ba715c15e560ab3037b5eb2', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x7203841a3d0f4e9ce2ed0a043c3b03a7ec972767', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:30:33.000Z'}}, {'blockNum': '0x636a81', 'uniqueId': '0x1d6159592d23d0d3f4132cdacf12e66a590ce4fc6ba715c15e560ab3037b5eb2:log:16', 'hash': '0x1d6159592d23d0d3f4132cdacf12e66a590ce4fc6ba715c15e560ab3037b5eb2', 'from': '0x7203841a3d0f4e9ce2ed0a043c3b03a7ec972767', 'to': '0xfc2b4d1ad1adc695092c1503eeb3f32a816e5651', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:30:33.000Z'}}, {'blockNum': '0x636a87', 'uniqueId': '0x648814b8347f067977d0bcc133d890050dac7375053403bfc3d4822025684bf1:log:2', 'hash': '0x648814b8347f067977d0bcc133d890050dac7375053403bfc3d4822025684bf1', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'value': 35000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x07695a92c20d6fe00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:31:29.000Z'}}, {'blockNum': '0x636a8e', 'uniqueId': '0x93c09aaadf3ef068ed63625ca44228c5543ec7c5e8d720d17fcec49e84488ef4:log:22', 'hash': '0x93c09aaadf3ef068ed63625ca44228c5543ec7c5e8d720d17fcec49e84488ef4', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 7812.732841997638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01a78772d62a094bb8cb', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:33:03.000Z'}}, {'blockNum': '0x636a8e', 'uniqueId': '0x93c09aaadf3ef068ed63625ca44228c5543ec7c5e8d720d17fcec49e84488ef4:log:26', 'hash': '0x93c09aaadf3ef068ed63625ca44228c5543ec7c5e8d720d17fcec49e84488ef4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 7812.732841997638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01a78772d62a094bb8cb', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:33:03.000Z'}}, {'blockNum': '0x636a8e', 'uniqueId': '0x93c09aaadf3ef068ed63625ca44228c5543ec7c5e8d720d17fcec49e84488ef4:log:27', 'hash': '0x93c09aaadf3ef068ed63625ca44228c5543ec7c5e8d720d17fcec49e84488ef4', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 7811.978433741177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01a77cfaa3da1b3ea9df', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:33:03.000Z'}}, {'blockNum': '0x636a8e', 'uniqueId': '0x93c09aaadf3ef068ed63625ca44228c5543ec7c5e8d720d17fcec49e84488ef4:log:28', 'hash': '0x93c09aaadf3ef068ed63625ca44228c5543ec7c5e8d720d17fcec49e84488ef4', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 7811.978433741177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01a77cfaa3da1b3ea9df', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:33:03.000Z'}}, {'blockNum': '0x636a92', 'uniqueId': '0x7512d066a6974a0ff4153b465e2f9c8d116402bac5c7b0eea7df027cf55bea07:log:32', 'hash': '0x7512d066a6974a0ff4153b465e2f9c8d116402bac5c7b0eea7df027cf55bea07', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 8789.165791079946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01dc762d87fdb750c674', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:33:58.000Z'}}, {'blockNum': '0x636a92', 'uniqueId': '0x7512d066a6974a0ff4153b465e2f9c8d116402bac5c7b0eea7df027cf55bea07:log:36', 'hash': '0x7512d066a6974a0ff4153b465e2f9c8d116402bac5c7b0eea7df027cf55bea07', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 8789.165791079946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01dc762d87fdb750c674', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:33:58.000Z'}}, {'blockNum': '0x636a93', 'uniqueId': '0xa57c617b9693e7f59b0bd75767703ea656acb471746edbd0dc2ab475ce4d0aa4:log:0', 'hash': '0xa57c617b9693e7f59b0bd75767703ea656acb471746edbd0dc2ab475ce4d0aa4', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'value': 32189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x06d0f81c9b5e68d40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:34:13.000Z'}}, {'blockNum': '0x636a97', 'uniqueId': '0xe6a187063c5cd5c5bd28d91791adc841dc2016f04dfa93efb4e957be5b5640b1:log:17', 'hash': '0xe6a187063c5cd5c5bd28d91791adc841dc2016f04dfa93efb4e957be5b5640b1', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 106428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x16897933684a09700000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:34:26.000Z'}}, {'blockNum': '0x636a9b', 'uniqueId': '0x41d969d416bea7870b5054518c42d42bd3f1eb1443080ca320a1f78d286f0ad4:log:11', 'hash': '0x41d969d416bea7870b5054518c42d42bd3f1eb1443080ca320a1f78d286f0ad4', 'from': '0x3717bc7c3bbdd6832bdd6020d084b3eb517d8340', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8623.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01d37b1a68bd250e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:36:05.000Z'}}, {'blockNum': '0x636a9b', 'uniqueId': '0xdc339b5316a48312bbdda9664b808215efd40d77c7b8c906b2cdad4af0bcf652:log:12', 'hash': '0xdc339b5316a48312bbdda9664b808215efd40d77c7b8c906b2cdad4af0bcf652', 'from': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x07695a92c20d6fe00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:36:05.000Z'}}, {'blockNum': '0x636a9b', 'uniqueId': '0x307b0a4f28245bf9af68802d25a773875928ca9ad9d6f5e08273b4a17ff09a9b:log:13', 'hash': '0x307b0a4f28245bf9af68802d25a773875928ca9ad9d6f5e08273b4a17ff09a9b', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 116630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x18b286645bc6d0980000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:36:05.000Z'}}, {'blockNum': '0x636a9b', 'uniqueId': '0xda441604eb3d93bda483596b528ff9f4392d41c8d73436180934a61df8dd9d89:log:14', 'hash': '0xda441604eb3d93bda483596b528ff9f4392d41c8d73436180934a61df8dd9d89', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 106428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x16897933684a09700000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:36:05.000Z'}}, {'blockNum': '0x636aa0', 'uniqueId': '0x2b37e5f7a939cc1c079118edec9ecfaa49160ea188fe2ee5a44b440811203194:log:58', 'hash': '0x2b37e5f7a939cc1c079118edec9ecfaa49160ea188fe2ee5a44b440811203194', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4918.902410400562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x010aa77be0cc2238a0a6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:37:37.000Z'}}, {'blockNum': '0x636aa0', 'uniqueId': '0x2b37e5f7a939cc1c079118edec9ecfaa49160ea188fe2ee5a44b440811203194:log:60', 'hash': '0x2b37e5f7a939cc1c079118edec9ecfaa49160ea188fe2ee5a44b440811203194', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4918.902410400562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x010aa77be0cc2238a0a6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:37:37.000Z'}}, {'blockNum': '0x636aa2', 'uniqueId': '0x48922c33ad529181d99fcfb859ed15fab7408b708311fb03f4cf5f65612a1996:log:4', 'hash': '0x48922c33ad529181d99fcfb859ed15fab7408b708311fb03f4cf5f65612a1996', 'from': '0x7467c531eb941ece24926f0cdc521fbe3212e77e', 'to': '0xa5b16782b9e1b52eef167f69d46c4702a9794028', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:38:00.000Z'}}, {'blockNum': '0x636aab', 'uniqueId': '0xc552efad7f5ca1f206ea9fc6825fe369236aa3970e70b6b0a4778044abb2538e:log:12', 'hash': '0xc552efad7f5ca1f206ea9fc6825fe369236aa3970e70b6b0a4778044abb2538e', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 8452.841289500335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01ca3abcdfba5e500000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:40:58.000Z'}}, {'blockNum': '0x636aab', 'uniqueId': '0xc552efad7f5ca1f206ea9fc6825fe369236aa3970e70b6b0a4778044abb2538e:log:14', 'hash': '0xc552efad7f5ca1f206ea9fc6825fe369236aa3970e70b6b0a4778044abb2538e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 8452.841289500335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01ca3abcdfba5e500000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:40:58.000Z'}}, {'blockNum': '0x636aba', 'uniqueId': '0xc642aa629c33083718f6cd13e69cf0e7444fa7a2624ddca1f963b3ee78da01c0:log:6', 'hash': '0xc642aa629c33083718f6cd13e69cf0e7444fa7a2624ddca1f963b3ee78da01c0', 'from': '0x2b47023def4dae285f87e3b99d7ee538ace7f0fd', 'to': '0x3f6000b95af1e0edd5b1acca858a2bbbf4d305c0', 'value': 3609.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc3a7b635a38bd80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:43:18.000Z'}}, {'blockNum': '0x636abe', 'uniqueId': '0xeeaf7e6addafe8dd19d9cf963124ac9c5ec7eb21f4f655bdc4b4e8f8e73128e1:log:2', 'hash': '0xeeaf7e6addafe8dd19d9cf963124ac9c5ec7eb21f4f655bdc4b4e8f8e73128e1', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x7d6645feba93d57d817763350b33c19d9c2ced3c', 'value': 5341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01218943c22b51540000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:44:27.000Z'}}, {'blockNum': '0x636abe', 'uniqueId': '0x4698705c765bd99c4899a3b65e961ca7ae3d1f49fdaf9ca298da24c5c6cb92b7:log:23', 'hash': '0x4698705c765bd99c4899a3b65e961ca7ae3d1f49fdaf9ca298da24c5c6cb92b7', 'from': '0x79d4f6e6acc7ca51a3deaf2953ee2146b71ec957', 'to': '0x89a252dc5a40db1a1d1032bcfb7c2643e316aa57', 'value': 691.411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x257b41513f5d9b8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:44:27.000Z'}}, {'blockNum': '0x636abf', 'uniqueId': '0x867a155e41d3db7686db8d38de9107a39a6c900ad929aa40936af4bd8450526f:log:0', 'hash': '0x867a155e41d3db7686db8d38de9107a39a6c900ad929aa40936af4bd8450526f', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x55f08cfc99a9da49f8d9db5aeb0f1a3e8ad0bf7f', 'value': 6615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01669990fc3a58fc0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:44:32.000Z'}}, {'blockNum': '0x636ac1', 'uniqueId': '0xd1daa924cff81a9f45b70f1219e957aefe36540de66424def04feb93915b7f23:log:0', 'hash': '0xd1daa924cff81a9f45b70f1219e957aefe36540de66424def04feb93915b7f23', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 36979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x07d4a2b720dc71ec0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:44:41.000Z'}}, {'blockNum': '0x636ac4', 'uniqueId': '0xb2dc51eabdeb09829ad53732a93771f8e4334995b5b15ecc2c4a3c9a00156048:log:0', 'hash': '0xb2dc51eabdeb09829ad53732a93771f8e4334995b5b15ecc2c4a3c9a00156048', 'from': '0x91e45b670297b1380267537c8b2b4cd691033b9b', 'to': '0x0eefa421593a312f2a851526d76346d60ad42fc6', 'value': 350, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x12f939c99edab80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:44:48.000Z'}}, {'blockNum': '0x636acb', 'uniqueId': '0x4ec568ccf18579f1b5a9f69cbc03a53ffe5c6a884b8ffe1b1324f1118127083f:log:11', 'hash': '0x4ec568ccf18579f1b5a9f69cbc03a53ffe5c6a884b8ffe1b1324f1118127083f', 'from': '0x7d6645feba93d57d817763350b33c19d9c2ced3c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01218943c22b51540000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:45:30.000Z'}}, {'blockNum': '0x636acb', 'uniqueId': '0x4ec568ccf18579f1b5a9f69cbc03a53ffe5c6a884b8ffe1b1324f1118127083f:log:13', 'hash': '0x4ec568ccf18579f1b5a9f69cbc03a53ffe5c6a884b8ffe1b1324f1118127083f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01218943c22b51540000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:45:30.000Z'}}, {'blockNum': '0x636acd', 'uniqueId': '0x2d2155ece49876c2cdf881219f2d300723de40cec4fc91f0683621773ba43059:log:7', 'hash': '0x2d2155ece49876c2cdf881219f2d300723de40cec4fc91f0683621773ba43059', 'from': '0x79e4377bf165c4b62b0316301f64ce695866bfeb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 75065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0fe548244c95b9440000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:46:21.000Z'}}, {'blockNum': '0x636acd', 'uniqueId': '0x6b4092105c3b7d7108c04d74dbd9ef9c45c2ff86745db51f5a243f6abee6867e:log:9', 'hash': '0x6b4092105c3b7d7108c04d74dbd9ef9c45c2ff86745db51f5a243f6abee6867e', 'from': '0x0d21e953e5820dc4a23e96d7f898cc0c086612c3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6257.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01533df2752bfcbf0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:46:21.000Z'}}, {'blockNum': '0x636acd', 'uniqueId': '0x7a1c83102efed4400296187e22f34cdc9232fd85f6e92be890b4164541bd221f:log:10', 'hash': '0x7a1c83102efed4400296187e22f34cdc9232fd85f6e92be890b4164541bd221f', 'from': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x06d0f81c9b5e68d40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:46:21.000Z'}}, {'blockNum': '0x636ad8', 'uniqueId': '0x0f4285e78dd90ee80a63b7c541ff8e79cccba31c7dade9dc70fc96c9ef5e5b3d:log:42', 'hash': '0x0f4285e78dd90ee80a63b7c541ff8e79cccba31c7dade9dc70fc96c9ef5e5b3d', 'from': '0xa58f938ca61b57fc7564e91270e1b9619cc51392', 'to': '0x7fd65f765932e29f041113777c47ce77ecf4e24a', 'value': 12.591380952477357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xaebd9243a8084fe0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:49:38.000Z'}}, {'blockNum': '0x636ad8', 'uniqueId': '0x0f4285e78dd90ee80a63b7c541ff8e79cccba31c7dade9dc70fc96c9ef5e5b3d:log:44', 'hash': '0x0f4285e78dd90ee80a63b7c541ff8e79cccba31c7dade9dc70fc96c9ef5e5b3d', 'from': '0x7fd65f765932e29f041113777c47ce77ecf4e24a', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 12.591380952477357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xaebd9243a8084fe0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:49:38.000Z'}}, {'blockNum': '0x636ad8', 'uniqueId': '0x0f4285e78dd90ee80a63b7c541ff8e79cccba31c7dade9dc70fc96c9ef5e5b3d:log:45', 'hash': '0x0f4285e78dd90ee80a63b7c541ff8e79cccba31c7dade9dc70fc96c9ef5e5b3d', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 12.591380952477357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xaebd9243a8084fe0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:49:38.000Z'}}, {'blockNum': '0x636adc', 'uniqueId': '0x19c7b53f168aa28125843f4830a32ee8771b1d057c6693543d28be61901133aa:log:13', 'hash': '0x19c7b53f168aa28125843f4830a32ee8771b1d057c6693543d28be61901133aa', 'from': '0x14c0e23b154935aaa27f791d4927152bcc155c38', 'to': '0xf62c66b080922285c4d27a8dd6ba5b8be419a6b8', 'value': 7000.576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x017b80821d5bd5000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:50:07.000Z'}}, {'blockNum': '0x636aea', 'uniqueId': '0x66e06bc00ef8965bb4942b2a8dd755ee2570b16b934e7efa37874af765ec9a10:log:22', 'hash': '0x66e06bc00ef8965bb4942b2a8dd755ee2570b16b934e7efa37874af765ec9a10', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 28526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x060a65c666c648f80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:53:41.000Z'}}, {'blockNum': '0x636af6', 'uniqueId': '0xaf44eb8e53379cfd64bae50ea80ee4dbd0c9ee6e8f8827717cd38f50908edaf2:log:11', 'hash': '0xaf44eb8e53379cfd64bae50ea80ee4dbd0c9ee6e8f8827717cd38f50908edaf2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6c9b379550aa7187c1385eab5ab3fd0cefe48525', 'value': 422.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x16e1aceaabdca10000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:55:05.000Z'}}, {'blockNum': '0x636afd', 'uniqueId': '0x38904186377968f865fa1b693dc413e115e34c3668a83ad4c9c145d9a2a7ff02:log:1', 'hash': '0x38904186377968f865fa1b693dc413e115e34c3668a83ad4c9c145d9a2a7ff02', 'from': '0xa5b16782b9e1b52eef167f69d46c4702a9794028', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:56:11.000Z'}}, {'blockNum': '0x636afd', 'uniqueId': '0xb75997c247ed962acb3548f3c116bca625c3c783b41b480d3a1af956e74a5e47:log:4', 'hash': '0xb75997c247ed962acb3548f3c116bca625c3c783b41b480d3a1af956e74a5e47', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x07d4a2b720dc71ec0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:56:11.000Z'}}, {'blockNum': '0x636afd', 'uniqueId': '0xc053f881cc6879a24834b6da5c4ffc43993facb32e21f4f5518de38ce6fed91d:log:5', 'hash': '0xc053f881cc6879a24834b6da5c4ffc43993facb32e21f4f5518de38ce6fed91d', 'from': '0x55f08cfc99a9da49f8d9db5aeb0f1a3e8ad0bf7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01669990fc3a58fc0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:56:11.000Z'}}, {'blockNum': '0x636aff', 'uniqueId': '0x02428a6d21c76f00a18b47a4c43db5eca3eb910433012a964ddec8223026f9a5:log:23', 'hash': '0x02428a6d21c76f00a18b47a4c43db5eca3eb910433012a964ddec8223026f9a5', 'from': '0x3f6000b95af1e0edd5b1acca858a2bbbf4d305c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3609.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc3a7b635a38bd80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:57:05.000Z'}}, {'blockNum': '0x636b17', 'uniqueId': '0x21bcddcf530898f8ecc778f7f61641f5f16b1c0db59916d14ff7f117f03e359d:log:7', 'hash': '0x21bcddcf530898f8ecc778f7f61641f5f16b1c0db59916d14ff7f117f03e359d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0d20c9299dc1f75057833f9d4616232c6e864cc1', 'value': 2776.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x9683ad8778f8120000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:02:57.000Z'}}, {'blockNum': '0x636b20', 'uniqueId': '0xcbf57864dfc8f512dc00db3d4596f16479b384ded27ecf323c8a4b13a87b0950:log:0', 'hash': '0xcbf57864dfc8f512dc00db3d4596f16479b384ded27ecf323c8a4b13a87b0950', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 38590, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x082bf7d4dd6ad4380000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:04:59.000Z'}}, {'blockNum': '0x636b20', 'uniqueId': '0x952b0e804c1daaa604d88dd170cc28ebd860e09441f455abf240bc77334b32d0:log:2', 'hash': '0x952b0e804c1daaa604d88dd170cc28ebd860e09441f455abf240bc77334b32d0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x7d649c4e97f28cbc6218959a50329850c0c194a9', 'value': 73.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03faa12f1c31ac0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:04:59.000Z'}}, {'blockNum': '0x636b22', 'uniqueId': '0x0965d42ce18593db829c14ac82bb9f339c5e5964df99b7c78461aed2b2e79156:log:5', 'hash': '0x0965d42ce18593db829c14ac82bb9f339c5e5964df99b7c78461aed2b2e79156', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38590, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x082bf7d4dd6ad4380000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:06:05.000Z'}}, {'blockNum': '0x636b22', 'uniqueId': '0xdc3e4e6d13b1a8d4a4344ca6c87f056e36cc5f8fd05e49316293016e8111c3b0:log:6', 'hash': '0xdc3e4e6d13b1a8d4a4344ca6c87f056e36cc5f8fd05e49316293016e8111c3b0', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x060a65c666c648f80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:06:05.000Z'}}, {'blockNum': '0x636b22', 'uniqueId': '0xe78e68d479dfba72eca8608454f55e860c20e91ce04c1f4992ee47f061576d03:log:7', 'hash': '0xe78e68d479dfba72eca8608454f55e860c20e91ce04c1f4992ee47f061576d03', 'from': '0xf62c66b080922285c4d27a8dd6ba5b8be419a6b8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7000.576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x017b80821d5bd5000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:06:05.000Z'}}, {'blockNum': '0x636b28', 'uniqueId': '0x17fa4093671a398af30e077d3c9c132ef03f68d8168aa9526772b0628885452c:log:38', 'hash': '0x17fa4093671a398af30e077d3c9c132ef03f68d8168aa9526772b0628885452c', 'from': '0x6e0da8713f1d497048b825d423a2e0d5f7ed4b53', 'to': '0x619c5bd91f8f7f9ce77bed1410eec7f73bed74f6', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:08:33.000Z'}}, {'blockNum': '0x636b30', 'uniqueId': '0x1ebea7fd8dda23e349e551f345dd574109055e944604e987ca8512f1cae44613:log:1', 'hash': '0x1ebea7fd8dda23e349e551f345dd574109055e944604e987ca8512f1cae44613', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'value': 11362.334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0267f40f6cc63f430000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:09:43.000Z'}}, {'blockNum': '0x636b35', 'uniqueId': '0x56583f5a0705fcdfcf2d8e287a01dd2bdfacd9051b507c1636f2241e8a8dbacf:log:29', 'hash': '0x56583f5a0705fcdfcf2d8e287a01dd2bdfacd9051b507c1636f2241e8a8dbacf', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3591.662011494253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc2b452c2035be7075b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:11:08.000Z'}}, {'blockNum': '0x636b35', 'uniqueId': '0x56583f5a0705fcdfcf2d8e287a01dd2bdfacd9051b507c1636f2241e8a8dbacf:log:31', 'hash': '0x56583f5a0705fcdfcf2d8e287a01dd2bdfacd9051b507c1636f2241e8a8dbacf', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 3591.662011494253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc2b452c2035be7075b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:11:08.000Z'}}, {'blockNum': '0x636b39', 'uniqueId': '0xb4eea81d6edaf3ddb75e91428b1d772f29a5c6cc6a86d92071208e301498f538:log:0', 'hash': '0xb4eea81d6edaf3ddb75e91428b1d772f29a5c6cc6a86d92071208e301498f538', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 102714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x15c02318cde790a80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:12:02.000Z'}}, {'blockNum': '0x636b41', 'uniqueId': '0xb70cdb168eba1b15f353fea393ed577652e01c5322e2a28504d1eb1258f64842:log:28', 'hash': '0xb70cdb168eba1b15f353fea393ed577652e01c5322e2a28504d1eb1258f64842', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4479.7825694237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf2d978cffc4e4c23d6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:13:48.000Z'}}, {'blockNum': '0x636b41', 'uniqueId': '0xb70cdb168eba1b15f353fea393ed577652e01c5322e2a28504d1eb1258f64842:log:30', 'hash': '0xb70cdb168eba1b15f353fea393ed577652e01c5322e2a28504d1eb1258f64842', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 4479.7825694237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf2d978cffc4e4c23d6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:13:48.000Z'}}, {'blockNum': '0x636b41', 'uniqueId': '0xb70cdb168eba1b15f353fea393ed577652e01c5322e2a28504d1eb1258f64842:log:34', 'hash': '0xb70cdb168eba1b15f353fea393ed577652e01c5322e2a28504d1eb1258f64842', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4479.7825694237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf2d978cffc4e4c23d6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:13:48.000Z'}}, {'blockNum': '0x636b41', 'uniqueId': '0xb70cdb168eba1b15f353fea393ed577652e01c5322e2a28504d1eb1258f64842:log:36', 'hash': '0xb70cdb168eba1b15f353fea393ed577652e01c5322e2a28504d1eb1258f64842', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4479.7825694237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf2d978cffc4e4c23d6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:13:48.000Z'}}, {'blockNum': '0x636b42', 'uniqueId': '0x5bab7006d2e57c824259fc33072ecc7c863c5de0902f662184e1225a64010950:log:19', 'hash': '0x5bab7006d2e57c824259fc33072ecc7c863c5de0902f662184e1225a64010950', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'value': 41816.4131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x08dadf4ed1991b16c000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:14:28.000Z'}}, {'blockNum': '0x636b45', 'uniqueId': '0x8b8712bd9d25608326dae9468225befc0c12a09de07eca9c97f86ebddf27195b:log:6', 'hash': '0x8b8712bd9d25608326dae9468225befc0c12a09de07eca9c97f86ebddf27195b', 'from': '0x2926d803ca0b8e8739538f1238e853532b088594', 'to': '0x00417941e3e41795e233bd636f502be28488e012', 'value': 99645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1519c42a8629d6d40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:16:21.000Z'}}, {'blockNum': '0x636b46', 'uniqueId': '0xcd074e40d34ed58e5d103bf6cbead8a7245b6b597f6b93c6989470d10e40529e:log:17', 'hash': '0xcd074e40d34ed58e5d103bf6cbead8a7245b6b597f6b93c6989470d10e40529e', 'from': '0x619c5bd91f8f7f9ce77bed1410eec7f73bed74f6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:16:31.000Z'}}, {'blockNum': '0x636b62', 'uniqueId': '0x4664f10d260f709901e6523aebb8b3ccc56420926a2eaa68d0dc6c2febf98558:log:50', 'hash': '0x4664f10d260f709901e6523aebb8b3ccc56420926a2eaa68d0dc6c2febf98558', 'from': '0xd2fcb079763f256b4c174b1bbfc68573e8de0484', 'to': '0xd2c19daaf3b586490ad912954af8c3d73321efc2', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:25:09.000Z'}}, {'blockNum': '0x636b69', 'uniqueId': '0xa8ab0ae50756d21920a52f1ca62282dd9d5ff5b22e24996cff6558ea9a872bc0:log:10', 'hash': '0xa8ab0ae50756d21920a52f1ca62282dd9d5ff5b22e24996cff6558ea9a872bc0', 'from': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41816.4131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x08dadf4ed1991b16c000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:26:18.000Z'}}, {'blockNum': '0x636b69', 'uniqueId': '0xe4ba5a06f892dafc56aa5db0b9925783c259b5313e6c31728c1d5fe8c04cbff7:log:19', 'hash': '0xe4ba5a06f892dafc56aa5db0b9925783c259b5313e6c31728c1d5fe8c04cbff7', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 102714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x15c02318cde790a80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:26:18.000Z'}}, {'blockNum': '0x636b69', 'uniqueId': '0x9c5f858e1c9c94ea600e8f7608503df89cc6664fcec26bcb0783dcd4a9bb2e9a:log:20', 'hash': '0x9c5f858e1c9c94ea600e8f7608503df89cc6664fcec26bcb0783dcd4a9bb2e9a', 'from': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11362.334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0267f40f6cc63f430000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:26:18.000Z'}}, {'blockNum': '0x636b81', 'uniqueId': '0xd30d17be37a1615b73f055a58c9e6da61fb6d3ad8fdfbd291fb571eb2f838d24:log:69', 'hash': '0xd30d17be37a1615b73f055a58c9e6da61fb6d3ad8fdfbd291fb571eb2f838d24', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4857.771316978353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0107571e9b37603b2933', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:12.000Z'}}, {'blockNum': '0x636b81', 'uniqueId': '0xd30d17be37a1615b73f055a58c9e6da61fb6d3ad8fdfbd291fb571eb2f838d24:log:71', 'hash': '0xd30d17be37a1615b73f055a58c9e6da61fb6d3ad8fdfbd291fb571eb2f838d24', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x5179bc7b6e90719b17cea1feb302d1c5208a1bfa', 'value': 4857.771316978353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0107571e9b37603b2933', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:12.000Z'}}, {'blockNum': '0x636b81', 'uniqueId': '0xd30d17be37a1615b73f055a58c9e6da61fb6d3ad8fdfbd291fb571eb2f838d24:log:75', 'hash': '0xd30d17be37a1615b73f055a58c9e6da61fb6d3ad8fdfbd291fb571eb2f838d24', 'from': '0x5179bc7b6e90719b17cea1feb302d1c5208a1bfa', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4857.771316978353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0107571e9b37603b2933', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:12.000Z'}}, {'blockNum': '0x636b81', 'uniqueId': '0xd30d17be37a1615b73f055a58c9e6da61fb6d3ad8fdfbd291fb571eb2f838d24:log:77', 'hash': '0xd30d17be37a1615b73f055a58c9e6da61fb6d3ad8fdfbd291fb571eb2f838d24', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4857.771316978353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0107571e9b37603b2933', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:12.000Z'}}, {'blockNum': '0x636b85', 'uniqueId': '0x4aed11c6c4bab23c3f4ef6200382ecff9561e35841392687219f29c8fbd4589b:log:2', 'hash': '0x4aed11c6c4bab23c3f4ef6200382ecff9561e35841392687219f29c8fbd4589b', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 1812.627278094986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x624341b9b76ad69529', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:28.000Z'}}, {'blockNum': '0x636b85', 'uniqueId': '0x4aed11c6c4bab23c3f4ef6200382ecff9561e35841392687219f29c8fbd4589b:log:4', 'hash': '0x4aed11c6c4bab23c3f4ef6200382ecff9561e35841392687219f29c8fbd4589b', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 1812.627278094986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x624341b9b76ad69529', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:28.000Z'}}, {'blockNum': '0x636b85', 'uniqueId': '0x4aed11c6c4bab23c3f4ef6200382ecff9561e35841392687219f29c8fbd4589b:log:9', 'hash': '0x4aed11c6c4bab23c3f4ef6200382ecff9561e35841392687219f29c8fbd4589b', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1812.625465467708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x62433b49243dd1329f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:28.000Z'}}, {'blockNum': '0x636b85', 'uniqueId': '0x4aed11c6c4bab23c3f4ef6200382ecff9561e35841392687219f29c8fbd4589b:log:11', 'hash': '0x4aed11c6c4bab23c3f4ef6200382ecff9561e35841392687219f29c8fbd4589b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 1812.625465467708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x62433b49243dd1329f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:28.000Z'}}, {'blockNum': '0x636b8a', 'uniqueId': '0xed3234af51503df258ce77c47747add1fd07de6839bb95ed00b50b6f1bb50332:log:17', 'hash': '0xed3234af51503df258ce77c47747add1fd07de6839bb95ed00b50b6f1bb50332', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5448.2550100364915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012759ba198937558680', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:59.000Z'}}, {'blockNum': '0x636b8a', 'uniqueId': '0xed3234af51503df258ce77c47747add1fd07de6839bb95ed00b50b6f1bb50332:log:19', 'hash': '0xed3234af51503df258ce77c47747add1fd07de6839bb95ed00b50b6f1bb50332', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5448.2550100364915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012759ba198937558680', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:59.000Z'}}, {'blockNum': '0x636b8a', 'uniqueId': '0xed3234af51503df258ce77c47747add1fd07de6839bb95ed00b50b6f1bb50332:log:24', 'hash': '0xed3234af51503df258ce77c47747add1fd07de6839bb95ed00b50b6f1bb50332', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5448.249561781481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012759a6be607ed0ab74', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:59.000Z'}}, {'blockNum': '0x636b8a', 'uniqueId': '0xed3234af51503df258ce77c47747add1fd07de6839bb95ed00b50b6f1bb50332:log:26', 'hash': '0xed3234af51503df258ce77c47747add1fd07de6839bb95ed00b50b6f1bb50332', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5448.249561781481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012759a6be607ed0ab74', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:59.000Z'}}, {'blockNum': '0x636b9e', 'uniqueId': '0xcca51ac45d779cd4ec853f91aa28e8b117fac60644f02535e0d08f0422dda1c4:log:1', 'hash': '0xcca51ac45d779cd4ec853f91aa28e8b117fac60644f02535e0d08f0422dda1c4', 'from': '0x00417941e3e41795e233bd636f502be28488e012', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1519c42a8629d6d40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:36:06.000Z'}}, {'blockNum': '0x636b9e', 'uniqueId': '0xa2f9e608ce4ea57fb5647a339b02b52965a761ae1cad19c9a91a0f0c8bd8522a:log:2', 'hash': '0xa2f9e608ce4ea57fb5647a339b02b52965a761ae1cad19c9a91a0f0c8bd8522a', 'from': '0xd2c19daaf3b586490ad912954af8c3d73321efc2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:36:06.000Z'}}, {'blockNum': '0x636bc5', 'uniqueId': '0x17f712a179530358147b3836372ed8e70c056c28500ec2bb7c073feb7d846c87:log:75', 'hash': '0x17f712a179530358147b3836372ed8e70c056c28500ec2bb7c073feb7d846c87', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3687.3728171091448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc7e493d89f4dfb9e34', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:44:12.000Z'}}, {'blockNum': '0x636bc5', 'uniqueId': '0x17f712a179530358147b3836372ed8e70c056c28500ec2bb7c073feb7d846c87:log:77', 'hash': '0x17f712a179530358147b3836372ed8e70c056c28500ec2bb7c073feb7d846c87', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 3687.3728171091448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc7e493d89f4dfb9e34', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:44:12.000Z'}}, {'blockNum': '0x636bc5', 'uniqueId': '0xfd473f180996a7f4e61d71b3a29aa2bd1ecc78c627761ca2f58b4e5b9fe7bcdc:log:114', 'hash': '0xfd473f180996a7f4e61d71b3a29aa2bd1ecc78c627761ca2f58b4e5b9fe7bcdc', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2740.6755935059587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x949283ab927187f1c6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:44:12.000Z'}}, {'blockNum': '0x636bc5', 'uniqueId': '0xfd473f180996a7f4e61d71b3a29aa2bd1ecc78c627761ca2f58b4e5b9fe7bcdc:log:116', 'hash': '0xfd473f180996a7f4e61d71b3a29aa2bd1ecc78c627761ca2f58b4e5b9fe7bcdc', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2740.6755935059587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x949283ab927187f1c6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:44:12.000Z'}}, {'blockNum': '0x636bc5', 'uniqueId': '0xfd473f180996a7f4e61d71b3a29aa2bd1ecc78c627761ca2f58b4e5b9fe7bcdc:log:121', 'hash': '0xfd473f180996a7f4e61d71b3a29aa2bd1ecc78c627761ca2f58b4e5b9fe7bcdc', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2740.672852830365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x949279eef12e55e51e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:44:12.000Z'}}, {'blockNum': '0x636bc5', 'uniqueId': '0xfd473f180996a7f4e61d71b3a29aa2bd1ecc78c627761ca2f58b4e5b9fe7bcdc:log:123', 'hash': '0xfd473f180996a7f4e61d71b3a29aa2bd1ecc78c627761ca2f58b4e5b9fe7bcdc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 2740.672852830365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x949279eef12e55e51e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:44:12.000Z'}}, {'blockNum': '0x636bce', 'uniqueId': '0x83cd933deef1e01d12e1bdfd0c2470edacda6c4811a799dbd69b1a5d2c9d9bf4:log:29', 'hash': '0x83cd933deef1e01d12e1bdfd0c2470edacda6c4811a799dbd69b1a5d2c9d9bf4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5548.592430038614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012cca30396ae10f72af', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:45:57.000Z'}}, {'blockNum': '0x636bce', 'uniqueId': '0x83cd933deef1e01d12e1bdfd0c2470edacda6c4811a799dbd69b1a5d2c9d9bf4:log:31', 'hash': '0x83cd933deef1e01d12e1bdfd0c2470edacda6c4811a799dbd69b1a5d2c9d9bf4', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 5548.592430038614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012cca30396ae10f72af', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:45:57.000Z'}}, {'blockNum': '0x636bce', 'uniqueId': '0x83cd933deef1e01d12e1bdfd0c2470edacda6c4811a799dbd69b1a5d2c9d9bf4:log:35', 'hash': '0x83cd933deef1e01d12e1bdfd0c2470edacda6c4811a799dbd69b1a5d2c9d9bf4', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5548.592430038614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012cca30396ae10f72af', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:45:57.000Z'}}, {'blockNum': '0x636bce', 'uniqueId': '0x83cd933deef1e01d12e1bdfd0c2470edacda6c4811a799dbd69b1a5d2c9d9bf4:log:37', 'hash': '0x83cd933deef1e01d12e1bdfd0c2470edacda6c4811a799dbd69b1a5d2c9d9bf4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5548.592430038614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012cca30396ae10f72af', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:45:57.000Z'}}, {'blockNum': '0x636bd5', 'uniqueId': '0xe142bd65013f9c5be7763d4cbb71c9b53a8c982f5dfa54f64ac7a0faa8caa27d:log:14', 'hash': '0xe142bd65013f9c5be7763d4cbb71c9b53a8c982f5dfa54f64ac7a0faa8caa27d', 'from': '0x74db87efa4f6e4e4570bc66721530d13b3e83dff', 'to': '0xedff0da95f5bb5be580493d01fa7bc96fa2048f3', 'value': 33565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x071b8ff2a10222540000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:47:47.000Z'}}, {'blockNum': '0x636bf6', 'uniqueId': '0x2bdc73cd33bf70430a2082e53123a6929cf82cdb413a623e5674011cf5fc8dfd:log:0', 'hash': '0x2bdc73cd33bf70430a2082e53123a6929cf82cdb413a623e5674011cf5fc8dfd', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe9856510d52a7c97086d7d322b6c7375140769e9', 'value': 2361.11, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x7ffefbcb4d968f0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:56:34.000Z'}}, {'blockNum': '0x636bfe', 'uniqueId': '0x9a2d9943ecae70c1077e5730e51646e5d37142d63178568654438f0936392247:log:106', 'hash': '0x9a2d9943ecae70c1077e5730e51646e5d37142d63178568654438f0936392247', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5465.786391522817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01284d06141cd1a58ac8', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:58:56.000Z'}}, {'blockNum': '0x636bfe', 'uniqueId': '0x9a2d9943ecae70c1077e5730e51646e5d37142d63178568654438f0936392247:log:108', 'hash': '0x9a2d9943ecae70c1077e5730e51646e5d37142d63178568654438f0936392247', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5465.786391522817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01284d06141cd1a58ac8', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:58:56.000Z'}}, {'blockNum': '0x636bfe', 'uniqueId': '0x5d12a3022c0b46d91124fbb395d185e8c92b65340a163f745b0fd7115a04d8d7:log:113', 'hash': '0x5d12a3022c0b46d91124fbb395d185e8c92b65340a163f745b0fd7115a04d8d7', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5373.628665660785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01234e1410b6af66617b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:58:56.000Z'}}, {'blockNum': '0x636bfe', 'uniqueId': '0x5d12a3022c0b46d91124fbb395d185e8c92b65340a163f745b0fd7115a04d8d7:log:115', 'hash': '0x5d12a3022c0b46d91124fbb395d185e8c92b65340a163f745b0fd7115a04d8d7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5373.628665660785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01234e1410b6af66617b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:58:56.000Z'}}, {'blockNum': '0x636c0e', 'uniqueId': '0xd4e55d3ddaac5f4c7e459c63089e00d0e8347b9f2d69435c81fd50accaa850d0:log:2', 'hash': '0xd4e55d3ddaac5f4c7e459c63089e00d0e8347b9f2d69435c81fd50accaa850d0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 25357.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x055ea2011c34ffc60000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:03:06.000Z'}}, {'blockNum': '0x636c18', 'uniqueId': '0xf7053699979725a1fc2d7fec41f3270b7db8ed664b047390e2e107be7a97146c:log:22', 'hash': '0xf7053699979725a1fc2d7fec41f3270b7db8ed664b047390e2e107be7a97146c', 'from': '0x4f266f295bad85436ecea51e0ae2afe82b11553b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 1487.52029054455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x50a37daf07adc4c4ae', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:05:59.000Z'}}, {'blockNum': '0x636c18', 'uniqueId': '0xf7053699979725a1fc2d7fec41f3270b7db8ed664b047390e2e107be7a97146c:log:23', 'hash': '0xf7053699979725a1fc2d7fec41f3270b7db8ed664b047390e2e107be7a97146c', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 1487.52029054455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x50a37daf07adc4c4ae', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:05:59.000Z'}}, {'blockNum': '0x636c19', 'uniqueId': '0x24469a5c866458feb7ec17137214da06acac0fdddc98eb620c67be3857fe28ff:log:18', 'hash': '0x24469a5c866458feb7ec17137214da06acac0fdddc98eb620c67be3857fe28ff', 'from': '0xedff0da95f5bb5be580493d01fa7bc96fa2048f3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x071b8ff2a10222540000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:06:28.000Z'}}, {'blockNum': '0x636c23', 'uniqueId': '0x1a468fe50b66f410054a624b91c66bf40ece368a5c212d475c09bf2d8a162d75:log:1', 'hash': '0x1a468fe50b66f410054a624b91c66bf40ece368a5c212d475c09bf2d8a162d75', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xad0a2478ba25816365aa0e32d77aff92b9e34efc', 'value': 28517.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0609efd055cf3a260000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:08:37.000Z'}}, {'blockNum': '0x636c29', 'uniqueId': '0x7c797a1b9afdd1ab56645ca9bf79f52180e497f3f1919eaf4583c4491d35366c:log:88', 'hash': '0x7c797a1b9afdd1ab56645ca9bf79f52180e497f3f1919eaf4583c4491d35366c', 'from': '0x5faf79b4d9e49b6ac951db213ca7cf8074a82338', 'to': '0xa839be841af1d8d876e8b943a6670b4e39bfc459', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:09:37.000Z'}}, {'blockNum': '0x636c3d', 'uniqueId': '0xdb267251b0ddbfc33cfe3fb14810c0cfe9de6f60546136181d110be1dbe7f687:log:47', 'hash': '0xdb267251b0ddbfc33cfe3fb14810c0cfe9de6f60546136181d110be1dbe7f687', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 7333.44284938078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x018d8bf6b94431d700f0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:12:44.000Z'}}, {'blockNum': '0x636c3d', 'uniqueId': '0xdb267251b0ddbfc33cfe3fb14810c0cfe9de6f60546136181d110be1dbe7f687:log:51', 'hash': '0xdb267251b0ddbfc33cfe3fb14810c0cfe9de6f60546136181d110be1dbe7f687', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'value': 7333.44284938078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x018d8bf6b94431d700f0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:12:44.000Z'}}, {'blockNum': '0x636c40', 'uniqueId': '0xe22b10f27285f5cc04e16e79994750985a3f0046cd6c972c11fabd9fb909911b:log:9', 'hash': '0xe22b10f27285f5cc04e16e79994750985a3f0046cd6c972c11fabd9fb909911b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5528.682662900445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012bb5e285b119c161ef', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:13:19.000Z'}}, {'blockNum': '0x636c40', 'uniqueId': '0xe22b10f27285f5cc04e16e79994750985a3f0046cd6c972c11fabd9fb909911b:log:11', 'hash': '0xe22b10f27285f5cc04e16e79994750985a3f0046cd6c972c11fabd9fb909911b', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5528.682662900445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012bb5e285b119c161ef', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:13:19.000Z'}}, {'blockNum': '0x636c40', 'uniqueId': '0x57697d07813d58ac5a6da68e9c29d80572f6fbb1b762772c1b8c1217927ad180:log:16', 'hash': '0x57697d07813d58ac5a6da68e9c29d80572f6fbb1b762772c1b8c1217927ad180', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5528.677134217783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012bb5cee1625b8eaf11', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:13:19.000Z'}}, {'blockNum': '0x636c40', 'uniqueId': '0x57697d07813d58ac5a6da68e9c29d80572f6fbb1b762772c1b8c1217927ad180:log:18', 'hash': '0x57697d07813d58ac5a6da68e9c29d80572f6fbb1b762772c1b8c1217927ad180', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5528.677134217783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012bb5cee1625b8eaf11', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:13:19.000Z'}}, {'blockNum': '0x636c43', 'uniqueId': '0x314cd2843ef4e75b5bdb03fbaccb12abaa7270bdcd7185047e4331299afb5dd0:log:1', 'hash': '0x314cd2843ef4e75b5bdb03fbaccb12abaa7270bdcd7185047e4331299afb5dd0', 'from': '0x4903fe8eddf319abad3d6926aed1ac51841217d8', 'to': '0x439dd9d7148658fd0c182be9cf4ffb05210f8f3f', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:14:44.000Z'}}, {'blockNum': '0x636c4a', 'uniqueId': '0x2577d02951fa8ce61655f1db0612c735412bed907137a2eb50d1afdca2439444:log:5', 'hash': '0x2577d02951fa8ce61655f1db0612c735412bed907137a2eb50d1afdca2439444', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 33547.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x071a9d1623ba30fe0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:16:26.000Z'}}, {'blockNum': '0x636c61', 'uniqueId': '0x743214fb8aec2426ec5b1608d826a29540c2207fc9da8f35e0f5a110b14af542:log:4', 'hash': '0x743214fb8aec2426ec5b1608d826a29540c2207fc9da8f35e0f5a110b14af542', 'from': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 7333.44284938078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x018d8bf6b94431d700f0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:21:49.000Z'}}, {'blockNum': '0x636c61', 'uniqueId': '0x743214fb8aec2426ec5b1608d826a29540c2207fc9da8f35e0f5a110b14af542:log:6', 'hash': '0x743214fb8aec2426ec5b1608d826a29540c2207fc9da8f35e0f5a110b14af542', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 7333.44284938078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x018d8bf6b94431d700f0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:21:49.000Z'}}, {'blockNum': '0x636c65', 'uniqueId': '0xffa577ca52c0e8340dac46bd3edbca553382cfe58e23abc1043dbeb45c35b9a4:log:16', 'hash': '0xffa577ca52c0e8340dac46bd3edbca553382cfe58e23abc1043dbeb45c35b9a4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 3725331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0314de9921c271cc6c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:22:21.000Z'}}, {'blockNum': '0x636c6c', 'uniqueId': '0x260d7dd6352f694ad977e75e42c4298fb64fa8a8a76e09ed83e5c6d72a3e1194:log:75', 'hash': '0x260d7dd6352f694ad977e75e42c4298fb64fa8a8a76e09ed83e5c6d72a3e1194', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x5dcacc7ba7a2abca17fe23ef06c6450eb3e58a3a', 'value': 74970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0fe021c07fea9b280000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:24:14.000Z'}}, {'blockNum': '0x636c8a', 'uniqueId': '0xcbcec3a19d593d713372d86fad114edd2b2961f5d08be07d26b0f55e69f99018:log:38', 'hash': '0xcbcec3a19d593d713372d86fad114edd2b2961f5d08be07d26b0f55e69f99018', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5530.010444613603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012bc84fc02001c9a38d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:29:15.000Z'}}, {'blockNum': '0x636c8a', 'uniqueId': '0xcbcec3a19d593d713372d86fad114edd2b2961f5d08be07d26b0f55e69f99018:log:42', 'hash': '0xcbcec3a19d593d713372d86fad114edd2b2961f5d08be07d26b0f55e69f99018', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'value': 5530.010444613603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012bc84fc02001c9a38d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:29:15.000Z'}}, {'blockNum': '0x636c8a', 'uniqueId': '0xcbcec3a19d593d713372d86fad114edd2b2961f5d08be07d26b0f55e69f99018:log:43', 'hash': '0xcbcec3a19d593d713372d86fad114edd2b2961f5d08be07d26b0f55e69f99018', 'from': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5530.010444613603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012bc84fc02001c9a38d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:29:15.000Z'}}, {'blockNum': '0x636c8a', 'uniqueId': '0xcbcec3a19d593d713372d86fad114edd2b2961f5d08be07d26b0f55e69f99018:log:44', 'hash': '0xcbcec3a19d593d713372d86fad114edd2b2961f5d08be07d26b0f55e69f99018', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5530.010444613603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012bc84fc02001c9a38d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:29:15.000Z'}}, {'blockNum': '0x636ccc', 'uniqueId': '0xa7cf54498f0cecc0e614b9450f4c52cba35d73ce37b4beb6b9279729916e21b5:log:0', 'hash': '0xa7cf54498f0cecc0e614b9450f4c52cba35d73ce37b4beb6b9279729916e21b5', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xb1feccccaad6429899a9401dcb19f58a19d1afe6', 'value': 7995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b168e9dcacb00c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:43:45.000Z'}}, {'blockNum': '0x636ce0', 'uniqueId': '0xbac8443c4d1ea7d46302287c863f7eb3c5ad27fa6de83eace4f3461878f504fa:log:94', 'hash': '0xbac8443c4d1ea7d46302287c863f7eb3c5ad27fa6de83eace4f3461878f504fa', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3671.5587215618984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc7091ce4823c4bcc8c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:48:40.000Z'}}, {'blockNum': '0x636ce0', 'uniqueId': '0xbac8443c4d1ea7d46302287c863f7eb3c5ad27fa6de83eace4f3461878f504fa:log:98', 'hash': '0xbac8443c4d1ea7d46302287c863f7eb3c5ad27fa6de83eace4f3461878f504fa', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'value': 3671.5587215618984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc7091ce4823c4bcc8c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:48:40.000Z'}}, {'blockNum': '0x636ce2', 'uniqueId': '0xc4c0e9529d14c1f44a04c9ff395a9d1d131daced8d27e3cc5eee42deb71926f8:log:39', 'hash': '0xc4c0e9529d14c1f44a04c9ff395a9d1d131daced8d27e3cc5eee42deb71926f8', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 13419.342455192727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02d776c9804638d4757b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:49:02.000Z'}}, {'blockNum': '0x636ce2', 'uniqueId': '0xc4c0e9529d14c1f44a04c9ff395a9d1d131daced8d27e3cc5eee42deb71926f8:log:43', 'hash': '0xc4c0e9529d14c1f44a04c9ff395a9d1d131daced8d27e3cc5eee42deb71926f8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 13419.342455192727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02d776c9804638d4757b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:49:02.000Z'}}, {'blockNum': '0x636ce2', 'uniqueId': '0x29ea1456061c33ac0406735f1b934eec1b0ab65d13f500ea8aa7a2b2153d0bad:log:56', 'hash': '0x29ea1456061c33ac0406735f1b934eec1b0ab65d13f500ea8aa7a2b2153d0bad', 'from': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'to': '0x1a7fe01f4195b183b37bdf3e4d3c9b1f31de34f9', 'value': 3671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc7015bea355afc0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:49:02.000Z'}}, {'blockNum': '0x636cf0', 'uniqueId': '0x63806d76b81024d75662b1f3e0616150987e76ebff790d9d884c7537bc193247:log:50', 'hash': '0x63806d76b81024d75662b1f3e0616150987e76ebff790d9d884c7537bc193247', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 14864.249495713068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0325cae6822e94a00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:52:18.000Z'}}, {'blockNum': '0x636d2a', 'uniqueId': '0x6e19a5fe2b25d2ac833ef46337b485135a6344ca69180cdb02c56208f43557ce:log:20', 'hash': '0x6e19a5fe2b25d2ac833ef46337b485135a6344ca69180cdb02c56208f43557ce', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14864.249495713068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0325cae6822e94a00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:06:13.000Z'}}, {'blockNum': '0x636d36', 'uniqueId': '0x232a95ad309d67883a03475f695d79ab9acc5f03e1edbbd3c559215d29ab85f0:log:1', 'hash': '0x232a95ad309d67883a03475f695d79ab9acc5f03e1edbbd3c559215d29ab85f0', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 35105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x076f0bbdb1bd17e40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:08:25.000Z'}}, {'blockNum': '0x636d46', 'uniqueId': '0xe5105cfb4aa3da94ddd15617f212211a5c6e21a6b3dfaa34d2479ed0693ca7eb:log:7', 'hash': '0xe5105cfb4aa3da94ddd15617f212211a5c6e21a6b3dfaa34d2479ed0693ca7eb', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 82482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x11775bb1a7a279880000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:13:02.000Z'}}, {'blockNum': '0x636d48', 'uniqueId': '0x65b13ce9b74ce8555d9c935569d1152adc532a0875870d9369cc567072aa3f18:log:81', 'hash': '0x65b13ce9b74ce8555d9c935569d1152adc532a0875870d9369cc567072aa3f18', 'from': '0xd4da6bb26cd1de48333ba22831794c1679cb6f9e', 'to': '0xc9c0d8fc0ee0cb828677cf3bff8c2df27e87345b', 'value': 416.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x168e68a275f0490000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:13:41.000Z'}}, {'blockNum': '0x636d4b', 'uniqueId': '0xe27c8c910e843a5f58885ed99f1e32ea0aa99b172c2566fec1a2a4a65b7436b2:log:0', 'hash': '0xe27c8c910e843a5f58885ed99f1e32ea0aa99b172c2566fec1a2a4a65b7436b2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc9d9f3fb43b1f84ebce44e1ae945e705a072f59c', 'value': 1402.07, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x4c01a14483c7ef0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:14:12.000Z'}}, {'blockNum': '0x636d4d', 'uniqueId': '0x268cea236280baa13e65b58cec167e66c4393f8b0340676c613af7e7580ceec7:log:17', 'hash': '0x268cea236280baa13e65b58cec167e66c4393f8b0340676c613af7e7580ceec7', 'from': '0xf331eaf4825981f8f95e6cf8764e3bef44761502', 'to': '0xed4f15c14a9086c2d904f50d6ee1e75881313467', 'value': 2870, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x9b954042169b180000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:15:11.000Z'}}, {'blockNum': '0x636d5c', 'uniqueId': '0x61468dc89779704dddf51333872abeea05add4b5dbe1b7cb43fa23aded0e0a82:log:22', 'hash': '0x61468dc89779704dddf51333872abeea05add4b5dbe1b7cb43fa23aded0e0a82', 'from': '0x82c5ed10f9f4c1f0e5e36fc0a89c56f4331bd104', 'to': '0x2fef97b013d5af8394428a6ffe16a8543be57dab', 'value': 4075.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xdcf1b3240413920000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:19:33.000Z'}}, {'blockNum': '0x636d78', 'uniqueId': '0xa412caa99fb09d354287f66214729403045430e280cfdb0d70a849c14caa6beb:log:8', 'hash': '0xa412caa99fb09d354287f66214729403045430e280cfdb0d70a849c14caa6beb', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 82482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x11775bb1a7a279880000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:26:09.000Z'}}, {'blockNum': '0x636d78', 'uniqueId': '0xb6999b6f2bac647f7470ff91543568dcfcb2fd5d9bfedf6f3d0cb07676cae4d8:log:9', 'hash': '0xb6999b6f2bac647f7470ff91543568dcfcb2fd5d9bfedf6f3d0cb07676cae4d8', 'from': '0xed4f15c14a9086c2d904f50d6ee1e75881313467', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2870, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x9b954042169b180000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:26:09.000Z'}}, {'blockNum': '0x636d78', 'uniqueId': '0x940c57360800847ae1a33530ef7bc2ba50036b4d910e562c0549277ec4526132:log:10', 'hash': '0x940c57360800847ae1a33530ef7bc2ba50036b4d910e562c0549277ec4526132', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x076f0bbdb1bd17e40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:26:09.000Z'}}, {'blockNum': '0x636d97', 'uniqueId': '0x55da69a8c26e111a4e83ab7f68354b9284a5a09bed62c7608d2440a1c25a42e4:log:2', 'hash': '0x55da69a8c26e111a4e83ab7f68354b9284a5a09bed62c7608d2440a1c25a42e4', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x07878b8e03532ec7ef01388acb16677ca3928b43', 'value': 9210, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01f3466cfb5423a80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:35:14.000Z'}}, {'blockNum': '0x636d9b', 'uniqueId': '0x1889e2c8f9a0c7353a431cd1f19d70c0ab37357598fb481cf33b247d5d42cfaa:log:7', 'hash': '0x1889e2c8f9a0c7353a431cd1f19d70c0ab37357598fb481cf33b247d5d42cfaa', 'from': '0x2fef97b013d5af8394428a6ffe16a8543be57dab', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4075.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xdcf1b3240413920000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:36:12.000Z'}}, {'blockNum': '0x636dac', 'uniqueId': '0x61d77e5eb779773e2add230f401ee3afe636eacc00bbf8c6e29beb752ac7f3c0:log:46', 'hash': '0x61d77e5eb779773e2add230f401ee3afe636eacc00bbf8c6e29beb752ac7f3c0', 'from': '0xb9a775424234f6b267c942c0d5b936d9ef9eaf19', 'to': '0xc86e569ae931ad13c977c03a9d36b7ba645a3d9c', 'value': 305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1088b9ac0a6e240000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:39:15.000Z'}}, {'blockNum': '0x636dcd', 'uniqueId': '0xacc3d284e06a5840ca6c8e58626a93fae89a5c7069115e51bb4ee6f284b04196:log:5', 'hash': '0xacc3d284e06a5840ca6c8e58626a93fae89a5c7069115e51bb4ee6f284b04196', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9a2d77995e7ae1a134236c7e1222b3c585a7a969', 'value': 8597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01d20b577f2451340000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:46:24.000Z'}}, {'blockNum': '0x636dcd', 'uniqueId': '0x60e7a766a33c48003f0d24f3022cb43625165c6a1cd99bf17615a6d293efd884:log:13', 'hash': '0x60e7a766a33c48003f0d24f3022cb43625165c6a1cd99bf17615a6d293efd884', 'from': '0x07878b8e03532ec7ef01388acb16677ca3928b43', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9210, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01f3466cfb5423a80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:46:24.000Z'}}, {'blockNum': '0x636df1', 'uniqueId': '0x2c848498215930032a64eafc1f94ebbef12986292fe28fbc58d5b0d76cda2abf:log:0', 'hash': '0x2c848498215930032a64eafc1f94ebbef12986292fe28fbc58d5b0d76cda2abf', 'from': '0xc86e569ae931ad13c977c03a9d36b7ba645a3d9c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3e8116df24e9640000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:56:02.000Z'}}, {'blockNum': '0x636e07', 'uniqueId': '0x4859d053a304334ad79ab7acb334d09e496697b00450e30d437e0bf01c0809f1:log:58', 'hash': '0x4859d053a304334ad79ab7acb334d09e496697b00450e30d437e0bf01c0809f1', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 1830.0529300916526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x63351613e1e3b8ea5a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:01:57.000Z'}}, {'blockNum': '0x636e07', 'uniqueId': '0x4859d053a304334ad79ab7acb334d09e496697b00450e30d437e0bf01c0809f1:log:60', 'hash': '0x4859d053a304334ad79ab7acb334d09e496697b00450e30d437e0bf01c0809f1', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 1830.0529300916526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x63351613e1e3b8ea5a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:01:57.000Z'}}, {'blockNum': '0x636e09', 'uniqueId': '0x85b3fa77ef12f0cfaaa2fe8d8b5ec11a3732b07c8bbd982071cbeb56c4713f20:log:27', 'hash': '0x85b3fa77ef12f0cfaaa2fe8d8b5ec11a3732b07c8bbd982071cbeb56c4713f20', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1830.0511000387226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x63350f93757ce76fd5', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:02:31.000Z'}}, {'blockNum': '0x636e09', 'uniqueId': '0x85b3fa77ef12f0cfaaa2fe8d8b5ec11a3732b07c8bbd982071cbeb56c4713f20:log:29', 'hash': '0x85b3fa77ef12f0cfaaa2fe8d8b5ec11a3732b07c8bbd982071cbeb56c4713f20', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 1830.0511000387226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x63350f93757ce76fd5', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:02:31.000Z'}}, {'blockNum': '0x636e18', 'uniqueId': '0x1721f7d4d4255fc6d49dfb642020fff47e68d3fd362751cff2ab742681b9e0b1:log:5', 'hash': '0x1721f7d4d4255fc6d49dfb642020fff47e68d3fd362751cff2ab742681b9e0b1', 'from': '0xb4ce1db7ae219e04e7ac7884416d005ce06791a7', 'to': '0xd05dba127ceffe7ecc04eacc9f2867fa15cf4152', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:07:19.000Z'}}, {'blockNum': '0x636e1c', 'uniqueId': '0xdc88fe803d0590b0506812d3584346e7d70062b425c15a396e34194801d1badf:log:10', 'hash': '0xdc88fe803d0590b0506812d3584346e7d70062b425c15a396e34194801d1badf', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 33661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0720c4372460e7d40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:08:26.000Z'}}, {'blockNum': '0x636e20', 'uniqueId': '0x18b4fa72c452d6085ae731c22b40a3ec35bca039c2cfaad39d40d6849d16b9a3:log:37', 'hash': '0x18b4fa72c452d6085ae731c22b40a3ec35bca039c2cfaad39d40d6849d16b9a3', 'from': '0x2492a8400813764952c89a88232f1221858d9c10', 'to': '0xed20811012ab3010cdc78269d41f7176a2ed173b', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:08:55.000Z'}}, {'blockNum': '0x636e29', 'uniqueId': '0x186b2837c1f328f5e8b5c5b1bca2ae0a7ab2d4cabf8082cea56dc410315b2eb7:log:0', 'hash': '0x186b2837c1f328f5e8b5c5b1bca2ae0a7ab2d4cabf8082cea56dc410315b2eb7', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:10:06.000Z'}}, {'blockNum': '0x636e6a', 'uniqueId': '0x27bf30d9133eb1793b543c704c6345fd7c0a4cf35d2a84624b83ddc1f2a4758e:log:1', 'hash': '0x27bf30d9133eb1793b543c704c6345fd7c0a4cf35d2a84624b83ddc1f2a4758e', 'from': '0xed20811012ab3010cdc78269d41f7176a2ed173b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:26:15.000Z'}}, {'blockNum': '0x636e6a', 'uniqueId': '0x7a6e0ad3d0e764b6bdd769e84523cc5f01f5a5db6840c2c707a41f4c98d12700:log:2', 'hash': '0x7a6e0ad3d0e764b6bdd769e84523cc5f01f5a5db6840c2c707a41f4c98d12700', 'from': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:26:15.000Z'}}, {'blockNum': '0x636e6a', 'uniqueId': '0x048f572092af2be8715df11f92d17353795ab891916c2277691c4ab3980e1c54:log:3', 'hash': '0x048f572092af2be8715df11f92d17353795ab891916c2277691c4ab3980e1c54', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0720c4372460e7d40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:26:15.000Z'}}, {'blockNum': '0x636e71', 'uniqueId': '0x03ab1c8c9f4f5c9f5e50e098d30ae673206a10a152b07c0298d02adaf58fb316:log:33', 'hash': '0x03ab1c8c9f4f5c9f5e50e098d30ae673206a10a152b07c0298d02adaf58fb316', 'from': '0x0d6b5a54f940bf3d52e438cab785981aaefdf40c', 'to': '0x3679b3fff2033d60684c51bc54ee1e371c62a77b', 'value': 11249.89473684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0261dba6eaa8bccbd000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:27:37.000Z'}}, {'blockNum': '0x636e78', 'uniqueId': '0x8449e0d61231ee964cfd77a4e068c6f12035043a9cca73329c17915f3236c9ef:log:130', 'hash': '0x8449e0d61231ee964cfd77a4e068c6f12035043a9cca73329c17915f3236c9ef', 'from': '0x3679b3fff2033d60684c51bc54ee1e371c62a77b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 11249.89473684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0261dba6eaa8bccbd000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:29:00.000Z'}}, {'blockNum': '0x636e78', 'uniqueId': '0x8449e0d61231ee964cfd77a4e068c6f12035043a9cca73329c17915f3236c9ef:log:132', 'hash': '0x8449e0d61231ee964cfd77a4e068c6f12035043a9cca73329c17915f3236c9ef', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 11249.89473684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0261dba6eaa8bccbd000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:29:00.000Z'}}, {'blockNum': '0x636e7a', 'uniqueId': '0x684eb2a55f4d98477d23d1b7340763cd6599ef0ff1f4707274a4c3475b0827dc:log:23', 'hash': '0x684eb2a55f4d98477d23d1b7340763cd6599ef0ff1f4707274a4c3475b0827dc', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3666.2175759683073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc6befd54e3d4a93dac', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:29:04.000Z'}}, {'blockNum': '0x636e7a', 'uniqueId': '0x684eb2a55f4d98477d23d1b7340763cd6599ef0ff1f4707274a4c3475b0827dc:log:26', 'hash': '0x684eb2a55f4d98477d23d1b7340763cd6599ef0ff1f4707274a4c3475b0827dc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 3666.2175759683073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc6befd54e3d4a93dac', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:29:04.000Z'}}, {'blockNum': '0x636e7c', 'uniqueId': '0x49f88c24516cad9b02a1f3c4114a0476a02c54df6bf81914b70489ea50739fb7:log:72', 'hash': '0x49f88c24516cad9b02a1f3c4114a0476a02c54df6bf81914b70489ea50739fb7', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5469.653096520406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012882af5fd23a270da1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:29:56.000Z'}}, {'blockNum': '0x636e7c', 'uniqueId': '0x49f88c24516cad9b02a1f3c4114a0476a02c54df6bf81914b70489ea50739fb7:log:76', 'hash': '0x49f88c24516cad9b02a1f3c4114a0476a02c54df6bf81914b70489ea50739fb7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'value': 5469.653096520406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012882af5fd23a270da1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:29:56.000Z'}}, {'blockNum': '0x636e7c', 'uniqueId': '0x49f88c24516cad9b02a1f3c4114a0476a02c54df6bf81914b70489ea50739fb7:log:77', 'hash': '0x49f88c24516cad9b02a1f3c4114a0476a02c54df6bf81914b70489ea50739fb7', 'from': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5469.653096520406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012882af5fd23a270da1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:29:56.000Z'}}, {'blockNum': '0x636e7c', 'uniqueId': '0x49f88c24516cad9b02a1f3c4114a0476a02c54df6bf81914b70489ea50739fb7:log:78', 'hash': '0x49f88c24516cad9b02a1f3c4114a0476a02c54df6bf81914b70489ea50739fb7', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5469.653096520406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012882af5fd23a270da1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:29:56.000Z'}}, {'blockNum': '0x636e80', 'uniqueId': '0x92c7e80c091312f413ee173ab991085e6671648cf35e0895c4eefc03e2f27cb5:log:49', 'hash': '0x92c7e80c091312f413ee173ab991085e6671648cf35e0895c4eefc03e2f27cb5', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1794.1681478058827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x614315b884ea2c5b18', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:30:46.000Z'}}, {'blockNum': '0x636e80', 'uniqueId': '0x92c7e80c091312f413ee173ab991085e6671648cf35e0895c4eefc03e2f27cb5:log:53', 'hash': '0x92c7e80c091312f413ee173ab991085e6671648cf35e0895c4eefc03e2f27cb5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 1794.1681478058827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x614315b884ea2c5b18', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:30:46.000Z'}}, {'blockNum': '0x636e80', 'uniqueId': '0x92c7e80c091312f413ee173ab991085e6671648cf35e0895c4eefc03e2f27cb5:log:54', 'hash': '0x92c7e80c091312f413ee173ab991085e6671648cf35e0895c4eefc03e2f27cb5', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 1805.452341762389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x61dfaf3b22ec5a9785', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:30:46.000Z'}}, {'blockNum': '0x636e80', 'uniqueId': '0x92c7e80c091312f413ee173ab991085e6671648cf35e0895c4eefc03e2f27cb5:log:55', 'hash': '0x92c7e80c091312f413ee173ab991085e6671648cf35e0895c4eefc03e2f27cb5', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 1805.452341762389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x61dfaf3b22ec5a9785', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:30:46.000Z'}}, {'blockNum': '0x636e81', 'uniqueId': '0xc6c1fddfa90bd5378fefa41e43771d2fa907116ab6bb00d3a97e99bcb1d29bc3:log:7', 'hash': '0xc6c1fddfa90bd5378fefa41e43771d2fa907116ab6bb00d3a97e99bcb1d29bc3', 'from': '0xa30ec0175bd809b0f50a2f75a8c385c190ca4802', 'to': '0x222b43114bdcfb162ce40eb9e7d22c4a138fe9ac', 'value': 1336.5478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x487453a6c429d58000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:30:57.000Z'}}, {'blockNum': '0x636e83', 'uniqueId': '0x611cd6f1bb3b6163a75cde6517ff1cf39a8e11f1a984ccd3f46b8a0d4f6ce15f:log:17', 'hash': '0x611cd6f1bb3b6163a75cde6517ff1cf39a8e11f1a984ccd3f46b8a0d4f6ce15f', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5400.870909093174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0124c823f4c79fb3aba7', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:31:19.000Z'}}, {'blockNum': '0x636e83', 'uniqueId': '0x611cd6f1bb3b6163a75cde6517ff1cf39a8e11f1a984ccd3f46b8a0d4f6ce15f:log:21', 'hash': '0x611cd6f1bb3b6163a75cde6517ff1cf39a8e11f1a984ccd3f46b8a0d4f6ce15f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5400.870909093174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0124c823f4c79fb3aba7', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:31:19.000Z'}}, {'blockNum': '0x636e83', 'uniqueId': '0x611cd6f1bb3b6163a75cde6517ff1cf39a8e11f1a984ccd3f46b8a0d4f6ce15f:log:22', 'hash': '0x611cd6f1bb3b6163a75cde6517ff1cf39a8e11f1a984ccd3f46b8a0d4f6ce15f', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5400.3434741339415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0124c0d2217a947c52eb', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:31:19.000Z'}}, {'blockNum': '0x636e83', 'uniqueId': '0x611cd6f1bb3b6163a75cde6517ff1cf39a8e11f1a984ccd3f46b8a0d4f6ce15f:log:23', 'hash': '0x611cd6f1bb3b6163a75cde6517ff1cf39a8e11f1a984ccd3f46b8a0d4f6ce15f', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5400.3434741339415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0124c0d2217a947c52eb', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:31:19.000Z'}}, {'blockNum': '0x636e8c', 'uniqueId': '0xb380abf21a4bf07f047ff25ad8638c41018282e8bb00c842ff64bd75d2d278da:log:14', 'hash': '0xb380abf21a4bf07f047ff25ad8638c41018282e8bb00c842ff64bd75d2d278da', 'from': '0x222b43114bdcfb162ce40eb9e7d22c4a138fe9ac', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 1336.5478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x487453a6c429d58000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:33:29.000Z'}}, {'blockNum': '0x636e8c', 'uniqueId': '0x5d3cae3553f501535c9a8cea4b8ad0c4a24e349fe46ca6eb3d2677db4ee49b60:log:63', 'hash': '0x5d3cae3553f501535c9a8cea4b8ad0c4a24e349fe46ca6eb3d2677db4ee49b60', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5389.449440569976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012429a2bfabe523166c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:33:29.000Z'}}, {'blockNum': '0x636e8c', 'uniqueId': '0x5d3cae3553f501535c9a8cea4b8ad0c4a24e349fe46ca6eb3d2677db4ee49b60:log:67', 'hash': '0x5d3cae3553f501535c9a8cea4b8ad0c4a24e349fe46ca6eb3d2677db4ee49b60', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'value': 5389.449440569976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012429a2bfabe523166c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:33:29.000Z'}}, {'blockNum': '0x636e8c', 'uniqueId': '0x5d3cae3553f501535c9a8cea4b8ad0c4a24e349fe46ca6eb3d2677db4ee49b60:log:68', 'hash': '0x5d3cae3553f501535c9a8cea4b8ad0c4a24e349fe46ca6eb3d2677db4ee49b60', 'from': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5389.449440569976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012429a2bfabe523166c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:33:29.000Z'}}, {'blockNum': '0x636e8c', 'uniqueId': '0x5d3cae3553f501535c9a8cea4b8ad0c4a24e349fe46ca6eb3d2677db4ee49b60:log:69', 'hash': '0x5d3cae3553f501535c9a8cea4b8ad0c4a24e349fe46ca6eb3d2677db4ee49b60', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 5389.449440569976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012429a2bfabe523166c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:33:29.000Z'}}, {'blockNum': '0x636e90', 'uniqueId': '0x8b60f67f111467f23b4b589eee9a69a76d66eb6977c82a9126122dabeee6a2fc:log:91', 'hash': '0x8b60f67f111467f23b4b589eee9a69a76d66eb6977c82a9126122dabeee6a2fc', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3574.3588084966614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc1c4316e9027fc4bd6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:34:13.000Z'}}, {'blockNum': '0x636e90', 'uniqueId': '0x8b60f67f111467f23b4b589eee9a69a76d66eb6977c82a9126122dabeee6a2fc:log:94', 'hash': '0x8b60f67f111467f23b4b589eee9a69a76d66eb6977c82a9126122dabeee6a2fc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 3574.3588084966614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc1c4316e9027fc4bd6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:34:13.000Z'}}, {'blockNum': '0x636ea1', 'uniqueId': '0xb84c18c22eb8e1fed45df2b934a644e99d6124d20fe805bfbd438edeb3dfcfda:log:21', 'hash': '0xb84c18c22eb8e1fed45df2b934a644e99d6124d20fe805bfbd438edeb3dfcfda', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2657.27788431957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x900d237ced51887a6c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:37:38.000Z'}}, {'blockNum': '0x636ea1', 'uniqueId': '0xb84c18c22eb8e1fed45df2b934a644e99d6124d20fe805bfbd438edeb3dfcfda:log:25', 'hash': '0xb84c18c22eb8e1fed45df2b934a644e99d6124d20fe805bfbd438edeb3dfcfda', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2657.27788431957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x900d237ced51887a6c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:37:38.000Z'}}, {'blockNum': '0x636ea1', 'uniqueId': '0xb84c18c22eb8e1fed45df2b934a644e99d6124d20fe805bfbd438edeb3dfcfda:log:26', 'hash': '0xb84c18c22eb8e1fed45df2b934a644e99d6124d20fe805bfbd438edeb3dfcfda', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2657.0713281041567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x900a45a724bba65433', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:37:38.000Z'}}, {'blockNum': '0x636ea1', 'uniqueId': '0xb84c18c22eb8e1fed45df2b934a644e99d6124d20fe805bfbd438edeb3dfcfda:log:27', 'hash': '0xb84c18c22eb8e1fed45df2b934a644e99d6124d20fe805bfbd438edeb3dfcfda', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2657.0713281041567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x900a45a724bba65433', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:37:38.000Z'}}, {'blockNum': '0x636ea9', 'uniqueId': '0x0e94ca929c0f661b5b27a335db02b684f23df179495a58552f710b453b3a9848:log:3', 'hash': '0x0e94ca929c0f661b5b27a335db02b684f23df179495a58552f710b453b3a9848', 'from': '0x7b40d5c17aab371a6ed5ac622ea232b590f2a31b', 'to': '0x2aaa43ee77d45b128869b2e2a4ea71ddfbc45fd2', 'value': 10106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0223d8ec701e01a80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:38:40.000Z'}}, {'blockNum': '0x636ebf', 'uniqueId': '0x9fffb3dfe0e3421a9e0c3793d2abaacd1e211d9ffe46935fc9e0062ad00ddf89:log:16', 'hash': '0x9fffb3dfe0e3421a9e0c3793d2abaacd1e211d9ffe46935fc9e0062ad00ddf89', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3615.1344974692697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc3fa11c7a5141e7b77', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:43:33.000Z'}}, {'blockNum': '0x636ebf', 'uniqueId': '0x9fffb3dfe0e3421a9e0c3793d2abaacd1e211d9ffe46935fc9e0062ad00ddf89:log:18', 'hash': '0x9fffb3dfe0e3421a9e0c3793d2abaacd1e211d9ffe46935fc9e0062ad00ddf89', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 3615.1344974692697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc3fa11c7a5141e7b77', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:43:33.000Z'}}, {'blockNum': '0x636ecd', 'uniqueId': '0xf7579e45349973a5856dbebd7b125346021e95a50b5d313d481e8c4961aee17b:log:136', 'hash': '0xf7579e45349973a5856dbebd7b125346021e95a50b5d313d481e8c4961aee17b', 'from': '0xec0c666acd059e2bbf5dd055f1a282bf0ebf16fc', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:47:18.000Z'}}, {'blockNum': '0x636ecd', 'uniqueId': '0xf7579e45349973a5856dbebd7b125346021e95a50b5d313d481e8c4961aee17b:log:137', 'hash': '0xf7579e45349973a5856dbebd7b125346021e95a50b5d313d481e8c4961aee17b', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:47:18.000Z'}}, {'blockNum': '0x636ed1', 'uniqueId': '0x23967705751f537ec7c254a82aafc9ae0c330c36b985eb62daa636cb2dedc5de:log:0', 'hash': '0x23967705751f537ec7c254a82aafc9ae0c330c36b985eb62daa636cb2dedc5de', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 30844.228125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x068811a72bf689d2d000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:48:02.000Z'}}, {'blockNum': '0x636ed1', 'uniqueId': '0x1c7684a7efd2c258e993cd955d48df19adeb9e6c764e7b8a0058ff062a05258e:log:18', 'hash': '0x1c7684a7efd2c258e993cd955d48df19adeb9e6c764e7b8a0058ff062a05258e', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3637.8782157148053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc535b3b2e344d8025f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:48:02.000Z'}}, {'blockNum': '0x636ed1', 'uniqueId': '0x1c7684a7efd2c258e993cd955d48df19adeb9e6c764e7b8a0058ff062a05258e:log:20', 'hash': '0x1c7684a7efd2c258e993cd955d48df19adeb9e6c764e7b8a0058ff062a05258e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 3637.8782157148053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc535b3b2e344d8025f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:48:02.000Z'}}, {'blockNum': '0x636ed9', 'uniqueId': '0x12fcceedc4e4962b7cd64962defbe9239060f8901e500e23112f0a1700322bb4:log:19', 'hash': '0x12fcceedc4e4962b7cd64962defbe9239060f8901e500e23112f0a1700322bb4', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 9110.049600627519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01eddb55d4a8c8889f85', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:49:42.000Z'}}, {'blockNum': '0x636ed9', 'uniqueId': '0x12fcceedc4e4962b7cd64962defbe9239060f8901e500e23112f0a1700322bb4:log:21', 'hash': '0x12fcceedc4e4962b7cd64962defbe9239060f8901e500e23112f0a1700322bb4', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'value': 9110.049600627519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01eddb55d4a8c8889f85', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:49:42.000Z'}}, {'blockNum': '0x636ed9', 'uniqueId': '0x12fcceedc4e4962b7cd64962defbe9239060f8901e500e23112f0a1700322bb4:log:25', 'hash': '0x12fcceedc4e4962b7cd64962defbe9239060f8901e500e23112f0a1700322bb4', 'from': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 9110.049600627519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01eddb55d4a8c8889f85', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:49:42.000Z'}}, {'blockNum': '0x636ed9', 'uniqueId': '0x12fcceedc4e4962b7cd64962defbe9239060f8901e500e23112f0a1700322bb4:log:27', 'hash': '0x12fcceedc4e4962b7cd64962defbe9239060f8901e500e23112f0a1700322bb4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 9110.049600627519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01eddb55d4a8c8889f85', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:49:42.000Z'}}, {'blockNum': '0x636edb', 'uniqueId': '0x45a96d03b5290d683fd4467d6f508f8a5b52c1933b94754e6ef570a796b49463:log:55', 'hash': '0x45a96d03b5290d683fd4467d6f508f8a5b52c1933b94754e6ef570a796b49463', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5448.326392908896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01275ab7b3e1581a48ca', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:49:49.000Z'}}, {'blockNum': '0x636edb', 'uniqueId': '0x45a96d03b5290d683fd4467d6f508f8a5b52c1933b94754e6ef570a796b49463:log:57', 'hash': '0x45a96d03b5290d683fd4467d6f508f8a5b52c1933b94754e6ef570a796b49463', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5448.326392908896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01275ab7b3e1581a48ca', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:49:49.000Z'}}, {'blockNum': '0x636edb', 'uniqueId': '0x2c8b99d2b89efbc8166e2a2986df8c7afbc55777112f3ebca72955df93524765:log:62', 'hash': '0x2c8b99d2b89efbc8166e2a2986df8c7afbc55777112f3ebca72955df93524765', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5419.524322253843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0125cb02313829f634ca', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:49:49.000Z'}}, {'blockNum': '0x636edb', 'uniqueId': '0x2c8b99d2b89efbc8166e2a2986df8c7afbc55777112f3ebca72955df93524765:log:64', 'hash': '0x2c8b99d2b89efbc8166e2a2986df8c7afbc55777112f3ebca72955df93524765', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5419.524322253843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0125cb02313829f634ca', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:49:49.000Z'}}, {'blockNum': '0x636f27', 'uniqueId': '0x64593d403027871631ec8b865c91745531cec9752b445f5e8ffe7f7e46bcace3:log:45', 'hash': '0x64593d403027871631ec8b865c91745531cec9752b445f5e8ffe7f7e46bcace3', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4599.819615764099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf95b5211a60ce5a3d6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:06:30.000Z'}}, {'blockNum': '0x636f27', 'uniqueId': '0x64593d403027871631ec8b865c91745531cec9752b445f5e8ffe7f7e46bcace3:log:47', 'hash': '0x64593d403027871631ec8b865c91745531cec9752b445f5e8ffe7f7e46bcace3', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 4599.819615764099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf95b5211a60ce5a3d6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:06:30.000Z'}}, {'blockNum': '0x636f27', 'uniqueId': '0x64593d403027871631ec8b865c91745531cec9752b445f5e8ffe7f7e46bcace3:log:51', 'hash': '0x64593d403027871631ec8b865c91745531cec9752b445f5e8ffe7f7e46bcace3', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4599.819615764099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf95b5211a60ce5a3d6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:06:30.000Z'}}, {'blockNum': '0x636f27', 'uniqueId': '0x64593d403027871631ec8b865c91745531cec9752b445f5e8ffe7f7e46bcace3:log:53', 'hash': '0x64593d403027871631ec8b865c91745531cec9752b445f5e8ffe7f7e46bcace3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4599.819615764099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf95b5211a60ce5a3d6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:06:30.000Z'}}, {'blockNum': '0x636f2b', 'uniqueId': '0x4f036f6bb898d336ceef84402dcdd4184e7944637559c318a03f37b365d5aa59:log:8', 'hash': '0x4f036f6bb898d336ceef84402dcdd4184e7944637559c318a03f37b365d5aa59', 'from': '0x2aaa43ee77d45b128869b2e2a4ea71ddfbc45fd2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0223d8ec701e01a80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:07:12.000Z'}}, {'blockNum': '0x636f31', 'uniqueId': '0xf2f3d67ef2ed6b55310f4e385a4f0221d728d487dd03ba819780905f99cecd86:log:8', 'hash': '0xf2f3d67ef2ed6b55310f4e385a4f0221d728d487dd03ba819780905f99cecd86', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9fdf2359732db724cb7aff0e3458b21e539c3cc4', 'value': 1720.356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x5d42bc4b29cbea0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:07:43.000Z'}}, {'blockNum': '0x636f38', 'uniqueId': '0x6b56ff51dcb1317657156dcf6be3b3a6d213a457e845a7dc201378e15c68a26a:log:14', 'hash': '0x6b56ff51dcb1317657156dcf6be3b3a6d213a457e845a7dc201378e15c68a26a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xad0a2478ba25816365aa0e32d77aff92b9e34efc', 'value': 28488.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x060857ce8d93cdaa0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:10:49.000Z'}}, {'blockNum': '0x636f45', 'uniqueId': '0x4ba1a92f6477961abc66c1e18e4a1478dfc31e361a736286bfe16912ccc04eb7:log:11', 'hash': '0x4ba1a92f6477961abc66c1e18e4a1478dfc31e361a736286bfe16912ccc04eb7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x423d9a1d45a5204523c7bea0870452452bf7510e', 'value': 752.32500001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x28c89b518539cc6400', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:14:55.000Z'}}, {'blockNum': '0x636f61', 'uniqueId': '0x778e522457fb02357214306e0941b75de16e9e4dd7c037d082c69819cd6918c9:log:0', 'hash': '0x778e522457fb02357214306e0941b75de16e9e4dd7c037d082c69819cd6918c9', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x8909e6e469cc262b5ead25266c0936c740af8aac', 'value': 4862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x010791cde8051d380000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:20:46.000Z'}}, {'blockNum': '0x636f72', 'uniqueId': '0xf5c4ab6df285e4f5f73e441f110deed0aff0538cbe82e68a77ed7338e8dabee7:log:9', 'hash': '0xf5c4ab6df285e4f5f73e441f110deed0aff0538cbe82e68a77ed7338e8dabee7', 'from': '0x9fdf2359732db724cb7aff0e3458b21e539c3cc4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1720.356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x5d42bc4b29cbea0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:26:20.000Z'}}, {'blockNum': '0x636f74', 'uniqueId': '0x707b2d75f4e23c6bb32ac772956ff74c97c2cc3b20adbcb145d83ddf12e15895:log:38', 'hash': '0x707b2d75f4e23c6bb32ac772956ff74c97c2cc3b20adbcb145d83ddf12e15895', 'from': '0x0d6b5a54f940bf3d52e438cab785981aaefdf40c', 'to': '0x9c69fec55b146af4a29a0fbbc5827357a7d155f9', 'value': 1962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x6a5c383ce0e4680000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:27:33.000Z'}}, {'blockNum': '0x636f77', 'uniqueId': '0xf37ac7c3bac9fd3c629bb81063e159c33dbf37442bc80abf911acec2666ae737:log:9', 'hash': '0xf37ac7c3bac9fd3c629bb81063e159c33dbf37442bc80abf911acec2666ae737', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb9ff9bfd964fc0735f27c0a546e5d787a25e6340', 'value': 2071.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x7046494cd787860000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:28:10.000Z'}}, {'blockNum': '0x636f77', 'uniqueId': '0x7fa8f2057d792dab06eab4b76d264c7e1ca19162aa394777151b3f4ea92f63f6:log:10', 'hash': '0x7fa8f2057d792dab06eab4b76d264c7e1ca19162aa394777151b3f4ea92f63f6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 68173.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0e6fabd0e56f9e9e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:28:10.000Z'}}, {'blockNum': '0x636f79', 'uniqueId': '0xb008f9bd4b08c7d6a48553a88b89bbab62bebe9e8ff7b6602b06bf4a5840e3a8:log:8', 'hash': '0xb008f9bd4b08c7d6a48553a88b89bbab62bebe9e8ff7b6602b06bf4a5840e3a8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 44533.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x096e24e98786243e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:28:47.000Z'}}, {'blockNum': '0x636f7b', 'uniqueId': '0xb72a0967f391e69c9a31cce0d84e569e7a0eeda2a43a57d19a30279df026fba3:log:26', 'hash': '0xb72a0967f391e69c9a31cce0d84e569e7a0eeda2a43a57d19a30279df026fba3', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4623.827025032178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xfaa87d852e66378a3c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:29:06.000Z'}}, {'blockNum': '0x636f7b', 'uniqueId': '0xb72a0967f391e69c9a31cce0d84e569e7a0eeda2a43a57d19a30279df026fba3:log:28', 'hash': '0xb72a0967f391e69c9a31cce0d84e569e7a0eeda2a43a57d19a30279df026fba3', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 4623.827025032178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xfaa87d852e66378a3c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:29:06.000Z'}}, {'blockNum': '0x636f7b', 'uniqueId': '0xb72a0967f391e69c9a31cce0d84e569e7a0eeda2a43a57d19a30279df026fba3:log:32', 'hash': '0xb72a0967f391e69c9a31cce0d84e569e7a0eeda2a43a57d19a30279df026fba3', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4623.827025032178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xfaa87d852e66378a3c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:29:06.000Z'}}, {'blockNum': '0x636f7b', 'uniqueId': '0xb72a0967f391e69c9a31cce0d84e569e7a0eeda2a43a57d19a30279df026fba3:log:34', 'hash': '0xb72a0967f391e69c9a31cce0d84e569e7a0eeda2a43a57d19a30279df026fba3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4623.827025032178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xfaa87d852e66378a3c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:29:06.000Z'}}, {'blockNum': '0x636f82', 'uniqueId': '0x404d6150b0805862f9042b5910b16570ebe9ebb6e5bee08dc6d13102a9225cda:log:3', 'hash': '0x404d6150b0805862f9042b5910b16570ebe9ebb6e5bee08dc6d13102a9225cda', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 3799280, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03248761a997d9cdc00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:30:23.000Z'}}, {'blockNum': '0x636fa5', 'uniqueId': '0x0b8908f12fb3d1a65e8d450adeed6d3865ec4ab9bb4367d03d700323c4077c4a:log:2', 'hash': '0x0b8908f12fb3d1a65e8d450adeed6d3865ec4ab9bb4367d03d700323c4077c4a', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xb30d27c4839cecb084d225af17dab4a7fd35a12b', 'value': 99911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x15282fa85cd5c4bc0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:37:00.000Z'}}, {'blockNum': '0x636fd0', 'uniqueId': '0x35be39b034d88a4c8b047dc39ef0f68079f7f7e78c7d42d928d7e1912951fac8:log:18', 'hash': '0x35be39b034d88a4c8b047dc39ef0f68079f7f7e78c7d42d928d7e1912951fac8', 'from': '0x9c69fec55b146af4a29a0fbbc5827357a7d155f9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x6a5c383ce0e4680000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:46:24.000Z'}}, {'blockNum': '0x63701c', 'uniqueId': '0xfd7ba0bd5403e19fe3ab60540c866ddfa84e32535e217e16957951b05ec3da32:log:33', 'hash': '0xfd7ba0bd5403e19fe3ab60540c866ddfa84e32535e217e16957951b05ec3da32', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3678.728277303512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc76c9c45784488c113', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:05:18.000Z'}}, {'blockNum': '0x63701c', 'uniqueId': '0xfd7ba0bd5403e19fe3ab60540c866ddfa84e32535e217e16957951b05ec3da32:log:36', 'hash': '0xfd7ba0bd5403e19fe3ab60540c866ddfa84e32535e217e16957951b05ec3da32', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 3678.728277303512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc76c9c45784488c113', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:05:18.000Z'}}, {'blockNum': '0x637020', 'uniqueId': '0xdd88a095dfc78e29dec7770b7a7a2231b881610f91d17969a7b6eaecbfb3576c:log:4', 'hash': '0xdd88a095dfc78e29dec7770b7a7a2231b881610f91d17969a7b6eaecbfb3576c', 'from': '0xb30d27c4839cecb084d225af17dab4a7fd35a12b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x15282fa85cd5c4bc0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:06:03.000Z'}}, {'blockNum': '0x637029', 'uniqueId': '0x8034b8f0ec85a1437ce46d9a1b9516a877a4d4a25ef07b96f13d7a43305e739e:log:1', 'hash': '0x8034b8f0ec85a1437ce46d9a1b9516a877a4d4a25ef07b96f13d7a43305e739e', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 35072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x076d41c6249484000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:07:36.000Z'}}, {'blockNum': '0x637038', 'uniqueId': '0x20d0ead969e571ba65b6055f869c889832787e5249b4dd0c38a734546fc624e5:log:36', 'hash': '0x20d0ead969e571ba65b6055f869c889832787e5249b4dd0c38a734546fc624e5', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3666.613860284756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc6c47d37604ca3315f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:11:08.000Z'}}, {'blockNum': '0x637038', 'uniqueId': '0x20d0ead969e571ba65b6055f869c889832787e5249b4dd0c38a734546fc624e5:log:40', 'hash': '0x20d0ead969e571ba65b6055f869c889832787e5249b4dd0c38a734546fc624e5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'value': 3666.613860284756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc6c47d37604ca3315f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:11:08.000Z'}}, {'blockNum': '0x637038', 'uniqueId': '0x1ec2d0fc80197cfd1363079b02b74a6109cd8743c7e1d109d845d8d28491d72c:log:125', 'hash': '0x1ec2d0fc80197cfd1363079b02b74a6109cd8743c7e1d109d845d8d28491d72c', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'value': 1345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x48e99fe5e274640000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:11:08.000Z'}}, {'blockNum': '0x637038', 'uniqueId': '0x1ec2d0fc80197cfd1363079b02b74a6109cd8743c7e1d109d845d8d28491d72c:log:130', 'hash': '0x1ec2d0fc80197cfd1363079b02b74a6109cd8743c7e1d109d845d8d28491d72c', 'from': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'to': '0x34de029e67204e75ba9b108c81f518cf81211aaf', 'value': 1345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x48e99fe5e274640000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:11:08.000Z'}}, {'blockNum': '0x637039', 'uniqueId': '0x552d40437b749e23b9dece5fa743753ef4401d8faee2549fdfe86427590d7ac9:log:112', 'hash': '0x552d40437b749e23b9dece5fa743753ef4401d8faee2549fdfe86427590d7ac9', 'from': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'to': '0x1a7fe01f4195b183b37bdf3e4d3c9b1f31de34f9', 'value': 3666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc6bbf858b316080000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:11:45.000Z'}}, {'blockNum': '0x63703c', 'uniqueId': '0x0b523aef795487f05d4d11c5ddef36ea464b215662f710c9623b68982e667362:log:63', 'hash': '0x0b523aef795487f05d4d11c5ddef36ea464b215662f710c9623b68982e667362', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 12697.096933834593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02b04f9df5384872a090', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:13:20.000Z'}}, {'blockNum': '0x63703c', 'uniqueId': '0x0b523aef795487f05d4d11c5ddef36ea464b215662f710c9623b68982e667362:log:67', 'hash': '0x0b523aef795487f05d4d11c5ddef36ea464b215662f710c9623b68982e667362', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'value': 12697.096933834593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02b04f9df5384872a090', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:13:20.000Z'}}, {'blockNum': '0x63703c', 'uniqueId': '0x0b523aef795487f05d4d11c5ddef36ea464b215662f710c9623b68982e667362:log:68', 'hash': '0x0b523aef795487f05d4d11c5ddef36ea464b215662f710c9623b68982e667362', 'from': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 12697.096933834593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02b04f9df5384872a090', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:13:20.000Z'}}, {'blockNum': '0x63703c', 'uniqueId': '0x0b523aef795487f05d4d11c5ddef36ea464b215662f710c9623b68982e667362:log:69', 'hash': '0x0b523aef795487f05d4d11c5ddef36ea464b215662f710c9623b68982e667362', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 12697.096933834593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02b04f9df5384872a090', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:13:20.000Z'}}, {'blockNum': '0x63703f', 'uniqueId': '0x3314bd489b749e237513c8c29f7fa201fc3d2e82a7f09bb03a95eb2abfc28293:log:38', 'hash': '0x3314bd489b749e237513c8c29f7fa201fc3d2e82a7f09bb03a95eb2abfc28293', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 13965.792624454027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02f5164e7e0018a59fef', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:14:25.000Z'}}, {'blockNum': '0x63703f', 'uniqueId': '0x3314bd489b749e237513c8c29f7fa201fc3d2e82a7f09bb03a95eb2abfc28293:log:42', 'hash': '0x3314bd489b749e237513c8c29f7fa201fc3d2e82a7f09bb03a95eb2abfc28293', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 13965.792624454027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02f5164e7e0018a59fef', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:14:25.000Z'}}, {'blockNum': '0x63703f', 'uniqueId': '0xbae5f526562d2a023922965685668c70e0a73a259cdb99656ad3d2af83db040b:log:84', 'hash': '0xbae5f526562d2a023922965685668c70e0a73a259cdb99656ad3d2af83db040b', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 10890.294250377654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x024e5d31597776fba342', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:14:25.000Z'}}, {'blockNum': '0x63703f', 'uniqueId': '0xbae5f526562d2a023922965685668c70e0a73a259cdb99656ad3d2af83db040b:log:86', 'hash': '0xbae5f526562d2a023922965685668c70e0a73a259cdb99656ad3d2af83db040b', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'value': 10890.294250377654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x024e5d31597776fba342', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:14:25.000Z'}}, {'blockNum': '0x63703f', 'uniqueId': '0xbae5f526562d2a023922965685668c70e0a73a259cdb99656ad3d2af83db040b:log:90', 'hash': '0xbae5f526562d2a023922965685668c70e0a73a259cdb99656ad3d2af83db040b', 'from': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 10890.294250377654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x024e5d31597776fba342', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:14:25.000Z'}}, {'blockNum': '0x63703f', 'uniqueId': '0xbae5f526562d2a023922965685668c70e0a73a259cdb99656ad3d2af83db040b:log:92', 'hash': '0xbae5f526562d2a023922965685668c70e0a73a259cdb99656ad3d2af83db040b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 10890.294250377654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x024e5d31597776fba342', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:14:25.000Z'}}, {'blockNum': '0x63703f', 'uniqueId': '0x4fe7954086a8fc0b6cc5af1a2d9db34bd235c7a7fe8bf5941e4f014c7f1b6361:log:121', 'hash': '0x4fe7954086a8fc0b6cc5af1a2d9db34bd235c7a7fe8bf5941e4f014c7f1b6361', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'value': 448.5170140167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x18506c87e7384d2700', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:14:25.000Z'}}, {'blockNum': '0x63703f', 'uniqueId': '0x4fe7954086a8fc0b6cc5af1a2d9db34bd235c7a7fe8bf5941e4f014c7f1b6361:log:126', 'hash': '0x4fe7954086a8fc0b6cc5af1a2d9db34bd235c7a7fe8bf5941e4f014c7f1b6361', 'from': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'to': '0x34de029e67204e75ba9b108c81f518cf81211aaf', 'value': 448.5170140167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x18506c87e7384d2700', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:14:25.000Z'}}, {'blockNum': '0x637043', 'uniqueId': '0xb707f2e4ec5b2f322e76ed796fa9b979e42c96d04f47fc7eeccd18d89a0f2250:log:55', 'hash': '0xb707f2e4ec5b2f322e76ed796fa9b979e42c96d04f47fc7eeccd18d89a0f2250', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4528.081285805879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf577c052a3396abec4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:15:25.000Z'}}, {'blockNum': '0x637043', 'uniqueId': '0xb707f2e4ec5b2f322e76ed796fa9b979e42c96d04f47fc7eeccd18d89a0f2250:log:57', 'hash': '0xb707f2e4ec5b2f322e76ed796fa9b979e42c96d04f47fc7eeccd18d89a0f2250', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 4528.081285805879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf577c052a3396abec4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:15:25.000Z'}}, {'blockNum': '0x637043', 'uniqueId': '0xb707f2e4ec5b2f322e76ed796fa9b979e42c96d04f47fc7eeccd18d89a0f2250:log:61', 'hash': '0xb707f2e4ec5b2f322e76ed796fa9b979e42c96d04f47fc7eeccd18d89a0f2250', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4528.081285805879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf577c052a3396abec4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:15:25.000Z'}}, {'blockNum': '0x637043', 'uniqueId': '0xb707f2e4ec5b2f322e76ed796fa9b979e42c96d04f47fc7eeccd18d89a0f2250:log:63', 'hash': '0xb707f2e4ec5b2f322e76ed796fa9b979e42c96d04f47fc7eeccd18d89a0f2250', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4528.081285805879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf577c052a3396abec4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:15:25.000Z'}}, {'blockNum': '0x637043', 'uniqueId': '0x2d078f15ee7c290f9bcb55371e7e8fe42b08c088fc4c1af862aea3303fdc29ed:log:85', 'hash': '0x2d078f15ee7c290f9bcb55371e7e8fe42b08c088fc4c1af862aea3303fdc29ed', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 8079.381386057432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b5fbf0c438d85f6386', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:15:25.000Z'}}, {'blockNum': '0x637043', 'uniqueId': '0x2d078f15ee7c290f9bcb55371e7e8fe42b08c088fc4c1af862aea3303fdc29ed:log:89', 'hash': '0x2d078f15ee7c290f9bcb55371e7e8fe42b08c088fc4c1af862aea3303fdc29ed', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 8079.381386057432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b5fbf0c438d85f6386', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:15:25.000Z'}}, {'blockNum': '0x637043', 'uniqueId': '0x2d078f15ee7c290f9bcb55371e7e8fe42b08c088fc4c1af862aea3303fdc29ed:log:91', 'hash': '0x2d078f15ee7c290f9bcb55371e7e8fe42b08c088fc4c1af862aea3303fdc29ed', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 8079.381386057432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b5fbf0c438d85f6386', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:15:25.000Z'}}, {'blockNum': '0x637043', 'uniqueId': '0x2d078f15ee7c290f9bcb55371e7e8fe42b08c088fc4c1af862aea3303fdc29ed:log:92', 'hash': '0x2d078f15ee7c290f9bcb55371e7e8fe42b08c088fc4c1af862aea3303fdc29ed', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 8079.381386057432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b5fbf0c438d85f6386', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:15:25.000Z'}}, {'blockNum': '0x637045', 'uniqueId': '0x8ef3c0727dce4e7c1a075a25edb8330748e20dc8ee159cfc28012b6ee9e1f651:log:123', 'hash': '0x8ef3c0727dce4e7c1a075a25edb8330748e20dc8ee159cfc28012b6ee9e1f651', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 8780.128867399413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01dbf8c3edc886d29415', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:16:22.000Z'}}, {'blockNum': '0x637045', 'uniqueId': '0x8ef3c0727dce4e7c1a075a25edb8330748e20dc8ee159cfc28012b6ee9e1f651:log:127', 'hash': '0x8ef3c0727dce4e7c1a075a25edb8330748e20dc8ee159cfc28012b6ee9e1f651', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 8780.128867399413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01dbf8c3edc886d29415', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:16:22.000Z'}}, {'blockNum': '0x637045', 'uniqueId': '0x8ef3c0727dce4e7c1a075a25edb8330748e20dc8ee159cfc28012b6ee9e1f651:log:128', 'hash': '0x8ef3c0727dce4e7c1a075a25edb8330748e20dc8ee159cfc28012b6ee9e1f651', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 8815.350481953858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01dde1903d9bc43bfea0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:16:22.000Z'}}, {'blockNum': '0x637045', 'uniqueId': '0x8ef3c0727dce4e7c1a075a25edb8330748e20dc8ee159cfc28012b6ee9e1f651:log:129', 'hash': '0x8ef3c0727dce4e7c1a075a25edb8330748e20dc8ee159cfc28012b6ee9e1f651', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 8815.350481953858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01dde1903d9bc43bfea0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:16:22.000Z'}}, {'blockNum': '0x637047', 'uniqueId': '0x606fd1e8b4498e6b3a503b8ecc3610720beacc63de02908c1b12d8fff7ee78cd:log:6', 'hash': '0x606fd1e8b4498e6b3a503b8ecc3610720beacc63de02908c1b12d8fff7ee78cd', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x076d41c6249484000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:16:39.000Z'}}, {'blockNum': '0x637047', 'uniqueId': '0xf6ae817a031ed0cf887a11799b4f3c4d4a33cd6930738194624e80687c04b15e:log:37', 'hash': '0xf6ae817a031ed0cf887a11799b4f3c4d4a33cd6930738194624e80687c04b15e', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3530.2361814676688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbf5fde5f0d4bd63c96', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:16:39.000Z'}}, {'blockNum': '0x637047', 'uniqueId': '0xf6ae817a031ed0cf887a11799b4f3c4d4a33cd6930738194624e80687c04b15e:log:40', 'hash': '0xf6ae817a031ed0cf887a11799b4f3c4d4a33cd6930738194624e80687c04b15e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 3530.2361814676688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbf5fde5f0d4bd63c96', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:16:39.000Z'}}, {'blockNum': '0x637047', 'uniqueId': '0x112b5d30f99fca04d2c4cd05ed03db120b516a4b7ba32d339bd0a17197e3cfcc:log:42', 'hash': '0x112b5d30f99fca04d2c4cd05ed03db120b516a4b7ba32d339bd0a17197e3cfcc', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 28346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0600a3c5f07496a80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:16:39.000Z'}}, {'blockNum': '0x637049', 'uniqueId': '0xbc3d2edffe69729cc71e09d34268e12303f19bab491103c50788e2acfb4f9c20:log:94', 'hash': '0xbc3d2edffe69729cc71e09d34268e12303f19bab491103c50788e2acfb4f9c20', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 8675.973556922227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01d65351eebe27a14db0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:17:57.000Z'}}, {'blockNum': '0x637049', 'uniqueId': '0xbc3d2edffe69729cc71e09d34268e12303f19bab491103c50788e2acfb4f9c20:log:98', 'hash': '0xbc3d2edffe69729cc71e09d34268e12303f19bab491103c50788e2acfb4f9c20', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 8675.973556922227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01d65351eebe27a14db0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:17:57.000Z'}}, {'blockNum': '0x637049', 'uniqueId': '0xbc3d2edffe69729cc71e09d34268e12303f19bab491103c50788e2acfb4f9c20:log:99', 'hash': '0xbc3d2edffe69729cc71e09d34268e12303f19bab491103c50788e2acfb4f9c20', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 8711.664281142512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01d842a0db52d6295ef6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:17:57.000Z'}}, {'blockNum': '0x637049', 'uniqueId': '0xbc3d2edffe69729cc71e09d34268e12303f19bab491103c50788e2acfb4f9c20:log:100', 'hash': '0xbc3d2edffe69729cc71e09d34268e12303f19bab491103c50788e2acfb4f9c20', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 8711.664281142512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01d842a0db52d6295ef6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:17:57.000Z'}}, {'blockNum': '0x63704b', 'uniqueId': '0xa12a9e3fe73b6150d26904a3f3842ba886e70abc62eaed97264070e006b641f7:log:96', 'hash': '0xa12a9e3fe73b6150d26904a3f3842ba886e70abc62eaed97264070e006b641f7', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 6834.829508620396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01728450499c8c5bf300', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:18:54.000Z'}}, {'blockNum': '0x63704e', 'uniqueId': '0x260b5d1b5612a272b035fec0cd62393a6c854fa20735e234a9080530c57bd802:log:122', 'hash': '0x260b5d1b5612a272b035fec0cd62393a6c854fa20735e234a9080530c57bd802', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3483.111581063729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbcd1e228a950c21007', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:19:46.000Z'}}, {'blockNum': '0x63704e', 'uniqueId': '0x260b5d1b5612a272b035fec0cd62393a6c854fa20735e234a9080530c57bd802:log:126', 'hash': '0x260b5d1b5612a272b035fec0cd62393a6c854fa20735e234a9080530c57bd802', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'value': 3483.111581063729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbcd1e228a950c21007', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:19:46.000Z'}}, {'blockNum': '0x637050', 'uniqueId': '0x1104ed8b2f1ece0f90c8278a0b43f21856e24e51f6a0627d64974a13ed3da5c9:log:31', 'hash': '0x1104ed8b2f1ece0f90c8278a0b43f21856e24e51f6a0627d64974a13ed3da5c9', 'from': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'to': '0x1a7fe01f4195b183b37bdf3e4d3c9b1f31de34f9', 'value': 3483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbcd055be466d8c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:20:03.000Z'}}, {'blockNum': '0x637054', 'uniqueId': '0xd74a0833a1c6efdffdd5677562dd355d12e97ea927e583799957a0bfa66f10f1:log:2', 'hash': '0xd74a0833a1c6efdffdd5677562dd355d12e97ea927e583799957a0bfa66f10f1', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 9908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02191d1f212a8a500000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:21:00.000Z'}}, {'blockNum': '0x637057', 'uniqueId': '0xbdf8a705ab268b4e008d125f54c4bb0b122f60a36bbf55be1608de9245b9d012:log:68', 'hash': '0xbdf8a705ab268b4e008d125f54c4bb0b122f60a36bbf55be1608de9245b9d012', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3465.1039250361014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbbd7fa1ce9b49d4546', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:21:30.000Z'}}, {'blockNum': '0x637057', 'uniqueId': '0xbdf8a705ab268b4e008d125f54c4bb0b122f60a36bbf55be1608de9245b9d012:log:71', 'hash': '0xbdf8a705ab268b4e008d125f54c4bb0b122f60a36bbf55be1608de9245b9d012', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 3465.1039250361014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbbd7fa1ce9b49d4546', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:21:30.000Z'}}, {'blockNum': '0x637059', 'uniqueId': '0x07d2eb3a213465b912aba13bc1b499886403a3bfa4b30609baff61563708e4bb:log:63', 'hash': '0x07d2eb3a213465b912aba13bc1b499886403a3bfa4b30609baff61563708e4bb', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 6846.214962701544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x017322518bc68db35979', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:21:59.000Z'}}, {'blockNum': '0x637059', 'uniqueId': '0x07d2eb3a213465b912aba13bc1b499886403a3bfa4b30609baff61563708e4bb:log:67', 'hash': '0x07d2eb3a213465b912aba13bc1b499886403a3bfa4b30609baff61563708e4bb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 6846.214962701544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x017322518bc68db35979', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:21:59.000Z'}}, {'blockNum': '0x637059', 'uniqueId': '0x07d2eb3a213465b912aba13bc1b499886403a3bfa4b30609baff61563708e4bb:log:70', 'hash': '0x07d2eb3a213465b912aba13bc1b499886403a3bfa4b30609baff61563708e4bb', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 6845.551162307213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0173191b40d57bdc0261', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:21:59.000Z'}}, {'blockNum': '0x63705c', 'uniqueId': '0xab0fad94d02cbdba6b91512202b22636eb37a836d5053aa9704e171536208b0a:log:75', 'hash': '0xab0fad94d02cbdba6b91512202b22636eb37a836d5053aa9704e171536208b0a', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2560.411026699891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8accd7472500345d98', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:23:16.000Z'}}, {'blockNum': '0x63705c', 'uniqueId': '0xab0fad94d02cbdba6b91512202b22636eb37a836d5053aa9704e171536208b0a:log:77', 'hash': '0xab0fad94d02cbdba6b91512202b22636eb37a836d5053aa9704e171536208b0a', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2560.411026699891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8accd7472500345d98', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:23:16.000Z'}}, {'blockNum': '0x63705c', 'uniqueId': '0xab0fad94d02cbdba6b91512202b22636eb37a836d5053aa9704e171536208b0a:log:78', 'hash': '0xab0fad94d02cbdba6b91512202b22636eb37a836d5053aa9704e171536208b0a', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2560.411026699891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8accd7472500345d98', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:23:16.000Z'}}, {'blockNum': '0x637069', 'uniqueId': '0xf2761b5801d28ce1fa9d5612e4313791eca7c7cb2132ae8b5b358e2317d3dc4b:log:82', 'hash': '0xf2761b5801d28ce1fa9d5612e4313791eca7c7cb2132ae8b5b358e2317d3dc4b', 'from': '0xb1feccccaad6429899a9401dcb19f58a19d1afe6', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 7995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b168e9dcacb00c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:27:04.000Z'}}, {'blockNum': '0x637079', 'uniqueId': '0x0fe69da78b3632ca9dcdba0b0d7979ffb4ac41c245ee0b616343511afd49191e:log:155', 'hash': '0x0fe69da78b3632ca9dcdba0b0d7979ffb4ac41c245ee0b616343511afd49191e', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5193.211750270041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0119864a6c0e366af6bb', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:30:47.000Z'}}, {'blockNum': '0x637079', 'uniqueId': '0x0fe69da78b3632ca9dcdba0b0d7979ffb4ac41c245ee0b616343511afd49191e:log:157', 'hash': '0x0fe69da78b3632ca9dcdba0b0d7979ffb4ac41c245ee0b616343511afd49191e', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5193.211750270041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0119864a6c0e366af6bb', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:30:47.000Z'}}, {'blockNum': '0x637079', 'uniqueId': '0xef763e20ef5af3803b8832a009c5d641be24b3fc18176627b1edb59950a23079:log:162', 'hash': '0xef763e20ef5af3803b8832a009c5d641be24b3fc18176627b1edb59950a23079', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5193.206557058291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01198637f8db60ccb260', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:30:47.000Z'}}, {'blockNum': '0x637079', 'uniqueId': '0xef763e20ef5af3803b8832a009c5d641be24b3fc18176627b1edb59950a23079:log:164', 'hash': '0xef763e20ef5af3803b8832a009c5d641be24b3fc18176627b1edb59950a23079', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5193.206557058291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01198637f8db60ccb260', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:30:47.000Z'}}, {'blockNum': '0x637083', 'uniqueId': '0x58a8601d45604aaffc2808a200b6b7fe5ad81a6450a379037e55ecc9a7649956:log:113', 'hash': '0x58a8601d45604aaffc2808a200b6b7fe5ad81a6450a379037e55ecc9a7649956', 'from': '0x205fd9bbb9d092b8e428108a0a9414801bfa196f', 'to': '0x841ec5e5e37a62af39ed225bd9fe9dbcb14148dc', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:32:22.000Z'}}, {'blockNum': '0x637084', 'uniqueId': '0xb625191f8f86da1a9525e46ee03117e762bcea814e96db36e166bc82280c3f2d:log:1', 'hash': '0xb625191f8f86da1a9525e46ee03117e762bcea814e96db36e166bc82280c3f2d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xad0a2478ba25816365aa0e32d77aff92b9e34efc', 'value': 28185.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x05f7ead64ef0ae4e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:32:31.000Z'}}, {'blockNum': '0x637086', 'uniqueId': '0xff376d69791b486032a3ce24c224cf0eca1d411006ceb3994b15e2f590af76fb:log:41', 'hash': '0xff376d69791b486032a3ce24c224cf0eca1d411006ceb3994b15e2f590af76fb', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3506.540680224404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbe17070a372034b01c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:32:47.000Z'}}, {'blockNum': '0x637086', 'uniqueId': '0xff376d69791b486032a3ce24c224cf0eca1d411006ceb3994b15e2f590af76fb:log:43', 'hash': '0xff376d69791b486032a3ce24c224cf0eca1d411006ceb3994b15e2f590af76fb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 3506.540680224404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbe17070a372034b01c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:32:47.000Z'}}, {'blockNum': '0x637088', 'uniqueId': '0x602f2393879f4ca95f041b59ee57370012c3d412f6f91b5fa83b7aab077a2d61:log:14', 'hash': '0x602f2393879f4ca95f041b59ee57370012c3d412f6f91b5fa83b7aab077a2d61', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2632.4709520627935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8eb4df8f78e52e1716', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:33:14.000Z'}}, {'blockNum': '0x637088', 'uniqueId': '0x602f2393879f4ca95f041b59ee57370012c3d412f6f91b5fa83b7aab077a2d61:log:16', 'hash': '0x602f2393879f4ca95f041b59ee57370012c3d412f6f91b5fa83b7aab077a2d61', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2632.4709520627935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8eb4df8f78e52e1716', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:33:14.000Z'}}, {'blockNum': '0x637088', 'uniqueId': '0x602f2393879f4ca95f041b59ee57370012c3d412f6f91b5fa83b7aab077a2d61:log:21', 'hash': '0x602f2393879f4ca95f041b59ee57370012c3d412f6f91b5fa83b7aab077a2d61', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2632.4683195918415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8eb4d63540fd3367cc', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:33:14.000Z'}}, {'blockNum': '0x637088', 'uniqueId': '0x602f2393879f4ca95f041b59ee57370012c3d412f6f91b5fa83b7aab077a2d61:log:23', 'hash': '0x602f2393879f4ca95f041b59ee57370012c3d412f6f91b5fa83b7aab077a2d61', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 2632.4683195918415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8eb4d63540fd3367cc', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:33:14.000Z'}}, {'blockNum': '0x637090', 'uniqueId': '0x6fd7c8b3b0a59ceb82a172b7209f484e5bdbcf96e5be531dcf91421301d96b3e:log:178', 'hash': '0x6fd7c8b3b0a59ceb82a172b7209f484e5bdbcf96e5be531dcf91421301d96b3e', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4404.902479890911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeeca4d4b498704d8ee', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:34:42.000Z'}}, {'blockNum': '0x637090', 'uniqueId': '0x6fd7c8b3b0a59ceb82a172b7209f484e5bdbcf96e5be531dcf91421301d96b3e:log:180', 'hash': '0x6fd7c8b3b0a59ceb82a172b7209f484e5bdbcf96e5be531dcf91421301d96b3e', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 4404.902479890911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeeca4d4b498704d8ee', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:34:42.000Z'}}, {'blockNum': '0x637091', 'uniqueId': '0x0cf68158903a0bbaa3cd85d57ada6a6f98600c3ae80d021d97a7ed4831619df0:log:26', 'hash': '0x0cf68158903a0bbaa3cd85d57ada6a6f98600c3ae80d021d97a7ed4831619df0', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4404.898074988431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeeca3da50d3f6f4f0e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:34:54.000Z'}}, {'blockNum': '0x637091', 'uniqueId': '0x0cf68158903a0bbaa3cd85d57ada6a6f98600c3ae80d021d97a7ed4831619df0:log:28', 'hash': '0x0cf68158903a0bbaa3cd85d57ada6a6f98600c3ae80d021d97a7ed4831619df0', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4404.898074988431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeeca3da50d3f6f4f0e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:34:54.000Z'}}, {'blockNum': '0x637092', 'uniqueId': '0xee5c3e2f52216f550330ccd20b4c8dc425d7f958b864bec227e74a542dc66e89:log:74', 'hash': '0xee5c3e2f52216f550330ccd20b4c8dc425d7f958b864bec227e74a542dc66e89', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3893.4428884867434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd3105fcebbf3277418', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:35:03.000Z'}}, {'blockNum': '0x637092', 'uniqueId': '0xee5c3e2f52216f550330ccd20b4c8dc425d7f958b864bec227e74a542dc66e89:log:76', 'hash': '0xee5c3e2f52216f550330ccd20b4c8dc425d7f958b864bec227e74a542dc66e89', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 3893.4428884867434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd3105fcebbf3277418', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:35:03.000Z'}}, {'blockNum': '0x637096', 'uniqueId': '0xe7d529211ecc7c004aceeef88613745986776203ea5f37fc2121c208fda21847:log:10', 'hash': '0xe7d529211ecc7c004aceeef88613745986776203ea5f37fc2121c208fda21847', 'from': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02191d1f212a8a500000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:35:58.000Z'}}, {'blockNum': '0x6370a5', 'uniqueId': '0x66f781bd9ac04164bc5f336338fc952f42241af3a51324c09a386dab02219b7d:log:12', 'hash': '0x66f781bd9ac04164bc5f336338fc952f42241af3a51324c09a386dab02219b7d', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0600a3c5f07496a80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:38:30.000Z'}}, {'blockNum': '0x6370b0', 'uniqueId': '0xe1261199f36fc0fbf3bd1bf2ea6ed14555371910b9ebac0204c8b06ea68eec0a:log:89', 'hash': '0xe1261199f36fc0fbf3bd1bf2ea6ed14555371910b9ebac0204c8b06ea68eec0a', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3500.88898388544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbdc8982e56c9e7c396', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:41:52.000Z'}}, {'blockNum': '0x6370b0', 'uniqueId': '0xe1261199f36fc0fbf3bd1bf2ea6ed14555371910b9ebac0204c8b06ea68eec0a:log:92', 'hash': '0xe1261199f36fc0fbf3bd1bf2ea6ed14555371910b9ebac0204c8b06ea68eec0a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 3500.88898388544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbdc8982e56c9e7c396', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:41:52.000Z'}}, {'blockNum': '0x6370b7', 'uniqueId': '0x6c5dc33856c9286703c98f77963b9d638971251ca6de4a69e188da6e0f64d166:log:27', 'hash': '0x6c5dc33856c9286703c98f77963b9d638971251ca6de4a69e188da6e0f64d166', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3489.9475204391906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbd30c04b4e15449c7c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:44:02.000Z'}}, {'blockNum': '0x6370b7', 'uniqueId': '0x6c5dc33856c9286703c98f77963b9d638971251ca6de4a69e188da6e0f64d166:log:31', 'hash': '0x6c5dc33856c9286703c98f77963b9d638971251ca6de4a69e188da6e0f64d166', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'value': 3489.9475204391906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbd30c04b4e15449c7c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:44:02.000Z'}}, {'blockNum': '0x6370bc', 'uniqueId': '0xcf93da00d59d5d5e3156ef72ab7ba215b6636b1d92984eb08ad715e664bdcfaa:log:8', 'hash': '0xcf93da00d59d5d5e3156ef72ab7ba215b6636b1d92984eb08ad715e664bdcfaa', 'from': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'to': '0x1a7fe01f4195b183b37bdf3e4d3c9b1f31de34f9', 'value': 3489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbd239a067c59e40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:45:16.000Z'}}, {'blockNum': '0x6370bd', 'uniqueId': '0x7bbaa49f4d93c60faa7541a9053570136f6bcdaf99af171033f2cfc26b7bc889:log:109', 'hash': '0x7bbaa49f4d93c60faa7541a9053570136f6bcdaf99af171033f2cfc26b7bc889', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2594.4117164383983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ca4b1fe517e33b1f3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:45:31.000Z'}}, {'blockNum': '0x6370bd', 'uniqueId': '0x7bbaa49f4d93c60faa7541a9053570136f6bcdaf99af171033f2cfc26b7bc889:log:113', 'hash': '0x7bbaa49f4d93c60faa7541a9053570136f6bcdaf99af171033f2cfc26b7bc889', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2594.4117164383983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ca4b1fe517e33b1f3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:45:31.000Z'}}, {'blockNum': '0x6370bd', 'uniqueId': '0x7bbaa49f4d93c60faa7541a9053570136f6bcdaf99af171033f2cfc26b7bc889:log:114', 'hash': '0x7bbaa49f4d93c60faa7541a9053570136f6bcdaf99af171033f2cfc26b7bc889', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2594.3196102839393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ca36ac442440dcc1d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:45:31.000Z'}}, {'blockNum': '0x6370bd', 'uniqueId': '0x7bbaa49f4d93c60faa7541a9053570136f6bcdaf99af171033f2cfc26b7bc889:log:115', 'hash': '0x7bbaa49f4d93c60faa7541a9053570136f6bcdaf99af171033f2cfc26b7bc889', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2594.3196102839393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ca36ac442440dcc1d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:45:31.000Z'}}, {'blockNum': '0x6370c0', 'uniqueId': '0x7b459cd39cdee77ce004cc91d9a578f183a51247f4bd8a4c0139efd5260e53e1:log:3', 'hash': '0x7b459cd39cdee77ce004cc91d9a578f183a51247f4bd8a4c0139efd5260e53e1', 'from': '0xf11e06c949d94d65faafe6080f9d9ecf264373fa', 'to': '0x76ad99e7251b4e60895a432a595666dc6f1c387b', 'value': 20151.7983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x04446e61790bf4adc000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:45:58.000Z'}}, {'blockNum': '0x6370dd', 'uniqueId': '0x07e438310d99cb31dda743c2925d5f788c61bbde13f638f1cef2c3cbdf3ded3a:log:16', 'hash': '0x07e438310d99cb31dda743c2925d5f788c61bbde13f638f1cef2c3cbdf3ded3a', 'from': '0x54f101d098e3134640dc7bedb7e6bd54d442246d', 'to': '0xc307b623c97cd4e8f79992581b4cd506e07eaedf', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x032d26d12e980b600000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:52:27.000Z'}}, {'blockNum': '0x6370e2', 'uniqueId': '0xd1b91abe014bc6a3862c5cb4bc47ea2afeb8281f4b1d1ff1f036f739abcc9fdb:log:6', 'hash': '0xd1b91abe014bc6a3862c5cb4bc47ea2afeb8281f4b1d1ff1f036f739abcc9fdb', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xe8579fe3d462860e52fd411b9208f90a13e22806', 'value': 1590.1862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x56344443bb80458000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:53:26.000Z'}}, {'blockNum': '0x6370eb', 'uniqueId': '0x4dcec36ee371a4270c33d2b99d35312e55c8978ffc7524a3d07a40be3d6b934c:log:54', 'hash': '0x4dcec36ee371a4270c33d2b99d35312e55c8978ffc7524a3d07a40be3d6b934c', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4374.818126178486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xed28cc32fac0aacccc', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:55:23.000Z'}}, {'blockNum': '0x6370eb', 'uniqueId': '0x4dcec36ee371a4270c33d2b99d35312e55c8978ffc7524a3d07a40be3d6b934c:log:56', 'hash': '0x4dcec36ee371a4270c33d2b99d35312e55c8978ffc7524a3d07a40be3d6b934c', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 4374.818126178486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xed28cc32fac0aacccc', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:55:23.000Z'}}, {'blockNum': '0x6370eb', 'uniqueId': '0x4dcec36ee371a4270c33d2b99d35312e55c8978ffc7524a3d07a40be3d6b934c:log:60', 'hash': '0x4dcec36ee371a4270c33d2b99d35312e55c8978ffc7524a3d07a40be3d6b934c', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4374.818126178486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xed28cc32fac0aacccc', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:55:23.000Z'}}, {'blockNum': '0x6370eb', 'uniqueId': '0x4dcec36ee371a4270c33d2b99d35312e55c8978ffc7524a3d07a40be3d6b934c:log:62', 'hash': '0x4dcec36ee371a4270c33d2b99d35312e55c8978ffc7524a3d07a40be3d6b934c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4374.818126178486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xed28cc32fac0aacccc', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:55:23.000Z'}}, {'blockNum': '0x6370ef', 'uniqueId': '0x950537ce1da994d1a116d07a2ae49b5e3b3b3891f19419631c3944ddd0637484:log:15', 'hash': '0x950537ce1da994d1a116d07a2ae49b5e3b3b3891f19419631c3944ddd0637484', 'from': '0x76ad99e7251b4e60895a432a595666dc6f1c387b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20151.7983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x04446e61790bf4adc000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:56:39.000Z'}}, {'blockNum': '0x6370ef', 'uniqueId': '0x5517303d5eaa012c184392a5abd51622558c32c8012aa90842c0fbfaea4ac467:log:17', 'hash': '0x5517303d5eaa012c184392a5abd51622558c32c8012aa90842c0fbfaea4ac467', 'from': '0x841ec5e5e37a62af39ed225bd9fe9dbcb14148dc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:56:39.000Z'}}, {'blockNum': '0x63713a', 'uniqueId': '0xb8ff02ecd886f5ed92885ce2f62d9cab3236ce7cc99c1138e3d13b0e7bb3caea:log:20', 'hash': '0xb8ff02ecd886f5ed92885ce2f62d9cab3236ce7cc99c1138e3d13b0e7bb3caea', 'from': '0xffde1b4976d01029412c7791b40f07aab529005b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2b5e3af16b18800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:12:38.000Z'}}, {'blockNum': '0x63713a', 'uniqueId': '0xb8ff02ecd886f5ed92885ce2f62d9cab3236ce7cc99c1138e3d13b0e7bb3caea:log:21', 'hash': '0xb8ff02ecd886f5ed92885ce2f62d9cab3236ce7cc99c1138e3d13b0e7bb3caea', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2b5e3af16b18800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:12:38.000Z'}}, {'blockNum': '0x637148', 'uniqueId': '0x364a1fbe9cad57eeb2d89d3c83c582a3b68bd4e3d338209443be0d8e82ccb9e3:log:13', 'hash': '0x364a1fbe9cad57eeb2d89d3c83c582a3b68bd4e3d338209443be0d8e82ccb9e3', 'from': '0xc307b623c97cd4e8f79992581b4cd506e07eaedf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x032d26d12e980b600000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:16:33.000Z'}}, {'blockNum': '0x637150', 'uniqueId': '0x3a56698f491c1e6544d7f3d2fb9d81597cda498e0cc5886244e726842a9b11e8:log:26', 'hash': '0x3a56698f491c1e6544d7f3d2fb9d81597cda498e0cc5886244e726842a9b11e8', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2599.6499732777024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ced640529032f281d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:18:03.000Z'}}, {'blockNum': '0x637150', 'uniqueId': '0x3a56698f491c1e6544d7f3d2fb9d81597cda498e0cc5886244e726842a9b11e8:log:30', 'hash': '0x3a56698f491c1e6544d7f3d2fb9d81597cda498e0cc5886244e726842a9b11e8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2599.6499732777024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ced640529032f281d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:18:03.000Z'}}, {'blockNum': '0x637150', 'uniqueId': '0x3a56698f491c1e6544d7f3d2fb9d81597cda498e0cc5886244e726842a9b11e8:log:31', 'hash': '0x3a56698f491c1e6544d7f3d2fb9d81597cda498e0cc5886244e726842a9b11e8', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2599.3929957038154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ce9d30d6b1465baee', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:18:03.000Z'}}, {'blockNum': '0x637150', 'uniqueId': '0x3a56698f491c1e6544d7f3d2fb9d81597cda498e0cc5886244e726842a9b11e8:log:32', 'hash': '0x3a56698f491c1e6544d7f3d2fb9d81597cda498e0cc5886244e726842a9b11e8', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2599.3929957038154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ce9d30d6b1465baee', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:18:03.000Z'}}, {'blockNum': '0x637156', 'uniqueId': '0xe1b054c4c494f934b37c7a551871262d636c9d1837281428ad9285df0a9a322e:log:31', 'hash': '0xe1b054c4c494f934b37c7a551871262d636c9d1837281428ad9285df0a9a322e', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4331.115024118396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeaca4b97346e671f5f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:19:56.000Z'}}, {'blockNum': '0x637156', 'uniqueId': '0xe1b054c4c494f934b37c7a551871262d636c9d1837281428ad9285df0a9a322e:log:35', 'hash': '0xe1b054c4c494f934b37c7a551871262d636c9d1837281428ad9285df0a9a322e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 4331.115024118396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeaca4b97346e671f5f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:19:56.000Z'}}, {'blockNum': '0x637156', 'uniqueId': '0xe1b054c4c494f934b37c7a551871262d636c9d1837281428ad9285df0a9a322e:log:37', 'hash': '0xe1b054c4c494f934b37c7a551871262d636c9d1837281428ad9285df0a9a322e', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4331.115024118396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeaca4b97346e671f5f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:19:56.000Z'}}, {'blockNum': '0x637156', 'uniqueId': '0xe1b054c4c494f934b37c7a551871262d636c9d1837281428ad9285df0a9a322e:log:38', 'hash': '0xe1b054c4c494f934b37c7a551871262d636c9d1837281428ad9285df0a9a322e', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4331.115024118396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeaca4b97346e671f5f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:19:56.000Z'}}, {'blockNum': '0x637157', 'uniqueId': '0xd91282839550e1b58753dc1cb2009c9b210b065df0b48a2350a75a4b9a3870da:log:73', 'hash': '0xd91282839550e1b58753dc1cb2009c9b210b065df0b48a2350a75a4b9a3870da', 'from': '0xcd9c46290895bd9781991caafef2a65f78639cad', 'to': '0xa0b98cfc741fbbf3a0478623d81e08ddcda50456', 'value': 1168.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3f5c5bbf6ea4900000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:20:15.000Z'}}, {'blockNum': '0x637159', 'uniqueId': '0x681f3320985fc2a481edfafbb60b833ece5bcf18c2d95bd7e05a3081502b394e:log:70', 'hash': '0x681f3320985fc2a481edfafbb60b833ece5bcf18c2d95bd7e05a3081502b394e', 'from': '0x9c6ea4b8a541a1e361c4862de306032ba8679437', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 14498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0311f02aea4dcd480000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:20:42.000Z'}}, {'blockNum': '0x637160', 'uniqueId': '0x819278a4e07b2329cf958b5dc860a7d5ab0d04b320d554d7c98226d5cd8d266a:log:19', 'hash': '0x819278a4e07b2329cf958b5dc860a7d5ab0d04b320d554d7c98226d5cd8d266a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 28306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x05fe78a964626f080000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:23:03.000Z'}}, {'blockNum': '0x637165', 'uniqueId': '0x2de46d59a40be559fde1885e6349776f927e0d49488364a2acafbca591141db3:log:60', 'hash': '0x2de46d59a40be559fde1885e6349776f927e0d49488364a2acafbca591141db3', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3451.112304164203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbb15cde3dc572928df', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:24:20.000Z'}}, {'blockNum': '0x637165', 'uniqueId': '0x2de46d59a40be559fde1885e6349776f927e0d49488364a2acafbca591141db3:log:64', 'hash': '0x2de46d59a40be559fde1885e6349776f927e0d49488364a2acafbca591141db3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'value': 3451.112304164203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbb15cde3dc572928df', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:24:20.000Z'}}, {'blockNum': '0x637165', 'uniqueId': '0xf6a585438752593cfc9cdc86acb28ad561e81bfafb30551c4d52d2baa9f56920:log:77', 'hash': '0xf6a585438752593cfc9cdc86acb28ad561e81bfafb30551c4d52d2baa9f56920', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 10479.376308714685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0238168f8ea9271b3ff3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:24:20.000Z'}}, {'blockNum': '0x637165', 'uniqueId': '0xf6a585438752593cfc9cdc86acb28ad561e81bfafb30551c4d52d2baa9f56920:log:81', 'hash': '0xf6a585438752593cfc9cdc86acb28ad561e81bfafb30551c4d52d2baa9f56920', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 10479.376308714685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0238168f8ea9271b3ff3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:24:20.000Z'}}, {'blockNum': '0x637167', 'uniqueId': '0x9ed20da4cf87e2ac1e23df20c209c322e139135aa8bb60b561bebcb2b8532525:log:24', 'hash': '0x9ed20da4cf87e2ac1e23df20c209c322e139135aa8bb60b561bebcb2b8532525', 'from': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'to': '0x1a7fe01f4195b183b37bdf3e4d3c9b1f31de34f9', 'value': 3451, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbb143ee7d1810c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:25:13.000Z'}}, {'blockNum': '0x637167', 'uniqueId': '0x24b0148f590d09976ba12a3059ffd432c5baf8b7845bad977c712a6e7902352a:log:57', 'hash': '0x24b0148f590d09976ba12a3059ffd432c5baf8b7845bad977c712a6e7902352a', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 6823.492927487523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0171e6fca9228c118153', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:25:13.000Z'}}, {'blockNum': '0x637167', 'uniqueId': '0x24b0148f590d09976ba12a3059ffd432c5baf8b7845bad977c712a6e7902352a:log:61', 'hash': '0x24b0148f590d09976ba12a3059ffd432c5baf8b7845bad977c712a6e7902352a', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 6823.492927487523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0171e6fca9228c118153', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:25:13.000Z'}}, {'blockNum': '0x637174', 'uniqueId': '0x878fb5543366a0a6ec8ef8cf7175e707fc81c3d9e553fd930b5994c20b3a8c26:log:15', 'hash': '0x878fb5543366a0a6ec8ef8cf7175e707fc81c3d9e553fd930b5994c20b3a8c26', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 10067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0221bbb09abf816c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:28:01.000Z'}}, {'blockNum': '0x63717b', 'uniqueId': '0x823a1a752bddaa7b6f28196b980d769f8c699ca485c00ade256fbb8bdbde9f4e:log:37', 'hash': '0x823a1a752bddaa7b6f28196b980d769f8c699ca485c00ade256fbb8bdbde9f4e', 'from': '0x9c6ea4b8a541a1e361c4862de306032ba8679437', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 8342.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01c43cab5299ad360000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:29:09.000Z'}}, {'blockNum': '0x637199', 'uniqueId': '0x73bfbf1722eba696e7537112fc303bac84f56e7d791d6c8915bc67dc789b8c52:log:27', 'hash': '0x73bfbf1722eba696e7537112fc303bac84f56e7d791d6c8915bc67dc789b8c52', 'from': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32907.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x06f7e886d7a6fbea0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:36:28.000Z'}}, {'blockNum': '0x637199', 'uniqueId': '0x9dafbbc526c61dcc9e50f4dff38e78be9cf68662208dc5f39c0b62656b081c5f:log:28', 'hash': '0x9dafbbc526c61dcc9e50f4dff38e78be9cf68662208dc5f39c0b62656b081c5f', 'from': '0xa0b98cfc741fbbf3a0478623d81e08ddcda50456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1168.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3f5c5bbf6ea4900000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:36:28.000Z'}}, {'blockNum': '0x63719f', 'uniqueId': '0xd9fb4dc07a0a0eeabf53226da3bdc03d1f93fc4d60ecfd7813883c61d3543a53:log:18', 'hash': '0xd9fb4dc07a0a0eeabf53226da3bdc03d1f93fc4d60ecfd7813883c61d3543a53', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa224450943185d7b94fc998ce4a18ad6379f2d1c', 'value': 26598.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x05a1e2c9b339fd620000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:38:28.000Z'}}, {'blockNum': '0x6371ae', 'uniqueId': '0x5eb5e9c9e8562a4f71fd6d5064b97700607e7b5d6cf53e451d52fe5d313b7920:log:10', 'hash': '0x5eb5e9c9e8562a4f71fd6d5064b97700607e7b5d6cf53e451d52fe5d313b7920', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x0a879472989a28ad86caf37a2485582e2d0bfb60', 'value': 10947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02517024a44ee92c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:41:45.000Z'}}, {'blockNum': '0x6371ae', 'uniqueId': '0x52fc496c1d4e6faeba1c1390cab083b07573420713541506956e95094c703111:log:26', 'hash': '0x52fc496c1d4e6faeba1c1390cab083b07573420713541506956e95094c703111', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x2543903a1f88285e1ae6e0138677b3e4b8a5ab7d', 'value': 119989.819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1968a93f473150bf8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:41:45.000Z'}}, {'blockNum': '0x6371b3', 'uniqueId': '0x4286186c24d3e1c4552fbbb8ee6495d2fbfd0d6097d2f290d1d6f4878258ec3a:log:36', 'hash': '0x4286186c24d3e1c4552fbbb8ee6495d2fbfd0d6097d2f290d1d6f4878258ec3a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 876.4038481001903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2f828bf075e53f23c9', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:43:57.000Z'}}, {'blockNum': '0x6371b3', 'uniqueId': '0x4286186c24d3e1c4552fbbb8ee6495d2fbfd0d6097d2f290d1d6f4878258ec3a:log:38', 'hash': '0x4286186c24d3e1c4552fbbb8ee6495d2fbfd0d6097d2f290d1d6f4878258ec3a', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x7b3c4d90e8af6030d66c07f8f815f9505e379d6f', 'value': 876.4038481001903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2f828bf075e53f23c9', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:43:57.000Z'}}, {'blockNum': '0x6371b3', 'uniqueId': '0x4286186c24d3e1c4552fbbb8ee6495d2fbfd0d6097d2f290d1d6f4878258ec3a:log:43', 'hash': '0x4286186c24d3e1c4552fbbb8ee6495d2fbfd0d6097d2f290d1d6f4878258ec3a', 'from': '0x7b3c4d90e8af6030d66c07f8f815f9505e379d6f', 'to': '0x0000000000000000000000000000000000000000', 'value': 876.4038481001903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2f828bf075e53f23c9', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:43:57.000Z'}}, {'blockNum': '0x6371b6', 'uniqueId': '0x434c4e3eae3195f3eab3d425b4b37e36bffa99cec9cc7e9055a2ff033c97f257:log:70', 'hash': '0x434c4e3eae3195f3eab3d425b4b37e36bffa99cec9cc7e9055a2ff033c97f257', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 12127.286984713972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02916bea5b7a265f3eb8', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:45:28.000Z'}}, {'blockNum': '0x6371b6', 'uniqueId': '0x434c4e3eae3195f3eab3d425b4b37e36bffa99cec9cc7e9055a2ff033c97f257:log:74', 'hash': '0x434c4e3eae3195f3eab3d425b4b37e36bffa99cec9cc7e9055a2ff033c97f257', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 12127.286984713972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02916bea5b7a265f3eb8', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:45:28.000Z'}}, {'blockNum': '0x6371b6', 'uniqueId': '0xba8e3dcf387c11fa6cbf792ea3c3d507f3df298b36a348200a1bed2d5cc6849e:log:108', 'hash': '0xba8e3dcf387c11fa6cbf792ea3c3d507f3df298b36a348200a1bed2d5cc6849e', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 616.096045812586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x21660cd97325fa2113', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:45:28.000Z'}}, {'blockNum': '0x6371b6', 'uniqueId': '0xba8e3dcf387c11fa6cbf792ea3c3d507f3df298b36a348200a1bed2d5cc6849e:log:110', 'hash': '0xba8e3dcf387c11fa6cbf792ea3c3d507f3df298b36a348200a1bed2d5cc6849e', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 616.096045812586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x21660cd97325fa2113', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:45:28.000Z'}}, {'blockNum': '0x6371b6', 'uniqueId': '0xba8e3dcf387c11fa6cbf792ea3c3d507f3df298b36a348200a1bed2d5cc6849e:log:111', 'hash': '0xba8e3dcf387c11fa6cbf792ea3c3d507f3df298b36a348200a1bed2d5cc6849e', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 616.096045812586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x21660cd97325fa2113', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:45:28.000Z'}}, {'blockNum': '0x6371bb', 'uniqueId': '0xb50e162cacaa8000ca207092f5da567762fe3923b6953bd1e7cee334a9609879:log:25', 'hash': '0xb50e162cacaa8000ca207092f5da567762fe3923b6953bd1e7cee334a9609879', 'from': '0x896e3f061ec207e51d72613859ad22d6891ab297', 'to': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'value': 996.84294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3609f98c6e0407c000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:46:00.000Z'}}, {'blockNum': '0x6371bb', 'uniqueId': '0xb50e162cacaa8000ca207092f5da567762fe3923b6953bd1e7cee334a9609879:log:29', 'hash': '0xb50e162cacaa8000ca207092f5da567762fe3923b6953bd1e7cee334a9609879', 'from': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'to': '0x34de029e67204e75ba9b108c81f518cf81211aaf', 'value': 996.84294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3609f98c6e0407c000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:46:00.000Z'}}, {'blockNum': '0x6371bc', 'uniqueId': '0x44f499e18b77920497fb5e021e5be47bbc6fbecd02d33c1f69376256e15a1817:log:8', 'hash': '0x44f499e18b77920497fb5e021e5be47bbc6fbecd02d33c1f69376256e15a1817', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x05fe78a964626f080000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:46:19.000Z'}}, {'blockNum': '0x6371bd', 'uniqueId': '0x044007df264c83811a33558dc2ad87c49b32d04ec21545a1c26e4f19d2e5ef04:log:49', 'hash': '0x044007df264c83811a33558dc2ad87c49b32d04ec21545a1c26e4f19d2e5ef04', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3345.297103420117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xb55952c76abb450d85', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:46:28.000Z'}}, {'blockNum': '0x6371bd', 'uniqueId': '0x044007df264c83811a33558dc2ad87c49b32d04ec21545a1c26e4f19d2e5ef04:log:53', 'hash': '0x044007df264c83811a33558dc2ad87c49b32d04ec21545a1c26e4f19d2e5ef04', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'value': 3345.297103420117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xb55952c76abb450d85', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:46:28.000Z'}}, {'blockNum': '0x6371bf', 'uniqueId': '0xd66a4b49bdece346eba1b6b376800ea04b1611cf7a151fdb489a0dc9029d8cea:log:48', 'hash': '0xd66a4b49bdece346eba1b6b376800ea04b1611cf7a151fdb489a0dc9029d8cea', 'from': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'to': '0x1a7fe01f4195b183b37bdf3e4d3c9b1f31de34f9', 'value': 3345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xb55533416e31a40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:47:07.000Z'}}, {'blockNum': '0x6371c2', 'uniqueId': '0xed8d75413c634e928dff0c7c347cdc39d54f346c5cfe2d2934319fedc875f37f:log:110', 'hash': '0xed8d75413c634e928dff0c7c347cdc39d54f346c5cfe2d2934319fedc875f37f', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 28917.18011109719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x061f9a7d5541a2c00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:48:02.000Z'}}, {'blockNum': '0x6371c6', 'uniqueId': '0x780c21719cc27ee2db91403ee963c0790773e805cb942eddc30dad76dafbc6b6:log:0', 'hash': '0x780c21719cc27ee2db91403ee963c0790773e805cb942eddc30dad76dafbc6b6', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 39720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x086939bb526bb3a00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:49:04.000Z'}}, {'blockNum': '0x6371c7', 'uniqueId': '0x19ea5ea23537abfd2b57327c3fe7199d55c11c0e8c5e9bf8e0726e279e2e2965:log:67', 'hash': '0x19ea5ea23537abfd2b57327c3fe7199d55c11c0e8c5e9bf8e0726e279e2e2965', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2478.5510474530265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x865cce35bb76007bb4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:49:41.000Z'}}, {'blockNum': '0x6371c7', 'uniqueId': '0x19ea5ea23537abfd2b57327c3fe7199d55c11c0e8c5e9bf8e0726e279e2e2965:log:71', 'hash': '0x19ea5ea23537abfd2b57327c3fe7199d55c11c0e8c5e9bf8e0726e279e2e2965', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'value': 2478.5510474530265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x865cce35bb76007bb4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:49:41.000Z'}}, {'blockNum': '0x6371c7', 'uniqueId': '0xc3bcd7bad92a503b80d31bf1347792edb0ed299795cd2480af0ae75558887d2f:log:75', 'hash': '0xc3bcd7bad92a503b80d31bf1347792edb0ed299795cd2480af0ae75558887d2f', 'from': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'to': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'value': 2478.5510474530265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x865cce35bb76007bb4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:49:41.000Z'}}, {'blockNum': '0x6371c7', 'uniqueId': '0xc3bcd7bad92a503b80d31bf1347792edb0ed299795cd2480af0ae75558887d2f:log:77', 'hash': '0xc3bcd7bad92a503b80d31bf1347792edb0ed299795cd2480af0ae75558887d2f', 'from': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2478.5510474530265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x865cce35bb76007bb4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:49:41.000Z'}}, {'blockNum': '0x6371c7', 'uniqueId': '0xc3bcd7bad92a503b80d31bf1347792edb0ed299795cd2480af0ae75558887d2f:log:78', 'hash': '0xc3bcd7bad92a503b80d31bf1347792edb0ed299795cd2480af0ae75558887d2f', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2478.5510474530265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x865cce35bb76007bb4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:49:41.000Z'}}, {'blockNum': '0x6371dd', 'uniqueId': '0x6c15668ac3850ed8362fdcc26eb10eaa7d8ed554db3245f3f6e16f77df5d904a:log:79', 'hash': '0x6c15668ac3850ed8362fdcc26eb10eaa7d8ed554db3245f3f6e16f77df5d904a', 'from': '0x9c6ea4b8a541a1e361c4862de306032ba8679437', 'to': '0x47954b0e423ff1f1b545bc31287aa7e28f8b2d79', 'value': 36055.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x07a292940bc618ae0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:53:09.000Z'}}, {'blockNum': '0x6371f2', 'uniqueId': '0xb6240cf7abba7c913c4142550b95789ee6a7189bf5728785df08702924b25e00:log:1', 'hash': '0xb6240cf7abba7c913c4142550b95789ee6a7189bf5728785df08702924b25e00', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28917.18011109719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x061f9a7d5541a2c00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:56:09.000Z'}}, {'blockNum': '0x6371f2', 'uniqueId': '0xd5281d611f3b94dabd837a1888164020baca3fe3f0ce64db5bf13de2e8499c33:log:2', 'hash': '0xd5281d611f3b94dabd837a1888164020baca3fe3f0ce64db5bf13de2e8499c33', 'from': '0x2543903a1f88285e1ae6e0138677b3e4b8a5ab7d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 119989.819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1968a93f473150bf8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:56:09.000Z'}}, {'blockNum': '0x6371f3', 'uniqueId': '0xb309fc6ebf1cbea6437784b95ecf4aa658c900d2bbc55ad451d72422d659ccf8:log:7', 'hash': '0xb309fc6ebf1cbea6437784b95ecf4aa658c900d2bbc55ad451d72422d659ccf8', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 39720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x086939bb526bb3a00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:56:22.000Z'}}, {'blockNum': '0x6371f3', 'uniqueId': '0x0f755f3c8f1f807aece68753c044ae9e37509621bbfcd201baefae5851fc992b:log:56', 'hash': '0x0f755f3c8f1f807aece68753c044ae9e37509621bbfcd201baefae5851fc992b', 'from': '0x0a879472989a28ad86caf37a2485582e2d0bfb60', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02517024a44ee92c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:56:22.000Z'}}, {'blockNum': '0x6371f3', 'uniqueId': '0x5f4e62e2034974e0a9d8d1808be294dce02eb281da67954d6838b869f29fb5e8:log:86', 'hash': '0x5f4e62e2034974e0a9d8d1808be294dce02eb281da67954d6838b869f29fb5e8', 'from': '0xa224450943185d7b94fc998ce4a18ad6379f2d1c', 'to': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'value': 26598.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x05a1e2c9b339fd620000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:56:22.000Z'}}, {'blockNum': '0x637203', 'uniqueId': '0xac6721bc553314c189c10c7c725b6cf42b1437f5f880ed355202653a759a3640:log:9', 'hash': '0xac6721bc553314c189c10c7c725b6cf42b1437f5f880ed355202653a759a3640', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 40640.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x089b1aaf2d85a08a0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:00:42.000Z'}}, {'blockNum': '0x63721a', 'uniqueId': '0x46a215f92c0ccd1d13927d26ae19b4677b50b886cb9c9285ff68aafdb1e8adc0:log:3', 'hash': '0x46a215f92c0ccd1d13927d26ae19b4677b50b886cb9c9285ff68aafdb1e8adc0', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0xdd55cd7a19ee860b513bc36a610e4f22625e2851', 'value': 6974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x017a0fb1322a16380000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:04:05.000Z'}}, {'blockNum': '0x637223', 'uniqueId': '0x8693f1dbc8c0422e73912b3d71d83eea4d49e3e04b3f3769a5b1c838c4418548:log:14', 'hash': '0x8693f1dbc8c0422e73912b3d71d83eea4d49e3e04b3f3769a5b1c838c4418548', 'from': '0x47954b0e423ff1f1b545bc31287aa7e28f8b2d79', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36055.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x07a292940bc618ae0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:06:25.000Z'}}, {'blockNum': '0x637224', 'uniqueId': '0xc78e7a56d8a9de182d8c7b29e754cdef1dcb342827cbdd5f1d04bdaff73a7e0a:log:1', 'hash': '0xc78e7a56d8a9de182d8c7b29e754cdef1dcb342827cbdd5f1d04bdaff73a7e0a', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 40649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x089b9632545e25840000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:06:49.000Z'}}, {'blockNum': '0x637228', 'uniqueId': '0x01eb23b65edc88dd8ddacbc4a146a67d2eea86dbbd7e93660d630ebb350f5f65:log:8', 'hash': '0x01eb23b65edc88dd8ddacbc4a146a67d2eea86dbbd7e93660d630ebb350f5f65', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x3b082eb9c6e0bebbd64434a984981adf2a9d9ab2', 'value': 8011.695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b2509a6ab87d318000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:07:57.000Z'}}, {'blockNum': '0x637229', 'uniqueId': '0x9394bca2a6b2dd6b3325c1e380c66979f37d3a21e4576d65638afd282cc852e6:log:1', 'hash': '0x9394bca2a6b2dd6b3325c1e380c66979f37d3a21e4576d65638afd282cc852e6', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 63666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0d7b573d131343880000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:08:03.000Z'}}, {'blockNum': '0x637244', 'uniqueId': '0x8deaa921980516aca4f26657712573f670be8dd6e22835fee984d965b875f6f9:log:16', 'hash': '0x8deaa921980516aca4f26657712573f670be8dd6e22835fee984d965b875f6f9', 'from': '0x3b082eb9c6e0bebbd64434a984981adf2a9d9ab2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8011.695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b2509a6ab87d318000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:16:28.000Z'}}, {'blockNum': '0x637244', 'uniqueId': '0x4717ced8125ff774f1fac85b5a2beb0a182e6a054062b1e69ca736cc7861e209:log:17', 'hash': '0x4717ced8125ff774f1fac85b5a2beb0a182e6a054062b1e69ca736cc7861e209', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x089b9632545e25840000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:16:28.000Z'}}, {'blockNum': '0x637244', 'uniqueId': '0xf43e794f658d9a060a100d7e7f2f05e871b7f652a767c2d84d9e35df0bcc561e:log:22', 'hash': '0xf43e794f658d9a060a100d7e7f2f05e871b7f652a767c2d84d9e35df0bcc561e', 'from': '0xdd55cd7a19ee860b513bc36a610e4f22625e2851', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x017a0fb1322a16380000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:16:28.000Z'}}, {'blockNum': '0x637247', 'uniqueId': '0x9cc9abefb60cfab902c040678c5d447a42b6610cc20655f4ce6a17eee8c13417:log:9', 'hash': '0x9cc9abefb60cfab902c040678c5d447a42b6610cc20655f4ce6a17eee8c13417', 'from': '0x2c6a39c214f556c30e86566c36f8c0ccf39d137a', 'to': '0x996167f658ee7ae6fe04eda61a80431e3fe5d40b', 'value': 309978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x41a3f0e8ba2b33280000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:16:47.000Z'}}, {'blockNum': '0x63724f', 'uniqueId': '0x29d467c1270f76ef7b55292984503d8fb46d2e1bd7bb2990eaf24b6e5b1f0543:log:50', 'hash': '0x29d467c1270f76ef7b55292984503d8fb46d2e1bd7bb2990eaf24b6e5b1f0543', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 10360.289567117145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0231a1e676205ae00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:18:57.000Z'}}, {'blockNum': '0x63724f', 'uniqueId': '0x29d467c1270f76ef7b55292984503d8fb46d2e1bd7bb2990eaf24b6e5b1f0543:log:52', 'hash': '0x29d467c1270f76ef7b55292984503d8fb46d2e1bd7bb2990eaf24b6e5b1f0543', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 10360.289567117145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0231a1e676205ae00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:18:57.000Z'}}, {'blockNum': '0x63725b', 'uniqueId': '0x3f101c5d19333ee774c3f3f19d006d416f79ca2c38caac4c0c56bf5e4b279fe8:log:72', 'hash': '0x3f101c5d19333ee774c3f3f19d006d416f79ca2c38caac4c0c56bf5e4b279fe8', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4461.339344200412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf1d985505c83b67596', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:21:46.000Z'}}, {'blockNum': '0x63725b', 'uniqueId': '0x3f101c5d19333ee774c3f3f19d006d416f79ca2c38caac4c0c56bf5e4b279fe8:log:74', 'hash': '0x3f101c5d19333ee774c3f3f19d006d416f79ca2c38caac4c0c56bf5e4b279fe8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4461.339344200412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf1d985505c83b67596', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:21:46.000Z'}}, {'blockNum': '0x637260', 'uniqueId': '0x0b7298457ca8b470e5e9886be66b97b184cf2bd4836d7a74e5afaefb1e1059f4:log:12', 'hash': '0x0b7298457ca8b470e5e9886be66b97b184cf2bd4836d7a74e5afaefb1e1059f4', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 32978.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x06fbbf12f889ad920000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:22:25.000Z'}}, {'blockNum': '0x637270', 'uniqueId': '0xeda4c6b61b661f6d077b2b46ac05f2e6b249cb29ffa279f00de98eb10be41f45:log:11', 'hash': '0xeda4c6b61b661f6d077b2b46ac05f2e6b249cb29ffa279f00de98eb10be41f45', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 63666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0d7b573d131343880000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:26:20.000Z'}}, {'blockNum': '0x637270', 'uniqueId': '0x9312c790c353ed1d1cc1d73ed96ac750b7117e145a125f6271cb154ef7139dc7:log:12', 'hash': '0x9312c790c353ed1d1cc1d73ed96ac750b7117e145a125f6271cb154ef7139dc7', 'from': '0x996167f658ee7ae6fe04eda61a80431e3fe5d40b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 309978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x41a3f0e8ba2b33280000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:26:20.000Z'}}, {'blockNum': '0x637273', 'uniqueId': '0xf21bee40d24c44bc2e93b91bac63a66d220fbc530fc4ca36ad4ba08d8922537d:log:4', 'hash': '0xf21bee40d24c44bc2e93b91bac63a66d220fbc530fc4ca36ad4ba08d8922537d', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2567.16552667674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8b2a9415162ba80b4c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:26:48.000Z'}}, {'blockNum': '0x637273', 'uniqueId': '0xf21bee40d24c44bc2e93b91bac63a66d220fbc530fc4ca36ad4ba08d8922537d:log:6', 'hash': '0xf21bee40d24c44bc2e93b91bac63a66d220fbc530fc4ca36ad4ba08d8922537d', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2567.16552667674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8b2a9415162ba80b4c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:26:48.000Z'}}, {'blockNum': '0x637273', 'uniqueId': '0xb24504f7f751e4d40a9ef5b17102aab7a195f10ede78474f7d6fc59d84a20986:log:11', 'hash': '0xb24504f7f751e4d40a9ef5b17102aab7a195f10ede78474f7d6fc59d84a20986', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2567.162959511213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8b2a8af6435e5bf648', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:26:48.000Z'}}, {'blockNum': '0x637273', 'uniqueId': '0xb24504f7f751e4d40a9ef5b17102aab7a195f10ede78474f7d6fc59d84a20986:log:13', 'hash': '0xb24504f7f751e4d40a9ef5b17102aab7a195f10ede78474f7d6fc59d84a20986', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 2567.162959511213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8b2a8af6435e5bf648', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:26:48.000Z'}}, {'blockNum': '0x637277', 'uniqueId': '0x2ac8cd8cb111617145bbcd96e2fc748d88c036738d67ce1fa3cafaa3c912e788:log:27', 'hash': '0x2ac8cd8cb111617145bbcd96e2fc748d88c036738d67ce1fa3cafaa3c912e788', 'from': '0x0d6b5a54f940bf3d52e438cab785981aaefdf40c', 'to': '0xf2b58791380de903b4aa18fb78e30878b05461b6', 'value': 14873.42362427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03264a378f7f74598c00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:27:32.000Z'}}, {'blockNum': '0x63727d', 'uniqueId': '0x8789e0aef368103f318bf3f155ec3edc92ef4d4df13d6db9226329e2c16fc14c:log:90', 'hash': '0x8789e0aef368103f318bf3f155ec3edc92ef4d4df13d6db9226329e2c16fc14c', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 16829.625143150508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x039055f7748514a00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:28:46.000Z'}}, {'blockNum': '0x63727d', 'uniqueId': '0x8789e0aef368103f318bf3f155ec3edc92ef4d4df13d6db9226329e2c16fc14c:log:92', 'hash': '0x8789e0aef368103f318bf3f155ec3edc92ef4d4df13d6db9226329e2c16fc14c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 16829.625143150508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x039055f7748514a00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:28:46.000Z'}}, {'blockNum': '0x63727e', 'uniqueId': '0xf44d7e0a44008bdf4b52ff8ec058b223e1b622778d13a8eeda816ab58dc4cd38:log:51', 'hash': '0xf44d7e0a44008bdf4b52ff8ec058b223e1b622778d13a8eeda816ab58dc4cd38', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5173.169934743543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0118702797052f9bf6a8', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:28:53.000Z'}}, {'blockNum': '0x63727e', 'uniqueId': '0xf44d7e0a44008bdf4b52ff8ec058b223e1b622778d13a8eeda816ab58dc4cd38:log:53', 'hash': '0xf44d7e0a44008bdf4b52ff8ec058b223e1b622778d13a8eeda816ab58dc4cd38', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5173.169934743543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0118702797052f9bf6a8', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:28:53.000Z'}}, {'blockNum': '0x63727e', 'uniqueId': '0xe4f0a68d78585ff65e8adb1f480910d4ca6e9aa8051fe6cd5569315206dffd49:log:58', 'hash': '0xe4f0a68d78585ff65e8adb1f480910d4ca6e9aa8051fe6cd5569315206dffd49', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5173.164761573608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01187015360cb3493eb0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:28:53.000Z'}}, {'blockNum': '0x63727e', 'uniqueId': '0xe4f0a68d78585ff65e8adb1f480910d4ca6e9aa8051fe6cd5569315206dffd49:log:60', 'hash': '0xe4f0a68d78585ff65e8adb1f480910d4ca6e9aa8051fe6cd5569315206dffd49', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5173.164761573608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01187015360cb3493eb0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:28:53.000Z'}}, {'blockNum': '0x637289', 'uniqueId': '0x2d6f769ec6521a4d4541abdc3a11155d4e650edf90dffd49a1c8cf6826429b0c:log:73', 'hash': '0x2d6f769ec6521a4d4541abdc3a11155d4e650edf90dffd49a1c8cf6826429b0c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 27162.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x05c07a06076fde500000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:32:47.000Z'}}, {'blockNum': '0x6372a2', 'uniqueId': '0x581a547f5064c14ba2709ab76ea9f2223e7d838cf9a1e8cf046d0378500c0bd9:log:38', 'hash': '0x581a547f5064c14ba2709ab76ea9f2223e7d838cf9a1e8cf046d0378500c0bd9', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5288.057108846351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011eaa88d32b1dec9656', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:38:16.000Z'}}, {'blockNum': '0x6372a2', 'uniqueId': '0x581a547f5064c14ba2709ab76ea9f2223e7d838cf9a1e8cf046d0378500c0bd9:log:40', 'hash': '0x581a547f5064c14ba2709ab76ea9f2223e7d838cf9a1e8cf046d0378500c0bd9', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5288.057108846351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011eaa88d32b1dec9656', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:38:16.000Z'}}, {'blockNum': '0x6372a5', 'uniqueId': '0xad7a5ff36eccdfc29bcea0ecbc146d26eb533bec6cff3b582b3b1a474f98bf65:log:11', 'hash': '0xad7a5ff36eccdfc29bcea0ecbc146d26eb533bec6cff3b582b3b1a474f98bf65', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x66ad9e7eca40bf3a7308c3358d914ca2ad9a7ecd', 'value': 12104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x029028be5e4270200000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:39:38.000Z'}}, {'blockNum': '0x6372a5', 'uniqueId': '0x496d0ca1e8a17490381dff3c57db12d55fe1590c5a1d6d7dc5d174059501e1ce:log:96', 'hash': '0x496d0ca1e8a17490381dff3c57db12d55fe1590c5a1d6d7dc5d174059501e1ce', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5288.051820789243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011eaa7609b560663f45', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:39:38.000Z'}}, {'blockNum': '0x6372a5', 'uniqueId': '0x496d0ca1e8a17490381dff3c57db12d55fe1590c5a1d6d7dc5d174059501e1ce:log:98', 'hash': '0x496d0ca1e8a17490381dff3c57db12d55fe1590c5a1d6d7dc5d174059501e1ce', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5288.051820789243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011eaa7609b560663f45', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:39:38.000Z'}}, {'blockNum': '0x6372bd', 'uniqueId': '0x53212634eb7c0f74ef5559938c4ee87ed356021ab86db008203cdd041c51d0ba:log:31', 'hash': '0x53212634eb7c0f74ef5559938c4ee87ed356021ab86db008203cdd041c51d0ba', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5244.788584449205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c52102579c6b06527', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:44:47.000Z'}}, {'blockNum': '0x6372bd', 'uniqueId': '0x53212634eb7c0f74ef5559938c4ee87ed356021ab86db008203cdd041c51d0ba:log:35', 'hash': '0x53212634eb7c0f74ef5559938c4ee87ed356021ab86db008203cdd041c51d0ba', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'value': 5244.788584449205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c52102579c6b06527', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:44:47.000Z'}}, {'blockNum': '0x6372bd', 'uniqueId': '0x53212634eb7c0f74ef5559938c4ee87ed356021ab86db008203cdd041c51d0ba:log:36', 'hash': '0x53212634eb7c0f74ef5559938c4ee87ed356021ab86db008203cdd041c51d0ba', 'from': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5244.788584449205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c52102579c6b06527', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:44:47.000Z'}}, {'blockNum': '0x6372bd', 'uniqueId': '0x53212634eb7c0f74ef5559938c4ee87ed356021ab86db008203cdd041c51d0ba:log:37', 'hash': '0x53212634eb7c0f74ef5559938c4ee87ed356021ab86db008203cdd041c51d0ba', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5244.788584449205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c52102579c6b06527', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:44:47.000Z'}}, {'blockNum': '0x6372c5', 'uniqueId': '0xa15b54296c4d6e551591b148405292c9ef0a57a1f492722ca5dfbfa0c5fb6659:log:16', 'hash': '0xa15b54296c4d6e551591b148405292c9ef0a57a1f492722ca5dfbfa0c5fb6659', 'from': '0xf2b58791380de903b4aa18fb78e30878b05461b6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14873.42362427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03264a378f7f74598c00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:46:03.000Z'}}, {'blockNum': '0x6372cb', 'uniqueId': '0x29866d21e2cae313a79b9719005d4b88de04fc79ec9ada6cf7d50995e3fadf51:log:6', 'hash': '0x29866d21e2cae313a79b9719005d4b88de04fc79ec9ada6cf7d50995e3fadf51', 'from': '0x0f3bcdb64698e3b6732f55a6390082a9241399ee', 'to': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'value': 300000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3f870857a3e0e3800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:47:18.000Z'}}, {'blockNum': '0x6372cf', 'uniqueId': '0x1e1c284485054950985751a68f81bcb063e5e0fdff406ca0362764459aeac2ad:log:10', 'hash': '0x1e1c284485054950985751a68f81bcb063e5e0fdff406ca0362764459aeac2ad', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x732c0283711b6391ebbd28eb6e25b48e4ed59648', 'value': 8281.093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01c0eb4060638de08000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:48:04.000Z'}}, {'blockNum': '0x6372d0', 'uniqueId': '0x78ae272d8ae0441042f52f0730510a1ee27985ca8ef652aa29ad5f95b7fd1664:log:8', 'hash': '0x78ae272d8ae0441042f52f0730510a1ee27985ca8ef652aa29ad5f95b7fd1664', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x66ad9e7eca40bf3a7308c3358d914ca2ad9a7ecd', 'value': 12975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02bf604bfb80f55c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:48:26.000Z'}}, {'blockNum': '0x6372d0', 'uniqueId': '0x7d6803e4007c377882ec3dbedcd4c228b3ea5f6585208ba17891e5885c6da420:log:88', 'hash': '0x7d6803e4007c377882ec3dbedcd4c228b3ea5f6585208ba17891e5885c6da420', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x66ad9e7eca40bf3a7308c3358d914ca2ad9a7ecd', 'value': 12975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02bf604bfb80f55c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:48:26.000Z'}}, {'blockNum': '0x6372e1', 'uniqueId': '0x24b4945c2b89a7688b17b207a1e2725d9357e6a2ebaa8f981399264b3b82441c:log:25', 'hash': '0x24b4945c2b89a7688b17b207a1e2725d9357e6a2ebaa8f981399264b3b82441c', 'from': '0x9dd12f3f516cc2bdaf283ccc61fc3fae393d3b5f', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 29336.804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x063659f0dcf36aca0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:52:38.000Z'}}, {'blockNum': '0x6372f2', 'uniqueId': '0xc682a6c8a7dcfec7d6acf7408abaa18d65ed54871a448bf6f728eb4f11a43236:log:14', 'hash': '0xc682a6c8a7dcfec7d6acf7408abaa18d65ed54871a448bf6f728eb4f11a43236', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 50754.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0abf62a15340dd520000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:56:43.000Z'}}, {'blockNum': '0x63730a', 'uniqueId': '0x818bad5510a922b3e91cd8070fdd4fc2e1f1359741c9ec9f6e11a5da55541349:log:1', 'hash': '0x818bad5510a922b3e91cd8070fdd4fc2e1f1359741c9ec9f6e11a5da55541349', 'from': '0xaa5d82241b97946ffde20507a732fcab13b781c3', 'to': '0xa26c6e03b3f1f64806f64494c641dd720c369217', 'value': 95000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x141df5d77c6d9d600000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:02:50.000Z'}}, {'blockNum': '0x637317', 'uniqueId': '0x597d128a587e69c5939009fceaa332a3cf39b951e937833f684c6e4cfed9f1aa:log:7', 'hash': '0x597d128a587e69c5939009fceaa332a3cf39b951e937833f684c6e4cfed9f1aa', 'from': '0x66ad9e7eca40bf3a7308c3358d914ca2ad9a7ecd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x080ee95655445ad80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:06:04.000Z'}}, {'blockNum': '0x637317', 'uniqueId': '0x4cc37b343af8c287db431347026749bb1d07863c880deeff71909007d6a8a680:log:11', 'hash': '0x4cc37b343af8c287db431347026749bb1d07863c880deeff71909007d6a8a680', 'from': '0x732c0283711b6391ebbd28eb6e25b48e4ed59648', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8281.093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01c0eb4060638de08000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:06:04.000Z'}}, {'blockNum': '0x63731b', 'uniqueId': '0x71f9670d63785fdaf72749d1e7cc94e397c79cbbe39869f4429f768d9e531612:log:87', 'hash': '0x71f9670d63785fdaf72749d1e7cc94e397c79cbbe39869f4429f768d9e531612', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3479.28026684142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbc9cb698ace5263012', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:06:39.000Z'}}, {'blockNum': '0x63731b', 'uniqueId': '0x71f9670d63785fdaf72749d1e7cc94e397c79cbbe39869f4429f768d9e531612:log:90', 'hash': '0x71f9670d63785fdaf72749d1e7cc94e397c79cbbe39869f4429f768d9e531612', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 3479.28026684142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbc9cb698ace5263012', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:06:39.000Z'}}, {'blockNum': '0x637320', 'uniqueId': '0xbeb3bc918243040243d7318029ad0a257f29f13809e2ef5459d912d44f2b576b:log:45', 'hash': '0xbeb3bc918243040243d7318029ad0a257f29f13809e2ef5459d912d44f2b576b', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5167.683524617287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01182403f21423f5e254', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:07:50.000Z'}}, {'blockNum': '0x637320', 'uniqueId': '0xbeb3bc918243040243d7318029ad0a257f29f13809e2ef5459d912d44f2b576b:log:49', 'hash': '0xbeb3bc918243040243d7318029ad0a257f29f13809e2ef5459d912d44f2b576b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5167.683524617287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01182403f21423f5e254', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:07:50.000Z'}}, {'blockNum': '0x637320', 'uniqueId': '0xbeb3bc918243040243d7318029ad0a257f29f13809e2ef5459d912d44f2b576b:log:50', 'hash': '0xbeb3bc918243040243d7318029ad0a257f29f13809e2ef5459d912d44f2b576b', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5167.214975892764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01181d83537f06df52e7', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:07:50.000Z'}}, {'blockNum': '0x637320', 'uniqueId': '0xbeb3bc918243040243d7318029ad0a257f29f13809e2ef5459d912d44f2b576b:log:51', 'hash': '0xbeb3bc918243040243d7318029ad0a257f29f13809e2ef5459d912d44f2b576b', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5167.214975892764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01181d83537f06df52e7', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:07:50.000Z'}}, {'blockNum': '0x637326', 'uniqueId': '0xea98c8cd899e94100b3dad0e84787e47c8e7b4db892afa194c81946f94896bec:log:7', 'hash': '0xea98c8cd899e94100b3dad0e84787e47c8e7b4db892afa194c81946f94896bec', 'from': '0x453227d4be3d8ab37f38e71a266acf7a71d76173', 'to': '0x076fb9ca37a4367aa1682f937ccbcc44164e3012', 'value': 1461.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x4f3a630aa421660000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:09:24.000Z'}}, {'blockNum': '0x637329', 'uniqueId': '0x5cb2cb340728906a5957920c887c5e4e444d81eab56b5f5d503beaf651653c4e:log:38', 'hash': '0x5cb2cb340728906a5957920c887c5e4e444d81eab56b5f5d503beaf651653c4e', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2575.367626381855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8b9c67cb4fd3692307', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:09:39.000Z'}}, {'blockNum': '0x637329', 'uniqueId': '0x5cb2cb340728906a5957920c887c5e4e444d81eab56b5f5d503beaf651653c4e:log:42', 'hash': '0x5cb2cb340728906a5957920c887c5e4e444d81eab56b5f5d503beaf651653c4e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2575.367626381855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8b9c67cb4fd3692307', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:09:39.000Z'}}, {'blockNum': '0x637329', 'uniqueId': '0x5cb2cb340728906a5957920c887c5e4e444d81eab56b5f5d503beaf651653c4e:log:43', 'hash': '0x5cb2cb340728906a5957920c887c5e4e444d81eab56b5f5d503beaf651653c4e', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2575.113035354304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8b98df4e1f033674de', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:09:39.000Z'}}, {'blockNum': '0x637329', 'uniqueId': '0x5cb2cb340728906a5957920c887c5e4e444d81eab56b5f5d503beaf651653c4e:log:44', 'hash': '0x5cb2cb340728906a5957920c887c5e4e444d81eab56b5f5d503beaf651653c4e', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2575.113035354304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8b98df4e1f033674de', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:09:39.000Z'}}, {'blockNum': '0x63732e', 'uniqueId': '0x6514b19b705eda6265cc37bc877bc8ce7a46cf9adea3d00588e4ba03132d8494:log:50', 'hash': '0x6514b19b705eda6265cc37bc877bc8ce7a46cf9adea3d00588e4ba03132d8494', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2576.28832770982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ba92ec84aa0f59ce6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:11:13.000Z'}}, {'blockNum': '0x63732e', 'uniqueId': '0x6514b19b705eda6265cc37bc877bc8ce7a46cf9adea3d00588e4ba03132d8494:log:54', 'hash': '0x6514b19b705eda6265cc37bc877bc8ce7a46cf9adea3d00588e4ba03132d8494', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 2576.28832770982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ba92ec84aa0f59ce6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:11:13.000Z'}}, {'blockNum': '0x63732e', 'uniqueId': '0x6514b19b705eda6265cc37bc877bc8ce7a46cf9adea3d00588e4ba03132d8494:log:56', 'hash': '0x6514b19b705eda6265cc37bc877bc8ce7a46cf9adea3d00588e4ba03132d8494', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2576.28832770982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ba92ec84aa0f59ce6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:11:13.000Z'}}, {'blockNum': '0x63732e', 'uniqueId': '0x6514b19b705eda6265cc37bc877bc8ce7a46cf9adea3d00588e4ba03132d8494:log:57', 'hash': '0x6514b19b705eda6265cc37bc877bc8ce7a46cf9adea3d00588e4ba03132d8494', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2576.28832770982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ba92ec84aa0f59ce6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:11:13.000Z'}}, {'blockNum': '0x63732e', 'uniqueId': '0x7895bad46964a6acb52340272c4e859c7e0baa1fe25663e34656eb29b47b298f:log:73', 'hash': '0x7895bad46964a6acb52340272c4e859c7e0baa1fe25663e34656eb29b47b298f', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2549.664690985111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8a37b49fbf9ba95e38', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:11:13.000Z'}}, {'blockNum': '0x63732e', 'uniqueId': '0x7895bad46964a6acb52340272c4e859c7e0baa1fe25663e34656eb29b47b298f:log:77', 'hash': '0x7895bad46964a6acb52340272c4e859c7e0baa1fe25663e34656eb29b47b298f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2549.664690985111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8a37b49fbf9ba95e38', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:11:13.000Z'}}, {'blockNum': '0x63732e', 'uniqueId': '0x7895bad46964a6acb52340272c4e859c7e0baa1fe25663e34656eb29b47b298f:log:78', 'hash': '0x7895bad46964a6acb52340272c4e859c7e0baa1fe25663e34656eb29b47b298f', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2557.24049680554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8aa0d74b00f9a1c688', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:11:13.000Z'}}, {'blockNum': '0x63732e', 'uniqueId': '0x7895bad46964a6acb52340272c4e859c7e0baa1fe25663e34656eb29b47b298f:log:79', 'hash': '0x7895bad46964a6acb52340272c4e859c7e0baa1fe25663e34656eb29b47b298f', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2557.24049680554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8aa0d74b00f9a1c688', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:11:13.000Z'}}, {'blockNum': '0x637333', 'uniqueId': '0xf336535aec178d5b3a1bcac4322ef82af417745343d2a0b1ee7b7fb544799bfb:log:46', 'hash': '0xf336535aec178d5b3a1bcac4322ef82af417745343d2a0b1ee7b7fb544799bfb', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5096.703910957371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01144af9b38566353206', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:12:25.000Z'}}, {'blockNum': '0x637333', 'uniqueId': '0xf336535aec178d5b3a1bcac4322ef82af417745343d2a0b1ee7b7fb544799bfb:log:50', 'hash': '0xf336535aec178d5b3a1bcac4322ef82af417745343d2a0b1ee7b7fb544799bfb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'value': 5096.703910957371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01144af9b38566353206', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:12:25.000Z'}}, {'blockNum': '0x637333', 'uniqueId': '0x162003c4836e912dcc17c2946da4d4a462c8649a5554293827197d2a19a0eb03:log:51', 'hash': '0x162003c4836e912dcc17c2946da4d4a462c8649a5554293827197d2a19a0eb03', 'from': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'to': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'value': 5096.703910957371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01144af9b38566353206', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:12:25.000Z'}}, {'blockNum': '0x637333', 'uniqueId': '0x162003c4836e912dcc17c2946da4d4a462c8649a5554293827197d2a19a0eb03:log:53', 'hash': '0x162003c4836e912dcc17c2946da4d4a462c8649a5554293827197d2a19a0eb03', 'from': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5096.703910957371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01144af9b38566353206', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:12:25.000Z'}}, {'blockNum': '0x637333', 'uniqueId': '0x162003c4836e912dcc17c2946da4d4a462c8649a5554293827197d2a19a0eb03:log:54', 'hash': '0x162003c4836e912dcc17c2946da4d4a462c8649a5554293827197d2a19a0eb03', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5096.703910957371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01144af9b38566353206', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:12:25.000Z'}}, {'blockNum': '0x637336', 'uniqueId': '0x208f1150c0230b0db2bde72639f18587015510b6184b8468bcec5ab66840954c:log:7', 'hash': '0x208f1150c0230b0db2bde72639f18587015510b6184b8468bcec5ab66840954c', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x7203841a3d0f4e9ce2ed0a043c3b03a7ec972767', 'value': 34457.36667718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x074bf005edf137e85800', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:12:54.000Z'}}, {'blockNum': '0x637336', 'uniqueId': '0x208f1150c0230b0db2bde72639f18587015510b6184b8468bcec5ab66840954c:log:8', 'hash': '0x208f1150c0230b0db2bde72639f18587015510b6184b8468bcec5ab66840954c', 'from': '0x7203841a3d0f4e9ce2ed0a043c3b03a7ec972767', 'to': '0xfc2b4d1ad1adc695092c1503eeb3f32a816e5651', 'value': 34457.36667718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x074bf005edf137e85800', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:12:54.000Z'}}, {'blockNum': '0x63733b', 'uniqueId': '0xecaf1e5f28514201f88b1a483b3a74452765d275a3bab68dedd1cb6c1f03cb0c:log:12', 'hash': '0xecaf1e5f28514201f88b1a483b3a74452765d275a3bab68dedd1cb6c1f03cb0c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe54c8a37fecb88dc9341199635d449577677ee28', 'value': 8262.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01bfe3abaf84a2e20000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:14:20.000Z'}}, {'blockNum': '0x63733d', 'uniqueId': '0xfef3699936b1328c9df2e773084a6c4f3c455ab6c56dcdd9a040ba8350d27e5a:log:1', 'hash': '0xfef3699936b1328c9df2e773084a6c4f3c455ab6c56dcdd9a040ba8350d27e5a', 'from': '0x276738b6bf9dba63e4786dc7b05b3e6bd2accc89', 'to': '0x753bc96b3731ed245b0b421664ed8b08fa62f61f', 'value': 750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x28a857425466f80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:14:45.000Z'}}, {'blockNum': '0x637340', 'uniqueId': '0x9bbf2ab3109abcbe3f9f73e949f75c9c96f3fafdb6a0958c12de6c026dbe940d:log:4', 'hash': '0x9bbf2ab3109abcbe3f9f73e949f75c9c96f3fafdb6a0958c12de6c026dbe940d', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 6357.687558856857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0158a6a38e4ed758a096', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:15:23.000Z'}}, {'blockNum': '0x637340', 'uniqueId': '0x9bbf2ab3109abcbe3f9f73e949f75c9c96f3fafdb6a0958c12de6c026dbe940d:log:6', 'hash': '0x9bbf2ab3109abcbe3f9f73e949f75c9c96f3fafdb6a0958c12de6c026dbe940d', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 6357.687558856857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0158a6a38e4ed758a096', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:15:23.000Z'}}, {'blockNum': '0x637340', 'uniqueId': '0x9bbf2ab3109abcbe3f9f73e949f75c9c96f3fafdb6a0958c12de6c026dbe940d:log:8', 'hash': '0x9bbf2ab3109abcbe3f9f73e949f75c9c96f3fafdb6a0958c12de6c026dbe940d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 6357.687558856857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0158a6a38e4ed758a096', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:15:23.000Z'}}, {'blockNum': '0x63734f', 'uniqueId': '0xab03c02d68f7b18de1d66ac85414e8ffbeb83fb105b550a96b9bdd8d1581199b:log:42', 'hash': '0xab03c02d68f7b18de1d66ac85414e8ffbeb83fb105b550a96b9bdd8d1581199b', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 74.99991591164053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0410d53a27b18047cf', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:18:02.000Z'}}, {'blockNum': '0x63734f', 'uniqueId': '0xab03c02d68f7b18de1d66ac85414e8ffbeb83fb105b550a96b9bdd8d1581199b:log:46', 'hash': '0xab03c02d68f7b18de1d66ac85414e8ffbeb83fb105b550a96b9bdd8d1581199b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x23fc6a1fda27e1d6d6018c868ba4dfe265d1bdb6', 'value': 74.99991591164053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0410d53a27b18047cf', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:18:02.000Z'}}, {'blockNum': '0x637352', 'uniqueId': '0xd5ffe44b8b865048d012f962b936c881da6394932a3cbb515c61a5a2cbfe0a9f:log:45', 'hash': '0xd5ffe44b8b865048d012f962b936c881da6394932a3cbb515c61a5a2cbfe0a9f', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5075.783451528406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011328a54c8304c1d47c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:18:44.000Z'}}, {'blockNum': '0x637352', 'uniqueId': '0xd5ffe44b8b865048d012f962b936c881da6394932a3cbb515c61a5a2cbfe0a9f:log:47', 'hash': '0xd5ffe44b8b865048d012f962b936c881da6394932a3cbb515c61a5a2cbfe0a9f', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5075.783451528406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011328a54c8304c1d47c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:18:44.000Z'}}, {'blockNum': '0x637352', 'uniqueId': '0xddfb818cfe295978a332f67685270f7ef7a9a584a4ad1cc7c85fcceb163c15ce:log:52', 'hash': '0xddfb818cfe295978a332f67685270f7ef7a9a584a4ad1cc7c85fcceb163c15ce', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5075.778375744953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01132893441d172c07a6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:18:44.000Z'}}, {'blockNum': '0x637352', 'uniqueId': '0xddfb818cfe295978a332f67685270f7ef7a9a584a4ad1cc7c85fcceb163c15ce:log:54', 'hash': '0xddfb818cfe295978a332f67685270f7ef7a9a584a4ad1cc7c85fcceb163c15ce', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5075.778375744953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01132893441d172c07a6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:18:44.000Z'}}, {'blockNum': '0x637354', 'uniqueId': '0x812a677d433bbd217e5fe1b9bff80b5c7d3d32e6120017ca2ffcc2654f93388f:log:2', 'hash': '0x812a677d433bbd217e5fe1b9bff80b5c7d3d32e6120017ca2ffcc2654f93388f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xad0a2478ba25816365aa0e32d77aff92b9e34efc', 'value': 28385.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0602c2650b4b746e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:18:56.000Z'}}, {'blockNum': '0x637365', 'uniqueId': '0x8ba338c6418c9809328ac550e4a035f5b5557f9430c99cb55e2a7e2e126b5811:log:14', 'hash': '0x8ba338c6418c9809328ac550e4a035f5b5557f9430c99cb55e2a7e2e126b5811', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5253.026798801514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011cc46429c7fb926000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:22:42.000Z'}}, {'blockNum': '0x637365', 'uniqueId': '0x8ba338c6418c9809328ac550e4a035f5b5557f9430c99cb55e2a7e2e126b5811:log:16', 'hash': '0x8ba338c6418c9809328ac550e4a035f5b5557f9430c99cb55e2a7e2e126b5811', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5253.026798801514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011cc46429c7fb926000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:22:42.000Z'}}, {'blockNum': '0x637368', 'uniqueId': '0x8c721791569dcdb618587ae89e90e567428dc1961fb886142d9d8b7eced38fad:log:19', 'hash': '0x8c721791569dcdb618587ae89e90e567428dc1961fb886142d9d8b7eced38fad', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5253.0215457747145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011cc451802e5f3bcd96', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:22:59.000Z'}}, {'blockNum': '0x637368', 'uniqueId': '0x8c721791569dcdb618587ae89e90e567428dc1961fb886142d9d8b7eced38fad:log:21', 'hash': '0x8c721791569dcdb618587ae89e90e567428dc1961fb886142d9d8b7eced38fad', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5253.0215457747145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011cc451802e5f3bcd96', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:22:59.000Z'}}, {'blockNum': '0x63736b', 'uniqueId': '0x996b93d000c36b59b3d147ef132eb9cb0dff46547b753655b60073bc43d1fa54:log:8', 'hash': '0x996b93d000c36b59b3d147ef132eb9cb0dff46547b753655b60073bc43d1fa54', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3530.023519237557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbf5cead7e160e69449', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:23:30.000Z'}}, {'blockNum': '0x63736b', 'uniqueId': '0x996b93d000c36b59b3d147ef132eb9cb0dff46547b753655b60073bc43d1fa54:log:10', 'hash': '0x996b93d000c36b59b3d147ef132eb9cb0dff46547b753655b60073bc43d1fa54', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 3530.023519237557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbf5cead7e160e69449', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:23:30.000Z'}}, {'blockNum': '0x637379', 'uniqueId': '0xf7eef65a0aeee14908c66d5e624b6f2d1f93415d6e79f7d3016a9b2ddcf9fb17:log:6', 'hash': '0xf7eef65a0aeee14908c66d5e624b6f2d1f93415d6e79f7d3016a9b2ddcf9fb17', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x7b0a1a62cc906d947212b9b94eb1a79c632a08a1', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:26:13.000Z'}}, {'blockNum': '0x637379', 'uniqueId': '0xf73f73638b6eccf9d748aa0897b0fb5829946a674a63a98d03ddbb892bfdc304:log:14', 'hash': '0xf73f73638b6eccf9d748aa0897b0fb5829946a674a63a98d03ddbb892bfdc304', 'from': '0x076fb9ca37a4367aa1682f937ccbcc44164e3012', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1461.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x4f3a630aa421660000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:26:13.000Z'}}, {'blockNum': '0x637379', 'uniqueId': '0x261939209085a378ba3defac3679a032c73fef5526e49349a4ceda604cffdebc:log:15', 'hash': '0x261939209085a378ba3defac3679a032c73fef5526e49349a4ceda604cffdebc', 'from': '0xa26c6e03b3f1f64806f64494c641dd720c369217', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 95000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x141df5d77c6d9d600000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:26:13.000Z'}}, {'blockNum': '0x637384', 'uniqueId': '0x36f0f50594e31c1cd6063c5503e87cf4c49deacda15ba23cc3ea8959f41d95a7:log:11', 'hash': '0x36f0f50594e31c1cd6063c5503e87cf4c49deacda15ba23cc3ea8959f41d95a7', 'from': '0xe54c8a37fecb88dc9341199635d449577677ee28', 'to': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'value': 8262.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01bfe3abaf84a2e20000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:29:27.000Z'}}, {'blockNum': '0x637398', 'uniqueId': '0xe25392d3c398ad0a7f0b433cae32ae9bdda3f842427cff1d3d2dbb977cf0bc15:log:8', 'hash': '0xe25392d3c398ad0a7f0b433cae32ae9bdda3f842427cff1d3d2dbb977cf0bc15', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x34faec67d181f7be107b156bf66a2a6b28113b05', 'value': 8237.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01be88b9d7f94a1e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:34:52.000Z'}}, {'blockNum': '0x6373ad', 'uniqueId': '0x48840c4dfa4266ea4a161259f0ddb4a090cb6d9420e66961af996f1babd9f8c3:log:13', 'hash': '0x48840c4dfa4266ea4a161259f0ddb4a090cb6d9420e66961af996f1babd9f8c3', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x0d20c9299dc1f75057833f9d4616232c6e864cc1', 'value': 1210.2051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x419af836823216c000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:39:24.000Z'}}, {'blockNum': '0x637401', 'uniqueId': '0xb4e5c17de9430e627cd70540f560a71d8c0b32685357bd60a9dfb778e1d82bb3:log:74', 'hash': '0xb4e5c17de9430e627cd70540f560a71d8c0b32685357bd60a9dfb778e1d82bb3', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5273.103461410477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011ddb02cc0da63ddd8f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:58:01.000Z'}}, {'blockNum': '0x637401', 'uniqueId': '0xb4e5c17de9430e627cd70540f560a71d8c0b32685357bd60a9dfb778e1d82bb3:log:76', 'hash': '0xb4e5c17de9430e627cd70540f560a71d8c0b32685357bd60a9dfb778e1d82bb3', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5273.103461410477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011ddb02cc0da63ddd8f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:58:01.000Z'}}, {'blockNum': '0x637401', 'uniqueId': '0x6cb36d13818bb0e733578f520538e9009ead7d6165c6ec5dcb0db9e39f60bdbb:log:81', 'hash': '0x6cb36d13818bb0e733578f520538e9009ead7d6165c6ec5dcb0db9e39f60bdbb', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5273.098188307016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011ddaf01031938f76e1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:58:01.000Z'}}, {'blockNum': '0x637401', 'uniqueId': '0x6cb36d13818bb0e733578f520538e9009ead7d6165c6ec5dcb0db9e39f60bdbb:log:83', 'hash': '0x6cb36d13818bb0e733578f520538e9009ead7d6165c6ec5dcb0db9e39f60bdbb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5273.098188307016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011ddaf01031938f76e1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:58:01.000Z'}}]}}
Number of returned transfers: 862
Answer is complete
symbol CND
group CCB
date 2018-10-20
hour 16:00
exchange binance
Name: 366, dtype: object
HERE
Symbol: CND, Contract: 0xec505c81d6a7567b5bde804870b1038832fe6da1
Datetime timestamps: 2018-10-20 16:00:00 2018-10-20 04:00:00 2018-10-21 04:00:00
Unix timestamps: 1540000800.0 1540087200.0
Hex Block Numbers: 0x63e874 0x64006a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers: 0
Answer is complete
symbol AST
group CCB
date 2019-03-02
hour 14:00
exchange binance
Name: 367, dtype: object
HERE
{'binance-smart-chain': '0x7ed86d2769fe9a2cad7bac4ceac45e40c82295d6'}
No contract for ethereum specified
{'okex-chain': '0x493d8cbd9533e57d4befb17cc2ec1db76828261d'}
No contract for ethereum specified
{'optimistic-ethereum': '0xb532178708814f0c174b29b991d2b355106afbc3', 'binance-smart-chain': '0xae10e5980f05a80ae09fd0e5bcda3dacd49aaec1'}
No contract for ethereum specified
Symbol: AST, Contract: 0x27054b13b1b798b345b591a4d22e6562d47ea75a
Datetime timestamps: 2019-03-02 14:00:00 2019-03-02 02:00:00 2019-03-03 02:00:00
Unix timestamps: 1551488400.0 1551574800.0
Hex Block Numbers: 0x6f3160 0x6f4a36
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x6f3276', 'uniqueId': '0x69786e61b23b176fb5a963ce7dcf49bdf2295c3c49b6fa0eef0e24877d139ae8:log:4', 'hash': '0x69786e61b23b176fb5a963ce7dcf49bdf2295c3c49b6fa0eef0e24877d139ae8', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xda64447d0db123635337da4c1400985bd5108537', 'value': 392.435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3be17e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:10:37.000Z'}}, {'blockNum': '0x6f32a8', 'uniqueId': '0x6fd5912189ee68a2ac75021a3cb4f51b0e558a396d047ca438e50273bdc19a47:log:15', 'hash': '0x6fd5912189ee68a2ac75021a3cb4f51b0e558a396d047ca438e50273bdc19a47', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 11010.0085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x068ffe75', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:19:02.000Z'}}, {'blockNum': '0x6f32a8', 'uniqueId': '0x6fd5912189ee68a2ac75021a3cb4f51b0e558a396d047ca438e50273bdc19a47:log:17', 'hash': '0x6fd5912189ee68a2ac75021a3cb4f51b0e558a396d047ca438e50273bdc19a47', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xb3b08089acd17805a3a538211f12694717deeef5', 'value': 11010.0085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x068ffe75', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:19:02.000Z'}}, {'blockNum': '0x6f32a9', 'uniqueId': '0xfd1302a20e7080313dc3b89eba4523edd3e37aa0ece27c7531dae0087c3d3dcd:log:3', 'hash': '0xfd1302a20e7080313dc3b89eba4523edd3e37aa0ece27c7531dae0087c3d3dcd', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1708.0475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0104a09b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:19:05.000Z'}}, {'blockNum': '0x6f32af', 'uniqueId': '0x96f3a16c3a2048b59d4f524152bb6361b200aaac3238fcf7d54b0a0532149c86:log:34', 'hash': '0x96f3a16c3a2048b59d4f524152bb6361b200aaac3238fcf7d54b0a0532149c86', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 84205.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3230b970', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:20:34.000Z'}}, {'blockNum': '0x6f32b2', 'uniqueId': '0xdb8b2f713d12847ee83701c24c1266bac598be6cfe63303a0881bfd283e5a8a4:log:19', 'hash': '0xdb8b2f713d12847ee83701c24c1266bac598be6cfe63303a0881bfd283e5a8a4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1199.0532, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xb6f604', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:21:18.000Z'}}, {'blockNum': '0x6f32b7', 'uniqueId': '0xd3fdfcf85e3dfd12c0b466f8f111d7089aa990fcfa9c7bad5f73dbebe4cc9a5e:log:26', 'hash': '0xd3fdfcf85e3dfd12c0b466f8f111d7089aa990fcfa9c7bad5f73dbebe4cc9a5e', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1199.0532, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xb6f604', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:22:12.000Z'}}, {'blockNum': '0x6f32bf', 'uniqueId': '0x45f83da08e59f0b86bc6a6b29137458beede7b15edd674921ea48d32b883e458:log:77', 'hash': '0x45f83da08e59f0b86bc6a6b29137458beede7b15edd674921ea48d32b883e458', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1708.0475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0104a09b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:24:06.000Z'}}, {'blockNum': '0x6f330b', 'uniqueId': '0xe52326f108fff94a2ab3950850bbd8c247d8d388faba9fcfe6030c06b76b36bd:log:63', 'hash': '0xe52326f108fff94a2ab3950850bbd8c247d8d388faba9fcfe6030c06b76b36bd', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x53bea520407bbefb24366cd35542eaebe9acf5dc', 'value': 1298.4266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc61fca', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:42:27.000Z'}}, {'blockNum': '0x6f330e', 'uniqueId': '0xf2a7980c5e433e4d4d7ef0db52bcae59dea6cf5b13ecef62cdb08498e7b470e1:log:14', 'hash': '0xf2a7980c5e433e4d4d7ef0db52bcae59dea6cf5b13ecef62cdb08498e7b470e1', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x7f8e0c4ccafd16e92b6bfbd49ff316872166640a', 'value': 1671.5373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xff0e6d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:42:56.000Z'}}, {'blockNum': '0x6f330e', 'uniqueId': '0x549d304051edfa3c00902f2190cb0f819f7f309c4d8e442d19c9f4c3ecb87f22:log:52', 'hash': '0x549d304051edfa3c00902f2190cb0f819f7f309c4d8e442d19c9f4c3ecb87f22', 'from': '0x53bea520407bbefb24366cd35542eaebe9acf5dc', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1298.4266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc61fca', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:42:56.000Z'}}, {'blockNum': '0x6f3314', 'uniqueId': '0x156462996eebe67428955fbb8628475497aae7e5a5e87967f729a46d547b2cfd:log:41', 'hash': '0x156462996eebe67428955fbb8628475497aae7e5a5e87967f729a46d547b2cfd', 'from': '0x7f8e0c4ccafd16e92b6bfbd49ff316872166640a', 'to': '0x43b9f9eaf7259cdfbd3158d8b5d6576245946a9c', 'value': 1671.5373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xff0e6d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:43:48.000Z'}}, {'blockNum': '0x6f3349', 'uniqueId': '0x3207e3ef0ea93bfb32fa735e4b8d95496639bc45961666e8e49cc41e88b1946a:log:10', 'hash': '0x3207e3ef0ea93bfb32fa735e4b8d95496639bc45961666e8e49cc41e88b1946a', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84205.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3230b970', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:55:22.000Z'}}, {'blockNum': '0x6f33a4', 'uniqueId': '0x16e46bc3d670afd831cc9ed25b6fddcb239a17481405787612e034e233f805ca:log:52', 'hash': '0x16e46bc3d670afd831cc9ed25b6fddcb239a17481405787612e034e233f805ca', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1298.4266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc61fca', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T03:14:51.000Z'}}, {'blockNum': '0x6f350c', 'uniqueId': '0xdde6ad679a5c75b43577e583b11e277cad80b880e18b2725af49ca6aed3e03c8:log:111', 'hash': '0xdde6ad679a5c75b43577e583b11e277cad80b880e18b2725af49ca6aed3e03c8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x35e3863c10cbf0f9f7984dc953505bfa82ef3a64', 'value': 4892.142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02ea7b4c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T04:34:43.000Z'}}, {'blockNum': '0x6f3549', 'uniqueId': '0x14c24c50d49b97454564569e71cd44c4f692c93ca29a5b6f9d0e60a0b273d9ba:log:51', 'hash': '0x14c24c50d49b97454564569e71cd44c4f692c93ca29a5b6f9d0e60a0b273d9ba', 'from': '0x453e025f8e7518e66331044402a0ea1b97d6eaab', 'to': '0x49eebd7b55c8ccc87744be0d8853e7442415c7a1', 'value': 1620, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xf73140', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T04:49:19.000Z'}}, {'blockNum': '0x6f35b9', 'uniqueId': '0x1b4757945a7da02432b8852e23ea131d8125f016f08fc3cce460517fd2f8abe3:log:13', 'hash': '0x1b4757945a7da02432b8852e23ea131d8125f016f08fc3cce460517fd2f8abe3', 'from': '0x49eebd7b55c8ccc87744be0d8853e7442415c7a1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1620, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xf73140', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T05:15:14.000Z'}}, {'blockNum': '0x6f3669', 'uniqueId': '0x1f579c8118e7d78dd36412d9532bad78ed5b1805a5086f60e31bf5e1a2b42e61:log:53', 'hash': '0x1f579c8118e7d78dd36412d9532bad78ed5b1805a5086f60e31bf5e1a2b42e61', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 816.0459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7c84cb', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T05:52:29.000Z'}}, {'blockNum': '0x6f36bc', 'uniqueId': '0xcbe38fe227fd2f6c71885a7f2a0fd77c1e25a27e069158f452acb85abbc60da0:log:13', 'hash': '0xcbe38fe227fd2f6c71885a7f2a0fd77c1e25a27e069158f452acb85abbc60da0', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 816.0459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7c84cb', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T06:10:27.000Z'}}, {'blockNum': '0x6f3974', 'uniqueId': '0x48c96a43f83e897d9173f1cc6f7bfd270ad152b89e28894032d1ed733d500a82:log:10', 'hash': '0x48c96a43f83e897d9173f1cc6f7bfd270ad152b89e28894032d1ed733d500a82', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 69519.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x296fe518', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T08:45:58.000Z'}}, {'blockNum': '0x6f39fa', 'uniqueId': '0xddd3eebe73e7346aca05e19b05693be9dde53ac6a56acae919040b2019c79d11:log:35', 'hash': '0xddd3eebe73e7346aca05e19b05693be9dde53ac6a56acae919040b2019c79d11', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 69519.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x296fe518', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T09:15:09.000Z'}}, {'blockNum': '0x6f3a17', 'uniqueId': '0x771b1e0d61417340f80c64f6e05412d909f963fdb47ab550573648310deac8f9:log:66', 'hash': '0x771b1e0d61417340f80c64f6e05412d909f963fdb47ab550573648310deac8f9', 'from': '0xb91e80a4d98023c4c431a12e376b3b0e4dc9de70', 'to': '0xac4682db6eb5083e64f9a05859da6eff0fd8ed91', 'value': 3300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f78a40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T09:21:57.000Z'}}, {'blockNum': '0x6f3b0b', 'uniqueId': '0xac8f93a1ffd5006e9297acdae64868695a4fcd6604b8b690670b844922870485:log:16', 'hash': '0xac8f93a1ffd5006e9297acdae64868695a4fcd6604b8b690670b844922870485', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1263.5016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc0cb88', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T10:15:05.000Z'}}, {'blockNum': '0x6f3b0b', 'uniqueId': '0xa6a45824c498b2bc1517005134926a35e5ac68c421a466480efce117822eee97:log:17', 'hash': '0xa6a45824c498b2bc1517005134926a35e5ac68c421a466480efce117822eee97', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1326.7726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xca730e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T10:15:05.000Z'}}, {'blockNum': '0x6f3b10', 'uniqueId': '0xa170a3edf0ddfaad6691f95a24903c2701becad214eb7adb3df6fffa7f0423d3:log:19', 'hash': '0xa170a3edf0ddfaad6691f95a24903c2701becad214eb7adb3df6fffa7f0423d3', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1326.7726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xca730e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T10:16:04.000Z'}}, {'blockNum': '0x6f3b34', 'uniqueId': '0xa335b3945a52881aa65cfa2a16aa2cabf58b548403a053656c133068fd8c3956:log:83', 'hash': '0xa335b3945a52881aa65cfa2a16aa2cabf58b548403a053656c133068fd8c3956', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1263.5016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc0cb88', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T10:23:55.000Z'}}, {'blockNum': '0x6f3c12', 'uniqueId': '0x673c153c77bd8514c22ef25782d5e1257e70cd0e32c6b4de69f62ca90d04a12d:log:3', 'hash': '0x673c153c77bd8514c22ef25782d5e1257e70cd0e32c6b4de69f62ca90d04a12d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xff9b53a7586d4d82d62cd7eb0b0acaa16d9215c3', 'value': 350.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x358338', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T11:16:13.000Z'}}, {'blockNum': '0x6f3d56', 'uniqueId': '0xac6796053cf230e236e78c75fcf7c1e90eb9388e126ba9bcd12c089e8d58a07a:log:51', 'hash': '0xac6796053cf230e236e78c75fcf7c1e90eb9388e126ba9bcd12c089e8d58a07a', 'from': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'to': '0x65064eb78544fb34e9d37d18c59c67bd9abd6f80', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a1200', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T12:27:57.000Z'}}, {'blockNum': '0x6f3d5e', 'uniqueId': '0x84e10be3f7b0c750e36d1c09d8202f19597992d230b2222c1fc923bcba2dc6f4:log:33', 'hash': '0x84e10be3f7b0c750e36d1c09d8202f19597992d230b2222c1fc923bcba2dc6f4', 'from': '0x65064eb78544fb34e9d37d18c59c67bd9abd6f80', 'to': '0x4b327ee88d48acc116643f80a4674a5c5b3b53f7', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a1200', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T12:29:45.000Z'}}, {'blockNum': '0x6f3d86', 'uniqueId': '0x73e9e8d1c4d46e6ade37ea41cbbc1ebf22b5eb5412dffcbbf90743824d4844cf:log:6', 'hash': '0x73e9e8d1c4d46e6ade37ea41cbbc1ebf22b5eb5412dffcbbf90743824d4844cf', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2328.1855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x016340bf', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T12:38:08.000Z'}}, {'blockNum': '0x6f3d8e', 'uniqueId': '0xe85504bb38efd51407798f00c29a5b2aa2f8cb6340e2bfe56d478f3af101c4cf:log:77', 'hash': '0xe85504bb38efd51407798f00c29a5b2aa2f8cb6340e2bfe56d478f3af101c4cf', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x9db8ca3403c1ed8f0afbef5c800850c72812cba0', 'value': 2328.1855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x016340bf', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T12:39:54.000Z'}}, {'blockNum': '0x6f3e29', 'uniqueId': '0x4bd4fc89d3c2dc2e5dc570ba9384b042accd692cb8fb7ee45914fe4fd4d34a64:log:5', 'hash': '0x4bd4fc89d3c2dc2e5dc570ba9384b042accd692cb8fb7ee45914fe4fd4d34a64', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:11:46.000Z'}}, {'blockNum': '0x6f3e2e', 'uniqueId': '0x8d7e30cc4a5dd4ecb1097c2a8216359bb199912c572fc990678597f32743bc74:log:12', 'hash': '0x8d7e30cc4a5dd4ecb1097c2a8216359bb199912c572fc990678597f32743bc74', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'value': 64568.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x267c5f08', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:13:14.000Z'}}, {'blockNum': '0x6f3e43', 'uniqueId': '0xe19135378314ca67e6b92a08f2e47af3d969e955e5fdd30656ca2cf728037375:log:112', 'hash': '0xe19135378314ca67e6b92a08f2e47af3d969e955e5fdd30656ca2cf728037375', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'value': 6211.8675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03b3db13', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:17:23.000Z'}}, {'blockNum': '0x6f3e45', 'uniqueId': '0x0a6ade57bbaec7674fd6d60a8658ce82db4ae50de15ca812345a10fdd231e27e:log:41', 'hash': '0x0a6ade57bbaec7674fd6d60a8658ce82db4ae50de15ca812345a10fdd231e27e', 'from': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'to': '0x1655ddd39b423671627f9e9fc810499c79cf019b', 'value': 6211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03b3b930', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:18:40.000Z'}}, {'blockNum': '0x6f3e63', 'uniqueId': '0x0782d39f8de524391fef0aeeca8ed0364be45a4f8bb2d578f14fb37e33bb7581:log:54', 'hash': '0x0782d39f8de524391fef0aeeca8ed0364be45a4f8bb2d578f14fb37e33bb7581', 'from': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 64568.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x267c5f08', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:24:16.000Z'}}, {'blockNum': '0x6f3e75', 'uniqueId': '0xb8d172124aa02fe9afb359ee5b35c40499f3e8ece133fe728ba902100f42b664:log:51', 'hash': '0xb8d172124aa02fe9afb359ee5b35c40499f3e8ece133fe728ba902100f42b664', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:29:14.000Z'}}, {'blockNum': '0x6f3e7a', 'uniqueId': '0xcb8e1f3054cefab92bc585478cca3a3fd77a4c967c30753becced3e0a798294a:log:58', 'hash': '0xcb8e1f3054cefab92bc585478cca3a3fd77a4c967c30753becced3e0a798294a', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x04c7545836d66a24d33f4d678da1082e03e14a43', 'value': 908.1394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x8a9232', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:29:52.000Z'}}, {'blockNum': '0x6f3e7d', 'uniqueId': '0x2caabda1590fd6c44ce02b357a622ca6c3b06a14e538e87843a83d477472a873:log:3', 'hash': '0x2caabda1590fd6c44ce02b357a622ca6c3b06a14e538e87843a83d477472a873', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 41301.3193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x189e14c9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:30:46.000Z'}}, {'blockNum': '0x6f3e7e', 'uniqueId': '0x12ace9bccad98b6450410a5e871cac71bb153f9f041c4cfcd06f183d42a78749:log:92', 'hash': '0x12ace9bccad98b6450410a5e871cac71bb153f9f041c4cfcd06f183d42a78749', 'from': '0x04c7545836d66a24d33f4d678da1082e03e14a43', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 908.1394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x8a9232', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:30:50.000Z'}}, {'blockNum': '0x6f3e81', 'uniqueId': '0x04070084049697f5e6771b9a97b738f53edd632cdffe12138b3e91dda8c3f579:log:44', 'hash': '0x04070084049697f5e6771b9a97b738f53edd632cdffe12138b3e91dda8c3f579', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x517592f478aa8c8d5ea0b6f8bb6998a4682aa031', 'value': 41301.3193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x189e14c9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:31:15.000Z'}}, {'blockNum': '0x6f3e91', 'uniqueId': '0x96d315551e2644d5c26a3c967d35b71be3f1f2fd66e126738b4a8c8ae6b22f75:log:57', 'hash': '0x96d315551e2644d5c26a3c967d35b71be3f1f2fd66e126738b4a8c8ae6b22f75', 'from': '0xda42850bdd7353478edd2c05fa67d7a6c9175d56', 'to': '0xe0a4306597cecd887479b3ebebff82feab55e6ed', 'value': 55651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x212bab30', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:35:33.000Z'}}, {'blockNum': '0x6f3ea1', 'uniqueId': '0xb025fdabf0c8c360ec87d6218d168ac4004185ec8ac69e7d561c9495a9f124a7:log:2', 'hash': '0xb025fdabf0c8c360ec87d6218d168ac4004185ec8ac69e7d561c9495a9f124a7', 'from': '0x517592f478aa8c8d5ea0b6f8bb6998a4682aa031', 'to': '0x6b8407fa9180d458c7a900db228e7904c43eee21', 'value': 41301.3193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x189e14c9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:38:10.000Z'}}, {'blockNum': '0x6f3ea5', 'uniqueId': '0x8049cb6141fdd6037fece4750772af8e7888a0e147640f77cfa7e05154802aba:log:47', 'hash': '0x8049cb6141fdd6037fece4750772af8e7888a0e147640f77cfa7e05154802aba', 'from': '0x6b8407fa9180d458c7a900db228e7904c43eee21', 'to': '0x43b9f9eaf7259cdfbd3158d8b5d6576245946a9c', 'value': 41301.3193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x189e14c9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:38:26.000Z'}}, {'blockNum': '0x6f3ebf', 'uniqueId': '0x945ed2f6c27e583f82aac5e9809ae16057756dc03ecd15be60558645c44a89d4:log:37', 'hash': '0x945ed2f6c27e583f82aac5e9809ae16057756dc03ecd15be60558645c44a89d4', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x062438b34c54858d8df67adea9b5cac6ed3b4471', 'value': 1249.0904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xbe9898', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:43:48.000Z'}}, {'blockNum': '0x6f3ec5', 'uniqueId': '0xcfc97bcb6585933890b7c11e75de88fab28787b076be4c4c65d381b5ec5cd34b:log:11', 'hash': '0xcfc97bcb6585933890b7c11e75de88fab28787b076be4c4c65d381b5ec5cd34b', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0206cc80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:45:05.000Z'}}, {'blockNum': '0x6f3ec5', 'uniqueId': '0xcfc97bcb6585933890b7c11e75de88fab28787b076be4c4c65d381b5ec5cd34b:log:12', 'hash': '0xcfc97bcb6585933890b7c11e75de88fab28787b076be4c4c65d381b5ec5cd34b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0206cc80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:45:05.000Z'}}, {'blockNum': '0x6f3ecd', 'uniqueId': '0x3936bad4df4987c1b00acd60829f61333a1ad88943a885d5f12b2edf127bc2de:log:90', 'hash': '0x3936bad4df4987c1b00acd60829f61333a1ad88943a885d5f12b2edf127bc2de', 'from': '0x062438b34c54858d8df67adea9b5cac6ed3b4471', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1249.0904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xbe9898', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:46:24.000Z'}}, {'blockNum': '0x6f3eed', 'uniqueId': '0x6f5f1f09bc1b2630fd12681e5adee431f37448d00fe204bb4590a64891ab4df1:log:74', 'hash': '0x6f5f1f09bc1b2630fd12681e5adee431f37448d00fe204bb4590a64891ab4df1', 'from': '0xfc644ea1a3fe5e7854be5431078803d1cbee6bee', 'to': '0x1550d41be3651686e1aeeea073d8d403d0bd2e30', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:54:30.000Z'}}, {'blockNum': '0x6f3eef', 'uniqueId': '0x45361e23b168bf56c8d0600273b6dc02a427258a693fda137b079a01f7664ed1:log:23', 'hash': '0x45361e23b168bf56c8d0600273b6dc02a427258a693fda137b079a01f7664ed1', 'from': '0x1655ddd39b423671627f9e9fc810499c79cf019b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03b3b930', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:54:56.000Z'}}, {'blockNum': '0x6f3eef', 'uniqueId': '0x80e3f36bd5a24f38a0c9d634ee019066c24ab1a6d4004af0c4e47d4cec3e85a0:log:38', 'hash': '0x80e3f36bd5a24f38a0c9d634ee019066c24ab1a6d4004af0c4e47d4cec3e85a0', 'from': '0xe0a4306597cecd887479b3ebebff82feab55e6ed', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 55651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x212bab30', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:54:56.000Z'}}, {'blockNum': '0x6f3eef', 'uniqueId': '0x02a7ff1d26a417c3d8e0f5e9646051b0b8654cda7bd23b08c45feaeac1657d5e:log:39', 'hash': '0x02a7ff1d26a417c3d8e0f5e9646051b0b8654cda7bd23b08c45feaeac1657d5e', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2157.2298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01492aca', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:54:56.000Z'}}, {'blockNum': '0x6f3f0a', 'uniqueId': '0x352ab19a08dc415ce73acf55da53834daea57bd9d7515e9368c696894023abe8:log:45', 'hash': '0x352ab19a08dc415ce73acf55da53834daea57bd9d7515e9368c696894023abe8', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:01:53.000Z'}}, {'blockNum': '0x6f3f0b', 'uniqueId': '0x5c117a4023ab4e36408f2f91f9a2fb7a427440a76139c8518c720e8bb1d182b8:log:11', 'hash': '0x5c117a4023ab4e36408f2f91f9a2fb7a427440a76139c8518c720e8bb1d182b8', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 8736.6142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x053519fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:02:17.000Z'}}, {'blockNum': '0x6f3f0b', 'uniqueId': '0x5c117a4023ab4e36408f2f91f9a2fb7a427440a76139c8518c720e8bb1d182b8:log:13', 'hash': '0x5c117a4023ab4e36408f2f91f9a2fb7a427440a76139c8518c720e8bb1d182b8', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x1edb2378e2f5671b98f3093e9f9671df4e07c4a4', 'value': 8736.6142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x053519fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:02:17.000Z'}}, {'blockNum': '0x6f3f0c', 'uniqueId': '0x14b4f32e6e6d60367bf8b15f98c46cc8f29519740a7062a65b9b4fdaa27b33ea:log:32', 'hash': '0x14b4f32e6e6d60367bf8b15f98c46cc8f29519740a7062a65b9b4fdaa27b33ea', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'value': 30275.6449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x120bb261', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:02:45.000Z'}}, {'blockNum': '0x6f3f11', 'uniqueId': '0x49e09d6bd41b4dce56f4abd115a7789a63259cdc3c288fdfe8ba09b16083492a:log:216', 'hash': '0x49e09d6bd41b4dce56f4abd115a7789a63259cdc3c288fdfe8ba09b16083492a', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9e9aede219c3074c9ad1e85bfa52fcf5f3cfd66e', 'value': 3956.1564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x025ba95c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:03:22.000Z'}}, {'blockNum': '0x6f3f13', 'uniqueId': '0xce89fa86c4b7e31581e879cd96ad4b68b7b33969218008c97b527e45d3c60ac3:log:5', 'hash': '0xce89fa86c4b7e31581e879cd96ad4b68b7b33969218008c97b527e45d3c60ac3', 'from': '0x1edb2378e2f5671b98f3093e9f9671df4e07c4a4', 'to': '0x373b902817b5943b939606fd07e3b58f5704f1c0', 'value': 8736.614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x053519fc', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:32.000Z'}}, {'blockNum': '0x6f3f14', 'uniqueId': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae:log:47', 'hash': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4467.3564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a9aa1c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:34.000Z'}}, {'blockNum': '0x6f3f14', 'uniqueId': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae:log:49', 'hash': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x82da82dbe384736e4dd95615d8036cc472773f5a', 'value': 4467.3564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a9aa1c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:34.000Z'}}, {'blockNum': '0x6f3f14', 'uniqueId': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae:log:54', 'hash': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae', 'from': '0x82da82dbe384736e4dd95615d8036cc472773f5a', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4467.3117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a9a85d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:34.000Z'}}, {'blockNum': '0x6f3f14', 'uniqueId': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae:log:55', 'hash': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 4467.3117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a9a85d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:34.000Z'}}, {'blockNum': '0x6f3f17', 'uniqueId': '0x4b897c8bbd7a473b1aef05c243da72cedc660cc6970265f9434c434dd3e95c0a:log:217', 'hash': '0x4b897c8bbd7a473b1aef05c243da72cedc660cc6970265f9434c434dd3e95c0a', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0206cc80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:52.000Z'}}, {'blockNum': '0x6f3f17', 'uniqueId': '0x4b897c8bbd7a473b1aef05c243da72cedc660cc6970265f9434c434dd3e95c0a:log:218', 'hash': '0x4b897c8bbd7a473b1aef05c243da72cedc660cc6970265f9434c434dd3e95c0a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 3400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0206cc80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:52.000Z'}}, {'blockNum': '0x6f3f1a', 'uniqueId': '0xe8c258f95db3a59d69f171fcda2d903f7378f52eaaf91a6c68e624027e0d4acf:log:73', 'hash': '0xe8c258f95db3a59d69f171fcda2d903f7378f52eaaf91a6c68e624027e0d4acf', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 49446.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1d78f7b8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:05:40.000Z'}}, {'blockNum': '0x6f3f1b', 'uniqueId': '0xb51f84f88eda96bed1d6fb6ad7f7ee71d005598bb2304f4faddd84a40bf21ba0:log:9', 'hash': '0xb51f84f88eda96bed1d6fb6ad7f7ee71d005598bb2304f4faddd84a40bf21ba0', 'from': '0x9e9aede219c3074c9ad1e85bfa52fcf5f3cfd66e', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 3956.1564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x025ba95c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:06:21.000Z'}}, {'blockNum': '0x6f3f27', 'uniqueId': '0x6e65237e4d71fe2d0ffc696355592087e174721a2d04e949cf1a7e2ce6084e99:log:9', 'hash': '0x6e65237e4d71fe2d0ffc696355592087e174721a2d04e949cf1a7e2ce6084e99', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd73325ba5dc21ec50e7607906a47114669ed2d68', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a1200', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:09:10.000Z'}}, {'blockNum': '0x6f3f31', 'uniqueId': '0x76c4c6fa80335a02b486b3b4f9c14e722c3324c2183cd0ce51ae8b992bbb9d2d:log:16', 'hash': '0x76c4c6fa80335a02b486b3b4f9c14e722c3324c2183cd0ce51ae8b992bbb9d2d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 806.3319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7b0957', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:11:20.000Z'}}, {'blockNum': '0x6f3f46', 'uniqueId': '0xa0f2e2c8e52aab54862c1241bec0ddd0ca8914b70775a877e891bb182b925f9b:log:24', 'hash': '0xa0f2e2c8e52aab54862c1241bec0ddd0ca8914b70775a877e891bb182b925f9b', 'from': '0x35e3863c10cbf0f9f7984dc953505bfa82ef3a64', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01312d00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:16:48.000Z'}}, {'blockNum': '0x6f3f46', 'uniqueId': '0xa0f2e2c8e52aab54862c1241bec0ddd0ca8914b70775a877e891bb182b925f9b:log:25', 'hash': '0xa0f2e2c8e52aab54862c1241bec0ddd0ca8914b70775a877e891bb182b925f9b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01312d00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:16:48.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0xf782cf6a5f2e98cf1a2bfc58ba8e43f18016edea10d2872b38704a5cddc7729b:log:13', 'hash': '0xf782cf6a5f2e98cf1a2bfc58ba8e43f18016edea10d2872b38704a5cddc7729b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0x07fd87d23fc6be13b54ae261f86bc0b3606306fda94fdf22039669597b6571d8:log:47', 'hash': '0x07fd87d23fc6be13b54ae261f86bc0b3606306fda94fdf22039669597b6571d8', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 49446.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1d78f7b8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0x121e224484cbd69d696d2733fbf718ade68f7c329d804e5a28f71195085c1d51:log:50', 'hash': '0x121e224484cbd69d696d2733fbf718ade68f7c329d804e5a28f71195085c1d51', 'from': '0xf5177ebddc0b0d68959d7f8d0c6c55d3fdb6a871', 'to': '0x1298e52973ea951fdcec9e71e879dc603b27bff1', 'value': 8282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04efbba0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0x825cd2379cac35bd291488b49a6e5a48cd30d6d02c87167a363e028a3b60ccff:log:123', 'hash': '0x825cd2379cac35bd291488b49a6e5a48cd30d6d02c87167a363e028a3b60ccff', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x015752a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0x825cd2379cac35bd291488b49a6e5a48cd30d6d02c87167a363e028a3b60ccff:log:124', 'hash': '0x825cd2379cac35bd291488b49a6e5a48cd30d6d02c87167a363e028a3b60ccff', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x015752a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f5f', 'uniqueId': '0xaca03c5285d39f5f37b1b11dcc05d6fb2f14b06b75d91df69be29ad26fe39351:log:52', 'hash': '0xaca03c5285d39f5f37b1b11dcc05d6fb2f14b06b75d91df69be29ad26fe39351', 'from': '0x0378ed3c26c6d33d056ff54f6c34d918160dc296', 'to': '0x0f43e914e155acbaf69cc32052eaf53e98f6302f', 'value': 213.424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2090e0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:23:31.000Z'}}, {'blockNum': '0x6f3f60', 'uniqueId': '0x686ead92bb973ea5c920308e5a268da1a4217ffddf9e8af0a98f953270536d77:log:3', 'hash': '0x686ead92bb973ea5c920308e5a268da1a4217ffddf9e8af0a98f953270536d77', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:24:24.000Z'}}, {'blockNum': '0x6f3f60', 'uniqueId': '0x18710784e1cca0d39a330699a7422ad9e37c80a2add907fb03b5798761516c70:log:16', 'hash': '0x18710784e1cca0d39a330699a7422ad9e37c80a2add907fb03b5798761516c70', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 806.3319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7b0957', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:24:24.000Z'}}, {'blockNum': '0x6f3f72', 'uniqueId': '0x969244a10ea51f6113ba40f8fa099b678e118694424b2a503a7a276919dd50bc:log:31', 'hash': '0x969244a10ea51f6113ba40f8fa099b678e118694424b2a503a7a276919dd50bc', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:28:27.000Z'}}, {'blockNum': '0x6f3f7b', 'uniqueId': '0x3fc841dc6bed970ad7766e1ffbb73770fd3c1fe31956357d765126bd06d054e9:log:81', 'hash': '0x3fc841dc6bed970ad7766e1ffbb73770fd3c1fe31956357d765126bd06d054e9', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0xcde67ff71a0f40eef7fcd03992a300bfb63cf0c0', 'value': 1800.4222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0112b8fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:29:45.000Z'}}, {'blockNum': '0x6f3f81', 'uniqueId': '0xb956cb29ae5051dde023e8374adb86bc318613049a03c1fbe7cb4cbc5119331b:log:81', 'hash': '0xb956cb29ae5051dde023e8374adb86bc318613049a03c1fbe7cb4cbc5119331b', 'from': '0xcde67ff71a0f40eef7fcd03992a300bfb63cf0c0', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1800.4222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0112b8fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:30:44.000Z'}}, {'blockNum': '0x6f3f86', 'uniqueId': '0x3c8fd5b4432abfcabe986fb1e5a52b07940baa5c570f0a25a4f9da60910841be:log:55', 'hash': '0x3c8fd5b4432abfcabe986fb1e5a52b07940baa5c570f0a25a4f9da60910841be', 'from': '0x6cac5eeb01d56e889afac1f8d7f6666b344225e3', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 184.9603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1c3903', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:32:25.000Z'}}, {'blockNum': '0x6f3f86', 'uniqueId': '0x3c8fd5b4432abfcabe986fb1e5a52b07940baa5c570f0a25a4f9da60910841be:log:56', 'hash': '0x3c8fd5b4432abfcabe986fb1e5a52b07940baa5c570f0a25a4f9da60910841be', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 184.9603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1c3903', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:32:25.000Z'}}, {'blockNum': '0x6f3f91', 'uniqueId': '0x411e54f1cb6f5f50dd4611f8882c2663e25a0519c96172dacc805b7e3f4a8592:log:6', 'hash': '0x411e54f1cb6f5f50dd4611f8882c2663e25a0519c96172dacc805b7e3f4a8592', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3956.1564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x025ba95c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:35:03.000Z'}}, {'blockNum': '0x6f3f91', 'uniqueId': '0xd19ee192b51149638715aae762872af15f1e06a7710b9c96aca2bbb10af066fc:log:15', 'hash': '0xd19ee192b51149638715aae762872af15f1e06a7710b9c96aca2bbb10af066fc', 'from': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30275.6449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x120bb261', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:35:03.000Z'}}, {'blockNum': '0x6f3f91', 'uniqueId': '0xeb1058686fe54cdaa1762f5798843ba039dd35360800307bc1f9d86b9adc4483:log:16', 'hash': '0xeb1058686fe54cdaa1762f5798843ba039dd35360800307bc1f9d86b9adc4483', 'from': '0x373b902817b5943b939606fd07e3b58f5704f1c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8736.614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x053519fc', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:35:03.000Z'}}, {'blockNum': '0x6f3fa0', 'uniqueId': '0x512cdbf1ebbe09fec9478dcfcefeb4eb5dd6c352100033f692b92dd60747c14c:log:8', 'hash': '0x512cdbf1ebbe09fec9478dcfcefeb4eb5dd6c352100033f692b92dd60747c14c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:39:13.000Z'}}, {'blockNum': '0x6f3fac', 'uniqueId': '0xf88de66a1183b91ea629e6eac39536251613f148b95f17a06798e9242e8aae27:log:40', 'hash': '0xf88de66a1183b91ea629e6eac39536251613f148b95f17a06798e9242e8aae27', 'from': '0x1298e52973ea951fdcec9e71e879dc603b27bff1', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 8282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04efbba0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:42:18.000Z'}}, {'blockNum': '0x6f3fb2', 'uniqueId': '0xd784f54290de25582381922e14917bf0ff48c7ba45af0bf7d765f9e2732a667f:log:11', 'hash': '0xd784f54290de25582381922e14917bf0ff48c7ba45af0bf7d765f9e2732a667f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 7058.6999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04351277', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:44:13.000Z'}}, {'blockNum': '0x6f3fb2', 'uniqueId': '0x9059b8f0cfb4b6d09d380d8c605935f770b53fc3b9137cb4c2882c5abdeb2939:log:12', 'hash': '0x9059b8f0cfb4b6d09d380d8c605935f770b53fc3b9137cb4c2882c5abdeb2939', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7dd14ea7767e0990a0bbed5f5bd4aa4bb55ed1b5', 'value': 4322.1143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02938097', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:44:13.000Z'}}, {'blockNum': '0x6f3fb5', 'uniqueId': '0xa2a7f368f8d4810183d21f210db579ebeaf2a6457752296a5c30750652d437a5:log:36', 'hash': '0xa2a7f368f8d4810183d21f210db579ebeaf2a6457752296a5c30750652d437a5', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x23c34600', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:45:28.000Z'}}, {'blockNum': '0x6f3fb6', 'uniqueId': '0xd1829cced9c4a5e5d5bdf5b492f4fe103b131effb212833e69bbe6ad7c9a6eac:log:41', 'hash': '0xd1829cced9c4a5e5d5bdf5b492f4fe103b131effb212833e69bbe6ad7c9a6eac', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x5f82d3b98502ddb40f3043c5f47a8dd61d3b9856', 'value': 7058.6999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04351277', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:45:39.000Z'}}, {'blockNum': '0x6f3fbc', 'uniqueId': '0x36a6ef4b28fab6dea75aed928c67342eb4995048e3af6c6ef5277fa633ef3617:log:57', 'hash': '0x36a6ef4b28fab6dea75aed928c67342eb4995048e3af6c6ef5277fa633ef3617', 'from': '0xad12513975e2713a5f95871992624fc0fed9ffdb', 'to': '0x413fea4b3952d3b4e76a82221430c15db36bfa07', 'value': 3300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f78a40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:47:56.000Z'}}, {'blockNum': '0x6f3fd3', 'uniqueId': '0x92a2633662f7bedec370c71186a479743551ba70f44ba0c52cc0ef00de8f1ee6:log:45', 'hash': '0x92a2633662f7bedec370c71186a479743551ba70f44ba0c52cc0ef00de8f1ee6', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:53:11.000Z'}}, {'blockNum': '0x6f3fff', 'uniqueId': '0x1246be2e041316531426970d3372c4b9da6334995ac006f25a42ec4083ddfb34:log:13', 'hash': '0x1246be2e041316531426970d3372c4b9da6334995ac006f25a42ec4083ddfb34', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1800.4222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0112b8fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:05:03.000Z'}}, {'blockNum': '0x6f4016', 'uniqueId': '0x73cea00d007bab854b29ccb6ecb19571566d8fc4972c55857056e7b94f5e7f4f:log:10', 'hash': '0x73cea00d007bab854b29ccb6ecb19571566d8fc4972c55857056e7b94f5e7f4f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:11:40.000Z'}}, {'blockNum': '0x6f4028', 'uniqueId': '0x40df4d41faaab03aac1e52603c44c96657391beb41b98a13323169504e4874b1:log:4', 'hash': '0x40df4d41faaab03aac1e52603c44c96657391beb41b98a13323169504e4874b1', 'from': '0x413fea4b3952d3b4e76a82221430c15db36bfa07', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f78a40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:15:03.000Z'}}, {'blockNum': '0x6f4039', 'uniqueId': '0xab093c4be1acf2eba50642104ddb980ba598cf56e7fff9de1464dcce764bec9d:log:33', 'hash': '0xab093c4be1acf2eba50642104ddb980ba598cf56e7fff9de1464dcce764bec9d', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:18:47.000Z'}}, {'blockNum': '0x6f403f', 'uniqueId': '0x2b43debbf0aefc545b9c465aa8789f7f150e180192f01c3db724f4b337a6e50f:log:26', 'hash': '0x2b43debbf0aefc545b9c465aa8789f7f150e180192f01c3db724f4b337a6e50f', 'from': '0x79ef17f3a5ddf966c914b3de0dfc629faa820bfb', 'to': '0x657e5019ff20d8e538c018a4e4f2f422e20b6ac4', 'value': 49926.197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1dc22212', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:20:22.000Z'}}, {'blockNum': '0x6f404d', 'uniqueId': '0xa75ce663720d8475aa6682c165a4238b075bd92309953a06860e925976c16a6f:log:43', 'hash': '0xa75ce663720d8475aa6682c165a4238b075bd92309953a06860e925976c16a6f', 'from': '0x9db8ca3403c1ed8f0afbef5c800850c72812cba0', 'to': '0x969d04d4dc89a9d8e0858241f79be32f95e353e4', 'value': 2325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0162c450', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:24:02.000Z'}}, {'blockNum': '0x6f4053', 'uniqueId': '0xa1661030edf41792c5bad51c38ad4ecba3b28ca9a5f44b1b2889e19cdba54851:log:82', 'hash': '0xa1661030edf41792c5bad51c38ad4ecba3b28ca9a5f44b1b2889e19cdba54851', 'from': '0x969d04d4dc89a9d8e0858241f79be32f95e353e4', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0162c450', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:25:27.000Z'}}, {'blockNum': '0x6f4070', 'uniqueId': '0x6e1a91e6d96a46e313a6a622b8966a14dfe6ae7196d9d80a7f00fb00575fa43d:log:8', 'hash': '0x6e1a91e6d96a46e313a6a622b8966a14dfe6ae7196d9d80a7f00fb00575fa43d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:31:27.000Z'}}, {'blockNum': '0x6f4088', 'uniqueId': '0x289a7b001edcd360caf7115bf0b24e87d66e4583222d2970bca7d57d0db4d488:log:8', 'hash': '0x289a7b001edcd360caf7115bf0b24e87d66e4583222d2970bca7d57d0db4d488', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'value': 2371.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0169e488', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:35:41.000Z'}}, {'blockNum': '0x6f408c', 'uniqueId': '0xe3995a51664d4846f26487b59c6635cb002e85e734e549fd4ec8f92966adfab6:log:72', 'hash': '0xe3995a51664d4846f26487b59c6635cb002e85e734e549fd4ec8f92966adfab6', 'from': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 2372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0169f040', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:36:51.000Z'}}, {'blockNum': '0x6f40b0', 'uniqueId': '0x6f9ae760e5d744b18175963b5df36084c52944b05aae8bb801e8ae1ccfae5825:log:41', 'hash': '0x6f9ae760e5d744b18175963b5df36084c52944b05aae8bb801e8ae1ccfae5825', 'from': '0x657e5019ff20d8e538c018a4e4f2f422e20b6ac4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49926.197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1dc22212', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:44:58.000Z'}}, {'blockNum': '0x6f40b0', 'uniqueId': '0x62b21b8fbce806fc689e9a9630f2cd30f5bac3a3dca0890180d72363cc67cb45:log:43', 'hash': '0x62b21b8fbce806fc689e9a9630f2cd30f5bac3a3dca0890180d72363cc67cb45', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0162c450', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:44:58.000Z'}}, {'blockNum': '0x6f40bd', 'uniqueId': '0xec6ad4c4e1d4d93a63a4e6a62a64ca87216349ab8ed5530e593f32b64b0f0115:log:28', 'hash': '0xec6ad4c4e1d4d93a63a4e6a62a64ca87216349ab8ed5530e593f32b64b0f0115', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:49:46.000Z'}}, {'blockNum': '0x6f40ca', 'uniqueId': '0xf680dac3f5afe13372e801afe85e786240b7c441ce9f5eb8ebac314e8939f555:log:31', 'hash': '0xf680dac3f5afe13372e801afe85e786240b7c441ce9f5eb8ebac314e8939f555', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:52:57.000Z'}}, {'blockNum': '0x6f40cb', 'uniqueId': '0xf5b1104936172157934e8d99b3dc11c5e02d9045b7fc69774a20d6c4e519f2a4:log:2', 'hash': '0xf5b1104936172157934e8d99b3dc11c5e02d9045b7fc69774a20d6c4e519f2a4', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 59504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x23779700', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:53:43.000Z'}}, {'blockNum': '0x6f40cc', 'uniqueId': '0x84aab5593dc1f2753fb2a1e341af353ac8b1be023afa7d281b83f7e8f45380f6:log:90', 'hash': '0x84aab5593dc1f2753fb2a1e341af353ac8b1be023afa7d281b83f7e8f45380f6', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 84721.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x327f75b0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:53:57.000Z'}}, {'blockNum': '0x6f410f', 'uniqueId': '0x6367c656210e0d439120c6469a1efe3975cc08a42e82c293c56525714f3d2b27:log:21', 'hash': '0x6367c656210e0d439120c6469a1efe3975cc08a42e82c293c56525714f3d2b27', 'from': '0x287f05e0e7847148adfbd4be181632d5e362e60b', 'to': '0x10c3e7e844ecd0b561c8eaf5905110fbce32a22b', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x017d7840', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:08:34.000Z'}}, {'blockNum': '0x6f4158', 'uniqueId': '0x2bbef0f8beb58dd9345dc9dc9da9b165fe2f785669514ce727686079ca2a6cb8:log:21', 'hash': '0x2bbef0f8beb58dd9345dc9dc9da9b165fe2f785669514ce727686079ca2a6cb8', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x23779700', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:25:15.000Z'}}, {'blockNum': '0x6f4158', 'uniqueId': '0x4f02ecb32adc6d717bcb6d27442bf18691623b09758456d9357127d159359e23:log:25', 'hash': '0x4f02ecb32adc6d717bcb6d27442bf18691623b09758456d9357127d159359e23', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84721.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x327f75b0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:25:15.000Z'}}, {'blockNum': '0x6f4158', 'uniqueId': '0x42c5ddb456dbdc9cf38babdf5e3e6b3804ee95a1a0b805dfbe7a5d80459cc368:log:35', 'hash': '0x42c5ddb456dbdc9cf38babdf5e3e6b3804ee95a1a0b805dfbe7a5d80459cc368', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:25:15.000Z'}}, {'blockNum': '0x6f417c', 'uniqueId': '0x27ecf5b9a9f298783d9bd90402519989e7ac7fe77012619647c8da7ff16659b8:log:74', 'hash': '0x27ecf5b9a9f298783d9bd90402519989e7ac7fe77012619647c8da7ff16659b8', 'from': '0x0b946efae53975b97a0d1d02f75fabf55d0d6a96', 'to': '0xf5cdd2c4d6df4055c63478db8046db2c61fa6b61', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:33:02.000Z'}}, {'blockNum': '0x6f4180', 'uniqueId': '0xbe500a89c9a4454ead55feff2eaf94db0006b95cba68cd83b16e502171d3dc82:log:48', 'hash': '0xbe500a89c9a4454ead55feff2eaf94db0006b95cba68cd83b16e502171d3dc82', 'from': '0xf5cdd2c4d6df4055c63478db8046db2c61fa6b61', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:34:47.000Z'}}, {'blockNum': '0x6f4181', 'uniqueId': '0x7d64fd601575e2b6ebfdf6c64db042d13db7a96e57fcf7d00aa78109ad28332c:log:52', 'hash': '0x7d64fd601575e2b6ebfdf6c64db042d13db7a96e57fcf7d00aa78109ad28332c', 'from': '0x10c3e7e844ecd0b561c8eaf5905110fbce32a22b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x017d7840', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:34:58.000Z'}}, {'blockNum': '0x6f41a1', 'uniqueId': '0x4e21603e8fbf6616200530110cae1208dbf1be9f1d43b35fbe78ce702c139050:log:1', 'hash': '0x4e21603e8fbf6616200530110cae1208dbf1be9f1d43b35fbe78ce702c139050', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x00608e3ded9e953f29a70476bfb7ff57de04ab88', 'value': 77.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0bdb28', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:42:22.000Z'}}, {'blockNum': '0x6f41b6', 'uniqueId': '0xebc4bbadf8c3fb48ad46be8dd2e3dbf5293f9b09cd7290ef1f13e7277b8550ed:log:94', 'hash': '0xebc4bbadf8c3fb48ad46be8dd2e3dbf5293f9b09cd7290ef1f13e7277b8550ed', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x00608e3ded9e953f29a70476bfb7ff57de04ab88', 'value': 20865.564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0c6fd518', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:49:56.000Z'}}, {'blockNum': '0x6f42f5', 'uniqueId': '0x564ccf76537683e487dffeb833ded289bfef35af05f94d06863911ebcab5af69:log:7', 'hash': '0x564ccf76537683e487dffeb833ded289bfef35af05f94d06863911ebcab5af69', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb454f852eb6ae8934cb168f88eda901f43895eaa', 'value': 977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x952f68', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:03:48.000Z'}}, {'blockNum': '0x6f4305', 'uniqueId': '0xa2f7118c5b255167352efd7dd48995d655687053f617aaaa1c290fd17a3a2188:log:0', 'hash': '0xa2f7118c5b255167352efd7dd48995d655687053f617aaaa1c290fd17a3a2188', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb454f852eb6ae8934cb168f88eda901f43895eaa', 'value': 77726.872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2e542df0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:10:57.000Z'}}, {'blockNum': '0x6f4331', 'uniqueId': '0xd920ecd87e8aec0ff744d1116077d5411e843b011ceb01ec5baa0adb1136b123:log:4', 'hash': '0xd920ecd87e8aec0ff744d1116077d5411e843b011ceb01ec5baa0adb1136b123', 'from': '0x7b3918c8f48e7f98f1666b6009c754bc0d9b704f', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 1200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xb71b00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:21:19.000Z'}}, {'blockNum': '0x6f4349', 'uniqueId': '0x735104456f931c6be9dcb6df709babc747da3924d3a474e34509940a191edb08:log:3', 'hash': '0x735104456f931c6be9dcb6df709babc747da3924d3a474e34509940a191edb08', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 1701.0739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01039033', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:26:18.000Z'}}, {'blockNum': '0x6f4363', 'uniqueId': '0x64c84fff8b83feb9e0d92b5220cd556c99da9abbeceda735737f61720b518f7a:log:79', 'hash': '0x64c84fff8b83feb9e0d92b5220cd556c99da9abbeceda735737f61720b518f7a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 209770.7957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7d087bb5', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:31:27.000Z'}}, {'blockNum': '0x6f4365', 'uniqueId': '0x3a151e5ecd46eae1a881d741274f33c52bec8eeb48d1b97df06f3dd7161bb34b:log:78', 'hash': '0x3a151e5ecd46eae1a881d741274f33c52bec8eeb48d1b97df06f3dd7161bb34b', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x521171abe3eff28f3b7963a353142b92756e449b', 'value': 209770.7958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7d087bb6', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:32:09.000Z'}}, {'blockNum': '0x6f436a', 'uniqueId': '0x3668f2922c4ef304d29615917e508150d48422de344407a06496b4653767539f:log:73', 'hash': '0x3668f2922c4ef304d29615917e508150d48422de344407a06496b4653767539f', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x719fbeead55ae2729c0263f3f31edf3e7780c18a', 'value': 1701.0739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01039033', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:33:57.000Z'}}, {'blockNum': '0x6f4384', 'uniqueId': '0xdfb7f3fbe592766e2e41b85247754c6b1107492d54b7d89b0d449f36eb78cb81:log:6', 'hash': '0xdfb7f3fbe592766e2e41b85247754c6b1107492d54b7d89b0d449f36eb78cb81', 'from': '0x521171abe3eff28f3b7963a353142b92756e449b', 'to': '0x4691ff663e87981b2ecd8bcf1e294bda5dde10cf', 'value': 119798.1335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4767be97', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:40:27.000Z'}}, {'blockNum': '0x6f4388', 'uniqueId': '0x05259e7e9eda3994ce4a1e7f2b761f4d805f31432be565fe1c94a795e88ca5dd:log:113', 'hash': '0x05259e7e9eda3994ce4a1e7f2b761f4d805f31432be565fe1c94a795e88ca5dd', 'from': '0x4691ff663e87981b2ecd8bcf1e294bda5dde10cf', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 119798.1335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4767be97', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:40:58.000Z'}}, {'blockNum': '0x6f4389', 'uniqueId': '0x4bab8cf94bb63acec2ef6fb1b535ed23e3c96376b8790176887abcf8afa276e4:log:11', 'hash': '0x4bab8cf94bb63acec2ef6fb1b535ed23e3c96376b8790176887abcf8afa276e4', 'from': '0x521171abe3eff28f3b7963a353142b92756e449b', 'to': '0xe8201454f1751c522b7217d2e8b865ce5f71a567', 'value': 90884.5538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x362be1e2', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:41:19.000Z'}}, {'blockNum': '0x6f438c', 'uniqueId': '0xedaae851786eba4a2d4b1ee7df875704b9946a73a942da08872c45e6e9a04471:log:37', 'hash': '0xedaae851786eba4a2d4b1ee7df875704b9946a73a942da08872c45e6e9a04471', 'from': '0xe8201454f1751c522b7217d2e8b865ce5f71a567', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 90884.5538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x362be1e2', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:42:01.000Z'}}, {'blockNum': '0x6f4392', 'uniqueId': '0xfb77366ed3f0dcb61c8ad9bfe6e4946864fa9b430881c0bd93acfa24df668a80:log:2', 'hash': '0xfb77366ed3f0dcb61c8ad9bfe6e4946864fa9b430881c0bd93acfa24df668a80', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 66776.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x27cd58a8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:43:40.000Z'}}, {'blockNum': '0x6f439a', 'uniqueId': '0x3a6f17f95a33cdc4eeee3548d4ea6ef1b8d63cf66dd7d6d0b31a7777506bfe53:log:29', 'hash': '0x3a6f17f95a33cdc4eeee3548d4ea6ef1b8d63cf66dd7d6d0b31a7777506bfe53', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 211682.6873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7e2c36f9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:45:20.000Z'}}, {'blockNum': '0x6f43b9', 'uniqueId': '0xe8c384ffc96b1e4f0c8b3b226341e1bcf7427acd327a0b561a67f94402bbf22f:log:18', 'hash': '0xe8c384ffc96b1e4f0c8b3b226341e1bcf7427acd327a0b561a67f94402bbf22f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x09957a6b7bdff098d7749016a7e61a31f5b99bdc', 'value': 2256.419, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01584d5e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:51:35.000Z'}}, {'blockNum': '0x6f43f5', 'uniqueId': '0xa18446e369b5f327ff9f96b74a674b5f419a41a587c22844f4bbee6e0f1133b8:log:58', 'hash': '0xa18446e369b5f327ff9f96b74a674b5f419a41a587c22844f4bbee6e0f1133b8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:06:24.000Z'}}, {'blockNum': '0x6f4415', 'uniqueId': '0xbde03a16f39e303ffa75c746de80de45f052d8c94fe99dadcacf8187fd4ac6e5:log:68', 'hash': '0xbde03a16f39e303ffa75c746de80de45f052d8c94fe99dadcacf8187fd4ac6e5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1556.6469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xed8685', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:12:08.000Z'}}, {'blockNum': '0x6f4422', 'uniqueId': '0x36d4a5063ce0a591534df56dc61f6cd9e95f25fcf7707f798bdf258a3bc83b73:log:38', 'hash': '0x36d4a5063ce0a591534df56dc61f6cd9e95f25fcf7707f798bdf258a3bc83b73', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:14:37.000Z'}}, {'blockNum': '0x6f4424', 'uniqueId': '0xb37dd0c9a3f15500ec23274abe4617f54760ddbce880dfd6f0b394c0af10ae85:log:4', 'hash': '0xb37dd0c9a3f15500ec23274abe4617f54760ddbce880dfd6f0b394c0af10ae85', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 66776.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x27cd58a8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:15:03.000Z'}}, {'blockNum': '0x6f442c', 'uniqueId': '0x05471e3d86921d6a166aaa54406f938e3c641b76f1ff89b7e4b86f557b14a70c:log:0', 'hash': '0x05471e3d86921d6a166aaa54406f938e3c641b76f1ff89b7e4b86f557b14a70c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 193068.1581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7313dced', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:16:34.000Z'}}, {'blockNum': '0x6f442f', 'uniqueId': '0x7fc18ecbdd49c4d40ce7068a746be62eddfc7f97e6516cb5a0f5f762cc18b474:log:3', 'hash': '0x7fc18ecbdd49c4d40ce7068a746be62eddfc7f97e6516cb5a0f5f762cc18b474', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x521171abe3eff28f3b7963a353142b92756e449b', 'value': 193068.1581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7313dced', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:16:52.000Z'}}, {'blockNum': '0x6f4440', 'uniqueId': '0x5b4ea3ce4eebf8f95c93d8166c1b60d4905d7708d7de0eceb796e3de63160c28:log:74', 'hash': '0x5b4ea3ce4eebf8f95c93d8166c1b60d4905d7708d7de0eceb796e3de63160c28', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1556.6469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xed8685', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:20:24.000Z'}}, {'blockNum': '0x6f4450', 'uniqueId': '0x83d3ec8653dbe2f83cb84405bc48fdab0dcfa78cdeb32a442dd5c345e9655ef2:log:52', 'hash': '0x83d3ec8653dbe2f83cb84405bc48fdab0dcfa78cdeb32a442dd5c345e9655ef2', 'from': '0x521171abe3eff28f3b7963a353142b92756e449b', 'to': '0xf8f236140d81e92dd8a230e753afa4d3e2ff248a', 'value': 193068.1581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7313dced', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:23:56.000Z'}}, {'blockNum': '0x6f4456', 'uniqueId': '0x66fcd4a1bc0ebbecbc607f9f4ef9dc4a18559548488850d6a5cc1249f37d4e94:log:17', 'hash': '0x66fcd4a1bc0ebbecbc607f9f4ef9dc4a18559548488850d6a5cc1249f37d4e94', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:26:32.000Z'}}, {'blockNum': '0x6f446f', 'uniqueId': '0x13ade570420c2fc15a4dba515bf58bed409b99bc39f4afcf44dd8175725285c7:log:57', 'hash': '0x13ade570420c2fc15a4dba515bf58bed409b99bc39f4afcf44dd8175725285c7', 'from': '0xf8f236140d81e92dd8a230e753afa4d3e2ff248a', 'to': '0x43b9f9eaf7259cdfbd3158d8b5d6576245946a9c', 'value': 193068.1581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7313dced', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:31:53.000Z'}}, {'blockNum': '0x6f44a2', 'uniqueId': '0x7623a16ed74f5813b5ef7ce4787a7842faaee41e9d7f8affec06d2cbf254aed7:log:19', 'hash': '0x7623a16ed74f5813b5ef7ce4787a7842faaee41e9d7f8affec06d2cbf254aed7', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:45:15.000Z'}}, {'blockNum': '0x6f44e5', 'uniqueId': '0x112752d27a68a0a802e38037299558f22898133930f6b40092694fc6bb4d496d:log:33', 'hash': '0x112752d27a68a0a802e38037299558f22898133930f6b40092694fc6bb4d496d', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x9559d08a64dd68ced94fc5a3802fc33e0a5eb559', 'value': 800.8235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a322b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:57:29.000Z'}}, {'blockNum': '0x6f44ea', 'uniqueId': '0x7b6590fbaeceae1474617ee654ee7ec07b502bed09bd4edb4d9f34bc0b63e107:log:73', 'hash': '0x7b6590fbaeceae1474617ee654ee7ec07b502bed09bd4edb4d9f34bc0b63e107', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x18eb1a25bf1ab00552cc5fbbfc305f2d7fa1f4da', 'value': 423.7654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x40a956', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:58:29.000Z'}}, {'blockNum': '0x6f44f2', 'uniqueId': '0xcbf4df82c0297d495ecc2e71b5b14449af3be1712a3fb6af2c2d0adfe5f18cb9:log:33', 'hash': '0xcbf4df82c0297d495ecc2e71b5b14449af3be1712a3fb6af2c2d0adfe5f18cb9', 'from': '0x18eb1a25bf1ab00552cc5fbbfc305f2d7fa1f4da', 'to': '0x43b9f9eaf7259cdfbd3158d8b5d6576245946a9c', 'value': 423.7654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x40a956', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T20:00:06.000Z'}}, {'blockNum': '0x6f44f6', 'uniqueId': '0xa6dc0f5991187fd7fa4d454a6d5e6246ab66346f66d32dfd6fc368802127c347:log:73', 'hash': '0xa6dc0f5991187fd7fa4d454a6d5e6246ab66346f66d32dfd6fc368802127c347', 'from': '0x9559d08a64dd68ced94fc5a3802fc33e0a5eb559', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 800.8235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a322b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T20:00:45.000Z'}}, {'blockNum': '0x6f4549', 'uniqueId': '0x31e24d03edddf871a656989145d66208f6a0782fdb96b055920ff3608c6ef07e:log:5', 'hash': '0x31e24d03edddf871a656989145d66208f6a0782fdb96b055920ff3608c6ef07e', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1480.0239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xe1d56f', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T20:19:36.000Z'}}, {'blockNum': '0x6f454c', 'uniqueId': '0xc866f1b8eb2b295d2492f28615d8fb718f9708225c09d253b34a424988d4f825:log:85', 'hash': '0xc866f1b8eb2b295d2492f28615d8fb718f9708225c09d253b34a424988d4f825', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xcae9000485f5e732717ad7366577d2b04d479795', 'value': 1480.0239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xe1d56f', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T20:20:01.000Z'}}, {'blockNum': '0x6f4769', 'uniqueId': '0x888759f9c143e28b8f11af15c295ef6e847ff20310a297e76006fd450792c065:log:96', 'hash': '0x888759f9c143e28b8f11af15c295ef6e847ff20310a297e76006fd450792c065', 'from': '0xf78b4770ea558a445f160ac4be425c4e6de0ccd7', 'to': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'value': 3500.0417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02161061', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T22:18:28.000Z'}}, {'blockNum': '0x6f47a4', 'uniqueId': '0xdf4bb48dbe57d2cfc24e832cb33670e4b0cf431e64ffe245542e9323918fa7a6:log:3', 'hash': '0xdf4bb48dbe57d2cfc24e832cb33670e4b0cf431e64ffe245542e9323918fa7a6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1150.0001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xaf79e1', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T22:30:23.000Z'}}, {'blockNum': '0x6f47ae', 'uniqueId': '0x75cbb421a3055c527e733c8f5dd359cb2d31ae808d6833efe0490d2830ca9e3d:log:43', 'hash': '0x75cbb421a3055c527e733c8f5dd359cb2d31ae808d6833efe0490d2830ca9e3d', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x47f35c32efb70e3632f3bd7ce8596ae7258dcc77', 'value': 1150.0001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xaf79e1', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T22:32:39.000Z'}}, {'blockNum': '0x6f481c', 'uniqueId': '0x5d795bb3e876ef81f8a401c35c0374f7affa7582204c40c73c453d236396e083:log:0', 'hash': '0x5d795bb3e876ef81f8a401c35c0374f7affa7582204c40c73c453d236396e083', 'from': '0x60426cbccd32998755338c2ef77c589848138b4c', 'to': '0x7605c463aac4a479fdccaaa5b65c6bd831080f7b', 'value': 27276.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x10421c00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:00:01.000Z'}}, {'blockNum': '0x6f48ca', 'uniqueId': '0x9a83a741f3fe5f636e7d2599fbdc5728a7d869f8edcb2a95d2fee259e7894cb6:log:53', 'hash': '0x9a83a741f3fe5f636e7d2599fbdc5728a7d869f8edcb2a95d2fee259e7894cb6', 'from': '0x7605c463aac4a479fdccaaa5b65c6bd831080f7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27276.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x10421c00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:34:56.000Z'}}, {'blockNum': '0x6f48d1', 'uniqueId': '0xe86c07744339065c626937d760ad6647596f2dfec13e301580978ae63b6dd07a:log:121', 'hash': '0xe86c07744339065c626937d760ad6647596f2dfec13e301580978ae63b6dd07a', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f910e0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:35:46.000Z'}}, {'blockNum': '0x6f48d1', 'uniqueId': '0xe86c07744339065c626937d760ad6647596f2dfec13e301580978ae63b6dd07a:log:122', 'hash': '0xe86c07744339065c626937d760ad6647596f2dfec13e301580978ae63b6dd07a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f910e0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:35:46.000Z'}}, {'blockNum': '0x6f48df', 'uniqueId': '0x95f6130f7c133f9c89420d7a1ecdb00f6e03bd3dac5254b18d4965d360c40250:log:92', 'hash': '0x95f6130f7c133f9c89420d7a1ecdb00f6e03bd3dac5254b18d4965d360c40250', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x018e4120', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:39:05.000Z'}}, {'blockNum': '0x6f48df', 'uniqueId': '0x95f6130f7c133f9c89420d7a1ecdb00f6e03bd3dac5254b18d4965d360c40250:log:93', 'hash': '0x95f6130f7c133f9c89420d7a1ecdb00f6e03bd3dac5254b18d4965d360c40250', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x018e4120', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:39:05.000Z'}}, {'blockNum': '0x6f4947', 'uniqueId': '0x279379b8b8065aa09d3cbe47f29dc29cafb1a521a613e50fe3e64631a21a4f75:log:55', 'hash': '0x279379b8b8065aa09d3cbe47f29dc29cafb1a521a613e50fe3e64631a21a4f75', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:59:49.000Z'}}, {'blockNum': '0x6f4948', 'uniqueId': '0xe133875f4137289bd4ac57dd52e1f52a4e15bf93bf3bb7a2dab8cfa0ee7e82b1:log:68', 'hash': '0xe133875f4137289bd4ac57dd52e1f52a4e15bf93bf3bb7a2dab8cfa0ee7e82b1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 1132818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a3364f20', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:00:49.000Z'}}, {'blockNum': '0x6f498b', 'uniqueId': '0xfc4bd8749cc94221df9c387718801a7793188c34a2451c329c9cf448292bd849:log:6', 'hash': '0xfc4bd8749cc94221df9c387718801a7793188c34a2451c329c9cf448292bd849', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:17:57.000Z'}}, {'blockNum': '0x6f4a07', 'uniqueId': '0xfb3f02a88344ae855cbc86ae40af61e496483316f2d7ded4357f26279d977d05:log:3', 'hash': '0xfb3f02a88344ae855cbc86ae40af61e496483316f2d7ded4357f26279d977d05', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 797.1364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x79a224', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:46:36.000Z'}}, {'blockNum': '0x6f4a0b', 'uniqueId': '0x0b69896b3ee73fac95fddc8b01ef2bc1d8b04c571dd02e2a2610626bfa6a0322:log:65', 'hash': '0x0b69896b3ee73fac95fddc8b01ef2bc1d8b04c571dd02e2a2610626bfa6a0322', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x47f35c32efb70e3632f3bd7ce8596ae7258dcc77', 'value': 797.1364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x79a224', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:48:22.000Z'}}, {'blockNum': '0x6f4a28', 'uniqueId': '0x839615db1d63a21791663e893560fc991ccd3523aa2677fd52c5cd15b0228484:log:54', 'hash': '0x839615db1d63a21791663e893560fc991ccd3523aa2677fd52c5cd15b0228484', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'value': 3617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0227e910', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:56:30.000Z'}}, {'blockNum': '0x6f4a2d', 'uniqueId': '0x785c4786ac6ea0aa90ec0a20eb70f61d4d3b92425be97910577455107294aa2c:log:31', 'hash': '0x785c4786ac6ea0aa90ec0a20eb70f61d4d3b92425be97910577455107294aa2c', 'from': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 3617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0227e910', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:57:54.000Z'}}]}}
Number of returned transfers: 166
Answer is complete
symbol POA
group CCB
date 2019-05-10
hour 12:00
exchange binance
Name: 368, dtype: object
HERE
Symbol: POA, Contract:
Datetime timestamps: 2019-05-10 12:00:00 2019-05-10 00:00:00 2019-05-11 00:00:00
Unix timestamps: 1557439200.0 1557525600.0
Hex Block Numbers: 0x75ef0e 0x76082b
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol WPR
group CCB
date 2019-05-15
hour 15:00
exchange binance
Name: 369, dtype: object
HERE
Symbol: WPR, Contract: 0x4cf488387f035ff08c371515562cba712f9015d4
Datetime timestamps: 2019-05-15 15:00:00 2019-05-15 03:00:00 2019-05-16 03:00:00
Unix timestamps: 1557882000.0 1557968400.0
Hex Block Numbers: 0x766fb5 0x7688ea
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x767176', 'uniqueId': '0x87818f00250d297e12ce8f3fd42a4099e197443326f7fa48e73a44f7e51cec1a:log:75', 'hash': '0x87818f00250d297e12ce8f3fd42a4099e197443326f7fa48e73a44f7e51cec1a', 'from': '0x4dc3bfb37494d48fd3c3bf7ec9a40a0a80179c9a', 'to': '0x339b145c66b9e9540abb6d2415ec9007204d8363', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T02:42:17.000Z'}}, {'blockNum': '0x767362', 'uniqueId': '0x233135b674f4aa36acd6eaa2c258c65585f78d968087998c1ae36721aa42f3c3:log:14', 'hash': '0x233135b674f4aa36acd6eaa2c258c65585f78d968087998c1ae36721aa42f3c3', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x6cee575c9acabc195b7f03396a462aa78b5814c3', 'value': 21869.14402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x04a187571a7fc6214000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T04:25:49.000Z'}}, {'blockNum': '0x767366', 'uniqueId': '0x8ed9ade6cc42a60b874d91068869087c96173b30f8c14114592942bd8bd77dfa:log:4', 'hash': '0x8ed9ade6cc42a60b874d91068869087c96173b30f8c14114592942bd8bd77dfa', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 21946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x04a5b1ee651bd2a80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T04:26:43.000Z'}}, {'blockNum': '0x767368', 'uniqueId': '0xb5c5c17740fa1cbd9a088ac11eeb3ca7c735b1d61b418cc55b800b56c6b62b27:log:17', 'hash': '0xb5c5c17740fa1cbd9a088ac11eeb3ca7c735b1d61b418cc55b800b56c6b62b27', 'from': '0x6cee575c9acabc195b7f03396a462aa78b5814c3', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 21869.14402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x04a187571a7fc6214000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T04:27:06.000Z'}}, {'blockNum': '0x767373', 'uniqueId': '0xe367b232573b11774ff154c76d802bada733225c4e2ea121d566f4d36f04a3b0:log:25', 'hash': '0xe367b232573b11774ff154c76d802bada733225c4e2ea121d566f4d36f04a3b0', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 21946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x04a5b1ee651bd2a80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T04:29:27.000Z'}}, {'blockNum': '0x7673d6', 'uniqueId': '0xed41302a52f29251af83a30d20b542aabf39d624618d8951178bcc0c7f9e06e8:log:24', 'hash': '0xed41302a52f29251af83a30d20b542aabf39d624618d8951178bcc0c7f9e06e8', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 12645.614216710217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02ad85269ac329ff9fac', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T04:54:26.000Z'}}, {'blockNum': '0x7674ef', 'uniqueId': '0x0b4f8bd7ffe972e63ada46fe3201fd2f5958099ffac80c1b57bbb9eb2b822ea5:log:16', 'hash': '0x0b4f8bd7ffe972e63ada46fe3201fd2f5958099ffac80c1b57bbb9eb2b822ea5', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 12645.614216710217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02ad85269ac329ff9fac', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T05:51:38.000Z'}}, {'blockNum': '0x767605', 'uniqueId': '0xa7acb7fbf843056e530fac7d59d7be946305d0799d1c9dc2e254958f236e9ebc:log:74', 'hash': '0xa7acb7fbf843056e530fac7d59d7be946305d0799d1c9dc2e254958f236e9ebc', 'from': '0x0a9177455c8d6f6fedec033b2b77c34d8f8c6007', 'to': '0xff104944c1b1da327e8e3a1986fc2490aa3ec18c', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T06:56:55.000Z'}}, {'blockNum': '0x7677d1', 'uniqueId': '0x7e4764646230aa3ed1c15b03480d740af811347ae0c9e5bbc989317f53d9c9a7:log:28', 'hash': '0x7e4764646230aa3ed1c15b03480d740af811347ae0c9e5bbc989317f53d9c9a7', 'from': '0xff104944c1b1da327e8e3a1986fc2490aa3ec18c', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T08:43:58.000Z'}}, {'blockNum': '0x767c65', 'uniqueId': '0xc3e951244dbd53751ae07c7a96dd6454230748404c8aae64e717be83718d9978:log:21', 'hash': '0xc3e951244dbd53751ae07c7a96dd6454230748404c8aae64e717be83718d9978', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2a9bc620cd884eb465c0421af3b4b4a4c4993fcd', 'value': 10442.09034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0236111d2faa0dea4000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T13:06:28.000Z'}}, {'blockNum': '0x767c97', 'uniqueId': '0x51aeaedeab7c32967e4681e6a2324e34444157c21ee206f7d7066d215bed1b8b:log:11', 'hash': '0x51aeaedeab7c32967e4681e6a2324e34444157c21ee206f7d7066d215bed1b8b', 'from': '0x12ed00fab638248653675742eae994e2e252bd98', 'to': '0x3efa5bc8550bbbb346eeb10c879dd9c200fc0205', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T13:17:02.000Z'}}, {'blockNum': '0x767cd8', 'uniqueId': '0xa234c9c4184ea7f7872bb393fa07fe9c132ea08ff12aefc690ab66bbf84c123e:log:44', 'hash': '0xa234c9c4184ea7f7872bb393fa07fe9c132ea08ff12aefc690ab66bbf84c123e', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x7c8d39329005c6e36f890fd74d8ab633eab57997', 'value': 165622.54996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x23126a9ac2bdfac48000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T13:34:27.000Z'}}, {'blockNum': '0x767cec', 'uniqueId': '0x8eefb06aeaa7457ea7b27fd47aa089dca7426c4be94c525edcdde6ad435135de:log:40', 'hash': '0x8eefb06aeaa7457ea7b27fd47aa089dca7426c4be94c525edcdde6ad435135de', 'from': '0x3efa5bc8550bbbb346eeb10c879dd9c200fc0205', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T13:39:10.000Z'}}, {'blockNum': '0x767d16', 'uniqueId': '0xc04daa7e85e4524c8993f70a1939f71e1c6e133fdd0802b98f3e47ebe4fb2aac:log:103', 'hash': '0xc04daa7e85e4524c8993f70a1939f71e1c6e133fdd0802b98f3e47ebe4fb2aac', 'from': '0x7c8d39329005c6e36f890fd74d8ab633eab57997', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 165622.54996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x23126a9ac2bdfac48000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T13:49:07.000Z'}}, {'blockNum': '0x767d54', 'uniqueId': '0x2d6146e0c9c1be72d25759565ac7779fe26abfa85af3a54967ce598e61b22bdf:log:40', 'hash': '0x2d6146e0c9c1be72d25759565ac7779fe26abfa85af3a54967ce598e61b22bdf', 'from': '0xb87b3fcdb1ed4ae143ff93b37972e5415ea338ab', 'to': '0xc724e10892d5e9c2bdf4690a436b059f8990d132', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T14:02:00.000Z'}}, {'blockNum': '0x767d91', 'uniqueId': '0x928e3537dbf69b9ee597542461b105f795415807f2f893aded9d86c5661a1278:log:10', 'hash': '0x928e3537dbf69b9ee597542461b105f795415807f2f893aded9d86c5661a1278', 'from': '0xa6c4477b6a4feda0fc25aab16d45df6fb2b9cf09', 'to': '0xd6f44acb79de8f8d2e619645b9995dd4f95ea3e7', 'value': 10144.79436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0225f34db0fef2478000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T14:16:34.000Z'}}, {'blockNum': '0x767e22', 'uniqueId': '0x3d154cca30369ef7673deead267bd519198297558e8298464f03a41d1e31be6e:log:1', 'hash': '0x3d154cca30369ef7673deead267bd519198297558e8298464f03a41d1e31be6e', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xe7d7bfc91531932eb57457b9e727d969931a4633', 'value': 30980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x068f6dddc4ece1900000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T14:52:44.000Z'}}, {'blockNum': '0x767e4a', 'uniqueId': '0xe13a8258d8912d198dec1dc46a3eb7787ffb41586b749cac22b34c9548b506c5:log:32', 'hash': '0xe13a8258d8912d198dec1dc46a3eb7787ffb41586b749cac22b34c9548b506c5', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 3743.9995214565083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xcaf66e50347fae7c34', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:01:24.000Z'}}, {'blockNum': '0x767e50', 'uniqueId': '0x5feaefba435bb750b1fc042288cd06f8d9e89455e0bf67c4f2749db0221e4e22:log:45', 'hash': '0x5feaefba435bb750b1fc042288cd06f8d9e89455e0bf67c4f2749db0221e4e22', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 3743.9995214565083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xcaf66e50347fae7c34', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:03:04.000Z'}}, {'blockNum': '0x767e5c', 'uniqueId': '0x4ca08a0705719c87646271f5cbd464413545d33b5716feda8934dce19168ddaa:log:29', 'hash': '0x4ca08a0705719c87646271f5cbd464413545d33b5716feda8934dce19168ddaa', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 124674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1a66975130d68ac80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:05:08.000Z'}}, {'blockNum': '0x767e72', 'uniqueId': '0x480eace50e937595e43a77357b7d91aaf6259fbeaf44fc41b88a156ef0c84ff4:log:44', 'hash': '0x480eace50e937595e43a77357b7d91aaf6259fbeaf44fc41b88a156ef0c84ff4', 'from': '0xc8d837745b286c654ea6c7f12cf6116435d66335', 'to': '0x06e35f513834399f6a0b7f8b2f2383c17596a3b3', 'value': 8236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01be7975dbcd45300000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:08:44.000Z'}}, {'blockNum': '0x767e74', 'uniqueId': '0x042bb97be4e2c72c29150d08415b0b64c4fd14a99b729f9e8a357ae6cafded19:log:81', 'hash': '0x042bb97be4e2c72c29150d08415b0b64c4fd14a99b729f9e8a357ae6cafded19', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 124674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1a66975130d68ac80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:09:34.000Z'}}, {'blockNum': '0x767e76', 'uniqueId': '0xadcc8af624775910642c1cc32655f5d5fffb5637d7b3e7a53b7852af2437aff4:log:110', 'hash': '0xadcc8af624775910642c1cc32655f5d5fffb5637d7b3e7a53b7852af2437aff4', 'from': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3743.9995214565083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xcaf66e50347fae7c34', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:09:50.000Z'}}, {'blockNum': '0x767eac', 'uniqueId': '0x02d805e003e1ae46364b7b469a40964d20e230b865085d11c143ebd45a2a4840:log:30', 'hash': '0x02d805e003e1ae46364b7b469a40964d20e230b865085d11c143ebd45a2a4840', 'from': '0x50c976c78c7e03b463331f1b0ae5b6b92ecd57dd', 'to': '0xb9d70fe05c86d395bc18a633085e582f90a5fc83', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:22:49.000Z'}}, {'blockNum': '0x767eae', 'uniqueId': '0x3665595eb8e6c1afe053ccf244ce1d6323b2c09f7ec77dffa646ca1ef3b9279f:log:96', 'hash': '0x3665595eb8e6c1afe053ccf244ce1d6323b2c09f7ec77dffa646ca1ef3b9279f', 'from': '0x516fb76932affb766a09b096abe5a8c098fc2a3f', 'to': '0x631bb3d4f7976b33a9e5243414ab95c3a2a9f924', 'value': 1649.05263158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x596533d75de1021800', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:24:35.000Z'}}, {'blockNum': '0x767ec2', 'uniqueId': '0x63efad9c53da53222e2096789225e393c47e32be3abcf3be84faaf431fe8efbb:log:15', 'hash': '0x63efad9c53da53222e2096789225e393c47e32be3abcf3be84faaf431fe8efbb', 'from': '0xb9d70fe05c86d395bc18a633085e582f90a5fc83', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:29:05.000Z'}}, {'blockNum': '0x767ec2', 'uniqueId': '0xd95fdefd6d0ebbeeb968ecd80207c58908dd53df6cf7c9bbf90927f52c6c4ebd:log:42', 'hash': '0xd95fdefd6d0ebbeeb968ecd80207c58908dd53df6cf7c9bbf90927f52c6c4ebd', 'from': '0x631bb3d4f7976b33a9e5243414ab95c3a2a9f924', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1649.05263158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x596533d75de1021800', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:29:05.000Z'}}, {'blockNum': '0x767ec2', 'uniqueId': '0x79f31982988009a33bd20dd619668b3425e01242ac08d550af2d99d4e09c4027:log:43', 'hash': '0x79f31982988009a33bd20dd619668b3425e01242ac08d550af2d99d4e09c4027', 'from': '0x06e35f513834399f6a0b7f8b2f2383c17596a3b3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01be7975dbcd45300000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:29:05.000Z'}}, {'blockNum': '0x767ed6', 'uniqueId': '0x35815251f7874c87d5ddea3602ddb25b32520b755ae8c8ffeedfc7f06f680202:log:33', 'hash': '0x35815251f7874c87d5ddea3602ddb25b32520b755ae8c8ffeedfc7f06f680202', 'from': '0xc8d837745b286c654ea6c7f12cf6116435d66335', 'to': '0x33854c18d7052f22e2e488d99dbe01f118a13bd6', 'value': 44240, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x095e4155266f31400000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:34:28.000Z'}}, {'blockNum': '0x767f00', 'uniqueId': '0x5c43b6061734a1c3dfc47c37abf9d07566242aad05e7bc5ef465a27f6daf6721:log:33', 'hash': '0x5c43b6061734a1c3dfc47c37abf9d07566242aad05e7bc5ef465a27f6daf6721', 'from': '0x528753fd729d04449cf04133092dafac4ecf9f39', 'to': '0xf286864218bec2ef66cc8b65e401efdecc169f3b', 'value': 9377.587643793699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01fc5c2be5710fc18032', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:43:53.000Z'}}, {'blockNum': '0x767f1f', 'uniqueId': '0xc351958430dbd7503d8abff4184e2bc1415d6adaecf9b3fadb5f6344ea4e3347:log:43', 'hash': '0xc351958430dbd7503d8abff4184e2bc1415d6adaecf9b3fadb5f6344ea4e3347', 'from': '0x33854c18d7052f22e2e488d99dbe01f118a13bd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 44240, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x095e4155266f31400000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:49:13.000Z'}}, {'blockNum': '0x767fe0', 'uniqueId': '0xa29782433aef2196623b47bd427cbc4fd22cccb2035386157bd6215aff940fe5:log:1', 'hash': '0xa29782433aef2196623b47bd427cbc4fd22cccb2035386157bd6215aff940fe5', 'from': '0x47260490fdf33fd04cf1068e6c9b33f805595ddf', 'to': '0xf476489626956a2d1f9042a2b249aa2ba4a2a109', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T16:29:43.000Z'}}, {'blockNum': '0x767feb', 'uniqueId': '0x40144756ddf850762e1f99a7326a6dcd225c44d587be08e801ac052345cbd1eb:log:34', 'hash': '0x40144756ddf850762e1f99a7326a6dcd225c44d587be08e801ac052345cbd1eb', 'from': '0xc8d837745b286c654ea6c7f12cf6116435d66335', 'to': '0x98927f892882eaa47af74991866b6face8f50683', 'value': 22905.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x04d9b871b666710a0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T16:32:45.000Z'}}, {'blockNum': '0x76800d', 'uniqueId': '0x48cd95044681a1f202a07d5e266c9ee9002c24f2e4bd6e696e967452d2b51968:log:8', 'hash': '0x48cd95044681a1f202a07d5e266c9ee9002c24f2e4bd6e696e967452d2b51968', 'from': '0x98927f892882eaa47af74991866b6face8f50683', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22905.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x04d9b871b666710a0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T16:39:09.000Z'}}, {'blockNum': '0x768061', 'uniqueId': '0xd07b402df920467002d3a876012460c0495e3a990d9b14ba7c3c559a83ea57f6:log:21', 'hash': '0xd07b402df920467002d3a876012460c0495e3a990d9b14ba7c3c559a83ea57f6', 'from': '0xb09f98cd0b716ed119564c5439eafe6b1447c967', 'to': '0x13ea36e080585aa707e3bdee20f062ff9acc79da', 'value': 21467.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x048bc168e64f723e0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T16:54:58.000Z'}}, {'blockNum': '0x768075', 'uniqueId': '0x44eae4e7bc2b888326160117cbffa9ee8593f0fd9a7b3ca227b97dccdcef93a8:log:32', 'hash': '0x44eae4e7bc2b888326160117cbffa9ee8593f0fd9a7b3ca227b97dccdcef93a8', 'from': '0x13ea36e080585aa707e3bdee20f062ff9acc79da', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21467.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x048bc168e64f723e0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T16:59:01.000Z'}}, {'blockNum': '0x76808f', 'uniqueId': '0xbba8cbbd8a1a1d9d90d4c75ecaa50101550f8417d24f3ba5ba5690f9058ad5a3:log:0', 'hash': '0xbba8cbbd8a1a1d9d90d4c75ecaa50101550f8417d24f3ba5ba5690f9058ad5a3', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xcf6a16f108cf883ad7e9484a3d662afdb3bda026', 'value': 7242.70706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0188a0c0719039cb4000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T17:05:15.000Z'}}, {'blockNum': '0x7680d5', 'uniqueId': '0x9569ada92e6547c8ec2f0be68354e2bcd023ca5cff6650e4d9de6fa3c9a849b0:log:19', 'hash': '0x9569ada92e6547c8ec2f0be68354e2bcd023ca5cff6650e4d9de6fa3c9a849b0', 'from': '0xcf6a16f108cf883ad7e9484a3d662afdb3bda026', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7242.70706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0188a0c0719039cb4000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T17:19:13.000Z'}}, {'blockNum': '0x7680f4', 'uniqueId': '0x78c814d4cdf54c1f420dbba571fc39b97921d0bbc90c3585a76422f8a8970e40:log:129', 'hash': '0x78c814d4cdf54c1f420dbba571fc39b97921d0bbc90c3585a76422f8a8970e40', 'from': '0x38d43372751e46579c68a9b57f03ce64c6589c0f', 'to': '0x68cb0cd461f9deeb473c4fcfe8d0bd24b84a0a2f', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T17:25:26.000Z'}}, {'blockNum': '0x76811a', 'uniqueId': '0x05e5de9997cb33bccc3858c590c123e6c7b4adb16dd104a62e7a62fbb3dcd0f7:log:73', 'hash': '0x05e5de9997cb33bccc3858c590c123e6c7b4adb16dd104a62e7a62fbb3dcd0f7', 'from': '0x7717b631c819031f910393c989473cf123dd81a7', 'to': '0x5c750a7f0010da10f43f21a631353f5253671582', 'value': 5250.1955771491885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x011c9d19a4b05852aea5', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T17:34:38.000Z'}}, {'blockNum': '0x76812b', 'uniqueId': '0xca56569c40fe3e0229b5dbf0090e13966821dc05e39856767e7cb9ec239633c3:log:23', 'hash': '0xca56569c40fe3e0229b5dbf0090e13966821dc05e39856767e7cb9ec239633c3', 'from': '0x696359f1cf1d35f225a8f8f4f0baafc86a1f6cdc', 'to': '0xdcdf2fa907e2db74676f3fe9245c4d0db125f91b', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T17:39:47.000Z'}}, {'blockNum': '0x768181', 'uniqueId': '0xbda86c3055e9c8a5eb5d65dfd7ea2e4b02b138c01cbb8a654e306a29ab5d4131:log:6', 'hash': '0xbda86c3055e9c8a5eb5d65dfd7ea2e4b02b138c01cbb8a654e306a29ab5d4131', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x660c17e6ab0ce88b0f6d2dbaa6b907f26627bd61', 'value': 4680.41357555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xfdb9c955119da96c00', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T17:58:24.000Z'}}, {'blockNum': '0x7681c3', 'uniqueId': '0x5da67bf5a36fd48669dacc80afabe5b3a6b7927448eb19c55f72506c0125ef0a:log:8', 'hash': '0x5da67bf5a36fd48669dacc80afabe5b3a6b7927448eb19c55f72506c0125ef0a', 'from': '0x3839c66c0903a848f095bf958d9faf4c24d3c6b6', 'to': '0x3efb3406b8b3f26b38b5639fbb0754b7fc0c9e95', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T18:15:36.000Z'}}, {'blockNum': '0x7681f5', 'uniqueId': '0x878af299b023f5f06ec01f270bced4e9f0068dabcf7db7bf67a62b91cfaa7971:log:36', 'hash': '0x878af299b023f5f06ec01f270bced4e9f0068dabcf7db7bf67a62b91cfaa7971', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x133d93566f9699b3af46fe150daa8a67a9563ed6', 'value': 153494.663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x2080f65cdcebcead8000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T18:27:03.000Z'}}, {'blockNum': '0x76823d', 'uniqueId': '0xb8e6ab95d2c8849e8b66731e4ae9ab6b6dd84964e282d49ff745a65dbf465fff:log:4', 'hash': '0xb8e6ab95d2c8849e8b66731e4ae9ab6b6dd84964e282d49ff745a65dbf465fff', 'from': '0x2aab2950adc18cfc862770309acfdb4b4b2e0297', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T18:41:51.000Z'}}, {'blockNum': '0x768240', 'uniqueId': '0xeca733da6f6b5d7350ece2e22ec22cfd4c4f2e913db33e351e1bc4ecee425053:log:20', 'hash': '0xeca733da6f6b5d7350ece2e22ec22cfd4c4f2e913db33e351e1bc4ecee425053', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbfe4d6ad07ec0fe910d62f32e3f194ca8372efb4', 'value': 1393.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x4b894f3d734d4c0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T18:42:21.000Z'}}, {'blockNum': '0x768270', 'uniqueId': '0x0e57fe7257d941a5308dd058cb84dc8e6e874e23374758c51bf5c1ebfc712008:log:13', 'hash': '0x0e57fe7257d941a5308dd058cb84dc8e6e874e23374758c51bf5c1ebfc712008', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xad405b532f9a5a34cc3b15649aa37fe0f88b635c', 'value': 1548.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x53f05ddc39a6d80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T18:55:51.000Z'}}, {'blockNum': '0x7682a2', 'uniqueId': '0x8ea8306ca801ff091f15cd1cdfbb311430e947c600782a743d156d91345ef67d:log:133', 'hash': '0x8ea8306ca801ff091f15cd1cdfbb311430e947c600782a743d156d91345ef67d', 'from': '0x7341194087152657be2a9b73624673b5b8eaec3d', 'to': '0x0795d971281476936e28a0f1e40fbd532266fab3', 'value': 1954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x69ed328743a9480000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T19:06:44.000Z'}}, {'blockNum': '0x7682d3', 'uniqueId': '0x5009c38199685648ff2c97472d549e470113b0b7913ebe06b297760a53d5b31b:log:48', 'hash': '0x5009c38199685648ff2c97472d549e470113b0b7913ebe06b297760a53d5b31b', 'from': '0x7341194087152657be2a9b73624673b5b8eaec3d', 'to': '0x0795d971281476936e28a0f1e40fbd532266fab3', 'value': 680000.517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x8ffee6e2565a1de08000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T19:17:31.000Z'}}, {'blockNum': '0x7682f6', 'uniqueId': '0x26128285935aac0ca5382a23bea6da9e9304037e4b624f609bc9d5799897a1cf:log:110', 'hash': '0x26128285935aac0ca5382a23bea6da9e9304037e4b624f609bc9d5799897a1cf', 'from': '0xabed001575e9e3256f1c688fd01cbcdac7d89ef8', 'to': '0x43559c48ce3784ba040e56e001e2641ded99f41b', 'value': 1650, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x59725991ece2880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T19:23:57.000Z'}}, {'blockNum': '0x76830d', 'uniqueId': '0x98e23c80e91e78430a95e85c6fbcdc4e17244fb91aa62b54c24275c7e72600b8:log:12', 'hash': '0x98e23c80e91e78430a95e85c6fbcdc4e17244fb91aa62b54c24275c7e72600b8', 'from': '0x0795d971281476936e28a0f1e40fbd532266fab3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 681954.517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x9068d414dd9dc7288000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T19:29:01.000Z'}}, {'blockNum': '0x76830d', 'uniqueId': '0x93551cbfce4b04338b63180d048f8bba0c43d34e62a342c57401c413188be159:log:23', 'hash': '0x93551cbfce4b04338b63180d048f8bba0c43d34e62a342c57401c413188be159', 'from': '0x43559c48ce3784ba040e56e001e2641ded99f41b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1650, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x59725991ece2880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T19:29:01.000Z'}}, {'blockNum': '0x768313', 'uniqueId': '0x825ab45feb7d3cd788225f8524ee6d50f14139509a1785bfdd21e6c408ee6e9d:log:39', 'hash': '0x825ab45feb7d3cd788225f8524ee6d50f14139509a1785bfdd21e6c408ee6e9d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xed12cb29ae8943ea3e8a5a0007fcf9539b28060e', 'value': 3219.046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xae813cc1c36a170000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T19:30:40.000Z'}}, {'blockNum': '0x768321', 'uniqueId': '0x3d67bd82e0a582a8ebc4dde5df3c17042249c0e2859f6edee4c063f06f7fba5c:log:6', 'hash': '0x3d67bd82e0a582a8ebc4dde5df3c17042249c0e2859f6edee4c063f06f7fba5c', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 78002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x10847f345fb123880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T19:34:17.000Z'}}, {'blockNum': '0x76832a', 'uniqueId': '0xff4f98e5539e30e531286c42babff66da62e9b1b0046eded30b84713def04868:log:15', 'hash': '0xff4f98e5539e30e531286c42babff66da62e9b1b0046eded30b84713def04868', 'from': '0xfed42de3fc29f2863f339f2717404983f1de66ce', 'to': '0x6d600bdd810fa3c194ec126aa881e1a277623f49', 'value': 6714.6302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x016c00368f43b61b8000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T19:35:38.000Z'}}, {'blockNum': '0x768366', 'uniqueId': '0xcf44a603bfd83e42d4999b06697a8fd52366d2a43018899fb46e7125add539c8:log:29', 'hash': '0xcf44a603bfd83e42d4999b06697a8fd52366d2a43018899fb46e7125add539c8', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 78002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x10847f345fb123880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T19:49:09.000Z'}}, {'blockNum': '0x768381', 'uniqueId': '0x7b633648f51dd348958919ae5e2e498779ad016692e9fec24abdaa41f2d79dda:log:46', 'hash': '0x7b633648f51dd348958919ae5e2e498779ad016692e9fec24abdaa41f2d79dda', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe806e2bb4ef1927e3bdb6fd70456612edcd035ec', 'value': 2319.779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x7dc16695c8bae38000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T19:53:12.000Z'}}, {'blockNum': '0x768396', 'uniqueId': '0xf7c6e30714b53303347ff8f296d2abc2849a8412907db1e76d1e9d92b31c96c2:log:1', 'hash': '0xf7c6e30714b53303347ff8f296d2abc2849a8412907db1e76d1e9d92b31c96c2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc1236689bfb4bb3c128fab93ed44c32dfdad9049', 'value': 12384.375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x029f5bba7744e4458000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T19:57:50.000Z'}}, {'blockNum': '0x76840a', 'uniqueId': '0xbcfa66d4c2eadb5ea0e2eb7898d243e176f4ba8ff6e935f7b20c6e78cd5881a1:log:5', 'hash': '0xbcfa66d4c2eadb5ea0e2eb7898d243e176f4ba8ff6e935f7b20c6e78cd5881a1', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 120643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x198c11f459fdcb2c0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T20:21:21.000Z'}}, {'blockNum': '0x768415', 'uniqueId': '0xbebbd40339fb85a7499488e2764430575e544182b689651ea9476239d0f9c3db:log:16', 'hash': '0xbebbd40339fb85a7499488e2764430575e544182b689651ea9476239d0f9c3db', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x282cb65c616e031e2922e238f51448dde45d0d60', 'value': 364225.8747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x4d20b9673842ab6cc000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T20:23:43.000Z'}}, {'blockNum': '0x76841d', 'uniqueId': '0xca00580f333a2196f1f76a7407cceddae42480f4af76d1f3f729e67fc5257472:log:69', 'hash': '0xca00580f333a2196f1f76a7407cceddae42480f4af76d1f3f729e67fc5257472', 'from': '0x6b239dcc62e60aeeb0fa233e1ed9512dd8e32173', 'to': '0xff42c1bcd6a7be554759afd8be0bcb1c769666f3', 'value': 1158.52311819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x3ecdbcede010d6cc00', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T20:26:39.000Z'}}, {'blockNum': '0x76842a', 'uniqueId': '0x4e5049bb256b8213868d8649981997c89267570bdbedfc18f550f8a2055d1f37:log:47', 'hash': '0x4e5049bb256b8213868d8649981997c89267570bdbedfc18f550f8a2055d1f37', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 120643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x198c11f459fdcb2c0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T20:29:30.000Z'}}, {'blockNum': '0x768448', 'uniqueId': '0x7b840f5b4f4b85609d39c41201a9c642f6ec2a052da1446161b3278c2a72516e:log:38', 'hash': '0x7b840f5b4f4b85609d39c41201a9c642f6ec2a052da1446161b3278c2a72516e', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 7314.584392152784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x018c864006557b429ee8', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T20:34:52.000Z'}}, {'blockNum': '0x76844f', 'uniqueId': '0xeb9e2bcfedc455c7b3b35aece0cdcc449d11e52f4ae93e5884a0d6ffcf31865c:log:187', 'hash': '0xeb9e2bcfedc455c7b3b35aece0cdcc449d11e52f4ae93e5884a0d6ffcf31865c', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 7314.584392152784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x018c864006557b429ee8', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T20:37:34.000Z'}}, {'blockNum': '0x768454', 'uniqueId': '0x9e04fa222e66b65a5aae6068648cbb7fa748959a3fc406943830d0848b43b9d3:log:52', 'hash': '0x9e04fa222e66b65a5aae6068648cbb7fa748959a3fc406943830d0848b43b9d3', 'from': '0x282cb65c616e031e2922e238f51448dde45d0d60', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 364225.8747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x4d20b9673842ab6cc000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T20:39:08.000Z'}}, {'blockNum': '0x768454', 'uniqueId': '0x2b85a29b9d5ac5d1cfc1763e9034cbdae2d4995dd3c96f0bf24272c90d0c5d4d:log:69', 'hash': '0x2b85a29b9d5ac5d1cfc1763e9034cbdae2d4995dd3c96f0bf24272c90d0c5d4d', 'from': '0xff42c1bcd6a7be554759afd8be0bcb1c769666f3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1158.52311819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x3ecdbcede010d6cc00', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T20:39:08.000Z'}}, {'blockNum': '0x76847f', 'uniqueId': '0x12c9e15a89054beafcc7ed7c4e92f9ac762d270d804474139d630a1a01c3a2bb:log:21', 'hash': '0x12c9e15a89054beafcc7ed7c4e92f9ac762d270d804474139d630a1a01c3a2bb', 'from': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7314.584392152784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x018c864006557b429ee8', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T20:49:05.000Z'}}, {'blockNum': '0x7684f0', 'uniqueId': '0x1739690ffb4e23cb52a22325b36c15a36aa854ea3679e7d281fcdadab785fc0e:log:12', 'hash': '0x1739690ffb4e23cb52a22325b36c15a36aa854ea3679e7d281fcdadab785fc0e', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xd9538dc20a49d8fff0e74399bf4317f4d5a228ea', 'value': 5517.94196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x012b20d3e14f7eb48000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T21:11:40.000Z'}}, {'blockNum': '0x768510', 'uniqueId': '0x6b1eeac8acc9e70e50733a06a8a5f0423e1f898b6cf74e6e6922983479b9c929:log:21', 'hash': '0x6b1eeac8acc9e70e50733a06a8a5f0423e1f898b6cf74e6e6922983479b9c929', 'from': '0xa927e132f110d5112a3758934953e5862d9db909', 'to': '0x32ca777b451279b6fcd6665e92fe37ac2aa6c2f6', 'value': 1098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x3b85cf9e8bf2e80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T21:16:55.000Z'}}, {'blockNum': '0x768542', 'uniqueId': '0x6998d5f51a74835b0554a4d6a63d9aa7120b6b489ee98363aa4bd2d08c3dd60e:log:32', 'hash': '0x6998d5f51a74835b0554a4d6a63d9aa7120b6b489ee98363aa4bd2d08c3dd60e', 'from': '0x32ca777b451279b6fcd6665e92fe37ac2aa6c2f6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x3b85cf9e8bf2e80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T21:29:06.000Z'}}, {'blockNum': '0x768592', 'uniqueId': '0x7d9c3ff96c8ebd4018ccef5fa8be9d29dfc6257d297cfce51ce48ee2fee5c5ff:log:15', 'hash': '0x7d9c3ff96c8ebd4018ccef5fa8be9d29dfc6257d297cfce51ce48ee2fee5c5ff', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xeed86b90448c371eab47b7f16e294297c27e4f51', 'value': 3499868.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02e5203f02ae7eda180000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T21:47:58.000Z'}}, {'blockNum': '0x768592', 'uniqueId': '0x0328b2de5b431955b08c07120550afae15cd7e3fd9e162fb4357c8a5badd6566:log:18', 'hash': '0x0328b2de5b431955b08c07120550afae15cd7e3fd9e162fb4357c8a5badd6566', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xfe4efe476f9f5742a539f509f62fc49941f375b1', 'value': 8320.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01c30cbee4a1a8280000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T21:47:58.000Z'}}, {'blockNum': '0x7685a7', 'uniqueId': '0x252eb0460b995eb964c00728249eb5613dd99e0be88475122317beedae256491:log:18', 'hash': '0x252eb0460b995eb964c00728249eb5613dd99e0be88475122317beedae256491', 'from': '0xeed86b90448c371eab47b7f16e294297c27e4f51', 'to': '0x9399ba9474964d792d09523c2e8306deb9538c5a', 'value': 3131.42145911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xa9c133da141ef2fc00', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T21:50:45.000Z'}}, {'blockNum': '0x7685c9', 'uniqueId': '0xda704f39f1e02a589ac8b39f0e80e4fc8737497cdb689c7cc3b1596fb42ac5e9:log:4', 'hash': '0xda704f39f1e02a589ac8b39f0e80e4fc8737497cdb689c7cc3b1596fb42ac5e9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe1281f43dada0b4ca919a2c2b2095e2b875a10cf', 'value': 9046.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01ea6805061e5dc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T21:59:07.000Z'}}, {'blockNum': '0x76868f', 'uniqueId': '0x3c403d3010f363f86affba21adeba6f57acd9de8b642c5ae0418507d01541c45:log:56', 'hash': '0x3c403d3010f363f86affba21adeba6f57acd9de8b642c5ae0418507d01541c45', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x2b616914ada8484ab9d70398dbe86b029b1a9a39', 'value': 3729.396201085554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xca2bc4e5b30bb79e9e', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T22:40:58.000Z'}}, {'blockNum': '0x768696', 'uniqueId': '0x3e717293c46c95c35605e0808ceb3cba61851214123d5b2de48606af10c4fd2c:log:111', 'hash': '0x3e717293c46c95c35605e0808ceb3cba61851214123d5b2de48606af10c4fd2c', 'from': '0x2b616914ada8484ab9d70398dbe86b029b1a9a39', 'to': '0xc72d1f7dfab2aa2a24d5d5f7afb0b2e1b34666b0', 'value': 3729.396201085554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xca2bc4e5b30bb79e9e', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T22:43:12.000Z'}}, {'blockNum': '0x768705', 'uniqueId': '0xa822a09ea3059db0dce4c1006500c44db2c622371f6bc85ba5d07301d0b24c54:log:49', 'hash': '0xa822a09ea3059db0dce4c1006500c44db2c622371f6bc85ba5d07301d0b24c54', 'from': '0x1c0ea763ad5182a99ec65dc8325959697dd77d04', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 2649.878596180769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x8fa673ef91618166d5', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T23:09:00.000Z'}}, {'blockNum': '0x76870f', 'uniqueId': '0x37f884c1cbf7cd5caf9fb7136012658634bb05d5f7cd145e6a014f6785075bce:log:43', 'hash': '0x37f884c1cbf7cd5caf9fb7136012658634bb05d5f7cd145e6a014f6785075bce', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 2615.841188552296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x8dce16c5aaef352dd2', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T23:10:54.000Z'}}, {'blockNum': '0x768714', 'uniqueId': '0xc79595ef707362754d44a08e7076a032e3156ca5a07037242783e0c6d3668591:log:63', 'hash': '0xc79595ef707362754d44a08e7076a032e3156ca5a07037242783e0c6d3668591', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 2615.841188552296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x8dce16c5aaef352dd2', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T23:11:51.000Z'}}, {'blockNum': '0x768736', 'uniqueId': '0x80af01cf3ec4fdebd91d382f21d7183569af3dd7bb08a5dd940f7d567c9ffbae:log:16', 'hash': '0x80af01cf3ec4fdebd91d382f21d7183569af3dd7bb08a5dd940f7d567c9ffbae', 'from': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2615.841188552296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x8dce16c5aaef352dd2', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T23:18:59.000Z'}}, {'blockNum': '0x76880b', 'uniqueId': '0x94e5e259c008f89b18327753d6ff403a27777505fde65162aeeee344365b69d0:log:6', 'hash': '0x94e5e259c008f89b18327753d6ff403a27777505fde65162aeeee344365b69d0', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc6a496824aa3ce61a956249fdbe7cab83a5b0b4b', 'value': 40006.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0878c744e05bff320000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:07:19.000Z'}}, {'blockNum': '0x768815', 'uniqueId': '0xd6e931c6c2596c0e3541166b90c9314679eaf7bf95c21cb14ab0eb438ec903c4:log:98', 'hash': '0xd6e931c6c2596c0e3541166b90c9314679eaf7bf95c21cb14ab0eb438ec903c4', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x32408178a9e86ed9aa766d33a637ebf14fd4f081', 'value': 2570.488260319503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x8b58b0cdbae7c862db', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:09:54.000Z'}}, {'blockNum': '0x768829', 'uniqueId': '0x0a0d72215b9473b466488eb7c475e808c6d8058152b08847e2d097ebc7675e5f:log:42', 'hash': '0x0a0d72215b9473b466488eb7c475e808c6d8058152b08847e2d097ebc7675e5f', 'from': '0x88998da950e21f9c7962341c634621dde86774d1', 'to': '0x4da45cf50184b1d767f20e45e34fc0f3eb7ef3e2', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:14:40.000Z'}}, {'blockNum': '0x768829', 'uniqueId': '0xb963d7e5550f1aa8d5242d1311ddda06dfc49869339cb8ea237e46b88a40ffbb:log:136', 'hash': '0xb963d7e5550f1aa8d5242d1311ddda06dfc49869339cb8ea237e46b88a40ffbb', 'from': '0x32408178a9e86ed9aa766d33a637ebf14fd4f081', 'to': '0xf8bfbfd0c81e6583363a13c48a457aee44e74376', 'value': 2570.488260319503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x8b58b0cdbae7c862db', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:14:40.000Z'}}, {'blockNum': '0x768855', 'uniqueId': '0x40157a70c9105a95ba329454049fea5558ff0f4a8af2f234d23c7740b36a1689:log:80', 'hash': '0x40157a70c9105a95ba329454049fea5558ff0f4a8af2f234d23c7740b36a1689', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x7f456453482d200781b70d7903dfb6e7a263330a', 'value': 3129.1711143500497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xa9a1f9057137f5e56c', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:25:25.000Z'}}, {'blockNum': '0x76885a', 'uniqueId': '0xd21e9c3e5409c2b8ee12e1fa5303de6e788839a76411be6e178e704e94715216:log:4', 'hash': '0xd21e9c3e5409c2b8ee12e1fa5303de6e788839a76411be6e178e704e94715216', 'from': '0x7f456453482d200781b70d7903dfb6e7a263330a', 'to': '0x5b2e31de1694d621f2ae51a9111db18963216977', 'value': 3129.1711143500497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xa9a1f9057137f5e56c', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:25:59.000Z'}}, {'blockNum': '0x768869', 'uniqueId': '0x3873546b88343c4267ad7860e29eaecbb141a2bc2f7896946627d89d8b36defb:log:39', 'hash': '0x3873546b88343c4267ad7860e29eaecbb141a2bc2f7896946627d89d8b36defb', 'from': '0x4da45cf50184b1d767f20e45e34fc0f3eb7ef3e2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:29:05.000Z'}}, {'blockNum': '0x76886a', 'uniqueId': '0xe3777cff7211b01590051900b47a68750ab6ac3f13d475b289dab8c8f5eb1703:log:27', 'hash': '0xe3777cff7211b01590051900b47a68750ab6ac3f13d475b289dab8c8f5eb1703', 'from': '0x5b2e31de1694d621f2ae51a9111db18963216977', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3129.1711143500497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xa9a1f9057137f5e56c', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:29:12.000Z'}}, {'blockNum': '0x76886a', 'uniqueId': '0xfe045a709d43bb1b41949b19e2e47d73046a9d7655dfa700c9e5cdd550e15440:log:29', 'hash': '0xfe045a709d43bb1b41949b19e2e47d73046a9d7655dfa700c9e5cdd550e15440', 'from': '0xf8bfbfd0c81e6583363a13c48a457aee44e74376', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2570.488260319503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x8b58b0cdbae7c862db', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:29:12.000Z'}}, {'blockNum': '0x76886f', 'uniqueId': '0x72a13d49f919137ae81fc2cd187aab07b82b8d266fbffdf807c70b78edbc3a3c:log:77', 'hash': '0x72a13d49f919137ae81fc2cd187aab07b82b8d266fbffdf807c70b78edbc3a3c', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 239961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x32d04fd7142235c40000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:30:05.000Z'}}, {'blockNum': '0x768870', 'uniqueId': '0xcdc6f3a98f136d28957157f3be9f29e34a87de629275d806109ef028d0d6e3c6:log:35', 'hash': '0xcdc6f3a98f136d28957157f3be9f29e34a87de629275d806109ef028d0d6e3c6', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x6f972a7d531d542f328f4e2b58f9398ef401c8a8', 'value': 239961.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x32d0598dfa6cc48a0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:30:20.000Z'}}, {'blockNum': '0x768874', 'uniqueId': '0x98576182603e4f7c103318badd1454eff5644b0ad57f0b85f792963c9c947c2b:log:13', 'hash': '0x98576182603e4f7c103318badd1454eff5644b0ad57f0b85f792963c9c947c2b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc6a496824aa3ce61a956249fdbe7cab83a5b0b4b', 'value': 600000.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x7f0e1d2cb8fd10da0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:30:48.000Z'}}, {'blockNum': '0x768893', 'uniqueId': '0x1b5e77116065a283c1327bd3c52fb67da359c53349a8575213e9ab0779cc5927:log:48', 'hash': '0x1b5e77116065a283c1327bd3c52fb67da359c53349a8575213e9ab0779cc5927', 'from': '0x6f972a7d531d542f328f4e2b58f9398ef401c8a8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 239961.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x32d0598dfa6cc48a0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:39:17.000Z'}}]}}
Number of returned transfers: 93
Answer is complete
symbol STORJ
group CCB
date 2019-06-11
hour 18:00
exchange binance
Name: 370, dtype: object
HERE
Symbol: STORJ, Contract: 0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac
Datetime timestamps: 2019-06-11 18:00:00 2019-06-11 06:00:00 2019-06-12 06:00:00
Unix timestamps: 1560225600.0 1560312000.0
Hex Block Numbers: 0x791556 0x792e3d
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7915a7', 'uniqueId': '0x269adcbb05da652e5cc2a6c716f67ba67a113b1b34143e6866a2989af560690b:log:1', 'hash': '0x269adcbb05da652e5cc2a6c716f67ba67a113b1b34143e6866a2989af560690b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6db4bc90741aad34cc8d0d7b1fdba3071d93055f', 'value': 9995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe8b9d29b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T04:17:38.000Z'}}, {'blockNum': '0x7915e1', 'uniqueId': '0x79b640b342770018c46d879967e21bea1206a0b633cb8ae8504ae6de792eb886:log:7', 'hash': '0x79b640b342770018c46d879967e21bea1206a0b633cb8ae8504ae6de792eb886', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x56c36af368cd433d40677b845672dd6c13658bd4', 'value': 456.59908367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aa18ae90f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T04:33:33.000Z'}}, {'blockNum': '0x7915e1', 'uniqueId': '0xb5d43da96993953eed4a66b89daeb8302e08291ddc92158e6dae26fdfb2719b5:log:8', 'hash': '0xb5d43da96993953eed4a66b89daeb8302e08291ddc92158e6dae26fdfb2719b5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x04936bbe003b9111e39f30fa88fd7f71ea25b19e', 'value': 5163.89378238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x783b3498be', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T04:33:33.000Z'}}, {'blockNum': '0x79160b', 'uniqueId': '0x1b16fa60af9df73fe4816fac0803fc24953e3f2bc8e076bad2c49b3967a02519:log:1', 'hash': '0x1b16fa60af9df73fe4816fac0803fc24953e3f2bc8e076bad2c49b3967a02519', 'from': '0xf2f2b743ff56472b4e5bd6b1d1f565f24f616f4b', 'to': '0x6d574caffeb34fb15eae59133c1c88280c31d9f9', 'value': 1702.94495633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x27a657c991', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T04:43:00.000Z'}}, {'blockNum': '0x791627', 'uniqueId': '0x77c2ef634837121f4d2585faddecd92fb4c69d86f9252654a30e070e724364e6:log:4', 'hash': '0x77c2ef634837121f4d2585faddecd92fb4c69d86f9252654a30e070e724364e6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x04405748c4738860ee1b7913f92ef9af5ddd36a7', 'value': 27459.06494123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x027f54c7faab', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T04:49:47.000Z'}}, {'blockNum': '0x791644', 'uniqueId': '0xb18ba1c2545d41a8d61e4912821de0fab5c2903f5ad689fb4a8aa193e583c5e9:log:4', 'hash': '0xb18ba1c2545d41a8d61e4912821de0fab5c2903f5ad689fb4a8aa193e583c5e9', 'from': '0x04936bbe003b9111e39f30fa88fd7f71ea25b19e', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 5163.89378238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x783b3498be', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T04:56:46.000Z'}}, {'blockNum': '0x791646', 'uniqueId': '0xa75f6f89fb025e7558b88d3ec68ea10f105a3d91b4d248cdb6350645d8677dbe:log:13', 'hash': '0xa75f6f89fb025e7558b88d3ec68ea10f105a3d91b4d248cdb6350645d8677dbe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 205220, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12aa26852400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T04:58:01.000Z'}}, {'blockNum': '0x79164d', 'uniqueId': '0xe4db89d2103751362ff9e35dbd111bf2eedb71b2cd7875079cd7508bc21881cf:log:1', 'hash': '0xe4db89d2103751362ff9e35dbd111bf2eedb71b2cd7875079cd7508bc21881cf', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5f65dd4a87e706529a9e96eed9afe6bc0078b5c6', 'value': 14.16299955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x546b05b3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T04:59:55.000Z'}}, {'blockNum': '0x791678', 'uniqueId': '0xc8eca394f3589db85ec507813ed3f057e7df7d82c2e5db57a31672d7290033a9:log:3', 'hash': '0xc8eca394f3589db85ec507813ed3f057e7df7d82c2e5db57a31672d7290033a9', 'from': '0x04405748c4738860ee1b7913f92ef9af5ddd36a7', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 27459.06494123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x027f54c7faab', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T05:11:25.000Z'}}, {'blockNum': '0x7916ce', 'uniqueId': '0x78f61953e50a2b6ffef8e971f83129204ec93d9a1a48822d499ede13bb0b332c:log:36', 'hash': '0x78f61953e50a2b6ffef8e971f83129204ec93d9a1a48822d499ede13bb0b332c', 'from': '0xe55250157d0bbb7e7c7c9dc0611e976f49115700', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 922.84819053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x157c9a966d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T05:32:11.000Z'}}, {'blockNum': '0x791768', 'uniqueId': '0x6ab0c742789ac4f8115f21ee60c5e537707fa45c704a9e90b1547c76728cbeb3:log:22', 'hash': '0x6ab0c742789ac4f8115f21ee60c5e537707fa45c704a9e90b1547c76728cbeb3', 'from': '0x6db4bc90741aad34cc8d0d7b1fdba3071d93055f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe8b9d29b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T06:11:57.000Z'}}, {'blockNum': '0x79177c', 'uniqueId': '0xf7d5a1dd4a5299803d3928d6f039de12601de8fb44e81bad9ba6934b286f9e82:log:12', 'hash': '0xf7d5a1dd4a5299803d3928d6f039de12601de8fb44e81bad9ba6934b286f9e82', 'from': '0xb5a345492dd9a2596f850e69ce308f7638ac7b61', 'to': '0x32e0d040f4511d7c278e4f4883aeb2142177bf1a', 'value': 496.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b90900d80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T06:16:21.000Z'}}, {'blockNum': '0x791782', 'uniqueId': '0xd09d4a1eedcd5b6d52449a6c1d5ab59e93dc13b57c43221653415da7d14729d5:log:6', 'hash': '0xd09d4a1eedcd5b6d52449a6c1d5ab59e93dc13b57c43221653415da7d14729d5', 'from': '0x32e0d040f4511d7c278e4f4883aeb2142177bf1a', 'to': '0x565369ec3ee45e1d0de717883a6a3d60c09d8b93', 'value': 496.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b90900d80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T06:16:52.000Z'}}, {'blockNum': '0x7917e6', 'uniqueId': '0xfa508fac0cf1bf159ee41acae67699ddfd179b505b3b1ef6e1916c4a1385dd14:log:60', 'hash': '0xfa508fac0cf1bf159ee41acae67699ddfd179b505b3b1ef6e1916c4a1385dd14', 'from': '0x6d574caffeb34fb15eae59133c1c88280c31d9f9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1702.94495633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x27a657c991', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T06:41:47.000Z'}}, {'blockNum': '0x7918aa', 'uniqueId': '0xe1dd144423df427e7e4bf9728a4cfde67146827cc4fda1ccbdcf08ce152c152a:log:89', 'hash': '0xe1dd144423df427e7e4bf9728a4cfde67146827cc4fda1ccbdcf08ce152c152a', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x0a24bde9d7618f9b745036fe0a7b57c7451ed724', 'value': 151.684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03881b6a80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T07:21:19.000Z'}}, {'blockNum': '0x7918b0', 'uniqueId': '0x1040ade5a10459b77d60dedecca0316497abdd2ce21bff2e7af1c83b0dc539ff:log:42', 'hash': '0x1040ade5a10459b77d60dedecca0316497abdd2ce21bff2e7af1c83b0dc539ff', 'from': '0x0a24bde9d7618f9b745036fe0a7b57c7451ed724', 'to': '0x5d9fba176e78e878405a280436c33e693225c942', 'value': 151.684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03881b6a80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T07:23:19.000Z'}}, {'blockNum': '0x791916', 'uniqueId': '0xf1af7aac3f6d249a8ad006ef2eee20fa7330168f2e3277af6ebdbc1b27876522:log:9', 'hash': '0xf1af7aac3f6d249a8ad006ef2eee20fa7330168f2e3277af6ebdbc1b27876522', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 6099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8e00df7300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T07:42:32.000Z'}}, {'blockNum': '0x79194b', 'uniqueId': '0x9435e2546af04f8713e6080b1dfc0b3d63ce6cae2324d708d858a4ca24e07ec7:log:73', 'hash': '0x9435e2546af04f8713e6080b1dfc0b3d63ce6cae2324d708d858a4ca24e07ec7', 'from': '0x0ccbb6146c923a247f9ca16104b5a964881a9512', 'to': '0x2b0f6d192d97c606e1ece03b1f7403f2a5ea8b78', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T07:55:26.000Z'}}, {'blockNum': '0x791950', 'uniqueId': '0x8493af6083fa7bb7736ee79d7f5d3f9ac4545c39227ecc62f68a547ba1e4bd90:log:77', 'hash': '0x8493af6083fa7bb7736ee79d7f5d3f9ac4545c39227ecc62f68a547ba1e4bd90', 'from': '0x0ccbb6146c923a247f9ca16104b5a964881a9512', 'to': '0x2b0f6d192d97c606e1ece03b1f7403f2a5ea8b78', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T07:56:13.000Z'}}, {'blockNum': '0x791a0b', 'uniqueId': '0x26abb32a2dabc202b2200a983b496abc50960543928bc316835c925731f353fb:log:12', 'hash': '0x26abb32a2dabc202b2200a983b496abc50960543928bc316835c925731f353fb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x4a7a4382b0495bdba11d7eec3951b90d040edaff', 'value': 740.830595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x113fb1c72c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T08:33:01.000Z'}}, {'blockNum': '0x791a12', 'uniqueId': '0xf5f1c51c5182445a7d783b11d2be5fce525a118046dce7b87b14771321736602:log:11', 'hash': '0xf5f1c51c5182445a7d783b11d2be5fce525a118046dce7b87b14771321736602', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa12f58575dc318a3c87dcc693addc6328e0841e2', 'value': 190.1202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x046d346720', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T08:35:16.000Z'}}, {'blockNum': '0x791a5e', 'uniqueId': '0x6870992f6c230a6c5f37924b9ce22bfe6726f11ac59e46cbdc9f0d18c2bdae93:log:21', 'hash': '0x6870992f6c230a6c5f37924b9ce22bfe6726f11ac59e46cbdc9f0d18c2bdae93', 'from': '0xa12f58575dc318a3c87dcc693addc6328e0841e2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 190.1202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x046d346720', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T08:51:46.000Z'}}, {'blockNum': '0x791a5e', 'uniqueId': '0x4458d17e8a2021563b6e2b4cfee1fdd279b4bb7cc2716acdf94e8d3d0ae5510b:log:22', 'hash': '0x4458d17e8a2021563b6e2b4cfee1fdd279b4bb7cc2716acdf94e8d3d0ae5510b', 'from': '0x4a7a4382b0495bdba11d7eec3951b90d040edaff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 740.830595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x113fb1c72c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T08:51:46.000Z'}}, {'blockNum': '0x791b40', 'uniqueId': '0x7c9f9cc6b2590fecfccbd511b3d4ee55f12e1c4836f8ca42d5c990f05fa7add1:log:3', 'hash': '0x7c9f9cc6b2590fecfccbd511b3d4ee55f12e1c4836f8ca42d5c990f05fa7add1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe3f63cd9ad5281a2e9300cd98410b0ba0a4b11cc', 'value': 451.05136112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a8079c1f0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T09:50:23.000Z'}}, {'blockNum': '0x791b61', 'uniqueId': '0xa7f925fc2416064b3b759d21333b73c405605ac6eb1b5a84d56893b921bfc551:log:14', 'hash': '0xa7f925fc2416064b3b759d21333b73c405605ac6eb1b5a84d56893b921bfc551', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 3689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x55e4274900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T09:58:23.000Z'}}, {'blockNum': '0x791b69', 'uniqueId': '0xdde2cf407f33d9d1d0cd7fd9682441346827a7e8ab99b5f96c5586173a68a1cf:log:15', 'hash': '0xdde2cf407f33d9d1d0cd7fd9682441346827a7e8ab99b5f96c5586173a68a1cf', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 7400.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xac4cb05740', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:02:00.000Z'}}, {'blockNum': '0x791bb0', 'uniqueId': '0x7a412f7ad175b224cbb236bb7b72f56c982aa74dbbe0088b08e70b2a94b191a6:log:44', 'hash': '0x7a412f7ad175b224cbb236bb7b72f56c982aa74dbbe0088b08e70b2a94b191a6', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x4b106a8be7481dd89293891d3ea46f89437c9853', 'value': 17344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0193d24bc000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:17:42.000Z'}}, {'blockNum': '0x791bbc', 'uniqueId': '0x92cc19c4eb8d4f5cb93de2f8acefce031fb7a9da6756895ce340d72a684d7dae:log:26', 'hash': '0x92cc19c4eb8d4f5cb93de2f8acefce031fb7a9da6756895ce340d72a684d7dae', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7400.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xac4cb05740', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:21:54.000Z'}}, {'blockNum': '0x791bc8', 'uniqueId': '0xf28dee1980becc200e6352ccc8ea457f1ee6a2ecafc827600d3eec1003f01cab:log:73', 'hash': '0xf28dee1980becc200e6352ccc8ea457f1ee6a2ecafc827600d3eec1003f01cab', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x8f8a8969a8f8b1319ef17a14834cecc25f30f01d', 'value': 3966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5c5733be00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:24:00.000Z'}}, {'blockNum': '0x791bc8', 'uniqueId': '0xa434ab9f2fdc5e6c216d8f10c959e254259c6cdf6580090ce6046c61be51c4a8:log:74', 'hash': '0xa434ab9f2fdc5e6c216d8f10c959e254259c6cdf6580090ce6046c61be51c4a8', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x3fd093f99367c80258ef66cad7727e7047dc94a3', 'value': 5259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7a72152b00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:24:00.000Z'}}, {'blockNum': '0x791bd5', 'uniqueId': '0xad3e87dadb5a7583a5f48d2ad133893283f1d6e7e06c60435ea83bcacba24ed6:log:6', 'hash': '0xad3e87dadb5a7583a5f48d2ad133893283f1d6e7e06c60435ea83bcacba24ed6', 'from': '0x3fd093f99367c80258ef66cad7727e7047dc94a3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 5259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7a72152b00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:27:35.000Z'}}, {'blockNum': '0x791be0', 'uniqueId': '0xab941de18e511be0ad6bea79bf95b68367df09604b9b17e7d3dd88c58bf263ce:log:48', 'hash': '0xab941de18e511be0ad6bea79bf95b68367df09604b9b17e7d3dd88c58bf263ce', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x1c0aff5fcb9a1d91979fdb6aa2d858506cb2d10f', 'value': 2913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x43d2d54100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:29:50.000Z'}}, {'blockNum': '0x791c01', 'uniqueId': '0xe81a6969007e7e58325a87e90301f9f7fdfe14336c8f6fc80b9f2473f0f3233f:log:118', 'hash': '0xe81a6969007e7e58325a87e90301f9f7fdfe14336c8f6fc80b9f2473f0f3233f', 'from': '0x1c0aff5fcb9a1d91979fdb6aa2d858506cb2d10f', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 2913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x43d2d54100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:38:53.000Z'}}, {'blockNum': '0x791c02', 'uniqueId': '0xc156be16dcd9fcfaac28bf66321f6bbc3659eeeebe700f01fecefa7c68448bed:log:0', 'hash': '0xc156be16dcd9fcfaac28bf66321f6bbc3659eeeebe700f01fecefa7c68448bed', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1c0aff5fcb9a1d91979fdb6aa2d858506cb2d10f', 'value': 4500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x68c6171400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:39:00.000Z'}}, {'blockNum': '0x791c21', 'uniqueId': '0xef264bdce4bc0ee9790867693d4d1893d579a73fa48232ed76050992fb817ca1:log:72', 'hash': '0xef264bdce4bc0ee9790867693d4d1893d579a73fa48232ed76050992fb817ca1', 'from': '0x1c0aff5fcb9a1d91979fdb6aa2d858506cb2d10f', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 4500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x68c6171400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:48:10.000Z'}}, {'blockNum': '0x791c32', 'uniqueId': '0x86db9c65b653645ae798071562cec2376b9cc89fb261cb5990d600336013d2b6:log:14', 'hash': '0x86db9c65b653645ae798071562cec2376b9cc89fb261cb5990d600336013d2b6', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x55e4274900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:51:05.000Z'}}, {'blockNum': '0x791c47', 'uniqueId': '0x7a27935bef5575a73cc822abf2a6653e220f45b12db45b298a5f3128b868f63a:log:1', 'hash': '0x7a27935bef5575a73cc822abf2a6653e220f45b12db45b298a5f3128b868f63a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbfe0ace9979aacce00cf237a385a62079981fe61', 'value': 371.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08a6500380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:55:13.000Z'}}, {'blockNum': '0x791c5d', 'uniqueId': '0x117e69b974417be5580e45d03b9696e2bd5e217c3ed5638e11d6a3799016a8ef:log:30', 'hash': '0x117e69b974417be5580e45d03b9696e2bd5e217c3ed5638e11d6a3799016a8ef', 'from': '0xbfe0ace9979aacce00cf237a385a62079981fe61', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 371.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08a6500380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:58:58.000Z'}}, {'blockNum': '0x791cfa', 'uniqueId': '0x25816f033162c934d2134860face3a2ca6624508b0354cff9ba5431a6c2541ec:log:75', 'hash': '0x25816f033162c934d2134860face3a2ca6624508b0354cff9ba5431a6c2541ec', 'from': '0x4e19fa79b60a15a97f6ad0b155574c32f887196a', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 341.378, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07f2c57d40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T11:30:39.000Z'}}, {'blockNum': '0x791d21', 'uniqueId': '0x45ecb973e3b43ccf1fe9e044676fef4a6e529f8c2164a0d83466df0f57911f2d:log:2', 'hash': '0x45ecb973e3b43ccf1fe9e044676fef4a6e529f8c2164a0d83466df0f57911f2d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4c364adc3b33f3435bc12f2b9a2d2f01ecce27e3', 'value': 3051.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x470c5b7b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T11:37:27.000Z'}}, {'blockNum': '0x791d2d', 'uniqueId': '0x794df581f4c830432f61aa9dc9eff022e2785b734443068fb384889b229cd0ef:log:0', 'hash': '0x794df581f4c830432f61aa9dc9eff022e2785b734443068fb384889b229cd0ef', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 29999.99993627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def171b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T11:40:10.000Z'}}, {'blockNum': '0x791d68', 'uniqueId': '0x10d7c7e8f6d96d58de01d2e821b63897cd83af880edeafdcf629263e6e0b8870:log:0', 'hash': '0x10d7c7e8f6d96d58de01d2e821b63897cd83af880edeafdcf629263e6e0b8870', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbaa2ecb4c308b1cb3e57888ed3774ef5465c91d0', 'value': 1995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e761b5b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T11:53:36.000Z'}}, {'blockNum': '0x791d6f', 'uniqueId': '0x6ba338f98efc3e0f61942af7e2bb96579eca09921e864a53f26d24fe46148733:log:127', 'hash': '0x6ba338f98efc3e0f61942af7e2bb96579eca09921e864a53f26d24fe46148733', 'from': '0xcf4ae6947cde9ca25274876901b562cac1299466', 'to': '0x89ce2b4e41409f788efc2670f2dfb487b75669b4', 'value': 111.41823253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02981abb15', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T11:56:50.000Z'}}, {'blockNum': '0x791d84', 'uniqueId': '0xcf7a08526fd967f69a14e9473aa45039e52ca5d05157ea14c1372f3fe240e87b:log:78', 'hash': '0xcf7a08526fd967f69a14e9473aa45039e52ca5d05157ea14c1372f3fe240e87b', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29999.99993627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def171b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T12:02:35.000Z'}}, {'blockNum': '0x791db2', 'uniqueId': '0x5f0e9481906bfded8e565dea370b3ff2945e4357480f0701091720ef834659b2:log:179', 'hash': '0x5f0e9481906bfded8e565dea370b3ff2945e4357480f0701091720ef834659b2', 'from': '0xbaa2ecb4c308b1cb3e57888ed3774ef5465c91d0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e761b5b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T12:13:55.000Z'}}, {'blockNum': '0x791dc3', 'uniqueId': '0x31264d2089fd240b8a16a1033f8bad39eccdf28637983527974625a6e60a2982:log:53', 'hash': '0x31264d2089fd240b8a16a1033f8bad39eccdf28637983527974625a6e60a2982', 'from': '0x89ce2b4e41409f788efc2670f2dfb487b75669b4', 'to': '0x110327c7174f93252c92ed43edea694afd29433d', 'value': 111.41823253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02981abb15', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T12:16:03.000Z'}}, {'blockNum': '0x791e25', 'uniqueId': '0xff8a61d6f714608acc4bc4a55dfd835288ae7fc97058d9e1bd10ee311fb6c7ef:log:1', 'hash': '0xff8a61d6f714608acc4bc4a55dfd835288ae7fc97058d9e1bd10ee311fb6c7ef', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1e4ffb26b446561b7b06a45426b304e00c26430c', 'value': 540.91065225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c98142789', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T12:36:01.000Z'}}, {'blockNum': '0x791e3a', 'uniqueId': '0x624bfd5fec53e109eee32965da2b084f8ae96df53790b636d4ade856892aa5eb:log:1', 'hash': '0x624bfd5fec53e109eee32965da2b084f8ae96df53790b636d4ade856892aa5eb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1e4ffb26b446561b7b06a45426b304e00c26430c', 'value': 4495.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x68ab449f80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T12:39:46.000Z'}}, {'blockNum': '0x791ecc', 'uniqueId': '0x8fef66dfb7fef509bb1afea53b135935a5e8baa2107686f7b9dae8fc23c54389:log:63', 'hash': '0x8fef66dfb7fef509bb1afea53b135935a5e8baa2107686f7b9dae8fc23c54389', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x96af749d853db9d9965ff491636f92ce80112ac3', 'value': 15.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5c631f80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T13:14:16.000Z'}}, {'blockNum': '0x791efc', 'uniqueId': '0x5f3c1ab3c2e598b2e42082e52e4457add418954c31fc3dadb64d90fefc0e43d9:log:1', 'hash': '0x5f3c1ab3c2e598b2e42082e52e4457add418954c31fc3dadb64d90fefc0e43d9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x96af749d853db9d9965ff491636f92ce80112ac3', 'value': 1094.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x197bba7680', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T13:26:22.000Z'}}, {'blockNum': '0x791f0c', 'uniqueId': '0x58db495cd927fda3478066cab2e24c5e41975e621296e81a0171f6eccc9e2763:log:6', 'hash': '0x58db495cd927fda3478066cab2e24c5e41975e621296e81a0171f6eccc9e2763', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb3e45d3abf585978722763879974362a1bf36276', 'value': 1454.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x21deb00b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T13:31:06.000Z'}}, {'blockNum': '0x791f15', 'uniqueId': '0xf040c3f5b97a7da5637891e373225fd07daf9eaa07f35114ae2da72ba2639423:log:85', 'hash': '0xf040c3f5b97a7da5637891e373225fd07daf9eaa07f35114ae2da72ba2639423', 'from': '0x96af749d853db9d9965ff491636f92ce80112ac3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x19d81d9600', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T13:33:01.000Z'}}, {'blockNum': '0x791fc9', 'uniqueId': '0x3d4b2d19ca7f942983ebe7ffc409c65b2a9a09466e1bc561fbf7ab30920dd4c1:log:27', 'hash': '0x3d4b2d19ca7f942983ebe7ffc409c65b2a9a09466e1bc561fbf7ab30920dd4c1', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x17ff46a45d10d8b2ef5b14c73f859d116e10db4f', 'value': 65307.2111174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05f08d4fdebc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T14:11:51.000Z'}}, {'blockNum': '0x791fe8', 'uniqueId': '0x6260ab25a06813b2dfa6a360ae948a0c83ea6e42b2d174bbaed6937f25d4d4dc:log:12', 'hash': '0x6260ab25a06813b2dfa6a360ae948a0c83ea6e42b2d174bbaed6937f25d4d4dc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x72870b00a0ffa548763b85077b3e7ea93b35c76e', 'value': 510.30344183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0be1a541f7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T14:18:51.000Z'}}, {'blockNum': '0x792055', 'uniqueId': '0x2d45bee71c442cd395cedbb5131957c59b9fc0d1b9087f1d47269a85b78a3a7c:log:155', 'hash': '0x2d45bee71c442cd395cedbb5131957c59b9fc0d1b9087f1d47269a85b78a3a7c', 'from': '0x72870b00a0ffa548763b85077b3e7ea93b35c76e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 510.30344183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0be1a541f7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T14:43:52.000Z'}}, {'blockNum': '0x792095', 'uniqueId': '0xc4c317ecb990e6b0d38215f5a644562261b052671eb6a2acd9dcf65f116a0ca6:log:12', 'hash': '0xc4c317ecb990e6b0d38215f5a644562261b052671eb6a2acd9dcf65f116a0ca6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 27278.35238122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x027b1fa67eea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T14:58:07.000Z'}}, {'blockNum': '0x7920d8', 'uniqueId': '0x750839984cbe8e9dfaa1455016703acb16f2a33eaea857542ea7268b09ea9425:log:15', 'hash': '0x750839984cbe8e9dfaa1455016703acb16f2a33eaea857542ea7268b09ea9425', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 27278.35238122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x027b1fa67eea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:11:33.000Z'}}, {'blockNum': '0x7920dd', 'uniqueId': '0x2f06cc5555581455db5c90fc4aaf26d7316d88c5d0fbf8e1833db929ea081d10:log:0', 'hash': '0x2f06cc5555581455db5c90fc4aaf26d7316d88c5d0fbf8e1833db929ea081d10', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4fd9d6fd58c73ef32b3a48ffe014ce77d944a0e3', 'value': 12.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4a817c80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:13:19.000Z'}}, {'blockNum': '0x792155', 'uniqueId': '0xcd8b646b5d720eed0e41813f5b3b3d10c1e440902c9811f85deb1fcce1da9883:log:2', 'hash': '0xcd8b646b5d720eed0e41813f5b3b3d10c1e440902c9811f85deb1fcce1da9883', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x488ea5954fb949cde526f6bdf8d77e813aa82329', 'value': 1062.19804154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x18bb3195fa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:37:03.000Z'}}, {'blockNum': '0x792162', 'uniqueId': '0xc10519a378102b76a827b8b0c3a49165bf92d96ee16802f86ad353d121e037e2:log:12', 'hash': '0xc10519a378102b76a827b8b0c3a49165bf92d96ee16802f86ad353d121e037e2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x2f13ed157656b7c708b0db91442469dc0aa88b76', 'value': 379.42456219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08d58bef9b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:38:59.000Z'}}, {'blockNum': '0x792162', 'uniqueId': '0x9cc7abecbf92f253ceba028b108ed69d450a0407b5a97472cd2f5f3b0b0d48f5:log:13', 'hash': '0x9cc7abecbf92f253ceba028b108ed69d450a0407b5a97472cd2f5f3b0b0d48f5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e51f95dbcc805950430acb5106a61191f40bbe1', 'value': 2495.49696794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a1a522f1a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:38:59.000Z'}}, {'blockNum': '0x792162', 'uniqueId': '0x7fdecf50b89844ee5054a87aeb4cfc36eb4002cc4658b7fe4ff62d96c85a7fc1:log:14', 'hash': '0x7fdecf50b89844ee5054a87aeb4cfc36eb4002cc4658b7fe4ff62d96c85a7fc1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x39021b41c91d80e9881e10fd7cf482cb398d8972', 'value': 2514.93052758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a8e277156', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:38:59.000Z'}}, {'blockNum': '0x792168', 'uniqueId': '0x27689f25afc59958498d50cb21b15ce0682fa37c19f872c6a3ef559c8d822a39:log:32', 'hash': '0x27689f25afc59958498d50cb21b15ce0682fa37c19f872c6a3ef559c8d822a39', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e586c5bbcc6589cd842cdaadae30b76b0e889fd', 'value': 28086.5059676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x028df09f0198', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:41:23.000Z'}}, {'blockNum': '0x792175', 'uniqueId': '0xc4b8da96453355dcb7bd06a546b3accd057a1fa120b672b86fbaa7f606241778:log:3', 'hash': '0xc4b8da96453355dcb7bd06a546b3accd057a1fa120b672b86fbaa7f606241778', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x05978d3b42f5c419fca4f52928edb4b83c9bf143', 'value': 10995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010002498380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:43:32.000Z'}}, {'blockNum': '0x792181', 'uniqueId': '0xa700a998b828edf3a9d7e11818d26652ab857e488628ecf7daa30f6548a18840:log:3', 'hash': '0xa700a998b828edf3a9d7e11818d26652ab857e488628ecf7daa30f6548a18840', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e3bc50aa76102a79f9360a5c138079c5a9a7386', 'value': 517.9205998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c0f0c1e4c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:45:12.000Z'}}, {'blockNum': '0x792181', 'uniqueId': '0xec4b4b248f884d7c71d50f30e2a85c88ae63000787442218c5bd973de87d5be8:log:15', 'hash': '0xec4b4b248f884d7c71d50f30e2a85c88ae63000787442218c5bd973de87d5be8', 'from': '0x2f13ed157656b7c708b0db91442469dc0aa88b76', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 379.42456219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08d58bef9b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:45:12.000Z'}}, {'blockNum': '0x792184', 'uniqueId': '0xc2d33cdd44d5fea517e8704adead573d4991b54150110ac3903a7af229c53fcc:log:20', 'hash': '0xc2d33cdd44d5fea517e8704adead573d4991b54150110ac3903a7af229c53fcc', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3a14124784e6663a23a43d7778dacca5683b2abb', 'value': 7404.29, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xac6501ed40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:46:02.000Z'}}, {'blockNum': '0x79218e', 'uniqueId': '0xda48822350f7a1705e8258c30a9eb958b30e8b4ee97e7d37f75bad671b0322d5:log:1', 'hash': '0xda48822350f7a1705e8258c30a9eb958b30e8b4ee97e7d37f75bad671b0322d5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e5d3da60a7ec5383e950dfe3b8b8d27350db581', 'value': 367.24548446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x088cf4235e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:49:25.000Z'}}, {'blockNum': '0x79218e', 'uniqueId': '0x89c5d662fca0463f1d36095555239030e674f442e7018ed6a1e67c2ffd3e1f08:log:2', 'hash': '0x89c5d662fca0463f1d36095555239030e674f442e7018ed6a1e67c2ffd3e1f08', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e52d7dac535a9a60d144c08a71b4bfc363dbf1d', 'value': 345.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x080b572980', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:49:25.000Z'}}, {'blockNum': '0x79219a', 'uniqueId': '0xe2714dcc29b67f06b4074514503eebc09de8c2ea061a210760acc037f3731f45:log:84', 'hash': '0xe2714dcc29b67f06b4074514503eebc09de8c2ea061a210760acc037f3731f45', 'from': '0x39021b41c91d80e9881e10fd7cf482cb398d8972', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2514.93052758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a8e277156', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:52:03.000Z'}}, {'blockNum': '0x7921a0', 'uniqueId': '0xfbeb4915969e7d1a578bbe370a08b83012f808e9e3f0b7fbca41e34d0c42796a:log:122', 'hash': '0xfbeb4915969e7d1a578bbe370a08b83012f808e9e3f0b7fbca41e34d0c42796a', 'from': '0x05978d3b42f5c419fca4f52928edb4b83c9bf143', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010002498380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:53:13.000Z'}}, {'blockNum': '0x7921a1', 'uniqueId': '0xe1be8b3e54b53c61ce914c479eb229edc509ab682d29b40ba7edff5c7ce35884:log:2', 'hash': '0xe1be8b3e54b53c61ce914c479eb229edc509ab682d29b40ba7edff5c7ce35884', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4ed1b1ec63d29c6a26aabca98a4cff9da1d6a246', 'value': 495.66319197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b8a62025d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:53:25.000Z'}}, {'blockNum': '0x7921ac', 'uniqueId': '0x4cba762374032724ac3a37d1b0f65d0d161910f0a6b9264b2f6552ce9cf06f18:log:17', 'hash': '0x4cba762374032724ac3a37d1b0f65d0d161910f0a6b9264b2f6552ce9cf06f18', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e663fc21eced6453b59c202737752df820c7101', 'value': 618.9375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0e6927acf0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:55:37.000Z'}}, {'blockNum': '0x7921ac', 'uniqueId': '0xdf20222d199c332d5274fdd397ba9bf61126ca8045aaa2ffc5e3aa9543c874f9:log:19', 'hash': '0xdf20222d199c332d5274fdd397ba9bf61126ca8045aaa2ffc5e3aa9543c874f9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdb8553b4f9147433dc979bcf10172097e369a9ad', 'value': 91.06886228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x021ed00e54', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:55:37.000Z'}}, {'blockNum': '0x7921c1', 'uniqueId': '0x85f6749c3471101a32de0817dec509b9d26abcbb1e483450bc1dfe6060d3f5bd:log:1', 'hash': '0x85f6749c3471101a32de0817dec509b9d26abcbb1e483450bc1dfe6060d3f5bd', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 15439.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01677a975f80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:59:13.000Z'}}, {'blockNum': '0x7921ca', 'uniqueId': '0x1a6852c6041d993e53823f20e3c2d88afce41d28e38e2d9a7bab2bafcc3d0a57:log:130', 'hash': '0x1a6852c6041d993e53823f20e3c2d88afce41d28e38e2d9a7bab2bafcc3d0a57', 'from': '0x6e51f95dbcc805950430acb5106a61191f40bbe1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2495.49696794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a1a522f1a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:02:11.000Z'}}, {'blockNum': '0x7921cb', 'uniqueId': '0x04c37dba95ed5e60b735cf3edd2a2613a78053390a88b2b1cf5d5935fc45f267:log:98', 'hash': '0x04c37dba95ed5e60b735cf3edd2a2613a78053390a88b2b1cf5d5935fc45f267', 'from': '0x6e3bc50aa76102a79f9360a5c138079c5a9a7386', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 517.9205998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c0f0c1e4c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:02:14.000Z'}}, {'blockNum': '0x7921cd', 'uniqueId': '0x43b0e7c91f87ae51c309c1733711d33753af4cf19583332ea5f19651faf990a1:log:32', 'hash': '0x43b0e7c91f87ae51c309c1733711d33753af4cf19583332ea5f19651faf990a1', 'from': '0x4ed1b1ec63d29c6a26aabca98a4cff9da1d6a246', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 495.66319197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b8a62025d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:02:30.000Z'}}, {'blockNum': '0x7921cd', 'uniqueId': '0x5508b0c19031269ad9eafc9313aaf307d86648228ac4fa8d308e239fe9ebadc4:log:66', 'hash': '0x5508b0c19031269ad9eafc9313aaf307d86648228ac4fa8d308e239fe9ebadc4', 'from': '0x6e586c5bbcc6589cd842cdaadae30b76b0e889fd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28086.5059676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x028df09f0198', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:02:30.000Z'}}, {'blockNum': '0x7921d5', 'uniqueId': '0xba218eee2e599f43c15286f4541f0f5bcebcbfa1d2fb7a9eab3401ffc3fef3ce:log:2', 'hash': '0xba218eee2e599f43c15286f4541f0f5bcebcbfa1d2fb7a9eab3401ffc3fef3ce', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x8ff04eb7c1dee52af72d4bb60138424364acb740', 'value': 193.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0481599180', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:03:27.000Z'}}, {'blockNum': '0x7921d5', 'uniqueId': '0xdb99de59636675775709d2d8ebf5705b98b150301a96e2e51bacff88ada96c16:log:3', 'hash': '0xdb99de59636675775709d2d8ebf5705b98b150301a96e2e51bacff88ada96c16', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3af61ae0cbcef774fc153aa03da8b1a86986e2b5', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:03:27.000Z'}}, {'blockNum': '0x792205', 'uniqueId': '0x4abd75b9040187b3ef070dc6b80805ca61c3bfd3f0a1b5630fcf698c9f5daa93:log:135', 'hash': '0x4abd75b9040187b3ef070dc6b80805ca61c3bfd3f0a1b5630fcf698c9f5daa93', 'from': '0x6e5d3da60a7ec5383e950dfe3b8b8d27350db581', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 367.24548446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x088cf4235e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:12:17.000Z'}}, {'blockNum': '0x792207', 'uniqueId': '0x2b48b2523bfa9184e51383edcd8ab1e44a33a4a2d3b09bcde5db671c960630be:log:32', 'hash': '0x2b48b2523bfa9184e51383edcd8ab1e44a33a4a2d3b09bcde5db671c960630be', 'from': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15439.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01677a975f80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:12:37.000Z'}}, {'blockNum': '0x792207', 'uniqueId': '0x064a05d89f36efae9e0e5056effcfb958293d1010b3e95054784b674865e779f:log:104', 'hash': '0x064a05d89f36efae9e0e5056effcfb958293d1010b3e95054784b674865e779f', 'from': '0x6e52d7dac535a9a60d144c08a71b4bfc363dbf1d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 345.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x080b572980', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:12:37.000Z'}}, {'blockNum': '0x79220a', 'uniqueId': '0x1eaf33e06860abb2d74d1d935e50707a49e58aebdd9fe2461fae8620ba408f56:log:9', 'hash': '0x1eaf33e06860abb2d74d1d935e50707a49e58aebdd9fe2461fae8620ba408f56', 'from': '0x6e663fc21eced6453b59c202737752df820c7101', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 618.9375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0e6927acf0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:12:55.000Z'}}, {'blockNum': '0x79220e', 'uniqueId': '0x5c72957c8a783b3f5f45f50762df3b2c6d4e0bc145aaf8881064929f07a0473c:log:2', 'hash': '0x5c72957c8a783b3f5f45f50762df3b2c6d4e0bc145aaf8881064929f07a0473c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xefe5fdb9885e70e066237a341d582c8d837e2476', 'value': 1495.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22d1dfe780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:13:35.000Z'}}, {'blockNum': '0x79221c', 'uniqueId': '0xb6a5956bcc7902d4710df2d24dd00bad5b38ac7c87de47319acfa96c5c04365a:log:13', 'hash': '0xb6a5956bcc7902d4710df2d24dd00bad5b38ac7c87de47319acfa96c5c04365a', 'from': '0xefe5fdb9885e70e066237a341d582c8d837e2476', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1495.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22d1dfe780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:16:48.000Z'}}, {'blockNum': '0x792228', 'uniqueId': '0x5d4d099f9db15bdcce4052916be6eb60273350ab258119d77fa0c38ba12c52e9:log:9', 'hash': '0x5d4d099f9db15bdcce4052916be6eb60273350ab258119d77fa0c38ba12c52e9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 32749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02fa7f404d00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:19:43.000Z'}}, {'blockNum': '0x792230', 'uniqueId': '0xa35a3280152b089d41fcaea6554d00ef3f03ee40ddd142679ab0360bcf6c8c2e:log:0', 'hash': '0xa35a3280152b089d41fcaea6554d00ef3f03ee40ddd142679ab0360bcf6c8c2e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1c3bf620157a626ff2c740d84a8cdbb80461a05f', 'value': 95.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0239396f80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:21:46.000Z'}}, {'blockNum': '0x792233', 'uniqueId': '0x033cb2a5f2583cda762e0314b2814cae0d240ddd69b413d67220556e88c27982:log:66', 'hash': '0x033cb2a5f2583cda762e0314b2814cae0d240ddd69b413d67220556e88c27982', 'from': '0x1b18e579d5a5dcf7a133ff6f8016eebae0433fc5', 'to': '0x0141db81dca16d472b5016124df5a184da902a04', 'value': 545.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0cb23dc480', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:22:43.000Z'}}, {'blockNum': '0x792233', 'uniqueId': '0x84305c4fa4adcfa6d67652ff159b4f5bf485479f9e49db0eb2b9bc693f07d43e:log:80', 'hash': '0x84305c4fa4adcfa6d67652ff159b4f5bf485479f9e49db0eb2b9bc693f07d43e', 'from': '0x3af61ae0cbcef774fc153aa03da8b1a86986e2b5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:22:43.000Z'}}, {'blockNum': '0x79223b', 'uniqueId': '0x76058ecc1822d0b3190350d21cd089af23be5bf98bdb7e76a48281293198e0b5:log:1', 'hash': '0x76058ecc1822d0b3190350d21cd089af23be5bf98bdb7e76a48281293198e0b5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6ec882812357881e9077cf59b57178d7d437b639', 'value': 496.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b8f4f9e40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:23:59.000Z'}}, {'blockNum': '0x792252', 'uniqueId': '0xb6a0707a11e8f335a28585448f6a0c5da90703391661d332dc64f782a8198864:log:1', 'hash': '0xb6a0707a11e8f335a28585448f6a0c5da90703391661d332dc64f782a8198864', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4b997bad6967b9f874942e02387b38611cbf04d4', 'value': 2495.83021618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a1c4eae32', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:29:51.000Z'}}, {'blockNum': '0x792252', 'uniqueId': '0x856b0289d7fe3567f3b39c7c945c2dea41e32f9004603d3886fd57f8ee470c10:log:2', 'hash': '0x856b0289d7fe3567f3b39c7c945c2dea41e32f9004603d3886fd57f8ee470c10', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x713bf42eadc6efbf52d6a015d2255e0b24f39d92', 'value': 796.0563953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1288dda96a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:29:51.000Z'}}, {'blockNum': '0x79225c', 'uniqueId': '0x23cb78234ea387105c72ba510e8966f6a4abb909d84601d58e0136bd3a8cb56c:log:1', 'hash': '0x23cb78234ea387105c72ba510e8966f6a4abb909d84601d58e0136bd3a8cb56c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x678c8d1f88f751c8989e77528a114d9fabb89928', 'value': 295.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06e1513780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:31:43.000Z'}}, {'blockNum': '0x79225e', 'uniqueId': '0xca39e6299347f8d61bbda3c434ddd87addd5f3d9aedd73bc616f8aa6a64bb63d:log:67', 'hash': '0xca39e6299347f8d61bbda3c434ddd87addd5f3d9aedd73bc616f8aa6a64bb63d', 'from': '0x6ec882812357881e9077cf59b57178d7d437b639', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 496.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b8f4f9e40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:32:17.000Z'}}, {'blockNum': '0x79226b', 'uniqueId': '0x374cc202d437a3d7429de7792faae4d8da3ad971310126c70c5c5144c53d5866:log:6', 'hash': '0x374cc202d437a3d7429de7792faae4d8da3ad971310126c70c5c5144c53d5866', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x755d6c7b193275cef386afb21cf79c0917fd4c08', 'value': 1344.31272186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f4cba6cfa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:35:47.000Z'}}, {'blockNum': '0x792278', 'uniqueId': '0x76086a5f3662b39cbc32488ac96ec9855980dbb0cf7d633ba35f3e3b82ce7471:log:16', 'hash': '0x76086a5f3662b39cbc32488ac96ec9855980dbb0cf7d633ba35f3e3b82ce7471', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xeb3dc94506b4719b212fb46ed8b5383ed2d7a226', 'value': 252.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05e2359980', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:38:25.000Z'}}, {'blockNum': '0x79228f', 'uniqueId': '0xe9289d50944ee993d6b46854fac5ab2be22d45b3b6183c83d9a6b32f07b12fb2:log:101', 'hash': '0xe9289d50944ee993d6b46854fac5ab2be22d45b3b6183c83d9a6b32f07b12fb2', 'from': '0x755d6c7b193275cef386afb21cf79c0917fd4c08', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1344.31272186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f4cba6cfa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:42:23.000Z'}}, {'blockNum': '0x792297', 'uniqueId': '0x06c98959b6cce1d85f90b8af00045f5b6cc6cb84ba8db712d947c508314405a9:log:0', 'hash': '0x06c98959b6cce1d85f90b8af00045f5b6cc6cb84ba8db712d947c508314405a9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6c80090be4151e2215be257fe4124e20f08d3d12', 'value': 456.39001447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aa04be567', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:43:50.000Z'}}, {'blockNum': '0x79229d', 'uniqueId': '0x3d8263254bdb498b2eb2bada86afa86485cb728b3f0c56fb67b38cd3fa90154d:log:0', 'hash': '0x3d8263254bdb498b2eb2bada86afa86485cb728b3f0c56fb67b38cd3fa90154d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x46c6f0250a956b085cf681329afe5a9c18b25550', 'value': 382.55622346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08e83678ca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:46:02.000Z'}}, {'blockNum': '0x7922ad', 'uniqueId': '0x49494214e196f26329a481a307825ada60fea255d2f44576783bcb4b208a66a5:log:1', 'hash': '0x49494214e196f26329a481a307825ada60fea255d2f44576783bcb4b208a66a5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6c15866dec45723ef04963524a376997ac12ccc0', 'value': 256.8507089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05faf3142a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:49:57.000Z'}}, {'blockNum': '0x7922af', 'uniqueId': '0xb3089a8ff132a3d22da9f39760bf468a4157e24ab98bd9f2b9d7692c719e895e:log:76', 'hash': '0xb3089a8ff132a3d22da9f39760bf468a4157e24ab98bd9f2b9d7692c719e895e', 'from': '0x79b924aa1f1ff821bbab7774167e056cd82e78fa', 'to': '0x7a903507a973a2c1d915de6637dd7222f40545cc', 'value': 81.14769754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01e3ad8f5a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:51:37.000Z'}}, {'blockNum': '0x7922b3', 'uniqueId': '0xb58b1e13c01df434818533259dcb579a34502dca3b50b30b7327ee3a8beb0ffc:log:2', 'hash': '0xb58b1e13c01df434818533259dcb579a34502dca3b50b30b7327ee3a8beb0ffc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf0a5dc2596badd5f3074afadb5bce48f1323e7d1', 'value': 1188.24350197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1baa7bb1f5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:52:06.000Z'}}, {'blockNum': '0x7922b3', 'uniqueId': '0x1b0c24c01797ee498effd11b327812476cfcd1fc0247e8a904176c619324a276:log:151', 'hash': '0x1b0c24c01797ee498effd11b327812476cfcd1fc0247e8a904176c619324a276', 'from': '0x4b997bad6967b9f874942e02387b38611cbf04d4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2495.83021618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a1c4eae32', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:52:06.000Z'}}, {'blockNum': '0x7922b7', 'uniqueId': '0xf6e2bf3ab80b6925b170cb0c1f3a213c68cb144c0e4aad99c12673a0346e2564:log:135', 'hash': '0xf6e2bf3ab80b6925b170cb0c1f3a213c68cb144c0e4aad99c12673a0346e2564', 'from': '0x6c80090be4151e2215be257fe4124e20f08d3d12', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 456.39001447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aa04be567', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:53:13.000Z'}}, {'blockNum': '0x7922cf', 'uniqueId': '0x96dad1b7e9b130e67a3f10f9808524741ed4f54fef5f2e82dd74ce10264771da:log:1', 'hash': '0x96dad1b7e9b130e67a3f10f9808524741ed4f54fef5f2e82dd74ce10264771da', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4b94832f94955d5c870e3d44e005815e7e69887c', 'value': 205.41161616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04c8594090', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:58:06.000Z'}}, {'blockNum': '0x7922cf', 'uniqueId': '0x081352e7a2422583d7243746f5055bdca8fe6bf1f2518781c64436e726769e50:log:2', 'hash': '0x081352e7a2422583d7243746f5055bdca8fe6bf1f2518781c64436e726769e50', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x685da83c76c1b5288a7c93373d504191cb701f8b', 'value': 4000.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5d24d69080', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:58:06.000Z'}}, {'blockNum': '0x7922e5', 'uniqueId': '0x81c7bee793f52e95b538d46c80c4f1402307f046b8fd0e925e0f86ba7617379b:log:153', 'hash': '0x81c7bee793f52e95b538d46c80c4f1402307f046b8fd0e925e0f86ba7617379b', 'from': '0x46c6f0250a956b085cf681329afe5a9c18b25550', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 382.55622346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08e83678ca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:02:24.000Z'}}, {'blockNum': '0x792309', 'uniqueId': '0x61944bc32ebfd73a4fa34bb8cbbfcb0928930e231e338aa6a6f55f9ac6f4f402:log:4', 'hash': '0x61944bc32ebfd73a4fa34bb8cbbfcb0928930e231e338aa6a6f55f9ac6f4f402', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xce0515bdadad6a26fdf8e5a4cf1ff75fd37e2c5a', 'value': 293.38589904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06d4b75ad0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:10:38.000Z'}}, {'blockNum': '0x792309', 'uniqueId': '0x884ef3450f5f2017618ecc9175b662512497c1cff26f73eb20ca5c5f1fc5847b:log:5', 'hash': '0x884ef3450f5f2017618ecc9175b662512497c1cff26f73eb20ca5c5f1fc5847b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7dcde0b3a83d35df6ada09a85857280e33d4397d', 'value': 695.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x103180c780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:10:38.000Z'}}, {'blockNum': '0x792328', 'uniqueId': '0x6b93a910ba93eeb2aa7a7657faaf62067f0b07b05574fca29ce03921d8175959:log:5', 'hash': '0x6b93a910ba93eeb2aa7a7657faaf62067f0b07b05574fca29ce03921d8175959', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x08721cc30c20c0bacac1e77b35e567e2a655cf43', 'value': 265.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x062e80d980', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:17:59.000Z'}}, {'blockNum': '0x792334', 'uniqueId': '0xd15859d1c83c1eef88115ba558d28c95fb0501a39b0479d2be2d36ac0be34071:log:1', 'hash': '0xd15859d1c83c1eef88115ba558d28c95fb0501a39b0479d2be2d36ac0be34071', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 29993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba54360900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:20:07.000Z'}}, {'blockNum': '0x792335', 'uniqueId': '0xdc4f3dcf893b5cad0598897e7131706ef7fcc3f702ba8db85775fc634a052bcf:log:0', 'hash': '0xdc4f3dcf893b5cad0598897e7131706ef7fcc3f702ba8db85775fc634a052bcf', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 27657.10378556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0283f12f463c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:20:51.000Z'}}, {'blockNum': '0x79233b', 'uniqueId': '0xce2498e24f8519beacacce5b20bd089f582719a955508d7c4244ef35234ce793:log:0', 'hash': '0xce2498e24f8519beacacce5b20bd089f582719a955508d7c4244ef35234ce793', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 32704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02f97307c000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:22:20.000Z'}}, {'blockNum': '0x79233b', 'uniqueId': '0x044eca086e26ef3e8fb5a0756f1e5b5585332f95ada66fabe6262bad233304c0:log:6', 'hash': '0x044eca086e26ef3e8fb5a0756f1e5b5585332f95ada66fabe6262bad233304c0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xae4b5285804f5a9b465eece03d381c28c7e01411', 'value': 20.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7a308480', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:22:20.000Z'}}, {'blockNum': '0x79235a', 'uniqueId': '0xaef65fffc011ba471d342bc9ad25e12fcc9b433a65fd8b6242b5bdb245eb803b:log:4', 'hash': '0xaef65fffc011ba471d342bc9ad25e12fcc9b433a65fd8b6242b5bdb245eb803b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e70235b459f620e8b0a9e6ec8c666cbae2acfa3', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:28:44.000Z'}}, {'blockNum': '0x792363', 'uniqueId': '0xb0e00fa745db62d961dd73f0690e16e724a58e595a36e5a9c60915783c31ec50:log:48', 'hash': '0xb0e00fa745db62d961dd73f0690e16e724a58e595a36e5a9c60915783c31ec50', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02f97307c000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:32:12.000Z'}}, {'blockNum': '0x792363', 'uniqueId': '0x7cd53d3d8454724afa3ff9cb95c7f6db6ff29b74e34d7edb54d3dec25f7ce138:log:93', 'hash': '0x7cd53d3d8454724afa3ff9cb95c7f6db6ff29b74e34d7edb54d3dec25f7ce138', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27657.10378556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0283f12f463c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:32:12.000Z'}}, {'blockNum': '0x792364', 'uniqueId': '0xc6961dc97229dddc930df2ce73703e4e0aa2b239ffaa1940c851139621986c68:log:73', 'hash': '0xc6961dc97229dddc930df2ce73703e4e0aa2b239ffaa1940c851139621986c68', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba54360900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:32:35.000Z'}}, {'blockNum': '0x792370', 'uniqueId': '0xce60f6b36069fc908aa68ff402c59534a860583208cdb5dc4eeff878bc1e07da:log:2', 'hash': '0xce60f6b36069fc908aa68ff402c59534a860583208cdb5dc4eeff878bc1e07da', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e7422304c1478b6f9a625f1dda9159fe82ad58f', 'value': 1291.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e11f09b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:34:16.000Z'}}, {'blockNum': '0x792370', 'uniqueId': '0xd647e2d9cf6f4004715f00c2761a4664a0fde63f2655dad1abedd7c2972ed745:log:3', 'hash': '0xd647e2d9cf6f4004715f00c2761a4664a0fde63f2655dad1abedd7c2972ed745', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e7737d2088267228ab3107841df7b45f7200088', 'value': 4295.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x64032cd780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:34:16.000Z'}}, {'blockNum': '0x792383', 'uniqueId': '0xbaf046a86dc3c1e642e0429d9feb850b09116292cc34f8762938ced871e1067e:log:2', 'hash': '0xbaf046a86dc3c1e642e0429d9feb850b09116292cc34f8762938ced871e1067e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e7a70226345852f5ebd7db671073b17c10aa612', 'value': 395.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09355d1b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:38:21.000Z'}}, {'blockNum': '0x79238c', 'uniqueId': '0x8271dd4fd38cbde4df7edbefacf7220bca9f9cb88680d21f4a29e56b17c0122d:log:2', 'hash': '0x8271dd4fd38cbde4df7edbefacf7220bca9f9cb88680d21f4a29e56b17c0122d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8ff04eb7c1dee52af72d4bb60138424364acb740', 'value': 622.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0e7f94cb80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:40:02.000Z'}}, {'blockNum': '0x792391', 'uniqueId': '0x47135fbba12e6fd1a4f4baf7409009b7967c13bf60c207888e09b1fe0b0b2cff:log:0', 'hash': '0x47135fbba12e6fd1a4f4baf7409009b7967c13bf60c207888e09b1fe0b0b2cff', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xfa07a771f13f38e1b53aea2ffb7afbe3928bc168', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:40:27.000Z'}}, {'blockNum': '0x792391', 'uniqueId': '0x276bdf34c7155178dd6256abf65742b205ebaddd8e255bcfa46806aa69eb79d5:log:1', 'hash': '0x276bdf34c7155178dd6256abf65742b205ebaddd8e255bcfa46806aa69eb79d5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4e73ccaa20a51ed3bada2c0c22f293df26640383', 'value': 721.59866375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x10cd102e07', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:40:27.000Z'}}, {'blockNum': '0x7923a2', 'uniqueId': '0xc00920fc587129c0fc6ab878ba46827dbc4325a1ad23c75d911642033cbf9616:log:26', 'hash': '0xc00920fc587129c0fc6ab878ba46827dbc4325a1ad23c75d911642033cbf9616', 'from': '0x833b21784f77dffb347fcc55b8b236392342a648', 'to': '0x753f064680a0bd80bcd61768b7a6edf41926b7a6', 'value': 95.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0239396f80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:46:16.000Z'}}, {'blockNum': '0x7923a5', 'uniqueId': '0xeaf08046dac362dde1658845e2c5a69fb4c385722aeb55f6793776aedf5a5770:log:0', 'hash': '0xeaf08046dac362dde1658845e2c5a69fb4c385722aeb55f6793776aedf5a5770', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1c6713d30eefa1c873af7d0a3d5f73fa7d3802d0', 'value': 170.30066591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03f712319f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:46:35.000Z'}}, {'blockNum': '0x7923bf', 'uniqueId': '0xa9a0dafef4ff11138bb9e2bc1d027b124fac7363bb6d057bd7be3ff9ff6e906d:log:51', 'hash': '0xa9a0dafef4ff11138bb9e2bc1d027b124fac7363bb6d057bd7be3ff9ff6e906d', 'from': '0xfa07a771f13f38e1b53aea2ffb7afbe3928bc168', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:52:02.000Z'}}, {'blockNum': '0x7923bf', 'uniqueId': '0x976d75d0d5bf0d9c11c00952542cbbb821a06e8037cfd486cf97dcf59d9faede:log:52', 'hash': '0x976d75d0d5bf0d9c11c00952542cbbb821a06e8037cfd486cf97dcf59d9faede', 'from': '0x6e7422304c1478b6f9a625f1dda9159fe82ad58f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1291.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e11f09b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:52:02.000Z'}}, {'blockNum': '0x7923bf', 'uniqueId': '0xdd82f34c6f76a115eba16f2c8e76bb69b1a35e1872c813b39f09b8c78b855aa2:log:53', 'hash': '0xdd82f34c6f76a115eba16f2c8e76bb69b1a35e1872c813b39f09b8c78b855aa2', 'from': '0x6e7737d2088267228ab3107841df7b45f7200088', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4295.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x64032cd780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:52:02.000Z'}}, {'blockNum': '0x7923bf', 'uniqueId': '0x12667be9657902bfa57f87c8d47b7fedde1722fe4d6f69ce0c3f960be2489ee7:log:95', 'hash': '0x12667be9657902bfa57f87c8d47b7fedde1722fe4d6f69ce0c3f960be2489ee7', 'from': '0x6e70235b459f620e8b0a9e6ec8c666cbae2acfa3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:52:02.000Z'}}, {'blockNum': '0x7923cc', 'uniqueId': '0xdd5d4cc22ef953c2e25f00b9a9e6a510dff28f6462515dd519d70556656453c3:log:70', 'hash': '0xdd5d4cc22ef953c2e25f00b9a9e6a510dff28f6462515dd519d70556656453c3', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 101251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09356efd2300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:56:04.000Z'}}, {'blockNum': '0x7923d0', 'uniqueId': '0x9ea069c6ff9614707083e34ec387ca601f263300b40e11e774a6cd7ea9398a23:log:18', 'hash': '0x9ea069c6ff9614707083e34ec387ca601f263300b40e11e774a6cd7ea9398a23', 'from': '0xeff1b82f133871754e829bd8e48dbda158997e3b', 'to': '0x0eab49070fae30a5c20a83a4d058c7b1874948e9', 'value': 6518.769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x97c6e41ca0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:56:49.000Z'}}, {'blockNum': '0x7923e1', 'uniqueId': '0x918d598fe99fc8ed42513736df1e5a2b1d069d64c623d46b64084fa0a7ea9077:log:2', 'hash': '0x918d598fe99fc8ed42513736df1e5a2b1d069d64c623d46b64084fa0a7ea9077', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 11246.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0105db8e4b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:00:45.000Z'}}, {'blockNum': '0x7923e1', 'uniqueId': '0xc3e78ddf3f7af4d5a0d682ad83e4e063ce59d64e003d18bfbfda73041552207a:log:3', 'hash': '0xc3e78ddf3f7af4d5a0d682ad83e4e063ce59d64e003d18bfbfda73041552207a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x050d6bb900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:00:45.000Z'}}, {'blockNum': '0x7923e1', 'uniqueId': '0x83c1ab2f2efda68c86ad0bd7dace6e702ed58a8d1e661ac76632ab17b9fc0151:log:4', 'hash': '0x83c1ab2f2efda68c86ad0bd7dace6e702ed58a8d1e661ac76632ab17b9fc0151', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf52b1f74246d5aa2e28826abd0e0dc19223a8839', 'value': 15971.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0173dd8ef380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:00:45.000Z'}}, {'blockNum': '0x7923e1', 'uniqueId': '0x0595e9fc56ae0df4e67bdc961f4f13de226cc474722706296ccb7cc084e0c19f:log:5', 'hash': '0x0595e9fc56ae0df4e67bdc961f4f13de226cc474722706296ccb7cc084e0c19f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 11437.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010a4ccffd80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:00:45.000Z'}}, {'blockNum': '0x7923e5', 'uniqueId': '0x03db130d53ba175ad6fc324f6f1f0ef5b9803a3201919781922a1f1718075fcb:log:10', 'hash': '0x03db130d53ba175ad6fc324f6f1f0ef5b9803a3201919781922a1f1718075fcb', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 290.51590094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06c39c15ce', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:00:53.000Z'}}, {'blockNum': '0x7923e5', 'uniqueId': '0xe6b7bb9107deb19cb0a924046900e7d84cfe1042da822392da92dd4e7588b0c7:log:12', 'hash': '0xe6b7bb9107deb19cb0a924046900e7d84cfe1042da822392da92dd4e7588b0c7', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 204.95836025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04c5a5a379', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:00:53.000Z'}}, {'blockNum': '0x7923e5', 'uniqueId': '0x829fcbf9189aee705b2cbbbaca3b9402c831077163bf4a73eaeea8c09966a3f7:log:14', 'hash': '0x829fcbf9189aee705b2cbbbaca3b9402c831077163bf4a73eaeea8c09966a3f7', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 138.92725151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x033c12299f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:00:53.000Z'}}, {'blockNum': '0x7923e5', 'uniqueId': '0x3aed49fbc76d4730c7332707f805b3c224c85dd7f0edea3911f1fe82bdef19e8:log:42', 'hash': '0x3aed49fbc76d4730c7332707f805b3c224c85dd7f0edea3911f1fe82bdef19e8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'value': 1442.77653447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x21979e47c7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:00:53.000Z'}}, {'blockNum': '0x7923e5', 'uniqueId': '0x1d23d140fefe043d03ee6d4e5d2556853a5d1096ae2f24fe138395983bd6503d:log:76', 'hash': '0x1d23d140fefe043d03ee6d4e5d2556853a5d1096ae2f24fe138395983bd6503d', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xf8c4a9afbe0200b7607e9fecb5a5ff398aa26014', 'value': 26823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02708589e700', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:00:53.000Z'}}, {'blockNum': '0x7923e8', 'uniqueId': '0x19cbd2a8898372724d85e252df6c3a18778b8676846adf89996803c06fb1d111:log:73', 'hash': '0x19cbd2a8898372724d85e252df6c3a18778b8676846adf89996803c06fb1d111', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 634.4015127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ec553e2e6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:01:31.000Z'}}, {'blockNum': '0x7923ec', 'uniqueId': '0xe268caae9ac81b6b45962823753be76aceea348036031bae4b9a61c7679e5fbd:log:11', 'hash': '0xe268caae9ac81b6b45962823753be76aceea348036031bae4b9a61c7679e5fbd', 'from': '0x6e7a70226345852f5ebd7db671073b17c10aa612', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 395.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09355d1b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:06.000Z'}}, {'blockNum': '0x7923ec', 'uniqueId': '0x039107639111076e97ce37d411af8b4b97cb0b2096ab6a6c18d16af43f5c1348:log:12', 'hash': '0x039107639111076e97ce37d411af8b4b97cb0b2096ab6a6c18d16af43f5c1348', 'from': '0x4e73ccaa20a51ed3bada2c0c22f293df26640383', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 721.59866375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x10cd102e07', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:06.000Z'}}, {'blockNum': '0x7923ec', 'uniqueId': '0xe6d708a9c8ce75ca23691d01e6109447eb3cd688496291b8b6c13e73213ad5be:log:29', 'hash': '0xe6d708a9c8ce75ca23691d01e6109447eb3cd688496291b8b6c13e73213ad5be', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x206fa533745f133904480948283f3515dc625e7b', 'value': 9998.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe8ceaf2eff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:06.000Z'}}, {'blockNum': '0x7923ec', 'uniqueId': '0x16be31a1ff78efb93f11c6a35c6c4d9a0ba8c7a6dfe90aa3bf07ac6f946e369c:log:30', 'hash': '0x16be31a1ff78efb93f11c6a35c6c4d9a0ba8c7a6dfe90aa3bf07ac6f946e369c', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'value': 18860.98372101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01b724393605', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:06.000Z'}}, {'blockNum': '0x7923ed', 'uniqueId': '0xfe892ccac0ed0b03f4cb8fa985c50bdca1681f809e433b33d137bbfc8fd3f1c1:log:0', 'hash': '0xfe892ccac0ed0b03f4cb8fa985c50bdca1681f809e433b33d137bbfc8fd3f1c1', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x161a8c7fd0c09c5312fc9cef2c0d98bef8620495', 'value': 7056.461509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa44bc9c4f4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:16.000Z'}}, {'blockNum': '0x7923ed', 'uniqueId': '0xd78fa46a8f2308aa83a77d9ff65dd77ac0413ed3b36195ad81787917f6d1f0ee:log:1', 'hash': '0xd78fa46a8f2308aa83a77d9ff65dd77ac0413ed3b36195ad81787917f6d1f0ee', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 18722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01b3e7d0e200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:16.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0x5e0845b2aad742302a453fd24f17d4f51d890ead46bef2b596ace35d43e5930b:log:0', 'hash': '0x5e0845b2aad742302a453fd24f17d4f51d890ead46bef2b596ace35d43e5930b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf52b1f74246d5aa2e28826abd0e0dc19223a8839', 'value': 8386.61399577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc3441d6419', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0x2f95a0ddd03a33fce157000ecb7779799b91da6c802612fe110c019bfba3f615:log:1', 'hash': '0x2f95a0ddd03a33fce157000ecb7779799b91da6c802612fe110c019bfba3f615', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 16260.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x017a9821f480', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0x2a1ec56db93c936359454f8da0f99494ea651336807c3edd56a89d18435ad9f5:log:2', 'hash': '0x2a1ec56db93c936359454f8da0f99494ea651336807c3edd56a89d18435ad9f5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 6662.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9b1f983680', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0x332f0c4faa92df01a5404f1695ec942342e0397baa3891d04af502c177469abe:log:3', 'hash': '0x332f0c4faa92df01a5404f1695ec942342e0397baa3891d04af502c177469abe', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 3833.753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5942f2d5a0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0x320a2b635b845acc758eb80d0713fe8dc247a4e61776e3f498c7d2c1f6d00cb4:log:4', 'hash': '0x320a2b635b845acc758eb80d0713fe8dc247a4e61776e3f498c7d2c1f6d00cb4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 2580.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3c14fa8480', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0xe765d24b0c7e5e0a73d2ced1fcd885fa91a335e0da8406bb007a8da6e8e40dd2:log:5', 'hash': '0xe765d24b0c7e5e0a73d2ced1fcd885fa91a335e0da8406bb007a8da6e8e40dd2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'value': 136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x032a9f8800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0xe0140d9b67cec0f4b21a9b418e08e05f4eecbcd0736f2af7ac237d49d5ec416b:log:6', 'hash': '0xe0140d9b67cec0f4b21a9b418e08e05f4eecbcd0736f2af7ac237d49d5ec416b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x682c1050fc44411283c2c3e85e7dd2ede5e90a97', 'value': 795.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12858cab80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0x56f0c3b7945da6dcd668c07fed576b6a33b6757c7c0a08e365cda4ef5b4ac6a6:log:7', 'hash': '0x56f0c3b7945da6dcd668c07fed576b6a33b6757c7c0a08e365cda4ef5b4ac6a6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4bc966c0b047278f3c02b52b5d0b9c6a7be35e93', 'value': 53456.55624939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04dca1e794eb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0xc790cd3ff33dfe22ef430ab3cd6e83d27c1fc3a260a1d202adfea290f3301892:log:8', 'hash': '0xc790cd3ff33dfe22ef430ab3cd6e83d27c1fc3a260a1d202adfea290f3301892', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x84720a2f005cb5481dcd12431cdf92574e839a55', 'value': 3858.18060244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x59d48c65d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0xda59f54eea4c68f269821da9d66951e85d3db38eebf7ee610e27e27bc6937b0f:log:9', 'hash': '0xda59f54eea4c68f269821da9d66951e85d3db38eebf7ee610e27e27bc6937b0f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb2fd2f7d87b3cf9b1642c54a52f68503ce215791', 'value': 18.75189357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6fc51e6d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0xe751bf5485012a99a894109d36aac4123d12ca99c8058e1addfca5e398ddbbef:log:10', 'hash': '0xe751bf5485012a99a894109d36aac4123d12ca99c8058e1addfca5e398ddbbef', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 493.01243781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b7a954785', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0x1e045fed224bdb47b64d0c455a78171091e2e486162723c38fa9cfc2f0613158:log:118', 'hash': '0x1e045fed224bdb47b64d0c455a78171091e2e486162723c38fa9cfc2f0613158', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03cb8e4300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f3', 'uniqueId': '0x67c5b231104acdafe7597aeb2312e7b9919068b177271c7d1f6684c956fc4f0f:log:4', 'hash': '0x67c5b231104acdafe7597aeb2312e7b9919068b177271c7d1f6684c956fc4f0f', 'from': '0x8c240d98e179a9e283a2394e5969a2eea95ca810', 'to': '0xa45303a33b168550fc830fc3fef72a24e589d7a8', 'value': 32, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbebc2000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:03:55.000Z'}}, {'blockNum': '0x7923f4', 'uniqueId': '0x34d348a7963ec5d74eddfe9fbcb9ff169d5e7a5926af6b1f95f252ab3b0f3a19:log:21', 'hash': '0x34d348a7963ec5d74eddfe9fbcb9ff169d5e7a5926af6b1f95f252ab3b0f3a19', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'value': 2989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4597d40d00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:05.000Z'}}, {'blockNum': '0x7923f4', 'uniqueId': '0x4fe224dbc1243f5542ce1ca32e216d975e8d99091c41740774d6ab576988627d:log:23', 'hash': '0x4fe224dbc1243f5542ce1ca32e216d975e8d99091c41740774d6ab576988627d', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'value': 31518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ddd5eb5e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:05.000Z'}}, {'blockNum': '0x7923f4', 'uniqueId': '0xa0e4d52a0c9f2193b9a112c366ee498e80268c439cfbb16f551a8dba6c104809:log:24', 'hash': '0xa0e4d52a0c9f2193b9a112c366ee498e80268c439cfbb16f551a8dba6c104809', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x1285f034153daa03bc4249786373eee43cba00df', 'value': 3611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x54133cbb00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:05.000Z'}}, {'blockNum': '0x7923f4', 'uniqueId': '0xe5f6171c3b8a9fcc8a6bd8f24e5cd0638b320564a2ed0871552c6d9b8c1a38a4:log:90', 'hash': '0xe5f6171c3b8a9fcc8a6bd8f24e5cd0638b320564a2ed0871552c6d9b8c1a38a4', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x06458be2c1aeb1519a5ee1c2341062e269b100f8', 'value': 170.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03fad27b40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:05.000Z'}}, {'blockNum': '0x7923f4', 'uniqueId': '0xd193207e9b3cec67e89fe28c9c181db52209a794b1fb48948ee6b6dfd6507dfa:log:92', 'hash': '0xd193207e9b3cec67e89fe28c9c181db52209a794b1fb48948ee6b6dfd6507dfa', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x3bc2b2bc5125eacdc64a8188b135a2997dd7324b', 'value': 20840.85144383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01e53d279b3f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:05.000Z'}}, {'blockNum': '0x7923f5', 'uniqueId': '0x39be49267bb51ed018ceb5e42e4e61da2658c968552fe6d02631ebab08fd6418:log:51', 'hash': '0x39be49267bb51ed018ceb5e42e4e61da2658c968552fe6d02631ebab08fd6418', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'value': 7181.13382836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa732e4a1b4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:18.000Z'}}, {'blockNum': '0x7923f8', 'uniqueId': '0xb80bcd56aa1985d13387d4daac6e6045385914f27a281480554dbc093591a673:log:1', 'hash': '0xb80bcd56aa1985d13387d4daac6e6045385914f27a281480554dbc093591a673', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb2fd2f7d87b3cf9b1642c54a52f68503ce215791', 'value': 2747.56366368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3ff8c17020', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:34.000Z'}}, {'blockNum': '0x7923f8', 'uniqueId': '0x39133b42f8dee4884680f6b5b1172bca0d40565e70b6f7e9f314308ed8509be4:log:2', 'hash': '0x39133b42f8dee4884680f6b5b1172bca0d40565e70b6f7e9f314308ed8509be4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x287e6d4dd4d57ede08b9353e13d51d9f7f1f95fa', 'value': 7120.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa5c97cc080', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:34.000Z'}}, {'blockNum': '0x7923f8', 'uniqueId': '0x95d47b4c387a45f1f753e8db43f2ffb4ad9611ead76949cd3a3c922d51f09377:log:3', 'hash': '0x95d47b4c387a45f1f753e8db43f2ffb4ad9611ead76949cd3a3c922d51f09377', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x476ec61a27431dcf120f72b7a9f241ce61daa44c', 'value': 10552.77512459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf5b370f70b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:34.000Z'}}, {'blockNum': '0x7923f8', 'uniqueId': '0x45e94483e31f6e7fb12f2da75d967eea0fa51457d86e091c3771de89de5683d4:log:4', 'hash': '0x45e94483e31f6e7fb12f2da75d967eea0fa51457d86e091c3771de89de5683d4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0bba108df4d8411494155fa913365012f88fd3dc', 'value': 45.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010f337d80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:34.000Z'}}, {'blockNum': '0x7923f8', 'uniqueId': '0x7b2d1d7e8b8e625a9c629dd8712afa40b835c5a83726b4069301d2b8f3eec588:log:5', 'hash': '0x7b2d1d7e8b8e625a9c629dd8712afa40b835c5a83726b4069301d2b8f3eec588', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x287e6d4dd4d57ede08b9353e13d51d9f7f1f95fa', 'value': 7627.4827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb19756f5b0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:34.000Z'}}, {'blockNum': '0x7923f8', 'uniqueId': '0xb82f2db8f360a31059e0241703093c9162ceb317b3332f031cda7dc79db2351c:log:6', 'hash': '0xb82f2db8f360a31059e0241703093c9162ceb317b3332f031cda7dc79db2351c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x25403bf9d83adcafde40827072efeb3e13499943', 'value': 45679.6507625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04278fef8b1a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:34.000Z'}}, {'blockNum': '0x7923f8', 'uniqueId': '0x621cc408b859bb4bd952280a7a4a8c9af835efaa6c5dc302339e4d414148b96b:log:7', 'hash': '0x621cc408b859bb4bd952280a7a4a8c9af835efaa6c5dc302339e4d414148b96b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'value': 1171.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b46af2380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:34.000Z'}}, {'blockNum': '0x7923f8', 'uniqueId': '0x31595a84f89cc03b8b6621e472d84b49c3ef0762f90712eaac4d93b23e7a442f:log:8', 'hash': '0x31595a84f89cc03b8b6621e472d84b49c3ef0762f90712eaac4d93b23e7a442f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 8162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbe094fa200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:34.000Z'}}, {'blockNum': '0x7923fb', 'uniqueId': '0xacb540fea8a980ee5e60df762f3f2cd60a07c3c06cbfc39133eb2766f1ce9ac3:log:6', 'hash': '0xacb540fea8a980ee5e60df762f3f2cd60a07c3c06cbfc39133eb2766f1ce9ac3', 'from': '0x206fa533745f133904480948283f3515dc625e7b', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 9998.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe8ceaf2eff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:05:28.000Z'}}, {'blockNum': '0x7923fb', 'uniqueId': '0x55aad49ab0c5b0f08f5d7d312c2765b2308e044258a31a7b3a8b19e1fa0e9d40:log:72', 'hash': '0x55aad49ab0c5b0f08f5d7d312c2765b2308e044258a31a7b3a8b19e1fa0e9d40', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x06458be2c1aeb1519a5ee1c2341062e269b100f8', 'value': 2139.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x31d2fa0c40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:05:28.000Z'}}, {'blockNum': '0x7923fb', 'uniqueId': '0xc010ae586621edeb70104d37460ce564181187421b2af640ab4df49edab38177:log:116', 'hash': '0xc010ae586621edeb70104d37460ce564181187421b2af640ab4df49edab38177', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xf8c4a9afbe0200b7607e9fecb5a5ff398aa26014', 'value': 14703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x015654b58f00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:05:28.000Z'}}, {'blockNum': '0x7923ff', 'uniqueId': '0x3c980d228a1218a319d939b7e889e5a9801b8e6fd0574ef699f64eafbef09133:log:0', 'hash': '0x3c980d228a1218a319d939b7e889e5a9801b8e6fd0574ef699f64eafbef09133', 'from': '0x8c240d98e179a9e283a2394e5969a2eea95ca810', 'to': '0x76e377e197da54a1d39f1acbc447fb3bd07bb971', 'value': 704.7490458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1068a1b404', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:06:18.000Z'}}, {'blockNum': '0x7923ff', 'uniqueId': '0x8c3d2acc1099f74c4ea4b402d1af8ea870d87e20623f0a6bb9565b413831c8c5:log:4', 'hash': '0x8c3d2acc1099f74c4ea4b402d1af8ea870d87e20623f0a6bb9565b413831c8c5', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x523c00131ef14dfe144137088fca435cc38a697f', 'value': 1545.6433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23fcc08210', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:06:18.000Z'}}, {'blockNum': '0x792401', 'uniqueId': '0x44bbb3f689c2fa6fd7eca0b2c88d507ba39634b669ee75c5c91e3dd5c7df7e70:log:3', 'hash': '0x44bbb3f689c2fa6fd7eca0b2c88d507ba39634b669ee75c5c91e3dd5c7df7e70', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'value': 4747.30382791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6e8822c5c7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:06:54.000Z'}}, {'blockNum': '0x792401', 'uniqueId': '0x917b15f2773d05484c2fa87b036756c7f1c46a2341174b12c8aee3708a89df13:log:4', 'hash': '0x917b15f2773d05484c2fa87b036756c7f1c46a2341174b12c8aee3708a89df13', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 1753.86086199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x28d5d34b37', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:06:54.000Z'}}, {'blockNum': '0x792401', 'uniqueId': '0xc5730ab2f30de3f11952b90661733315a9cc74324f5e4c16f567318d249f71fb:log:5', 'hash': '0xc5730ab2f30de3f11952b90661733315a9cc74324f5e4c16f567318d249f71fb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf66c1e4a2be928b4bd6908c9421b507a3a5634fe', 'value': 2719.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3f517baf80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:06:54.000Z'}}, {'blockNum': '0x792406', 'uniqueId': '0xb411b223b3b1a0654354467ab9e9490438beecf081940ba1b51555e688643546:log:62', 'hash': '0xb411b223b3b1a0654354467ab9e9490438beecf081940ba1b51555e688643546', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x5aba1b676d0109b10994459cd2c165ef73983463', 'value': 275.89199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x066c71c498', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:07:26.000Z'}}, {'blockNum': '0x792408', 'uniqueId': '0xe0b0d2a110b91b0201c5606181bfd675d88aa80cd08719029d8cf32654aba009:log:5', 'hash': '0xe0b0d2a110b91b0201c5606181bfd675d88aa80cd08719029d8cf32654aba009', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x2603a62d9232e387b53c3a166f3f21441fe5179e', 'value': 13257.80607892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0134aeaea394', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:07:48.000Z'}}, {'blockNum': '0x792408', 'uniqueId': '0x0477bbabeb82ac252c4fbf980d0113c803a093041b8c5f592e3657ac59751ad3:log:6', 'hash': '0x0477bbabeb82ac252c4fbf980d0113c803a093041b8c5f592e3657ac59751ad3', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 50482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0497602af200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:07:48.000Z'}}, {'blockNum': '0x792408', 'uniqueId': '0xa845417edbda138e449b9b6da8d50c78ad6ff63b9f046143f33fc5c295b2dff0:log:7', 'hash': '0xa845417edbda138e449b9b6da8d50c78ad6ff63b9f046143f33fc5c295b2dff0', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x2603a62d9232e387b53c3a166f3f21441fe5179e', 'value': 39038.449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x038cef49dca0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:07:48.000Z'}}, {'blockNum': '0x792408', 'uniqueId': '0xe0fb178c4b8ae7c4d4e2db655ebb3f50be8ca150da55deb583e5b0c4853363e5:log:18', 'hash': '0xe0fb178c4b8ae7c4d4e2db655ebb3f50be8ca150da55deb583e5b0c4853363e5', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x30716256c590991775a48ab28dd4b899d6c95031', 'value': 97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02422a4100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:07:48.000Z'}}, {'blockNum': '0x79240d', 'uniqueId': '0xe4a04da59c1e6c423e26af7f6100739637ae05cc7acb744429aff097876b3293:log:1', 'hash': '0xe4a04da59c1e6c423e26af7f6100739637ae05cc7acb744429aff097876b3293', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 14680.11, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0155cc4630c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:08:29.000Z'}}, {'blockNum': '0x79240d', 'uniqueId': '0xe23064feec2794a12f063b045283ee67376db3591ba5b4e7b7ce365984b3115f:log:2', 'hash': '0xe23064feec2794a12f063b045283ee67376db3591ba5b4e7b7ce365984b3115f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0bba108df4d8411494155fa913365012f88fd3dc', 'value': 445.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a5f630d80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:08:29.000Z'}}, {'blockNum': '0x79240d', 'uniqueId': '0xdc5192483fdc947d8a8f0e32751847b42d444bd2b1b7407b76ab4bd890736d59:log:3', 'hash': '0xdc5192483fdc947d8a8f0e32751847b42d444bd2b1b7407b76ab4bd890736d59', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf52b1f74246d5aa2e28826abd0e0dc19223a8839', 'value': 7604.31578132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb10d410c14', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:08:29.000Z'}}, {'blockNum': '0x79240d', 'uniqueId': '0x2e1642dbc06ddcc6bc76e7a5cfded7b224463b6f3c5a9ba149bb6ff9397c1a65:log:4', 'hash': '0x2e1642dbc06ddcc6bc76e7a5cfded7b224463b6f3c5a9ba149bb6ff9397c1a65', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf52b1f74246d5aa2e28826abd0e0dc19223a8839', 'value': 7302.3537389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xaa056b8942', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:08:29.000Z'}}, {'blockNum': '0x792414', 'uniqueId': '0xf0d8dea2fb632f207bb776c048209bb216b3d871e911f11c1da46f9779c0a50e:log:10', 'hash': '0xf0d8dea2fb632f207bb776c048209bb216b3d871e911f11c1da46f9779c0a50e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 407.682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x097df95d40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:10:09.000Z'}}, {'blockNum': '0x792414', 'uniqueId': '0x5bbc795a145293f17ffa55b3559fc1fb6f2707e877c2e5650a9286daa73761b7:log:11', 'hash': '0x5bbc795a145293f17ffa55b3559fc1fb6f2707e877c2e5650a9286daa73761b7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 15031.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x015dfab8c780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:10:09.000Z'}}, {'blockNum': '0x792414', 'uniqueId': '0xcf16446faf365386b27d3e5a4b221c5774758c5519ac1b20f3ade12391467769:log:17', 'hash': '0xcf16446faf365386b27d3e5a4b221c5774758c5519ac1b20f3ade12391467769', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 2638.52, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d6ece0300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:10:09.000Z'}}, {'blockNum': '0x792414', 'uniqueId': '0x93512246e876db44f8de02cd0f88e9b71963f4f6fe61502246fd07a22a352a18:log:23', 'hash': '0x93512246e876db44f8de02cd0f88e9b71963f4f6fe61502246fd07a22a352a18', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x857564f9d3f1ef20538ca9c8c5ae59bd872e4b04', 'value': 3471.429292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x50d354bb30', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:10:09.000Z'}}, {'blockNum': '0x792414', 'uniqueId': '0xbd1f38312a854a9c6027e1018f497f247fea8ce9055b0a4f22829dfaa5bf12c7:log:24', 'hash': '0xbd1f38312a854a9c6027e1018f497f247fea8ce9055b0a4f22829dfaa5bf12c7', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x83d8c8bcb823d7d5bd5894858ceebe79446f2ff9', 'value': 71282.72484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x067bae2636a0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:10:09.000Z'}}, {'blockNum': '0x792414', 'uniqueId': '0x624f708e69977a9ffd93da76eb28bc38575d854a1e38cf3797c1fda9916184d9:log:25', 'hash': '0x624f708e69977a9ffd93da76eb28bc38575d854a1e38cf3797c1fda9916184d9', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x3e76c551e52f3fbf414f10342cd4608288230c3a', 'value': 7395.50972485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xac30ac4a45', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:10:09.000Z'}}, {'blockNum': '0x792414', 'uniqueId': '0x679166d41f277d73f39d555a994416002608c6b4a6a5e7aff4c0cb9dd18fb8aa:log:26', 'hash': '0x679166d41f277d73f39d555a994416002608c6b4a6a5e7aff4c0cb9dd18fb8aa', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2603a62d9232e387b53c3a166f3f21441fe5179e', 'value': 4601.9074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6b25816e20', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:10:09.000Z'}}, {'blockNum': '0x792415', 'uniqueId': '0x8102af15fbf579f12a596430d211a662a7652574964c8995c59bd19815de2bdf:log:0', 'hash': '0x8102af15fbf579f12a596430d211a662a7652574964c8995c59bd19815de2bdf', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 31379.545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02da9ca9cda0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:10:57.000Z'}}, {'blockNum': '0x792416', 'uniqueId': '0x728c782439eb25fb1aa4de898a9f1cf92edc0be0b2af00b85b2a1cd250480b75:log:4', 'hash': '0x728c782439eb25fb1aa4de898a9f1cf92edc0be0b2af00b85b2a1cd250480b75', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 2638.52, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d6ece0300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:17.000Z'}}, {'blockNum': '0x792416', 'uniqueId': '0xd42342c9ad8c281772405a6906ae5da23105741c56063c3d434effae8b7b8680:log:5', 'hash': '0xd42342c9ad8c281772405a6906ae5da23105741c56063c3d434effae8b7b8680', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xd4b616b65eb6e3015af290c6ed13e66d46b7352c', 'value': 57116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0531d5e39c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:17.000Z'}}, {'blockNum': '0x792416', 'uniqueId': '0x9eda4face854acc73f3e520eee99af7dfa14272848ad91b7c245d2d399126594:log:82', 'hash': '0x9eda4face854acc73f3e520eee99af7dfa14272848ad91b7c245d2d399126594', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x30716256c590991775a48ab28dd4b899d6c95031', 'value': 10733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf9e5aa4d00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:17.000Z'}}, {'blockNum': '0x792416', 'uniqueId': '0x61bb45d0095df56bc2f1f291b5cbed7923febf65bc9227a9f0e85ff2dbbddb28:log:84', 'hash': '0x61bb45d0095df56bc2f1f291b5cbed7923febf65bc9227a9f0e85ff2dbbddb28', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xf8c4a9afbe0200b7607e9fecb5a5ff398aa26014', 'value': 17937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01a1a0d9f100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:17.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x93fce90b069be3d3059fc7143298e70577a8113ec905ea31f7a70131f1fbca1e:log:11', 'hash': '0x93fce90b069be3d3059fc7143298e70577a8113ec905ea31f7a70131f1fbca1e', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xd3574b71005acfab4032ab701e22688fa2cbc2d7', 'value': 1759.82353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x28f95d9a68', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xd96341905bcc5236de918366e8b1bd031d0451ba8cd19e8e2fc1e3e50ca88e91:log:12', 'hash': '0xd96341905bcc5236de918366e8b1bd031d0451ba8cd19e8e2fc1e3e50ca88e91', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 17999.51734309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01a3157bd625', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xba6be472bf1d41085e609de58c523cd20e28a68c9a1a3af5acddbc1b746ac726:log:13', 'hash': '0xba6be472bf1d41085e609de58c523cd20e28a68c9a1a3af5acddbc1b746ac726', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x83d8c8bcb823d7d5bd5894858ceebe79446f2ff9', 'value': 127527.97136829, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b993df177bd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xa4b2c7e6c4c42da6478c04c940304fda597d5b3ca5c416c6002e371a41edaada:log:14', 'hash': '0xa4b2c7e6c4c42da6478c04c940304fda597d5b3ca5c416c6002e371a41edaada', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x2b47a9c49d52f178acc22b0bb0191a3c0e98f940', 'value': 167146.52235703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f33aee8b7b7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x0d04431eecd3f4370408b92f13fd1877bff301148b85948281d5c795d77fc3cb:log:16', 'hash': '0x0d04431eecd3f4370408b92f13fd1877bff301148b85948281d5c795d77fc3cb', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xcc050a9dd24f97c23410a8ade625a52d6232145a', 'value': 170398.64481111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f7f6711c557', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xeef157e959d9be65695a78275e74a76f023f84a8062e75f60841d8a2cce83858:log:17', 'hash': '0xeef157e959d9be65695a78275e74a76f023f84a8062e75f60841d8a2cce83858', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x847dd23ac1f74bdefcd7668b6aded7764aaedc52', 'value': 136440.15638931, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c68beb49993', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x8e02eae727612adca8010219db3bdf1ebccac9026b627f59456ccbba34e88c66:log:18', 'hash': '0x8e02eae727612adca8010219db3bdf1ebccac9026b627f59456ccbba34e88c66', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x40e5ebf13a622db7f0f3a00737906c39decaab04', 'value': 21173.22692307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01ecfa4456d3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x48c6b1ec80a90ea4ae59cb3b5b4f4a04e96ea1633f8b356d712f8a9fe2e7372a:log:19', 'hash': '0x48c6b1ec80a90ea4ae59cb3b5b4f4a04e96ea1633f8b356d712f8a9fe2e7372a', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03a352944000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x01f0d9e8b3b116f69e386000504875740052f5059c2ef372720e887d08f76b8d:log:22', 'hash': '0x01f0d9e8b3b116f69e386000504875740052f5059c2ef372720e887d08f76b8d', 'from': '0x5aba1b676d0109b10994459cd2c165ef73983463', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 275.89199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x066c71c498', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x12577432eab23e40f64d2897c31eeeafce8831784026fbf05d41451eed4c3e2a:log:29', 'hash': '0x12577432eab23e40f64d2897c31eeeafce8831784026fbf05d41451eed4c3e2a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 14134.58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014918a97880', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x2f6f87bed3c424003c7933a1026b6fc268ce703a6a051f5d465577083ee8e348:log:30', 'hash': '0x2f6f87bed3c424003c7933a1026b6fc268ce703a6a051f5d465577083ee8e348', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0407290d00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xea1f3d678f11b2cf5b7612d21a3b04a343c81e370f91996c60fdae4b9adfd326:log:31', 'hash': '0xea1f3d678f11b2cf5b7612d21a3b04a343c81e370f91996c60fdae4b9adfd326', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf52b1f74246d5aa2e28826abd0e0dc19223a8839', 'value': 8652.29207579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc973adf81b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x590e512c9636598ca8d9d9d96b5ab2762ce7d89d9e265dfc5999a0b99efd9000:log:32', 'hash': '0x590e512c9636598ca8d9d9d96b5ab2762ce7d89d9e265dfc5999a0b99efd9000', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 10785.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xfb1e96f180', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x5afda43ef8c2b18d0b496a04e6dfe3f6f29888976ea111e39c32fb00aa42952a:log:33', 'hash': '0x5afda43ef8c2b18d0b496a04e6dfe3f6f29888976ea111e39c32fb00aa42952a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 17271.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0192251535c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xb02661479385bf3775be898840ba624e3bf9e78175c2181751b7bdc93411dbcd:log:34', 'hash': '0xb02661479385bf3775be898840ba624e3bf9e78175c2181751b7bdc93411dbcd', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 4815.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x701e9ddf80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x2780840a446ad7acd2858f4541a65d0fa3c99e5c1cfc4f734b88f3bcc099bf4f:log:47', 'hash': '0x2780840a446ad7acd2858f4541a65d0fa3c99e5c1cfc4f734b88f3bcc099bf4f', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 2638.52, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d6ece0300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x79a505f60d4689c0d302d1d2a250de677a75c10f08b6bd18c7af28df98999dfc:log:55', 'hash': '0x79a505f60d4689c0d302d1d2a250de677a75c10f08b6bd18c7af28df98999dfc', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x5dc732b675e7c169d6572699c1893ee31bb7c732', 'value': 12757.2859886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01290759974c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xc2c777fed7c49c9da7abba809874be3e9ef62c4a1845c687c0671ab8d89770ec:log:75', 'hash': '0xc2c777fed7c49c9da7abba809874be3e9ef62c4a1845c687c0671ab8d89770ec', 'from': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6662.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9b1f983680', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x9bb7c8dec3ecbc7c9ec788c0fd9fc36182b5e799ad759a7bfbd6a7d1f73e5158:log:76', 'hash': '0x9bb7c8dec3ecbc7c9ec788c0fd9fc36182b5e799ad759a7bfbd6a7d1f73e5158', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0497602af200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x6eb85c7515ae7a78c997e2fc0d371bd859faba3c67694aef5cb09423daf37c86:log:77', 'hash': '0x6eb85c7515ae7a78c997e2fc0d371bd859faba3c67694aef5cb09423daf37c86', 'from': '0x84720a2f005cb5481dcd12431cdf92574e839a55', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3858.18060244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x59d48c65d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xdb1d8ff009aa625b10ac8e1e32826f3c6b4e827c011b3cb194b20145350d9c08:log:78', 'hash': '0xdb1d8ff009aa625b10ac8e1e32826f3c6b4e827c011b3cb194b20145350d9c08', 'from': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1171.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b46af2380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x62f6e7c20d6e22957343bae110a6725e429ce2c3207efc86f805410dab00a311:log:79', 'hash': '0x62f6e7c20d6e22957343bae110a6725e429ce2c3207efc86f805410dab00a311', 'from': '0xb2fd2f7d87b3cf9b1642c54a52f68503ce215791', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2766.31555725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4068868e8d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xcff90c806e399dbc212fede65e03a045acbe7930eaec5131474974c45d2ea8c5:log:80', 'hash': '0xcff90c806e399dbc212fede65e03a045acbe7930eaec5131474974c45d2ea8c5', 'from': '0x476ec61a27431dcf120f72b7a9f241ce61daa44c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10552.77512459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf5b370f70b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x85bf2b7ce2f725bd55d8e9d4eed3260db90faf488e473de9c738fcb89ba50a04:log:82', 'hash': '0x85bf2b7ce2f725bd55d8e9d4eed3260db90faf488e473de9c738fcb89ba50a04', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2580.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3c14fa8480', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x2c92bfffbfe86ecac2872f72313a08c0661343e8edc3561fec9aecc050b0724d:log:87', 'hash': '0x2c92bfffbfe86ecac2872f72313a08c0661343e8edc3561fec9aecc050b0724d', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1753.86086199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x28d5d34b37', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x1b5235cdcd63ca63dda338711e0bc821d8ff6723e69de51e18838c7d0baa21bf:log:88', 'hash': '0x1b5235cdcd63ca63dda338711e0bc821d8ff6723e69de51e18838c7d0baa21bf', 'from': '0xa45303a33b168550fc830fc3fef72a24e589d7a8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100.85, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02591ce340', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x204b7a627e734e38008e29c01e09ff190ea0e001e7975257a53ed40c436102d3:log:89', 'hash': '0x204b7a627e734e38008e29c01e09ff190ea0e001e7975257a53ed40c436102d3', 'from': '0x25403bf9d83adcafde40827072efeb3e13499943', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 45679.6507625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04278fef8b1a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x6c26e2bcc0b5b6e36ce05f77038df078c4979fe3d08b672cac06a35cc5cb521d:log:90', 'hash': '0x6c26e2bcc0b5b6e36ce05f77038df078c4979fe3d08b672cac06a35cc5cb521d', 'from': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4747.30382791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6e8822c5c7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x9dd4eb3cd1b9c7c7d6c2ef810a2c5f66eb762a9872ca506f594ad4c15c38f8fb:log:91', 'hash': '0x9dd4eb3cd1b9c7c7d6c2ef810a2c5f66eb762a9872ca506f594ad4c15c38f8fb', 'from': '0x1285f034153daa03bc4249786373eee43cba00df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x54133cbb00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x41561ea497e4056fbec76c2eee0795525e1ddccea3187245e90abb900b5657dc:log:92', 'hash': '0x41561ea497e4056fbec76c2eee0795525e1ddccea3187245e90abb900b5657dc', 'from': '0x161a8c7fd0c09c5312fc9cef2c0d98bef8620495', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7056.461509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa44bc9c4f4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xbc229b73055f04c2c91246a4ab1150d2fe93a77ce4f10359215c0b5a1f2a3829:log:93', 'hash': '0xbc229b73055f04c2c91246a4ab1150d2fe93a77ce4f10359215c0b5a1f2a3829', 'from': '0x682c1050fc44411283c2c3e85e7dd2ede5e90a97', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 795.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12858cab80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x79df01a58cf7314b526244b3b852699dd7f0860dc6c5704c40865b71c4ef9c7e:log:95', 'hash': '0x79df01a58cf7314b526244b3b852699dd7f0860dc6c5704c40865b71c4ef9c7e', 'from': '0x523c00131ef14dfe144137088fca435cc38a697f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1545.6433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23fcc08210', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x886c28fc1836144b4dd80547d1c6551eb475625670ad7b1fc71afe936aa91a79:log:97', 'hash': '0x886c28fc1836144b4dd80547d1c6551eb475625670ad7b1fc71afe936aa91a79', 'from': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 380, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08d8f9fc00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x50d4c3963110c72b972650905fe548ed3cbc5785429f885c4c0700f23f4fbb62:log:103', 'hash': '0x50d4c3963110c72b972650905fe548ed3cbc5785429f885c4c0700f23f4fbb62', 'from': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1442.77653447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x21979e47c7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x467a114387032d8917fc42148e8f8d0accad90c7e8a102977f5bd0f2ec06a5da:log:104', 'hash': '0x467a114387032d8917fc42148e8f8d0accad90c7e8a102977f5bd0f2ec06a5da', 'from': '0x2603a62d9232e387b53c3a166f3f21441fe5179e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56898.16247892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x052cc379ee54', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x5285b4dcefc9c01eb4706d31b35a8ed0bbdae22f8c0f3ed85bd6dc74fa6487a5:log:105', 'hash': '0x5285b4dcefc9c01eb4706d31b35a8ed0bbdae22f8c0f3ed85bd6dc74fa6487a5', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16260.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x017a9821f480', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xe60ffb8d9a525b93b3149c817a8591f3dfbcaf3140dac65cb918f14d35874241:log:106', 'hash': '0xe60ffb8d9a525b93b3149c817a8591f3dfbcaf3140dac65cb918f14d35874241', 'from': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x032a9f8800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x294cb7fa7d5bb62c311e20f97c4e4d45f7c85f19ff5c7ee6c2efe645cb5d7ee3:log:111', 'hash': '0x294cb7fa7d5bb62c311e20f97c4e4d45f7c85f19ff5c7ee6c2efe645cb5d7ee3', 'from': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 634.4015127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ec553e2e6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x59366df8ca4784a37c1f85c2c07a6d3ef700f0596481e28f1911df5cb99d95c8:log:112', 'hash': '0x59366df8ca4784a37c1f85c2c07a6d3ef700f0596481e28f1911df5cb99d95c8', 'from': '0x3bc2b2bc5125eacdc64a8188b135a2997dd7324b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20840.85144383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01e53d279b3f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x7bc2e099535a6f316312ba56582cac99ce9e3e7fc362c700d55185d59b9359f7:log:113', 'hash': '0x7bc2e099535a6f316312ba56582cac99ce9e3e7fc362c700d55185d59b9359f7', 'from': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 493.01243781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b7a954785', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xfc01972c6731afffed88fad0efb79e6f32fc92bd9fed13098936281730a97f4a:log:114', 'hash': '0xfc01972c6731afffed88fad0efb79e6f32fc92bd9fed13098936281730a97f4a', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01b3e7d0e200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xe97979176d5236c7442b2dc21616158879e28a2a2cc47a01e3fc0b75448e277f:log:115', 'hash': '0xe97979176d5236c7442b2dc21616158879e28a2a2cc47a01e3fc0b75448e277f', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11246.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0105db8e4b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xb50e8257e6d455b382976e2388b48220e17bf6a267782471e6a079d03cb67496:log:117', 'hash': '0xb50e8257e6d455b382976e2388b48220e17bf6a267782471e6a079d03cb67496', 'from': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02684788c500', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x11903d9176421c6095924539cb6ad2e3d8c6f2b9be4de65ce5af3f114bbeb0da:log:121', 'hash': '0x11903d9176421c6095924539cb6ad2e3d8c6f2b9be4de65ce5af3f114bbeb0da', 'from': '0x06458be2c1aeb1519a5ee1c2341062e269b100f8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2310.86, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x35cdcc8780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xa83165af55dc0fd94390207445fe173a93fdec82af4c4e66697886f6ee4ff9e8:log:122', 'hash': '0xa83165af55dc0fd94390207445fe173a93fdec82af4c4e66697886f6ee4ff9e8', 'from': '0x287e6d4dd4d57ede08b9353e13d51d9f7f1f95fa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14747.9827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x015760d3b630', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x94fcb535a928b305b5517f35d1a02896565093c1e27a59d0ee125e77e277b44c:log:123', 'hash': '0x94fcb535a928b305b5517f35d1a02896565093c1e27a59d0ee125e77e277b44c', 'from': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26042.11754937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x025e571dd7b9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792419', 'uniqueId': '0x065be499f633ae3e775a3abb43518b7684b9c1876b63b5cce4edd95ec31a522f:log:3', 'hash': '0x065be499f633ae3e775a3abb43518b7684b9c1876b63b5cce4edd95ec31a522f', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x68c1f5d13b6a33ae3d659d887c5b37f835e445d0', 'value': 8050.16730059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbb6ebc79cb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:13:18.000Z'}}, {'blockNum': '0x79241c', 'uniqueId': '0x1a2214cb64c7155a7addeb90113684d77012bc96ef237c31bf85c463f3c7c659:log:1', 'hash': '0x1a2214cb64c7155a7addeb90113684d77012bc96ef237c31bf85c463f3c7c659', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xc634656de898f4206cf7a3928390209a8a3d2656', 'value': 24550.14583747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x023b9a45adc3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:14:02.000Z'}}, {'blockNum': '0x79241c', 'uniqueId': '0x92c2b66162c729c395280e98e33cc9fcdbd8b3c7d6a1024c7b9df296c2fd9b2c:log:2', 'hash': '0x92c2b66162c729c395280e98e33cc9fcdbd8b3c7d6a1024c7b9df296c2fd9b2c', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x83d8c8bcb823d7d5bd5894858ceebe79446f2ff9', 'value': 116420.13466633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a969e13c009', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:14:02.000Z'}}, {'blockNum': '0x79241c', 'uniqueId': '0xab1c5b388929a85cbcd8c77d3a496f1a8e5b73e60442622f5e728c3ed8b7093a:log:3', 'hash': '0xab1c5b388929a85cbcd8c77d3a496f1a8e5b73e60442622f5e728c3ed8b7093a', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xb1ab487c5784f5bdd34a93e02e598bc99fcc68af', 'value': 305787.25437281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1bcfaa113f61', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:14:02.000Z'}}, {'blockNum': '0x79241c', 'uniqueId': '0xb358f900192f6aa3e38d70bbc763e73f12d94b4a3217c6a28cbb1d0d871391fa:log:4', 'hash': '0xb358f900192f6aa3e38d70bbc763e73f12d94b4a3217c6a28cbb1d0d871391fa', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x7588626145de9482f4ea53a042775fe00db61501', 'value': 12135.18894211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x011a8b5cd483', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:14:02.000Z'}}, {'blockNum': '0x79241c', 'uniqueId': '0xc554d70260ee84f819e6b829f0f8767f5fc23759b00dbaba8a201679ad1c7ed4:log:5', 'hash': '0xc554d70260ee84f819e6b829f0f8767f5fc23759b00dbaba8a201679ad1c7ed4', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 18700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01b364af8c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:14:02.000Z'}}, {'blockNum': '0x79241c', 'uniqueId': '0x422465348c902518351094a0def56505f89510ec84f41432df3bfac504bf044a:log:11', 'hash': '0x422465348c902518351094a0def56505f89510ec84f41432df3bfac504bf044a', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 2638.52, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d6ece0300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:14:02.000Z'}}, {'blockNum': '0x79241d', 'uniqueId': '0xb41ec385e8c430268c78ee1d93817017cb3f052e5b063b652ec7970a560ad9b4:log:0', 'hash': '0xb41ec385e8c430268c78ee1d93817017cb3f052e5b063b652ec7970a560ad9b4', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3ee8297bb15ad9c4652664583d57810912a57002', 'value': 4279.71813725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x63a51ba15d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:14:24.000Z'}}, {'blockNum': '0x79241d', 'uniqueId': '0x0f3b75d017d90d35cc24286b14769e0aed8f1cb84cbfec6f0eccadbda9b13a88:log:1', 'hash': '0x0f3b75d017d90d35cc24286b14769e0aed8f1cb84cbfec6f0eccadbda9b13a88', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x26414eeec7a87301f561adcf42ee4ce1a46d6f78', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:14:24.000Z'}}, {'blockNum': '0x79241d', 'uniqueId': '0xe4b0d0858cd261f59eee3be6325c6f9e29031b71a9fc1304f09394b96f5e6e45:log:2', 'hash': '0xe4b0d0858cd261f59eee3be6325c6f9e29031b71a9fc1304f09394b96f5e6e45', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x7aed63e07c660ecaba01d7f469240d2ecaaad31b', 'value': 8334.42440389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc20d0a64c5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:14:24.000Z'}}, {'blockNum': '0x79241e', 'uniqueId': '0x27056ea83d758e5a151aa5ae96bd11a9d59972f6300ee29840a3bf0201cf0c29:log:11', 'hash': '0x27056ea83d758e5a151aa5ae96bd11a9d59972f6300ee29840a3bf0201cf0c29', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 2638.52, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d6ece0300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:14:42.000Z'}}, {'blockNum': '0x79241f', 'uniqueId': '0x68f8ac4fc07119d8298636f6b8bdd4f73bde6196c653542fea79b50ee9f4fe77:log:1', 'hash': '0x68f8ac4fc07119d8298636f6b8bdd4f73bde6196c653542fea79b50ee9f4fe77', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xf23607172899cec3d52c03a0df9205d6fcc0da5b', 'value': 15874.12679026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0171992b3972', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:07.000Z'}}, {'blockNum': '0x79241f', 'uniqueId': '0x7fe85898d90381e488fdda571087a3fd2349df2af94e04c209a36866b4ce0cb0:log:2', 'hash': '0x7fe85898d90381e488fdda571087a3fd2349df2af94e04c209a36866b4ce0cb0', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x36231b5a2b3750e27983df5560d89dd2418139d2', 'value': 21303.38569682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01f00212ddd2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:07.000Z'}}, {'blockNum': '0x79241f', 'uniqueId': '0x2ddd1a252a6f30e85e35a73d90e5f2839d5e7ef85dd0a2fb185dfe0dbcfb4920:log:3', 'hash': '0x2ddd1a252a6f30e85e35a73d90e5f2839d5e7ef85dd0a2fb185dfe0dbcfb4920', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xaa74aeae087e61f931fc950a450293f635ae651a', 'value': 29599.98085612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02b12da269ec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:07.000Z'}}, {'blockNum': '0x79241f', 'uniqueId': '0xe429c0c074955e107f26a432dbbb9cbb8edbb788a28c335baf3a7da088b26ff6:log:4', 'hash': '0xe429c0c074955e107f26a432dbbb9cbb8edbb788a28c335baf3a7da088b26ff6', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0289ef6aaefb5e7456788c7da65c056f0b4856f7', 'value': 19900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01cf553e3c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:07.000Z'}}, {'blockNum': '0x79241f', 'uniqueId': '0xe84c30742d378fe5f030c6f9419af026a292dae4eab494a9e66479b7d338f4ab:log:5', 'hash': '0xe84c30742d378fe5f030c6f9419af026a292dae4eab494a9e66479b7d338f4ab', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xeffe6d3ebb6e3b7f7c5a8a34e5c936c340c0d766', 'value': 184889.87901897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x10d0cd8e5fc9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:07.000Z'}}, {'blockNum': '0x792420', 'uniqueId': '0xe65a5180d7832aed7492c6e9fc77e3f53795563b8b44bcd7005d1566f97f03e5:log:0', 'hash': '0xe65a5180d7832aed7492c6e9fc77e3f53795563b8b44bcd7005d1566f97f03e5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 449.71743309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a7886584d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:09.000Z'}}, {'blockNum': '0x792420', 'uniqueId': '0x1f3ef786fe71d1642b07b1ef363ec37f9489c081ef15ad6102baeb3c7f16292d:log:1', 'hash': '0x1f3ef786fe71d1642b07b1ef363ec37f9489c081ef15ad6102baeb3c7f16292d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 2851.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x426443b380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:09.000Z'}}, {'blockNum': '0x792420', 'uniqueId': '0xa9f82fea9bae9a25d010d42b664921dcd49a30b6cb567f71eacfacdaf87b17bb:log:2', 'hash': '0xa9f82fea9bae9a25d010d42b664921dcd49a30b6cb567f71eacfacdaf87b17bb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'value': 5439.32771678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7ea4eb6d5e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:09.000Z'}}, {'blockNum': '0x792420', 'uniqueId': '0x9df90196913a83ea02aab705431f14cc323b5b9e67076df8e41d8b1ea3310250:log:3', 'hash': '0x9df90196913a83ea02aab705431f14cc323b5b9e67076df8e41d8b1ea3310250', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'value': 55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0147d35700', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:09.000Z'}}, {'blockNum': '0x792420', 'uniqueId': '0x0f2178127b6172df42604edc43d6ec2807f56b92010123457be212d5d87dbfbb:log:9', 'hash': '0x0f2178127b6172df42604edc43d6ec2807f56b92010123457be212d5d87dbfbb', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 4329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x64cad9c900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:09.000Z'}}, {'blockNum': '0x792422', 'uniqueId': '0x0feaafb5f7c19fcb103eae00abbd7a4478a8524ead372d9b5c66a389d9f205a9:log:3', 'hash': '0x0feaafb5f7c19fcb103eae00abbd7a4478a8524ead372d9b5c66a389d9f205a9', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x99915ddeb78a6f54cf651d5031f2572d0ba3337e', 'value': 136716.39943508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c6f2d3e0954', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:59.000Z'}}, {'blockNum': '0x792422', 'uniqueId': '0x68da31688a44c5cd2b155e346c3affff82f87b9ebc540e580d7515b72bece3ad:log:14', 'hash': '0x68da31688a44c5cd2b155e346c3affff82f87b9ebc540e580d7515b72bece3ad', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 11450.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010a9b7d9780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:59.000Z'}}, {'blockNum': '0x792422', 'uniqueId': '0xee01fa14ec642651a17088cda26764e57b4ec13dbc25d2158c20774124f858e8:log:17', 'hash': '0xee01fa14ec642651a17088cda26764e57b4ec13dbc25d2158c20774124f858e8', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 2638.52, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d6ece0300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:59.000Z'}}, {'blockNum': '0x792422', 'uniqueId': '0x27220f3943cafdfe34583432a5b29f948cc73a98c243eaf153881cf3efb6a07e:log:20', 'hash': '0x27220f3943cafdfe34583432a5b29f948cc73a98c243eaf153881cf3efb6a07e', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x1285f034153daa03bc4249786373eee43cba00df', 'value': 3489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x513c0f8100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:59.000Z'}}, {'blockNum': '0x792422', 'uniqueId': '0xabf8f8994f1c9658131ed858176701493c71d704c8cab4089d56d866624ce80d:log:21', 'hash': '0xabf8f8994f1c9658131ed858176701493c71d704c8cab4089d56d866624ce80d', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'value': 2591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3c53903f00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:59.000Z'}}, {'blockNum': '0x792422', 'uniqueId': '0x9eca2c83d8ddf6945ccd35606e6bb7e0494d74cd04de1fa36a24c0cf078f3c8e:log:22', 'hash': '0x9eca2c83d8ddf6945ccd35606e6bb7e0494d74cd04de1fa36a24c0cf078f3c8e', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6deb55852f25a4deab9e4a86b5ae2f1c8e1ab439', 'value': 3061.12148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4745b4b220', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:59.000Z'}}, {'blockNum': '0x792423', 'uniqueId': '0xcc1090933717babe5670c55d8f250ff738bbb431531b5b76126498dbeb5e5970:log:42', 'hash': '0xcc1090933717babe5670c55d8f250ff738bbb431531b5b76126498dbeb5e5970', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x7d6a9da41a3cf8f1acf365eaf8df009a2d591373', 'value': 159.71341312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03b7f75400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:16:05.000Z'}}, {'blockNum': '0x792423', 'uniqueId': '0x075b6e52d258192e31f8e41717442a4c88afa5755a7e2b7d23acc2a417508321:log:43', 'hash': '0x075b6e52d258192e31f8e41717442a4c88afa5755a7e2b7d23acc2a417508321', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'value': 4681.55038513, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6d0036fb31', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:16:05.000Z'}}, {'blockNum': '0x792425', 'uniqueId': '0x935b9ff6254971e01449d033759f7f3705e140df5949b2760718ff847749a44f:log:1', 'hash': '0x935b9ff6254971e01449d033759f7f3705e140df5949b2760718ff847749a44f', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xc03b848d72f90c7ec00479c05e50740a249a0834', 'value': 6660.6364232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9b147c9ed0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:16:15.000Z'}}, {'blockNum': '0x792425', 'uniqueId': '0x9abc034fafd224a8a2bea0cb115795467023dc9f61c7d0a453f390d43f8f06c6:log:2', 'hash': '0x9abc034fafd224a8a2bea0cb115795467023dc9f61c7d0a453f390d43f8f06c6', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'value': 30031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02bb36b56f00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:16:15.000Z'}}, {'blockNum': '0x792426', 'uniqueId': '0xad4e83dc99d14c7497942ea8edf3b1836b85320e27d44a83498488f221d10c59:log:1', 'hash': '0xad4e83dc99d14c7497942ea8edf3b1836b85320e27d44a83498488f221d10c59', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x115171c66f8cb2f49e1be20763ac85cafa240897', 'value': 38112.51110486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03776044c256', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:16:19.000Z'}}, {'blockNum': '0x792426', 'uniqueId': '0xe284c0d9c3c782a0518ffee2bd265bcee2bbdbc94ffe2d9563d2d670fa7f2da3:log:5', 'hash': '0xe284c0d9c3c782a0518ffee2bd265bcee2bbdbc94ffe2d9563d2d670fa7f2da3', 'from': '0x6f31d347457962c9811ff953742870ef5a755de3', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09184e72a000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:16:19.000Z'}}, {'blockNum': '0x792426', 'uniqueId': '0x8a3f3638d41bb86b7a32174289fe3bbd94ad21327c205a10de01aa56859c6415:log:39', 'hash': '0x8a3f3638d41bb86b7a32174289fe3bbd94ad21327c205a10de01aa56859c6415', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x8f8a8969a8f8b1319ef17a14834cecc25f30f01d', 'value': 2868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x42c69cb400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:16:19.000Z'}}, {'blockNum': '0x792428', 'uniqueId': '0xba7bb28fd55ec597f6ed0ce83494d770c5e1552933a8adcd533d7ca6f25b9e46:log:0', 'hash': '0xba7bb28fd55ec597f6ed0ce83494d770c5e1552933a8adcd533d7ca6f25b9e46', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x29705e79ebdf6622f71c8ba323613ba41e7745c1', 'value': 9435.41102843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xdbaf6ea8fb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:17:08.000Z'}}, {'blockNum': '0x792428', 'uniqueId': '0x674264f8c18dbaeb54589194a3bffd53859dc16e0cd63fbe4eda90b6a0681f63:log:1', 'hash': '0x674264f8c18dbaeb54589194a3bffd53859dc16e0cd63fbe4eda90b6a0681f63', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x161a8c7fd0c09c5312fc9cef2c0d98bef8620495', 'value': 7258.730755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa90168252c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:17:08.000Z'}}, {'blockNum': '0x792428', 'uniqueId': '0xdea9f6140d8e0d7c0c7d3093f1e57d184b4166e2cee9fc25635add800be10825:log:4', 'hash': '0xdea9f6140d8e0d7c0c7d3093f1e57d184b4166e2cee9fc25635add800be10825', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 14193.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014a78821a40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:17:08.000Z'}}, {'blockNum': '0x792428', 'uniqueId': '0x5dacb823695d9e2eb7d1c92f7f7998700af21840202009f1383b4d674cb7016e:log:5', 'hash': '0x5dacb823695d9e2eb7d1c92f7f7998700af21840202009f1383b4d674cb7016e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 2055.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2fdbbc1780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:17:08.000Z'}}, {'blockNum': '0x79242a', 'uniqueId': '0x1251fc2b5b146785af985e6fc9d53c011b584bb06e6bd27ab17a82b83a791661:log:5', 'hash': '0x1251fc2b5b146785af985e6fc9d53c011b584bb06e6bd27ab17a82b83a791661', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x3732fd22645bd2207c27a1aaee36f2dbd46822f7', 'value': 13451.6796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0139324227c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:17:17.000Z'}}, {'blockNum': '0x79242a', 'uniqueId': '0xe1002436d33a5aebaccf5a183a8e9f76f0cf6142f3ecb873d4d7578a68cff7fb:log:14', 'hash': '0xe1002436d33a5aebaccf5a183a8e9f76f0cf6142f3ecb873d4d7578a68cff7fb', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 1358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f9e4f8e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:17:17.000Z'}}, {'blockNum': '0x79242c', 'uniqueId': '0x9b65a5e64613f6598f7e648b156687d14e769daa61d12f1f163ade1495c8ef94:log:83', 'hash': '0x9b65a5e64613f6598f7e648b156687d14e769daa61d12f1f163ade1495c8ef94', 'from': '0x3dc34205a54a191bd267d86a7ed82477a632c9d9', 'to': '0xcc8c9472fb66333e0b84da918cc83bd5e2015aad', 'value': 1444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x219ee92400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:17:57.000Z'}}, {'blockNum': '0x79242e', 'uniqueId': '0x6507dd9394f9983c4593b2df30a102eda3ad53c629c0be0e5e34f6e3e3055a1b:log:2', 'hash': '0x6507dd9394f9983c4593b2df30a102eda3ad53c629c0be0e5e34f6e3e3055a1b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x95231512c6d2a006e23bfffa94ba39fb9d7fddbd', 'value': 696.13970978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x103550e622', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:18:36.000Z'}}, {'blockNum': '0x79242e', 'uniqueId': '0x88f1b88ee28c0654376623ba43ca394bc68a0aa470ba21786bbdeaebeb87a80b:log:3', 'hash': '0x88f1b88ee28c0654376623ba43ca394bc68a0aa470ba21786bbdeaebeb87a80b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 15239.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0162d27f9780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:18:36.000Z'}}, {'blockNum': '0x79242e', 'uniqueId': '0x9a1c2cb915cbc5197b877a83b51d2110886280bd12b8252d43fcdae9451e1f54:log:4', 'hash': '0x9a1c2cb915cbc5197b877a83b51d2110886280bd12b8252d43fcdae9451e1f54', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 14296.48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014cdda94400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:18:36.000Z'}}, {'blockNum': '0x79242e', 'uniqueId': '0x2677c2cbb813cbc93f7e1a35489b72fd4f34e414693c154ad36c39999a763d0c:log:34', 'hash': '0x2677c2cbb813cbc93f7e1a35489b72fd4f34e414693c154ad36c39999a763d0c', 'from': '0x24537637c7f01aa921bf46eea7106ea49ab418f3', 'to': '0x7dbdd26c4a094ebca087c4e7f1c56db03a5fee70', 'value': 29.91325869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb24c02ad', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:18:36.000Z'}}, {'blockNum': '0x792434', 'uniqueId': '0x3c2dfe9c1a2cf928205ce51df920488ff8e4659007b72815bc22cc62444474fd:log:64', 'hash': '0x3c2dfe9c1a2cf928205ce51df920488ff8e4659007b72815bc22cc62444474fd', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x24de51a5afde94670e4b3c73c922eec4533822e8', 'value': 702.03874412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x10587a1c6c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:20:01.000Z'}}, {'blockNum': '0x792434', 'uniqueId': '0xb946616ccb888ddcb7b3aeb1f3cd46e052a46afa9a3e97c8551c6fe37762544b:log:65', 'hash': '0xb946616ccb888ddcb7b3aeb1f3cd46e052a46afa9a3e97c8551c6fe37762544b', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x3bc2b2bc5125eacdc64a8188b135a2997dd7324b', 'value': 2558.87700341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b94187175', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:20:01.000Z'}}, {'blockNum': '0x792437', 'uniqueId': '0x615926da6d3998bdff52692beba37b2515307acb2713d5a0a9c8ffe4aac668a0:log:2', 'hash': '0x615926da6d3998bdff52692beba37b2515307acb2713d5a0a9c8ffe4aac668a0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x087315576ca14d7d81aad0d12f638640d28848fa', 'value': 1274.83874671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1daea18d6f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:20:33.000Z'}}, {'blockNum': '0x792437', 'uniqueId': '0xe5ff47cfacead71512d9d09cd6e76c90fc80807318c5b4bbe798f8d77aca025f:log:3', 'hash': '0xe5ff47cfacead71512d9d09cd6e76c90fc80807318c5b4bbe798f8d77aca025f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf52b1f74246d5aa2e28826abd0e0dc19223a8839', 'value': 8400.38723319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc39635aef7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:20:33.000Z'}}, {'blockNum': '0x792437', 'uniqueId': '0x10ce4b9bbd274b5199e420f696a71416bbaa50fafadbd6f7baf2c8eaabe1623f:log:7', 'hash': '0x10ce4b9bbd274b5199e420f696a71416bbaa50fafadbd6f7baf2c8eaabe1623f', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x523c00131ef14dfe144137088fca435cc38a697f', 'value': 1541.92596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23e6984c20', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:20:33.000Z'}}, {'blockNum': '0x79243b', 'uniqueId': '0xc693559b9590434bb0a475c5bc766e8c4dcba8b1dc189314258a6d3184be6744:log:18', 'hash': '0xc693559b9590434bb0a475c5bc766e8c4dcba8b1dc189314258a6d3184be6744', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x8d26502984a208538530a75817020c68fee70bab', 'value': 2007.64266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2ebe7b9610', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:21:14.000Z'}}, {'blockNum': '0x79243b', 'uniqueId': '0x3007e6bc76508ce27b1617de3c2f27b8e7c314f9990833cf28a69c71e0a6e89b:log:19', 'hash': '0x3007e6bc76508ce27b1617de3c2f27b8e7c314f9990833cf28a69c71e0a6e89b', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 53471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04dcf7feff00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:21:14.000Z'}}, {'blockNum': '0x79243b', 'uniqueId': '0xd3ebf9998d8ef1e1300cc95263f6cab577b3bbffbd2899a46404e413f1aed4cf:log:93', 'hash': '0xd3ebf9998d8ef1e1300cc95263f6cab577b3bbffbd2899a46404e413f1aed4cf', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xce27dbcd10379c110d00c298ceebf0eb6237b7cd', 'value': 2299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x35871b9b00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:21:14.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xa2caf193ee999a2686b1bb89d5207e8f18ec4f48398bbd3ae758d2adc3b60f8b:log:2', 'hash': '0xa2caf193ee999a2686b1bb89d5207e8f18ec4f48398bbd3ae758d2adc3b60f8b', 'from': '0x29705e79ebdf6622f71c8ba323613ba41e7745c1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9435.41102843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xdbaf6ea8fb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xf1a86b6e01051cc93db87adae27d098abebb28d77a6680b09c13f72f3238e8c9:log:3', 'hash': '0xf1a86b6e01051cc93db87adae27d098abebb28d77a6680b09c13f72f3238e8c9', 'from': '0x30716256c590991775a48ab28dd4b899d6c95031', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10830, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xfc27d48e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x2a6d24b56c63b814a0a8bbad2a06c0253a68afe82b2847fb1df4d5e1fbbf5e7b:log:5', 'hash': '0x2a6d24b56c63b814a0a8bbad2a06c0253a68afe82b2847fb1df4d5e1fbbf5e7b', 'from': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9144.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd4e977a880', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xed2ea8e0292d6e4500816b4a0829785a12c2edfd7291049dd6925791044950f3:log:6', 'hash': '0xed2ea8e0292d6e4500816b4a0829785a12c2edfd7291049dd6925791044950f3', 'from': '0x0bba108df4d8411494155fa913365012f88fd3dc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b6e968b00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x0fa9e52f545ce9abab9153ed15e3d5bd190143b923335b236c0d391788c2bdee:log:7', 'hash': '0x0fa9e52f545ce9abab9153ed15e3d5bd190143b923335b236c0d391788c2bdee', 'from': '0x115171c66f8cb2f49e1be20763ac85cafa240897', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38112.51110486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03776044c256', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x87f589fc465328c8a397cf1622c37bcf955f2a6af7cd91972cf4942c52c8968c:log:8', 'hash': '0x87f589fc465328c8a397cf1622c37bcf955f2a6af7cd91972cf4942c52c8968c', 'from': '0x847dd23ac1f74bdefcd7668b6aded7764aaedc52', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 136440.15638931, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c68beb49993', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xca002176915d26c2a926af897e8eb84b5da22216a7dc7939d5c6bb2f19a649da:log:9', 'hash': '0xca002176915d26c2a926af897e8eb84b5da22216a7dc7939d5c6bb2f19a649da', 'from': '0x6deb55852f25a4deab9e4a86b5ae2f1c8e1ab439', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3061.12148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4745b4b220', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xddf7dc224b41a3acf1c5eb5fb85bb1121f20150f55a6f030147872f047a4b96d:log:10', 'hash': '0xddf7dc224b41a3acf1c5eb5fb85bb1121f20150f55a6f030147872f047a4b96d', 'from': '0x7d6a9da41a3cf8f1acf365eaf8df009a2d591373', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 159.71341312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03b7f75400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xda2ae2316f0402b984c3857970cf29c3558344fcf4980533cb36fc0007669063:log:11', 'hash': '0xda2ae2316f0402b984c3857970cf29c3558344fcf4980533cb36fc0007669063', 'from': '0x3e76c551e52f3fbf414f10342cd4608288230c3a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7395.50972485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xac30ac4a45', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xd429134aed6b8169fed04496bd650b8a8c4f3ebd1855485f029461d64effa214:log:12', 'hash': '0xd429134aed6b8169fed04496bd650b8a8c4f3ebd1855485f029461d64effa214', 'from': '0xd4b616b65eb6e3015af290c6ed13e66d46b7352c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 57116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0531d5e39c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x6eb658e00ecbce1e6be6143285f01e97e13160db856df5b858cf04fdc28b96f7:log:13', 'hash': '0x6eb658e00ecbce1e6be6143285f01e97e13160db856df5b858cf04fdc28b96f7', 'from': '0xf23607172899cec3d52c03a0df9205d6fcc0da5b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15874.12679026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0171992b3972', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x964c72a5339ea783553e0bca365f1806e8e57b67386e2394bf123e64919fb1fb:log:14', 'hash': '0x964c72a5339ea783553e0bca365f1806e8e57b67386e2394bf123e64919fb1fb', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbe094fa200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xff7fb1748707b2a02741ec44babd695b17fa45044ee4707db9ada619a14f5394:log:15', 'hash': '0xff7fb1748707b2a02741ec44babd695b17fa45044ee4707db9ada619a14f5394', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01b364af8c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x0a878567be48724d5e0a1f285f9fb07e7e9360af7b15f1ebf67a37d19a2c6567:log:16', 'hash': '0x0a878567be48724d5e0a1f285f9fb07e7e9360af7b15f1ebf67a37d19a2c6567', 'from': '0x2b47a9c49d52f178acc22b0bb0191a3c0e98f940', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 167146.52235703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f33aee8b7b7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xc44e3489721e28684693d1932e988cfb32ef1e959d308764e542761fc390d4db:log:17', 'hash': '0xc44e3489721e28684693d1932e988cfb32ef1e959d308764e542761fc390d4db', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31379.545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02da9ca9cda0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x545d342260d63ac03078d68dc5d7b7331007408073c31271d5dbaf4f1aba5fc5:log:18', 'hash': '0x545d342260d63ac03078d68dc5d7b7331007408073c31271d5dbaf4f1aba5fc5', 'from': '0x3732fd22645bd2207c27a1aaee36f2dbd46822f7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13451.6796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0139324227c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x821a19d05a18db73a7ae88f87bd442eddfbc9b8cd68e80b37f6b8744f5cbbb60:log:19', 'hash': '0x821a19d05a18db73a7ae88f87bd442eddfbc9b8cd68e80b37f6b8744f5cbbb60', 'from': '0xb1ab487c5784f5bdd34a93e02e598bc99fcc68af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 305787.25437281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1bcfaa113f61', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x48b8adebdb50efa0e14b692ec83d379f49808a5ec321f4b0eb20e1dbfe26d574:log:20', 'hash': '0x48b8adebdb50efa0e14b692ec83d379f49808a5ec321f4b0eb20e1dbfe26d574', 'from': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 74576.77, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06c860303d40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x3fa6c3de0aacdbeab51a719837c3866f1aea4e18e7485d4103498fa1a8d4dde3:log:21', 'hash': '0x3fa6c3de0aacdbeab51a719837c3866f1aea4e18e7485d4103498fa1a8d4dde3', 'from': '0xeffe6d3ebb6e3b7f7c5a8a34e5c936c340c0d766', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 184889.87901897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x10d0cd8e5fc9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xea57cd1cb63d3622a382e7757012388f4449e3cdbe97885b8be9d9566fcf7d1f:log:22', 'hash': '0xea57cd1cb63d3622a382e7757012388f4449e3cdbe97885b8be9d9566fcf7d1f', 'from': '0xaa74aeae087e61f931fc950a450293f635ae651a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29599.98085612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02b12da269ec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xb9f67da559cb61ae1a165eed345706d9b6e74364a28e02a4093ee390cb1aa662:log:23', 'hash': '0xb9f67da559cb61ae1a165eed345706d9b6e74364a28e02a4093ee390cb1aa662', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17999.51734309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01a3157bd625', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x3229f61584e3003c32a48d6291c34f691fa624dc295bb921e911e6ab22ecf41a:log:24', 'hash': '0x3229f61584e3003c32a48d6291c34f691fa624dc295bb921e911e6ab22ecf41a', 'from': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10120.87810191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xeba522688f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x5c4ab2c158f9f6db618fe0cef1dfa7d6316343a35235efe0034453bf2e9da50a:log:25', 'hash': '0x5c4ab2c158f9f6db618fe0cef1dfa7d6316343a35235efe0034453bf2e9da50a', 'from': '0x83d8c8bcb823d7d5bd5894858ceebe79446f2ff9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 315230.83087462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1cab8a2b6e66', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xbd9788fbd80c156d1b81fbd0f14ff410d401ce878918009d3f16e09e0c76f97d:log:26', 'hash': '0xbd9788fbd80c156d1b81fbd0f14ff410d401ce878918009d3f16e09e0c76f97d', 'from': '0x161a8c7fd0c09c5312fc9cef2c0d98bef8620495', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7258.730755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa90168252c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0xb37f068214c678433da2ed22dd850461bb40b1eb124e71e3ddb2a8e0634f380f:log:6', 'hash': '0xb37f068214c678433da2ed22dd850461bb40b1eb124e71e3ddb2a8e0634f380f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 205747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12b66baf5300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0xa25bc63eb77ee67ef623e5ce06c47b05dd8d9421453a1f5b5d153162a888fc8e:log:9', 'hash': '0xa25bc63eb77ee67ef623e5ce06c47b05dd8d9421453a1f5b5d153162a888fc8e', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 14163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0149c20ef300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0x6d7cabd68e92b2c97f267a568c4ad07b39e68d3e304abe3a4f317613964ecae1:log:11', 'hash': '0x6d7cabd68e92b2c97f267a568c4ad07b39e68d3e304abe3a4f317613964ecae1', 'from': '0x7aed63e07c660ecaba01d7f469240d2ecaaad31b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8334.42440389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc20d0a64c5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0xef2f3b631d8b823418fa3b32b6b0b7a5f4f315ae584c9d2f128415866385476e:log:12', 'hash': '0xef2f3b631d8b823418fa3b32b6b0b7a5f4f315ae584c9d2f128415866385476e', 'from': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 449.71743309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a7886584d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0x3e7a7c4e2aa8414f61a6a3002922698e319172595e5daaf277645eab2f2e1e15:log:13', 'hash': '0x3e7a7c4e2aa8414f61a6a3002922698e319172595e5daaf277645eab2f2e1e15', 'from': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0407290d00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0xc2d7380c74af1e1cb44c6744505565c9383d6db14d236bbf3a623e3e39fbde00:log:14', 'hash': '0xc2d7380c74af1e1cb44c6744505565c9383d6db14d236bbf3a623e3e39fbde00', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2851.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x426443b380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0x57ed2df307a1224abf9a29953d491f5b4c37133e9203c14f572bf019ac050d88:log:16', 'hash': '0x57ed2df307a1224abf9a29953d491f5b4c37133e9203c14f572bf019ac050d88', 'from': '0x36231b5a2b3750e27983df5560d89dd2418139d2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21303.38569682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01f00212ddd2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0x8b3adfa50e6e17eca3e5c3d7c81cf5046cdb6cc82b40bbe4aee5291ccb25ffaf:log:17', 'hash': '0x8b3adfa50e6e17eca3e5c3d7c81cf5046cdb6cc82b40bbe4aee5291ccb25ffaf', 'from': '0x1285f034153daa03bc4249786373eee43cba00df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x513c0f8100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0x0d0cc764b62d3151f113730fa3e555c042b1186c79ec851a22110c8e7c16c58b:log:18', 'hash': '0x0d0cc764b62d3151f113730fa3e555c042b1186c79ec851a22110c8e7c16c58b', 'from': '0x68c1f5d13b6a33ae3d659d887c5b37f835e445d0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8050.16730059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbb6ebc79cb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0x72fa5050c5a88f9fe88ffff3ddee46d39b6f5f15841f2b28debb5e1fd722e14c:log:19', 'hash': '0x72fa5050c5a88f9fe88ffff3ddee46d39b6f5f15841f2b28debb5e1fd722e14c', 'from': '0x40e5ebf13a622db7f0f3a00737906c39decaab04', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21173.22692307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01ecfa4456d3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0x30d09ca64a818a20889369e7bc1ee1d1425889e3d052afb78e42bf40d057920a:log:20', 'hash': '0x30d09ca64a818a20889369e7bc1ee1d1425889e3d052afb78e42bf40d057920a', 'from': '0xc03b848d72f90c7ec00479c05e50740a249a0834', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6660.6364232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9b147c9ed0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0xcddb171532fa1acf3413fe81e9e6e204e8605ae0a85090a65e09a5a8456b7345:log:29', 'hash': '0xcddb171532fa1acf3413fe81e9e6e204e8605ae0a85090a65e09a5a8456b7345', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x50ca540462d794927f4c642611f0da56231e2113', 'value': 4619.4837504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6b8e44d000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0x10b7a85a577104db7d455289e4dd8e075edfbee2865e627b1bb734936099f77d:log:30', 'hash': '0x10b7a85a577104db7d455289e4dd8e075edfbee2865e627b1bb734936099f77d', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xf8c4a9afbe0200b7607e9fecb5a5ff398aa26014', 'value': 9050.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd2b8967400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x792441', 'uniqueId': '0x5444e02b6fc76021d40e477d590f745dceda8e011eb21a41b4a4ec12a677f28d:log:4', 'hash': '0x5444e02b6fc76021d40e477d590f745dceda8e011eb21a41b4a4ec12a677f28d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 1005.208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x176781af00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:23:06.000Z'}}, {'blockNum': '0x792441', 'uniqueId': '0x670677f97f97f4df08cc0b8b0afbd452e8ee9bb5e2d3ad865d9228e24381729e:log:6', 'hash': '0x670677f97f97f4df08cc0b8b0afbd452e8ee9bb5e2d3ad865d9228e24381729e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x72248f253a859137b1fee18eb65329ee04eea067', 'value': 12499.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x012306d36380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:23:06.000Z'}}, {'blockNum': '0x792441', 'uniqueId': '0x30b6ecd8d77025c8490328dc9a7777096717cf43192a619284870c4e1a6a7fae:log:7', 'hash': '0x30b6ecd8d77025c8490328dc9a7777096717cf43192a619284870c4e1a6a7fae', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf52b1f74246d5aa2e28826abd0e0dc19223a8839', 'value': 8667.41192009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc9cdcd0549', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:23:06.000Z'}}, {'blockNum': '0x792441', 'uniqueId': '0xfe8cc9b88d1bd663e8ec14ccd12c43b1d53d4108d197052144aa4502115b4d2c:log:8', 'hash': '0xfe8cc9b88d1bd663e8ec14ccd12c43b1d53d4108d197052144aa4502115b4d2c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'value': 4217.60694828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6232e57a2c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:23:06.000Z'}}, {'blockNum': '0x792441', 'uniqueId': '0xec1195dd9cc59557b6ae95340c6015df5346f7da8e997319d385df185a427576:log:9', 'hash': '0xec1195dd9cc59557b6ae95340c6015df5346f7da8e997319d385df185a427576', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 13601.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x013cb1a44b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:23:06.000Z'}}, {'blockNum': '0x792445', 'uniqueId': '0xb7bfd889d528161176ef7da442c806aa667b2c9738f5a648e3200f7d128fc365:log:44', 'hash': '0xb7bfd889d528161176ef7da442c806aa667b2c9738f5a648e3200f7d128fc365', 'from': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a012317b000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:24:04.000Z'}}, {'blockNum': '0x792447', 'uniqueId': '0x757f0c8748991b98ff19102eb0e033eb43f55d66e32cb78cf63c39738c46db65:log:2', 'hash': '0x757f0c8748991b98ff19102eb0e033eb43f55d66e32cb78cf63c39738c46db65', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7dd22200cbad4a8b237ee0f8c695c6922ea98197', 'value': 9865.31499731, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe5b1dc0ed3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:25:04.000Z'}}, {'blockNum': '0x792447', 'uniqueId': '0x557aac5775de74011f2336f1f5d5e4d2a2fa78938b0f98e5b71efd3ace84f7a7:log:15', 'hash': '0x557aac5775de74011f2336f1f5d5e4d2a2fa78938b0f98e5b71efd3ace84f7a7', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 5342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7c60cd1e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:25:04.000Z'}}, {'blockNum': '0x79244b', 'uniqueId': '0x882aa3bccec4b1b8ebb6338f5ecf99b33e3af830797d72d5c94f9c2ab2b5bba8:log:12', 'hash': '0x882aa3bccec4b1b8ebb6338f5ecf99b33e3af830797d72d5c94f9c2ab2b5bba8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x206fa533745f133904480948283f3515dc625e7b', 'value': 6549.1837504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x987c2d5680', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:26:01.000Z'}}, {'blockNum': '0x79244b', 'uniqueId': '0x133e07279f072b1ed998a0383bb8202df2761d35417115992a50cbb6ccd11526:log:14', 'hash': '0x133e07279f072b1ed998a0383bb8202df2761d35417115992a50cbb6ccd11526', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 2589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3c47a47d00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:26:01.000Z'}}, {'blockNum': '0x79244c', 'uniqueId': '0x18b94f3a5d3603431a34b357b48b7b28db1d112bc988d1df140fc492bd00ee46:log:73', 'hash': '0x18b94f3a5d3603431a34b357b48b7b28db1d112bc988d1df140fc492bd00ee46', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 10458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf37e899a00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:27:00.000Z'}}, {'blockNum': '0x79244d', 'uniqueId': '0x9f4aa8c27ea8d5315ca8e1e580ec9b8c507a49f55c682e68ca9d4a2a74f5f664:log:4', 'hash': '0x9f4aa8c27ea8d5315ca8e1e580ec9b8c507a49f55c682e68ca9d4a2a74f5f664', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'value': 3534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5248480e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:27:04.000Z'}}, {'blockNum': '0x792457', 'uniqueId': '0x275be87ea442d7fafce490b0ff362a66e4e8c9fb27c210d8fc0714396d1bb74f:log:35', 'hash': '0x275be87ea442d7fafce490b0ff362a66e4e8c9fb27c210d8fc0714396d1bb74f', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xf8c4a9afbe0200b7607e9fecb5a5ff398aa26014', 'value': 29200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02a7dd901000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:28:15.000Z'}}, {'blockNum': '0x792457', 'uniqueId': '0x87d2007e82125d9fbbcd40b185e59fcbad16e6f0ac1c9d4232ac2bfcc3c1659f:log:36', 'hash': '0x87d2007e82125d9fbbcd40b185e59fcbad16e6f0ac1c9d4232ac2bfcc3c1659f', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x0f155f84f44e5fd47b53f74f31256a2d8f955591', 'value': 5458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7f14371200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:28:15.000Z'}}, {'blockNum': '0x792458', 'uniqueId': '0xc44ef8a051e0a55033906af85a6dec0e0b26f23375b19c38a2e09158b1ffa97c:log:1', 'hash': '0xc44ef8a051e0a55033906af85a6dec0e0b26f23375b19c38a2e09158b1ffa97c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe243413ddf74b39c16f07652bffb8a3756048b60', 'value': 483.25382671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b406ad20f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:28:25.000Z'}}, {'blockNum': '0x792458', 'uniqueId': '0x704df04b49ebc26ea3eccdba142c717b3c85b39eafd85209ea5161aa0e131f11:log:9', 'hash': '0x704df04b49ebc26ea3eccdba142c717b3c85b39eafd85209ea5161aa0e131f11', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 13456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01394c029000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:28:25.000Z'}}, {'blockNum': '0x792464', 'uniqueId': '0x56025a877ccf9b502405511e9330512b58abe73d7509f4a016e6e8edd0aad863:log:3', 'hash': '0x56025a877ccf9b502405511e9330512b58abe73d7509f4a016e6e8edd0aad863', 'from': '0x206fa533745f133904480948283f3515dc625e7b', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 6549.1837504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x987c2d5680', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:30:41.000Z'}}, {'blockNum': '0x792464', 'uniqueId': '0x0b654a7d37cd56a2feaf7e3afdfe8c38e0bdf9f77b5c0a84c756c418daf7f42d:log:22', 'hash': '0x0b654a7d37cd56a2feaf7e3afdfe8c38e0bdf9f77b5c0a84c756c418daf7f42d', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 2084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x30859ba400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:30:41.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x906a998ea40cde32bf8016db4da89824abd5fd816bf03e8c380d596c713df802:log:3', 'hash': '0x906a998ea40cde32bf8016db4da89824abd5fd816bf03e8c380d596c713df802', 'from': '0x0f155f84f44e5fd47b53f74f31256a2d8f955591', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 5458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7f14371200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0xb3a67d20fcb2d1924f335b0881812b12140dd506bd953db3749727a4f8c430cd:log:38', 'hash': '0xb3a67d20fcb2d1924f335b0881812b12140dd506bd953db3749727a4f8c430cd', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04dcf7feff00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x4cd2651999444c1a30c7904523de36eeac7cff134d587756e668407e4bd8ebec:log:39', 'hash': '0x4cd2651999444c1a30c7904523de36eeac7cff134d587756e668407e4bd8ebec', 'from': '0x523c00131ef14dfe144137088fca435cc38a697f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1541.92596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23e6984c20', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0xb46bd55c2e3caa823a258e8ad1e5f154732855d721237fe43df0ae350769eef3:log:40', 'hash': '0xb46bd55c2e3caa823a258e8ad1e5f154732855d721237fe43df0ae350769eef3', 'from': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13601.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x013cb1a44b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0xee71b675f487774671f77623f94ec7f068e06bf9f746b017b727e9875cf04b7d:log:43', 'hash': '0xee71b675f487774671f77623f94ec7f068e06bf9f746b017b727e9875cf04b7d', 'from': '0x3ee8297bb15ad9c4652664583d57810912a57002', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4279.71813725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x63a51ba15d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x26a51539f298a48016afd2803d74d7f9944cc297b4d3aa1afcd3cb601b2b0f0f:log:45', 'hash': '0x26a51539f298a48016afd2803d74d7f9944cc297b4d3aa1afcd3cb601b2b0f0f', 'from': '0x7dd22200cbad4a8b237ee0f8c695c6922ea98197', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9865.31499731, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe5b1dc0ed3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x730ddf9d321c8d0f02e0ed301e03529ebf59ced5082c06cfa5e861e8fbdb4547:log:46', 'hash': '0x730ddf9d321c8d0f02e0ed301e03529ebf59ced5082c06cfa5e861e8fbdb4547', 'from': '0x72248f253a859137b1fee18eb65329ee04eea067', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12499.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x012306d36380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x735a6769475cb1ae0846546085019947696c47f14645933a40d70f26502d83ca:log:47', 'hash': '0x735a6769475cb1ae0846546085019947696c47f14645933a40d70f26502d83ca', 'from': '0x087315576ca14d7d81aad0d12f638640d28848fa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1274.83874671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1daea18d6f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x2fe67d35daf14b0ab41d6d5884acc67d6ae34f03214c0da9e73e920fde0da7b0:log:48', 'hash': '0x2fe67d35daf14b0ab41d6d5884acc67d6ae34f03214c0da9e73e920fde0da7b0', 'from': '0xc634656de898f4206cf7a3928390209a8a3d2656', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24550.14583747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x023b9a45adc3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x6d658ea340e90c293fcb9cd6ef673c1476ed727808f1c91156af1e204f873ae2:log:49', 'hash': '0x6d658ea340e90c293fcb9cd6ef673c1476ed727808f1c91156af1e204f873ae2', 'from': '0xce27dbcd10379c110d00c298ceebf0eb6237b7cd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x35871b9b00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x5c8f1e5ac5b6d089ebcc05e01771794d476b15d9013892d20ae75b746267c5b8:log:50', 'hash': '0x5c8f1e5ac5b6d089ebcc05e01771794d476b15d9013892d20ae75b746267c5b8', 'from': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7c60cd1e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x2c4d0354373fa15c1d9be2ad8019aea7f5e87ab764e36f66ae4f660b979dd7d9:log:51', 'hash': '0x2c4d0354373fa15c1d9be2ad8019aea7f5e87ab764e36f66ae4f660b979dd7d9', 'from': '0x857564f9d3f1ef20538ca9c8c5ae59bd872e4b04', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3471.429292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x50d354bb30', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x2ec9a21d8dba006f3a1f9238a3c90858ca9461ac0bd9f9ad1f08c1e2483394f7:log:52', 'hash': '0x2ec9a21d8dba006f3a1f9238a3c90858ca9461ac0bd9f9ad1f08c1e2483394f7', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0149c20ef300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0xfdf44cf8faa5a4e22319baa3fc3065f7ec9974e2ac8bf0cd6d795138339223f6:log:53', 'hash': '0xfdf44cf8faa5a4e22319baa3fc3065f7ec9974e2ac8bf0cd6d795138339223f6', 'from': '0x7588626145de9482f4ea53a042775fe00db61501', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12135.18894211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x011a8b5cd483', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x1b3be2846978675b8a2c1160445005168a6d6245dcc5200cc042ba8496d508cf:log:54', 'hash': '0x1b3be2846978675b8a2c1160445005168a6d6245dcc5200cc042ba8496d508cf', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf37e899a00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0xf0b77db63351631595ac6ed03f901a4a24809dfa437543c0982e57fe22a1dd33:log:57', 'hash': '0xf0b77db63351631595ac6ed03f901a4a24809dfa437543c0982e57fe22a1dd33', 'from': '0x95231512c6d2a006e23bfffa94ba39fb9d7fddbd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 696.13970978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x103550e622', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x6d82b89a3c77c5982f2936d04a0a515138a36c8d5ef323d9cd068351eaad6c6c:log:58', 'hash': '0x6d82b89a3c77c5982f2936d04a0a515138a36c8d5ef323d9cd068351eaad6c6c', 'from': '0x8d26502984a208538530a75817020c68fee70bab', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2007.64266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2ebe7b9610', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0xbdc3de6d1d94e633f8f732e003a0683f45df7c8a88af2c93a049a9b1664571a2:log:59', 'hash': '0xbdc3de6d1d94e633f8f732e003a0683f45df7c8a88af2c93a049a9b1664571a2', 'from': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4217.60694828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6232e57a2c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x74a2b685937a070220bf4301110bda2a162fd3267ad8553404112f4b7ee59b53:log:60', 'hash': '0x74a2b685937a070220bf4301110bda2a162fd3267ad8553404112f4b7ee59b53', 'from': '0x5dc732b675e7c169d6572699c1893ee31bb7c732', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12757.2859886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01290759974c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x79246a', 'uniqueId': '0x0f88a321de95b2b20b55ab368b55ab4616ad03ad7bfe5f498949c0b6e043aa5e:log:0', 'hash': '0x0f88a321de95b2b20b55ab368b55ab4616ad03ad7bfe5f498949c0b6e043aa5e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x8354cfd898a0fb0fcab26170069929ce9fb19a0a', 'value': 1685.76885433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x273ff722b9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:54.000Z'}}, {'blockNum': '0x79246a', 'uniqueId': '0xcf32646bcfcaf07a83236b2eb2f847d92126a9244b5f800e04d45c46943a3c06:log:1', 'hash': '0xcf32646bcfcaf07a83236b2eb2f847d92126a9244b5f800e04d45c46943a3c06', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 10501.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf481d15580', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:54.000Z'}}, {'blockNum': '0x79246a', 'uniqueId': '0x6e326f776e73c8b51ca65c40a335a7af8bc15ca31a12c635ee5f1b927e3dbcc8:log:2', 'hash': '0x6e326f776e73c8b51ca65c40a335a7af8bc15ca31a12c635ee5f1b927e3dbcc8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e8a4fb3d086a12f8ca9a5a194a5017907def452', 'value': 233.21438888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x056e10eaa8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:54.000Z'}}, {'blockNum': '0x79246c', 'uniqueId': '0x703cf1ba69ec0bce25068d4281f09deaad8be1fb620c054ca8d0a6535c5c88ab:log:7', 'hash': '0x703cf1ba69ec0bce25068d4281f09deaad8be1fb620c054ca8d0a6535c5c88ab', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4e9ce36e442e55ecd9025b9a6e0d88485d628a67', 'value': 1892601.22002613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xac218e5794b5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:33:03.000Z'}}, {'blockNum': '0x79246c', 'uniqueId': '0x4f34a20fa2ff56f02490d6fd1f630181d5bd66e02ef56d86b0fac71b220d935a:log:71', 'hash': '0x4f34a20fa2ff56f02490d6fd1f630181d5bd66e02ef56d86b0fac71b220d935a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 5713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8504223100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:33:03.000Z'}}, {'blockNum': '0x79246d', 'uniqueId': '0xc90065affd6fa795ed0df0435e2469b261bab717fe3ba61f62ab17ca61dd622d:log:41', 'hash': '0xc90065affd6fa795ed0df0435e2469b261bab717fe3ba61f62ab17ca61dd622d', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'value': 5482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7fa3442a00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:33:28.000Z'}}, {'blockNum': '0x79246d', 'uniqueId': '0xc7f3cc1af027e9fdf50ee484907175a773e753822f2ccc726d29c5588c0dd4cc:log:42', 'hash': '0xc7f3cc1af027e9fdf50ee484907175a773e753822f2ccc726d29c5588c0dd4cc', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xf8c4a9afbe0200b7607e9fecb5a5ff398aa26014', 'value': 11985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01170c2ab100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:33:28.000Z'}}, {'blockNum': '0x792473', 'uniqueId': '0xadfc0dd9ef0903cebc3095b8d68066fb46f5e6414521b36b0b6f877c1d8c1b2d:log:2', 'hash': '0xadfc0dd9ef0903cebc3095b8d68066fb46f5e6414521b36b0b6f877c1d8c1b2d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x2e9d6ed086ecc8cc296226263b3b9249e08f2d7a', 'value': 179.42747388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x042d7898fc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:34:46.000Z'}}, {'blockNum': '0x792473', 'uniqueId': '0xe2e36a5dc14011a9ae9b623a0be6e0b4d3416375ca8206815a8559e351cc582b:log:4', 'hash': '0xe2e36a5dc14011a9ae9b623a0be6e0b4d3416375ca8206815a8559e351cc582b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf52b1f74246d5aa2e28826abd0e0dc19223a8839', 'value': 8378.04173539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc3110528e3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:34:46.000Z'}}, {'blockNum': '0x792473', 'uniqueId': '0x219749110b161e0f21f040fcf57da4961dabe96bcc4b66bb9b43f2066d2d0788:log:5', 'hash': '0x219749110b161e0f21f040fcf57da4961dabe96bcc4b66bb9b43f2066d2d0788', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x96654f591fc9a31a99eb45dd01a3f84fa8b3635e', 'value': 699.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1049584b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:34:46.000Z'}}, {'blockNum': '0x792474', 'uniqueId': '0x5faa0a3488cda9579554d86c011830c3231fe2d8d8e56bc9aae4a185a208f4d2:log:15', 'hash': '0x5faa0a3488cda9579554d86c011830c3231fe2d8d8e56bc9aae4a185a208f4d2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 15837.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0170c00c5a80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:35:13.000Z'}}, {'blockNum': '0x792474', 'uniqueId': '0x1c4b72f4ba55e606962c2e91900f28f498329c6e72bf5deb5e47831f192f24df:log:18', 'hash': '0x1c4b72f4ba55e606962c2e91900f28f498329c6e72bf5deb5e47831f192f24df', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 31429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02dbc3702500', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:35:13.000Z'}}, {'blockNum': '0x79247a', 'uniqueId': '0xa1e456275f5298107e8840a1ad0a2836c193e9a3aa7d83a86785b4d58ec7e3ec:log:26', 'hash': '0xa1e456275f5298107e8840a1ad0a2836c193e9a3aa7d83a86785b4d58ec7e3ec', 'from': '0xcc8c9472fb66333e0b84da918cc83bd5e2015aad', 'to': '0x110327c7174f93252c92ed43edea694afd29433d', 'value': 1444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x219ee92400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:36:23.000Z'}}, {'blockNum': '0x79247c', 'uniqueId': '0xa6759a382ae0cf89a74e6801ebc771785ffc95c335e2ecd3a1d0a06c5e058392:log:1', 'hash': '0xa6759a382ae0cf89a74e6801ebc771785ffc95c335e2ecd3a1d0a06c5e058392', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1ff45741de650a22b888c00ad063a55fac869b41', 'value': 711.92330892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x109364c28c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:36:57.000Z'}}, {'blockNum': '0x792483', 'uniqueId': '0x19695306e9b02d9f07bd247e6554fb9bda738f426537c44bb23f3ceb289660a7:log:0', 'hash': '0x19695306e9b02d9f07bd247e6554fb9bda738f426537c44bb23f3ceb289660a7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xae4b5285804f5a9b465eece03d381c28c7e01411', 'value': 20.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7a308480', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:38:55.000Z'}}, {'blockNum': '0x792490', 'uniqueId': '0x554ec2989b1ad5816fd7764285f696874782f8f47c77482dc51025e046fbf085:log:0', 'hash': '0x554ec2989b1ad5816fd7764285f696874782f8f47c77482dc51025e046fbf085', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa062450430df1fa8135cc147b76629ffa886e8b5', 'value': 4538.864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x69adbcd600', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:40:35.000Z'}}, {'blockNum': '0x792490', 'uniqueId': '0xaaf5aaafefd1789c43b0e275a52ecc183b66361d6673c18ac4452cdf766b4997:log:1', 'hash': '0xaaf5aaafefd1789c43b0e275a52ecc183b66361d6673c18ac4452cdf766b4997', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2f507586c23e63700e25780f95f7e7ee55003eeb', 'value': 1537.26926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23cad6bcb0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:40:35.000Z'}}, {'blockNum': '0x792491', 'uniqueId': '0xcfab0dee0879d9e43ac68a600b3156d2fe9d5715701fa844bb297bb74dca49a1:log:3', 'hash': '0xcfab0dee0879d9e43ac68a600b3156d2fe9d5715701fa844bb297bb74dca49a1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 70730, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x066ecfa70a00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:40:38.000Z'}}, {'blockNum': '0x792492', 'uniqueId': '0x978ebbcad268e5196ac6ef80461ea63097124d4b0e67b9bf1c6e26961ad6c873:log:2', 'hash': '0x978ebbcad268e5196ac6ef80461ea63097124d4b0e67b9bf1c6e26961ad6c873', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e94f1916d8565606e0b9529d03c3e78c61d59e4', 'value': 1023.00309023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x17d192d61f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:40:46.000Z'}}, {'blockNum': '0x792492', 'uniqueId': '0x242bba9ebe5f2e533d0f4699c288e50f4ff1ff420b5ae2bcd8019eb45692ea11:log:3', 'hash': '0x242bba9ebe5f2e533d0f4699c288e50f4ff1ff420b5ae2bcd8019eb45692ea11', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x21fd4303d875ec7ab0fb53db5e5e225ffab33252', 'value': 66.70288391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x018d948607', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:40:46.000Z'}}, {'blockNum': '0x792492', 'uniqueId': '0x36a0453d1073b718cafa659e5b0b37b01bc2e37a36859c79e6febea8026dfa72:log:32', 'hash': '0x36a0453d1073b718cafa659e5b0b37b01bc2e37a36859c79e6febea8026dfa72', 'from': '0xf8c4a9afbe0200b7607e9fecb5a5ff398aa26014', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 109698.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09fa1d6a9c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:40:46.000Z'}}, {'blockNum': '0x792496', 'uniqueId': '0xeafb1973fc62a97c40d35530b05d9bc2f514023a54232bf0c196799a1a367eea:log:23', 'hash': '0xeafb1973fc62a97c40d35530b05d9bc2f514023a54232bf0c196799a1a367eea', 'from': '0x1ff45741de650a22b888c00ad063a55fac869b41', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 711.92330892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x109364c28c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:42:08.000Z'}}, {'blockNum': '0x792496', 'uniqueId': '0xd834c9d56aa8ce6dde5dbf9e7ecbd0d55e29a30cb244d19c417cb2aec6780a9f:log:26', 'hash': '0xd834c9d56aa8ce6dde5dbf9e7ecbd0d55e29a30cb244d19c417cb2aec6780a9f', 'from': '0x8354cfd898a0fb0fcab26170069929ce9fb19a0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1685.76885433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x273ff722b9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:42:08.000Z'}}, {'blockNum': '0x792496', 'uniqueId': '0x3c9ee56ed75f323bec1ee0a758f89289498ba5b70152b9e04d76de0d232cbf23:log:28', 'hash': '0x3c9ee56ed75f323bec1ee0a758f89289498ba5b70152b9e04d76de0d232cbf23', 'from': '0x3bc2b2bc5125eacdc64a8188b135a2997dd7324b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2558.87700341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b94187175', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:42:08.000Z'}}, {'blockNum': '0x792496', 'uniqueId': '0xc0378dac24d6ba1de0abe7635b5e472daa51f10a6f9e59e6e2927bec21809979:log:31', 'hash': '0xc0378dac24d6ba1de0abe7635b5e472daa51f10a6f9e59e6e2927bec21809979', 'from': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02575450ed00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:42:08.000Z'}}, {'blockNum': '0x792498', 'uniqueId': '0x55896f8b75bfaf39e0df257ae15ac139966dbbe55a39e0da46d3385c101be99a:log:1', 'hash': '0x55896f8b75bfaf39e0df257ae15ac139966dbbe55a39e0da46d3385c101be99a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6b1e236d19d00f83027274a98bf2b6a193c3047f', 'value': 3439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5012098f00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:42:51.000Z'}}, {'blockNum': '0x79249a', 'uniqueId': '0xe32572ea148f76110ab9f6e3a1922c9ceda951d93134edfa8233ef611d05acae:log:20', 'hash': '0xe32572ea148f76110ab9f6e3a1922c9ceda951d93134edfa8233ef611d05acae', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 14777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01580dc89900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:44:19.000Z'}}, {'blockNum': '0x79249b', 'uniqueId': '0xef640a1f685074dff7b3169ab5bed015d7e168653b66c8dde33a3ae368fedbd8:log:8', 'hash': '0xef640a1f685074dff7b3169ab5bed015d7e168653b66c8dde33a3ae368fedbd8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 8108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbcc7722c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:44:27.000Z'}}, {'blockNum': '0x79249b', 'uniqueId': '0x78121008c3829463bacfe49d50254eed3cafa3adfc3c56fc417e102657ad26c8:log:15', 'hash': '0x78121008c3829463bacfe49d50254eed3cafa3adfc3c56fc417e102657ad26c8', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 26491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0268caaa1b00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:44:27.000Z'}}, {'blockNum': '0x79249d', 'uniqueId': '0xac97bada2bcd1203ad43e135500c3dcbd559aee57d7935d093ccd4b69c426fca:log:106', 'hash': '0xac97bada2bcd1203ad43e135500c3dcbd559aee57d7935d093ccd4b69c426fca', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xf8c4a9afbe0200b7607e9fecb5a5ff398aa26014', 'value': 11888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0114ca007000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:45:29.000Z'}}, {'blockNum': '0x7924b0', 'uniqueId': '0x834c7771f8d377d8588ee400e76e955908d7d3f60b75403fce412a3f741c0c3b:log:22', 'hash': '0x834c7771f8d377d8588ee400e76e955908d7d3f60b75403fce412a3f741c0c3b', 'from': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 101043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x093097365300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:50:11.000Z'}}, {'blockNum': '0x7924b3', 'uniqueId': '0x25ae576d211664dacd4063974a6c5d73d8a23010b5cebcb58fcd9ded62d3e194:log:9', 'hash': '0x25ae576d211664dacd4063974a6c5d73d8a23010b5cebcb58fcd9ded62d3e194', 'from': '0x120b3d8bc249a2c82d890c228b7cfd5acfc423da', 'to': '0xaa3ac14fe41521e085047f4e3fc5daf618fd5acb', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:50:31.000Z'}}, {'blockNum': '0x7924b4', 'uniqueId': '0xed22b339da7836a21aed34002845dc167211322ac765fd966ec667b03181dc7a:log:25', 'hash': '0xed22b339da7836a21aed34002845dc167211322ac765fd966ec667b03181dc7a', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 89899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x082d1fcbcb00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:50:53.000Z'}}, {'blockNum': '0x7924b6', 'uniqueId': '0xe46b607913fe2567051d00cc7d22e8d524e175531410c5619a8bf1888d9481f8:log:52', 'hash': '0xe46b607913fe2567051d00cc7d22e8d524e175531410c5619a8bf1888d9481f8', 'from': '0x405e94a57d6801e3e583d30776ffc047b0aad6a6', 'to': '0x15c4e2626e52538815787d17d61eec66d4784807', 'value': 22.05092577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x836f0ae1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:51:18.000Z'}}, {'blockNum': '0x7924bb', 'uniqueId': '0xace3490cf43ff588cc71c26d007560d3cd00a9aebc4d2445fa35506f19e62047:log:5', 'hash': '0xace3490cf43ff588cc71c26d007560d3cd00a9aebc4d2445fa35506f19e62047', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbcc7722c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:51:59.000Z'}}, {'blockNum': '0x7924bb', 'uniqueId': '0xb9a403e041592696027b0bb84b7c3e3b8f86bc21eb42a86a1b28ddac7b839701:log:6', 'hash': '0xb9a403e041592696027b0bb84b7c3e3b8f86bc21eb42a86a1b28ddac7b839701', 'from': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01580dc89900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:51:59.000Z'}}, {'blockNum': '0x7924be', 'uniqueId': '0x7cc851f07fe28bcc4aabf6a0929f8eec658de388491cb8387a4672238a7ca950:log:35', 'hash': '0x7cc851f07fe28bcc4aabf6a0929f8eec658de388491cb8387a4672238a7ca950', 'from': '0x6e8a4fb3d086a12f8ca9a5a194a5017907def452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 233.21438888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x056e10eaa8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:52:59.000Z'}}, {'blockNum': '0x7924c0', 'uniqueId': '0xd4af45f95807a5ec3854ad1c6616630ed8512aa3f79299aaa1497802ec7828b4:log:26', 'hash': '0xd4af45f95807a5ec3854ad1c6616630ed8512aa3f79299aaa1497802ec7828b4', 'from': '0x0289ef6aaefb5e7456788c7da65c056f0b4856f7', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 19900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01cf553e3c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:53:17.000Z'}}, {'blockNum': '0x7924c4', 'uniqueId': '0x323801891d7d1924a263a8a54465442fcba592a03c585b7caac19e580249798c:log:2', 'hash': '0x323801891d7d1924a263a8a54465442fcba592a03c585b7caac19e580249798c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x947053c4e584de3e905499d756ee51a21d584b3a', 'value': 1495.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22d1dfe780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:55:07.000Z'}}, {'blockNum': '0x7924ca', 'uniqueId': '0x9409ec71bb60a3407682e400d4953e8ed731d62de702ad6947f82e9ebf832e2e:log:3', 'hash': '0x9409ec71bb60a3407682e400d4953e8ed731d62de702ad6947f82e9ebf832e2e', 'from': '0x15c4e2626e52538815787d17d61eec66d4784807', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 22.05092577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x836f0ae1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:55:55.000Z'}}, {'blockNum': '0x7924ca', 'uniqueId': '0x6837192fc3b0aa9e996065b0bc6c62cfe2b8a9ab303162c3e3acb222560179be:log:13', 'hash': '0x6837192fc3b0aa9e996065b0bc6c62cfe2b8a9ab303162c3e3acb222560179be', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc27efb72186b94f5d67c0bb9dbffc014ff42b17a', 'value': 1693.999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2771055760', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:55:55.000Z'}}, {'blockNum': '0x7924d4', 'uniqueId': '0x757f7db9c68da5fe4fbb703a129ba2d0b3b0a06bb4a7b1e03a6c7a9a11e66bc0:log:4', 'hash': '0x757f7db9c68da5fe4fbb703a129ba2d0b3b0a06bb4a7b1e03a6c7a9a11e66bc0', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 11470, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010b0e870e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:57:30.000Z'}}, {'blockNum': '0x7924d5', 'uniqueId': '0x510de978f4679c10510ecd215fdb769c330d11108072a1f10fda9dd1c04948bf:log:22', 'hash': '0x510de978f4679c10510ecd215fdb769c330d11108072a1f10fda9dd1c04948bf', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 22122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x020311652a00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:57:51.000Z'}}, {'blockNum': '0x7924ec', 'uniqueId': '0xaf64a72b10c9898561691a971a747d4070e24cc9abe744c49d2102cd67ccdfc8:log:8', 'hash': '0xaf64a72b10c9898561691a971a747d4070e24cc9abe744c49d2102cd67ccdfc8', 'from': '0xaa3ac14fe41521e085047f4e3fc5daf618fd5acb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:02:12.000Z'}}, {'blockNum': '0x7924ec', 'uniqueId': '0xc3882be09b64736bb321317dc3211c1d215b1e37184339d24395d60f09e0f2c1:log:9', 'hash': '0xc3882be09b64736bb321317dc3211c1d215b1e37184339d24395d60f09e0f2c1', 'from': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11470, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010b0e870e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:02:12.000Z'}}, {'blockNum': '0x7924ec', 'uniqueId': '0x2b26691d660b00246c45b18e4c39e89221e81afda22c28275c14043877f61c44:log:10', 'hash': '0x2b26691d660b00246c45b18e4c39e89221e81afda22c28275c14043877f61c44', 'from': '0x947053c4e584de3e905499d756ee51a21d584b3a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1495.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22d1dfe780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:02:12.000Z'}}, {'blockNum': '0x7924fd', 'uniqueId': '0x533de909a83e5398812db20e4c42e986d7249ee33326490601f3e5aa37aa18e7:log:11', 'hash': '0x533de909a83e5398812db20e4c42e986d7249ee33326490601f3e5aa37aa18e7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6865c2e81b63f347eecb67f798755f91b163e1a0', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:05:03.000Z'}}, {'blockNum': '0x792506', 'uniqueId': '0x0b8d93fc09af3097300e563fa6df74f6656e2727e9b43bfc5b153123f03ae063:log:1', 'hash': '0x0b8d93fc09af3097300e563fa6df74f6656e2727e9b43bfc5b153123f03ae063', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x47ef98884dc6f1e3035632d373f2b30132c242c1', 'value': 971.19191127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x169cc14057', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:07:10.000Z'}}, {'blockNum': '0x792506', 'uniqueId': '0x12cae425d1da187df040b5078b67b588fd891cf51760185e043109392f8390e9:log:2', 'hash': '0x12cae425d1da187df040b5078b67b588fd891cf51760185e043109392f8390e9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6ea2b34d475af9b9928ea31ef557b937df71a624', 'value': 45.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010f337d80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:07:10.000Z'}}, {'blockNum': '0x792517', 'uniqueId': '0xb9e0a9d810d6488a08fe42191c073ddefdcdeb4023e12ac3293a4a4c7a4d04a8:log:1', 'hash': '0xb9e0a9d810d6488a08fe42191c073ddefdcdeb4023e12ac3293a4a4c7a4d04a8', 'from': '0xc27efb72186b94f5d67c0bb9dbffc014ff42b17a', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 1693.999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2771055760', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:11:40.000Z'}}, {'blockNum': '0x792526', 'uniqueId': '0x14636df9fb3c4e19706be4ec13d52535b07c955b83ff5252e554420b3cbfedf2:log:17', 'hash': '0x14636df9fb3c4e19706be4ec13d52535b07c955b83ff5252e554420b3cbfedf2', 'from': '0xf6fb864f185f14e8d7da00c0e4a55a09e4152ff6', 'to': '0xdd9b9a7b7814b718282967dde9489e68894bdf84', 'value': 4.21452757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x191edbd5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:15:16.000Z'}}, {'blockNum': '0x79253b', 'uniqueId': '0x431ddb2640eb41351e02249f738368dd7b4b0383aed87e9a456522b9cc17541e:log:60', 'hash': '0x431ddb2640eb41351e02249f738368dd7b4b0383aed87e9a456522b9cc17541e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 3212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4ac9030c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:18:35.000Z'}}, {'blockNum': '0x792548', 'uniqueId': '0x5dfd52cb58a9bd144bd9bc1d6b40b78a7cefa0db35794ba7b0e2cef6d174b064:log:0', 'hash': '0x5dfd52cb58a9bd144bd9bc1d6b40b78a7cefa0db35794ba7b0e2cef6d174b064', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x69fa16edd5971385e804837e421d92fb754279b9', 'value': 1995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e761b5b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:21:19.000Z'}}, {'blockNum': '0x792552', 'uniqueId': '0x10395e69ccf3a50f940f9e0d2bc52f0d531fa95b10195f8de4019acc128d71c7:log:39', 'hash': '0x10395e69ccf3a50f940f9e0d2bc52f0d531fa95b10195f8de4019acc128d71c7', 'from': '0x87b34963ee6305e6b1ab362b81694f26141a366e', 'to': '0x4fd4a868acce61eab50c6aa26073854cc66410c9', 'value': 226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x054310a200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:22:48.000Z'}}, {'blockNum': '0x79257e', 'uniqueId': '0x07bbee0b332918ef757c86510636c64ccc2d4ceab9801f962567abbf4258cfbd:log:14', 'hash': '0x07bbee0b332918ef757c86510636c64ccc2d4ceab9801f962567abbf4258cfbd', 'from': '0x4fd4a868acce61eab50c6aa26073854cc66410c9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x054310a200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:31:51.000Z'}}, {'blockNum': '0x79257e', 'uniqueId': '0x58b6946c56e24268bdac132b829df815e26c3794cf1a2918dfe24ae731d771d4:log:42', 'hash': '0x58b6946c56e24268bdac132b829df815e26c3794cf1a2918dfe24ae731d771d4', 'from': '0x26414eeec7a87301f561adcf42ee4ce1a46d6f78', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:31:51.000Z'}}, {'blockNum': '0x792593', 'uniqueId': '0xd4672b5466f8e079a98e07da98b598f3e5eddb0679d1b72b7a187279a6782b02:log:4', 'hash': '0xd4672b5466f8e079a98e07da98b598f3e5eddb0679d1b72b7a187279a6782b02', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'value': 21910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01fe21c6d600', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:36:58.000Z'}}, {'blockNum': '0x792596', 'uniqueId': '0x4c1dd15f275f3bc220bca0557b11a8b253d2f852e13921e6523d222799db26a2:log:0', 'hash': '0x4c1dd15f275f3bc220bca0557b11a8b253d2f852e13921e6523d222799db26a2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe6b8d58fa759d4ebe00f696487f83989d20b8568', 'value': 232.61609775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x056a7fff2f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:37:14.000Z'}}, {'blockNum': '0x792598', 'uniqueId': '0x3952046115b5f350eb7d57aacce27cc067f524bfdbf96e23dbf2065ee0d1c7ff:log:9', 'hash': '0x3952046115b5f350eb7d57aacce27cc067f524bfdbf96e23dbf2065ee0d1c7ff', 'from': '0x3cf365742b9d78f452b8846e6765aa16ce33afbf', 'to': '0x4e841b51970345f16625a0a7f1d10827c1d6489a', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9502f900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:37:42.000Z'}}, {'blockNum': '0x7925a9', 'uniqueId': '0xcb0947a9b07e000ff485bea1847ffa25ee3d3df0ea70280df896e47e80b8e4ef:log:75', 'hash': '0xcb0947a9b07e000ff485bea1847ffa25ee3d3df0ea70280df896e47e80b8e4ef', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 25700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02565fefe400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:41:07.000Z'}}, {'blockNum': '0x7925aa', 'uniqueId': '0xd47e460f07be1c61d256e4c0b9594c3825bac6288ba3551e5a0623f2982d0cbb:log:0', 'hash': '0xd47e460f07be1c61d256e4c0b9594c3825bac6288ba3551e5a0623f2982d0cbb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc9922df08c72cef31e76e79b15ad3792fa89cda5', 'value': 1138.85207254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1a84165ad6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:41:32.000Z'}}, {'blockNum': '0x7925ad', 'uniqueId': '0x85747a7cd5faa4ca809af6db702c5a3ae44e701892df225f6fcd4948de5b5d18:log:25', 'hash': '0x85747a7cd5faa4ca809af6db702c5a3ae44e701892df225f6fcd4948de5b5d18', 'from': '0xe6b8d58fa759d4ebe00f696487f83989d20b8568', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 232.61609775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x056a7fff2f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:41:58.000Z'}}, {'blockNum': '0x7925ad', 'uniqueId': '0xd030970ddecb15e9573b026a6f29863188a382171411ffbf4d05474ac1a4d1dd:log:52', 'hash': '0xd030970ddecb15e9573b026a6f29863188a382171411ffbf4d05474ac1a4d1dd', 'from': '0xddc35d71a11b48f2bd318761a94196c12f4e1e72', 'to': '0xc63093088849d219ee70594e77ea5992f5734972', 'value': 2038.46097528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f762c9a78', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:41:58.000Z'}}, {'blockNum': '0x7925b3', 'uniqueId': '0x59a1c20309b8ec7f92f50ccbd10719d0efde35fe25e6812133e07d3706d63526:log:7', 'hash': '0x59a1c20309b8ec7f92f50ccbd10719d0efde35fe25e6812133e07d3706d63526', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x28648c4505d87493647113919c7327e90dd2ae61', 'value': 449.14475052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a751c802c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:45:38.000Z'}}, {'blockNum': '0x7925b3', 'uniqueId': '0x40d2a07ee2dba85a9be8d00c0377f73183786148c45f6aac696d4f6fb5e2187f:log:8', 'hash': '0x40d2a07ee2dba85a9be8d00c0377f73183786148c45f6aac696d4f6fb5e2187f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0c5b074b485aa52d13fdf4ada943abbb6fc3a32c', 'value': 1996.34672209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e7b275a51', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:45:38.000Z'}}, {'blockNum': '0x7925b3', 'uniqueId': '0x947ab8ef1c6ee73e0ad7ad410b11c57a969128d9ab2b6d7ede7824395fff2638:log:125', 'hash': '0x947ab8ef1c6ee73e0ad7ad410b11c57a969128d9ab2b6d7ede7824395fff2638', 'from': '0xc63093088849d219ee70594e77ea5992f5734972', 'to': '0x110327c7174f93252c92ed43edea694afd29433d', 'value': 2038.46097528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f762c9a78', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:45:38.000Z'}}, {'blockNum': '0x7925b5', 'uniqueId': '0x4a4a8dab9b52c1bcfb84c2c38267ed2fe1b4e7fb6163015d0ae7ebd7868c81b4:log:15', 'hash': '0x4a4a8dab9b52c1bcfb84c2c38267ed2fe1b4e7fb6163015d0ae7ebd7868c81b4', 'from': '0x8276419fda13420e7960fe6d2f140a94eb61c48c', 'to': '0x2aa1577b0991b45d9d4e48e95c5f2a5f28ea5978', 'value': 396.096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0938ea8800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:46:02.000Z'}}, {'blockNum': '0x7925c1', 'uniqueId': '0x0dbfa474afd80d3989958d7b292d585b1fa04d29fda48cb5b88a99def294ad6f:log:1', 'hash': '0x0dbfa474afd80d3989958d7b292d585b1fa04d29fda48cb5b88a99def294ad6f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf52b1f74246d5aa2e28826abd0e0dc19223a8839', 'value': 8085.27510842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbc3ffebd3a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:48:57.000Z'}}, {'blockNum': '0x7925c1', 'uniqueId': '0x6ad9f4b0a8426f769d71f164fca954a2becb836689de677edf9feb533f0f480c:log:2', 'hash': '0x6ad9f4b0a8426f769d71f164fca954a2becb836689de677edf9feb533f0f480c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 10542.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf576325e80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:48:57.000Z'}}, {'blockNum': '0x7925c7', 'uniqueId': '0x7034d1552e3796d35099aff2612a13c199a57769cb6e8530f911968857a3f924:log:2', 'hash': '0x7034d1552e3796d35099aff2612a13c199a57769cb6e8530f911968857a3f924', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x474d92b829e8d3e6fa857a2131c13f97f5c12308', 'value': 20.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7a308480', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:51:23.000Z'}}, {'blockNum': '0x7925c7', 'uniqueId': '0x2fa4afe4c31a7abd793a2d92c5a570609c1ae105608b549adc3cccaa9bd5b7a5:log:50', 'hash': '0x2fa4afe4c31a7abd793a2d92c5a570609c1ae105608b549adc3cccaa9bd5b7a5', 'from': '0xddf4cbea808ec6adc9eeb284b73ee1e01948407e', 'to': '0x8e810160981084d19d85043ec2b1db1c63a2cf79', 'value': 2018.65600004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f00209c04', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:51:23.000Z'}}, {'blockNum': '0x7925ca', 'uniqueId': '0xfeb19fefcbcba912609dd2cf4d924865cae35ddb6e3346d465790c7800003dd2:log:10', 'hash': '0xfeb19fefcbcba912609dd2cf4d924865cae35ddb6e3346d465790c7800003dd2', 'from': '0x0c5b074b485aa52d13fdf4ada943abbb6fc3a32c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1996.34672209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e7b275a51', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:52:17.000Z'}}, {'blockNum': '0x7925ca', 'uniqueId': '0xb39cec9ceaaaa1eb9c2caf19930664114f6d9225bc1b5e546dcf79ae8958891e:log:11', 'hash': '0xb39cec9ceaaaa1eb9c2caf19930664114f6d9225bc1b5e546dcf79ae8958891e', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02565fefe400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:52:17.000Z'}}, {'blockNum': '0x7925ca', 'uniqueId': '0x049292c8ccbb6766ac79f6ab0848e217c38544c4e86d34c8dc52761eb3788f64:log:12', 'hash': '0x049292c8ccbb6766ac79f6ab0848e217c38544c4e86d34c8dc52761eb3788f64', 'from': '0xc9922df08c72cef31e76e79b15ad3792fa89cda5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1138.85207254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1a84165ad6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:52:17.000Z'}}, {'blockNum': '0x7925cf', 'uniqueId': '0xdf118f414c9fde0e65feb1a6c638e21d8dd931f8e3b43af4e4a11c6e568c1425:log:10', 'hash': '0xdf118f414c9fde0e65feb1a6c638e21d8dd931f8e3b43af4e4a11c6e568c1425', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 20891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01e668103b00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:52:54.000Z'}}, {'blockNum': '0x7925d4', 'uniqueId': '0x0bac2532d2db3e89e03a783fc484f1384efd85097fe664ff4f040a62b5dcb59a:log:1', 'hash': '0x0bac2532d2db3e89e03a783fc484f1384efd85097fe664ff4f040a62b5dcb59a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 14427.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014fe9968540', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:53:43.000Z'}}, {'blockNum': '0x7925d4', 'uniqueId': '0xe4a249edd0ec4daddbcb11cd0d51c9321175ec0f78b7594c57f84745b98aba56:log:2', 'hash': '0xe4a249edd0ec4daddbcb11cd0d51c9321175ec0f78b7594c57f84745b98aba56', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e932cc85b90bc57952b5de01fdb9c0a0698ca44', 'value': 1745.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x28a3fda180', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:53:43.000Z'}}, {'blockNum': '0x7925d4', 'uniqueId': '0xf67f6cd2d498f350a800f908ecfc351355c09d6d3ebe7566c3fefd936bd3bdfd:log:3', 'hash': '0xf67f6cd2d498f350a800f908ecfc351355c09d6d3ebe7566c3fefd936bd3bdfd', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf52b1f74246d5aa2e28826abd0e0dc19223a8839', 'value': 8150.97875021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbdc79e8a4d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:53:43.000Z'}}, {'blockNum': '0x7925d8', 'uniqueId': '0x3b1b659138f652ee8d7a2e94c9b6a89ed51db0c0ecfd636783dc3e4dc9cd66d6:log:17', 'hash': '0x3b1b659138f652ee8d7a2e94c9b6a89ed51db0c0ecfd636783dc3e4dc9cd66d6', 'from': '0x3cf365742b9d78f452b8846e6765aa16ce33afbf', 'to': '0x4e841b51970345f16625a0a7f1d10827c1d6489a', 'value': 500.26501217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ba5cfd461', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:54:16.000Z'}}, {'blockNum': '0x7925dc', 'uniqueId': '0xd8eca2fb1934186aab99bd9e725e6412eef1b74dae47e71ce60fb8c1cbe9a6c4:log:4', 'hash': '0xd8eca2fb1934186aab99bd9e725e6412eef1b74dae47e71ce60fb8c1cbe9a6c4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf8c4a9afbe0200b7607e9fecb5a5ff398aa26014', 'value': 12090.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x011980feea80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:55:45.000Z'}}, {'blockNum': '0x7925dc', 'uniqueId': '0x3ed7801330a72574069b1b244f23cb2d01a13d627572ad92e0fa467005e12a38:log:5', 'hash': '0x3ed7801330a72574069b1b244f23cb2d01a13d627572ad92e0fa467005e12a38', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xad678b8fb59f8705d151c4bf123ef9003b9fe5ed', 'value': 521.40244015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c23ccfc2f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:55:45.000Z'}}, {'blockNum': '0x7925dc', 'uniqueId': '0xc1c7095dbe213ea1a3d6548483769a192aa0d9df87deee82b2e80eb7e82edfd5:log:6', 'hash': '0xc1c7095dbe213ea1a3d6548483769a192aa0d9df87deee82b2e80eb7e82edfd5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf52b1f74246d5aa2e28826abd0e0dc19223a8839', 'value': 8037.6115424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbb23e5e8c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:55:45.000Z'}}, {'blockNum': '0x7925dc', 'uniqueId': '0x2fd8683f8534b028aba8d40d2af291ff01f4fafdc44f2a0955c64244a399f1e8:log:7', 'hash': '0x2fd8683f8534b028aba8d40d2af291ff01f4fafdc44f2a0955c64244a399f1e8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe4b9827b8cd1244dec8745b1851d110f3826024c', 'value': 195.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x048d455380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:55:45.000Z'}}, {'blockNum': '0x7925dc', 'uniqueId': '0x763e311422c66ea9420c85945b69991418123b468f6fe8a39f9aac8b6b8aedc1:log:11', 'hash': '0x763e311422c66ea9420c85945b69991418123b468f6fe8a39f9aac8b6b8aedc1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 26616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x026bb3b8f800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:55:45.000Z'}}, {'blockNum': '0x7925e0', 'uniqueId': '0xecafc8b44586cbe18e9b6e958ee043161308f3609197b805264ac70f46dfd152:log:2', 'hash': '0xecafc8b44586cbe18e9b6e958ee043161308f3609197b805264ac70f46dfd152', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 2060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2ff68e8c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:56:46.000Z'}}, {'blockNum': '0x7925e1', 'uniqueId': '0x1b72cda99d74ea1d4cfd27be0d699d9529b011e45a01655cc281f80113d6e8a1:log:7', 'hash': '0x1b72cda99d74ea1d4cfd27be0d699d9529b011e45a01655cc281f80113d6e8a1', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xb3f4c49b553afb9dde8c0b5f0715539229469ff6', 'value': 58179.76871938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x054a9a71dc02', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:56:53.000Z'}}, {'blockNum': '0x7925e9', 'uniqueId': '0x24f49365d78b83fc132d2bc5163924a3d23570737b7380970cd0ccb59382c9fa:log:1', 'hash': '0x24f49365d78b83fc132d2bc5163924a3d23570737b7380970cd0ccb59382c9fa', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 10783.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xfb12ab2f80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:59:38.000Z'}}, {'blockNum': '0x7925ef', 'uniqueId': '0xe8435accefdf679fd8cfb1ad2785dd92d96677f4155b3fc2de2fe8a9e44c093e:log:8', 'hash': '0xe8435accefdf679fd8cfb1ad2785dd92d96677f4155b3fc2de2fe8a9e44c093e', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 16923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x018a04f0bb00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:00:24.000Z'}}, {'blockNum': '0x7925f1', 'uniqueId': '0x85cf1b6acae620f30ea0c810ee4cec518fd90a4d3aa6e4f25cd181321f64e0b2:log:1', 'hash': '0x85cf1b6acae620f30ea0c810ee4cec518fd90a4d3aa6e4f25cd181321f64e0b2', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 19735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01cb7dc43700', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:01:08.000Z'}}, {'blockNum': '0x7925f1', 'uniqueId': '0x206fc063f16f45cc5ccbf600c99b7c762e20962e69f2e8fde4c64a698a11c8bb:log:2', 'hash': '0x206fc063f16f45cc5ccbf600c99b7c762e20962e69f2e8fde4c64a698a11c8bb', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xd0dd253cdff96772fb3a23978616b1d0bb548bc2', 'value': 10499.1750572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf473f5c0b8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:01:08.000Z'}}, {'blockNum': '0x7925f1', 'uniqueId': '0xb7edfcd975f8c282ab9cfd3931d6e12da34d47d5c70b7ac1dd8523d6cbcc754c:log:3', 'hash': '0xb7edfcd975f8c282ab9cfd3931d6e12da34d47d5c70b7ac1dd8523d6cbcc754c', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9a32c5f1d20d5059111315de16a5884b12bd81dd', 'value': 7058.80772956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa459c5d15c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:01:08.000Z'}}, {'blockNum': '0x7925f1', 'uniqueId': '0x9980f80d9aadc24a3f7ac602211dabcf94cc780718062bf67708db226b96cf80:log:4', 'hash': '0x9980f80d9aadc24a3f7ac602211dabcf94cc780718062bf67708db226b96cf80', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 17900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01a0c4506c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:01:08.000Z'}}, {'blockNum': '0x7925f1', 'uniqueId': '0x710e041bf80fc1f4a7e33bcabe9c61a02fc0988148e0320d986d08936e59b484:log:5', 'hash': '0x710e041bf80fc1f4a7e33bcabe9c61a02fc0988148e0320d986d08936e59b484', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe0492a9d434710a0336213e49f7cbf792d7e4937', 'value': 1342.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f41ec6e80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:01:08.000Z'}}, {'blockNum': '0x7925f1', 'uniqueId': '0x6f76a034f72784dfed99a92de1e9010887ba41f6d08e08d73ace406dd3b2c6b8:log:29', 'hash': '0x6f76a034f72784dfed99a92de1e9010887ba41f6d08e08d73ace406dd3b2c6b8', 'from': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 69504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0652441f8000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:01:08.000Z'}}, {'blockNum': '0x7925f2', 'uniqueId': '0x2615fe45d456db84240a241b2b0e6c04067034e7f4f43f1a2bcb29df70a94d19:log:0', 'hash': '0x2615fe45d456db84240a241b2b0e6c04067034e7f4f43f1a2bcb29df70a94d19', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x85c13fd61ee65fb0e1b4dce2586033d80380fc3e', 'value': 13533.55100592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x013b1a4001b0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:01:44.000Z'}}, {'blockNum': '0x7925f4', 'uniqueId': '0x9f782f2275272dac13b164a01bd654716bb45e601b84ea69c3ede02eeb060289:log:0', 'hash': '0x9f782f2275272dac13b164a01bd654716bb45e601b84ea69c3ede02eeb060289', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x85c13fd61ee65fb0e1b4dce2586033d80380fc3e', 'value': 11107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01029ae10300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:02:02.000Z'}}, {'blockNum': '0x7925f4', 'uniqueId': '0xf8678475f866c8066f7f8b1790c7ababe92322bce0e1110b29e5a7f567d21be3:log:1', 'hash': '0xf8678475f866c8066f7f8b1790c7ababe92322bce0e1110b29e5a7f567d21be3', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xd4c7c7664fa0ed4557071a67ff1de9dfe391c72d', 'value': 3996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5d0a041c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:02:02.000Z'}}, {'blockNum': '0x7925f4', 'uniqueId': '0x5d010d4fbf36170d38e69fcd7c5defa896941330447d81ac0e3c51888f3917f1:log:25', 'hash': '0x5d010d4fbf36170d38e69fcd7c5defa896941330447d81ac0e3c51888f3917f1', 'from': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14427.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014fe9968540', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:02:02.000Z'}}, {'blockNum': '0x7925f4', 'uniqueId': '0x981e40046f4122427622a68575b853cdeef7d07c26fc8d8309311a62935811f2:log:26', 'hash': '0x981e40046f4122427622a68575b853cdeef7d07c26fc8d8309311a62935811f2', 'from': '0x4e841b51970345f16625a0a7f1d10827c1d6489a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 525.26501217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c3ad2cd61', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:02:02.000Z'}}, {'blockNum': '0x7925f4', 'uniqueId': '0xe631792caf80a7a668f77e01c5961b42a9e0e598da0223a0b6103cf75429ccde:log:27', 'hash': '0xe631792caf80a7a668f77e01c5961b42a9e0e598da0223a0b6103cf75429ccde', 'from': '0xb3f4c49b553afb9dde8c0b5f0715539229469ff6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 58179.76871938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x054a9a71dc02', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:02:02.000Z'}}, {'blockNum': '0x7925f4', 'uniqueId': '0x4653d5d9c9371f0ef691942b2fe370fa40c42cdb1510e5b7ad6c06e00012a11f:log:28', 'hash': '0x4653d5d9c9371f0ef691942b2fe370fa40c42cdb1510e5b7ad6c06e00012a11f', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10542.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf576325e80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:02:02.000Z'}}, {'blockNum': '0x7925f6', 'uniqueId': '0xb21b00f5e6c73021bea08c7d9cc44d2d2e450f1f3945f57b974f5664587589b6:log:1', 'hash': '0xb21b00f5e6c73021bea08c7d9cc44d2d2e450f1f3945f57b974f5664587589b6', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x20488767f52656fda9ce7670d54f8a0544d6c89f', 'value': 11549.11391084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010ce6154d6c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:02:17.000Z'}}, {'blockNum': '0x7925f6', 'uniqueId': '0xacbac6ebacfa3153410dffd0672ac0e100d5e822323df7a44ec58dd06c4e0649:log:2', 'hash': '0xacbac6ebacfa3153410dffd0672ac0e100d5e822323df7a44ec58dd06c4e0649', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xef7f7d76cb8e2a989bedb27032255ef8f501c66e', 'value': 7402.45869104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xac5a179230', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:02:17.000Z'}}, {'blockNum': '0x7925f6', 'uniqueId': '0xdb3ebe98928f93e483748ee53ec7ed6d8b49b17a51eadbdadd704d2aea6613b4:log:3', 'hash': '0xdb3ebe98928f93e483748ee53ec7ed6d8b49b17a51eadbdadd704d2aea6613b4', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x870aad96120bcd5f049c8bcd65a641b665ed92b1', 'value': 5315.24756879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7bc158258f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:02:17.000Z'}}, {'blockNum': '0x7925f6', 'uniqueId': '0xb5a12d9c59d75b31186883937e5dd79e03b81b18d3bf0fa92a35828f52607416:log:4', 'hash': '0xb5a12d9c59d75b31186883937e5dd79e03b81b18d3bf0fa92a35828f52607416', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xac15f170f1954695c819fe40c92d1fd5289bf216', 'value': 27685.80493273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02849c41bfd9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:02:17.000Z'}}, {'blockNum': '0x7925f6', 'uniqueId': '0x069c47610ed2834e00deb7f8ad04b7d2ff4e3917aa84bf11e1a3a4f13ca36094:log:5', 'hash': '0x069c47610ed2834e00deb7f8ad04b7d2ff4e3917aa84bf11e1a3a4f13ca36094', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 29000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02a335784800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:02:17.000Z'}}, {'blockNum': '0x7925fb', 'uniqueId': '0xc7979f1b37ae08f0a20803aa656bf2e8dd4e4585b7a11f771297f85dc67cf526:log:8', 'hash': '0xc7979f1b37ae08f0a20803aa656bf2e8dd4e4585b7a11f771297f85dc67cf526', 'from': '0xaf7866fd5cf0ff3bc3ef316090de12718c9a083d', 'to': '0x8f3ae04aae0e17bfbe5d531b2322c715d59146c3', 'value': 46.708619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x011667b24c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:03:01.000Z'}}, {'blockNum': '0x79260a', 'uniqueId': '0x1994397323af8c0ef74c5cd6ede32d9b08b9a9f82bea9dc128d29f5131b92b2a:log:27', 'hash': '0x1994397323af8c0ef74c5cd6ede32d9b08b9a9f82bea9dc128d29f5131b92b2a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 7239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa88bcd6700', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:04:31.000Z'}}, {'blockNum': '0x79260e', 'uniqueId': '0xfb0cea6c53a2e6ed3aca9c6d5d82946fa222e30b2b3f37bd586ac57948409f65:log:1', 'hash': '0xfb0cea6c53a2e6ed3aca9c6d5d82946fa222e30b2b3f37bd586ac57948409f65', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 12098.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0119b399a0c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:05:16.000Z'}}, {'blockNum': '0x79260e', 'uniqueId': '0xdd00840431c0f84072a202234988be3306247a8d4f6fa8f1c00fcc9359882f1e:log:6', 'hash': '0xdd00840431c0f84072a202234988be3306247a8d4f6fa8f1c00fcc9359882f1e', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'value': 29270, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02a97ecb9600', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:05:16.000Z'}}, {'blockNum': '0x79260e', 'uniqueId': '0x0ba4b6f2985b168984b6432c64d08763f4b34bf23e62161b78fabd9ec4863da2:log:100', 'hash': '0x0ba4b6f2985b168984b6432c64d08763f4b34bf23e62161b78fabd9ec4863da2', 'from': '0xedd01c66758232674db49c9fd461dd61635b5219', 'to': '0x062438b34c54858d8df67adea9b5cac6ed3b4471', 'value': 168.14011394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03ea317402', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:05:16.000Z'}}, {'blockNum': '0x792612', 'uniqueId': '0xfbf1981d8e67b2f7f3347b481d5fa4de37cfd09294a445d71e0676d529b0d830:log:63', 'hash': '0xfbf1981d8e67b2f7f3347b481d5fa4de37cfd09294a445d71e0676d529b0d830', 'from': '0x062438b34c54858d8df67adea9b5cac6ed3b4471', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 168.14011394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03ea317402', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:06:17.000Z'}}, {'blockNum': '0x79261b', 'uniqueId': '0xf1adad452d496c8db41d2a12e0b36cb0175fb63364c335c7c000f2f1bdf7daf4:log:8', 'hash': '0xf1adad452d496c8db41d2a12e0b36cb0175fb63364c335c7c000f2f1bdf7daf4', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'value': 2806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4155103600', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:08:56.000Z'}}, {'blockNum': '0x792621', 'uniqueId': '0x6c579cae870dbdf88a29000993d29068efc6bd85575830da63b44aec37ae37ad:log:5', 'hash': '0x6c579cae870dbdf88a29000993d29068efc6bd85575830da63b44aec37ae37ad', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 50483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04976620d300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:10:52.000Z'}}, {'blockNum': '0x792624', 'uniqueId': '0xec513746062d53ce266c8477cfc1eded91e51d2f809cf57b641c4242c5226cd8:log:25', 'hash': '0xec513746062d53ce266c8477cfc1eded91e51d2f809cf57b641c4242c5226cd8', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 168.14011394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03ea317402', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:11:32.000Z'}}, {'blockNum': '0x792624', 'uniqueId': '0xaf8e945b98d13ef6a74367dd05e9c0a4057c24eaaaae7a5655c392f0d657faf7:log:26', 'hash': '0xaf8e945b98d13ef6a74367dd05e9c0a4057c24eaaaae7a5655c392f0d657faf7', 'from': '0x8f3ae04aae0e17bfbe5d531b2322c715d59146c3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 126.708619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02f33e024c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:11:32.000Z'}}, {'blockNum': '0x792624', 'uniqueId': '0x71bf5573b50b4f582512c0a8b416e663e9fa2d1f0e7e2f55df0779d529fa4b9a:log:27', 'hash': '0x71bf5573b50b4f582512c0a8b416e663e9fa2d1f0e7e2f55df0779d529fa4b9a', 'from': '0x20488767f52656fda9ce7670d54f8a0544d6c89f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11549.11391084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010ce6154d6c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:11:32.000Z'}}, {'blockNum': '0x792624', 'uniqueId': '0x0b30861970d3cb5b314d29f888cadbed22326804f7492aa9f5670ff39a567f37:log:29', 'hash': '0x0b30861970d3cb5b314d29f888cadbed22326804f7492aa9f5670ff39a567f37', 'from': '0x6e932cc85b90bc57952b5de01fdb9c0a0698ca44', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1745.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x28a3fda180', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:11:32.000Z'}}, {'blockNum': '0x792624', 'uniqueId': '0x30e28eaa8eed533225b10bfd0d2387c05017fb9af835b640539e8e69ff6986f5:log:30', 'hash': '0x30e28eaa8eed533225b10bfd0d2387c05017fb9af835b640539e8e69ff6986f5', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10783.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xfb12ab2f80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:11:32.000Z'}}, {'blockNum': '0x792624', 'uniqueId': '0x6459219690e4a77307ecbab4d5230fd28cbd0b99b1dac951044572992bd69b7a:log:31', 'hash': '0x6459219690e4a77307ecbab4d5230fd28cbd0b99b1dac951044572992bd69b7a', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 74645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06c9f6def500', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:11:32.000Z'}}, {'blockNum': '0x792624', 'uniqueId': '0x16f53978c3387b65a5be610420daadcb9bcb5c2da000fb75952514d58f29674d:log:32', 'hash': '0x16f53978c3387b65a5be610420daadcb9bcb5c2da000fb75952514d58f29674d', 'from': '0x9a32c5f1d20d5059111315de16a5884b12bd81dd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7058.80772956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa459c5d15c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:11:32.000Z'}}, {'blockNum': '0x792624', 'uniqueId': '0x3b84926a52bcb436066461a78fafe6cb868c53765bc97f3d4052859dec90f3fa:log:33', 'hash': '0x3b84926a52bcb436066461a78fafe6cb868c53765bc97f3d4052859dec90f3fa', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x036c4214a300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:11:32.000Z'}}, {'blockNum': '0x792624', 'uniqueId': '0x42723fae169566369ba11289fbd182f0bb94c70dea19266dfddec978cdc0cb4c:log:34', 'hash': '0x42723fae169566369ba11289fbd182f0bb94c70dea19266dfddec978cdc0cb4c', 'from': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12098.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0119b399a0c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:11:32.000Z'}}, {'blockNum': '0x792624', 'uniqueId': '0xb1459991c8f127f6e65dfa64042f64e92d9fe4ec375ec81e90cf00556418d24b:log:45', 'hash': '0xb1459991c8f127f6e65dfa64042f64e92d9fe4ec375ec81e90cf00556418d24b', 'from': '0xa308bcad1ca8e6c4a5e449464647c716929cb804', 'to': '0xc0b98ee3cfcad99d68c1b82c88878f34a4c0314e', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:11:32.000Z'}}, {'blockNum': '0x79262d', 'uniqueId': '0x03bfaee316c6fd0c94549063f7ff44f7703ce1934644eb3af80e737287c128af:log:0', 'hash': '0x03bfaee316c6fd0c94549063f7ff44f7703ce1934644eb3af80e737287c128af', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xfd1c37094ba9ccbebf1c146e869e7d0012fcd36a', 'value': 809.96303945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12dbc18449', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:13:51.000Z'}}, {'blockNum': '0x792638', 'uniqueId': '0x1912ce7726cd5dd4b7a5b03eb69e2b49aec0417cb6861ef6920709811105f075:log:3', 'hash': '0x1912ce7726cd5dd4b7a5b03eb69e2b49aec0417cb6861ef6920709811105f075', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 4493.938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x68a1f53340', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:17:21.000Z'}}, {'blockNum': '0x79263d', 'uniqueId': '0xa7d7fbd0ba4d170d4eb42e1abb414e5f7e926907f59ddd4dbf973a758fd0f00e:log:3', 'hash': '0xa7d7fbd0ba4d170d4eb42e1abb414e5f7e926907f59ddd4dbf973a758fd0f00e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 400.28050625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0951db94c1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:18:31.000Z'}}, {'blockNum': '0x792642', 'uniqueId': '0x25d82910d1ff16f8538ac584fae6b692090942de2b19a3dbca31d7104be2457b:log:58', 'hash': '0x25d82910d1ff16f8538ac584fae6b692090942de2b19a3dbca31d7104be2457b', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x46c32b620eb4866404238c49691bfca14d7cfd05', 'value': 400.28050625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0951db94c1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:19:07.000Z'}}, {'blockNum': '0x792643', 'uniqueId': '0xf33cc16c86a9a1de1d7298363a4e970ddff8055bd9b4e0f851518a86af5e3a2e:log:3', 'hash': '0xf33cc16c86a9a1de1d7298363a4e970ddff8055bd9b4e0f851518a86af5e3a2e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 1699995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9a9d1aca2b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:19:39.000Z'}}, {'blockNum': '0x792649', 'uniqueId': '0x83a688ff06d2f9153158b622eb7fd8601689d5ae5e0d721002a09fde55cabc57:log:6', 'hash': '0x83a688ff06d2f9153158b622eb7fd8601689d5ae5e0d721002a09fde55cabc57', 'from': '0xac15f170f1954695c819fe40c92d1fd5289bf216', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27685.80493273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02849c41bfd9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:22:06.000Z'}}, {'blockNum': '0x792649', 'uniqueId': '0x658998873eeaf904c509b0d3928d7c284662209fd19a1e83a25d0602d3b30c86:log:7', 'hash': '0x658998873eeaf904c509b0d3928d7c284662209fd19a1e83a25d0602d3b30c86', 'from': '0xc0b98ee3cfcad99d68c1b82c88878f34a4c0314e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:22:06.000Z'}}, {'blockNum': '0x792649', 'uniqueId': '0x04494809210b8677e3a83ab9cb014f3f96fb8736c5456ba816cb2ff2a7d594f0:log:8', 'hash': '0x04494809210b8677e3a83ab9cb014f3f96fb8736c5456ba816cb2ff2a7d594f0', 'from': '0x870aad96120bcd5f049c8bcd65a641b665ed92b1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5315.24756879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7bc158258f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:22:06.000Z'}}, {'blockNum': '0x792649', 'uniqueId': '0x445cf5f1a4d1b9db8659f2db7b2668b0bb8493bdaabef17d326d833396b4e445:log:12', 'hash': '0x445cf5f1a4d1b9db8659f2db7b2668b0bb8493bdaabef17d326d833396b4e445', 'from': '0xd4c7c7664fa0ed4557071a67ff1de9dfe391c72d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5d0a041c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:22:06.000Z'}}, {'blockNum': '0x792649', 'uniqueId': '0xffffd329ec8fb4528216dc8429f47d5de7a011f2f71cb3785ddaa292ce9d30f3:log:14', 'hash': '0xffffd329ec8fb4528216dc8429f47d5de7a011f2f71cb3785ddaa292ce9d30f3', 'from': '0xd0dd253cdff96772fb3a23978616b1d0bb548bc2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10499.1750572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf473f5c0b8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:22:06.000Z'}}, {'blockNum': '0x792650', 'uniqueId': '0x20275dad645f4a6a45e4ca372b4862b36d4a394410ea5c1b4de5bf23b81e2424:log:0', 'hash': '0x20275dad645f4a6a45e4ca372b4862b36d4a394410ea5c1b4de5bf23b81e2424', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 27752.48043751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x028629ac7ee7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:23:17.000Z'}}, {'blockNum': '0x792650', 'uniqueId': '0xd231e29e1ba22bdc80f67214abe4f227e1e2f5e5948d99cf9ec678414ee86f5b:log:1', 'hash': '0xd231e29e1ba22bdc80f67214abe4f227e1e2f5e5948d99cf9ec678414ee86f5b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 30548.7856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02c744f38f00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:23:17.000Z'}}, {'blockNum': '0x792650', 'uniqueId': '0x17278dcacaf9b0cd638f5220ca80212bb567bc4dafb28dabe3f85f7357f42cc8:log:2', 'hash': '0x17278dcacaf9b0cd638f5220ca80212bb567bc4dafb28dabe3f85f7357f42cc8', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x161a8c7fd0c09c5312fc9cef2c0d98bef8620495', 'value': 6893.365377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa07fa8d264', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:23:17.000Z'}}, {'blockNum': '0x792650', 'uniqueId': '0x01742d1dc71edc42e32865ca71d41474ab8a01ef8168b03a8e651049bcfabc55:log:3', 'hash': '0x01742d1dc71edc42e32865ca71d41474ab8a01ef8168b03a8e651049bcfabc55', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3ee8297bb15ad9c4652664583d57810912a57002', 'value': 9971.0108173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe827db1482', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:23:17.000Z'}}, {'blockNum': '0x792650', 'uniqueId': '0xc413dd729eb76d1a80f11353501339d6a83aea480e90ee57a90bda496286b305:log:9', 'hash': '0xc413dd729eb76d1a80f11353501339d6a83aea480e90ee57a90bda496286b305', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4e9ce36e442e55ecd9025b9a6e0d88485d628a67', 'value': 565850.88733104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3376be1d0fb0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:23:17.000Z'}}, {'blockNum': '0x792651', 'uniqueId': '0x3415daa223a0139d86ede79facdfba2e2f3451913c5f5c6921bd01afeda1c658:log:0', 'hash': '0x3415daa223a0139d86ede79facdfba2e2f3451913c5f5c6921bd01afeda1c658', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0289ef6aaefb5e7456788c7da65c056f0b4856f7', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:23:39.000Z'}}, {'blockNum': '0x792651', 'uniqueId': '0xfa07dad4fc00b807eb19da9e34256d821262879d043665491036f21df8e2a658:log:1', 'hash': '0xfa07dad4fc00b807eb19da9e34256d821262879d043665491036f21df8e2a658', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 19124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01bd43ec3400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:23:39.000Z'}}, {'blockNum': '0x792660', 'uniqueId': '0x4574c4db601c33f2f5bad6932559974ae7d8951036348a8414a4a468b12cc792:log:13', 'hash': '0x4574c4db601c33f2f5bad6932559974ae7d8951036348a8414a4a468b12cc792', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'value': 23028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x021829937400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:27:19.000Z'}}, {'blockNum': '0x792661', 'uniqueId': '0x8c303b61adddad0da82217014c97015e9fed943f541cf37450a8a365bcd81958:log:9', 'hash': '0x8c303b61adddad0da82217014c97015e9fed943f541cf37450a8a365bcd81958', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6ecb509197215e99aa5f680cebefd1a986acdefb', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:27:23.000Z'}}, {'blockNum': '0x79266b', 'uniqueId': '0x2501c884fd17fb6228f303f1f309137873e79dde2fe0548d1b3d5453fd880942:log:0', 'hash': '0x2501c884fd17fb6228f303f1f309137873e79dde2fe0548d1b3d5453fd880942', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e9586b0818cfbaeda91d409823e2bf872139a55', 'value': 1995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e761b5b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:29:49.000Z'}}, {'blockNum': '0x792673', 'uniqueId': '0xcb31c7e362a38b9127f32291d23bcee2bab11acc29a1387bb39c6405e4510586:log:0', 'hash': '0xcb31c7e362a38b9127f32291d23bcee2bab11acc29a1387bb39c6405e4510586', 'from': '0x3ee8297bb15ad9c4652664583d57810912a57002', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9971.0108173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe827db1482', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:32:02.000Z'}}, {'blockNum': '0x792673', 'uniqueId': '0xab67a05f45861c6ce876c4d0cc3628ac0aaa366609575b1d7fac6896b2ef4b14:log:1', 'hash': '0xab67a05f45861c6ce876c4d0cc3628ac0aaa366609575b1d7fac6896b2ef4b14', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30548.7856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02c744f38f00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:32:02.000Z'}}, {'blockNum': '0x792673', 'uniqueId': '0xb61b77e88eb52426b5806b4f445f0747f56cb4e322e6f520c39118adc297b620:log:3', 'hash': '0xb61b77e88eb52426b5806b4f445f0747f56cb4e322e6f520c39118adc297b620', 'from': '0x161a8c7fd0c09c5312fc9cef2c0d98bef8620495', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6893.365377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa07fa8d264', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:32:02.000Z'}}, {'blockNum': '0x792673', 'uniqueId': '0x0f25a9acec8297dd9835d0592e3707a4e5595103152b1438bd7350c3f76720eb:log:5', 'hash': '0x0f25a9acec8297dd9835d0592e3707a4e5595103152b1438bd7350c3f76720eb', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27752.48043751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x028629ac7ee7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:32:02.000Z'}}, {'blockNum': '0x792673', 'uniqueId': '0x6ed5180184c270af9c2b9da313c54b492a49ba667d56de51a4bcb4ff6ada75ac:log:6', 'hash': '0x6ed5180184c270af9c2b9da313c54b492a49ba667d56de51a4bcb4ff6ada75ac', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01bd43ec3400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:32:02.000Z'}}, {'blockNum': '0x792687', 'uniqueId': '0x3bc8283b48b90062418ef29ab6f497a1b6a83e16eeffdd75e45e7b10ada1f5e4:log:30', 'hash': '0x3bc8283b48b90062418ef29ab6f497a1b6a83e16eeffdd75e45e7b10ada1f5e4', 'from': '0xa308bcad1ca8e6c4a5e449464647c716929cb804', 'to': '0xc0b98ee3cfcad99d68c1b82c88878f34a4c0314e', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:35:56.000Z'}}, {'blockNum': '0x792691', 'uniqueId': '0xa28af41661ed328a0735d4decd26a786bf90d09aead9dde33063b21951b93975:log:0', 'hash': '0xa28af41661ed328a0735d4decd26a786bf90d09aead9dde33063b21951b93975', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe6ec4a8c4ff85458ad1c4f0015cf8c8fdb62c7ff', 'value': 2424.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x387587c280', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:37:59.000Z'}}, {'blockNum': '0x79269a', 'uniqueId': '0x2fee0858619559c08ac363c81bed80474f09f872defc96d95011a712f6e650d7:log:7', 'hash': '0x2fee0858619559c08ac363c81bed80474f09f872defc96d95011a712f6e650d7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa4f4c04bffdb11d9c0356dbd58ee1014bd8bc706', 'value': 513.84496292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0bf6c130a4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:41:36.000Z'}}, {'blockNum': '0x79269a', 'uniqueId': '0x1027ed9931e4ca6e6b0517c5ed11d56b296a9319c7aa654d71a874c58a6349b7:log:15', 'hash': '0x1027ed9931e4ca6e6b0517c5ed11d56b296a9319c7aa654d71a874c58a6349b7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xffa92f04cc5b03e5bb275ad53c584535cf417d7c', 'value': 136711.09943508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c6f0da6e0d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:41:36.000Z'}}, {'blockNum': '0x79269b', 'uniqueId': '0x14ba5b3a3841bd694de36223cf2a119c92a229c2e980ea56297c7f96a7d00dd4:log:10', 'hash': '0x14ba5b3a3841bd694de36223cf2a119c92a229c2e980ea56297c7f96a7d00dd4', 'from': '0xc0b98ee3cfcad99d68c1b82c88878f34a4c0314e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:42:01.000Z'}}, {'blockNum': '0x7926a3', 'uniqueId': '0x1e3e1c3f292c4f3f376b51f06ff27b9211ac63ef8d87c3f4fb05c5934ea76a42:log:0', 'hash': '0x1e3e1c3f292c4f3f376b51f06ff27b9211ac63ef8d87c3f4fb05c5934ea76a42', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x64894a3749be96feb0712e8ca9618a2736e7e64a', 'value': 7351.27303164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xab290073fc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:43:50.000Z'}}, {'blockNum': '0x7926aa', 'uniqueId': '0x70066e3c404f4a9e706d13b5493194a6eefb92843509836cc22cedbaef97279b:log:0', 'hash': '0x70066e3c404f4a9e706d13b5493194a6eefb92843509836cc22cedbaef97279b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x53d4f0f21de62931cf103f45556fa8e7ec3dcd1e', 'value': 695.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x103180c780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:45:36.000Z'}}, {'blockNum': '0x7926b1', 'uniqueId': '0x90098d9c1114e16635cf84327fe8e4cb3c12351c9f66449c09ada9a9b249ce2d:log:0', 'hash': '0x90098d9c1114e16635cf84327fe8e4cb3c12351c9f66449c09ada9a9b249ce2d', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 14366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014e7c085e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:47:09.000Z'}}, {'blockNum': '0x7926c1', 'uniqueId': '0x6637e184e6b39af34014579293503e5757f461330f79fc206093511cf090a037:log:3', 'hash': '0x6637e184e6b39af34014579293503e5757f461330f79fc206093511cf090a037', 'from': '0x6e9586b0818cfbaeda91d409823e2bf872139a55', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e761b5b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:52:03.000Z'}}, {'blockNum': '0x7926c1', 'uniqueId': '0x20f4db7e2480f2e683eaeccae7a5c573803ce677f56027ff5da49303e70d6748:log:4', 'hash': '0x20f4db7e2480f2e683eaeccae7a5c573803ce677f56027ff5da49303e70d6748', 'from': '0x53d4f0f21de62931cf103f45556fa8e7ec3dcd1e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 695.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x103180c780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:52:03.000Z'}}, {'blockNum': '0x7926c7', 'uniqueId': '0x6a812ee60fa5d14c97a2cecdcea6cdccbb56cf513546c6c9ca31f9c9fb3e2cb4:log:9', 'hash': '0x6a812ee60fa5d14c97a2cecdcea6cdccbb56cf513546c6c9ca31f9c9fb3e2cb4', 'from': '0x0289ef6aaefb5e7456788c7da65c056f0b4856f7', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:53:46.000Z'}}, {'blockNum': '0x7926d2', 'uniqueId': '0x25fa7667100dad3c4d617173180b1f498a2c272124a4c2dad1892660b25bdfdb:log:5', 'hash': '0x25fa7667100dad3c4d617173180b1f498a2c272124a4c2dad1892660b25bdfdb', 'from': '0xffa92f04cc5b03e5bb275ad53c584535cf417d7c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 136711.09943508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c6f0da6e0d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:56:52.000Z'}}, {'blockNum': '0x7926d9', 'uniqueId': '0xbd4aea4b82b6188cf51ab704ffaa3070010d59234a1899b7b6dd1f71ef1e6743:log:37', 'hash': '0xbd4aea4b82b6188cf51ab704ffaa3070010d59234a1899b7b6dd1f71ef1e6743', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 17551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0198a41caf00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:59:06.000Z'}}, {'blockNum': '0x7926dd', 'uniqueId': '0xe871b1de08ea900fbda96207c65e59f11d9e6b435aebc718353478f4a145c86c:log:5', 'hash': '0xe871b1de08ea900fbda96207c65e59f11d9e6b435aebc718353478f4a145c86c', 'from': '0x4b106a8be7481dd89293891d3ea46f89437c9853', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 55301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x050793a56500', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:59:28.000Z'}}, {'blockNum': '0x7926e8', 'uniqueId': '0xa0dfce0cdacf81fba67980e27f2dc1af157d3046ab06967b85c6406021f76629:log:9', 'hash': '0xa0dfce0cdacf81fba67980e27f2dc1af157d3046ab06967b85c6406021f76629', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014e7c085e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:02:26.000Z'}}, {'blockNum': '0x7926f8', 'uniqueId': '0xe3da9b0b18df5800d82c0b620e9c2eae3fb3a55ab79d23e154754dbd8d2d3bfb:log:71', 'hash': '0xe3da9b0b18df5800d82c0b620e9c2eae3fb3a55ab79d23e154754dbd8d2d3bfb', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'value': 6840.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9f438b4240', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:05:34.000Z'}}, {'blockNum': '0x7926fd', 'uniqueId': '0x17763558ae46db4beaae37776cbc4af943210b7a33369a88cd4d28b669d0b811:log:78', 'hash': '0x17763558ae46db4beaae37776cbc4af943210b7a33369a88cd4d28b669d0b811', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 16301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x017b89880d00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:06:05.000Z'}}, {'blockNum': '0x79270a', 'uniqueId': '0x45d93db3739d856c068f967a90f6805d823f52530a2b7ecd7a630454e3483ddb:log:0', 'hash': '0x45d93db3739d856c068f967a90f6805d823f52530a2b7ecd7a630454e3483ddb', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 29999.9999031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def0a26', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:08:15.000Z'}}, {'blockNum': '0x79270b', 'uniqueId': '0x3fad617a75882b543cff41bb81990d88162f5f7403397184ab212f6d5000f2e8:log:1', 'hash': '0x3fad617a75882b543cff41bb81990d88162f5f7403397184ab212f6d5000f2e8', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 16038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x017569ede600', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:08:31.000Z'}}, {'blockNum': '0x792718', 'uniqueId': '0x3e4febc707d59ac6b81d8c6ffbc7e0d9293a998f62cdffd6df3371b36dd726e5:log:3', 'hash': '0x3e4febc707d59ac6b81d8c6ffbc7e0d9293a998f62cdffd6df3371b36dd726e5', 'from': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03142da4bc00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:11:59.000Z'}}, {'blockNum': '0x792718', 'uniqueId': '0xafdda7d16dce9a50e45c0ea1878a2b0735db50cbea8f399596697eae56509cd6:log:89', 'hash': '0xafdda7d16dce9a50e45c0ea1878a2b0735db50cbea8f399596697eae56509cd6', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 7050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa425464a00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:11:59.000Z'}}, {'blockNum': '0x792718', 'uniqueId': '0x2faa20f26b22d1f2d1d981107ff63591627fe8031b6f5bb3445d166f69e9febb:log:90', 'hash': '0x2faa20f26b22d1f2d1d981107ff63591627fe8031b6f5bb3445d166f69e9febb', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 5925.87, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x89f8f008c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:11:59.000Z'}}, {'blockNum': '0x792723', 'uniqueId': '0x4c33e1c7022474854e13236cc26319ebd56eb0e70c91ac885cca5353bca188af:log:48', 'hash': '0x4c33e1c7022474854e13236cc26319ebd56eb0e70c91ac885cca5353bca188af', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x8f8a8969a8f8b1319ef17a14834cecc25f30f01d', 'value': 4714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6dc1a12a00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:13:27.000Z'}}, {'blockNum': '0x79272f', 'uniqueId': '0x9df3934da9fc099c24400a8719b09b8bf6865f2596e6a6a8777f3218cbc5286e:log:0', 'hash': '0x9df3934da9fc099c24400a8719b09b8bf6865f2596e6a6a8777f3218cbc5286e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6eab0db85acfd00a0d4a617f70226261a3c3b56b', 'value': 900.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14f8695ac0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:15:48.000Z'}}, {'blockNum': '0x792734', 'uniqueId': '0x355d97fa70e5a966d7d6d00b5c47fb3fd072bb549cc88bd2f5130224e14f0286:log:213', 'hash': '0x355d97fa70e5a966d7d6d00b5c47fb3fd072bb549cc88bd2f5130224e14f0286', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x50ca540462d794927f4c642611f0da56231e2113', 'value': 4999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x74645ca700', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:18:18.000Z'}}, {'blockNum': '0x792734', 'uniqueId': '0x0fa29fc86307f527e1f6b7df65236814c6de1ab2458113fee8af644d46818c9c:log:214', 'hash': '0x0fa29fc86307f527e1f6b7df65236814c6de1ab2458113fee8af644d46818c9c', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 4610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6b55bdc200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:18:18.000Z'}}, {'blockNum': '0x792739', 'uniqueId': '0x01b3b6bffbc8d49e2ac5b18d56ae5981d3b30c39163384e343f053f7a248a900:log:4', 'hash': '0x01b3b6bffbc8d49e2ac5b18d56ae5981d3b30c39163384e343f053f7a248a900', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x6ef5d49ec2a7a896522a90593f829a94b4d71098', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:19:24.000Z'}}, {'blockNum': '0x79274c', 'uniqueId': '0x3f5c3b4fd0aa061563ce49c601bafa93b15cc3ca53e5cb3728779bb3449399f3:log:9', 'hash': '0x3f5c3b4fd0aa061563ce49c601bafa93b15cc3ca53e5cb3728779bb3449399f3', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12975.87, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x012e1e3652c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:22:03.000Z'}}, {'blockNum': '0x79274c', 'uniqueId': '0xa0fad39bca002491788cc203fbb9b5c95344f31ef42d6739cf8f8d76d6b45bad:log:12', 'hash': '0xa0fad39bca002491788cc203fbb9b5c95344f31ef42d6739cf8f8d76d6b45bad', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x017569ede600', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:22:03.000Z'}}, {'blockNum': '0x79274c', 'uniqueId': '0xcd1e33de6fca8446b660cdd758a41e5bda7599157d4335b7db7716b2948b4082:log:13', 'hash': '0xcd1e33de6fca8446b660cdd758a41e5bda7599157d4335b7db7716b2948b4082', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29999.9999031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def0a26', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:22:03.000Z'}}, {'blockNum': '0x79275c', 'uniqueId': '0x5d9695a8382daf97bd2241cf230047859957df4d9915263804099c5014f547b6:log:3', 'hash': '0x5d9695a8382daf97bd2241cf230047859957df4d9915263804099c5014f547b6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9c132ab4ceffb3dd378900691b78b635a97c5745', 'value': 295.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06e1513780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:24:17.000Z'}}, {'blockNum': '0x792765', 'uniqueId': '0xe50d7f253c3eb228054b06b689e4c4f954e621aa164d11f8970ccfe4c375f4bc:log:1', 'hash': '0xe50d7f253c3eb228054b06b689e4c4f954e621aa164d11f8970ccfe4c375f4bc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x2edc8d4d6f2389605ec5dce4512875dbb1b3b994', 'value': 356.92818463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x084f75301f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:26:18.000Z'}}, {'blockNum': '0x792769', 'uniqueId': '0x70dd2b56cc41b4266c3e1ccc9e937fba0d59bf79ead6475aa18fc419ec6508cb:log:1', 'hash': '0x70dd2b56cc41b4266c3e1ccc9e937fba0d59bf79ead6475aa18fc419ec6508cb', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 15616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016b969d0000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:27:45.000Z'}}, {'blockNum': '0x792770', 'uniqueId': '0xaf1df1752e153b48b3181e2afd8f22236ca315f37ffccf1d363b08ec926caa97:log:11', 'hash': '0xaf1df1752e153b48b3181e2afd8f22236ca315f37ffccf1d363b08ec926caa97', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x413d0fa4c7d6c4cfa8706b017c1de22a2570e1c5', 'value': 142.35414599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03507f3047', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:30:21.000Z'}}, {'blockNum': '0x792778', 'uniqueId': '0x1949c105b9394b40cf2197f5d1d4f44f2261f5dd22790446c4cc315938ec1e45:log:0', 'hash': '0x1949c105b9394b40cf2197f5d1d4f44f2261f5dd22790446c4cc315938ec1e45', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 29999.99996541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def227d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:32:33.000Z'}}, {'blockNum': '0x792778', 'uniqueId': '0x7d7d34d212346051f5ea1cdf9896f42eed4745523cc4641c61b8ff5d5beca40f:log:21', 'hash': '0x7d7d34d212346051f5ea1cdf9896f42eed4745523cc4641c61b8ff5d5beca40f', 'from': '0x6eab0db85acfd00a0d4a617f70226261a3c3b56b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 900.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14f8695ac0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:32:33.000Z'}}, {'blockNum': '0x792778', 'uniqueId': '0x94399dd3e05da953a3e4c90fc29058f3305a872626d3614e54c25994c614f66c:log:23', 'hash': '0x94399dd3e05da953a3e4c90fc29058f3305a872626d3614e54c25994c614f66c', 'from': '0x9c132ab4ceffb3dd378900691b78b635a97c5745', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 295.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06e1513780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:32:33.000Z'}}, {'blockNum': '0x792778', 'uniqueId': '0x7af6a7711dcf8435e16bea90e64fbc5e38aa411977e8b142839ff6ad5e075afb:log:24', 'hash': '0x7af6a7711dcf8435e16bea90e64fbc5e38aa411977e8b142839ff6ad5e075afb', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6b55bdc200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:32:33.000Z'}}, {'blockNum': '0x792783', 'uniqueId': '0xea5c97c72842e9bbe92869cc9a9d277166e20529712ffbae10e2b0e93fbe04a1:log:25', 'hash': '0xea5c97c72842e9bbe92869cc9a9d277166e20529712ffbae10e2b0e93fbe04a1', 'from': '0x110327c7174f93252c92ed43edea694afd29433d', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:35:43.000Z'}}, {'blockNum': '0x792786', 'uniqueId': '0x6467a8f854a98ca7175e8a2cde590a47b56e06d93ed5cbc9e3d9967b43d4be89:log:81', 'hash': '0x6467a8f854a98ca7175e8a2cde590a47b56e06d93ed5cbc9e3d9967b43d4be89', 'from': '0x2edc8d4d6f2389605ec5dce4512875dbb1b3b994', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 356.92818463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x084f75301f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:36:07.000Z'}}, {'blockNum': '0x792791', 'uniqueId': '0xf93c20b21b64578047d3b117f638f9a6614d1fec2a66760dc355cc48b2924aaf:log:0', 'hash': '0xf93c20b21b64578047d3b117f638f9a6614d1fec2a66760dc355cc48b2924aaf', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 30380.9891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02c35cce6b30', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:37:42.000Z'}}, {'blockNum': '0x792794', 'uniqueId': '0xec468b9d95ff6f702d714bb4c523b2b41411e3bb21fb8519474046f04f6936c0:log:90', 'hash': '0xec468b9d95ff6f702d714bb4c523b2b41411e3bb21fb8519474046f04f6936c0', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'value': 1149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ac092dd00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:38:21.000Z'}}, {'blockNum': '0x792799', 'uniqueId': '0x2a6a38ee79e540ed487946bdbdab6c20cf32b5a2607d694ee9dcb1b33986bd2c:log:4', 'hash': '0x2a6a38ee79e540ed487946bdbdab6c20cf32b5a2607d694ee9dcb1b33986bd2c', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 16424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x017e66ab2800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:38:59.000Z'}}, {'blockNum': '0x7927a9', 'uniqueId': '0xf4dba26dae520a3c6c19d2adc9f55526091b175caec51b10d96553809d17229f:log:4', 'hash': '0xf4dba26dae520a3c6c19d2adc9f55526091b175caec51b10d96553809d17229f', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32040, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02e9fd482800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:42:01.000Z'}}, {'blockNum': '0x7927a9', 'uniqueId': '0x3b741c2a447d014d55120989759b1806c2c7dc8930798c6e00684c3da1b92fcb:log:6', 'hash': '0x3b741c2a447d014d55120989759b1806c2c7dc8930798c6e00684c3da1b92fcb', 'from': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ac092dd00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:42:01.000Z'}}, {'blockNum': '0x7927a9', 'uniqueId': '0xd51ab3ac6aa180664b33facfdfd14a84f429823dca1f3311acbdfae604a4d91b:log:7', 'hash': '0xd51ab3ac6aa180664b33facfdfd14a84f429823dca1f3311acbdfae604a4d91b', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30380.9891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02c35cce6b30', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:42:01.000Z'}}, {'blockNum': '0x7927a9', 'uniqueId': '0x55c62dd329fb84e2706a26dadbb479143ac31387a3e22b0dad9f19824eb3208a:log:8', 'hash': '0x55c62dd329fb84e2706a26dadbb479143ac31387a3e22b0dad9f19824eb3208a', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29999.99996541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def227d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:42:01.000Z'}}, {'blockNum': '0x7927e5', 'uniqueId': '0x4fbe6559b4750b91b136a3e344a364bb83ebfc9bc108999d1f322a2a9e2988f5:log:9', 'hash': '0x4fbe6559b4750b91b136a3e344a364bb83ebfc9bc108999d1f322a2a9e2988f5', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:51:59.000Z'}}, {'blockNum': '0x7927e5', 'uniqueId': '0x7f1e1cfaf8ee517b75259481bc6db94b17081575b7fa93f12869ede9379b2881:log:12', 'hash': '0x7f1e1cfaf8ee517b75259481bc6db94b17081575b7fa93f12869ede9379b2881', 'from': '0x413d0fa4c7d6c4cfa8706b017c1de22a2570e1c5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 142.35414599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03507f3047', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:51:59.000Z'}}, {'blockNum': '0x792827', 'uniqueId': '0x62a31dd99af63ffdfd933d60725edf3311a1521245119922e02b570813451efc:log:1', 'hash': '0x62a31dd99af63ffdfd933d60725edf3311a1521245119922e02b570813451efc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7098728ef2dc38f49419118b9b4de6253e237679', 'value': 1987.50000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e466c5381', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:05:05.000Z'}}, {'blockNum': '0x792827', 'uniqueId': '0x71645e4a62379a07212031969ee9f063e49bcbed1c0062cec982b7f3a5cfd605:log:2', 'hash': '0x71645e4a62379a07212031969ee9f063e49bcbed1c0062cec982b7f3a5cfd605', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc51ab0df621e640aedc211d777b334634dbc3b7b', 'value': 807.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12cd133780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:05:05.000Z'}}, {'blockNum': '0x792836', 'uniqueId': '0x5c1993ad95c8ff0aedcdd1d863f81246892ae7e6e70f95570afa2308e934610b:log:9', 'hash': '0x5c1993ad95c8ff0aedcdd1d863f81246892ae7e6e70f95570afa2308e934610b', 'from': '0x6a3eb79e1c4023f1610ff046c5dc30f9790d326f', 'to': '0x263e7911bcb2188325d5ce2a8a000c296ae49ae8', 'value': 586.48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0da7b17600', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:08:03.000Z'}}, {'blockNum': '0x792843', 'uniqueId': '0x1ccc8583c9656d2d705b6aca2bb89e427ca5384d9ffebee7f9f935ed60c0e35e:log:10', 'hash': '0x1ccc8583c9656d2d705b6aca2bb89e427ca5384d9ffebee7f9f935ed60c0e35e', 'from': '0x432aba3d171dbf8344add74b0891b124e375c3d8', 'to': '0xea3e82675818ab2f417eb94bacfcebec6a26e55f', 'value': 17.97434173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6b22ab3d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:12:03.000Z'}}, {'blockNum': '0x79286c', 'uniqueId': '0x1cd98e73aad1e5ff00c3d5de5a118704f2dc3f46c2a225ac8a7561d236037be8:log:38', 'hash': '0x1cd98e73aad1e5ff00c3d5de5a118704f2dc3f46c2a225ac8a7561d236037be8', 'from': '0x94938c0f40d0ed66a51dd38c2370eb372edb1b9a', 'to': '0xba3ca2b1e9f927b473acbad3730bd45bee00820e', 'value': 9856.06427109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe57ab891e5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:20:58.000Z'}}, {'blockNum': '0x79286f', 'uniqueId': '0x29e2e01f2a219fe45aec454276cd7c5c07f3403d16b567f8a4bf70c6aeb37146:log:11', 'hash': '0x29e2e01f2a219fe45aec454276cd7c5c07f3403d16b567f8a4bf70c6aeb37146', 'from': '0xc51ab0df621e640aedc211d777b334634dbc3b7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 807.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12cd133780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:21:36.000Z'}}, {'blockNum': '0x79286f', 'uniqueId': '0xccc44e48643b5b1bb8ec2899d67ff94a5b11cbadd41ec3d592baf4b0cc7528ff:log:15', 'hash': '0xccc44e48643b5b1bb8ec2899d67ff94a5b11cbadd41ec3d592baf4b0cc7528ff', 'from': '0x7098728ef2dc38f49419118b9b4de6253e237679', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1987.50000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e466c5381', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:21:36.000Z'}}, {'blockNum': '0x792870', 'uniqueId': '0x3386c041877ede6e865e67b95d5a7d15060b0abec7e3f55a5f9cc9481ebbca2d:log:5', 'hash': '0x3386c041877ede6e865e67b95d5a7d15060b0abec7e3f55a5f9cc9481ebbca2d', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xa61bc2cf08f31aba1d437813c53395a150269061', 'value': 48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x011e1a3000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:22:20.000Z'}}, {'blockNum': '0x792877', 'uniqueId': '0x8cec5a524f9460448f3690b6cb72712a20d08e720311637a8339136a9aa95e9b:log:6', 'hash': '0x8cec5a524f9460448f3690b6cb72712a20d08e720311637a8339136a9aa95e9b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 27497.52723658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02803a08c8ca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:23:32.000Z'}}, {'blockNum': '0x79287b', 'uniqueId': '0xe51581c27b497fb26eef1fcbf21c97daf2448dee7637fdec22253fafc29ade0d:log:1', 'hash': '0xe51581c27b497fb26eef1fcbf21c97daf2448dee7637fdec22253fafc29ade0d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd95372b9cef81d9015f3bcdd43a9e43c33eb9ffc', 'value': 1995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e761b5b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:24:40.000Z'}}, {'blockNum': '0x79288a', 'uniqueId': '0xc43d95e464964e78d39ba28a30fbfb7cdb0e0307b811d7ed33382944710a97d3:log:7', 'hash': '0xc43d95e464964e78d39ba28a30fbfb7cdb0e0307b811d7ed33382944710a97d3', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xa61bc2cf08f31aba1d437813c53395a150269061', 'value': 863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1417e17f00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:28:56.000Z'}}, {'blockNum': '0x792897', 'uniqueId': '0x3de3d53d0340b00ed6c3ec6c25e82f8896b957c7e82811eeeb9a8325ee198721:log:12', 'hash': '0x3de3d53d0340b00ed6c3ec6c25e82f8896b957c7e82811eeeb9a8325ee198721', 'from': '0xba3ca2b1e9f927b473acbad3730bd45bee00820e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9856.06427109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe57ab891e5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:32:10.000Z'}}, {'blockNum': '0x792897', 'uniqueId': '0xa4b9aa34c21c6f032f4837f3cf714e3ff5e696cb836549b40b31eba7db257665:log:13', 'hash': '0xa4b9aa34c21c6f032f4837f3cf714e3ff5e696cb836549b40b31eba7db257665', 'from': '0xd95372b9cef81d9015f3bcdd43a9e43c33eb9ffc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e761b5b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:32:10.000Z'}}, {'blockNum': '0x792897', 'uniqueId': '0x0e3741a21c6967b729ce41122aacc102800209f868cb2cab4e4cb28952b00433:log:14', 'hash': '0x0e3741a21c6967b729ce41122aacc102800209f868cb2cab4e4cb28952b00433', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27497.52723658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02803a08c8ca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:32:10.000Z'}}, {'blockNum': '0x7928bb', 'uniqueId': '0x236e34bc0400eb1ced4f649d4bb23681d42bb43743f8d4fe692c3e834edc10e9:log:1', 'hash': '0x236e34bc0400eb1ced4f649d4bb23681d42bb43743f8d4fe692c3e834edc10e9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcdf52a32f16b16b947cd29a66d1079a55e1089d8', 'value': 465.27005065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ad539c189', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:40:55.000Z'}}, {'blockNum': '0x7928bb', 'uniqueId': '0x3a6dd4afcc7542446eb9e1a0272535b7df6f1c73956f6b8919b0d4b48d098ea9:log:2', 'hash': '0x3a6dd4afcc7542446eb9e1a0272535b7df6f1c73956f6b8919b0d4b48d098ea9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x8a080fc6ac910bdd9ed3eb94ad097d62f64913de', 'value': 792.6551272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x127497bd10', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:40:55.000Z'}}, {'blockNum': '0x7928d1', 'uniqueId': '0x3e8352a830697b3fd3a44959a853de0704c7f77b862ab3905ec8bd5a9d8dae35:log:1', 'hash': '0x3e8352a830697b3fd3a44959a853de0704c7f77b862ab3905ec8bd5a9d8dae35', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 15561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016a4ec9a900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:45:21.000Z'}}, {'blockNum': '0x7928d6', 'uniqueId': '0x641b379f9207c828e3f81c7db6a4e62930ccd04ae6748cc48527268736f7b722:log:0', 'hash': '0x641b379f9207c828e3f81c7db6a4e62930ccd04ae6748cc48527268736f7b722', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 29999.9999372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def1778', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:46:00.000Z'}}, {'blockNum': '0x7928dd', 'uniqueId': '0xb7cb10520050df2fe3f43ee3b5dc3aae9a265f5836ca906b329f5b9fb6ba6e7b:log:11', 'hash': '0xb7cb10520050df2fe3f43ee3b5dc3aae9a265f5836ca906b329f5b9fb6ba6e7b', 'from': '0x110327c7174f93252c92ed43edea694afd29433d', 'to': '0xb0385bd9e29c6f37368e63f3f9ef54710ef1c04e', 'value': 1997.11206096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e7fb72ad0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:48:01.000Z'}}, {'blockNum': '0x7928e8', 'uniqueId': '0x7263d80c660b05a0ca6c234f71e6982c986f8d8674b5cc97338816fa27f70134:log:1', 'hash': '0x7263d80c660b05a0ca6c234f71e6982c986f8d8674b5cc97338816fa27f70134', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6ea91f3313bc8fa7b2b1249ccb2f2d0e4b097371', 'value': 716.67122545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x10afb18171', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:50:40.000Z'}}, {'blockNum': '0x7928e8', 'uniqueId': '0x65b9cdd79e5d140ecee53048358193edc5373545393f989fc5242d38308e271b:log:2', 'hash': '0x65b9cdd79e5d140ecee53048358193edc5373545393f989fc5242d38308e271b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x24ac0cd6b11c0759df85ab73303dd1f92a7aec3c', 'value': 445.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a5f630d80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:50:40.000Z'}}, {'blockNum': '0x7928ee', 'uniqueId': '0x31637c532dd12e855c9f2d7c7e296d391c2f44a4518fa1ef7025bda0d120acde:log:12', 'hash': '0x31637c532dd12e855c9f2d7c7e296d391c2f44a4518fa1ef7025bda0d120acde', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29999.9999372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def1778', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:51:50.000Z'}}, {'blockNum': '0x7928ee', 'uniqueId': '0x9990a476b1eb4f95ddbd16b7b076fc4cb42cb606b61130c0b7183162172a39ab:log:13', 'hash': '0x9990a476b1eb4f95ddbd16b7b076fc4cb42cb606b61130c0b7183162172a39ab', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016a4ec9a900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:51:50.000Z'}}, {'blockNum': '0x7928f5', 'uniqueId': '0x4f4ecc3e6d595e9fec34bb73d394286bd47d179465af5b2a348d856b4ac43a98:log:19', 'hash': '0x4f4ecc3e6d595e9fec34bb73d394286bd47d179465af5b2a348d856b4ac43a98', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xecb301cf744fc0c7771f2a3211c82f752c6c29bb', 'value': 10493.8750572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf4545e9838', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:54:34.000Z'}}, {'blockNum': '0x7928fd', 'uniqueId': '0xdee5e635a1257b5125c2a03b85dd283089938df2a3f6a2b7ef2a47705b324c8b:log:0', 'hash': '0xdee5e635a1257b5125c2a03b85dd283089938df2a3f6a2b7ef2a47705b324c8b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 30000.5121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba80fc9710', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:55:35.000Z'}}, {'blockNum': '0x7928fe', 'uniqueId': '0x85237fced12a699d462ab1c3f983564a41b74b163bc3fe68716a882a16f1da31:log:20', 'hash': '0x85237fced12a699d462ab1c3f983564a41b74b163bc3fe68716a882a16f1da31', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 3534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5248480e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:55:57.000Z'}}, {'blockNum': '0x792906', 'uniqueId': '0x7d3c13c27d171213f25e00132f0059f3f058d2f7dc3d184bbb4ccd7190ef0e1e:log:11', 'hash': '0x7d3c13c27d171213f25e00132f0059f3f058d2f7dc3d184bbb4ccd7190ef0e1e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 7330.65, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xaaae143440', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:57:16.000Z'}}, {'blockNum': '0x792914', 'uniqueId': '0x9c82f0743028ebdb49fe425c146eadd2742ed636fb3d8e153ead97be3603bc7f:log:6', 'hash': '0x9c82f0743028ebdb49fe425c146eadd2742ed636fb3d8e153ead97be3603bc7f', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 39266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03923b992200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:00:52.000Z'}}, {'blockNum': '0x79291b', 'uniqueId': '0xcdcc08bcdbcd868d522babd2bf97b4a5a715058196491df3f729e8a881f66521:log:15', 'hash': '0xcdcc08bcdbcd868d522babd2bf97b4a5a715058196491df3f729e8a881f66521', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000.5121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba80fc9710', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:02:32.000Z'}}, {'blockNum': '0x79291b', 'uniqueId': '0x043b3be767daa4117520ae0db9f48b31049d7c5da83bf83b5b36835cf73cd119:log:16', 'hash': '0x043b3be767daa4117520ae0db9f48b31049d7c5da83bf83b5b36835cf73cd119', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5248480e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:02:32.000Z'}}, {'blockNum': '0x79292d', 'uniqueId': '0xa5fd9eecd31f58ac72266e73bab8d02aa31c29dff576fa28d116acd2b735aab0:log:0', 'hash': '0xa5fd9eecd31f58ac72266e73bab8d02aa31c29dff576fa28d116acd2b735aab0', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 14834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01596187b200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:05:58.000Z'}}, {'blockNum': '0x792930', 'uniqueId': '0x97888f1629e166d06abe778ca4c09f214f21f3a730b7d01ac8e3d5afe4678497:log:1', 'hash': '0x97888f1629e166d06abe778ca4c09f214f21f3a730b7d01ac8e3d5afe4678497', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 12788.06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0129bec70180', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:06:50.000Z'}}, {'blockNum': '0x792938', 'uniqueId': '0x8a0a3569f857315e253c811e1e70c4d4e2652c04f894ac4649012cc18e32081a:log:22', 'hash': '0x8a0a3569f857315e253c811e1e70c4d4e2652c04f894ac4649012cc18e32081a', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x023210693932ad66407fdb854c0481fcabdf8fea', 'value': 1264.789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1d72badb20', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:08:54.000Z'}}, {'blockNum': '0x792941', 'uniqueId': '0x670f39c83b19cfd0e102348018ac0bdf7e67a1bf88dc10a1e59f96ed71d19504:log:4', 'hash': '0x670f39c83b19cfd0e102348018ac0bdf7e67a1bf88dc10a1e59f96ed71d19504', 'from': '0xecb301cf744fc0c7771f2a3211c82f752c6c29bb', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 10493.8750572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf4545e9838', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:11:32.000Z'}}, {'blockNum': '0x792941', 'uniqueId': '0xb2d8bd74559bcae89232af2dd14e773ffc866915f840bb3b454c335966b580b3:log:27', 'hash': '0xb2d8bd74559bcae89232af2dd14e773ffc866915f840bb3b454c335966b580b3', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 39266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03923b992200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:11:32.000Z'}}, {'blockNum': '0x792941', 'uniqueId': '0xc8ca7e0e03e86f163941ad222f8fead6f2b832769f162fdaea396ff7f419b09e:log:29', 'hash': '0xc8ca7e0e03e86f163941ad222f8fead6f2b832769f162fdaea396ff7f419b09e', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7330.65, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xaaae143440', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:11:32.000Z'}}, {'blockNum': '0x792941', 'uniqueId': '0xcbed010ed6c79fae2a1dfef0027688280a011b1ccf73ab7bb3ba21c7a60bca3e:log:30', 'hash': '0xcbed010ed6c79fae2a1dfef0027688280a011b1ccf73ab7bb3ba21c7a60bca3e', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01596187b200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:11:32.000Z'}}, {'blockNum': '0x792941', 'uniqueId': '0xa226a9b2673c4b01e670ff7ba41dc850d1b37d4174ec0d582bf5fdf1df47bd79:log:31', 'hash': '0xa226a9b2673c4b01e670ff7ba41dc850d1b37d4174ec0d582bf5fdf1df47bd79', 'from': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12788.06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0129bec70180', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:11:32.000Z'}}, {'blockNum': '0x792965', 'uniqueId': '0x4b729917bbbf56b952edc2301df39268b8ef2f1f84088f058e466aa261b1ca68:log:93', 'hash': '0x4b729917bbbf56b952edc2301df39268b8ef2f1f84088f058e466aa261b1ca68', 'from': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 42582.16, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03df7173ba00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:21:25.000Z'}}, {'blockNum': '0x792968', 'uniqueId': '0xd33e4fa1d9e32c7a6dca87eb2c1d7486f7fd3ae938f35ce32a65b2e2c609cfc6:log:2', 'hash': '0xd33e4fa1d9e32c7a6dca87eb2c1d7486f7fd3ae938f35ce32a65b2e2c609cfc6', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 29999.99996541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def227d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:24:07.000Z'}}, {'blockNum': '0x79296c', 'uniqueId': '0x22d2930870fd522315fe477d62088e65bfbd496a2edce079ed8e083bd3608833:log:1', 'hash': '0x22d2930870fd522315fe477d62088e65bfbd496a2edce079ed8e083bd3608833', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3250a57d11f5e4dee04260124670f448c1ef2cb0', 'value': 309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0731c89500', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:25:00.000Z'}}, {'blockNum': '0x79298c', 'uniqueId': '0x0f63311e03323196647d87fb7ab069c04867efb0f983aab87322c559a2d1b22c:log:16', 'hash': '0x0f63311e03323196647d87fb7ab069c04867efb0f983aab87322c559a2d1b22c', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29999.99996541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def227d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:31:46.000Z'}}, {'blockNum': '0x79298c', 'uniqueId': '0x97b069f8c0d96aa2bec6da00f54d0b7ad630ece6290d4ec62e53b695bdda2115:log:18', 'hash': '0x97b069f8c0d96aa2bec6da00f54d0b7ad630ece6290d4ec62e53b695bdda2115', 'from': '0x3250a57d11f5e4dee04260124670f448c1ef2cb0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0731c89500', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:31:46.000Z'}}, {'blockNum': '0x792992', 'uniqueId': '0x1045f3192d29efa322554a99effe5b0867aaafe531cc02a22fd2a766247c8abe:log:3', 'hash': '0x1045f3192d29efa322554a99effe5b0867aaafe531cc02a22fd2a766247c8abe', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 29921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02b8a70ec100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:32:50.000Z'}}, {'blockNum': '0x7929a2', 'uniqueId': '0x26226fde87c0f566c88d934a78362e60010f5dca38f85ffc1a07f974810fb0ec:log:42', 'hash': '0x26226fde87c0f566c88d934a78362e60010f5dca38f85ffc1a07f974810fb0ec', 'from': '0xb0385bd9e29c6f37368e63f3f9ef54710ef1c04e', 'to': '0xcde67ff71a0f40eef7fcd03992a300bfb63cf0c0', 'value': 1997.11206096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e7fb72ad0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:34:53.000Z'}}, {'blockNum': '0x7929a8', 'uniqueId': '0x0d81129bfba242022616408028fca06c4511906f0caa25f0b7abb1532b64c162:log:100', 'hash': '0x0d81129bfba242022616408028fca06c4511906f0caa25f0b7abb1532b64c162', 'from': '0xcde67ff71a0f40eef7fcd03992a300bfb63cf0c0', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1997.11206096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e7fb72ad0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:35:26.000Z'}}, {'blockNum': '0x7929b3', 'uniqueId': '0x6973d42460a0442bb67dea5276cbf727d9fce9a1928a9279c837fc87ce1a4306:log:16', 'hash': '0x6973d42460a0442bb67dea5276cbf727d9fce9a1928a9279c837fc87ce1a4306', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 56537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05245ac7b900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:38:57.000Z'}}, {'blockNum': '0x7929ca', 'uniqueId': '0x3aa58a23deb49b156714e307a21f7f2fbb55404a9e6eda123341454a5be149ed:log:7', 'hash': '0x3aa58a23deb49b156714e307a21f7f2fbb55404a9e6eda123341454a5be149ed', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1997.11206096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e7fb72ad0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:42:03.000Z'}}, {'blockNum': '0x7929d6', 'uniqueId': '0x75be888db8bbd4e593f8b0ad3b418bcf30eff6c0a5ab095829ff73632119db39:log:1', 'hash': '0x75be888db8bbd4e593f8b0ad3b418bcf30eff6c0a5ab095829ff73632119db39', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x14f56565718358a77600efabcaede92da192e352', 'value': 663.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f72c4a780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:43:35.000Z'}}, {'blockNum': '0x7929e9', 'uniqueId': '0xdc16aa3c42bf44e380e100e5969213a16b189bdb352d709e59d445a0f8697100:log:14', 'hash': '0xdc16aa3c42bf44e380e100e5969213a16b189bdb352d709e59d445a0f8697100', 'from': '0x32e567e8b527d3194c60ea3c6a5c009d58a0b36d', 'to': '0x48ff00065aef36f57933200bfc1c3054faac42eb', 'value': 7.11240954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a64acfa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:47:49.000Z'}}, {'blockNum': '0x7929fa', 'uniqueId': '0x5a9712cfd8cd2c9443ba078ef5dd2bb01d13dcbcc79d2949a0a8a1549ab48f62:log:11', 'hash': '0x5a9712cfd8cd2c9443ba078ef5dd2bb01d13dcbcc79d2949a0a8a1549ab48f62', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 36753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0357b8f37100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:51:19.000Z'}}, {'blockNum': '0x792a0d', 'uniqueId': '0xa394434ffcbbea0d7b190127fc9ccd35f8181961e0621058cab14361b4925905:log:0', 'hash': '0xa394434ffcbbea0d7b190127fc9ccd35f8181961e0621058cab14361b4925905', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 24248.94580837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x023496fae865', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:55:42.000Z'}}, {'blockNum': '0x792a1d', 'uniqueId': '0xe2d303f3b01913ab02a3d5b3d75f2f1a02e8222bcd1f7e5d14d5e526dce22e9d:log:4', 'hash': '0xe2d303f3b01913ab02a3d5b3d75f2f1a02e8222bcd1f7e5d14d5e526dce22e9d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'value': 11540, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010cafc29400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:59:27.000Z'}}, {'blockNum': '0x792a2c', 'uniqueId': '0x5c0ed33a96c552587cfd59f59489087700129ba41b877c4f3f8f6fc8afdbce8a:log:22', 'hash': '0x5c0ed33a96c552587cfd59f59489087700129ba41b877c4f3f8f6fc8afdbce8a', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24248.94580837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x023496fae865', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:01:47.000Z'}}, {'blockNum': '0x792a2e', 'uniqueId': '0x466429a0a830c3a1d0d150ad778a8187d6aeffebce46512ad1cab3cb574c3454:log:1', 'hash': '0x466429a0a830c3a1d0d150ad778a8187d6aeffebce46512ad1cab3cb574c3454', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 17753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x019d58203900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:02:22.000Z'}}, {'blockNum': '0x792a36', 'uniqueId': '0xe8db46da613fac6b0d97b9d2c5004f69745941cb9ce97c52f71493b3b11ae818:log:7', 'hash': '0xe8db46da613fac6b0d97b9d2c5004f69745941cb9ce97c52f71493b3b11ae818', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'value': 9306.51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd8af1f4cc0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:04:16.000Z'}}, {'blockNum': '0x792a3c', 'uniqueId': '0xbeccfec6441023384fb0b61da38f561c74b6561e0f48437babc3de291d0404b2:log:2', 'hash': '0xbeccfec6441023384fb0b61da38f561c74b6561e0f48437babc3de291d0404b2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x55874d1c2bafb114d6ffa15dc1d16047cc9dd352', 'value': 224.28440367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0538d6d72f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:05:14.000Z'}}, {'blockNum': '0x792a3f', 'uniqueId': '0xe4b90c040120696c7fa83149418404855e8d3b7b7e229d587b6a7cf01b17228d:log:2', 'hash': '0xe4b90c040120696c7fa83149418404855e8d3b7b7e229d587b6a7cf01b17228d', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 30551.3008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02c753f17300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:07:06.000Z'}}, {'blockNum': '0x792a45', 'uniqueId': '0xf992ad23a993ecccf940c112ef6ee3d1b8acc75f3ac0ca279ba9446249fbf3ab:log:14', 'hash': '0xf992ad23a993ecccf940c112ef6ee3d1b8acc75f3ac0ca279ba9446249fbf3ab', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 15488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01689bac8000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:08:36.000Z'}}, {'blockNum': '0x792a4f', 'uniqueId': '0xf158a297ee5e7692624167ab0930ca35222a8606ecd9d2e10e37364481074cfb:log:13', 'hash': '0xf158a297ee5e7692624167ab0930ca35222a8606ecd9d2e10e37364481074cfb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x8f8a8969a8f8b1319ef17a14834cecc25f30f01d', 'value': 8096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbc7feba000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:11:23.000Z'}}, {'blockNum': '0x792a4f', 'uniqueId': '0x923d9e7ec73621486ee38383d43385ef9ab833dc2f5b4c456f103336ecfb48e2:log:32', 'hash': '0x923d9e7ec73621486ee38383d43385ef9ab833dc2f5b4c456f103336ecfb48e2', 'from': '0x55874d1c2bafb114d6ffa15dc1d16047cc9dd352', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 224.28440367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0538d6d72f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:11:23.000Z'}}, {'blockNum': '0x792a4f', 'uniqueId': '0x242c0b3ca9f790e5cfa24a8b287a4b2b8851edd7c0ffe270d368435fce59e219:log:33', 'hash': '0x242c0b3ca9f790e5cfa24a8b287a4b2b8851edd7c0ffe270d368435fce59e219', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0305f3ccb900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:11:23.000Z'}}, {'blockNum': '0x792a50', 'uniqueId': '0xa4fdebcca3cd6096a20c757e36c34c9b4468a459bbf3175a7704e2e7c46d5fcc:log:10', 'hash': '0xa4fdebcca3cd6096a20c757e36c34c9b4468a459bbf3175a7704e2e7c46d5fcc', 'from': '0x6ea91f3313bc8fa7b2b1249ccb2f2d0e4b097371', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 716.67122545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x10afb18171', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:12:04.000Z'}}, {'blockNum': '0x792a58', 'uniqueId': '0x659ad748c90fc9cdaa90afa1706671e7ce1099142e713d4df28608d11fe1de89:log:0', 'hash': '0x659ad748c90fc9cdaa90afa1706671e7ce1099142e713d4df28608d11fe1de89', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 29999.99998927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def2bcf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:13:31.000Z'}}, {'blockNum': '0x792a71', 'uniqueId': '0x8f499c8c0ac47ce9c86b6f5c90c0cb4915180baf14187c00f9316cb18966a9ec:log:2', 'hash': '0x8f499c8c0ac47ce9c86b6f5c90c0cb4915180baf14187c00f9316cb18966a9ec', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x86e53942a3815a7f87c150384fac6008f82e729b', 'value': 395.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09355d1b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:17:47.000Z'}}, {'blockNum': '0x792a7e', 'uniqueId': '0x0a1882f087f2114f0975e2d44acb19e95075d72b8423a544ffb5ef5c3c123138:log:6', 'hash': '0x0a1882f087f2114f0975e2d44acb19e95075d72b8423a544ffb5ef5c3c123138', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 40711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03b3e0782700', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:19:40.000Z'}}, {'blockNum': '0x792a80', 'uniqueId': '0x909132797579d2c66ba30d2fdb50a8563ac4ee0b11468a8199a2a19d2ee955b1:log:0', 'hash': '0x909132797579d2c66ba30d2fdb50a8563ac4ee0b11468a8199a2a19d2ee955b1', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 15643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016c378bbb00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:21:33.000Z'}}, {'blockNum': '0x792a82', 'uniqueId': '0xbec0560bf23ad6b46bb4fbdc11d1019a7b6613d536a9a4069c19c568035b5edb:log:29', 'hash': '0xbec0560bf23ad6b46bb4fbdc11d1019a7b6613d536a9a4069c19c568035b5edb', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29999.99998927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def2bcf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:22:04.000Z'}}, {'blockNum': '0x792a82', 'uniqueId': '0xf6f4a231ddf795dbd619082598968faeb8599e682e744d07c0b96898ad06aff3:log:34', 'hash': '0xf6f4a231ddf795dbd619082598968faeb8599e682e744d07c0b96898ad06aff3', 'from': '0x86e53942a3815a7f87c150384fac6008f82e729b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 395.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09355d1b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:22:04.000Z'}}, {'blockNum': '0x792a82', 'uniqueId': '0x94d83839b9a8dc3eebf02c65a15f11882e081ce04be849ae191bed7bcd6061c5:log:37', 'hash': '0x94d83839b9a8dc3eebf02c65a15f11882e081ce04be849ae191bed7bcd6061c5', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30551.3008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02c753f17300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:22:04.000Z'}}, {'blockNum': '0x792a9a', 'uniqueId': '0xe1d5c62dd0a8add16ac75b2fcdbab7793bdc88f67224f81b8787ae4202f0e74e:log:19', 'hash': '0xe1d5c62dd0a8add16ac75b2fcdbab7793bdc88f67224f81b8787ae4202f0e74e', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:27:35.000Z'}}, {'blockNum': '0x792aa1', 'uniqueId': '0x794691bf5d1e3a062f0bf3ce748e006bede3f2ce641161f04c82db9455ecea16:log:6', 'hash': '0x794691bf5d1e3a062f0bf3ce748e006bede3f2ce641161f04c82db9455ecea16', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 30233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02bfeab8f900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:29:26.000Z'}}, {'blockNum': '0x792aa1', 'uniqueId': '0x2df2b9b96ae3292ec63f0237b2363550cfbfef48bfc712b0966df6b1b6455aab:log:7', 'hash': '0x2df2b9b96ae3292ec63f0237b2363550cfbfef48bfc712b0966df6b1b6455aab', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 5263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7a89ecaf00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:29:26.000Z'}}, {'blockNum': '0x792aa2', 'uniqueId': '0xb049787c8de3b273c73383555beff58abaf7d1f2a05dd25926949e642323870a:log:3', 'hash': '0xb049787c8de3b273c73383555beff58abaf7d1f2a05dd25926949e642323870a', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xd264ccbb098203cf78a355e5d459405dc2b148b1', 'value': 62713.86230198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05b42bbf9db6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:29:54.000Z'}}, {'blockNum': '0x792aad', 'uniqueId': '0x880581578a6958cd68e019f76fb5be1b9a5864e25f4ae2ac544efd19f2f7ff38:log:39', 'hash': '0x880581578a6958cd68e019f76fb5be1b9a5864e25f4ae2ac544efd19f2f7ff38', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016c378bbb00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:31:47.000Z'}}, {'blockNum': '0x792ab2', 'uniqueId': '0xc1a999e988701ccaddd934b74c51c3dafc90333f769b33f361fe2406cb35197c:log:11', 'hash': '0xc1a999e988701ccaddd934b74c51c3dafc90333f769b33f361fe2406cb35197c', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 29999.99992108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def112c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:33:03.000Z'}}, {'blockNum': '0x792ab6', 'uniqueId': '0x06536997df92099b1c1f5b10a9305a7006646391e9579d92c81f68d41f1bd993:log:20', 'hash': '0x06536997df92099b1c1f5b10a9305a7006646391e9579d92c81f68d41f1bd993', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 77464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x070b996b9800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:33:52.000Z'}}, {'blockNum': '0x792abf', 'uniqueId': '0xb2ff3ca117f9756ff03ae25d25a34433d79c1a61b317af8742f5e1954feb6662:log:14', 'hash': '0xb2ff3ca117f9756ff03ae25d25a34433d79c1a61b317af8742f5e1954feb6662', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'value': 6605.31, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x99cab732c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:36:09.000Z'}}, {'blockNum': '0x792ac3', 'uniqueId': '0x6f7ccb55ca5cc1028f4aa36fd9c6de29e74bd4261ffc2f8687efe43c99a9eb5f:log:0', 'hash': '0x6f7ccb55ca5cc1028f4aa36fd9c6de29e74bd4261ffc2f8687efe43c99a9eb5f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x27e77608bdd0d9edfc04a8bc68a188e560395a3c', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:37:59.000Z'}}, {'blockNum': '0x792ac3', 'uniqueId': '0x62e0853fd9d0b9c199f689419afacdcb8365c283c7eb1e270050f57940a39c23:log:1', 'hash': '0x62e0853fd9d0b9c199f689419afacdcb8365c283c7eb1e270050f57940a39c23', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3a0b272f0d8740ae2426af32109904b3cb33148b', 'value': 131.63322637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0310985d0d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:37:59.000Z'}}, {'blockNum': '0x792ac7', 'uniqueId': '0xe6c2e9d84e254970efb34e53033b95e10950d8833b5188ccbfcd37e0d85f50ee:log:11', 'hash': '0xe6c2e9d84e254970efb34e53033b95e10950d8833b5188ccbfcd37e0d85f50ee', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 15867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01716eb09b00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:39:21.000Z'}}, {'blockNum': '0x792ac7', 'uniqueId': '0xf2785af197b40024e67269e7059f8355a1fb9d61bb67c3b744a905b55fc48bed:log:75', 'hash': '0xf2785af197b40024e67269e7059f8355a1fb9d61bb67c3b744a905b55fc48bed', 'from': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 59000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x055db3677800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:39:21.000Z'}}, {'blockNum': '0x792ac9', 'uniqueId': '0x569740de3be208e862c3d23546a90b8666e08d1bde0ddd89573101c209163fb4:log:0', 'hash': '0x569740de3be208e862c3d23546a90b8666e08d1bde0ddd89573101c209163fb4', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x161a8c7fd0c09c5312fc9cef2c0d98bef8620495', 'value': 5672.544151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8412ff76fc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:40:20.000Z'}}, {'blockNum': '0x792acf', 'uniqueId': '0x1d6e77a2976b25defdee58e12bb852066ee3520514069a6c36946a7acf1463a7:log:5', 'hash': '0x1d6e77a2976b25defdee58e12bb852066ee3520514069a6c36946a7acf1463a7', 'from': '0xd264ccbb098203cf78a355e5d459405dc2b148b1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 62713.86230198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05b42bbf9db6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:42:02.000Z'}}, {'blockNum': '0x792ad0', 'uniqueId': '0x1698aa5ea8bc6f539c7ac9d255c2ef7a1af825acb0756fc15f30756d163f2a9e:log:12', 'hash': '0x1698aa5ea8bc6f539c7ac9d255c2ef7a1af825acb0756fc15f30756d163f2a9e', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29999.99992108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def112c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:42:08.000Z'}}, {'blockNum': '0x792ae1', 'uniqueId': '0xa55552d143745e7d50fbc2cf85e1e43a53d345bdcba3e727e7d8a07f49c1c915:log:5', 'hash': '0xa55552d143745e7d50fbc2cf85e1e43a53d345bdcba3e727e7d8a07f49c1c915', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x6ea621245c2f33b62cd1542503e936c7229facab', 'value': 993.0888779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x171f455eee', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:47:02.000Z'}}, {'blockNum': '0x792ae2', 'uniqueId': '0x3596058a4ffd6ddc56a2440af37785d4284d24b382c5d4b0dde7c994d6536d77:log:34', 'hash': '0x3596058a4ffd6ddc56a2440af37785d4284d24b382c5d4b0dde7c994d6536d77', 'from': '0x27e77608bdd0d9edfc04a8bc68a188e560395a3c', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:47:10.000Z'}}, {'blockNum': '0x792ae6', 'uniqueId': '0xcfdbf63a0d468989bd498d4f5313e5930cee8481c4c228f5e0dac84fb0535471:log:20', 'hash': '0xcfdbf63a0d468989bd498d4f5313e5930cee8481c4c228f5e0dac84fb0535471', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4e9ce36e442e55ecd9025b9a6e0d88485d628a67', 'value': 612716.4059323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x37b9ea5f534e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:48:16.000Z'}}, {'blockNum': '0x792af6', 'uniqueId': '0xcee1a37b2d88de22b94d0d9c0d9b0944f608a4caa4bd7bd85936978165292c53:log:7', 'hash': '0xcee1a37b2d88de22b94d0d9c0d9b0944f608a4caa4bd7bd85936978165292c53', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01716eb09b00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:52:08.000Z'}}, {'blockNum': '0x792af6', 'uniqueId': '0x3536210993f17859cce113473cb3fa019b01cb2065d9334d6dc993fe9add1a88:log:17', 'hash': '0x3536210993f17859cce113473cb3fa019b01cb2065d9334d6dc993fe9add1a88', 'from': '0x3a0b272f0d8740ae2426af32109904b3cb33148b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 131.63322637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0310985d0d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:52:08.000Z'}}, {'blockNum': '0x792b01', 'uniqueId': '0x0fc46613baf813a5ad5608807df9e7a8cc7dc81b98510729c779c68453230e24:log:6', 'hash': '0x0fc46613baf813a5ad5608807df9e7a8cc7dc81b98510729c779c68453230e24', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1e8cf26e999325e2c2871903e695b5d0ada63c07', 'value': 706.59753993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1073a64809', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:54:54.000Z'}}, {'blockNum': '0x792b01', 'uniqueId': '0x8b4c5ba1cb5cac097417c9e41f66a3d89957ea3823df4c0c0914e6e5378365b7:log:17', 'hash': '0x8b4c5ba1cb5cac097417c9e41f66a3d89957ea3823df4c0c0914e6e5378365b7', 'from': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 11540, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010cafc29400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:54:54.000Z'}}, {'blockNum': '0x792b11', 'uniqueId': '0x04256eeaa9bdab755124da82bd514268e557d5ec2c79c4c3edd31874766a435c:log:11', 'hash': '0x04256eeaa9bdab755124da82bd514268e557d5ec2c79c4c3edd31874766a435c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb39123f52a10f234cad126be2d73a5641cb60297', 'value': 1250005.338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x71aff469f440', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:59:25.000Z'}}, {'blockNum': '0x792b1d', 'uniqueId': '0xb2ea68a555eeb63617359a7a26045e4c4ca1615bc13e78e58d1b5c345fadeb46:log:10', 'hash': '0xb2ea68a555eeb63617359a7a26045e4c4ca1615bc13e78e58d1b5c345fadeb46', 'from': '0x161a8c7fd0c09c5312fc9cef2c0d98bef8620495', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5672.544151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8412ff76fc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:02:04.000Z'}}, {'blockNum': '0x792b1f', 'uniqueId': '0x60f6ed88b9e230ab9787471638827370acff42c1316b3f1b33b33c0b9ea9c349:log:2', 'hash': '0x60f6ed88b9e230ab9787471638827370acff42c1316b3f1b33b33c0b9ea9c349', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6b1e236d19d00f83027274a98bf2b6a193c3047f', 'value': 6019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8c24092300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:02:40.000Z'}}, {'blockNum': '0x792b1f', 'uniqueId': '0xec811c90729b18176745d790e569f11c603aa9d1d7345618abca4beab1f1f342:log:3', 'hash': '0xec811c90729b18176745d790e569f11c603aa9d1d7345618abca4beab1f1f342', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 30325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02c20f15d500', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:02:40.000Z'}}, {'blockNum': '0x792b22', 'uniqueId': '0x3646acff6afc40ea60ab12158a68ccf362b4c415092e24b43eae48d3e48d2205:log:12', 'hash': '0x3646acff6afc40ea60ab12158a68ccf362b4c415092e24b43eae48d3e48d2205', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'value': 6689.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9bc01c21c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:03:32.000Z'}}, {'blockNum': '0x792b2b', 'uniqueId': '0x9c5083014e3be7d8ada330918519ec96c0e99b92c3539480f1bca6a58452fac0:log:34', 'hash': '0x9c5083014e3be7d8ada330918519ec96c0e99b92c3539480f1bca6a58452fac0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0c8e233b3ac2932b21ee21652f4ca7be31bb4a0e', 'value': 127.94235192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02fa988938', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:06:12.000Z'}}, {'blockNum': '0x792b49', 'uniqueId': '0x9db9e8df8f67d19bf64cb76c547eab1b5ffa8f39f10db440c501927118087708:log:11', 'hash': '0x9db9e8df8f67d19bf64cb76c547eab1b5ffa8f39f10db440c501927118087708', 'from': '0x6ea621245c2f33b62cd1542503e936c7229facab', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 993.0888779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x171f455eee', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:12:00.000Z'}}, {'blockNum': '0x792b49', 'uniqueId': '0x18e307332ce17d1fa60b01d66f4a62999ad0d6c970f05c31de5433a6217f33bd:log:13', 'hash': '0x18e307332ce17d1fa60b01d66f4a62999ad0d6c970f05c31de5433a6217f33bd', 'from': '0x1e8cf26e999325e2c2871903e695b5d0ada63c07', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 706.59753993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1073a64809', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:12:00.000Z'}}, {'blockNum': '0x792b4b', 'uniqueId': '0xaea4d2f82f92ee82781fc493b9a07a5bec55d277472a84db31eed7bfd562ef68:log:3', 'hash': '0xaea4d2f82f92ee82781fc493b9a07a5bec55d277472a84db31eed7bfd562ef68', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6ed2e79f37bd7f94cdac229da3ae1af978b3df79', 'value': 525.98059207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c3f16b0c7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:12:10.000Z'}}, {'blockNum': '0x792b4f', 'uniqueId': '0x75dee20087c09b2cc299afde092aebe611c94ed7368faf457da0f2ef35da7230:log:59', 'hash': '0x75dee20087c09b2cc299afde092aebe611c94ed7368faf457da0f2ef35da7230', 'from': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 60558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0581f9cece00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:13:31.000Z'}}, {'blockNum': '0x792b59', 'uniqueId': '0xec95f2c783b323d14f15b4a9f089b9f995840dccdf3bebae8dc57ee061233b95:log:1', 'hash': '0xec95f2c783b323d14f15b4a9f089b9f995840dccdf3bebae8dc57ee061233b95', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc10a4fc05d5d9354bd426b036eb8591a1e97cc98', 'value': 5427.36060417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7e5d971001', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:15:50.000Z'}}, {'blockNum': '0x792b74', 'uniqueId': '0x0fdfc5c331848b849cb2a1a0f1b807772e14febf7416a93cd7995e4187df6e37:log:8', 'hash': '0x0fdfc5c331848b849cb2a1a0f1b807772e14febf7416a93cd7995e4187df6e37', 'from': '0x0c8e233b3ac2932b21ee21652f4ca7be31bb4a0e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 127.94235192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02fa988938', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:22:02.000Z'}}, {'blockNum': '0x792b75', 'uniqueId': '0xeadbde2a6b6c2baca73839bbeebaee4fa73447d4b3d33705a9aa14e2599f3643:log:1', 'hash': '0xeadbde2a6b6c2baca73839bbeebaee4fa73447d4b3d33705a9aa14e2599f3643', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc6c847e6efca4b90a506213f1651918bdd72207d', 'value': 345.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x080b572980', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:22:25.000Z'}}, {'blockNum': '0x792b8c', 'uniqueId': '0xfa4357f37bf1d8be1179d13155e75248d943f780a3b552f96dc308554629c3dc:log:1', 'hash': '0xfa4357f37bf1d8be1179d13155e75248d943f780a3b552f96dc308554629c3dc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa063848e378b3e94dca8c7f6c6e49d1fd2daebb9', 'value': 395.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09355d1b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:28:14.000Z'}}, {'blockNum': '0x792b8c', 'uniqueId': '0xa32eb92b979f6798c07dca348508ea6eb2e635b7fecdda0e5e5adca7da9d9218:log:2', 'hash': '0xa32eb92b979f6798c07dca348508ea6eb2e635b7fecdda0e5e5adca7da9d9218', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x92ac87d2ff094bec6408974e47bb668cc98e936c', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:28:14.000Z'}}, {'blockNum': '0x792b93', 'uniqueId': '0xacdd6024361d176d9768822e171e130204ad72f8e003a2c8998a312a3bc84215:log:77', 'hash': '0xacdd6024361d176d9768822e171e130204ad72f8e003a2c8998a312a3bc84215', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 38073.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03767a20e380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:30:16.000Z'}}, {'blockNum': '0x792b99', 'uniqueId': '0x3cfbf63ebb0706bc1d21bbad62d06bd4fc44497b79bd8e9b8d954274ab047456:log:30', 'hash': '0x3cfbf63ebb0706bc1d21bbad62d06bd4fc44497b79bd8e9b8d954274ab047456', 'from': '0xc6c847e6efca4b90a506213f1651918bdd72207d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 345.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x080b572980', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:32:05.000Z'}}, {'blockNum': '0x792b99', 'uniqueId': '0xad7ecd79ecbcd7fd05e5159510ea362c0dfd66d36fbea4e6263776c7402bdefc:log:32', 'hash': '0xad7ecd79ecbcd7fd05e5159510ea362c0dfd66d36fbea4e6263776c7402bdefc', 'from': '0x6ed2e79f37bd7f94cdac229da3ae1af978b3df79', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 525.98059207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c3f16b0c7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:32:05.000Z'}}, {'blockNum': '0x792bab', 'uniqueId': '0x21f8e912f7d2ffa9a7c78ef0777b783399dfa7b14952e210669c2131e76d906b:log:39', 'hash': '0x21f8e912f7d2ffa9a7c78ef0777b783399dfa7b14952e210669c2131e76d906b', 'from': '0x92ac87d2ff094bec6408974e47bb668cc98e936c', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:35:50.000Z'}}, {'blockNum': '0x792bb2', 'uniqueId': '0xb406f9c66f5cb451c45e2760186f920f4b501f7f32c047029d7b98a919d62a41:log:82', 'hash': '0xb406f9c66f5cb451c45e2760186f920f4b501f7f32c047029d7b98a919d62a41', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1ba7938d9d7e5b4ffb87d03714e34352c2995a56', 'value': 365.08132642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08800de522', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:38:13.000Z'}}, {'blockNum': '0x792bbd', 'uniqueId': '0x5c3683bad1b4f8233b74adc667f0173f48d850efbf1b08e6b2f3868c7e7f3dcc:log:2', 'hash': '0x5c3683bad1b4f8233b74adc667f0173f48d850efbf1b08e6b2f3868c7e7f3dcc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x92ac87d2ff094bec6408974e47bb668cc98e936c', 'value': 30939.88057963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02d0600f236b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:42:22.000Z'}}, {'blockNum': '0x792bd1', 'uniqueId': '0x51e8757f298f354a20fb68638c7f4ecae5458231a1fe9384e636eb883936a24a:log:0', 'hash': '0x51e8757f298f354a20fb68638c7f4ecae5458231a1fe9384e636eb883936a24a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb712e8c735371550e257979be1ca1cfdf27b6dd8', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:46:29.000Z'}}, {'blockNum': '0x792bdc', 'uniqueId': '0x3d5898164f8c2e04c1579f818a490c7c38ce4580effa5632f13c3f0136c9ac70:log:31', 'hash': '0x3d5898164f8c2e04c1579f818a490c7c38ce4580effa5632f13c3f0136c9ac70', 'from': '0x92ac87d2ff094bec6408974e47bb668cc98e936c', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 30939.88057963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02d0600f236b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:48:36.000Z'}}, {'blockNum': '0x792bee', 'uniqueId': '0x387c7c725e62e46f6bc6839594eb14ec776380c0f90e9ed4720cd69cffef40be:log:36', 'hash': '0x387c7c725e62e46f6bc6839594eb14ec776380c0f90e9ed4720cd69cffef40be', 'from': '0xb712e8c735371550e257979be1ca1cfdf27b6dd8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:51:54.000Z'}}, {'blockNum': '0x792bee', 'uniqueId': '0xbafdea12dba260d633775299fb4ce3479fa01e20186ea7798ede0cd62896fecc:log:40', 'hash': '0xbafdea12dba260d633775299fb4ce3479fa01e20186ea7798ede0cd62896fecc', 'from': '0x1ba7938d9d7e5b4ffb87d03714e34352c2995a56', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 365.08132642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08800de522', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:51:54.000Z'}}, {'blockNum': '0x792bf4', 'uniqueId': '0xc95eb9a6fb86dc3d75e7441c7caea6d194b6adc4d88ecb91a18a910e33508272:log:2', 'hash': '0xc95eb9a6fb86dc3d75e7441c7caea6d194b6adc4d88ecb91a18a910e33508272', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 27557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02819c850500', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:53:22.000Z'}}, {'blockNum': '0x792c04', 'uniqueId': '0x06cbfbb9874a3a43c4ec5aadbb7466bab22a424788650cac26229e353c713254:log:6', 'hash': '0x06cbfbb9874a3a43c4ec5aadbb7466bab22a424788650cac26229e353c713254', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x8b026d118d895cf20efa5a64da7c306b40f89de0', 'value': 125.40599966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02eb7a5e9e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:56:05.000Z'}}, {'blockNum': '0x792c04', 'uniqueId': '0xebade0a0227b76ecd74a45c5d03b8973850b05b1d0a0f620de66505f97ed3b80:log:7', 'hash': '0xebade0a0227b76ecd74a45c5d03b8973850b05b1d0a0f620de66505f97ed3b80', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf2c7e3abd40b9a0b8bb7d72aa5617f0e0fbd2258', 'value': 434.45295868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a1d8a9afc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:56:05.000Z'}}, {'blockNum': '0x792c0b', 'uniqueId': '0x5f8feb3b3353dd3d6c4b7594ea497776b7f205bc0f223fb71cb727368fc3e652:log:1', 'hash': '0x5f8feb3b3353dd3d6c4b7594ea497776b7f205bc0f223fb71cb727368fc3e652', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 16642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01837a0cc200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:58:49.000Z'}}, {'blockNum': '0x792c10', 'uniqueId': '0xb94920a96d3f1242f8888e1a0d05d2b0e128bc364381a7b687d6852163c21e6f:log:4', 'hash': '0xb94920a96d3f1242f8888e1a0d05d2b0e128bc364381a7b687d6852163c21e6f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 26610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x026b8ff5b200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:59:40.000Z'}}, {'blockNum': '0x792c10', 'uniqueId': '0x3df35104b1179d49374fa4f0e0295aa3266f126291a0817ca1462cbd8d0cfcfc:log:5', 'hash': '0x3df35104b1179d49374fa4f0e0295aa3266f126291a0817ca1462cbd8d0cfcfc', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 26059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x025ebbbe6b00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:59:40.000Z'}}, {'blockNum': '0x792c17', 'uniqueId': '0x04684620cc10997fd5d0bfe3388a1c662d6a2821b144ca68b7c35aa779e31515:log:6', 'hash': '0x04684620cc10997fd5d0bfe3388a1c662d6a2821b144ca68b7c35aa779e31515', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x67f20ed505b407fdc3ac156e1395d47548c69eaf', 'value': 195.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x048d455380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:02:37.000Z'}}, {'blockNum': '0x792c1d', 'uniqueId': '0x74df1d7829e95de71ec1022751353c95fc6e5f706d06a90fe54e9abf9014e358:log:102', 'hash': '0x74df1d7829e95de71ec1022751353c95fc6e5f706d06a90fe54e9abf9014e358', 'from': '0x9ca37e5508045476ee9a4972178c3e2dcc9829a1', 'to': '0xd6a9bcf1533dd37bbb5ebdda0509c654d6c7de11', 'value': 554.99999935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0cec0ecabf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:04:08.000Z'}}, {'blockNum': '0x792c21', 'uniqueId': '0xa636fec4f8909a8cd7fe0f949d56bd0f8ee48ced4a3c37c8fb48dbca313d3e10:log:0', 'hash': '0xa636fec4f8909a8cd7fe0f949d56bd0f8ee48ced4a3c37c8fb48dbca313d3e10', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6ee0f8f4836406c896f01b1968caa148af3553ca', 'value': 314.03558064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x074fcc44b0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:04:36.000Z'}}, {'blockNum': '0x792c42', 'uniqueId': '0xcb0d7e831174cffc5248fe5654680c0557a6fa89d23280211b0ba69fb81b2174:log:23', 'hash': '0xcb0d7e831174cffc5248fe5654680c0557a6fa89d23280211b0ba69fb81b2174', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01837a0cc200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:12:12.000Z'}}, {'blockNum': '0x792c42', 'uniqueId': '0x303537ef3c01bbf1f04af1a439d507273d2dc0179fdaf4918dca34046e4e5dfe:log:29', 'hash': '0x303537ef3c01bbf1f04af1a439d507273d2dc0179fdaf4918dca34046e4e5dfe', 'from': '0x67f20ed505b407fdc3ac156e1395d47548c69eaf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 195.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x048d455380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:12:12.000Z'}}, {'blockNum': '0x792c49', 'uniqueId': '0xea2847403b0eefe1622c262fd0df3536599f29868120139005368e8de0b80532:log:21', 'hash': '0xea2847403b0eefe1622c262fd0df3536599f29868120139005368e8de0b80532', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 10668.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf865371c80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:13:14.000Z'}}, {'blockNum': '0x792c4f', 'uniqueId': '0x22fe3e438ab87f2d4c99638e32b33e6bb66ae7d4eeb170d271c641279e3cb6c3:log:0', 'hash': '0x22fe3e438ab87f2d4c99638e32b33e6bb66ae7d4eeb170d271c641279e3cb6c3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7f7ad1713527e716395b380aec29c851990f4ff1', 'value': 795.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12858cab80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:14:42.000Z'}}, {'blockNum': '0x792c55', 'uniqueId': '0x7068cbd8e17d5ba92bf9866188c0f6a0593ddcb48324abc10bd766c4b249cacc:log:52', 'hash': '0x7068cbd8e17d5ba92bf9866188c0f6a0593ddcb48324abc10bd766c4b249cacc', 'from': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 54167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04ed2c7ab700', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:15:52.000Z'}}, {'blockNum': '0x792c58', 'uniqueId': '0x0cd045943bf66cd549e5491aea60f7c72186c35c94ffe20918f7980c97502975:log:3', 'hash': '0x0cd045943bf66cd549e5491aea60f7c72186c35c94ffe20918f7980c97502975', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xfdad6d327d37cd27f772b0817160a8a42062ba0a', 'value': 295.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06e1513780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:16:43.000Z'}}, {'blockNum': '0x792c62', 'uniqueId': '0xbe7e8e7f894dc625fbbf04ebd4bb99ef5469c68965fa2e5602eb6c4ac17f034c:log:1', 'hash': '0xbe7e8e7f894dc625fbbf04ebd4bb99ef5469c68965fa2e5602eb6c4ac17f034c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4dfef98f8cd7d6c5fd4f75f955a7c3242fd8da0d', 'value': 53.09905191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x013c7eb927', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:18:39.000Z'}}, {'blockNum': '0x792c74', 'uniqueId': '0xca4146be34a0ccc8b303061e0207a6f5abd64f7e801b59f37fe0aaa76a3e1628:log:52', 'hash': '0xca4146be34a0ccc8b303061e0207a6f5abd64f7e801b59f37fe0aaa76a3e1628', 'from': '0x6ee0f8f4836406c896f01b1968caa148af3553ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 314.03558064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x074fcc44b0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:21:54.000Z'}}, {'blockNum': '0x792c74', 'uniqueId': '0x6f16eb686b594bad04e8c9d18fcc64dc11664ad1e0844a728c55bf4d91f2d24d:log:119', 'hash': '0x6f16eb686b594bad04e8c9d18fcc64dc11664ad1e0844a728c55bf4d91f2d24d', 'from': '0xd6a9bcf1533dd37bbb5ebdda0509c654d6c7de11', 'to': '0x110327c7174f93252c92ed43edea694afd29433d', 'value': 554.99999935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0cec0ecabf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:21:54.000Z'}}, {'blockNum': '0x792c76', 'uniqueId': '0x73f101b74ea087d774cc14cc074968c176eecce37206b81f885d79d499ee85a7:log:4', 'hash': '0x73f101b74ea087d774cc14cc074968c176eecce37206b81f885d79d499ee85a7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 23489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0222e559a100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:22:46.000Z'}}, {'blockNum': '0x792c95', 'uniqueId': '0x4d910b9424e1677a37eb4a0fe8f85279aedd3e8cbd3753710910778a8c45bce2:log:1', 'hash': '0x4d910b9424e1677a37eb4a0fe8f85279aedd3e8cbd3753710910778a8c45bce2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x8e2f3fa86f4ade18cfb311643f96cb3209783c27', 'value': 1730.05908694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2847f4aad6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:28:53.000Z'}}, {'blockNum': '0x792c95', 'uniqueId': '0x636bdb9da0a88631852c44a7b5e744061e40d4d6d6d1f10d807383cced0ab1be:log:2', 'hash': '0x636bdb9da0a88631852c44a7b5e744061e40d4d6d6d1f10d807383cced0ab1be', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe12f0bd338750fdf8a94ea98483f5306d1aa32b4', 'value': 469.86335326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0af09a945e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:28:53.000Z'}}, {'blockNum': '0x792c99', 'uniqueId': '0xdc0dcc4b162025d9b286c14ddf595cd942bb0516b57bf389578b490a34aec210:log:2', 'hash': '0xdc0dcc4b162025d9b286c14ddf595cd942bb0516b57bf389578b490a34aec210', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'value': 7351.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xab2a5ac780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:30:24.000Z'}}, {'blockNum': '0x792caa', 'uniqueId': '0x049b8ed9461f040f25a5bbe8b105da900c2c28542e97848c7e04c97d237bf63b:log:54', 'hash': '0x049b8ed9461f040f25a5bbe8b105da900c2c28542e97848c7e04c97d237bf63b', 'from': '0x25ef5af887f35451fab30fd8041508bd7b8925af', 'to': '0x719410f2f7c7b0653d16b120f6ee911a465b3380', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:32:54.000Z'}}, {'blockNum': '0x792cb0', 'uniqueId': '0x3618bdbe145d88a05462f538554ed49ed92a9336d73c97b9aaa4d17e6d4b6034:log:5', 'hash': '0x3618bdbe145d88a05462f538554ed49ed92a9336d73c97b9aaa4d17e6d4b6034', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc0f47de6b70e7ed4fead84ad9807433b1d7cac3b', 'value': 445.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a5f630d80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:34:58.000Z'}}, {'blockNum': '0x792cb0', 'uniqueId': '0xa1c54c8fac89d9f511084340da4817f2ef21ef679057ca617b997bfd0e88a648:log:8', 'hash': '0xa1c54c8fac89d9f511084340da4817f2ef21ef679057ca617b997bfd0e88a648', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:34:58.000Z'}}, {'blockNum': '0x792cc2', 'uniqueId': '0x83fc7c8c9189d5a61954efdaaa43b9cbe5cc085c8f87d071aaff52ea1776c54d:log:4', 'hash': '0x83fc7c8c9189d5a61954efdaaa43b9cbe5cc085c8f87d071aaff52ea1776c54d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7364afd6b7baf366f50a76c4726f5119f88175e9', 'value': 65.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0186691180', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:38:58.000Z'}}, {'blockNum': '0x792cd2', 'uniqueId': '0x686480d83b68bf1a30e4bdb4efc5560281c983c201bf34033310bb9b6a876af0:log:15', 'hash': '0x686480d83b68bf1a30e4bdb4efc5560281c983c201bf34033310bb9b6a876af0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9929b131e15eb2fe6ce1aa1dbd4bcfb9b358e8fc', 'value': 15.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5c631f80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:42:33.000Z'}}, {'blockNum': '0x792cd8', 'uniqueId': '0x4ac0557a82ee5d9576d9c2b8dea7b967ddf6fa331c06275423bc1831750da358:log:6', 'hash': '0x4ac0557a82ee5d9576d9c2b8dea7b967ddf6fa331c06275423bc1831750da358', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 23256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x021d788fd800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:43:30.000Z'}}, {'blockNum': '0x792cde', 'uniqueId': '0xfba90f87e6174b7caa16823c3e2599c3e28dffdd00b1bacd332a0413ba6c84cc:log:3', 'hash': '0xfba90f87e6174b7caa16823c3e2599c3e28dffdd00b1bacd332a0413ba6c84cc', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 31639.1585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02e0a8149110', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:45:12.000Z'}}, {'blockNum': '0x792cde', 'uniqueId': '0x9075f5c5906bd3ae5204c4e37ef71bc042d91c5c64cd69d4c3cfd9bc90cfe2d6:log:5', 'hash': '0x9075f5c5906bd3ae5204c4e37ef71bc042d91c5c64cd69d4c3cfd9bc90cfe2d6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe332ad0f7f8de2eab9f61d8b05fb4489bb34ba23', 'value': 2165.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x326b62c580', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:45:12.000Z'}}, {'blockNum': '0x792cde', 'uniqueId': '0xa0a5053e6e3d69c732ebd5a1885a778b2df2df3e579f5ab1752f874fe7ebb9e3:log:6', 'hash': '0xa0a5053e6e3d69c732ebd5a1885a778b2df2df3e579f5ab1752f874fe7ebb9e3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9929b131e15eb2fe6ce1aa1dbd4bcfb9b358e8fc', 'value': 625.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0e90454180', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:45:12.000Z'}}, {'blockNum': '0x792ce1', 'uniqueId': '0x4b6cb1cda2205e10d43196dc9e5a98174f7e76f6bde91bce32f0c291ab8d5a10:log:10', 'hash': '0x4b6cb1cda2205e10d43196dc9e5a98174f7e76f6bde91bce32f0c291ab8d5a10', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 27993.25697408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x028bc4d05580', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:45:31.000Z'}}, {'blockNum': '0x792d04', 'uniqueId': '0x4586252af445780f8bff53564068ea2ae119fc94832cc7db2e282cb70e9f00e0:log:21', 'hash': '0x4586252af445780f8bff53564068ea2ae119fc94832cc7db2e282cb70e9f00e0', 'from': '0x030e37ddd7df1b43db172b23916d523f1599c6cb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb5e620f48000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:51:55.000Z'}}, {'blockNum': '0x792d04', 'uniqueId': '0x055f2d2b825ecec955b244d66e2e7046eeab525b10b3eab7096b0acb33a7b414:log:71', 'hash': '0x055f2d2b825ecec955b244d66e2e7046eeab525b10b3eab7096b0acb33a7b414', 'from': '0xe332ad0f7f8de2eab9f61d8b05fb4489bb34ba23', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2165.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x326b62c580', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:51:55.000Z'}}, {'blockNum': '0x792d04', 'uniqueId': '0x38b4160e496aeb54b1fe01ceee63fa1ae68c98198cb1a1161480e5e92a721fa7:log:78', 'hash': '0x38b4160e496aeb54b1fe01ceee63fa1ae68c98198cb1a1161480e5e92a721fa7', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27993.25697408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x028bc4d05580', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:51:55.000Z'}}, {'blockNum': '0x792d05', 'uniqueId': '0xcfa45142d3bbd206b069c69bf97ea75a8b08ca90062b4e068b1c14fbf2ef1768:log:35', 'hash': '0xcfa45142d3bbd206b069c69bf97ea75a8b08ca90062b4e068b1c14fbf2ef1768', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x72d7d9678bb0b2794fd035dbea7754ed536fc100', 'value': 305.49048761, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x071cdd7db9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:52:56.000Z'}}, {'blockNum': '0x792d2a', 'uniqueId': '0xe0d26f124f134d86d042a275d0af6e9eddf2800035e5e1817b8373440b030034:log:17', 'hash': '0xe0d26f124f134d86d042a275d0af6e9eddf2800035e5e1817b8373440b030034', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 208809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12fdb6a08900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:00:34.000Z'}}, {'blockNum': '0x792d35', 'uniqueId': '0xfdcb19f9d4506bf6b5df084c18ff1672a9701cc3d69ae0d24042fe92f854a064:log:12', 'hash': '0xfdcb19f9d4506bf6b5df084c18ff1672a9701cc3d69ae0d24042fe92f854a064', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31639.1585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02e0a8149110', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:01:55.000Z'}}, {'blockNum': '0x792d3d', 'uniqueId': '0xf0eec8a62aa86c82ad01e1ae487f20d9549a630779a1d9adff01e0e569484c68:log:15', 'hash': '0xf0eec8a62aa86c82ad01e1ae487f20d9549a630779a1d9adff01e0e569484c68', 'from': '0x5f76e07ec6b2f57c20e95742e2d5d06cb4a379ff', 'to': '0x22fd399349fcee8e4473c25e114d9def64804421', 'value': 1897.19261651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2c2c2631d3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:03:31.000Z'}}, {'blockNum': '0x792d3d', 'uniqueId': '0x4d01afa9af64503a413cc2a88dfb6d30a0a381d194be72f5cfcc6e48a76e0952:log:26', 'hash': '0x4d01afa9af64503a413cc2a88dfb6d30a0a381d194be72f5cfcc6e48a76e0952', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x685e8f54da558c8f4fb3060d130b82820624f029', 'value': 17869.053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01a00bdb0c20', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:03:31.000Z'}}, {'blockNum': '0x792d41', 'uniqueId': '0xc3daf961cebfa98b75dc4b53648c14dc029318837a18246983a0855f6112b34f:log:1', 'hash': '0xc3daf961cebfa98b75dc4b53648c14dc029318837a18246983a0855f6112b34f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x10fe0dc466fc61f3077d4a2fff8c0d4c7a32cc63', 'value': 395.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09355d1b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:05:08.000Z'}}, {'blockNum': '0x792d41', 'uniqueId': '0x1f2e8c2217f3fac1bb35bb53f3980cdf3d40dd8e9445b6e5bb2d80e8698cc390:log:2', 'hash': '0x1f2e8c2217f3fac1bb35bb53f3980cdf3d40dd8e9445b6e5bb2d80e8698cc390', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6eed48485096393c2871ed8b0c6e242a699e25ee', 'value': 25.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x97fde980', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:05:08.000Z'}}, {'blockNum': '0x792d50', 'uniqueId': '0x869ab7bc1a04326023b09dacbb21162192c26af1652c6876a97abc0e77ab039e:log:2', 'hash': '0x869ab7bc1a04326023b09dacbb21162192c26af1652c6876a97abc0e77ab039e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12309ce54000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:08:13.000Z'}}, {'blockNum': '0x792d56', 'uniqueId': '0x9cd5b063be4263a83883181e36ffca4697f0d29915b2191ce0e2c2ae0e22e70e:log:3', 'hash': '0x9cd5b063be4263a83883181e36ffca4697f0d29915b2191ce0e2c2ae0e22e70e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6eed48485096393c2871ed8b0c6e242a699e25ee', 'value': 659.84491592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f5cfb7048', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:08:54.000Z'}}, {'blockNum': '0x792d61', 'uniqueId': '0xa49f5090cb0ce67973fe8c53d68640c031c052bb6269b2cfb6b45d54991bc753:log:6', 'hash': '0xa49f5090cb0ce67973fe8c53d68640c031c052bb6269b2cfb6b45d54991bc753', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'value': 6631.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9a66d1f780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:12:36.000Z'}}, {'blockNum': '0x792d61', 'uniqueId': '0x54cf830bee00523a9dbb61560f009d31f274abe3b6ece2b3155ebfa56c78a7ec:log:47', 'hash': '0x54cf830bee00523a9dbb61560f009d31f274abe3b6ece2b3155ebfa56c78a7ec', 'from': '0x10fe0dc466fc61f3077d4a2fff8c0d4c7a32cc63', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 395.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09355d1b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:12:36.000Z'}}, {'blockNum': '0x792d61', 'uniqueId': '0xd506f647edea64538e0935b74eba36fadd35ef853baa937d5c9eaae1b20a87e9:log:50', 'hash': '0xd506f647edea64538e0935b74eba36fadd35ef853baa937d5c9eaae1b20a87e9', 'from': '0x72d7d9678bb0b2794fd035dbea7754ed536fc100', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 305.49048761, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x071cdd7db9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:12:36.000Z'}}, {'blockNum': '0x792d67', 'uniqueId': '0xdbb8e5f1c42086d3a6b428b8203e3e0e3fbc70fa1c59bd8a2ed91f52b4216db5:log:108', 'hash': '0xdbb8e5f1c42086d3a6b428b8203e3e0e3fbc70fa1c59bd8a2ed91f52b4216db5', 'from': '0x22fd399349fcee8e4473c25e114d9def64804421', 'to': '0x6ed899ebd52824c0d5cff78b42a1f4dbec8efb79', 'value': 62.8178189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01766c6282', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:13:40.000Z'}}, {'blockNum': '0x792d6e', 'uniqueId': '0x97863eb61d0082c169fd6ab12aac5397261dce7712b1e0733e850ab605992e63:log:16', 'hash': '0x97863eb61d0082c169fd6ab12aac5397261dce7712b1e0733e850ab605992e63', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6ee5ba9605514bbec30a9719cf4263746b644b28', 'value': 140.275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03441aa9e0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:15:21.000Z'}}, {'blockNum': '0x792d8b', 'uniqueId': '0xf54806ce8b949e64bb1496c569fd9ee66bdc303883b985b2ec62ff6e9fc9bbe5:log:82', 'hash': '0xf54806ce8b949e64bb1496c569fd9ee66bdc303883b985b2ec62ff6e9fc9bbe5', 'from': '0x22fd399349fcee8e4473c25e114d9def64804421', 'to': '0x6ed899ebd52824c0d5cff78b42a1f4dbec8efb79', 'value': 50265.28095999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0492546beeff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:21:18.000Z'}}, {'blockNum': '0x792d8f', 'uniqueId': '0x4d8dfcd997ede98b4edd02cca3c1c6fd4bed91afdd4c536d43254bf8efb82455:log:2', 'hash': '0x4d8dfcd997ede98b4edd02cca3c1c6fd4bed91afdd4c536d43254bf8efb82455', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 24050.91322914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x022ffa9d2c22', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:21:58.000Z'}}, {'blockNum': '0x792d95', 'uniqueId': '0xaa7e4e97b0b97493873ab25b2ade9bf747b00d7591d589fb37a7e2b6d847f6cb:log:6', 'hash': '0xaa7e4e97b0b97493873ab25b2ade9bf747b00d7591d589fb37a7e2b6d847f6cb', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9929b131e15eb2fe6ce1aa1dbd4bcfb9b358e8fc', 'value': 1646.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2655e79e80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:23:08.000Z'}}, {'blockNum': '0x792d96', 'uniqueId': '0xedd79b967aa4049b4f2623df33b7b953757a973c1bd4b97216bc53fd1364f94e:log:1', 'hash': '0xedd79b967aa4049b4f2623df33b7b953757a973c1bd4b97216bc53fd1364f94e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x452a2b6ad78758b303b1d8da2758ad3cd220dcd3', 'value': 464.31008332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0acf80f64c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:23:18.000Z'}}, {'blockNum': '0x792d9f', 'uniqueId': '0xf7f9f09eb2e4f4283d089a7e285fcc3233b276970d6da20d0032c761cd121e5a:log:0', 'hash': '0xf7f9f09eb2e4f4283d089a7e285fcc3233b276970d6da20d0032c761cd121e5a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x001efe4d15849bfb406de0b98ded85a139974728', 'value': 209.69576417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04e1e257e1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:25:17.000Z'}}, {'blockNum': '0x792da6', 'uniqueId': '0x2df5381c57ec7a1e7ebba1b0eac3786434cf1c8f4c3aecf32a46a9318633c8f4:log:2', 'hash': '0x2df5381c57ec7a1e7ebba1b0eac3786434cf1c8f4c3aecf32a46a9318633c8f4', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 15503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0168f514af00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:26:38.000Z'}}, {'blockNum': '0x792dab', 'uniqueId': '0xf4382684e08a6b7741b11245805a4b207f6abeacb30eb6300f6da2eabf62f912:log:3', 'hash': '0xf4382684e08a6b7741b11245805a4b207f6abeacb30eb6300f6da2eabf62f912', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 9248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd752602000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:27:38.000Z'}}, {'blockNum': '0x792dac', 'uniqueId': '0x60491c0b2369b0978145334dc1fedda097a1bb59423f3865212fe3273de3f329:log:25', 'hash': '0x60491c0b2369b0978145334dc1fedda097a1bb59423f3865212fe3273de3f329', 'from': '0x1f9522de481203fae4d50f5fe0f051ed37107336', 'to': '0x5895c97f5d1a9b514ddaa2e7d700fec077dc01d3', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:27:40.000Z'}}, {'blockNum': '0x792dad', 'uniqueId': '0x0eccee18d2af64221678be95938f6cf9f42a00d94bab0b9d75a6eb6b607789f4:log:13', 'hash': '0x0eccee18d2af64221678be95938f6cf9f42a00d94bab0b9d75a6eb6b607789f4', 'from': '0xded30c523adab7e658d3d321462a15088b52ca06', 'to': '0xc6210fff4db2d15e947cabe95d3e39bac3a54df9', 'value': 12997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x012e9c282500', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:27:53.000Z'}}, {'blockNum': '0x792db7', 'uniqueId': '0xa3aee238f8635ceed0a7a53d33b7b6e0ea57870ec018bc9a8199c9ffb3e29c90:log:77', 'hash': '0xa3aee238f8635ceed0a7a53d33b7b6e0ea57870ec018bc9a8199c9ffb3e29c90', 'from': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 200010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1230d8800a00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:30:50.000Z'}}, {'blockNum': '0x792dbe', 'uniqueId': '0x72610d03d4aa9f745e5fafbeaef69913df62bccd0424f6367309100a5bb61929:log:1', 'hash': '0x72610d03d4aa9f745e5fafbeaef69913df62bccd0424f6367309100a5bb61929', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6ee364fe67cb79e1323fbef50de704b61854f063', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:31:22.000Z'}}, {'blockNum': '0x792dc1', 'uniqueId': '0x5ba7d62071b12e3bb1432f7d1f64121ec397bf81147d1e899b7134a56d12cc2c:log:8', 'hash': '0x5ba7d62071b12e3bb1432f7d1f64121ec397bf81147d1e899b7134a56d12cc2c', 'from': '0x5895c97f5d1a9b514ddaa2e7d700fec077dc01d3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:31:42.000Z'}}, {'blockNum': '0x792dc4', 'uniqueId': '0x1a3f6bed31aefff161444175db6b387bc938de19f0318658c3c38178baf60b51:log:18', 'hash': '0x1a3f6bed31aefff161444175db6b387bc938de19f0318658c3c38178baf60b51', 'from': '0x6ee5ba9605514bbec30a9719cf4263746b644b28', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 140.275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03441aa9e0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:32:10.000Z'}}, {'blockNum': '0x792dc4', 'uniqueId': '0x7e38f72355941b9b12a19925756c613540897f0c82a387f122fce7df5fca650c:log:32', 'hash': '0x7e38f72355941b9b12a19925756c613540897f0c82a387f122fce7df5fca650c', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24050.91322914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x022ffa9d2c22', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:32:10.000Z'}}, {'blockNum': '0x792dc4', 'uniqueId': '0x9cc5f1f998de69b07c167f1cc3f57edc90c886b06b19be4ba899f04ec59858e0:log:33', 'hash': '0x9cc5f1f998de69b07c167f1cc3f57edc90c886b06b19be4ba899f04ec59858e0', 'from': '0x001efe4d15849bfb406de0b98ded85a139974728', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 209.69576417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04e1e257e1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:32:10.000Z'}}, {'blockNum': '0x792dc4', 'uniqueId': '0x8156fc1e64569d4f8032e23c4dd10add1e30965612569d32f7b0d5cd16044d98:log:34', 'hash': '0x8156fc1e64569d4f8032e23c4dd10add1e30965612569d32f7b0d5cd16044d98', 'from': '0x452a2b6ad78758b303b1d8da2758ad3cd220dcd3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 464.31008332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0acf80f64c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:32:10.000Z'}}, {'blockNum': '0x792dc4', 'uniqueId': '0x53af09507189df4a149360f11368b98b7a6b42e2486f9f17f5568afb564c89c4:log:35', 'hash': '0x53af09507189df4a149360f11368b98b7a6b42e2486f9f17f5568afb564c89c4', 'from': '0x6eed48485096393c2871ed8b0c6e242a699e25ee', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 685.34491592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ff4f959c8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:32:10.000Z'}}, {'blockNum': '0x792dc4', 'uniqueId': '0x7a9a78bcc3493f9a58c67195d592470e4d577010b9a8bc0550680fd935c5ce37:log:36', 'hash': '0x7a9a78bcc3493f9a58c67195d592470e4d577010b9a8bc0550680fd935c5ce37', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0168f514af00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:32:10.000Z'}}, {'blockNum': '0x792dce', 'uniqueId': '0x4bd597f2081f331dd68e0227be9e1e60ed2c25b87e3c04f92efdd1692acb29bd:log:39', 'hash': '0x4bd597f2081f331dd68e0227be9e1e60ed2c25b87e3c04f92efdd1692acb29bd', 'from': '0x1f9522de481203fae4d50f5fe0f051ed37107336', 'to': '0x5895c97f5d1a9b514ddaa2e7d700fec077dc01d3', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0df8475800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:34:31.000Z'}}, {'blockNum': '0x792dcf', 'uniqueId': '0x94ccabda12819ea9153edb2f927aa41047758d23ac6e905dfc13bab6a730ae92:log:113', 'hash': '0x94ccabda12819ea9153edb2f927aa41047758d23ac6e905dfc13bab6a730ae92', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 2084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x30859ba400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:34:34.000Z'}}, {'blockNum': '0x792de3', 'uniqueId': '0xa7ec2981f3b8a72ba8aabbd45d55d9c24225152d950dba1db98f3a62da4c1441:log:2', 'hash': '0xa7ec2981f3b8a72ba8aabbd45d55d9c24225152d950dba1db98f3a62da4c1441', 'from': '0x5895c97f5d1a9b514ddaa2e7d700fec077dc01d3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0df8475800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:39:01.000Z'}}, {'blockNum': '0x792de5', 'uniqueId': '0x0b91a00a7aa0dda5d3f5596783b73480691cee1c1d01795e050d60058c42539f:log:9', 'hash': '0x0b91a00a7aa0dda5d3f5596783b73480691cee1c1d01795e050d60058c42539f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x2f610fd9f56817a6150294d33048f476ed8446d5', 'value': 123.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02e01e0b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:39:42.000Z'}}, {'blockNum': '0x792ded', 'uniqueId': '0xafc9c66a93a6342f2ee4b13bc349cf75ffe29409c151af35f896d475f4c5355f:log:26', 'hash': '0xafc9c66a93a6342f2ee4b13bc349cf75ffe29409c151af35f896d475f4c5355f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6eed315884320719570586d1343ff506f54ea8a1', 'value': 85.25000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01fc212d41', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:41:15.000Z'}}, {'blockNum': '0x792ded', 'uniqueId': '0x4738560572d6cb499e1d45f03c8ba047aa6144979e0d1b4a3fd4e8d928916619:log:85', 'hash': '0x4738560572d6cb499e1d45f03c8ba047aa6144979e0d1b4a3fd4e8d928916619', 'from': '0x6ed899ebd52824c0d5cff78b42a1f4dbec8efb79', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50328.09877889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0493cad85181', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:41:15.000Z'}}, {'blockNum': '0x792dee', 'uniqueId': '0xe949565b362a1b5587c10d013c5b07540e6780747fd0e6aabf02450490c110eb:log:32', 'hash': '0xe949565b362a1b5587c10d013c5b07540e6780747fd0e6aabf02450490c110eb', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd752602000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:42:10.000Z'}}, {'blockNum': '0x792df6', 'uniqueId': '0xbc06be3e0850647c15836fb752e5db5093842b146adbd4afdc209a503dcb56f9:log:85', 'hash': '0xbc06be3e0850647c15836fb752e5db5093842b146adbd4afdc209a503dcb56f9', 'from': '0x5b8a2980f00ee53c35298001a22c3c668b12d3be', 'to': '0xc6210fff4db2d15e947cabe95d3e39bac3a54df9', 'value': 7005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa3190dbd00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:44:41.000Z'}}, {'blockNum': '0x792df8', 'uniqueId': '0xfcf8f1c9618f04cf6da3daf0c255e6a5d5501eef056057a848f6f7d0b15e2d46:log:7', 'hash': '0xfcf8f1c9618f04cf6da3daf0c255e6a5d5501eef056057a848f6f7d0b15e2d46', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0246139ca800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:45:08.000Z'}}, {'blockNum': '0x792e01', 'uniqueId': '0x0816b0c42b60b556d97e8044b68fe1cfd77865f4cc47676968db5ac15af5dae2:log:15', 'hash': '0x0816b0c42b60b556d97e8044b68fe1cfd77865f4cc47676968db5ac15af5dae2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 28368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02947e74d000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:48:25.000Z'}}, {'blockNum': '0x792e03', 'uniqueId': '0xaf8a80959735040240b25c1c1808926f51f5168025d92850ea152e58ad948464:log:3', 'hash': '0xaf8a80959735040240b25c1c1808926f51f5168025d92850ea152e58ad948464', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6eeb6d1f9f8d4b43b8e6b57f0ead6e505ea16ed2', 'value': 1995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e761b5b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:48:54.000Z'}}, {'blockNum': '0x792e12', 'uniqueId': '0xdbd7e55cc43e9a414ad8a1d744d62e715d0d08e9852c05ab64bbba0cd737968e:log:14', 'hash': '0xdbd7e55cc43e9a414ad8a1d744d62e715d0d08e9852c05ab64bbba0cd737968e', 'from': '0x6ee364fe67cb79e1323fbef50de704b61854f063', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:52:02.000Z'}}]}}
Number of returned transfers: 773
Answer is complete
symbol BLZ
group CCB
date 2019-06-24
hour 18:30
exchange binance
Name: 371, dtype: object
HERE
Symbol: BLZ, Contract: 0x5732046a883704404f284ce41ffadd5b007fd668
Datetime timestamps: 2019-06-24 18:30:00 2019-06-24 06:30:00 2019-06-25 06:30:00
Unix timestamps: 1561350600.0 1561437000.0
Hex Block Numbers: 0x7a5a98 0x7a73ac
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7a5aa6', 'uniqueId': '0x67d1f1eda156a4487b3a5bffba4533c69ba8fb6a7d7e491116133837d754123b:log:14', 'hash': '0x67d1f1eda156a4487b3a5bffba4533c69ba8fb6a7d7e491116133837d754123b', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x0e1f1a23ae7ca219f172abfac8ee98b01a39950f', 'value': 15827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0359fbbf64f5cb6c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T04:31:52.000Z'}}, {'blockNum': '0x7a5aba', 'uniqueId': '0xa5e32c5d1a0029fda79fac904f07c134aa9e639fdbe905a43a4997d823244ee6:log:42', 'hash': '0xa5e32c5d1a0029fda79fac904f07c134aa9e639fdbe905a43a4997d823244ee6', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'value': 4142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xe089cc0ebe53f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T04:36:47.000Z'}}, {'blockNum': '0x7a5abd', 'uniqueId': '0x9fcacb0ea99fa79844dfe20f5a022e086272318acbd915e2217bf3d95958aa41:log:37', 'hash': '0x9fcacb0ea99fa79844dfe20f5a022e086272318acbd915e2217bf3d95958aa41', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x79aef4c3a7d0ef899f04a96f40ace2cd477c2405', 'value': 11215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025ff763e86225dc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T04:37:23.000Z'}}, {'blockNum': '0x7a5ac7', 'uniqueId': '0x9bb3e70207bc1752e798852132a96bedb8b7a636bf2f239b57f31752e6c07942:log:15', 'hash': '0x9bb3e70207bc1752e798852132a96bedb8b7a636bf2f239b57f31752e6c07942', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2e5ca6450d046bc7ab4b76df6a8cca60c3f34354', 'value': 2850, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x9a7fb1fc0d87480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T04:38:43.000Z'}}, {'blockNum': '0x7a5aca', 'uniqueId': '0xd5e571d59ed5af2b2c3eeac11fc730a8e5c84b4b4089a356d22cb54c9cd6e6e5:log:11', 'hash': '0xd5e571d59ed5af2b2c3eeac11fc730a8e5c84b4b4089a356d22cb54c9cd6e6e5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 30046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065ccc0331782ab80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T04:39:40.000Z'}}, {'blockNum': '0x7a5aca', 'uniqueId': '0xd230a14eece6e8e4ec0850bad57f6e609514323f36150c2753caf1e6c7be6095:log:12', 'hash': '0xd230a14eece6e8e4ec0850bad57f6e609514323f36150c2753caf1e6c7be6095', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 36569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07be68d285225bc40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T04:39:40.000Z'}}, {'blockNum': '0x7a5aca', 'uniqueId': '0x357a4a28ff1cb20feac192b8126d8597bb1e7a4ec08baaf51f6e566e83f4e5fe:log:13', 'hash': '0x357a4a28ff1cb20feac192b8126d8597bb1e7a4ec08baaf51f6e566e83f4e5fe', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'value': 54620, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b90f4c522d65bf00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T04:39:40.000Z'}}, {'blockNum': '0x7a5ad2', 'uniqueId': '0x897b4ab0c1ad4f28c8991b0b3fca9c9bfbc03743427278696901317bad0dac01:log:7', 'hash': '0x897b4ab0c1ad4f28c8991b0b3fca9c9bfbc03743427278696901317bad0dac01', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'value': 143214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1e53a580cbb548f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T04:41:49.000Z'}}, {'blockNum': '0x7a5b03', 'uniqueId': '0x521b21733d46e322a39d9773700333a070037116b8d201f6e31a2f8929b37fdd:log:17', 'hash': '0x521b21733d46e322a39d9773700333a070037116b8d201f6e31a2f8929b37fdd', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x0e1f1a23ae7ca219f172abfac8ee98b01a39950f', 'value': 7694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01a117b30b70df780000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T04:53:26.000Z'}}, {'blockNum': '0x7a5b04', 'uniqueId': '0x89a0756afeea5c36979f82dba0ec6b3ba9776f3c8887e5f31ff5e0e86f1b8830:log:34', 'hash': '0x89a0756afeea5c36979f82dba0ec6b3ba9776f3c8887e5f31ff5e0e86f1b8830', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'value': 5658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0132b885fea198280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T04:53:35.000Z'}}, {'blockNum': '0x7a5b0d', 'uniqueId': '0x65fe42fc6ed19f6655447d828f1bfad1aab3763ce73114c80812fbf1b6403d95:log:11', 'hash': '0x65fe42fc6ed19f6655447d828f1bfad1aab3763ce73114c80812fbf1b6403d95', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2e5ca6450d046bc7ab4b76df6a8cca60c3f34354', 'value': 29014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0624da22ad3d5f980000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T04:56:54.000Z'}}, {'blockNum': '0x7a5b60', 'uniqueId': '0x8e34e9d74deb421303a81acca6a32b983420833b2c30bfc7eb894a6527c2c01a:log:134', 'hash': '0x8e34e9d74deb421303a81acca6a32b983420833b2c30bfc7eb894a6527c2c01a', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 13796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02ebe1f5e9a8c9100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T05:17:04.000Z'}}, {'blockNum': '0x7a5b60', 'uniqueId': '0x7c2d42e4a3da91233e5129b6f5bb262c6d25dd25f3645692f51ec3b8f78594c5:log:135', 'hash': '0x7c2d42e4a3da91233e5129b6f5bb262c6d25dd25f3645692f51ec3b8f78594c5', 'from': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 13185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02cac2a1dae045640000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T05:17:04.000Z'}}, {'blockNum': '0x7a5b60', 'uniqueId': '0x9399ab872487fe9b827a697a888ff358d1e14fc570533c52c43ba540e937f602:log:136', 'hash': '0x9399ab872487fe9b827a697a888ff358d1e14fc570533c52c43ba540e937f602', 'from': '0x0e1f1a23ae7ca219f172abfac8ee98b01a39950f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 24975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0549e5c020c764dc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T05:17:04.000Z'}}, {'blockNum': '0x7a5b60', 'uniqueId': '0xc762f656c72f09e46b3d2479df33d4e304d0e6faf2754c234fc81ff610629c63:log:137', 'hash': '0xc762f656c72f09e46b3d2479df33d4e304d0e6faf2754c234fc81ff610629c63', 'from': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 48377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a3e85bda3ab40440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T05:17:04.000Z'}}, {'blockNum': '0x7a5b61', 'uniqueId': '0xcf46309392b3c3bf61bfbe30279a7bd2303708d182c4c733e5073945d9453236:log:103', 'hash': '0xcf46309392b3c3bf61bfbe30279a7bd2303708d182c4c733e5073945d9453236', 'from': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 33202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0707e24f9043c7880000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T05:17:30.000Z'}}, {'blockNum': '0x7a5b61', 'uniqueId': '0x3fe92898e4259085b5c8f65d209a6b0f7f5a926aa4ff90d00e0d15f59a4c57f5:log:104', 'hash': '0x3fe92898e4259085b5c8f65d209a6b0f7f5a926aa4ff90d00e0d15f59a4c57f5', 'from': '0x2e5ca6450d046bc7ab4b76df6a8cca60c3f34354', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 2319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x7db697056952dc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T05:17:30.000Z'}}, {'blockNum': '0x7a5bcc', 'uniqueId': '0x27ff7fce87d7caa2e287fb8d40e10cd4e1aceec806967706be4077215e4892be:log:23', 'hash': '0x27ff7fce87d7caa2e287fb8d40e10cd4e1aceec806967706be4077215e4892be', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xf358caa9bca436dd08608805e5316eae391ee054', 'value': 35904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x079a5c17ec7489000000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T05:43:31.000Z'}}, {'blockNum': '0x7a5be5', 'uniqueId': '0xdb972498947adeff081156faf60c6ce8d7b252700d7acc6edaa8418de34ee8b3:log:79', 'hash': '0xdb972498947adeff081156faf60c6ce8d7b252700d7acc6edaa8418de34ee8b3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'value': 11205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025f6c9cc55d9bf40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T05:48:19.000Z'}}, {'blockNum': '0x7a5c15', 'uniqueId': '0x851571974abf819af35af9b442ee895268323a2a319f1c717261a42ae71e0d66:log:54', 'hash': '0x851571974abf819af35af9b442ee895268323a2a319f1c717261a42ae71e0d66', 'from': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025f6c9cc55d9bf40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T05:59:47.000Z'}}, {'blockNum': '0x7a5c18', 'uniqueId': '0x9bc5ca8445f27bb6006cd8c6c721d39b30edf8a873356218b914648e12eb3d2c:log:42', 'hash': '0x9bc5ca8445f27bb6006cd8c6c721d39b30edf8a873356218b914648e12eb3d2c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x697e376b5b02a6c7eef23f31b373577fdf6057cc', 'value': 99998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x152ce70673e3a7b80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T06:01:24.000Z'}}, {'blockNum': '0x7a5ca5', 'uniqueId': '0xa49c0e808566b480d4d4f97c0124e0ddcacc441c386c2ed72a9d8f5829e7f66f:log:95', 'hash': '0xa49c0e808566b480d4d4f97c0124e0ddcacc441c386c2ed72a9d8f5829e7f66f', 'from': '0x6c85927742738a6c2f87f3de3e37c83c0c160873', 'to': '0x0869e28542226743a5fa2aac2b554a39578f36f0', 'value': 438.18133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x17c0fcce0d02372000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T06:32:19.000Z'}}, {'blockNum': '0x7a5ce1', 'uniqueId': '0x1a36cdda9dec5de7de4ec0f083db65e2f46a42fede1c73089cac80ff36451cbe:log:22', 'hash': '0x1a36cdda9dec5de7de4ec0f083db65e2f46a42fede1c73089cac80ff36451cbe', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 30123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0660f89a258183cc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T06:45:30.000Z'}}, {'blockNum': '0x7a5cf2', 'uniqueId': '0x07a01b8e486add63af45e57deff6bf2a0306ba4205acdb6d3f68aae47b4e169f:log:33', 'hash': '0x07a01b8e486add63af45e57deff6bf2a0306ba4205acdb6d3f68aae47b4e169f', 'from': '0x29585ea10ab4f66bb3c223177daae992db593428', 'to': '0x74d02596a08f77539cec9a4ed414eee67b8cdb86', 'value': 12842.47, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02b83112d6ad82d70000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T06:48:17.000Z'}}, {'blockNum': '0x7a5d2a', 'uniqueId': '0x4cb3fa80e8be08aaeae7adc89701a75a74907a77a3ecd1aa89f9c2cfb48cacb3:log:15', 'hash': '0x4cb3fa80e8be08aaeae7adc89701a75a74907a77a3ecd1aa89f9c2cfb48cacb3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x528025fffd4d7493a2dd479372e2a82642f97157', 'value': 1618.46662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x57bcbc7fe2e71fc000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T06:59:00.000Z'}}, {'blockNum': '0x7a5d2a', 'uniqueId': '0xd656f1e8d49a3c4920e6ccef72a359b22dfd6d788a7635e3edf837a3c47279d2:log:49', 'hash': '0xd656f1e8d49a3c4920e6ccef72a359b22dfd6d788a7635e3edf837a3c47279d2', 'from': '0x74d02596a08f77539cec9a4ed414eee67b8cdb86', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12842.47, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02b83112d6ad82d70000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T06:59:00.000Z'}}, {'blockNum': '0x7a5dcc', 'uniqueId': '0x24ca25f50818fa89db620db1c9f54b98e5db5ea081dc60782f5fbad51f231a39:log:84', 'hash': '0x24ca25f50818fa89db620db1c9f54b98e5db5ea081dc60782f5fbad51f231a39', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 6488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x015fb716591a4e600000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T07:41:00.000Z'}}, {'blockNum': '0x7a5de6', 'uniqueId': '0x8f2fefd1103388f4af8bf744a3a0b93ce57308231538bfa251fd34414179db60:log:3', 'hash': '0x8f2fefd1103388f4af8bf744a3a0b93ce57308231538bfa251fd34414179db60', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 38846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0839d88b911238380000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T07:47:28.000Z'}}, {'blockNum': '0x7a5e70', 'uniqueId': '0x3ef7595484a4d72cee1143fa609dfaecc839ec664212dfad5ad531b2cd7a650d:log:48', 'hash': '0x3ef7595484a4d72cee1143fa609dfaecc839ec664212dfad5ad531b2cd7a650d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 3340, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xb50fcfafebecb00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T08:14:23.000Z'}}, {'blockNum': '0x7a6073', 'uniqueId': '0x8488a486cf025156e171e3b2c4db98149046eae79ceeebc3eda57f6977c8729e:log:13', 'hash': '0x8488a486cf025156e171e3b2c4db98149046eae79ceeebc3eda57f6977c8729e', 'from': '0x5c8fc58ba1e0fea5bde1a3d5f35e13de18ddc385', 'to': '0xbf99b3a57e38d72a83b9f2ac7017ea6566272ea8', 'value': 5104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0114b03a9dd959c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T09:59:25.000Z'}}, {'blockNum': '0x7a60a0', 'uniqueId': '0x4fa8717cfeea898bc3fd714eb6beb268dae18e00521ba1ae2854a85002b964c9:log:20', 'hash': '0x4fa8717cfeea898bc3fd714eb6beb268dae18e00521ba1ae2854a85002b964c9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0f2265f4c57f04bccd1b6400e95a7ee6edc20b26', 'value': 2101.366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x71ea4fbb7c5b7f0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T10:12:16.000Z'}}, {'blockNum': '0x7a6139', 'uniqueId': '0x98280ae2bc06692013f41f5efde4ad6a6b7d66c30335bea32f190db8db75331f:log:33', 'hash': '0x98280ae2bc06692013f41f5efde4ad6a6b7d66c30335bea32f190db8db75331f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 12971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02bf28c920b257cc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T10:46:41.000Z'}}, {'blockNum': '0x7a613e', 'uniqueId': '0xc7a9bc3d05437089971e040e17da67fa6440c4747be03ef70ffed038d3ed2bca:log:76', 'hash': '0xc7a9bc3d05437089971e040e17da67fa6440c4747be03ef70ffed038d3ed2bca', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 31692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06b606d9e8966fb00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T10:47:37.000Z'}}, {'blockNum': '0x7a614f', 'uniqueId': '0xdd9d405ebf4a03e4dcd7225a32a5e9a0b6024a60aacc93c7a57166a19bba572f:log:19', 'hash': '0xdd9d405ebf4a03e4dcd7225a32a5e9a0b6024a60aacc93c7a57166a19bba572f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 5975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0143e7c83b17defc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T10:51:40.000Z'}}, {'blockNum': '0x7a6172', 'uniqueId': '0x69384f54bc56853945e309f56a808cab29726644d60b3865e813fff737e03cb0:log:24', 'hash': '0x69384f54bc56853945e309f56a808cab29726644d60b3865e813fff737e03cb0', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0143e7c83b17defc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T10:59:09.000Z'}}, {'blockNum': '0x7a6172', 'uniqueId': '0x219d430db147edb9fb456e284b218a1d6e22b7ea43943125e84e7ebf617e3cad:log:26', 'hash': '0x219d430db147edb9fb456e284b218a1d6e22b7ea43943125e84e7ebf617e3cad', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06b606d9e8966fb00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T10:59:09.000Z'}}, {'blockNum': '0x7a6172', 'uniqueId': '0x48184baddef0de694435bc6b2eb2ddd76b3a079bf69619277e30fa0d2be1f8ff:log:29', 'hash': '0x48184baddef0de694435bc6b2eb2ddd76b3a079bf69619277e30fa0d2be1f8ff', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02bf28c920b257cc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T10:59:09.000Z'}}, {'blockNum': '0x7a617c', 'uniqueId': '0x01cea594b69ad6a64dab4c62a48e1a7b9cb7a7e85943de498f45b157f19c4b3d:log:14', 'hash': '0x01cea594b69ad6a64dab4c62a48e1a7b9cb7a7e85943de498f45b157f19c4b3d', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'value': 3060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xa5e207db6cd7500000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T11:00:55.000Z'}}, {'blockNum': '0x7a617c', 'uniqueId': '0x44962bcc0d2de51631c10ed16366de6cd1afff4c8de886fadaa4beb8ff6af59e:log:130', 'hash': '0x44962bcc0d2de51631c10ed16366de6cd1afff4c8de886fadaa4beb8ff6af59e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 222200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x2f0d7c736df1d4e00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T11:00:55.000Z'}}, {'blockNum': '0x7a619b', 'uniqueId': '0x2a9c7c11840d2b8c479931e3c242a45e2829d931a06d608a87253ed18c472737:log:17', 'hash': '0x2a9c7c11840d2b8c479931e3c242a45e2829d931a06d608a87253ed18c472737', 'from': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xa5e207db6cd7500000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T11:08:54.000Z'}}, {'blockNum': '0x7a61c4', 'uniqueId': '0x38374b0f0e1d4cc7a1cd9cfb6a0ce7af51e3f5375078b06135dc8f8489fa79c3:log:41', 'hash': '0x38374b0f0e1d4cc7a1cd9cfb6a0ce7af51e3f5375078b06135dc8f8489fa79c3', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 222200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x2f0d7c736df1d4e00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T11:18:59.000Z'}}, {'blockNum': '0x7a61f4', 'uniqueId': '0xb7549f5831e956dfc01da0f6ebd58334ae6bf4e89fe7ac440133ea8513521d11:log:22', 'hash': '0xb7549f5831e956dfc01da0f6ebd58334ae6bf4e89fe7ac440133ea8513521d11', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 9460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0200d3df66c59b500000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T11:29:18.000Z'}}, {'blockNum': '0x7a6221', 'uniqueId': '0x4e7cddb8b8ced2b522ef0b232c1dd9cfd451559194a510a6584b225645203a39:log:157', 'hash': '0x4e7cddb8b8ced2b522ef0b232c1dd9cfd451559194a510a6584b225645203a39', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0200d3df66c59b500000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T11:39:10.000Z'}}, {'blockNum': '0x7a6247', 'uniqueId': '0x63af377b42d7632423be7516d6673ee3d7b8c023fc9789c1171cf5529f76921b:log:93', 'hash': '0x63af377b42d7632423be7516d6673ee3d7b8c023fc9789c1171cf5529f76921b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 4885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0108d0fe522927340000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T11:47:00.000Z'}}, {'blockNum': '0x7a6273', 'uniqueId': '0xf20ffa3d9f46602483ac97f631cd730624c3bb66a829ebae2b8fdd3b779fc181:log:37', 'hash': '0xf20ffa3d9f46602483ac97f631cd730624c3bb66a829ebae2b8fdd3b779fc181', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0x2ad603904851b49b85deaf1d9a2a6f08a900d556', 'value': 1370.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x4a5132b59b86c30000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T11:58:08.000Z'}}, {'blockNum': '0x7a62a6', 'uniqueId': '0x06ad286bfce85878249fdc68f458103e5d8cf2309c2d5d643956f35088212736:log:43', 'hash': '0x06ad286bfce85878249fdc68f458103e5d8cf2309c2d5d643956f35088212736', 'from': '0x2ad603904851b49b85deaf1d9a2a6f08a900d556', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1370.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x4a5132b59b86c30000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:09:34.000Z'}}, {'blockNum': '0x7a62ae', 'uniqueId': '0xbb900bf7eecb4352c872a569206220a11700c450a32ac82a5a1c7dbed201458b:log:150', 'hash': '0xbb900bf7eecb4352c872a569206220a11700c450a32ac82a5a1c7dbed201458b', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'value': 3083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xa721384590e14c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:11:37.000Z'}}, {'blockNum': '0x7a62cb', 'uniqueId': '0xe719edda8337878079b75f87fb4e9af6fba105f939ad8e3119c3b3eaf3437975:log:39', 'hash': '0xe719edda8337878079b75f87fb4e9af6fba105f939ad8e3119c3b3eaf3437975', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 20160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0444e033c3be03000000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:18:39.000Z'}}, {'blockNum': '0x7a62ce', 'uniqueId': '0xbf1ac0a49b5e917c229e8a7446c5e8542659bcce5644bd5d634438dc34d10b95:log:32', 'hash': '0xbf1ac0a49b5e917c229e8a7446c5e8542659bcce5644bd5d634438dc34d10b95', 'from': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xa721384590e14c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:19:08.000Z'}}, {'blockNum': '0x7a62da', 'uniqueId': '0x5fc9639fb5ad346590a4bbe266ad9cf705e37598e654e439b40bf7f8935f9ac8:log:23', 'hash': '0x5fc9639fb5ad346590a4bbe266ad9cf705e37598e654e439b40bf7f8935f9ac8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe00c0e7401a7a14a994e851b8c8be51bc33facd9', 'value': 8312.553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01c29fd8bfb4e7aa8000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:22:51.000Z'}}, {'blockNum': '0x7a62e2', 'uniqueId': '0x8db33a81f0b313e39cd20e97fefc95135814e4654ea155d6f2f9521c6e38a89d:log:63', 'hash': '0x8db33a81f0b313e39cd20e97fefc95135814e4654ea155d6f2f9521c6e38a89d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 236700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x321f885fc5a6f0f00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:25:19.000Z'}}, {'blockNum': '0x7a62e2', 'uniqueId': '0x01e65c2e409ab1148ec7aab4de03c69f79fce96e98853f9c2390b086c93fc9fd:log:64', 'hash': '0x01e65c2e409ab1148ec7aab4de03c69f79fce96e98853f9c2390b086c93fc9fd', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'value': 10777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x024838eb5101c0c40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:25:19.000Z'}}, {'blockNum': '0x7a62e3', 'uniqueId': '0x32b602cb80ce533fdbcc611a5616754b97c0b8b26b7f1c108d159abbd08f7bf9:log:2', 'hash': '0x32b602cb80ce533fdbcc611a5616754b97c0b8b26b7f1c108d159abbd08f7bf9', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 15003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x032d507352b3018c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:25:48.000Z'}}, {'blockNum': '0x7a62e6', 'uniqueId': '0xf1f9b33a3ff014556185ebec33bdecebda9158bbd15de6d0f50e7a2afc0872d0:log:38', 'hash': '0xf1f9b33a3ff014556185ebec33bdecebda9158bbd15de6d0f50e7a2afc0872d0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 31058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0693a8556fa9e2080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:26:42.000Z'}}, {'blockNum': '0x7a62f7', 'uniqueId': '0x8cc5edde850858d9c932bab774d1fb858e8d79d24a8183fd8b6c86f92d54d69f:log:122', 'hash': '0x8cc5edde850858d9c932bab774d1fb858e8d79d24a8183fd8b6c86f92d54d69f', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0444e033c3be03000000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:32:00.000Z'}}, {'blockNum': '0x7a62f8', 'uniqueId': '0xbd29fef38652406eaa6b267d89fc72feb80446b20ca41b252a62f422e7979469:log:47', 'hash': '0xbd29fef38652406eaa6b267d89fc72feb80446b20ca41b252a62f422e7979469', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 35798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07949d0c461139980000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:32:19.000Z'}}, {'blockNum': '0x7a6313', 'uniqueId': '0x707d13883d9a34b4a546fa01a7ae1c2251c5f166e4094b99bf581effa48a626c:log:38', 'hash': '0x707d13883d9a34b4a546fa01a7ae1c2251c5f166e4094b99bf581effa48a626c', 'from': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 236700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x321f885fc5a6f0f00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:38:57.000Z'}}, {'blockNum': '0x7a6314', 'uniqueId': '0xa2d69fcd9334df4d2d29dd25c50212576a9b6bedb8e81d7a89547272188205ea:log:30', 'hash': '0xa2d69fcd9334df4d2d29dd25c50212576a9b6bedb8e81d7a89547272188205ea', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0693a8556fa9e2080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:39:19.000Z'}}, {'blockNum': '0x7a6314', 'uniqueId': '0xd19428f83af96be748696318bf46cce7ab476ff88dbc2b60b47389410d54b0c5:log:67', 'hash': '0xd19428f83af96be748696318bf46cce7ab476ff88dbc2b60b47389410d54b0c5', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07949d0c461139980000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:39:19.000Z'}}, {'blockNum': '0x7a6314', 'uniqueId': '0x51aed50a74d1be71d53ac4ea7fe521ce45d67ad41493059ad5b97e0e91a2c0a1:log:138', 'hash': '0x51aed50a74d1be71d53ac4ea7fe521ce45d67ad41493059ad5b97e0e91a2c0a1', 'from': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x024838eb5101c0c40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:39:19.000Z'}}, {'blockNum': '0x7a6317', 'uniqueId': '0x0dc94bad84bc778c9b41e394136e2449efba294e28d6894c7e721607e474ffab:log:12', 'hash': '0x0dc94bad84bc778c9b41e394136e2449efba294e28d6894c7e721607e474ffab', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 119362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1946a08221052fc80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:39:58.000Z'}}, {'blockNum': '0x7a635c', 'uniqueId': '0xac9ac82595934f24e74d1af2fb4bf8b87c1e693c84e67564c434ca3a26d06bf2:log:46', 'hash': '0xac9ac82595934f24e74d1af2fb4bf8b87c1e693c84e67564c434ca3a26d06bf2', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 118824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x192976422b7767a00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:56:41.000Z'}}, {'blockNum': '0x7a63b4', 'uniqueId': '0xe972e3a7651eca14892cca401ad5ddd82560bb681d200e18f5f9ea7d2cec1c64:log:33', 'hash': '0xe972e3a7651eca14892cca401ad5ddd82560bb681d200e18f5f9ea7d2cec1c64', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 143790, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1e72df1bdfede9f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:15:33.000Z'}}, {'blockNum': '0x7a63da', 'uniqueId': '0x4d6d1955268a9563fe0205f66876ed938a294bfe136310fcef5177a6d8491a6b:log:10', 'hash': '0x4d6d1955268a9563fe0205f66876ed938a294bfe136310fcef5177a6d8491a6b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 104907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x16370515e6e4804c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:25:04.000Z'}}, {'blockNum': '0x7a63eb', 'uniqueId': '0x2bb1af9ca236d8ea538d6491aa0ecb99a0781b973ee1bc98fd22f4b42b0a65c6:log:15', 'hash': '0x2bb1af9ca236d8ea538d6491aa0ecb99a0781b973ee1bc98fd22f4b42b0a65c6', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 143790, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1e72df1bdfede9f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:29:05.000Z'}}, {'blockNum': '0x7a63ef', 'uniqueId': '0xf07b3644d8f9666aa132a085203197519fbf82746217a6ef56ce8e5fef8c7409:log:9', 'hash': '0xf07b3644d8f9666aa132a085203197519fbf82746217a6ef56ce8e5fef8c7409', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xeb40f3721210584791f0b4899e4c028dc6efb22a', 'value': 158965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x21a98289f35562b40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:29:39.000Z'}}, {'blockNum': '0x7a63f2', 'uniqueId': '0xed23c9645b1d9212cd46d3670b4c6ca46dfdfc9c4150b7818f9c7498d27c0bac:log:20', 'hash': '0xed23c9645b1d9212cd46d3670b4c6ca46dfdfc9c4150b7818f9c7498d27c0bac', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0xf4343d247267345d15d777af633c2c477ae6a43a', 'value': 1112.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3c5548b05692ff0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:30:19.000Z'}}, {'blockNum': '0x7a6404', 'uniqueId': '0xaa3b6379ed3f6a4068a435a0f05d530f4d349ab6699c92c9a8de7cc81db9b81c:log:18', 'hash': '0xaa3b6379ed3f6a4068a435a0f05d530f4d349ab6699c92c9a8de7cc81db9b81c', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0x598ab3235e54363c8d3f1452044f25de66a65584', 'value': 1122.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3cd8915c378a3286a0', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:33:21.000Z'}}, {'blockNum': '0x7a6414', 'uniqueId': '0x0d3add977ca538fee6a678b68a3675bb9c5c663bf42b08e148862cc92b036d9a:log:49', 'hash': '0x0d3add977ca538fee6a678b68a3675bb9c5c663bf42b08e148862cc92b036d9a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 49866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a8f3dc44e9bdce80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:36:22.000Z'}}, {'blockNum': '0x7a6414', 'uniqueId': '0xd3c355406e9d30f9aee79dcc8395ac1fb483e8348099e60b8e6341216db01f19:log:102', 'hash': '0xd3c355406e9d30f9aee79dcc8395ac1fb483e8348099e60b8e6341216db01f19', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6839bec04ddc0ced9599f68cf461e3ab2cc9099a', 'value': 4473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xf27b584907c2440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:36:22.000Z'}}, {'blockNum': '0x7a6417', 'uniqueId': '0x2c5061eb5543abe62f8f0fa4cae67007407a2a785c344b7b6c9394a69d8f411b:log:23', 'hash': '0x2c5061eb5543abe62f8f0fa4cae67007407a2a785c344b7b6c9394a69d8f411b', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'value': 18828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03fcaafd24fb0eb00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:37:13.000Z'}}, {'blockNum': '0x7a641e', 'uniqueId': '0x1b7e644208b04e435ae23a90df24843b19e1c66c96ad2e41b363cdabd52f189e:log:91', 'hash': '0x1b7e644208b04e435ae23a90df24843b19e1c66c96ad2e41b363cdabd52f189e', 'from': '0x57ef2c2558d74ff2654e0587e8e17c2926ddd091', 'to': '0x10cdff110da4cb9a498539ff296c01306a08df43', 'value': 41185.901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08b8b131db3e8d848000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:38:57.000Z'}}, {'blockNum': '0x7a6420', 'uniqueId': '0xaf6b717c7b5591df4b9c315301ecaf3fd8237f92e22045bbf963121e097666a2:log:23', 'hash': '0xaf6b717c7b5591df4b9c315301ecaf3fd8237f92e22045bbf963121e097666a2', 'from': '0xf4343d247267345d15d777af633c2c477ae6a43a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1112.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3c5548b05692ff0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:39:16.000Z'}}, {'blockNum': '0x7a642a', 'uniqueId': '0x2034dcdbe6ff4dba8b0d3dce52067edd38da55888574769800cf537d11bc04f4:log:59', 'hash': '0x2034dcdbe6ff4dba8b0d3dce52067edd38da55888574769800cf537d11bc04f4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6b1e236d19d00f83027274a98bf2b6a193c3047f', 'value': 2508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x87f57de80be7b00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:41:03.000Z'}}, {'blockNum': '0x7a642d', 'uniqueId': '0xc2bf7ad303403c258cc47daaa928e0ce71923f0fc22a56d0f5973ac87a0130d6:log:22', 'hash': '0xc2bf7ad303403c258cc47daaa928e0ce71923f0fc22a56d0f5973ac87a0130d6', 'from': '0x270bc663ff2e51d7d22ad2a8c9d73e6260c82958', 'to': '0x2744f7ea2ac1cb7dbd097fd2bfe2e8ace6be17c0', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x25f273933db5700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:42:43.000Z'}}, {'blockNum': '0x7a642e', 'uniqueId': '0x8406cf3d1db4f4a775ad84c488ea5df86775919dde6d173da9548d56b71d73b4:log:12', 'hash': '0x8406cf3d1db4f4a775ad84c488ea5df86775919dde6d173da9548d56b71d73b4', 'from': '0x598ab3235e54363c8d3f1452044f25de66a65584', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1122.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3cd8915c378a3286a0', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:43:06.000Z'}}, {'blockNum': '0x7a6430', 'uniqueId': '0x494bd50c0e91eee40cb1d5ae933279fd1176b3c996587c4372b18c51d15d2a92:log:29', 'hash': '0x494bd50c0e91eee40cb1d5ae933279fd1176b3c996587c4372b18c51d15d2a92', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 38489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08267e2cc889c9c40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:43:18.000Z'}}, {'blockNum': '0x7a6454', 'uniqueId': '0xf91758521d7672e196ed2e40bf36c4ab34458f4ffa2cab59586eba9295a2401f:log:37', 'hash': '0xf91758521d7672e196ed2e40bf36c4ab34458f4ffa2cab59586eba9295a2401f', 'from': '0x10cdff110da4cb9a498539ff296c01306a08df43', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41185.901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08b8b131db3e8d848000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:49:13.000Z'}}, {'blockNum': '0x7a6454', 'uniqueId': '0xd93dcabfe80b36e3a26d86670b716ab481c5ff61643d45cb1429755d8ac42a21:log:44', 'hash': '0xd93dcabfe80b36e3a26d86670b716ab481c5ff61643d45cb1429755d8ac42a21', 'from': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03fcaafd24fb0eb00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:49:13.000Z'}}, {'blockNum': '0x7a6454', 'uniqueId': '0x59fdabd5668a0e0122a5f66c0cd54b5cda052fa28e60243c0399b7728fb3fceb:log:47', 'hash': '0x59fdabd5668a0e0122a5f66c0cd54b5cda052fa28e60243c0399b7728fb3fceb', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08267e2cc889c9c40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:49:13.000Z'}}, {'blockNum': '0x7a6454', 'uniqueId': '0xe60ec30e01ad4b79519e26e7e79a86661f45a58cdaec2b955849affecf8dade8:log:49', 'hash': '0xe60ec30e01ad4b79519e26e7e79a86661f45a58cdaec2b955849affecf8dade8', 'from': '0x2744f7ea2ac1cb7dbd097fd2bfe2e8ace6be17c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x25f273933db5700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:49:13.000Z'}}, {'blockNum': '0x7a6466', 'uniqueId': '0x3ac59bf0630e6aa1107a1bd2e9fe3d404d09da19bce721f5e8760bc151690bde:log:2', 'hash': '0x3ac59bf0630e6aa1107a1bd2e9fe3d404d09da19bce721f5e8760bc151690bde', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 32817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06f3035ccc150a240000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:53:33.000Z'}}, {'blockNum': '0x7a6471', 'uniqueId': '0xe7c63b4de880e918d480ddf23a90a6c74a3523d69147b4c2441d14177b35b213:log:57', 'hash': '0xe7c63b4de880e918d480ddf23a90a6c74a3523d69147b4c2441d14177b35b213', 'from': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 186588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x2782f4abe66839f00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:56:11.000Z'}}, {'blockNum': '0x7a6471', 'uniqueId': '0xa031eef8dbaf443f3af5cbfc570c61bf17fd57a8193ab68e897ae51d504d2956:log:59', 'hash': '0xa031eef8dbaf443f3af5cbfc570c61bf17fd57a8193ab68e897ae51d504d2956', 'from': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 28675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06127990bd56b62c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:56:11.000Z'}}, {'blockNum': '0x7a6471', 'uniqueId': '0x407def819e9dcd7f77b303953b8b4618544287f756461f18f0e9532c001b3377:log:60', 'hash': '0x407def819e9dcd7f77b303953b8b4618544287f756461f18f0e9532c001b3377', 'from': '0x0e1f1a23ae7ca219f172abfac8ee98b01a39950f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 47072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09f7c73a49daf3800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:56:11.000Z'}}, {'blockNum': '0x7a6471', 'uniqueId': '0xdcbce35d1b9ca60db58f137f76540541d64798c01d37c0593a45bf35313edb7b:log:61', 'hash': '0xdcbce35d1b9ca60db58f137f76540541d64798c01d37c0593a45bf35313edb7b', 'from': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 54620, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b90f4c522d65bf00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:56:11.000Z'}}, {'blockNum': '0x7a6471', 'uniqueId': '0x6b36ab75f410fbbf3c29ce15e01cc77913fbe568f79acb244979bb7b185ec8ed:log:62', 'hash': '0x6b36ab75f410fbbf3c29ce15e01cc77913fbe568f79acb244979bb7b185ec8ed', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 30046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065ccc0331782ab80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:56:11.000Z'}}, {'blockNum': '0x7a6471', 'uniqueId': '0x04171e02b15a24cca6f7ec32d998f6fc31ee7f85b1089cc35fa574a6d75d476d:log:63', 'hash': '0x04171e02b15a24cca6f7ec32d998f6fc31ee7f85b1089cc35fa574a6d75d476d', 'from': '0x79aef4c3a7d0ef899f04a96f40ace2cd477c2405', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 11215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025ff763e86225dc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:56:11.000Z'}}, {'blockNum': '0x7a6471', 'uniqueId': '0x5938653d722b6baf789a3f6858f0c234bdba5e10ec337c71f14052cefa0c54a9:log:64', 'hash': '0x5938653d722b6baf789a3f6858f0c234bdba5e10ec337c71f14052cefa0c54a9', 'from': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 66692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0e1f616caaa3df900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:56:11.000Z'}}, {'blockNum': '0x7a6471', 'uniqueId': '0xe847fba355018a612d12b390e0ef6b7f1f5124d001cac49f4e89b684be5ad387:log:65', 'hash': '0xe847fba355018a612d12b390e0ef6b7f1f5124d001cac49f4e89b684be5ad387', 'from': '0x2e5ca6450d046bc7ab4b76df6a8cca60c3f34354', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 34695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0758d1d9160301bc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:56:11.000Z'}}, {'blockNum': '0x7a6471', 'uniqueId': '0x22c8ad5ac32ab0a7debc8d7604601f5882d5725dd79a6b8381c1f3db7c8ec65d:log:66', 'hash': '0x22c8ad5ac32ab0a7debc8d7604601f5882d5725dd79a6b8381c1f3db7c8ec65d', 'from': '0xf358caa9bca436dd08608805e5316eae391ee054', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 35904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x079a5c17ec7489000000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:56:11.000Z'}}, {'blockNum': '0x7a6471', 'uniqueId': '0x13ad412c6950a658defa7c4bad43a9c5981da7ca66a2a923a87cabb00faf1d9c:log:67', 'hash': '0x13ad412c6950a658defa7c4bad43a9c5981da7ca66a2a923a87cabb00faf1d9c', 'from': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 207508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x2bf107fe0f7f2dd00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:56:11.000Z'}}, {'blockNum': '0x7a648b', 'uniqueId': '0x3ba6acf9eef8b7eceb6e662afadf9ac539312c9b11d0c7563cfa05bd2774b5b7:log:123', 'hash': '0x3ba6acf9eef8b7eceb6e662afadf9ac539312c9b11d0c7563cfa05bd2774b5b7', 'from': '0xb138e925c53c9eb4999cd9c3406326ba16b5baa9', 'to': '0x7ccb3abf8aa1cdb55216543e13e2719132e9c788', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:01:29.000Z'}}, {'blockNum': '0x7a64ac', 'uniqueId': '0xa44e48807bf02b98eea481c5f741ed626f83d980104dad81fce23f05f1a9f16a:log:5', 'hash': '0xa44e48807bf02b98eea481c5f741ed626f83d980104dad81fce23f05f1a9f16a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2fb49c08688651e046ce7e263a416e476dc233be', 'value': 34166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x073c247f8cc61c180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:08:56.000Z'}}, {'blockNum': '0x7a64b0', 'uniqueId': '0xb1e186b012344f111fa4a6c6d437a3c53caaf74657c027dff1bf0cfa21404b87:log:15', 'hash': '0xb1e186b012344f111fa4a6c6d437a3c53caaf74657c027dff1bf0cfa21404b87', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'value': 5004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010f44733fabf6b00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:10:09.000Z'}}, {'blockNum': '0x7a64b0', 'uniqueId': '0x92db15f9373c2db75d84064339eba0a95078c3449a2dda0903e09ad3556b8815:log:20', 'hash': '0x92db15f9373c2db75d84064339eba0a95078c3449a2dda0903e09ad3556b8815', 'from': '0x7ccb3abf8aa1cdb55216543e13e2719132e9c788', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:10:09.000Z'}}, {'blockNum': '0x7a64b4', 'uniqueId': '0x38c26d4b776e9b600e776293b382d63ed4d87b8102e3893c568fde7b9f8f9d28:log:46', 'hash': '0x38c26d4b776e9b600e776293b382d63ed4d87b8102e3893c568fde7b9f8f9d28', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x2e5ca6450d046bc7ab4b76df6a8cca60c3f34354', 'value': 2510, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x88113f557336780000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:11:16.000Z'}}, {'blockNum': '0x7a64dc', 'uniqueId': '0xd9a55c5450431e7b07ea15ddeb2f161071e22faf064bc077550d60587ca41fd9:log:11', 'hash': '0xd9a55c5450431e7b07ea15ddeb2f161071e22faf064bc077550d60587ca41fd9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 31317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06a1b2ae476c3c340000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:19:07.000Z'}}, {'blockNum': '0x7a64f9', 'uniqueId': '0x7e07eb90a881dd57cc82ba6af3083809358f807576d096bd20d6f01652abb369:log:41', 'hash': '0x7e07eb90a881dd57cc82ba6af3083809358f807576d096bd20d6f01652abb369', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x0e1f1a23ae7ca219f172abfac8ee98b01a39950f', 'value': 6133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x014c7878fdf92eb40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:24:53.000Z'}}, {'blockNum': '0x7a6505', 'uniqueId': '0xfa3deabfadb6f900a4b741a9c2ece2f6895c797d845eb074145a1b906d8e361c:log:21', 'hash': '0xfa3deabfadb6f900a4b741a9c2ece2f6895c797d845eb074145a1b906d8e361c', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'value': 13680, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02e598232040efc00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:26:26.000Z'}}, {'blockNum': '0x7a656d', 'uniqueId': '0x0654f30dbce795cd0ab28ab30a97092a7e00acae4e500ecf8b19aabecaf6f1fb:log:69', 'hash': '0x0654f30dbce795cd0ab28ab30a97092a7e00acae4e500ecf8b19aabecaf6f1fb', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xc2b07655355ba1595a1f36dabc8ff2f2a0593b4a', 'value': 19251.14098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04139b3fe464c95b4000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:48:44.000Z'}}, {'blockNum': '0x7a656d', 'uniqueId': '0x86655b50ebff5fbff293e6db987ae1574dd8bbec8aa444e381dbbcf841fc2d10:log:96', 'hash': '0x86655b50ebff5fbff293e6db987ae1574dd8bbec8aa444e381dbbcf841fc2d10', 'from': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13680, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02e598232040efc00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:48:44.000Z'}}, {'blockNum': '0x7a658e', 'uniqueId': '0x761c6dd8dd4e2510d4b5e780248af98bb69b075896c1c70120e37d320173e77c:log:75', 'hash': '0x761c6dd8dd4e2510d4b5e780248af98bb69b075896c1c70120e37d320173e77c', 'from': '0x0a6f3315446ece38ba8811d0457246cf6eacecee', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2932.999629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x9eff8be6e0a17dd000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:54:31.000Z'}}, {'blockNum': '0x7a658e', 'uniqueId': '0x761c6dd8dd4e2510d4b5e780248af98bb69b075896c1c70120e37d320173e77c:log:76', 'hash': '0x761c6dd8dd4e2510d4b5e780248af98bb69b075896c1c70120e37d320173e77c', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2932.999629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x9eff8be6e0a17dd000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:54:31.000Z'}}, {'blockNum': '0x7a65a5', 'uniqueId': '0x5b498e10d29040e38560cc6c4591c884b672b7aa3ef6c8e876964350f4ae95aa:log:27', 'hash': '0x5b498e10d29040e38560cc6c4591c884b672b7aa3ef6c8e876964350f4ae95aa', 'from': '0xc2b07655355ba1595a1f36dabc8ff2f2a0593b4a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19251.14098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04139b3fe464c95b4000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:59:45.000Z'}}, {'blockNum': '0x7a65bf', 'uniqueId': '0x30900df6ff7c032c868fd7177f9ffdf68d12e44af401be6cb5ee3349e1017f94:log:9', 'hash': '0x30900df6ff7c032c868fd7177f9ffdf68d12e44af401be6cb5ee3349e1017f94', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'value': 109286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x172467eb19f4cbd80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T15:06:38.000Z'}}, {'blockNum': '0x7a65e2', 'uniqueId': '0x4f7465ca17e3238247b9ce9d13c9e64b56a1d6796c589449d13fa7efecef4c91:log:9', 'hash': '0x4f7465ca17e3238247b9ce9d13c9e64b56a1d6796c589449d13fa7efecef4c91', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2e5ca6450d046bc7ab4b76df6a8cca60c3f34354', 'value': 28315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05fef58fd0b3518c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T15:13:25.000Z'}}, {'blockNum': '0x7a65f5', 'uniqueId': '0xb2c7e13a92ec50dac6890d4f6d4ae5eb88b321266fc2d96f132a1935a727ba90:log:0', 'hash': '0xb2c7e13a92ec50dac6890d4f6d4ae5eb88b321266fc2d96f132a1935a727ba90', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 33617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x071e6197bd8022a40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T15:17:42.000Z'}}, {'blockNum': '0x7a65fb', 'uniqueId': '0xe1db76f9a92c5ae7223dee779b0a7f9d724bc862b2ea21fce9786d5ef77b0c7d:log:97', 'hash': '0xe1db76f9a92c5ae7223dee779b0a7f9d724bc862b2ea21fce9786d5ef77b0c7d', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0x82a131091e2e46b818bf42dfaac99c1d0eea9477', 'value': 1594.12, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x566adbedfd81b40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T15:19:16.000Z'}}, {'blockNum': '0x7a6617', 'uniqueId': '0xfe6e768853ee403e2a8f96856acd951d8243f7519145f2c4ffe76ce4424712ed:log:86', 'hash': '0xfe6e768853ee403e2a8f96856acd951d8243f7519145f2c4ffe76ce4424712ed', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0xcc751fb5e7eab776fe1e202cc8dd7bf95221aec0', 'value': 1915.8349316483295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x67db8cf7ce3f759337', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T15:27:15.000Z'}}, {'blockNum': '0x7a6640', 'uniqueId': '0xa124b1e09712cbaa2054a43ecbc3ca3854582213075c78a1336627ceb5766a58:log:144', 'hash': '0xa124b1e09712cbaa2054a43ecbc3ca3854582213075c78a1336627ceb5766a58', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0x732c0283711b6391ebbd28eb6e25b48e4ed59648', 'value': 1506, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x51a3f2ccdeba480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T15:34:54.000Z'}}, {'blockNum': '0x7a6661', 'uniqueId': '0xacc591e812b89e9fc1437eddcd7e09681db5a8cea7e9b9ca36d26c7017dc0d04:log:44', 'hash': '0xacc591e812b89e9fc1437eddcd7e09681db5a8cea7e9b9ca36d26c7017dc0d04', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf358caa9bca436dd08608805e5316eae391ee054', 'value': 36955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07d355a60004c08c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T15:41:07.000Z'}}, {'blockNum': '0x7a6661', 'uniqueId': '0xcc9f0c59dd57ee616c7813ab2a506913043d7b1b5a0030ffe17215c25ecbf9f1:log:45', 'hash': '0xcc9f0c59dd57ee616c7813ab2a506913043d7b1b5a0030ffe17215c25ecbf9f1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 39494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x085cf95a07d1ed580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T15:41:07.000Z'}}, {'blockNum': '0x7a666b', 'uniqueId': '0x0a34cf903ee1cd1e4878b81066af9b86034fdc6e513c40a536f2b97bb6f3c221:log:29', 'hash': '0x0a34cf903ee1cd1e4878b81066af9b86034fdc6e513c40a536f2b97bb6f3c221', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 35281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0778963b4d402ca40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T15:43:32.000Z'}}, {'blockNum': '0x7a66c5', 'uniqueId': '0xc43c6d3f52809138c35d0e3d04c9a189d5d1868d70ba198fe860e7f366d5044e:log:56', 'hash': '0xc43c6d3f52809138c35d0e3d04c9a189d5d1868d70ba198fe860e7f366d5044e', 'from': '0xcc751fb5e7eab776fe1e202cc8dd7bf95221aec0', 'to': '0xc0679f97e589dc089131ceac4cc8bc42e19fad5d', 'value': 1915.8349316483295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x67db8cf7ce3f759337', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T16:07:44.000Z'}}, {'blockNum': '0x7a66dc', 'uniqueId': '0x93427fe50cadb81526296f12b5d8a1f511ed2474db066c0a43569b0f83194ff1:log:151', 'hash': '0x93427fe50cadb81526296f12b5d8a1f511ed2474db066c0a43569b0f83194ff1', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0x6ae3e410106faebd48ae6b62c06610e886f47004', 'value': 310.27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x10d1dc791e7c730000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T16:12:36.000Z'}}, {'blockNum': '0x7a66e9', 'uniqueId': '0xc68b1d9db2cb0563ec6e6ee3055986419eaf636161207ad2224f9a08ae0c46d1:log:40', 'hash': '0xc68b1d9db2cb0563ec6e6ee3055986419eaf636161207ad2224f9a08ae0c46d1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 7107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x018145701d800d2c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T16:14:45.000Z'}}, {'blockNum': '0x7a6739', 'uniqueId': '0x0776ae87e6f24bdfb2978710bb5d5effba596ebec4eabbe0105b8c99525adeb1:log:11', 'hash': '0x0776ae87e6f24bdfb2978710bb5d5effba596ebec4eabbe0105b8c99525adeb1', 'from': '0xd3d33d91e13f24f1c62b905143509bad3179d7f4', 'to': '0xec1c99bf9dc31850858098c098f94a0bc15f02c0', 'value': 6153.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x014d901c2c36ced30000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T16:32:13.000Z'}}, {'blockNum': '0x7a6782', 'uniqueId': '0x868d6c25c95a441f0c61c67d39211f7ad057027cf8f7d62315acda1462d40965:log:49', 'hash': '0x868d6c25c95a441f0c61c67d39211f7ad057027cf8f7d62315acda1462d40965', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 34485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x074d6f8336a3b1b40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T16:49:14.000Z'}}, {'blockNum': '0x7a6782', 'uniqueId': '0x79706d1945627a75797721fed938bd48bbe8d394493add854f9681e691aa2b17:log:50', 'hash': '0x79706d1945627a75797721fed938bd48bbe8d394493add854f9681e691aa2b17', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 159714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x21d21d007ef622480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T16:49:14.000Z'}}, {'blockNum': '0x7a67b5', 'uniqueId': '0xc493f709914bafd819bf0988ee7e4c7935666f7211aa648509e176a93716c961:log:8', 'hash': '0xc493f709914bafd819bf0988ee7e4c7935666f7211aa648509e176a93716c961', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 159714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x21d21d007ef622480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T16:59:08.000Z'}}, {'blockNum': '0x7a67b5', 'uniqueId': '0x63e3392083fa9e3ac87c8121b33bbecbdb15556120886c2665ae7ca26ebd52b2:log:10', 'hash': '0x63e3392083fa9e3ac87c8121b33bbecbdb15556120886c2665ae7ca26ebd52b2', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x074d6f8336a3b1b40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T16:59:08.000Z'}}, {'blockNum': '0x7a67c5', 'uniqueId': '0x1c3e1a4920fceb7639fa9b34a2091123de371313fca1a64316e92ccad76c7fb9:log:7', 'hash': '0x1c3e1a4920fceb7639fa9b34a2091123de371313fca1a64316e92ccad76c7fb9', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'value': 7631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x019dad66153aaddc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T17:02:02.000Z'}}, {'blockNum': '0x7a6803', 'uniqueId': '0x74a5f7a01b2fcc8b743c9fcdec397b63a171bff686e12d94816ed3e5e6c345f4:log:67', 'hash': '0x74a5f7a01b2fcc8b743c9fcdec397b63a171bff686e12d94816ed3e5e6c345f4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 11184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025e492dc8a0e0c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T17:16:30.000Z'}}, {'blockNum': '0x7a6873', 'uniqueId': '0xea1723475ac00ce642afea6688dd2473ec38652a8735eaf69351daf3bccae6e0:log:4', 'hash': '0xea1723475ac00ce642afea6688dd2473ec38652a8735eaf69351daf3bccae6e0', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 8710, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01d82b88247134580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T17:42:29.000Z'}}, {'blockNum': '0x7a68a2', 'uniqueId': '0xe3405defcfc400324a396554b76bb5fede7377a9c8654ad8bbabcfa7dffdb91e:log:104', 'hash': '0xe3405defcfc400324a396554b76bb5fede7377a9c8654ad8bbabcfa7dffdb91e', 'from': '0xa49354a5e75bc4d7e90858d1b84f87f0e084d671', 'to': '0x0bcd90f6a55072ccbd5f1269a12549e0e335afe3', 'value': 768.724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x29ac3045202d620000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T17:51:54.000Z'}}, {'blockNum': '0x7a68d2', 'uniqueId': '0x0ec2dfac4eaed6b1475962905fefb78e344ad03f58324e2682304e67e1dedfd2:log:87', 'hash': '0x0ec2dfac4eaed6b1475962905fefb78e344ad03f58324e2682304e67e1dedfd2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 18553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03edc298e1fe3e440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:01:20.000Z'}}, {'blockNum': '0x7a68da', 'uniqueId': '0xf0c8a8595b8467c908c448c1c0cd5d25580c9e1ea1d085789be19a12a9f5bed9:log:42', 'hash': '0xf0c8a8595b8467c908c448c1c0cd5d25580c9e1ea1d085789be19a12a9f5bed9', 'from': '0x0e88d68ddd2ae0465acc9552260569bcf4c33685', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 180.13060882883866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09c3d07a5b61c5709a', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:03:28.000Z'}}, {'blockNum': '0x7a68da', 'uniqueId': '0xf0c8a8595b8467c908c448c1c0cd5d25580c9e1ea1d085789be19a12a9f5bed9:log:43', 'hash': '0xf0c8a8595b8467c908c448c1c0cd5d25580c9e1ea1d085789be19a12a9f5bed9', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 180.13060882883866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09c3d07a5b61c5709a', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:03:28.000Z'}}, {'blockNum': '0x7a68ee', 'uniqueId': '0x7bc9c915bd222d17c1edb0588ad562960cf354c637b37df18e3c182e88cc2e86:log:10', 'hash': '0x7bc9c915bd222d17c1edb0588ad562960cf354c637b37df18e3c182e88cc2e86', 'from': '0x0bcd90f6a55072ccbd5f1269a12549e0e335afe3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 768.724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x29ac3045202d620000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:09:23.000Z'}}, {'blockNum': '0x7a690a', 'uniqueId': '0xb00e0dffb7963fc89895079eeeb3baae0b7c26310fe5588d43273d22eb9c0a21:log:39', 'hash': '0xb00e0dffb7963fc89895079eeeb3baae0b7c26310fe5588d43273d22eb9c0a21', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 13678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02e57c61b2d9a0f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:14:59.000Z'}}, {'blockNum': '0x7a690a', 'uniqueId': '0x6823e5e057868689bac7cfeb3071cbef1be6e4f9e48094a372f598fda06a86a6:log:40', 'hash': '0x6823e5e057868689bac7cfeb3071cbef1be6e4f9e48094a372f598fda06a86a6', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 30488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0674c1fea3a72d600000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:14:59.000Z'}}, {'blockNum': '0x7a6921', 'uniqueId': '0xb57e7a8d3c30784e74711b505f8beb771fb672f6e0b2b87661fab75f88144905:log:14', 'hash': '0xb57e7a8d3c30784e74711b505f8beb771fb672f6e0b2b87661fab75f88144905', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0674c1fea3a72d600000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:19:06.000Z'}}, {'blockNum': '0x7a694e', 'uniqueId': '0x4d26a916a81f83c106939721a7a59c97ca3172824b950e4f92b309786a19fda3:log:78', 'hash': '0x4d26a916a81f83c106939721a7a59c97ca3172824b950e4f92b309786a19fda3', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 1025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3790bb855137640000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:29:43.000Z'}}, {'blockNum': '0x7a694f', 'uniqueId': '0x0ffb5b3a1d0eaed51f5bf929b3016f566c1fea54781d39f7340ff81bbd50c2bd:log:36', 'hash': '0x0ffb5b3a1d0eaed51f5bf929b3016f566c1fea54781d39f7340ff81bbd50c2bd', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 172367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x248008a6ac7e8bdc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:30:42.000Z'}}, {'blockNum': '0x7a694f', 'uniqueId': '0x512488cf32cb56df62bcce49af285ab29cb500105faf23ea2519f4ffa1a09610:log:37', 'hash': '0x512488cf32cb56df62bcce49af285ab29cb500105faf23ea2519f4ffa1a09610', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 10075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02222ab6505cbc8c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:30:42.000Z'}}, {'blockNum': '0x7a694f', 'uniqueId': '0x65ce4047f5dfa565e2643e9817b5c80f36bbc8c40be1412b04ad34996e9e8d67:log:38', 'hash': '0x65ce4047f5dfa565e2643e9817b5c80f36bbc8c40be1412b04ad34996e9e8d67', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 34428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x074a587a88a36c700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:30:42.000Z'}}, {'blockNum': '0x7a6950', 'uniqueId': '0x9a9e1e2cfa46da7b16a21c497e0767bc0f3449ab0dff69d7f5514cbddc8bb3ff:log:40', 'hash': '0x9a9e1e2cfa46da7b16a21c497e0767bc0f3449ab0dff69d7f5514cbddc8bb3ff', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x73ce0a40a7b1571b12aaa44ebe05a64e2fcaa8d4', 'value': 52608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b23e2a936dec6000000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:30:55.000Z'}}, {'blockNum': '0x7a6951', 'uniqueId': '0x18e2a0811950b21db539725058fe04d89f6b4e03982e5483e505e962eaa1a46e:log:34', 'hash': '0x18e2a0811950b21db539725058fe04d89f6b4e03982e5483e505e962eaa1a46e', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 1158.1524210230518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3ec897f2c415a7a38a', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:31:06.000Z'}}, {'blockNum': '0x7a6951', 'uniqueId': '0xe06b8bcacdab368259a51061950bd7d49e36019228f344d6080511fc559d62e8:log:36', 'hash': '0xe06b8bcacdab368259a51061950bd7d49e36019228f344d6080511fc559d62e8', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0xb33cc3147d70ce2af31b2b90411bd6333eea0ea7', 'value': 92143.29863788222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x138319257b08d8d73496', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:31:06.000Z'}}, {'blockNum': '0x7a6951', 'uniqueId': '0x9c803c6fb37d33a0c889070c16d8bd364623f4f5672ed059031123b54b4638b4:log:38', 'hash': '0x9c803c6fb37d33a0c889070c16d8bd364623f4f5672ed059031123b54b4638b4', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'value': 9646.104524948038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x020aea977e3027f733d8', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:31:06.000Z'}}, {'blockNum': '0x7a6952', 'uniqueId': '0x69d9ebc35d7f2630b93268f259771608019cdb098f7e768ba74e6abb81f309d6:log:73', 'hash': '0x69d9ebc35d7f2630b93268f259771608019cdb098f7e768ba74e6abb81f309d6', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 54131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b76728825ab9dec0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:31:12.000Z'}}, {'blockNum': '0x7a6952', 'uniqueId': '0xb3ef0665d8f31844f93cec402fd23c0ce302e1dd901dae9f4a72e540b09e8e78:log:75', 'hash': '0xb3ef0665d8f31844f93cec402fd23c0ce302e1dd901dae9f4a72e540b09e8e78', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 39981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08775fd597955c940000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:31:12.000Z'}}, {'blockNum': '0x7a6954', 'uniqueId': '0xcd50dbca1d25ab1fe55345d134e78246d90a0ff3aa4e5dde7983d07c08105183:log:12', 'hash': '0xcd50dbca1d25ab1fe55345d134e78246d90a0ff3aa4e5dde7983d07c08105183', 'from': '0xb33cc3147d70ce2af31b2b90411bd6333eea0ea7', 'to': '0x3bc2b2bc5125eacdc64a8188b135a2997dd7324b', 'value': 92143.29863788222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x138319257b08d8d73496', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:31:49.000Z'}}, {'blockNum': '0x7a6955', 'uniqueId': '0x5d03e7d2e48a9d2bdc2a34fb7c5742eb5fe16ec50c3b0f0a4acb2095dfdb297f:log:63', 'hash': '0x5d03e7d2e48a9d2bdc2a34fb7c5742eb5fe16ec50c3b0f0a4acb2095dfdb297f', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 1158.1524210230518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3ec897f2c415a7a38a', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:32:16.000Z'}}, {'blockNum': '0x7a6956', 'uniqueId': '0x162fe2c9225c36b510ea9e604b0d3fdd6f60d5517a4e2d1537b49b6d55d2a003:log:28', 'hash': '0x162fe2c9225c36b510ea9e604b0d3fdd6f60d5517a4e2d1537b49b6d55d2a003', 'from': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'to': '0x1655ddd39b423671627f9e9fc810499c79cf019b', 'value': 9646.977032287388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x020af6b342fd91e32261', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:32:21.000Z'}}, {'blockNum': '0x7a6958', 'uniqueId': '0x5463d4594763b3fbc8d670a2817fa9b8e04e9f742b3515ea7a3728cc31bffadc:log:11', 'hash': '0x5463d4594763b3fbc8d670a2817fa9b8e04e9f742b3515ea7a3728cc31bffadc', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 24192.22628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x051f769539c075c68000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:32:50.000Z'}}, {'blockNum': '0x7a6958', 'uniqueId': '0xbd7d95cf13e84c18cc0518d6c350e7cc1cd1e69604d1774eaec93862d474f32f:log:12', 'hash': '0xbd7d95cf13e84c18cc0518d6c350e7cc1cd1e69604d1774eaec93862d474f32f', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:32:50.000Z'}}, {'blockNum': '0x7a6959', 'uniqueId': '0x8a9cadaf697b0b6ef6b076cdf51e56776c02f48dae8ce6ce0d828f633d43acff:log:8', 'hash': '0x8a9cadaf697b0b6ef6b076cdf51e56776c02f48dae8ce6ce0d828f633d43acff', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 16875.2296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0392cedb0866d53a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:33:06.000Z'}}, {'blockNum': '0x7a6959', 'uniqueId': '0x424540754fcd0cf3e995d407a1029419b07e6407f8b0d773f3b89d686eb92955:log:9', 'hash': '0x424540754fcd0cf3e995d407a1029419b07e6407f8b0d773f3b89d686eb92955', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'value': 12799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02b5d5ce5ffde09c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:33:06.000Z'}}, {'blockNum': '0x7a6959', 'uniqueId': '0x2487da9d28d41514a4503e56323d5170d2c14afec0259af6580392c1ff97c4b2:log:10', 'hash': '0x2487da9d28d41514a4503e56323d5170d2c14afec0259af6580392c1ff97c4b2', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 25455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0563eb16b1a1405c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:33:06.000Z'}}, {'blockNum': '0x7a695a', 'uniqueId': '0x5988fecf7ba96a81a9ee7b821b9e2977f0634c2eb179c7cf10060ed42892b98f:log:4', 'hash': '0x5988fecf7ba96a81a9ee7b821b9e2977f0634c2eb179c7cf10060ed42892b98f', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x5232346c018270b438750164f937abaa3be11b8e', 'value': 30469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0673ba511451c0f40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:33:10.000Z'}}, {'blockNum': '0x7a695c', 'uniqueId': '0x5388892c4339f7a9d2d99e16921128f65acdf9dde455772c04c0011a612c73af:log:17', 'hash': '0x5388892c4339f7a9d2d99e16921128f65acdf9dde455772c04c0011a612c73af', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 31582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06b0104b676482b80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:33:18.000Z'}}, {'blockNum': '0x7a695c', 'uniqueId': '0xd22cb04e72c46a5238bff9e3a338b486a5f83531522c1ad0182fb07e8cdefa1b:log:18', 'hash': '0xd22cb04e72c46a5238bff9e3a338b486a5f83531522c1ad0182fb07e8cdefa1b', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 14842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x032496206bb6bba80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:33:18.000Z'}}, {'blockNum': '0x7a695c', 'uniqueId': '0x59cd9ff999f634ffcd1bedf56146a989a2907ce9ef4396cd540809bb0f910182:log:42', 'hash': '0x59cd9ff999f634ffcd1bedf56146a989a2907ce9ef4396cd540809bb0f910182', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 79948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x10edfd61315791b00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:33:18.000Z'}}, {'blockNum': '0x7a6961', 'uniqueId': '0xc97d73b4a6fa442ed741e0eec3ccb5357ddc3d1750928fccb7bf238642a0397c:log:21', 'hash': '0xc97d73b4a6fa442ed741e0eec3ccb5357ddc3d1750928fccb7bf238642a0397c', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0xf5954424c2b4489021c3666477c869b90ebef016', 'value': 7871, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01aab0115da79b9c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:34:29.000Z'}}, {'blockNum': '0x7a6969', 'uniqueId': '0x405b8a26d0a47a3d6ffa1e861a932bacb7bc11a3f711fd9b0bd5422d5f29fbc7:log:3', 'hash': '0x405b8a26d0a47a3d6ffa1e861a932bacb7bc11a3f711fd9b0bd5422d5f29fbc7', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'value': 58859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0c76c0b66ba71ccc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:35:13.000Z'}}, {'blockNum': '0x7a696c', 'uniqueId': '0xf49e76b4fd3af69788f5fb88be50ad9b01173e6bb2e0fa49aabe16e4706eb5f9:log:1', 'hash': '0xf49e76b4fd3af69788f5fb88be50ad9b01173e6bb2e0fa49aabe16e4706eb5f9', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x8cda0badb15c2c4abfbc9157a61b0501c0d3e499', 'value': 21652.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0495cc2194dde39a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:35:28.000Z'}}, {'blockNum': '0x7a6973', 'uniqueId': '0x15e76e990531739fa066bf403f5a4aec1557a1eeb23b015b940557cb52e9216f:log:9', 'hash': '0x15e76e990531739fa066bf403f5a4aec1557a1eeb23b015b940557cb52e9216f', 'from': '0x0f2265f4c57f04bccd1b6400e95a7ee6edc20b26', 'to': '0x98be91c5dfe2149415c5b166da9eafb8f2a698ef', 'value': 621528.858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x839d259b95fa89a90000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:37:35.000Z'}}, {'blockNum': '0x7a697a', 'uniqueId': '0x23c314ef2208ef29d816baf70e2f9154028410fd8a3c0f41adad0968b9a5f223:log:44', 'hash': '0x23c314ef2208ef29d816baf70e2f9154028410fd8a3c0f41adad0968b9a5f223', 'from': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02b5d5ce5ffde09c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:38:53.000Z'}}, {'blockNum': '0x7a697a', 'uniqueId': '0x2df81e8710e239e3e9c85556472bf9d2eb3561a57459ddb7c9761072cea2b7f8:log:48', 'hash': '0x2df81e8710e239e3e9c85556472bf9d2eb3561a57459ddb7c9761072cea2b7f8', 'from': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 79948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x10edfd61315791b00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:38:53.000Z'}}, {'blockNum': '0x7a697a', 'uniqueId': '0x82560cc3caad064561e853f85009c71464499212cf30581df9f72b0ae2fc8431:log:50', 'hash': '0x82560cc3caad064561e853f85009c71464499212cf30581df9f72b0ae2fc8431', 'from': '0x73ce0a40a7b1571b12aaa44ebe05a64e2fcaa8d4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 52608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b23e2a936dec6000000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:38:53.000Z'}}, {'blockNum': '0x7a697a', 'uniqueId': '0xf481d46fcd7d0d5e2619007c336f946576d43971d506045a4f8fd464556a1cf8:log:51', 'hash': '0xf481d46fcd7d0d5e2619007c336f946576d43971d506045a4f8fd464556a1cf8', 'from': '0x5232346c018270b438750164f937abaa3be11b8e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 55658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0bc939e9ef4713680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:38:53.000Z'}}, {'blockNum': '0x7a697a', 'uniqueId': '0x8f0628ddc1acab07890806fb144581a427a4178dcfe213a192cfe8bb4e446273:log:52', 'hash': '0x8f0628ddc1acab07890806fb144581a427a4178dcfe213a192cfe8bb4e446273', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x074a587a88a36c700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:38:53.000Z'}}, {'blockNum': '0x7a697a', 'uniqueId': '0x73444c783d240d4956d5752c0d29776a3a9c5118822679c15190aaea0c9ad17b:log:53', 'hash': '0x73444c783d240d4956d5752c0d29776a3a9c5118822679c15190aaea0c9ad17b', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0563eb16b1a1405c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:38:53.000Z'}}, {'blockNum': '0x7a697a', 'uniqueId': '0x60f51d5832334e5027f401239d92934e7705a442ae4fe6af4f8167d0c5cad824:log:54', 'hash': '0x60f51d5832334e5027f401239d92934e7705a442ae4fe6af4f8167d0c5cad824', 'from': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3790bb855137640000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:38:53.000Z'}}, {'blockNum': '0x7a697a', 'uniqueId': '0x9f7c95c3317ce61ac2ab782d3522efc316860fe7de457d4df86488f9a43b180a:log:55', 'hash': '0x9f7c95c3317ce61ac2ab782d3522efc316860fe7de457d4df86488f9a43b180a', 'from': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 58859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0c76c0b66ba71ccc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:38:53.000Z'}}, {'blockNum': '0x7a697a', 'uniqueId': '0x1bc32273e28005e426a01a815246160a75e14ed7f6b32e91e48f3999426ade00:log:69', 'hash': '0x1bc32273e28005e426a01a815246160a75e14ed7f6b32e91e48f3999426ade00', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 39981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08775fd597955c940000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:38:53.000Z'}}, {'blockNum': '0x7a697a', 'uniqueId': '0xc0e1c5f49f5219acf314b5ecfba6709b8003be3d52ccf8859d0f1da264d70714:log:73', 'hash': '0xc0e1c5f49f5219acf314b5ecfba6709b8003be3d52ccf8859d0f1da264d70714', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 54131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b76728825ab9dec0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:38:53.000Z'}}, {'blockNum': '0x7a697a', 'uniqueId': '0xcf4763af05be98a1a62bf23bd9285208c00afe33702b65b681cb2ccf6d2c2d82:log:74', 'hash': '0xcf4763af05be98a1a62bf23bd9285208c00afe33702b65b681cb2ccf6d2c2d82', 'from': '0x3bc2b2bc5125eacdc64a8188b135a2997dd7324b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 92143.29863788222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x138319257b08d8d73496', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:38:53.000Z'}}, {'blockNum': '0x7a697c', 'uniqueId': '0x8cbf22e32b6edab96bd58f9af71f31e6977b1b0910a3201fb3315c4b5863f0c4:log:2', 'hash': '0x8cbf22e32b6edab96bd58f9af71f31e6977b1b0910a3201fb3315c4b5863f0c4', 'from': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:39:54.000Z'}}, {'blockNum': '0x7a6982', 'uniqueId': '0xda27779a8074a7c2763dec12f09e056a4f359197dfb2efb9757b1b8a68de5833:log:73', 'hash': '0xda27779a8074a7c2763dec12f09e056a4f359197dfb2efb9757b1b8a68de5833', 'from': '0xd1560b3984b7481cd9a8f40435a53c860187174d', 'to': '0x523c00131ef14dfe144137088fca435cc38a697f', 'value': 11310.74413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0265281b635820ae2000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:41:28.000Z'}}, {'blockNum': '0x7a6984', 'uniqueId': '0x46aaa7950b8c5abb1742bbe1aa47ce7d2db5be137f22ebefb4e2fb8dde22492d:log:22', 'hash': '0x46aaa7950b8c5abb1742bbe1aa47ce7d2db5be137f22ebefb4e2fb8dde22492d', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 7668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x019faee07d31df500000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:41:44.000Z'}}, {'blockNum': '0x7a6984', 'uniqueId': '0x313f7a2438a32a3c90497a869ad2948a526f2605669b5e51e109fbce126f322a:log:23', 'hash': '0x313f7a2438a32a3c90497a869ad2948a526f2605669b5e51e109fbce126f322a', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 38777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08361afa52a61a440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:41:44.000Z'}}, {'blockNum': '0x7a6984', 'uniqueId': '0xc6190e15b894d6a6cb42af256a6c4efbb36d827dccad30e2a1b63fc65e315add:log:24', 'hash': '0xc6190e15b894d6a6cb42af256a6c4efbb36d827dccad30e2a1b63fc65e315add', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 67264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0e3e6384e40de3000000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:41:44.000Z'}}, {'blockNum': '0x7a698b', 'uniqueId': '0x24186fba118ba3a10dbe73fb6f2e0656c68060a5d0dc821ff20657638f2c5f5b:log:9', 'hash': '0x24186fba118ba3a10dbe73fb6f2e0656c68060a5d0dc821ff20657638f2c5f5b', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'value': 21714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04991e48d24c20080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:43:06.000Z'}}, {'blockNum': '0x7a698b', 'uniqueId': '0xc387f30ea71e1a405440b81e64fd27cc199b95089b9fdca2663cc6a13e3ea81b:log:11', 'hash': '0xc387f30ea71e1a405440b81e64fd27cc199b95089b9fdca2663cc6a13e3ea81b', 'from': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1158.1524210230518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3ec897f2c415a7a38a', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:43:06.000Z'}}, {'blockNum': '0x7a698d', 'uniqueId': '0x4c810127718903c553c15f2d64c98ca2f608a7087f8b8461a12c843208f1ee0f:log:16', 'hash': '0x4c810127718903c553c15f2d64c98ca2f608a7087f8b8461a12c843208f1ee0f', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x1285f034153daa03bc4249786373eee43cba00df', 'value': 11986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0289c32a277348080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:43:48.000Z'}}, {'blockNum': '0x7a698d', 'uniqueId': '0xdcc5412a3ee8a7dc5821dbc7bd98232d81906d92fc3c70e7c635d5474b976348:log:37', 'hash': '0xdcc5412a3ee8a7dc5821dbc7bd98232d81906d92fc3c70e7c635d5474b976348', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 36003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x079fb9fe93ee44ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:43:48.000Z'}}, {'blockNum': '0x7a698d', 'uniqueId': '0x1a2b561c05063eb047e3c1eaf193fe1eb8068f43ef46ae066127c3e003e61ec3:log:38', 'hash': '0x1a2b561c05063eb047e3c1eaf193fe1eb8068f43ef46ae066127c3e003e61ec3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 17434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03b1195a46b590280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:43:48.000Z'}}, {'blockNum': '0x7a6993', 'uniqueId': '0xa9270d0d5531990cf83e074cfdd5831557087ef2d96b99e651e0319a9d6a3965:log:8', 'hash': '0xa9270d0d5531990cf83e074cfdd5831557087ef2d96b99e651e0319a9d6a3965', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 19758.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x042f21d24edc71d20000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:44:55.000Z'}}, {'blockNum': '0x7a6994', 'uniqueId': '0x7bfe6ac2118f41891e767a1902ff7e334a1704acd7695621652d4aeffb82da81:log:5', 'hash': '0x7bfe6ac2118f41891e767a1902ff7e334a1704acd7695621652d4aeffb82da81', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:45:18.000Z'}}, {'blockNum': '0x7a6995', 'uniqueId': '0xb1e2bfcd4428f5c41cb8c6b87d8586faf25f01395e98f96f39fb562be9ef9a44:log:40', 'hash': '0xb1e2bfcd4428f5c41cb8c6b87d8586faf25f01395e98f96f39fb562be9ef9a44', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 29242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06313645653e74a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:45:50.000Z'}}, {'blockNum': '0x7a699c', 'uniqueId': '0xd70252bfbc796e16a5d43a58f2479fcb384081c69fe4573dca3b5dfcc3a52fc3:log:24', 'hash': '0xd70252bfbc796e16a5d43a58f2479fcb384081c69fe4573dca3b5dfcc3a52fc3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 259665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x36fc77c567de0ea40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:47:14.000Z'}}, {'blockNum': '0x7a699f', 'uniqueId': '0x935047a510d1652b6e22f807d6cca3bec75badb6e8203ee9019ceb196ea67f10:log:53', 'hash': '0x935047a510d1652b6e22f807d6cca3bec75badb6e8203ee9019ceb196ea67f10', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 26660, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05a53dd2ad442a100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:48:03.000Z'}}, {'blockNum': '0x7a69a3', 'uniqueId': '0xcc1157d5a323309ad6e979785d6d473f5e708f0a33a99e8e6e16fe6bdb77d4b5:log:17', 'hash': '0xcc1157d5a323309ad6e979785d6d473f5e708f0a33a99e8e6e16fe6bdb77d4b5', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x079fb9fe93ee44ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:49:14.000Z'}}, {'blockNum': '0x7a69a3', 'uniqueId': '0x7da4ee46a9c0b91a98da4e699e9e33102374fc1dbfe407663f38351a8a60dbff:log:19', 'hash': '0x7da4ee46a9c0b91a98da4e699e9e33102374fc1dbfe407663f38351a8a60dbff', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08361afa52a61a440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:49:14.000Z'}}, {'blockNum': '0x7a69a3', 'uniqueId': '0xc9910cc98fc5d9c59e38e9f663314ca9008be0dcc48785923acb7ac5bbc54994:log:21', 'hash': '0xc9910cc98fc5d9c59e38e9f663314ca9008be0dcc48785923acb7ac5bbc54994', 'from': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04991e48d24c20080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:49:14.000Z'}}, {'blockNum': '0x7a69a3', 'uniqueId': '0xc6db47dd4aba3e4ba104029ce93cea37646d11cdf72222d4d57b0484e1bbe604:log:23', 'hash': '0xc6db47dd4aba3e4ba104029ce93cea37646d11cdf72222d4d57b0484e1bbe604', 'from': '0x8cda0badb15c2c4abfbc9157a61b0501c0d3e499', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21652.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0495cc2194dde39a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:49:14.000Z'}}, {'blockNum': '0x7a69a3', 'uniqueId': '0xebe10fa09789b7d647ca5a171186e1c8c9630abbd22539389e2dad9770208bea:log:24', 'hash': '0xebe10fa09789b7d647ca5a171186e1c8c9630abbd22539389e2dad9770208bea', 'from': '0x1285f034153daa03bc4249786373eee43cba00df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0289c32a277348080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:49:14.000Z'}}, {'blockNum': '0x7a69a5', 'uniqueId': '0x88168ca022ab446f8b47ca780816b6ec7a2cdebd11410b9fb11cb8d7bac14e69:log:27', 'hash': '0x88168ca022ab446f8b47ca780816b6ec7a2cdebd11410b9fb11cb8d7bac14e69', 'from': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:49:36.000Z'}}, {'blockNum': '0x7a69a5', 'uniqueId': '0x9d2078c5379ef1c74792bcca5f2ffb32abab05293b3da2d63e99806f6aba3550:log:28', 'hash': '0x9d2078c5379ef1c74792bcca5f2ffb32abab05293b3da2d63e99806f6aba3550', 'from': '0x523c00131ef14dfe144137088fca435cc38a697f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11310.74413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0265281b635820ae2000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:49:36.000Z'}}, {'blockNum': '0x7a69a5', 'uniqueId': '0xf0e37337eabc531ab8e62ff0627097e39158ae7b6e4d2a5e3b4ae5a12e07fce2:log:70', 'hash': '0xf0e37337eabc531ab8e62ff0627097e39158ae7b6e4d2a5e3b4ae5a12e07fce2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 174314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x24e994b434d8a1680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:49:36.000Z'}}, {'blockNum': '0x7a69aa', 'uniqueId': '0x800f404ec29aaee8de47e4e4f0ab6abc64c1293cefe8f3ed05fe29bae897978e:log:16', 'hash': '0x800f404ec29aaee8de47e4e4f0ab6abc64c1293cefe8f3ed05fe29bae897978e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 3461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xbb9f060ad60af40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:50:46.000Z'}}, {'blockNum': '0x7a69b3', 'uniqueId': '0xac48e967c1fca77ed6d2c23e1b6552d01f1149efe2fbbe95d3e08f031079e88c:log:17', 'hash': '0xac48e967c1fca77ed6d2c23e1b6552d01f1149efe2fbbe95d3e08f031079e88c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'value': 15278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x033c38d795afd1f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:52:31.000Z'}}, {'blockNum': '0x7a69b4', 'uniqueId': '0x74b49d67251d4af24cee57681127669e402350260f5d1f1fbb64e44b490d8ef5:log:14', 'hash': '0x74b49d67251d4af24cee57681127669e402350260f5d1f1fbb64e44b490d8ef5', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 505.915915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1b6cfe643c2fb7b000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:52:36.000Z'}}, {'blockNum': '0x7a69b6', 'uniqueId': '0x00d9477afb99ca0150e8bb8ed4babc9cf5fdfc69d5cd6873314f9639ad092c18:log:7', 'hash': '0x00d9477afb99ca0150e8bb8ed4babc9cf5fdfc69d5cd6873314f9639ad092c18', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 6624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01671677688b3b800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:53:09.000Z'}}, {'blockNum': '0x7a69bc', 'uniqueId': '0x5085477a3c0db07b8461a1d28f5e02c6b3ef7a1241359da7ef2e4dbb5be9fb10:log:18', 'hash': '0x5085477a3c0db07b8461a1d28f5e02c6b3ef7a1241359da7ef2e4dbb5be9fb10', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 25273.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x055a19d23f23891e0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:54:02.000Z'}}, {'blockNum': '0x7a69bc', 'uniqueId': '0x0f1e35b53229bd165cece7a2a8afb8ccef662676bea9f2d7635ff2ef57ec5080:log:21', 'hash': '0x0f1e35b53229bd165cece7a2a8afb8ccef662676bea9f2d7635ff2ef57ec5080', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 29409.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x063a505a05abf0be0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:54:02.000Z'}}, {'blockNum': '0x7a69cd', 'uniqueId': '0x3aefea4a742072afcc94a5977e3969e069d5817e62c88b125e2e2997c6a25bf0:log:64', 'hash': '0x3aefea4a742072afcc94a5977e3969e069d5817e62c88b125e2e2997c6a25bf0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 23014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04df97689a9a27d80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:57:27.000Z'}}, {'blockNum': '0x7a69d2', 'uniqueId': '0x46b3ac024137e9edccc83faed1f9ebadc5e5e93cde42a1e5bf6dd1dd9ddca20f:log:9', 'hash': '0x46b3ac024137e9edccc83faed1f9ebadc5e5e93cde42a1e5bf6dd1dd9ddca20f', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26660, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05a53dd2ad442a100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:58:46.000Z'}}, {'blockNum': '0x7a69d2', 'uniqueId': '0xbbb242a5a2a25c98f3fefe8e317014b2266f401025e1abe25c14f29b30eaf91d:log:10', 'hash': '0xbbb242a5a2a25c98f3fefe8e317014b2266f401025e1abe25c14f29b30eaf91d', 'from': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x033c38d795afd1f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:58:46.000Z'}}, {'blockNum': '0x7a69d2', 'uniqueId': '0xad09a64ef205a79f207e454ce1f279a85dc8de01b775845fdf666e8b7238996a:log:11', 'hash': '0xad09a64ef205a79f207e454ce1f279a85dc8de01b775845fdf666e8b7238996a', 'from': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 259665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x36fc77c567de0ea40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:58:46.000Z'}}, {'blockNum': '0x7a69d4', 'uniqueId': '0x8175471b19c06b842a709dd87b731fbf65a0868631c02462e177adf34d894117:log:100', 'hash': '0x8175471b19c06b842a709dd87b731fbf65a0868631c02462e177adf34d894117', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x8469b2a5e41250804cb8b7a097d42a3cce0c3f64', 'value': 505.915915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1b6cfe643c2fb7b000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:59:26.000Z'}}, {'blockNum': '0x7a69d7', 'uniqueId': '0x6731e997ea75e6c655ebaba68b12fdad772c2382a3b9e4311b72d7ac4fd71f2b:log:19', 'hash': '0x6731e997ea75e6c655ebaba68b12fdad772c2382a3b9e4311b72d7ac4fd71f2b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2f507586c23e63700e25780f95f7e7ee55003eeb', 'value': 10439.64412999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0235ef2a809ee9dc3c00', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:00:49.000Z'}}, {'blockNum': '0x7a69d9', 'uniqueId': '0x19af7e28db0a07a9b51ec73064a5a808679a1ccf13136a607eea96b096685876:log:50', 'hash': '0x19af7e28db0a07a9b51ec73064a5a808679a1ccf13136a607eea96b096685876', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 18492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03ea740d592f5b700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:01:18.000Z'}}, {'blockNum': '0x7a69dc', 'uniqueId': '0x8cc200b9e80453d7a70ecfb13c29a1dcd1d9b8f2376833524dbbd9746741d9c4:log:24', 'hash': '0x8cc200b9e80453d7a70ecfb13c29a1dcd1d9b8f2376833524dbbd9746741d9c4', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8710, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01d82b88247134580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:02:12.000Z'}}, {'blockNum': '0x7a69dc', 'uniqueId': '0xa558f9bc0658d4b489c4ce6ccb3a18ac0d0a73bd19355d06e0eb8192dd167590:log:25', 'hash': '0xa558f9bc0658d4b489c4ce6ccb3a18ac0d0a73bd19355d06e0eb8192dd167590', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8710, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01d82b88247134580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:02:12.000Z'}}, {'blockNum': '0x7a69dc', 'uniqueId': '0xaddc6b640f4d561e6588a24aa77acb85bcf23fde536c29f945b6dc8528a20106:log:26', 'hash': '0xaddc6b640f4d561e6588a24aa77acb85bcf23fde536c29f945b6dc8528a20106', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8710, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01d82b88247134580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:02:12.000Z'}}, {'blockNum': '0x7a69dc', 'uniqueId': '0x0503caaef436b77247eb761c993fc1272503fbbab3dd0253507f750e18aa00c9:log:27', 'hash': '0x0503caaef436b77247eb761c993fc1272503fbbab3dd0253507f750e18aa00c9', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8710, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01d82b88247134580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:02:12.000Z'}}, {'blockNum': '0x7a69dc', 'uniqueId': '0xe104336f4e5bf9d46765967429a65309f7c48d05b360fb9501e2516d48add02f:log:28', 'hash': '0xe104336f4e5bf9d46765967429a65309f7c48d05b360fb9501e2516d48add02f', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8710, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01d82b88247134580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:02:12.000Z'}}, {'blockNum': '0x7a69dc', 'uniqueId': '0xaca04e4dbddbbecf0348858d7ebd50da15070d5c5c2e00891e2101c7c53c262f:log:58', 'hash': '0xaca04e4dbddbbecf0348858d7ebd50da15070d5c5c2e00891e2101c7c53c262f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 13051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02c37f0238d6a70c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:02:12.000Z'}}, {'blockNum': '0x7a69e8', 'uniqueId': '0x3680cff67f9cbbb17f2247b866d1c74f43b8a5542e4ff455647aa690742a6430:log:47', 'hash': '0x3680cff67f9cbbb17f2247b866d1c74f43b8a5542e4ff455647aa690742a6430', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x1c66ded10a7eca7772ce9dda33f326dd2c00083b', 'value': 576.84, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1f45435bc54c540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:06:11.000Z'}}, {'blockNum': '0x7a69eb', 'uniqueId': '0xfb3cee5affb03aff08e353baafa006712e086641889b22b32e0bbf4da1de9b2b:log:6', 'hash': '0xfb3cee5affb03aff08e353baafa006712e086641889b22b32e0bbf4da1de9b2b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 43051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x091dcca49606bdcc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:07:07.000Z'}}, {'blockNum': '0x7a69eb', 'uniqueId': '0x7d17db2ae690d4cf38a49f82043f251cf43f5fc739a638eef0783b022c98e072:log:11', 'hash': '0x7d17db2ae690d4cf38a49f82043f251cf43f5fc739a638eef0783b022c98e072', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0c7fb59b0778b6a2acb528e85ddf6dc731c459ee', 'value': 35202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07744de2ebcf84c80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:07:07.000Z'}}, {'blockNum': '0x7a69f6', 'uniqueId': '0x3076d0efcf244cd8eeba058f7bc31c7af0b9bfc2f074c8aca70837f8653aac30:log:9', 'hash': '0x3076d0efcf244cd8eeba058f7bc31c7af0b9bfc2f074c8aca70837f8653aac30', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf778dcf1cc68d5c2c4e6991c493f9a70e677aa05', 'value': 570.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1ef2d43d3dfe820000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:09:34.000Z'}}, {'blockNum': '0x7a69f6', 'uniqueId': '0x9a948bf4cb18bb625a900411239fd430190639ad99c8be863e46ed2bd7ea90dd:log:12', 'hash': '0x9a948bf4cb18bb625a900411239fd430190639ad99c8be863e46ed2bd7ea90dd', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 165.7455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08fc2e4e17bb81c000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:09:34.000Z'}}, {'blockNum': '0x7a69fa', 'uniqueId': '0xcd967e75ce4669a5029b5a69de64f4a11d4f15798da7b7f81bcbb566aaadef36:log:69', 'hash': '0xcd967e75ce4669a5029b5a69de64f4a11d4f15798da7b7f81bcbb566aaadef36', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xc4bc751ea45b00a1818b50b1695d804a9829d3bb', 'value': 165.7455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08fc2e4e17bb81c000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:11:11.000Z'}}, {'blockNum': '0x7a69fe', 'uniqueId': '0x1698a790bc2123cac1240cf86ed0222d57d16ddcb29e514f903a9e7d1b971c88:log:6', 'hash': '0x1698a790bc2123cac1240cf86ed0222d57d16ddcb29e514f903a9e7d1b971c88', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 121695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x19c519632441aa1c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:11:40.000Z'}}, {'blockNum': '0x7a69ff', 'uniqueId': '0xf8e79e57d2033325b8fd530b31575d030e9467c2280c2e921686e121007da333:log:6', 'hash': '0xf8e79e57d2033325b8fd530b31575d030e9467c2280c2e921686e121007da333', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 239631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x32be6c2b908c6edc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:11:50.000Z'}}, {'blockNum': '0x7a6a1b', 'uniqueId': '0x310fee4319114033a497c4476b77463d0781fb338312ac0c04efbf5b4a82fc8a:log:12', 'hash': '0x310fee4319114033a497c4476b77463d0781fb338312ac0c04efbf5b4a82fc8a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x496d18d6207ed289f3004e049e89f2ddbe039421', 'value': 260.883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0e247a9a485a3b8000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:16:12.000Z'}}, {'blockNum': '0x7a6a1b', 'uniqueId': '0x017e4a80f3d2d3e397ee4aaad21f6814b61b543b4e2bfbfea68ea015850c5dbf:log:13', 'hash': '0x017e4a80f3d2d3e397ee4aaad21f6814b61b543b4e2bfbfea68ea015850c5dbf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 25812.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x057751f2eb64f8aa0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:16:12.000Z'}}, {'blockNum': '0x7a6a1b', 'uniqueId': '0xddca68a6c864d4223134ebe7f8a9d5002a0accdbfc92fd9127910e6bb795d244:log:15', 'hash': '0xddca68a6c864d4223134ebe7f8a9d5002a0accdbfc92fd9127910e6bb795d244', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 66202.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0e04ddcc6800c4020000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:16:12.000Z'}}, {'blockNum': '0x7a6a1b', 'uniqueId': '0x361ce5e71ac7070cf63c5d21cf038c3a7ae442b0a587e26d6366d88996ca4168:log:35', 'hash': '0x361ce5e71ac7070cf63c5d21cf038c3a7ae442b0a587e26d6366d88996ca4168', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 7867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01aa788e82d8fe0c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:16:12.000Z'}}, {'blockNum': '0x7a6a23', 'uniqueId': '0x6f25afbb4247ed164942549cd8349cb22fc75188a02b7603b2fa5dcc270a2a0f:log:106', 'hash': '0x6f25afbb4247ed164942549cd8349cb22fc75188a02b7603b2fa5dcc270a2a0f', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0xf5954424c2b4489021c3666477c869b90ebef016', 'value': 567.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1ec66b8e324d431170', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:19:01.000Z'}}, {'blockNum': '0x7a6a24', 'uniqueId': '0x7c3d155fcf398237740205893f3ab4d793dbafe568103e3150326a2bad1d215d:log:18', 'hash': '0x7c3d155fcf398237740205893f3ab4d793dbafe568103e3150326a2bad1d215d', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 174314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x24e994b434d8a1680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:19:25.000Z'}}, {'blockNum': '0x7a6a31', 'uniqueId': '0x8a236a8df3e16c6629c9ea12368e064d661a4ffdc78fc4160d9fa3d0e3b4bc05:log:96', 'hash': '0x8a236a8df3e16c6629c9ea12368e064d661a4ffdc78fc4160d9fa3d0e3b4bc05', 'from': '0x1c66ded10a7eca7772ce9dda33f326dd2c00083b', 'to': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'value': 576.84, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1f45435bc54c540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:22:14.000Z'}}, {'blockNum': '0x7a6a32', 'uniqueId': '0xdb03b332ef914dd666520bc517462a0460c8be6cbb9abfaae9690c4ea2ac25c1:log:16', 'hash': '0xdb03b332ef914dd666520bc517462a0460c8be6cbb9abfaae9690c4ea2ac25c1', 'from': '0x1655ddd39b423671627f9e9fc810499c79cf019b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9646.977032287388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x020af6b342fd91e32261', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:22:17.000Z'}}, {'blockNum': '0x7a6a33', 'uniqueId': '0x08bf6721dc72497d744420c0e9f082bf90a348ca1a81e54f6122fac6cbc7ec0c:log:77', 'hash': '0x08bf6721dc72497d744420c0e9f082bf90a348ca1a81e54f6122fac6cbc7ec0c', 'from': '0xf778dcf1cc68d5c2c4e6991c493f9a70e677aa05', 'to': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'value': 570.899999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1ef2d43c5529dd0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:22:35.000Z'}}, {'blockNum': '0x7a6a42', 'uniqueId': '0xd0d7982751f3d032c052d0ad2c1075759ab0b3cb21e912178b1a4894071970d5:log:45', 'hash': '0xd0d7982751f3d032c052d0ad2c1075759ab0b3cb21e912178b1a4894071970d5', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 181462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x266d1321951e7d980000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:25:38.000Z'}}, {'blockNum': '0x7a6a6c', 'uniqueId': '0xd959fdf2b98b93f738a90b9c3808b6cc0376375e82ad4fc81cf21fc1cbc497f3:log:17', 'hash': '0xd959fdf2b98b93f738a90b9c3808b6cc0376375e82ad4fc81cf21fc1cbc497f3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 35061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x076ca91e4adc52b40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:34:21.000Z'}}, {'blockNum': '0x7a6a85', 'uniqueId': '0x155d01665baf24ceb7ee0e0950055b7d287bf96fb6d5b95c1e5c30c665a530b6:log:24', 'hash': '0x155d01665baf24ceb7ee0e0950055b7d287bf96fb6d5b95c1e5c30c665a530b6', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 181462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x266d1321951e7d980000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:38:52.000Z'}}, {'blockNum': '0x7a6a91', 'uniqueId': '0xc0e0428d64e8ffbf9d786c9a068560c535f10391d55416742302e96f0fe6160e:log:5', 'hash': '0xc0e0428d64e8ffbf9d786c9a068560c535f10391d55416742302e96f0fe6160e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf358caa9bca436dd08608805e5316eae391ee054', 'value': 37515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07f1b135a902eb4c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:41:40.000Z'}}, {'blockNum': '0x7a6ab6', 'uniqueId': '0x2666840ec6a567004296704d2d1ebbd9c80fa848046b4a22d05805ff8643e8ee:log:6', 'hash': '0x2666840ec6a567004296704d2d1ebbd9c80fa848046b4a22d05805ff8643e8ee', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 273288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x39def8dfda1eb9200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:48:26.000Z'}}, {'blockNum': '0x7a6ab6', 'uniqueId': '0x60900e66b0f875e764bc8df8d242130771ceea7a4805c6c9e1cbb153739056a8:log:8', 'hash': '0x60900e66b0f875e764bc8df8d242130771ceea7a4805c6c9e1cbb153739056a8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2fb49c08688651e046ce7e263a416e476dc233be', 'value': 34745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x075b87bcc519b3440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:48:26.000Z'}}, {'blockNum': '0x7a6ab6', 'uniqueId': '0x2ccb135a950d5ad83e18d31330466dfb295566cf4c4c34facb3c2c0e1c70bcc4:log:11', 'hash': '0x2ccb135a950d5ad83e18d31330466dfb295566cf4c4c34facb3c2c0e1c70bcc4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 26400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x059725991ece28800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:48:26.000Z'}}, {'blockNum': '0x7a6abf', 'uniqueId': '0x3655e833c023c6aa6e94068d732079130bf83f7d0febbecb8428a2dd096dbaab:log:12', 'hash': '0x3655e833c023c6aa6e94068d732079130bf83f7d0febbecb8428a2dd096dbaab', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 36121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07a61f92cabd6cc40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:50:31.000Z'}}, {'blockNum': '0x7a6ac6', 'uniqueId': '0xbb9690f1366da65b52bb63df7ed837c456dd1b15ce858ccad12771da99ff7222:log:5', 'hash': '0xbb9690f1366da65b52bb63df7ed837c456dd1b15ce858ccad12771da99ff7222', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xffd4497848246b54255a130a32e038f0e2f962f8', 'value': 60501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0ccfc40a47f6c4340000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:52:57.000Z'}}, {'blockNum': '0x7a6acb', 'uniqueId': '0x9bc560b621f6c2b071a6240d2e3629c23259056f924a26540ee85cb1e61043f3:log:2', 'hash': '0x9bc560b621f6c2b071a6240d2e3629c23259056f924a26540ee85cb1e61043f3', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x79aef4c3a7d0ef899f04a96f40ace2cd477c2405', 'value': 10236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x022ae509375902700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:54:45.000Z'}}, {'blockNum': '0x7a6acd', 'uniqueId': '0x0f08c0a183a0c080430430a303dcbb2f1cd8d1a465a9f182eafa59358a2903fe:log:7', 'hash': '0x0f08c0a183a0c080430430a303dcbb2f1cd8d1a465a9f182eafa59358a2903fe', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2e5ca6450d046bc7ab4b76df6a8cca60c3f34354', 'value': 27176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05c136c2ef618fa00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:55:02.000Z'}}, {'blockNum': '0x7a6acd', 'uniqueId': '0x773b187aec5fcedb74f5ca2749ec077198eff698ab30defe058526decc000cd5:log:8', 'hash': '0x773b187aec5fcedb74f5ca2749ec077198eff698ab30defe058526decc000cd5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x37f839310852a9631e6f74d25db6a5d13d882bdd', 'value': 10905.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x024f35c41c10bc9e0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:55:02.000Z'}}, {'blockNum': '0x7a6ad6', 'uniqueId': '0x370237147ed53cfc18ff402d5f082743de238f45598ab27f56f3737d6fc842c7:log:30', 'hash': '0x370237147ed53cfc18ff402d5f082743de238f45598ab27f56f3737d6fc842c7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf358caa9bca436dd08608805e5316eae391ee054', 'value': 36240, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07ac9307b8403c400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:56:59.000Z'}}, {'blockNum': '0x7a6ad9', 'uniqueId': '0x80ab5707cc9b95d6b8ed23cdb555bdb9c922e486e143270cda844721aaf30e27:log:6', 'hash': '0x80ab5707cc9b95d6b8ed23cdb555bdb9c922e486e143270cda844721aaf30e27', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 24606.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0535f156390e67920000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:58:10.000Z'}}, {'blockNum': '0x7a6ae4', 'uniqueId': '0x6bc1c761888c514eeaa7e038b137259c41f312c9ffe6cfa518fe475812a58f25:log:10', 'hash': '0x6bc1c761888c514eeaa7e038b137259c41f312c9ffe6cfa518fe475812a58f25', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xf815a50176c9337a4e7e735cd6e80ecb5d94a930', 'value': 9611.1696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x020905c5b50a81340000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:00:13.000Z'}}, {'blockNum': '0x7a6ae4', 'uniqueId': '0x1055f29258f8fc970e807b0603ec0ecb8ff312c0cc2ed9206e0f629c094ba6c7:log:14', 'hash': '0x1055f29258f8fc970e807b0603ec0ecb8ff312c0cc2ed9206e0f629c094ba6c7', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 33774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0726e467c9adcaf80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:00:13.000Z'}}, {'blockNum': '0x7a6ae4', 'uniqueId': '0x379103d094ba08b228249237165e6b2eafcfd2a48c9d56d59387de9c7c7f58f0:log:15', 'hash': '0x379103d094ba08b228249237165e6b2eafcfd2a48c9d56d59387de9c7c7f58f0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'value': 291163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3da7fa54dc4fa48c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:00:13.000Z'}}, {'blockNum': '0x7a6ae7', 'uniqueId': '0x61f3be0fbc4549fbd240f23ca91a3c5fceeb83826d3720671aebf63e17ff9308:log:108', 'hash': '0x61f3be0fbc4549fbd240f23ca91a3c5fceeb83826d3720671aebf63e17ff9308', 'from': '0x496d18d6207ed289f3004e049e89f2ddbe039421', 'to': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'value': 260.882999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0e247a995f85960000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:01:19.000Z'}}, {'blockNum': '0x7a6aed', 'uniqueId': '0xa24e2442189bc16f9fa261cc66f940e423dc5a1662e55c4478599c7fcaef66ff:log:11', 'hash': '0xa24e2442189bc16f9fa261cc66f940e423dc5a1662e55c4478599c7fcaef66ff', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 38107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0811c8dc2876028c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:02:48.000Z'}}, {'blockNum': '0x7a6b0b', 'uniqueId': '0x696a6cec11598c142ca762061e1cdb1247802af3163a3ab2b36e288c9dfee8cf:log:4', 'hash': '0x696a6cec11598c142ca762061e1cdb1247802af3163a3ab2b36e288c9dfee8cf', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 188205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x27da9d0deb2c88940000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:07:56.000Z'}}, {'blockNum': '0x7a6b15', 'uniqueId': '0xb870a23b9db74242512eb17d7d6683e36a27b1db0d04eab5c2fe31c68b7ba9ca:log:5', 'hash': '0xb870a23b9db74242512eb17d7d6683e36a27b1db0d04eab5c2fe31c68b7ba9ca', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 61554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0d08d959c8ee4a880000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:10:01.000Z'}}, {'blockNum': '0x7a6b1b', 'uniqueId': '0x39ed4971e662d1d74a6da723a900f5d2c1682bd08df65c2ae268db33ab40e836:log:52', 'hash': '0x39ed4971e662d1d74a6da723a900f5d2c1682bd08df65c2ae268db33ab40e836', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 179031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x25e94a3aa11beefc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:11:48.000Z'}}, {'blockNum': '0x7a6b27', 'uniqueId': '0x2cc5bf6da141a092184c0c0848e783f8e22ff58077b1e42d8c2adb7ee6749541:log:6', 'hash': '0x2cc5bf6da141a092184c0c0848e783f8e22ff58077b1e42d8c2adb7ee6749541', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'value': 81088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x112bca0ec95cfb000000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:15:18.000Z'}}, {'blockNum': '0x7a6b2a', 'uniqueId': '0x8601838a607beeaa49a7b0dbec14695ae1e00f952a4cfc96402b56551e950440:log:9', 'hash': '0x8601838a607beeaa49a7b0dbec14695ae1e00f952a4cfc96402b56551e950440', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 22597.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04c908dc7131c7ce0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:15:35.000Z'}}, {'blockNum': '0x7a6b2a', 'uniqueId': '0x950c0a4da7b68764c8e330d5388f4d6dbabd6c6b1cf864d328b6cf812d12fa1b:log:10', 'hash': '0x950c0a4da7b68764c8e330d5388f4d6dbabd6c6b1cf864d328b6cf812d12fa1b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf358caa9bca436dd08608805e5316eae391ee054', 'value': 38894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x083c72add2c19af80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:15:35.000Z'}}, {'blockNum': '0x7a6b32', 'uniqueId': '0x2d9c6d8e98ae22bbb4eaad84885297a91e27ddb30105a0152b032c1468bf5ca1:log:22', 'hash': '0x2d9c6d8e98ae22bbb4eaad84885297a91e27ddb30105a0152b032c1468bf5ca1', 'from': '0xee9ac8783cc52ec29ef34d7633bba0f93906f664', 'to': '0x3e72a6bfd2ed779998a01b7028d83c30de55673f', 'value': 336.36281823419955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x123bf8c90eb2c00b40', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:17:36.000Z'}}, {'blockNum': '0x7a6b39', 'uniqueId': '0xfa50cc9229fe6e43bf43d43cb6ffd1c78051c23a03f36e49f8a4c7be86b176c6:log:1', 'hash': '0xfa50cc9229fe6e43bf43d43cb6ffd1c78051c23a03f36e49f8a4c7be86b176c6', 'from': '0xf815a50176c9337a4e7e735cd6e80ecb5d94a930', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9611.1696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x020905c5b50a81340000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:19:04.000Z'}}, {'blockNum': '0x7a6b39', 'uniqueId': '0x924623b9be7ff931cd8cb0ff10a2df827150f7d9187cd293f93a773d2511890f:log:2', 'hash': '0x924623b9be7ff931cd8cb0ff10a2df827150f7d9187cd293f93a773d2511890f', 'from': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 179031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x25e94a3aa11beefc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:19:04.000Z'}}, {'blockNum': '0x7a6b50', 'uniqueId': '0xa569e1c815ca8b2f2ffdbf456d4b03d2478de5426eb1e97912b52641ae01a5c0:log:8', 'hash': '0xa569e1c815ca8b2f2ffdbf456d4b03d2478de5426eb1e97912b52641ae01a5c0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 37072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07d9ad59802041400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:24:37.000Z'}}, {'blockNum': '0x7a6b69', 'uniqueId': '0xfc2fe77041b39f73664adf5e6be451afb0c60966570ccf414a035c9d584d387e:log:9', 'hash': '0xfc2fe77041b39f73664adf5e6be451afb0c60966570ccf414a035c9d584d387e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf358caa9bca436dd08608805e5316eae391ee054', 'value': 42879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x091479a9d552469c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:31:18.000Z'}}, {'blockNum': '0x7a6b6a', 'uniqueId': '0xca3639d18267e3a9b306344f61c1c497224664d67ab0a19ac25e46c529d2661b:log:1', 'hash': '0xca3639d18267e3a9b306344f61c1c497224664d67ab0a19ac25e46c529d2661b', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x074d38005bd514240000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:31:31.000Z'}}, {'blockNum': '0x7a6b6a', 'uniqueId': '0x63855e7ee9926952066f3e5f1fbf6870a7ee337799fb5f3ffb02430cb465ed80:log:2', 'hash': '0x63855e7ee9926952066f3e5f1fbf6870a7ee337799fb5f3ffb02430cb465ed80', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0ef66e9bd492c62c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:31:31.000Z'}}, {'blockNum': '0x7a6b78', 'uniqueId': '0x7d90a4fa9f190ffa2104428f8846a739b1b2a44ebe241b4801ce473c5812c12f:log:4', 'hash': '0x7d90a4fa9f190ffa2104428f8846a739b1b2a44ebe241b4801ce473c5812c12f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 33104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x070292499f7db3400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:33:45.000Z'}}, {'blockNum': '0x7a6b7f', 'uniqueId': '0x483372ba9ac6bb6145c8a2bbd45884945ad7f7281d5df4d32dcb397fadeb5c5d:log:11', 'hash': '0x483372ba9ac6bb6145c8a2bbd45884945ad7f7281d5df4d32dcb397fadeb5c5d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'value': 61696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0d108bff209524000000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:35:46.000Z'}}, {'blockNum': '0x7a6b7f', 'uniqueId': '0x647b029cb56b4e8c6169760d35e85dbfc5b1bdf281f4eb4d1d7d23e1e30d20d9:log:13', 'hash': '0x647b029cb56b4e8c6169760d35e85dbfc5b1bdf281f4eb4d1d7d23e1e30d20d9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'value': 207092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x2bda7ad52b8f2b500000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:35:46.000Z'}}, {'blockNum': '0x7a6b90', 'uniqueId': '0x7e6e94d6c4d786475ca6428975bb18b72c8be3b992c64b5464325646ebb1ec52:log:4', 'hash': '0x7e6e94d6c4d786475ca6428975bb18b72c8be3b992c64b5464325646ebb1ec52', 'from': '0x6ae3e410106faebd48ae6b62c06610e886f47004', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 310.27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x10d1dc791e7c730000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:40:26.000Z'}}, {'blockNum': '0x7a6b93', 'uniqueId': '0x141e6120c81f3545b255071292421ad928d15aeb9644283b08e4030b46a3d863:log:9', 'hash': '0x141e6120c81f3545b255071292421ad928d15aeb9644283b08e4030b46a3d863', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 1291505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01117ca057bd3ee5240000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:41:03.000Z'}}, {'blockNum': '0x7a6c04', 'uniqueId': '0xe6aad8a4cd7af572f81a5335f77cf49e2c0ccf5c479852096ed20a9fbd32412d:log:31', 'hash': '0xe6aad8a4cd7af572f81a5335f77cf49e2c0ccf5c479852096ed20a9fbd32412d', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x9d6b8c356d9c81a375d33a5279a9076fcaeaf2a1', 'value': 495.83584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1ae11ac56ddb6c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T21:03:45.000Z'}}, {'blockNum': '0x7a6c3d', 'uniqueId': '0xf01fe46c8996e27cf86e961c99af203929d9c019cfd7fa741df4e7f56f99bcaa:log:5', 'hash': '0xf01fe46c8996e27cf86e961c99af203929d9c019cfd7fa741df4e7f56f99bcaa', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 42810, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0910bc1896e628a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T21:18:39.000Z'}}, {'blockNum': '0x7a6c86', 'uniqueId': '0x1625f10b8c99f047eaf4ff397709174dc6d56c8ad587196ec45c3c42cae1c281:log:9', 'hash': '0x1625f10b8c99f047eaf4ff397709174dc6d56c8ad587196ec45c3c42cae1c281', 'from': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 12635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02acf1d954e6a48c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T21:36:34.000Z'}}, {'blockNum': '0x7a6c86', 'uniqueId': '0x738ac8d0c1bc17186c9a945e46794e3c13bcbb2b78ddb356e3d684c2c6931fe7:log:10', 'hash': '0x738ac8d0c1bc17186c9a945e46794e3c13bcbb2b78ddb356e3d684c2c6931fe7', 'from': '0x0e1f1a23ae7ca219f172abfac8ee98b01a39950f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 6133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x014c7878fdf92eb40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T21:36:34.000Z'}}, {'blockNum': '0x7a6c86', 'uniqueId': '0x5289f7666716122648017e4b37d20cba28ab18d4664eb695a2bc1b9ac349be20:log:11', 'hash': '0x5289f7666716122648017e4b37d20cba28ab18d4664eb695a2bc1b9ac349be20', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 66598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0e1a48e994ac68d80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T21:36:34.000Z'}}, {'blockNum': '0x7a6c86', 'uniqueId': '0x2ac996d6e5878a8d6fa992cff04084329d58c0d093a593667a8d8ce2ebdcc868:log:12', 'hash': '0x2ac996d6e5878a8d6fa992cff04084329d58c0d093a593667a8d8ce2ebdcc868', 'from': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 72311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0f4ffcb6d3e6f77c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T21:36:34.000Z'}}, {'blockNum': '0x7a6c86', 'uniqueId': '0x0e6fd37c8b0c02ca622cd5d1b84253cba4c883c53999c5bf5afbdca59925e854:log:13', 'hash': '0x0e6fd37c8b0c02ca622cd5d1b84253cba4c883c53999c5bf5afbdca59925e854', 'from': '0x2e5ca6450d046bc7ab4b76df6a8cca60c3f34354', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 30825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x068706cf262688040000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T21:36:34.000Z'}}, {'blockNum': '0x7a6c86', 'uniqueId': '0x9c9c47bd4c9456d777229ab4ffffd84191ebfb53cd8ada73fe704ea36e08775d:log:14', 'hash': '0x9c9c47bd4c9456d777229ab4ffffd84191ebfb53cd8ada73fe704ea36e08775d', 'from': '0xe00c0e7401a7a14a994e851b8c8be51bc33facd9', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 8312.553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01c29fd8bfb4e7aa8000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T21:36:34.000Z'}}, {'blockNum': '0x7a6c86', 'uniqueId': '0xbfcdb9ba7c03027d617f6d105a2dfa7e7646c8ffd4392a7fe8bbc5661cdd6863:log:15', 'hash': '0xbfcdb9ba7c03027d617f6d105a2dfa7e7646c8ffd4392a7fe8bbc5661cdd6863', 'from': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 109286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x172467eb19f4cbd80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T21:36:34.000Z'}}, {'blockNum': '0x7a6d1b', 'uniqueId': '0x9ad24a2f837957d9d4bc90efa2c2cfbf4e298c6cf4df9f117ff0719781405213:log:26', 'hash': '0x9ad24a2f837957d9d4bc90efa2c2cfbf4e298c6cf4df9f117ff0719781405213', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 3369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xb6a2446245e3040000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T22:10:36.000Z'}}, {'blockNum': '0x7a6d21', 'uniqueId': '0x57b1167e8c8abcfd61ab5310d46e1febeceb94e755b613733e5677a183141a4e:log:5', 'hash': '0x57b1167e8c8abcfd61ab5310d46e1febeceb94e755b613733e5677a183141a4e', 'from': '0x3e72a6bfd2ed779998a01b7028d83c30de55673f', 'to': '0x13ae26e3b4816293abe71b09f2bf7a07a454c597', 'value': 336.36281823419955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x123bf8c90eb2c00b40', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T22:11:45.000Z'}}, {'blockNum': '0x7a6d46', 'uniqueId': '0x0254d021ca4110e69ac9dd3421c10e676687495f172468b279b187e9a636a05e:log:24', 'hash': '0x0254d021ca4110e69ac9dd3421c10e676687495f172468b279b187e9a636a05e', 'from': '0x13ae26e3b4816293abe71b09f2bf7a07a454c597', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 336.36281823419955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x123bf8c90eb2c00b40', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T22:19:36.000Z'}}, {'blockNum': '0x7a6d98', 'uniqueId': '0x97172657d171057a9bf7b179ed766ce5f2d393203f5d45ab978bffed5c0f216c:log:3', 'hash': '0x97172657d171057a9bf7b179ed766ce5f2d393203f5d45ab978bffed5c0f216c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2fb49c08688651e046ce7e263a416e476dc233be', 'value': 33134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0704329f088b50f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T22:37:46.000Z'}}, {'blockNum': '0x7a6de6', 'uniqueId': '0x906a10117f9e4fef438910542a57c9934811a1df2b2c261d1eac70d35659965b:log:0', 'hash': '0x906a10117f9e4fef438910542a57c9934811a1df2b2c261d1eac70d35659965b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 30179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x066401c21cce21ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T22:57:51.000Z'}}, {'blockNum': '0x7a6e03', 'uniqueId': '0x776f88c2f2ae1654cdd2c76b5d34ee0223ddeaa320677f7f2a94edcec771d913:log:0', 'hash': '0x776f88c2f2ae1654cdd2c76b5d34ee0223ddeaa320677f7f2a94edcec771d913', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 100519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1549255a4783523c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T23:04:23.000Z'}}, {'blockNum': '0x7a6e37', 'uniqueId': '0xdfa529af1fd5529d7e916abe3ef409bbb02c9e437fb47f5fe203690ee537eb25:log:3', 'hash': '0xdfa529af1fd5529d7e916abe3ef409bbb02c9e437fb47f5fe203690ee537eb25', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 30145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x066229e9d8f1e6640000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T23:17:02.000Z'}}, {'blockNum': '0x7a6e37', 'uniqueId': '0x700bb670f5abeb7a7fa05da034393724814f650d587658aa9da9f1e5b14ae326:log:7', 'hash': '0x700bb670f5abeb7a7fa05da034393724814f650d587658aa9da9f1e5b14ae326', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 42700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x090ac58a15b43bb00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T23:17:02.000Z'}}, {'blockNum': '0x7a6e43', 'uniqueId': '0x9ea7f39aaed79989c22cac4520d7c37b6915ea56ac802770471ae9873c2327b2:log:6', 'hash': '0x9ea7f39aaed79989c22cac4520d7c37b6915ea56ac802770471ae9873c2327b2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xf358caa9bca436dd08608805e5316eae391ee054', 'value': 36301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07afe193410f1f140000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T23:19:18.000Z'}}, {'blockNum': '0x7a6e60', 'uniqueId': '0x9aacbc5625cacec76200df92dfde7934886f7ebe85feaf6d9d38c70b50d5259e:log:6', 'hash': '0x9aacbc5625cacec76200df92dfde7934886f7ebe85feaf6d9d38c70b50d5259e', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xe431b362d6018e4d6fd3326eea39bd03dc226cdd', 'value': 6530.42896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x016203e84b6caba20000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T23:24:00.000Z'}}, {'blockNum': '0x7a6e93', 'uniqueId': '0xa9454590be7cdd84b89f45b38d2de8beb0bea8c57ea3bfba452b719d68022e73:log:6', 'hash': '0xa9454590be7cdd84b89f45b38d2de8beb0bea8c57ea3bfba452b719d68022e73', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0x82e54f77b0c48fd1ae99f206c55f5dad21aa3560', 'value': 4685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xfdf96f95ce61140000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T23:34:40.000Z'}}, {'blockNum': '0x7a6eb9', 'uniqueId': '0xb57bfdcc0580beb1de36823cb227263eb21c6fc0777bc9ac151321c49693096f:log:31', 'hash': '0xb57bfdcc0580beb1de36823cb227263eb21c6fc0777bc9ac151321c49693096f', 'from': '0xe431b362d6018e4d6fd3326eea39bd03dc226cdd', 'to': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'value': 6530.428958999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x016203e84a83d6edadc0', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T23:43:04.000Z'}}, {'blockNum': '0x7a6ebb', 'uniqueId': '0x540307ca9762765740bf601331198b5bcb3365ac9852cfc39eb59d4efed9f35a:log:8', 'hash': '0x540307ca9762765740bf601331198b5bcb3365ac9852cfc39eb59d4efed9f35a', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x79aef4c3a7d0ef899f04a96f40ace2cd477c2405', 'value': 11175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025dcc475c4ffe3c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T23:43:40.000Z'}}, {'blockNum': '0x7a6ee5', 'uniqueId': '0x3519344ec16b4e39e3623ea098ea71c78b3284a3c24569f7c565a6cfc5e90f61:log:1', 'hash': '0x3519344ec16b4e39e3623ea098ea71c78b3284a3c24569f7c565a6cfc5e90f61', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x263593777783fcf381568aa5bb30fe0318f327b3', 'value': 6819.048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0171a94d1b22a1e40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T23:51:44.000Z'}}, {'blockNum': '0x7a7039', 'uniqueId': '0xb4ee6bd390c0f4601e919ebb48afdac8d5284c8c1769cca8d6388fb461374028:log:22', 'hash': '0xb4ee6bd390c0f4601e919ebb48afdac8d5284c8c1769cca8d6388fb461374028', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 22720.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04cfb10dae9279c60000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T01:07:00.000Z'}}, {'blockNum': '0x7a70a1', 'uniqueId': '0x93704e69910ac8aa295d3356ff175ab8cf9f1d20651171a058b67535746059b7:log:33', 'hash': '0x93704e69910ac8aa295d3356ff175ab8cf9f1d20651171a058b67535746059b7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'value': 149010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1f8dd929472f1d080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T01:28:22.000Z'}}, {'blockNum': '0x7a70ba', 'uniqueId': '0xbdc6085a67689cf4d1cd422dc6bddb83a2dadafd730759ea2a1426c351d26066:log:10', 'hash': '0xbdc6085a67689cf4d1cd422dc6bddb83a2dadafd730759ea2a1426c351d26066', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 190149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x2843ff794f6ba7f40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T01:35:41.000Z'}}, {'blockNum': '0x7a70ba', 'uniqueId': '0x05ba8ead5e568322d16b1425d8df6f160b951ae57219276aeeff2cf13de554f5:log:13', 'hash': '0x05ba8ead5e568322d16b1425d8df6f160b951ae57219276aeeff2cf13de554f5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 31573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06af9364fb13a0340000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T01:35:41.000Z'}}, {'blockNum': '0x7a711c', 'uniqueId': '0x54135880cba1d77149e1d01233e5b9c3012ced55788abcc1f659a03cfa558ebe:log:21', 'hash': '0x54135880cba1d77149e1d01233e5b9c3012ced55788abcc1f659a03cfa558ebe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 30356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x066d9a206f04ddd00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T01:56:46.000Z'}}, {'blockNum': '0x7a7146', 'uniqueId': '0xb9b890b92f0573354baf929e86a509d779cdd37c4f304b2a77980b8d7cad46cd:log:1', 'hash': '0xb9b890b92f0573354baf929e86a509d779cdd37c4f304b2a77980b8d7cad46cd', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb047c7338e434ca86664e3f3ff488fc6d8df27b1', 'value': 108773.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1708a253e23ceb3a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T02:05:35.000Z'}}, {'blockNum': '0x7a7159', 'uniqueId': '0xaf2113d388be963db141c9b0143508f18444f7194902f4019eb520336935692b:log:14', 'hash': '0xaf2113d388be963db141c9b0143508f18444f7194902f4019eb520336935692b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0c7fb59b0778b6a2acb528e85ddf6dc731c459ee', 'value': 58229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0c5499b4cd892cb40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T02:09:21.000Z'}}, {'blockNum': '0x7a7159', 'uniqueId': '0x1d98010917efb6f62ac379b1eedd413f2adfe158370b80ca12b5068e0aed5df6:log:15', 'hash': '0x1d98010917efb6f62ac379b1eedd413f2adfe158370b80ca12b5068e0aed5df6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2e5ca6450d046bc7ab4b76df6a8cca60c3f34354', 'value': 28027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05ef58c24697010c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T02:09:21.000Z'}}, {'blockNum': '0x7a715e', 'uniqueId': '0x684089bed2e2f11da684b556fef53cab2eccc4e802a49661dd6df440079fab27:log:6', 'hash': '0x684089bed2e2f11da684b556fef53cab2eccc4e802a49661dd6df440079fab27', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 1298940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01130fadb1f0ed6a700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T02:11:24.000Z'}}, {'blockNum': '0x7a715e', 'uniqueId': '0x423593a488167af4ae5a25ac50921a96e5ac20f089cd71d06f141dba54140aa4:log:7', 'hash': '0x423593a488167af4ae5a25ac50921a96e5ac20f089cd71d06f141dba54140aa4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 1283355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010fc2d05f41cbdb8c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T02:11:24.000Z'}}, {'blockNum': '0x7a717a', 'uniqueId': '0xde51a85348f0f6cb087001156f1b756e04197eb082044cb26fb3fbdc5267797c:log:20', 'hash': '0xde51a85348f0f6cb087001156f1b756e04197eb082044cb26fb3fbdc5267797c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf358caa9bca436dd08608805e5316eae391ee054', 'value': 35598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0789c57d89b673780000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T02:17:18.000Z'}}, {'blockNum': '0x7a7189', 'uniqueId': '0x07667619902c8bca33c4cc5df19bfa93b71c9c4a5861dd7fcacad6b6bddb0c00:log:9', 'hash': '0x07667619902c8bca33c4cc5df19bfa93b71c9c4a5861dd7fcacad6b6bddb0c00', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 45783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09b1e6c25b451cfc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T02:20:03.000Z'}}, {'blockNum': '0x7a7207', 'uniqueId': '0x87869e67dc9e7a374b58918155025f2acba971b768431c898de61da6f050b8cd:log:92', 'hash': '0x87869e67dc9e7a374b58918155025f2acba971b768431c898de61da6f050b8cd', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 4259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xe6e17f8ed9d4ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T02:50:27.000Z'}}, {'blockNum': '0x7a722e', 'uniqueId': '0x10d9dc2bfb8fe1e70fa51fc79326c80861ea1d0273b22762be14f89b7346cd9d:log:11', 'hash': '0x10d9dc2bfb8fe1e70fa51fc79326c80861ea1d0273b22762be14f89b7346cd9d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 31171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0699c88614f6c52c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T03:01:09.000Z'}}, {'blockNum': '0x7a7230', 'uniqueId': '0x6141aeaeba7ee34b7814c6b6e2c2b016014ddc13bb4e59079a537e74178cc4ec:log:61', 'hash': '0x6141aeaeba7ee34b7814c6b6e2c2b016014ddc13bb4e59079a537e74178cc4ec', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x38bfc2017bdcabf3aa65adfc324527675acf6c4c', 'value': 22446.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04c0ce3681771f820000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T03:01:30.000Z'}}, {'blockNum': '0x7a7241', 'uniqueId': '0x8e41f088bfb448cdb31f94598937fd44f22461a4a580723c8b6a7f4a6968b3dc:log:92', 'hash': '0x8e41f088bfb448cdb31f94598937fd44f22461a4a580723c8b6a7f4a6968b3dc', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 107347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x16bb4ae34737f16c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T03:04:30.000Z'}}, {'blockNum': '0x7a726b', 'uniqueId': '0x21ff155ecc9126ff9ffa9ef89154eec068060f1903b0994a5edae07edd06d608:log:21', 'hash': '0x21ff155ecc9126ff9ffa9ef89154eec068060f1903b0994a5edae07edd06d608', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x4b3a565a163162d7df39049dbed5ddf743c59d1e', 'value': 1092.58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3b3a97e943584a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T03:15:26.000Z'}}, {'blockNum': '0x7a7292', 'uniqueId': '0xfadd4c29cb365668a159665be875f2e61b5600157c54adee14a3dc8c575a3b6d:log:62', 'hash': '0xfadd4c29cb365668a159665be875f2e61b5600157c54adee14a3dc8c575a3b6d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xeb40f3721210584791f0b4899e4c028dc6efb22a', 'value': 129854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1b7f66420c0596380000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T03:25:13.000Z'}}, {'blockNum': '0x7a72a0', 'uniqueId': '0x5091add1fe4462bf39aaf2e5ab542b5038ff5458a476bafcfd7f4e147117cb17:log:97', 'hash': '0x5091add1fe4462bf39aaf2e5ab542b5038ff5458a476bafcfd7f4e147117cb17', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2832.717412969518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x998fd9e6b737a0912c', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T03:28:46.000Z'}}, {'blockNum': '0x7a72a0', 'uniqueId': '0x5091add1fe4462bf39aaf2e5ab542b5038ff5458a476bafcfd7f4e147117cb17:log:99', 'hash': '0x5091add1fe4462bf39aaf2e5ab542b5038ff5458a476bafcfd7f4e147117cb17', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0a6f3315446ece38ba8811d0457246cf6eacecee', 'value': 2832.717412969518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x998fd9e6b737a0912c', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T03:28:46.000Z'}}, {'blockNum': '0x7a72a1', 'uniqueId': '0x3022ac3e07d7e6b22e7b6c59cdfc3221f9f7a6c88a4c36e92ebc20cbd64990ec:log:10', 'hash': '0x3022ac3e07d7e6b22e7b6c59cdfc3221f9f7a6c88a4c36e92ebc20cbd64990ec', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 50948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0ac9e58881ed59900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T03:28:57.000Z'}}, {'blockNum': '0x7a72a1', 'uniqueId': '0x532b710b7ca01e88da2c35eeca87893b4e6b59288f50e37ee5774b8bdf9e7127:log:11', 'hash': '0x532b710b7ca01e88da2c35eeca87893b4e6b59288f50e37ee5774b8bdf9e7127', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2fb49c08688651e046ce7e263a416e476dc233be', 'value': 33881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x072cb15426c4c1c40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T03:28:57.000Z'}}, {'blockNum': '0x7a72a4', 'uniqueId': '0x13727d83348e089ec8943e087a9ac9801904a76ab2eddee3cae35bc7fc5d624a:log:14', 'hash': '0x13727d83348e089ec8943e087a9ac9801904a76ab2eddee3cae35bc7fc5d624a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 46426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09d4c22d40828d280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T03:30:03.000Z'}}, {'blockNum': '0x7a72fa', 'uniqueId': '0x347b5f556671b54bc52a03ddc307ee5e3edac5b33a15ab3bbadaffe8ab95d039:log:30', 'hash': '0x347b5f556671b54bc52a03ddc307ee5e3edac5b33a15ab3bbadaffe8ab95d039', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 30118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0660b33693ff3ed80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T03:53:08.000Z'}}, {'blockNum': '0x7a7320', 'uniqueId': '0x1b5bae1183dd9a853d89af672c128e540dec7ed2cbdabbc60b79b21eb1705c53:log:8', 'hash': '0x1b5bae1183dd9a853d89af672c128e540dec7ed2cbdabbc60b79b21eb1705c53', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 32623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06e87f1257f0305c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T04:00:49.000Z'}}, {'blockNum': '0x7a732b', 'uniqueId': '0x9fdd76900ddb195f7a19637c624572d2aa13965cfedb175e325276effb674aa6:log:67', 'hash': '0x9fdd76900ddb195f7a19637c624572d2aa13965cfedb175e325276effb674aa6', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0xf4343d247267345d15d777af633c2c477ae6a43a', 'value': 1988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x6bc50acb1fe4900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T04:03:05.000Z'}}, {'blockNum': '0x7a7346', 'uniqueId': '0x1e2d235b34b40550e0bc0b228da11a24b7d2b175493d9469af105a239e54b78a:log:29', 'hash': '0x1e2d235b34b40550e0bc0b228da11a24b7d2b175493d9469af105a239e54b78a', 'from': '0xf4343d247267345d15d777af633c2c477ae6a43a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x6bc50acb1fe4900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T04:09:08.000Z'}}, {'blockNum': '0x7a738f', 'uniqueId': '0x5dba5e6d5f7fe0c09c0f9271bc54054dfe761c4437b884aa5b187275ff2cf352:log:9', 'hash': '0x5dba5e6d5f7fe0c09c0f9271bc54054dfe761c4437b884aa5b187275ff2cf352', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T04:24:08.000Z'}}, {'blockNum': '0x7a739e', 'uniqueId': '0x0706492c0147e97b562eedd4b945ce78b1a222b846f36077405f5e8cbf9ca7a5:log:19', 'hash': '0x0706492c0147e97b562eedd4b945ce78b1a222b846f36077405f5e8cbf9ca7a5', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'value': 58423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0c5f1dff41ae067c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T04:27:54.000Z'}}]}}
Number of returned transfers: 318
Answer is complete
symbol CDT
group CCB
date 2019-08-09
hour 14:59
exchange binance
Name: 372, dtype: object
HERE
{'osmosis': 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt'}
No contract for ethereum specified
Symbol: CDT, Contract: 0xcdb37a4fbc2da5b78aa4e41a432792f9533e85cc
Datetime timestamps: 2019-08-09 14:59:00 2019-08-09 02:59:00 2019-08-10 02:59:00
Unix timestamps: 1565312340.0 1565398740.0
Hex Block Numbers: 0x7ed9da 0x7ef2eb
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers: 0
Answer is complete
symbol FUEL
group CCB
date 2020-03-27
hour 21:00
exchange binance
Name: 373, dtype: object
HERE
{}
No contract for ethereum specified
Symbol: FUEL, Contract: 0xea38eaa3c86c8f9b751533ba2e562deb9acded40
Datetime timestamps: 2020-03-27 21:00:00 2020-03-27 09:00:00 2020-03-28 09:00:00
Unix timestamps: 1585296000.0 1585382400.0
Hex Block Numbers: 0x94ceb9 0x94e824
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x94d118', 'uniqueId': '0xf8ca3b29e1f56735d75c593b64fbe0db0c4b961f8acb5323abf02a25bb07ed14:log:145', 'hash': '0xf8ca3b29e1f56735d75c593b64fbe0db0c4b961f8acb5323abf02a25bb07ed14', 'from': '0x3e01a44056a77939d181877cf10a43ea2ec36140', 'to': '0x2f847267b8af45670fe21a1acce9968814cd8e78', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T10:15:47.000Z'}}, {'blockNum': '0x94d18f', 'uniqueId': '0x8b27e682f487c74a280f43dd15a8ca4040749f367afed430211716eb26dc1eea:log:32', 'hash': '0x8b27e682f487c74a280f43dd15a8ca4040749f367afed430211716eb26dc1eea', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf076a62c375886733bea9a126942948b2e89845b', 'value': 2645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x8f62bfae307c340000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T10:42:53.000Z'}}, {'blockNum': '0x94d51b', 'uniqueId': '0x2548f9e39cd32a7586fd684f0fc442e5f73fdcc403eeea2c71393fcdf25024e3:log:10', 'hash': '0x2548f9e39cd32a7586fd684f0fc442e5f73fdcc403eeea2c71393fcdf25024e3', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x547bde071bfae814251407c81f1350f2a51174a1', 'value': 2414.231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x82e02f7f5b20158000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T14:11:42.000Z'}}, {'blockNum': '0x94d926', 'uniqueId': '0x1c4d547ebd64f708209871fcf26aa25bd13262060fc84caf04e40cd517dd3e3e:log:0', 'hash': '0x1c4d547ebd64f708209871fcf26aa25bd13262060fc84caf04e40cd517dd3e3e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2b7c9ce7a411df6761b7cea57671d2065e5be957', 'value': 85767.794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x12297b3ef1c07f650000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T17:51:27.000Z'}}, {'blockNum': '0x94dc80', 'uniqueId': '0x304a83d7931adf4af921da144eb4cf8275fd7483d886e8b4570496ae973c9a63:log:4', 'hash': '0x304a83d7931adf4af921da144eb4cf8275fd7483d886e8b4570496ae973c9a63', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 54312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x0b80426952b0f7a00000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T21:00:41.000Z'}}, {'blockNum': '0x94dca7', 'uniqueId': '0x5a51bde78ac88ba830de28311b4c2e2cd0dc01420f668386c9d55cc8f61d044b:log:4', 'hash': '0x5a51bde78ac88ba830de28311b4c2e2cd0dc01420f668386c9d55cc8f61d044b', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 54312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x0b80426952b0f7a00000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T21:12:06.000Z'}}, {'blockNum': '0x94dd84', 'uniqueId': '0x38089541663640c7a0307411147e03068c685182209578cc5bb176d93e906231:log:10', 'hash': '0x38089541663640c7a0307411147e03068c685182209578cc5bb176d93e906231', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 164602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x22db17a0f53a3fa80000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T21:58:25.000Z'}}, {'blockNum': '0x94dd85', 'uniqueId': '0x5a84becf2c9d4da86a8f0cdd37092d11869faeea68b3928cc732bd3f194b004b:log:37', 'hash': '0x5a84becf2c9d4da86a8f0cdd37092d11869faeea68b3928cc732bd3f194b004b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 147321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x1f324993dfe3ba440000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T21:58:27.000Z'}}, {'blockNum': '0x94dd85', 'uniqueId': '0x1602c70713f2a72a6aeff7d5de9dbe6e619b1fb0e8b900e76fa07f53c124386d:log:38', 'hash': '0x1602c70713f2a72a6aeff7d5de9dbe6e619b1fb0e8b900e76fa07f53c124386d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 55833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x0bd2b686d41680c40000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T21:58:27.000Z'}}, {'blockNum': '0x94dd98', 'uniqueId': '0x7b68efd4bb508770fbe31142001607478c289023b2e5d47b50d77b6099ea4b9b:log:11', 'hash': '0x7b68efd4bb508770fbe31142001607478c289023b2e5d47b50d77b6099ea4b9b', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 55833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x0bd2b686d41680c40000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T22:02:08.000Z'}}, {'blockNum': '0x94dd98', 'uniqueId': '0x9d5a585e9d7823c3f9c9ac39b0a1ae873b23646afcbc2d5a14ac0360bd0124c5:log:13', 'hash': '0x9d5a585e9d7823c3f9c9ac39b0a1ae873b23646afcbc2d5a14ac0360bd0124c5', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 147321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x1f324993dfe3ba440000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T22:02:08.000Z'}}, {'blockNum': '0x94dd99', 'uniqueId': '0xd9bd5e5ffbc6ebc7552fcbba1395f3393d996e29023461bb92073a11b5501a7d:log:9', 'hash': '0xd9bd5e5ffbc6ebc7552fcbba1395f3393d996e29023461bb92073a11b5501a7d', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 164602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x22db17a0f53a3fa80000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T22:02:14.000Z'}}, {'blockNum': '0x94dd99', 'uniqueId': '0x93b37766cfb765dac2c2b48b5efb19c748ee7627d31f826abed0ee79436a04bc:log:302', 'hash': '0x93b37766cfb765dac2c2b48b5efb19c748ee7627d31f826abed0ee79436a04bc', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x94e509b0f855297c0b99ab61bff027e0ad114121', 'value': 300270, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x3f95ab58555b6ef80000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T22:02:14.000Z'}}, {'blockNum': '0x94ddc9', 'uniqueId': '0xd090f618f64bb05d259929d0146287d41e311321916ba2d82a432f87598f1f3b:log:14', 'hash': '0xd090f618f64bb05d259929d0146287d41e311321916ba2d82a432f87598f1f3b', 'from': '0x94e509b0f855297c0b99ab61bff027e0ad114121', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 300270, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x3f95ab58555b6ef80000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T22:12:00.000Z'}}, {'blockNum': '0x94e565', 'uniqueId': '0x06a94e467b707651a4f80e161f281d2c77bf574d0f69888a5313943d9d9d9cbc:log:39', 'hash': '0x06a94e467b707651a4f80e161f281d2c77bf574d0f69888a5313943d9d9d9cbc', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0e96a32fc8a91d01fa157fee31948c034f737c21', 'value': 338277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x47a2086d1fa40e740000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-28T05:21:56.000Z'}}, {'blockNum': '0x94e56c', 'uniqueId': '0x5aa925ebe0853cfb4738b797c95ec8b4be2ebaa59116a6fa7030d918692a0b6e:log:49', 'hash': '0x5aa925ebe0853cfb4738b797c95ec8b4be2ebaa59116a6fa7030d918692a0b6e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7fa4b25c3d29e8b9eed8da649fa5c13fb6bcc392', 'value': 475759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x64bef2731cc95c5c0000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-28T05:23:43.000Z'}}]}}
Number of returned transfers: 16
Answer is complete
symbol LRC
group CPS
date 2019-07-25
hour 20:00
exchange binance
Name: 404, dtype: object
HERE
Symbol: LRC, Contract: 0xbbbbca6a901c926f240b89eacb641d8aec7aeafd
Datetime timestamps: 2019-07-25 20:00:00 2019-07-25 08:00:00 2019-07-26 08:00:00
Unix timestamps: 1564034400.0 1564120800.0
Hex Block Numbers: 0x7d65dd 0x7d7eab
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7d6635', 'uniqueId': '0x1c4c45feb31c71b184f6ad8917d221d423d5d98e57aeb6d5c810fa34e926dee2:log:66', 'hash': '0x1c4c45feb31c71b184f6ad8917d221d423d5d98e57aeb6d5c810fa34e926dee2', 'from': '0x60f1a94254f9643d5a79ae66fa6b15147f484ac4', 'to': '0x73cd1f4ee6967fd2d16a7843c23c7892104466d5', 'value': 9100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x01ed4fde7a2236b00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T06:18:06.000Z'}}, {'blockNum': '0x7d6699', 'uniqueId': '0xd402ba76c4246a63eacad6566c11e0adead0a4b368c2822190b8fa5a44f41e54:log:67', 'hash': '0xd402ba76c4246a63eacad6566c11e0adead0a4b368c2822190b8fa5a44f41e54', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 997.2666847964633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x360fdafe13b8a51f4f', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T06:41:36.000Z'}}, {'blockNum': '0x7d6699', 'uniqueId': '0xd402ba76c4246a63eacad6566c11e0adead0a4b368c2822190b8fa5a44f41e54:log:69', 'hash': '0xd402ba76c4246a63eacad6566c11e0adead0a4b368c2822190b8fa5a44f41e54', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 997.2666398816245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x360fdad53a2ba20000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T06:41:36.000Z'}}, {'blockNum': '0x7d6699', 'uniqueId': '0xd402ba76c4246a63eacad6566c11e0adead0a4b368c2822190b8fa5a44f41e54:log:70', 'hash': '0xd402ba76c4246a63eacad6566c11e0adead0a4b368c2822190b8fa5a44f41e54', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 997.2666398816245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x360fdad53a2ba20000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T06:41:36.000Z'}}, {'blockNum': '0x7d67ac', 'uniqueId': '0xc5ec0ada345a5186fc877ba9e71fd0f9c4fde608600d232c113e90c7310e9aeb:log:20', 'hash': '0xc5ec0ada345a5186fc877ba9e71fd0f9c4fde608600d232c113e90c7310e9aeb', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x4a39f5e0a4499a78aba80bf35ba0d7556fdc98e9', 'value': 4991.095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010e915b7a8b9c458000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T07:40:35.000Z'}}, {'blockNum': '0x7d67db', 'uniqueId': '0x21d8a53c3c5c800d17ffba9779a2caba207ce97961758a1831f87464a598a9b2:log:84', 'hash': '0x21d8a53c3c5c800d17ffba9779a2caba207ce97961758a1831f87464a598a9b2', 'from': '0x150dd89722249fced8f4a58d616030bd4bd3eee4', 'to': '0x88594f3109019e58f4cd71450061cc47edd26b66', 'value': 908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3139080535b6b00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T07:52:00.000Z'}}, {'blockNum': '0x7d67e8', 'uniqueId': '0x3256de13610527f03decbf7fd256abc87a8ecb4cf18be3f248524d0652c2f262:log:2', 'hash': '0x3256de13610527f03decbf7fd256abc87a8ecb4cf18be3f248524d0652c2f262', 'from': '0x4a39f5e0a4499a78aba80bf35ba0d7556fdc98e9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9981.095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x021d1384bc646b7d8000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T07:54:01.000Z'}}, {'blockNum': '0x7d6871', 'uniqueId': '0x154812422ff33beed88af993b303604ffa600098f974ef222b14a450ec92420e:log:89', 'hash': '0x154812422ff33beed88af993b303604ffa600098f974ef222b14a450ec92420e', 'from': '0x7141965edc908d61feebe07367a871acb7b700bb', 'to': '0x2ce211114634b554680de3a245dd86027086b5f1', 'value': 3578.831664794245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xc2024435aae4d8635f', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T08:25:10.000Z'}}, {'blockNum': '0x7d691e', 'uniqueId': '0x826982a5e5546065bddcfba7bcd0a2e75495db91a064b21425ac43cffb85c5b3:log:9', 'hash': '0x826982a5e5546065bddcfba7bcd0a2e75495db91a064b21425ac43cffb85c5b3', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x9909ea65f0b6a87d7d026c8968329c8ad3200535', 'value': 4781.515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010334d9bef2a1e78000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T09:05:10.000Z'}}, {'blockNum': '0x7d694b', 'uniqueId': '0xbdca8a467ad3e9c4cfe10f9644cd74f35cb427389d5985b7b20b7aeb697ad03d:log:28', 'hash': '0xbdca8a467ad3e9c4cfe10f9644cd74f35cb427389d5985b7b20b7aeb697ad03d', 'from': '0x9909ea65f0b6a87d7d026c8968329c8ad3200535', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4781.515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010334d9bef2a1e78000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T09:14:04.000Z'}}, {'blockNum': '0x7d6973', 'uniqueId': '0xcbe4fdfc4575edb46d83db61777f246cdcf9a486435924820efa7d1088b0981b:log:34', 'hash': '0xcbe4fdfc4575edb46d83db61777f246cdcf9a486435924820efa7d1088b0981b', 'from': '0xf1589e8afb0a7628f50023b384e29bacb97fc647', 'to': '0xba2518ea34be9c265a53297d849e2e7bca917f74', 'value': 50.1602999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02b81d2eff968fd800', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T09:25:31.000Z'}}, {'blockNum': '0x7d69be', 'uniqueId': '0x0be67d9c4365663b9b33537b7057a6279e4b31fc902220e8ddefd8ae37ce2c58:log:26', 'hash': '0x0be67d9c4365663b9b33537b7057a6279e4b31fc902220e8ddefd8ae37ce2c58', 'from': '0xba2518ea34be9c265a53297d849e2e7bca917f74', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50.1602999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02b81d2eff968fd800', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T09:43:52.000Z'}}, {'blockNum': '0x7d6ac4', 'uniqueId': '0xc41187277fea64cdbb7dffa02d6304fa472e7b493ce6b1fdb7e0ab1cf07de4d6:log:9', 'hash': '0xc41187277fea64cdbb7dffa02d6304fa472e7b493ce6b1fdb7e0ab1cf07de4d6', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x923bcc38cb1114d1dba11061c2ab0117e6501f05', 'value': 3999993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x034f080e1634ccf0440000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T10:42:36.000Z'}}, {'blockNum': '0x7d6b78', 'uniqueId': '0x88bd5d7c2dcc6f9610bc269919799b7d13e7fc247ead2f2cb9caf93e4c753af2:log:18', 'hash': '0x88bd5d7c2dcc6f9610bc269919799b7d13e7fc247ead2f2cb9caf93e4c753af2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 11167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x025d5d41a6b2c31c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T11:26:09.000Z'}}, {'blockNum': '0x7d6c83', 'uniqueId': '0xf21c0285f6960a1f923564c68fa607951b8fa8f33faecc2fa092f771bc12d1cf:log:32', 'hash': '0xf21c0285f6960a1f923564c68fa607951b8fa8f33faecc2fa092f771bc12d1cf', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 10668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0242503d86837b300000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T12:25:34.000Z'}}, {'blockNum': '0x7d6cd6', 'uniqueId': '0x42588c4bb939802a7750101d962bf56b211b52046098b6bd5bee435c43420302:log:95', 'hash': '0x42588c4bb939802a7750101d962bf56b211b52046098b6bd5bee435c43420302', 'from': '0x87c574fb2df0eaa2daf5fc4a8a16dd3ce39011b1', 'to': '0xed8526bf1add770801e8d44a110421a9adb93501', 'value': 1059.932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x397582ea3d55560000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T12:45:53.000Z'}}, {'blockNum': '0x7d6d4c', 'uniqueId': '0x75d9c50783096bcce6fe1fa294ada1c7577fdc79ebaba3754a959ec64faafed0:log:7', 'hash': '0x75d9c50783096bcce6fe1fa294ada1c7577fdc79ebaba3754a959ec64faafed0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 24795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054023bfaa75b28c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T13:14:46.000Z'}}, {'blockNum': '0x7d6d7b', 'uniqueId': '0xac69e2d0cb9204edd84950a1ece8062a75bc599fb8707b3f899f35206aa88244:log:23', 'hash': '0xac69e2d0cb9204edd84950a1ece8062a75bc599fb8707b3f899f35206aa88244', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 24795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054023bfaa75b28c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T13:25:37.000Z'}}, {'blockNum': '0x7d6e19', 'uniqueId': '0x60c1f6fbda9cb072c1e01c704cdb41853021087f8a24d5519407828af60ce874:log:9', 'hash': '0x60c1f6fbda9cb072c1e01c704cdb41853021087f8a24d5519407828af60ce874', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x94e509b0f855297c0b99ab61bff027e0ad114121', 'value': 35, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x01e5b8fa8fe2ac0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T14:03:04.000Z'}}, {'blockNum': '0x7d6fcb', 'uniqueId': '0x973c4050af92255e3f58bd541cb7e5770ff7017154ed6f08f26883af300d125c:log:34', 'hash': '0x973c4050af92255e3f58bd541cb7e5770ff7017154ed6f08f26883af300d125c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 10702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02442815ca5fb6780000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T15:42:47.000Z'}}, {'blockNum': '0x7d6fcb', 'uniqueId': '0xd4b9912523e3d36934dba1eded419f175f4a63abc4822f4921cd5c1762ff822a:log:40', 'hash': '0xd4b9912523e3d36934dba1eded419f175f4a63abc4822f4921cd5c1762ff822a', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2778.4368057045344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x969e8e71ffc9cbbb91', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T15:42:47.000Z'}}, {'blockNum': '0x7d6fcb', 'uniqueId': '0xd4b9912523e3d36934dba1eded419f175f4a63abc4822f4921cd5c1762ff822a:log:42', 'hash': '0xd4b9912523e3d36934dba1eded419f175f4a63abc4822f4921cd5c1762ff822a', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2778.4368057045344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x969e8e71ffc9cbbb91', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T15:42:47.000Z'}}, {'blockNum': '0x7d6fcb', 'uniqueId': '0xd4b9912523e3d36934dba1eded419f175f4a63abc4822f4921cd5c1762ff822a:log:43', 'hash': '0xd4b9912523e3d36934dba1eded419f175f4a63abc4822f4921cd5c1762ff822a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2778.4368057045344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x969e8e71ffc9cbbb91', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T15:42:47.000Z'}}, {'blockNum': '0x7d7007', 'uniqueId': '0x5cbd250190ff1f6c761e9714eba2780d8e5777ff66a0cb00808456ca0a61fd74:log:84', 'hash': '0x5cbd250190ff1f6c761e9714eba2780d8e5777ff66a0cb00808456ca0a61fd74', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x06e3d594f795f4c40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T15:54:40.000Z'}}, {'blockNum': '0x7d7008', 'uniqueId': '0xbae0e79281489a3c11be26fac8f2f076941c46ef7cc46247f5678a114124597a:log:18', 'hash': '0xbae0e79281489a3c11be26fac8f2f076941c46ef7cc46247f5678a114124597a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 11134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x025b934a198a2f380000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T15:54:58.000Z'}}, {'blockNum': '0x7d7030', 'uniqueId': '0x308cbf035a02945a57203898c63e2a86d2e63330485606f8f9d7cc561d0bd92b:log:104', 'hash': '0x308cbf035a02945a57203898c63e2a86d2e63330485606f8f9d7cc561d0bd92b', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x025b934a198a2f380000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T16:04:47.000Z'}}, {'blockNum': '0x7d70f9', 'uniqueId': '0x773d1c3531d97a1f6e14bf5be16da149dc0d9eef4af87b3b225164863721d439:log:7', 'hash': '0x773d1c3531d97a1f6e14bf5be16da149dc0d9eef4af87b3b225164863721d439', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 11551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02722e53b42dd91c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T16:45:37.000Z'}}, {'blockNum': '0x7d711d', 'uniqueId': '0x2f847f59c9688949959a5a8accb719328920b26db3b2e9f1d64e202080f0a793:log:186', 'hash': '0x2f847f59c9688949959a5a8accb719328920b26db3b2e9f1d64e202080f0a793', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02722e53b42dd91c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T16:55:27.000Z'}}, {'blockNum': '0x7d744c', 'uniqueId': '0x70a804bb2fbbc3bd00aff74d8df24c56976b626dc89edea94e853722927275a7:log:0', 'hash': '0x70a804bb2fbbc3bd00aff74d8df24c56976b626dc89edea94e853722927275a7', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 9447.260976469257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x020023154c5d6c0d0fde', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:10.000Z'}}, {'blockNum': '0x7d744d', 'uniqueId': '0xee0bb9d40029e644c9ce5a7e0ad8fd7f8f7b9ad4b2b7e5feec0a0162b12db357:log:0', 'hash': '0xee0bb9d40029e644c9ce5a7e0ad8fd7f8f7b9ad4b2b7e5feec0a0162b12db357', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 7544.629608096764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0198fec4cf673634812e', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:23.000Z'}}, {'blockNum': '0x7d744d', 'uniqueId': '0xee0bb9d40029e644c9ce5a7e0ad8fd7f8f7b9ad4b2b7e5feec0a0162b12db357:log:2', 'hash': '0xee0bb9d40029e644c9ce5a7e0ad8fd7f8f7b9ad4b2b7e5feec0a0162b12db357', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 7544.629608096764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0198fec4cf673634812e', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:23.000Z'}}, {'blockNum': '0x7d744d', 'uniqueId': '0xee0bb9d40029e644c9ce5a7e0ad8fd7f8f7b9ad4b2b7e5feec0a0162b12db357:log:7', 'hash': '0xee0bb9d40029e644c9ce5a7e0ad8fd7f8f7b9ad4b2b7e5feec0a0162b12db357', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 7544.629608096765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0198fec4cf6736400000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:23.000Z'}}, {'blockNum': '0x7d744f', 'uniqueId': '0x3f57c9d3f14250be041da13eccc561714b7bf73241fa82d6ba72db2d0e98d667:log:0', 'hash': '0x3f57c9d3f14250be041da13eccc561714b7bf73241fa82d6ba72db2d0e98d667', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 11723.074549263078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x027b82574f0b38440bf1', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:34.000Z'}}, {'blockNum': '0x7d744f', 'uniqueId': '0xfe1fbc981aa7afbd1f51d7988c4e722842cebe637617080de5f10d6d5daddd04:log:8', 'hash': '0xfe1fbc981aa7afbd1f51d7988c4e722842cebe637617080de5f10d6d5daddd04', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 33354.241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x071023143f2849c68000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:34.000Z'}}, {'blockNum': '0x7d744f', 'uniqueId': '0x722a805d7255c25c9a6c50227bc8ee58b7c5f0b6ff734e483077a46272f7ee5c:log:9', 'hash': '0x722a805d7255c25c9a6c50227bc8ee58b7c5f0b6ff734e483077a46272f7ee5c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x77cdc9a4f33f8cf2392a651553519923ef23808a', 'value': 101535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1580392f6083a71c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:34.000Z'}}, {'blockNum': '0x7d7450', 'uniqueId': '0xcd157ad617e74fb3256af21c1e74cc05f02b966e49aa0363d03427a0e6b057d6:log:19', 'hash': '0xcd157ad617e74fb3256af21c1e74cc05f02b966e49aa0363d03427a0e6b057d6', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 1435.602642885778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4dd2fd258e4ac500f0', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:43.000Z'}}, {'blockNum': '0x7d7450', 'uniqueId': '0xc392f52631dd0a3ad3137985bacb3113ade2ccf8d92fc8dcefcb74be4df62553:log:21', 'hash': '0xc392f52631dd0a3ad3137985bacb3113ade2ccf8d92fc8dcefcb74be4df62553', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 5009.709154201566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010f93ae3d2b6ef3f30d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:43.000Z'}}, {'blockNum': '0x7d7450', 'uniqueId': '0xc392f52631dd0a3ad3137985bacb3113ade2ccf8d92fc8dcefcb74be4df62553:log:23', 'hash': '0xc392f52631dd0a3ad3137985bacb3113ade2ccf8d92fc8dcefcb74be4df62553', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 5009.709154201566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010f93ae3d2b6ef3f30d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:43.000Z'}}, {'blockNum': '0x7d7450', 'uniqueId': '0xc392f52631dd0a3ad3137985bacb3113ade2ccf8d92fc8dcefcb74be4df62553:log:28', 'hash': '0xc392f52631dd0a3ad3137985bacb3113ade2ccf8d92fc8dcefcb74be4df62553', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 5009.709154201566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010f93ae3d2b6ef3f30d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:43.000Z'}}, {'blockNum': '0x7d7450', 'uniqueId': '0x4b300611fa96b3ff046a5448ac7bdba55dd08f8e1b545b8049caf4e1141d12f1:log:48', 'hash': '0x4b300611fa96b3ff046a5448ac7bdba55dd08f8e1b545b8049caf4e1141d12f1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 12483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02a4b46cda3b412c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:43.000Z'}}, {'blockNum': '0x7d7450', 'uniqueId': '0x80158221eb0b1ebab510cc1b6fef061ca3b2486e8b13e36df1f5b49926dc7c5b:log:49', 'hash': '0x80158221eb0b1ebab510cc1b6fef061ca3b2486e8b13e36df1f5b49926dc7c5b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 6391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x015a74f11f07e17c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:43.000Z'}}, {'blockNum': '0x7d7452', 'uniqueId': '0x2f80917e6e561622cfa4460a33972a68902c11143d93e8995e3ab11a8b1bc1b0:log:8', 'hash': '0x2f80917e6e561622cfa4460a33972a68902c11143d93e8995e3ab11a8b1bc1b0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'value': 5441.0537232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0126f5c9fd4ff0968000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:01:23.000Z'}}, {'blockNum': '0x7d7452', 'uniqueId': '0x87d547000dc9fcf0595f813a3c6834c85d4cc51971768a207e479f65f87e4947:log:9', 'hash': '0x87d547000dc9fcf0595f813a3c6834c85d4cc51971768a207e479f65f87e4947', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 74975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0fe06724116ce01c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:01:23.000Z'}}, {'blockNum': '0x7d7456', 'uniqueId': '0xbeb9169849a73c4b3375f012e7afb86e6577d47afd99f12cbe9a58ee216d448f:log:11', 'hash': '0xbeb9169849a73c4b3375f012e7afb86e6577d47afd99f12cbe9a58ee216d448f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x268737253715badc5016befa6113ecc68370b780', 'value': 15746.10312049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03559913f1a7e44ba400', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:01:40.000Z'}}, {'blockNum': '0x7d7456', 'uniqueId': '0xbd7a9d0a9b4694d82dde512da7e36346df9ddb8b541ec58a423ea4bd07877fb1:log:12', 'hash': '0xbd7a9d0a9b4694d82dde512da7e36346df9ddb8b541ec58a423ea4bd07877fb1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x275409f8eb9927f0db19b103ce45f91ffe404e6e', 'value': 24985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054a708743cbeec40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:01:40.000Z'}}, {'blockNum': '0x7d7456', 'uniqueId': '0x55c137e969e5a84e59f2fea12fb752dffb5ec65dd79686df325143390d5217fa:log:13', 'hash': '0x55c137e969e5a84e59f2fea12fb752dffb5ec65dd79686df325143390d5217fa', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'value': 585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1fb681808983840000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:01:40.000Z'}}, {'blockNum': '0x7d7456', 'uniqueId': '0x76c60fb1497c55553b189f1fce99cf1dfee449b2cee611a1e704b70aafeba17b:log:14', 'hash': '0x76c60fb1497c55553b189f1fce99cf1dfee449b2cee611a1e704b70aafeba17b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 5485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x012957aa873979940000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:01:40.000Z'}}, {'blockNum': '0x7d7456', 'uniqueId': '0x4f72cb4116998e9004f60d3d0de2654eef9548466644cfe80415ad3ab69dacf8:log:60', 'hash': '0x4f72cb4116998e9004f60d3d0de2654eef9548466644cfe80415ad3ab69dacf8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x9e5bbd1a9aabbc4e3f8be937077417c04697ce1f', 'value': 19990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x043ba8fa7070da980000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:01:40.000Z'}}, {'blockNum': '0x7d745a', 'uniqueId': '0xf5f9cd65f8721f342956b57e79c5ad954928e2b4cc885a7c977ff23f039c397e:log:6', 'hash': '0xf5f9cd65f8721f342956b57e79c5ad954928e2b4cc885a7c977ff23f039c397e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 16501.8783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x037e9190c326d2edc000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:02:17.000Z'}}, {'blockNum': '0x7d745c', 'uniqueId': '0xd0ab1e73b5fdca82921582bbe61a8285386996e75e9e2d1c5e59dc3aa8ab20a6:log:1', 'hash': '0xd0ab1e73b5fdca82921582bbe61a8285386996e75e9e2d1c5e59dc3aa8ab20a6', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 10295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x022e17d352c0967c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:02:42.000Z'}}, {'blockNum': '0x7d745e', 'uniqueId': '0xdd9121126c596ec80bbe75b09d4b76826091d8d68c5cb436babae1d9c25c2329:log:7', 'hash': '0xdd9121126c596ec80bbe75b09d4b76826091d8d68c5cb436babae1d9c25c2329', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 1976.6419998095503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x6b276b1220edfb3f2d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:03:03.000Z'}}, {'blockNum': '0x7d7463', 'uniqueId': '0xcd21dbb11b9c57cc9ee1fbae00cb3ca1d910d672baac5d770525fab56560b582:log:21', 'hash': '0xcd21dbb11b9c57cc9ee1fbae00cb3ca1d910d672baac5d770525fab56560b582', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xfa7e17ae2b6425f9c66eacadd9418cb87325c1a0', 'value': 17503.62940706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03b4dfa79f8494884800', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:04:12.000Z'}}, {'blockNum': '0x7d7465', 'uniqueId': '0x7d0a01b96263647bb8ac21ba8ea0180b130fbd614b4bfbe41b3954ed9908cb73:log:21', 'hash': '0x7d0a01b96263647bb8ac21ba8ea0180b130fbd614b4bfbe41b3954ed9908cb73', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 42114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x08eb0127de7710c80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:05:09.000Z'}}, {'blockNum': '0x7d7465', 'uniqueId': '0xdf9c655177400fe820ef5cec1d402417485146c1f58f4dd838bfd0e9999bbd86:log:179', 'hash': '0xdf9c655177400fe820ef5cec1d402417485146c1f58f4dd838bfd0e9999bbd86', 'from': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5441.0537232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0126f5c9fd4ff0968000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:05:09.000Z'}}, {'blockNum': '0x7d7466', 'uniqueId': '0xd0124bb3c9383274f1716dfa6719d8c447571465db32b5e6cc75fd076891ef20:log:177', 'hash': '0xd0124bb3c9383274f1716dfa6719d8c447571465db32b5e6cc75fd076891ef20', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33354.241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x071023143f2849c68000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:05:25.000Z'}}, {'blockNum': '0x7d746c', 'uniqueId': '0x90893e0fbc466e6bf10e08d936edf074e81799468e98b44db831543aa1f9e323:log:137', 'hash': '0x90893e0fbc466e6bf10e08d936edf074e81799468e98b44db831543aa1f9e323', 'from': '0x2bbfe5650e9876fb313d6b32352c6dc5966a7b68', 'to': '0x98bb8b25e7b4643ef61a989280ac402a94fc6acb', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:06:53.000Z'}}, {'blockNum': '0x7d746d', 'uniqueId': '0xc4a1aa30ecb74f3c130a97e6804826723aa19b88d97f69da8525f31fe8049791:log:15', 'hash': '0xc4a1aa30ecb74f3c130a97e6804826723aa19b88d97f69da8525f31fe8049791', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2895.2995504517385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x9cf45a512e7007c968', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:07:06.000Z'}}, {'blockNum': '0x7d746d', 'uniqueId': '0xc4a1aa30ecb74f3c130a97e6804826723aa19b88d97f69da8525f31fe8049791:log:17', 'hash': '0xc4a1aa30ecb74f3c130a97e6804826723aa19b88d97f69da8525f31fe8049791', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2895.2995504517385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x9cf45a512e7007c968', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:07:06.000Z'}}, {'blockNum': '0x7d746d', 'uniqueId': '0xc4a1aa30ecb74f3c130a97e6804826723aa19b88d97f69da8525f31fe8049791:log:18', 'hash': '0xc4a1aa30ecb74f3c130a97e6804826723aa19b88d97f69da8525f31fe8049791', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2895.2995504517385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x9cf45a512e7007c968', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:07:06.000Z'}}, {'blockNum': '0x7d7470', 'uniqueId': '0xeaefc6af170751a3a3edd828da2d8b83f883454c9833ee3f64ac7d6ef585a4ef:log:24', 'hash': '0xeaefc6af170751a3a3edd828da2d8b83f883454c9833ee3f64ac7d6ef585a4ef', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1817fa1023501eabeb948f9cbc81c0028daf46ef', 'value': 37628.2753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x07f7d5385e34011a4000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:07:35.000Z'}}, {'blockNum': '0x7d7471', 'uniqueId': '0x43acb08a97dde1b7c0854c3110c1e5d19935ce9dd912b282147eba536e19b6a1:log:29', 'hash': '0x43acb08a97dde1b7c0854c3110c1e5d19935ce9dd912b282147eba536e19b6a1', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 3424.1150442477874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xb99f245b011c5521fb', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:08:03.000Z'}}, {'blockNum': '0x7d7478', 'uniqueId': '0xa6349bde8a02067ad90b380ddb41cec10e80a257c7dde898697cb02c69fc93f3:log:6', 'hash': '0xa6349bde8a02067ad90b380ddb41cec10e80a257c7dde898697cb02c69fc93f3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'value': 4982.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010e18b0a21d0a400000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:10:44.000Z'}}, {'blockNum': '0x7d7482', 'uniqueId': '0xeb083b66c681685182cfff80c996dce4f11bf31898cdd1b4ff9d9af9ce7a81a3:log:1', 'hash': '0xeb083b66c681685182cfff80c996dce4f11bf31898cdd1b4ff9d9af9ce7a81a3', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 4803.581851728919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x01046716f3ae17536c42', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:12:30.000Z'}}, {'blockNum': '0x7d7482', 'uniqueId': '0xeb083b66c681685182cfff80c996dce4f11bf31898cdd1b4ff9d9af9ce7a81a3:log:3', 'hash': '0xeb083b66c681685182cfff80c996dce4f11bf31898cdd1b4ff9d9af9ce7a81a3', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4803.581851728919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x01046716f3ae17536c42', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:12:30.000Z'}}, {'blockNum': '0x7d7482', 'uniqueId': '0xeb083b66c681685182cfff80c996dce4f11bf31898cdd1b4ff9d9af9ce7a81a3:log:4', 'hash': '0xeb083b66c681685182cfff80c996dce4f11bf31898cdd1b4ff9d9af9ce7a81a3', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4803.581851728919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x01046716f3ae17536c42', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:12:30.000Z'}}, {'blockNum': '0x7d7482', 'uniqueId': '0xf2f49c4474306b395367243b5eaa793b79504b4b54279a51f2759eb4cc9e2c88:log:11', 'hash': '0xf2f49c4474306b395367243b5eaa793b79504b4b54279a51f2759eb4cc9e2c88', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xd1dbd6b9e3fabd2958bd8ffb0543c9515c45cbdb', 'value': 13990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02f666405dcda2d80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:12:30.000Z'}}, {'blockNum': '0x7d7484', 'uniqueId': '0xa6ca6153a0539ab0e97a08c38dd36b02c90f94a424176c1e169a24fa5c005326:log:25', 'hash': '0xa6ca6153a0539ab0e97a08c38dd36b02c90f94a424176c1e169a24fa5c005326', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 2421.225382932166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x83414089932ee95911', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:12:46.000Z'}}, {'blockNum': '0x7d7484', 'uniqueId': '0xab987897ab3a2efc43557a4575c0faf5f4a82e9d9933db4db2c5a21cb004fd1f:log:40', 'hash': '0xab987897ab3a2efc43557a4575c0faf5f4a82e9d9933db4db2c5a21cb004fd1f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5f303ac5e61a84a5750c83a44dd80a33f0c8c72f', 'value': 13990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02f666405dcda2d80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:12:46.000Z'}}, {'blockNum': '0x7d7487', 'uniqueId': '0x09ddda7705cbf570750c1e42e43e502eb7eb48d08b1b609e583fa9e9eb4f6a8b:log:0', 'hash': '0x09ddda7705cbf570750c1e42e43e502eb7eb48d08b1b609e583fa9e9eb4f6a8b', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 4016.326530612245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xd9b9ba342e8fe5e0a7', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:13:36.000Z'}}, {'blockNum': '0x7d7487', 'uniqueId': '0x20ea2f79909ab60183e099228f051934ea5842c23f8695b8b28c6b3624202bfa:log:4', 'hash': '0x20ea2f79909ab60183e099228f051934ea5842c23f8695b8b28c6b3624202bfa', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 13929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02f317b4d4fec0040000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:13:36.000Z'}}, {'blockNum': '0x7d748a', 'uniqueId': '0xcb1724d93a93d5d27b4e4a4eaf0cfdccb0bec5c43c7e723cbff89255880ea80a:log:4', 'hash': '0xcb1724d93a93d5d27b4e4a4eaf0cfdccb0bec5c43c7e723cbff89255880ea80a', 'from': '0x95b564f3b3bae3f206aa418667ba000afafacc8a', 'to': '0x8d3b2ade0160c8df0246003f3f152057b73b9894', 'value': 113038.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x17efcdeeeecbdc7c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:14:03.000Z'}}, {'blockNum': '0x7d748a', 'uniqueId': '0x6f89233897a4723c2ba3dd1d7e247f95c229ffd64ef27caea2cea9cfc62e85db:log:176', 'hash': '0x6f89233897a4723c2ba3dd1d7e247f95c229ffd64ef27caea2cea9cfc62e85db', 'from': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16501.8783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x037e9190c326d2edc000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:14:03.000Z'}}, {'blockNum': '0x7d748b', 'uniqueId': '0xc3022f73aea98a117ea130a6aec9bdaab04835876d89a6a0c47aecb5b9687fe9:log:180', 'hash': '0xc3022f73aea98a117ea130a6aec9bdaab04835876d89a6a0c47aecb5b9687fe9', 'from': '0x268737253715badc5016befa6113ecc68370b780', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15746.10312049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03559913f1a7e44ba400', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:14:30.000Z'}}, {'blockNum': '0x7d748d', 'uniqueId': '0xd9d79f8413d41ff5334093713f47dc556e60d6784a4fab62c37f11630602a100:log:123', 'hash': '0xd9d79f8413d41ff5334093713f47dc556e60d6784a4fab62c37f11630602a100', 'from': '0xfa7e17ae2b6425f9c66eacadd9418cb87325c1a0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17503.62940706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03b4dfa79f8494884800', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:15:04.000Z'}}, {'blockNum': '0x7d748e', 'uniqueId': '0x22593ae1e1b0c01512c0ff34074e528f25bf8b5017a18c564a7e3dd1c8fab2bf:log:36', 'hash': '0x22593ae1e1b0c01512c0ff34074e528f25bf8b5017a18c564a7e3dd1c8fab2bf', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x08eb0127de7710c80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:15:32.000Z'}}, {'blockNum': '0x7d748f', 'uniqueId': '0xb1146e5534393c449822af5b989982646f736bbf008cabc2df709b55be178ba7:log:172', 'hash': '0xb1146e5534393c449822af5b989982646f736bbf008cabc2df709b55be178ba7', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x012957aa873979940000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:15:35.000Z'}}, {'blockNum': '0x7d74b4', 'uniqueId': '0xdb105883d26a85b236f25b11cb8107a54f2cfc8a2f020cd028c9ae019313f392:log:8', 'hash': '0xdb105883d26a85b236f25b11cb8107a54f2cfc8a2f020cd028c9ae019313f392', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0289ef6aaefb5e7456788c7da65c056f0b4856f7', 'value': 24965.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0549608613a4511c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:23:48.000Z'}}, {'blockNum': '0x7d74b4', 'uniqueId': '0xdf9fd911a5da0f9c612d80a00e044f81bc76441adc38bcff1787504f7da8e77b:log:12', 'hash': '0xdf9fd911a5da0f9c612d80a00e044f81bc76441adc38bcff1787504f7da8e77b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 10541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x023b6dc2e36370940000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:23:48.000Z'}}, {'blockNum': '0x7d74b5', 'uniqueId': '0xa08a33a443b658d46b46c1dd2fdb301fa091253f7393678ca62249b055fb6e74:log:22', 'hash': '0xa08a33a443b658d46b46c1dd2fdb301fa091253f7393678ca62249b055fb6e74', 'from': '0x1817fa1023501eabeb948f9cbc81c0028daf46ef', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37628.2753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x07f7d5385e34011a4000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:23:52.000Z'}}, {'blockNum': '0x7d74b5', 'uniqueId': '0x2332d123923ad6d818a32ea478d3a5097f5d5194eee375152bea430d20a0521d:log:86', 'hash': '0x2332d123923ad6d818a32ea478d3a5097f5d5194eee375152bea430d20a0521d', 'from': '0x5f303ac5e61a84a5750c83a44dd80a33f0c8c72f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02f666405dcda2d80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:23:52.000Z'}}, {'blockNum': '0x7d74b8', 'uniqueId': '0xc8e8b7b5eb3c482840d168c837b7521dba722169023b146249e15967c7b3c214:log:89', 'hash': '0xc8e8b7b5eb3c482840d168c837b7521dba722169023b146249e15967c7b3c214', 'from': '0x8d3b2ade0160c8df0246003f3f152057b73b9894', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 113038.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x17efcdeeeecbdc7c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:24:50.000Z'}}, {'blockNum': '0x7d74b9', 'uniqueId': '0x245a68d308bbee5d9a7172846815e3e484fb90df9465a4e45b1e135773727446:log:38', 'hash': '0x245a68d308bbee5d9a7172846815e3e484fb90df9465a4e45b1e135773727446', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:24:53.000Z'}}, {'blockNum': '0x7d74c7', 'uniqueId': '0xbbc9af58b1859d1caad232a5bc69d170f75351e07983cefbc24d7524ea1fd8fd:log:94', 'hash': '0xbbc9af58b1859d1caad232a5bc69d170f75351e07983cefbc24d7524ea1fd8fd', 'from': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'to': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:27:53.000Z'}}, {'blockNum': '0x7d74ca', 'uniqueId': '0x36f27ba062f4eb3cb8f73f95d03a17e1a2cb77cf8766be6b46e36f46d215ddec:log:10', 'hash': '0x36f27ba062f4eb3cb8f73f95d03a17e1a2cb77cf8766be6b46e36f46d215ddec', 'from': '0x98bb8b25e7b4643ef61a989280ac402a94fc6acb', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519bdfffff', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:28:57.000Z'}}, {'blockNum': '0x7d74ca', 'uniqueId': '0xbd4742c0064bc89a12a22d2c3556a358ed61ee2e1da543d0f69bcc2a509c9ced:log:12', 'hash': '0xbd4742c0064bc89a12a22d2c3556a358ed61ee2e1da543d0f69bcc2a509c9ced', 'from': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 4982.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010e18b0a21d0a400000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:28:57.000Z'}}, {'blockNum': '0x7d74ca', 'uniqueId': '0x668685b6e32db19fc1dffe430d56f1fcb7d82269a2815b2c2b6db416335c3c7b:log:14', 'hash': '0x668685b6e32db19fc1dffe430d56f1fcb7d82269a2815b2c2b6db416335c3c7b', 'from': '0x9e5bbd1a9aabbc4e3f8be937077417c04697ce1f', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 19990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x043ba8fa7070da980000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:28:57.000Z'}}, {'blockNum': '0x7d74ca', 'uniqueId': '0x98e70838c5e4a097fe2ddd25af8520b20273b2fc2af8abe27df7578f94bf17eb:log:15', 'hash': '0x98e70838c5e4a097fe2ddd25af8520b20273b2fc2af8abe27df7578f94bf17eb', 'from': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 74975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0fe06724116ce01c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:28:57.000Z'}}, {'blockNum': '0x7d74ca', 'uniqueId': '0xbfe55f46e3d7d6a8cc7cca93b602d98e71846dd9015b64bffb9955aa778c8523:log:18', 'hash': '0xbfe55f46e3d7d6a8cc7cca93b602d98e71846dd9015b64bffb9955aa778c8523', 'from': '0xd1dbd6b9e3fabd2958bd8ffb0543c9515c45cbdb', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 13990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02f666405dcda2d80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:28:57.000Z'}}, {'blockNum': '0x7d74ca', 'uniqueId': '0x3a2a700b1536466a0478ec3063dc5cc114b72abb1e47a946cc8a3a7361bbc240:log:19', 'hash': '0x3a2a700b1536466a0478ec3063dc5cc114b72abb1e47a946cc8a3a7361bbc240', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 13929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02f317b4d4fec0040000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:28:57.000Z'}}, {'blockNum': '0x7d74cc', 'uniqueId': '0xf6d9dae9d8c4d1168ae7e132fc339daeebd6f7f014f8a6cfd885add429cdfcc1:log:13', 'hash': '0xf6d9dae9d8c4d1168ae7e132fc339daeebd6f7f014f8a6cfd885add429cdfcc1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5f303ac5e61a84a5750c83a44dd80a33f0c8c72f', 'value': 14762.38632993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03204543d898b0286400', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:29:49.000Z'}}, {'blockNum': '0x7d74d5', 'uniqueId': '0x7189ed6ab9f7b057edfdbf4afdc880038abafd069518b81307f4f0889a5fd311:log:5', 'hash': '0x7189ed6ab9f7b057edfdbf4afdc880038abafd069518b81307f4f0889a5fd311', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 2548.3870967741937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x8a25f9b29526d18c63', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:31:22.000Z'}}, {'blockNum': '0x7d74db', 'uniqueId': '0x4c063b65fb6ebaddca2906b3b017749344fb10a169f0d4feff1808513d5171b4:log:0', 'hash': '0x4c063b65fb6ebaddca2906b3b017749344fb10a169f0d4feff1808513d5171b4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x9b310bcc5471b0b635b0e2e024106014b770fcea', 'value': 49990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a95f69ccda0f1580000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:31:55.000Z'}}, {'blockNum': '0x7d74e2', 'uniqueId': '0x608ba2a7f7413995f216d2060a4a26e9dc0d61ecb65760bdfa01212ea0b72bed:log:4', 'hash': '0x608ba2a7f7413995f216d2060a4a26e9dc0d61ecb65760bdfa01212ea0b72bed', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x042f353ba395767136cc069391052ba83f876105', 'value': 2990.372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xa21bbf8254826a0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:32:47.000Z'}}, {'blockNum': '0x7d74f2', 'uniqueId': '0x39ec9c231929cf4fb65d0c11d8701f65072368fff82b8ed13f87517a5babbb5a:log:8', 'hash': '0x39ec9c231929cf4fb65d0c11d8701f65072368fff82b8ed13f87517a5babbb5a', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:36:04.000Z'}}, {'blockNum': '0x7d74f5', 'uniqueId': '0xa62be7c1bd6b2a3900dce1467cda1da3280ca2fda3973c9a25842af89e681bc0:log:54', 'hash': '0xa62be7c1bd6b2a3900dce1467cda1da3280ca2fda3973c9a25842af89e681bc0', 'from': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'to': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:37:09.000Z'}}, {'blockNum': '0x7d74f9', 'uniqueId': '0xa155f268d18c9a15533717c784a363b7e2d24d50e40820a0864d226bac80ccee:log:23', 'hash': '0xa155f268d18c9a15533717c784a363b7e2d24d50e40820a0864d226bac80ccee', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x04e0222fbd9eb1c00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:38:28.000Z'}}, {'blockNum': '0x7d7504', 'uniqueId': '0xf80a45740d5345135884bd3775f51bc47247357f897db89c4d866572419f43d2:log:5', 'hash': '0xf80a45740d5345135884bd3775f51bc47247357f897db89c4d866572419f43d2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 12389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029f9be9c443ca740000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:39:51.000Z'}}, {'blockNum': '0x7d751c', 'uniqueId': '0x0734351b2f1907babb8e1621897a43556d222b2767bf216c1105be86e161679d:log:182', 'hash': '0x0734351b2f1907babb8e1621897a43556d222b2767bf216c1105be86e161679d', 'from': '0x5f303ac5e61a84a5750c83a44dd80a33f0c8c72f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14762.38632993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03204543d898b0286400', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:44:25.000Z'}}, {'blockNum': '0x7d7548', 'uniqueId': '0x4909f7fd562f9ce6f4f23b88d5208c57d15313ba557401c48c67b20533f38a7a:log:53', 'hash': '0x4909f7fd562f9ce6f4f23b88d5208c57d15313ba557401c48c67b20533f38a7a', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 2591.334894613583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x8c79feed2b9cec8d7d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:54:29.000Z'}}, {'blockNum': '0x7d757c', 'uniqueId': '0xe49036b8437e0ae4f1eab14598927b3747c2ac2e956e68f81cc3fed50df3a96c:log:152', 'hash': '0xe49036b8437e0ae4f1eab14598927b3747c2ac2e956e68f81cc3fed50df3a96c', 'from': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T21:05:15.000Z'}}, {'blockNum': '0x7d757c', 'uniqueId': '0x66f3a3daac702a0b270d6fed049874a74d97f21be10d63224ffe1355e6eadf05:log:153', 'hash': '0x66f3a3daac702a0b270d6fed049874a74d97f21be10d63224ffe1355e6eadf05', 'from': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T21:05:15.000Z'}}, {'blockNum': '0x7d758d', 'uniqueId': '0x199409faa9ae9989f630e50e10126fe42ad5a65eee48c4913127531700b2e245:log:8', 'hash': '0x199409faa9ae9989f630e50e10126fe42ad5a65eee48c4913127531700b2e245', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 10393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x023367d94386aac40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T21:09:57.000Z'}}, {'blockNum': '0x7d75d3', 'uniqueId': '0x0dd953e6b684eb5ffa4a109c364c30f48e3e477ee3c17a044f3499adbfd6c297:log:18', 'hash': '0x0dd953e6b684eb5ffa4a109c364c30f48e3e477ee3c17a044f3499adbfd6c297', 'from': '0x0289ef6aaefb5e7456788c7da65c056f0b4856f7', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 24965.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0549608613a4511c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T21:29:00.000Z'}}, {'blockNum': '0x7d75ea', 'uniqueId': '0x8364034eec697a11ca59ec61b9faebbdba3dffe1c8f3ef280b7d542ee67f68cf:log:66', 'hash': '0x8364034eec697a11ca59ec61b9faebbdba3dffe1c8f3ef280b7d542ee67f68cf', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029f9be9c443ca740000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T21:34:10.000Z'}}, {'blockNum': '0x7d7608', 'uniqueId': '0xe837d62008bafc58cfc7412d9143eab6c4f743dfaafa789fd4601663ce30eaa3:log:165', 'hash': '0xe837d62008bafc58cfc7412d9143eab6c4f743dfaafa789fd4601663ce30eaa3', 'from': '0x88594f3109019e58f4cd71450061cc47edd26b66', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3139080535b6b00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T21:39:17.000Z'}}, {'blockNum': '0x7d76ae', 'uniqueId': '0xe7e8ab779423d930bea09b402c9e39dc3b6091ad5284547c5dd0c11f536165f7:log:198', 'hash': '0xe7e8ab779423d930bea09b402c9e39dc3b6091ad5284547c5dd0c11f536165f7', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 12380, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029f1f0357f2e7f00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T22:17:31.000Z'}}, {'blockNum': '0x7d76ae', 'uniqueId': '0x64cce2d38913420c29a53d3bac7c7d599669ca1f621cf250b2de4d8d043f8430:log:199', 'hash': '0x64cce2d38913420c29a53d3bac7c7d599669ca1f621cf250b2de4d8d043f8430', 'from': '0xdf3bd504cb681e635d983caadc9a53e365a71112', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 32010.296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x06c74818762ee36c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T22:17:31.000Z'}}, {'blockNum': '0x7d76cd', 'uniqueId': '0x97561448da471b3714a5513e546dcac01931c38b8c8867f0dabccacec67b619c:log:135', 'hash': '0x97561448da471b3714a5513e546dcac01931c38b8c8867f0dabccacec67b619c', 'from': '0xe516a08a8588f26fd2bee405fc75191a3ef367bb', 'to': '0x0f040e9ae15247fcac52c142d0f3043d789cbe62', 'value': 350000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4a1d89bb94865ec00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T22:27:26.000Z'}}, {'blockNum': '0x7d76d1', 'uniqueId': '0x263cf1868b5cfaa5b457e6d2f692ad116c8969d865af6fa8f6a222b4efbac845:log:4', 'hash': '0x263cf1868b5cfaa5b457e6d2f692ad116c8969d865af6fa8f6a222b4efbac845', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xfe2733522a88672412d8b9a4158d0ac9e012ab50', 'value': 2497.150849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x875eedfab17a1d1000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T22:27:49.000Z'}}, {'blockNum': '0x7d76d9', 'uniqueId': '0xe5776e958e74e8fbe9845203b40cedfaf8b0da4952d4c2e39b95d4aa39507e80:log:6', 'hash': '0xe5776e958e74e8fbe9845203b40cedfaf8b0da4952d4c2e39b95d4aa39507e80', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x79aef4c3a7d0ef899f04a96f40ace2cd477c2405', 'value': 16785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x038deaab194233a40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T22:29:11.000Z'}}, {'blockNum': '0x7d76f9', 'uniqueId': '0x05aedaa12b3fc5f5be9355895c41750bdc83ba623b4a64cc056ee0c2a3a96713:log:34', 'hash': '0x05aedaa12b3fc5f5be9355895c41750bdc83ba623b4a64cc056ee0c2a3a96713', 'from': '0x0f040e9ae15247fcac52c142d0f3043d789cbe62', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 350000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4a1d89bb94865ec00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T22:34:12.000Z'}}, {'blockNum': '0x7d778d', 'uniqueId': '0x290ded3e333c43930d1fb0eda588a9f93031ef7558ad2fe688907c3709032cc0:log:19', 'hash': '0x290ded3e333c43930d1fb0eda588a9f93031ef7558ad2fe688907c3709032cc0', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 524.0566037735849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1c68bf108faa2995bc', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:08:31.000Z'}}, {'blockNum': '0x7d779f', 'uniqueId': '0x73df88b9f42438da5407f63541c52ade4897db8e0ad0800681acfe46e963ef9c:log:13', 'hash': '0x73df88b9f42438da5407f63541c52ade4897db8e0ad0800681acfe46e963ef9c', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 526.7772511848341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1c8e80bef794c215d6', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:11:48.000Z'}}, {'blockNum': '0x7d77a7', 'uniqueId': '0x4981cc93db426515b1705cfa55b4a5d7f79eb17f9eae02e07d07d12323f3cecf:log:20', 'hash': '0x4981cc93db426515b1705cfa55b4a5d7f79eb17f9eae02e07d07d12323f3cecf', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 15103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0332bc3ab0e0649c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:14:31.000Z'}}, {'blockNum': '0x7d77ab', 'uniqueId': '0xf4f8047d43ba0c0131737c65954715d9fd7a97da823b2d1f7e2e4f88c7eb7f03:log:0', 'hash': '0xf4f8047d43ba0c0131737c65954715d9fd7a97da823b2d1f7e2e4f88c7eb7f03', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 36357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x07b2eabb385bbcf40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:15:56.000Z'}}, {'blockNum': '0x7d77ef', 'uniqueId': '0x946492c9355d577b5a49de4b41af4656d783a30832dbe3c22774cdc130b4b2f5:log:39', 'hash': '0x946492c9355d577b5a49de4b41af4656d783a30832dbe3c22774cdc130b4b2f5', 'from': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 36357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x07b2eabb385bbcf40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:29:43.000Z'}}, {'blockNum': '0x7d77ef', 'uniqueId': '0x34135d9b941026042c698f97f6c0fbec90b97dad37f81a9f1ffe1f2749d9434a:log:53', 'hash': '0x34135d9b941026042c698f97f6c0fbec90b97dad37f81a9f1ffe1f2749d9434a', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 15103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0332bc3ab0e0649c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:29:43.000Z'}}, {'blockNum': '0x7d780e', 'uniqueId': '0x827f5195c7575e2716e5e6cc3812e71fff919e8752753733c96b1c09fb580ad2:log:74', 'hash': '0x827f5195c7575e2716e5e6cc3812e71fff919e8752753733c96b1c09fb580ad2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 10156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02268ed01f34b3300000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:39:00.000Z'}}, {'blockNum': '0x7d7824', 'uniqueId': '0x9824a96bc4ea2644243eb2285e52f668481995746fc2e1dadce30f825a6b6690:log:10', 'hash': '0x9824a96bc4ea2644243eb2285e52f668481995746fc2e1dadce30f825a6b6690', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02268ed01f34b3300000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:43:54.000Z'}}, {'blockNum': '0x7d7851', 'uniqueId': '0x47bd05bf53cf88c1e4a583ed3659c04b26559b3ab25968bfe93a3adab38ea252:log:11', 'hash': '0x47bd05bf53cf88c1e4a583ed3659c04b26559b3ab25968bfe93a3adab38ea252', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 36716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x07c660db6e4b7a300000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:54:17.000Z'}}, {'blockNum': '0x7d7853', 'uniqueId': '0xc65b2a66eeb412474605c4f6f31c4ad98f459765aa47668f15983c1fa7aa2fd9:log:17', 'hash': '0xc65b2a66eeb412474605c4f6f31c4ad98f459765aa47668f15983c1fa7aa2fd9', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x7853b07d41dfafbb094ccf7a226ce429af635657', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:54:30.000Z'}}, {'blockNum': '0x7d7888', 'uniqueId': '0x6f4337deac47ec113334f99cc54a8055e1f0c3e154c5c8148016e0a68a8a835c:log:31', 'hash': '0x6f4337deac47ec113334f99cc54a8055e1f0c3e154c5c8148016e0a68a8a835c', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x07c660db6e4b7a300000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:04:30.000Z'}}, {'blockNum': '0x7d78da', 'uniqueId': '0xf05647ccd07cdb838a6c37c97d702497f072b40ebcc728b8df773b0c7340a0ec:log:39', 'hash': '0xf05647ccd07cdb838a6c37c97d702497f072b40ebcc728b8df773b0c7340a0ec', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 12415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02a104bc5282ca9c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:22:06.000Z'}}, {'blockNum': '0x7d78db', 'uniqueId': '0xc191bedc44f3d45e0c4fd07a528c2fbd45d30125c13d340f2ee37dd933ba5a2d:log:17', 'hash': '0xc191bedc44f3d45e0c4fd07a528c2fbd45d30125c13d340f2ee37dd933ba5a2d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x275409f8eb9927f0db19b103ce45f91ffe404e6e', 'value': 24985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054a708743cbeec40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:22:12.000Z'}}, {'blockNum': '0x7d78e5', 'uniqueId': '0x2446a7de14cbfd035c69794cf61c9c6d22056dd4b01f3e626a06abca3248d26e:log:75', 'hash': '0x2446a7de14cbfd035c69794cf61c9c6d22056dd4b01f3e626a06abca3248d26e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 60291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0cc461b46897742c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:25:41.000Z'}}, {'blockNum': '0x7d78f5', 'uniqueId': '0x219cd8b2c6e8d37b5d44ed07c07b2a9749363d000312c7550b41e92e28629d06:log:39', 'hash': '0x219cd8b2c6e8d37b5d44ed07c07b2a9749363d000312c7550b41e92e28629d06', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 28655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x06116402774da25c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:28:25.000Z'}}, {'blockNum': '0x7d78fa', 'uniqueId': '0x91dbdc7e466d79eb44823efaa30683babb6a9c8d4f56f91e8ba966001f6b1b19:log:9', 'hash': '0x91dbdc7e466d79eb44823efaa30683babb6a9c8d4f56f91e8ba966001f6b1b19', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x95b564f3b3bae3f206aa418667ba000afafacc8a', 'value': 162518.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x226a2acf17f6df720000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:30:02.000Z'}}, {'blockNum': '0x7d78fa', 'uniqueId': '0x580a7a58309c6029ef844cd70546ff4abbed07066a44ce758291d8f058ffb8f9:log:15', 'hash': '0x580a7a58309c6029ef844cd70546ff4abbed07066a44ce758291d8f058ffb8f9', 'from': '0x7853b07d41dfafbb094ccf7a226ce429af635657', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:30:02.000Z'}}, {'blockNum': '0x7d78fa', 'uniqueId': '0x8b52f9ea7efbd48cd1ad71970767118461f16619fdf0fd27da6d874d96433d29:log:22', 'hash': '0x8b52f9ea7efbd48cd1ad71970767118461f16619fdf0fd27da6d874d96433d29', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 28655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x06116402774da25c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:30:02.000Z'}}, {'blockNum': '0x7d790f', 'uniqueId': '0x3e1843c927d273042dae7781423746bb5e07d6d1ccc47c4a3cbfac9d59f82409:log:25', 'hash': '0x3e1843c927d273042dae7781423746bb5e07d6d1ccc47c4a3cbfac9d59f82409', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02a104bc5282ca9c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:34:12.000Z'}}, {'blockNum': '0x7d790f', 'uniqueId': '0xb6ef40c1f3af7c78852f15d97e0ea7f87bee7fe53db44c082c50e3da7c50a9b1:log:26', 'hash': '0xb6ef40c1f3af7c78852f15d97e0ea7f87bee7fe53db44c082c50e3da7c50a9b1', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0cc461b46897742c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:34:12.000Z'}}, {'blockNum': '0x7d790f', 'uniqueId': '0xd3a22a732906a329b73229312115624d97f69bd03ba0c8f33942f2a8dfb126dc:log:71', 'hash': '0xd3a22a732906a329b73229312115624d97f69bd03ba0c8f33942f2a8dfb126dc', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 12382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029f3ac4c55a36b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:34:12.000Z'}}, {'blockNum': '0x7d791a', 'uniqueId': '0x2cf22288a9b7afff8ff4b01a7a050f8cf30a6014361c3fbe8543691e3144e709:log:7', 'hash': '0x2cf22288a9b7afff8ff4b01a7a050f8cf30a6014361c3fbe8543691e3144e709', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 596842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x7e62dea17b8edb680000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:36:50.000Z'}}, {'blockNum': '0x7d793e', 'uniqueId': '0x9111922aaa2b9f9544be407093e7e61ff254faad325eb6f20b98071194dacd6a:log:2', 'hash': '0x9111922aaa2b9f9544be407093e7e61ff254faad325eb6f20b98071194dacd6a', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029f3ac4c55a36b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:44:05.000Z'}}, {'blockNum': '0x7d795c', 'uniqueId': '0xbe48d877cfacb439f5e7e22057bbdddcc6912d907539b3a7267c51a4912ed28b:log:10', 'hash': '0xbe48d877cfacb439f5e7e22057bbdddcc6912d907539b3a7267c51a4912ed28b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 600093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x7f131b51a70596540000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:48:55.000Z'}}, {'blockNum': '0x7d7975', 'uniqueId': '0xd19b254c5c1eda64e8153ae5f9727aaf6914a7f13d1e53a2a47a5ab5cfd57ac6:log:17', 'hash': '0xd19b254c5c1eda64e8153ae5f9727aaf6914a7f13d1e53a2a47a5ab5cfd57ac6', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 600093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x7f131b51a70596540000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:53:57.000Z'}}, {'blockNum': '0x7d7978', 'uniqueId': '0xbd43aea538502c373ee1ad5aea5bf653f13a38096831bc553c5ee153f4a5329a:log:4', 'hash': '0xbd43aea538502c373ee1ad5aea5bf653f13a38096831bc553c5ee153f4a5329a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x54539e8a334d5c8aeeefba89120e5c8cf413aaf1', 'value': 184.484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a003ad48fd72a0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:54:54.000Z'}}, {'blockNum': '0x7d7981', 'uniqueId': '0x053b6286c8652229837e3895353bc7ecc4a97bef89eac133da3e6313415da2d0:log:10', 'hash': '0x053b6286c8652229837e3895353bc7ecc4a97bef89eac133da3e6313415da2d0', 'from': '0x54539e8a334d5c8aeeefba89120e5c8cf413aaf1', 'to': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'value': 184.484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a003ad48fd72a0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:57:14.000Z'}}, {'blockNum': '0x7d79bd', 'uniqueId': '0xd6c1c4742357f82ffe7841cc49d69a9a7928e1b0de248c1b10f24ebe418ee8c6:log:106', 'hash': '0xd6c1c4742357f82ffe7841cc49d69a9a7928e1b0de248c1b10f24ebe418ee8c6', 'from': '0xa69a4320c09b86e1adbaccdd005dde9270e2b822', 'to': '0x164efe71c47042da2cddc47b359a325467af1b1e', 'value': 4131.7375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xdffb60555dd485c000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:11:45.000Z'}}, {'blockNum': '0x7d79df', 'uniqueId': '0x8f6a4809c8f13a35ae85c1c21af75beecd338b7afa4cda9925ffaee9e18901f5:log:88', 'hash': '0x8f6a4809c8f13a35ae85c1c21af75beecd338b7afa4cda9925ffaee9e18901f5', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 22925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x04dac4491624f6140000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:18:55.000Z'}}, {'blockNum': '0x7d7a05', 'uniqueId': '0xbd65cd8495a97318b3b51536693fe4763d5fd2f8cd54ddc486230469ba3c3702:log:159', 'hash': '0xbd65cd8495a97318b3b51536693fe4763d5fd2f8cd54ddc486230469ba3c3702', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 886.1774255329042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x300a2ea95a5aee8e61', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:27:29.000Z'}}, {'blockNum': '0x7d7a05', 'uniqueId': '0xbd65cd8495a97318b3b51536693fe4763d5fd2f8cd54ddc486230469ba3c3702:log:161', 'hash': '0xbd65cd8495a97318b3b51536693fe4763d5fd2f8cd54ddc486230469ba3c3702', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 886.1773884860429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x300a2e87a8b5ec0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:27:29.000Z'}}, {'blockNum': '0x7d7a05', 'uniqueId': '0xbd65cd8495a97318b3b51536693fe4763d5fd2f8cd54ddc486230469ba3c3702:log:162', 'hash': '0xbd65cd8495a97318b3b51536693fe4763d5fd2f8cd54ddc486230469ba3c3702', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 886.1773884860429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x300a2e87a8b5ec0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:27:29.000Z'}}, {'blockNum': '0x7d7a12', 'uniqueId': '0x6564b6e067e9256e8a8220982265de4ca8acfea53948b3e53996f825d10391f5:log:4', 'hash': '0x6564b6e067e9256e8a8220982265de4ca8acfea53948b3e53996f825d10391f5', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 22925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x04dac4491624f6140000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:30:51.000Z'}}, {'blockNum': '0x7d7a4a', 'uniqueId': '0x127e18e0ff6fdba3c832ddf743a6061ce38eb2dee1cdbac602bcda6319131fc9:log:82', 'hash': '0x127e18e0ff6fdba3c832ddf743a6061ce38eb2dee1cdbac602bcda6319131fc9', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x7853b07d41dfafbb094ccf7a226ce429af635657', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:43:30.000Z'}}, {'blockNum': '0x7d7a7c', 'uniqueId': '0x26a0891f9293c3cc78077c1ae45a37933d08c8bfc90c1131156b45fc2a94fd07:log:93', 'hash': '0x26a0891f9293c3cc78077c1ae45a37933d08c8bfc90c1131156b45fc2a94fd07', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 950.7458487731799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x338a3fc8311aa3dc8c', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:54:01.000Z'}}, {'blockNum': '0x7d7a7c', 'uniqueId': '0x26a0891f9293c3cc78077c1ae45a37933d08c8bfc90c1131156b45fc2a94fd07:log:95', 'hash': '0x26a0891f9293c3cc78077c1ae45a37933d08c8bfc90c1131156b45fc2a94fd07', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 950.7458059520508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x338a3fa13f08740000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:54:01.000Z'}}, {'blockNum': '0x7d7a7c', 'uniqueId': '0x26a0891f9293c3cc78077c1ae45a37933d08c8bfc90c1131156b45fc2a94fd07:log:96', 'hash': '0x26a0891f9293c3cc78077c1ae45a37933d08c8bfc90c1131156b45fc2a94fd07', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 950.7458059520508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x338a3fa13f08740000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:54:01.000Z'}}, {'blockNum': '0x7d7a9c', 'uniqueId': '0x98d642f9be29a16e81fc41e82b8f50f2cf9f55a2ffab6357fef57f58ee2ec0fd:log:120', 'hash': '0x98d642f9be29a16e81fc41e82b8f50f2cf9f55a2ffab6357fef57f58ee2ec0fd', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 11410, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x026a898f133aa7080000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:00:29.000Z'}}, {'blockNum': '0x7d7aae', 'uniqueId': '0x224431a5bcea21fb7141c3b7fa8d8c30ededd84e2feaf66fb50fe013bf9691f9:log:33', 'hash': '0x224431a5bcea21fb7141c3b7fa8d8c30ededd84e2feaf66fb50fe013bf9691f9', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1762.3378968770187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x5f8959f3f17bb1c5e6', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:05:27.000Z'}}, {'blockNum': '0x7d7aae', 'uniqueId': '0x224431a5bcea21fb7141c3b7fa8d8c30ededd84e2feaf66fb50fe013bf9691f9:log:35', 'hash': '0x224431a5bcea21fb7141c3b7fa8d8c30ededd84e2feaf66fb50fe013bf9691f9', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1762.3377490792147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x5f89596d85a0180000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:05:27.000Z'}}, {'blockNum': '0x7d7aae', 'uniqueId': '0x224431a5bcea21fb7141c3b7fa8d8c30ededd84e2feaf66fb50fe013bf9691f9:log:36', 'hash': '0x224431a5bcea21fb7141c3b7fa8d8c30ededd84e2feaf66fb50fe013bf9691f9', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1762.3377490792147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x5f89596d85a0180000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:05:27.000Z'}}, {'blockNum': '0x7d7ab2', 'uniqueId': '0x19bc67d301c1b48a8c655ff0aa9bedcbea18cdaf073c95228f422bb90cb1746b:log:60', 'hash': '0x19bc67d301c1b48a8c655ff0aa9bedcbea18cdaf073c95228f422bb90cb1746b', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1316.5901779056671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x475f5bef3623a410a7', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:06:31.000Z'}}, {'blockNum': '0x7d7ab2', 'uniqueId': '0x19bc67d301c1b48a8c655ff0aa9bedcbea18cdaf073c95228f422bb90cb1746b:log:62', 'hash': '0x19bc67d301c1b48a8c655ff0aa9bedcbea18cdaf073c95228f422bb90cb1746b', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1316.5900947199918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x475f5ba38df7040000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:06:31.000Z'}}, {'blockNum': '0x7d7ab2', 'uniqueId': '0x19bc67d301c1b48a8c655ff0aa9bedcbea18cdaf073c95228f422bb90cb1746b:log:63', 'hash': '0x19bc67d301c1b48a8c655ff0aa9bedcbea18cdaf073c95228f422bb90cb1746b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1316.5900947199918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x475f5ba38df7040000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:06:31.000Z'}}, {'blockNum': '0x7d7abb', 'uniqueId': '0xa1d27bb0ea24bd2400c0ddfff7ed5eaab3d985bf6cac3e02b4a785751a1f8283:log:67', 'hash': '0xa1d27bb0ea24bd2400c0ddfff7ed5eaab3d985bf6cac3e02b4a785751a1f8283', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1685.9584455217544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x5b655fa19c81ee1045', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:09:15.000Z'}}, {'blockNum': '0x7d7abb', 'uniqueId': '0xa1d27bb0ea24bd2400c0ddfff7ed5eaab3d985bf6cac3e02b4a785751a1f8283:log:69', 'hash': '0xa1d27bb0ea24bd2400c0ddfff7ed5eaab3d985bf6cac3e02b4a785751a1f8283', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1685.9583082460836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x5b655f24c286580000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:09:15.000Z'}}, {'blockNum': '0x7d7abb', 'uniqueId': '0xa1d27bb0ea24bd2400c0ddfff7ed5eaab3d985bf6cac3e02b4a785751a1f8283:log:70', 'hash': '0xa1d27bb0ea24bd2400c0ddfff7ed5eaab3d985bf6cac3e02b4a785751a1f8283', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1685.9583082460836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x5b655f24c286580000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:09:15.000Z'}}, {'blockNum': '0x7d7abf', 'uniqueId': '0x5da206a8b7672cf99bc0278f4415cf68f29829f33f1f327c427d03f857b5a83b:log:104', 'hash': '0x5da206a8b7672cf99bc0278f4415cf68f29829f33f1f327c427d03f857b5a83b', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 2411.024044769291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x82b3ae1a9097161ebe', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:10:06.000Z'}}, {'blockNum': '0x7d7abf', 'uniqueId': '0x5da206a8b7672cf99bc0278f4415cf68f29829f33f1f327c427d03f857b5a83b:log:106', 'hash': '0x5da206a8b7672cf99bc0278f4415cf68f29829f33f1f327c427d03f857b5a83b', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2411.024044769291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x82b3ae1a9097161ebe', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:10:06.000Z'}}, {'blockNum': '0x7d7abf', 'uniqueId': '0x5da206a8b7672cf99bc0278f4415cf68f29829f33f1f327c427d03f857b5a83b:log:107', 'hash': '0x5da206a8b7672cf99bc0278f4415cf68f29829f33f1f327c427d03f857b5a83b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2411.024044769291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x82b3ae1a9097161ebe', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:10:06.000Z'}}, {'blockNum': '0x7d7abf', 'uniqueId': '0x4a6574fc1fb28fac11b230af28b1190dba65bdba1eba00f5eee651701eeb17a8:log:120', 'hash': '0x4a6574fc1fb28fac11b230af28b1190dba65bdba1eba00f5eee651701eeb17a8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 12319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029bd077cf24051c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:10:06.000Z'}}, {'blockNum': '0x7d7ad0', 'uniqueId': '0x4a197df79137852559e0bbca905a5e7442fdaf549fb9546e6bdfd1af863afabc:log:20', 'hash': '0x4a197df79137852559e0bbca905a5e7442fdaf549fb9546e6bdfd1af863afabc', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x05065a06e25eac240000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:13:57.000Z'}}, {'blockNum': '0x7d7ad9', 'uniqueId': '0x1da8f049f1e59121a5ab055dde0f71e4d5cda987b8982d9b6422926e1dce9a1c:log:107', 'hash': '0x1da8f049f1e59121a5ab055dde0f71e4d5cda987b8982d9b6422926e1dce9a1c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 16045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0365cd1af9f256940000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:15:39.000Z'}}, {'blockNum': '0x7d7af0', 'uniqueId': '0x374c7e492ecacc6a4d4a286e1b5d9f03b3fb5f014b8d89355d7ebea650c3ca6a:log:57', 'hash': '0x374c7e492ecacc6a4d4a286e1b5d9f03b3fb5f014b8d89355d7ebea650c3ca6a', 'from': '0x73cd1f4ee6967fd2d16a7843c23c7892104466d5', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 9100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x01ed4fde7a2236b00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:20:37.000Z'}}, {'blockNum': '0x7d7af0', 'uniqueId': '0x76f04ea4144014c37147898bcaebc47025fe9050eb44850a0425919418d6e446:log:60', 'hash': '0x76f04ea4144014c37147898bcaebc47025fe9050eb44850a0425919418d6e446', 'from': '0x79aef4c3a7d0ef899f04a96f40ace2cd477c2405', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 16785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x038deaab194233a40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:20:37.000Z'}}, {'blockNum': '0x7d7af0', 'uniqueId': '0xa77c96631aab8b651fa570b7c95a5b879a784cf855b052c19913088fedcaa8bf:log:61', 'hash': '0xa77c96631aab8b651fa570b7c95a5b879a784cf855b052c19913088fedcaa8bf', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 10393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x023367d94386aac40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:20:37.000Z'}}, {'blockNum': '0x7d7afe', 'uniqueId': '0xb2907e5fc0084ed4104dabbb8fdc15c4a89ff58e57b2bb3d541a482ff9d22e0b:log:44', 'hash': '0xb2907e5fc0084ed4104dabbb8fdc15c4a89ff58e57b2bb3d541a482ff9d22e0b', 'from': '0xc8fcc48d1454a83589169294470549a2e1713dec', 'to': '0x9fbcb98947e81fa65d10db8638c390c2cb0a9306', 'value': 26041.943634601565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0583bc915f8a13377740', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:23:39.000Z'}}, {'blockNum': '0x7d7b07', 'uniqueId': '0xebfa32839cce919b9c8ff61233bb38230821d1a133c56302519fdb0f2109bbd3:log:131', 'hash': '0xebfa32839cce919b9c8ff61233bb38230821d1a133c56302519fdb0f2109bbd3', 'from': '0xa69a4320c09b86e1adbaccdd005dde9270e2b822', 'to': '0x164efe71c47042da2cddc47b359a325467af1b1e', 'value': 2078.555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x70adbec7d7f80f8000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:24:58.000Z'}}, {'blockNum': '0x7d7b19', 'uniqueId': '0x4e24333b0e0dd0e6b23d7dbf0865132bca1382f6aba5cde7374dda97cb01ecca:log:21', 'hash': '0x4e24333b0e0dd0e6b23d7dbf0865132bca1382f6aba5cde7374dda97cb01ecca', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3bbe28261801bb6b5b910a8fd1fb39e999215a6f', 'value': 10563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x023c9f1296d3d32c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:30:23.000Z'}}, {'blockNum': '0x7d7b1a', 'uniqueId': '0x18950dd5f7c612407264db78fc6e9846c1b3b621c724b02aaea6dd7db63daf16:log:22', 'hash': '0x18950dd5f7c612407264db78fc6e9846c1b3b621c724b02aaea6dd7db63daf16', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 4656.8726954209715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xfc73175350fed97e9d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:30:47.000Z'}}, {'blockNum': '0x7d7b20', 'uniqueId': '0x428849d6a49f063b46d9c5a4587dfd7cbb148d734a5b2d3c114be0dd5f8ca466:log:14', 'hash': '0x428849d6a49f063b46d9c5a4587dfd7cbb148d734a5b2d3c114be0dd5f8ca466', 'from': '0x3bbe28261801bb6b5b910a8fd1fb39e999215a6f', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 10563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x023c9f1296d3d32c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:31:38.000Z'}}, {'blockNum': '0x7d7b20', 'uniqueId': '0x33d10eb723d2d20fa63c1dfcf5ca590d263bd83cda6eafb77e746763ea38f854:log:18', 'hash': '0x33d10eb723d2d20fa63c1dfcf5ca590d263bd83cda6eafb77e746763ea38f854', 'from': '0x7853b07d41dfafbb094ccf7a226ce429af635657', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:31:38.000Z'}}, {'blockNum': '0x7d7b20', 'uniqueId': '0x5b2b14c94be4caad4a1046e4d7515b91d6a37d1bb8477722fe38cf3c46d21c0e:log:34', 'hash': '0x5b2b14c94be4caad4a1046e4d7515b91d6a37d1bb8477722fe38cf3c46d21c0e', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 16045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0365cd1af9f256940000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:31:38.000Z'}}, {'blockNum': '0x7d7b20', 'uniqueId': '0xcc79cd9f28403e7fe14ec211257c879afe6875afcc6a567358c5c09fb7be1203:log:37', 'hash': '0xcc79cd9f28403e7fe14ec211257c879afe6875afcc6a567358c5c09fb7be1203', 'from': '0x164efe71c47042da2cddc47b359a325467af1b1e', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 6210.2925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0150a91f1d35cc954000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:31:38.000Z'}}, {'blockNum': '0x7d7b25', 'uniqueId': '0xc7fe1206996435ae93dfab321af97e20fbed5837a3201adf7be897f65594b2d7:log:78', 'hash': '0xc7fe1206996435ae93dfab321af97e20fbed5837a3201adf7be897f65594b2d7', 'from': '0x9fbcb98947e81fa65d10db8638c390c2cb0a9306', 'to': '0x9e2bc683db85eebad77f386d703eecfa08c99826', 'value': 26041.9436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0583bc914011c5530000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:33:13.000Z'}}, {'blockNum': '0x7d7b2d', 'uniqueId': '0xe89eccb52b2e30262785e8d4ff0e8ed1d663181eec2018a97fe9ed0909c922e0:log:6', 'hash': '0xe89eccb52b2e30262785e8d4ff0e8ed1d663181eec2018a97fe9ed0909c922e0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 38184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0815f5731c7f5ba00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:34:54.000Z'}}, {'blockNum': '0x7d7b35', 'uniqueId': '0x115a0fa06fc430a3116af43bff290b607f1c43c798f976039f1d7719aadb2c0b:log:98', 'hash': '0x115a0fa06fc430a3116af43bff290b607f1c43c798f976039f1d7719aadb2c0b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 10943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x025138a1c9804b9c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:36:01.000Z'}}, {'blockNum': '0x7d7b3b', 'uniqueId': '0xc1a9ebe7fa601568291296392ce5285f7c774c2279a750d37e7382062729e218:log:37', 'hash': '0xc1a9ebe7fa601568291296392ce5285f7c774c2279a750d37e7382062729e218', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 1355.5832924498757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x497c7f4e4b894f3845', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:37:21.000Z'}}, {'blockNum': '0x7d7b48', 'uniqueId': '0xda07af41d142bc4e9acfb78c93a7f8a5e9b93cfaee9593f76f6281d1aa9901fe:log:75', 'hash': '0xda07af41d142bc4e9acfb78c93a7f8a5e9b93cfaee9593f76f6281d1aa9901fe', 'from': '0x95b564f3b3bae3f206aa418667ba000afafacc8a', 'to': '0x851b494f4a4ce4de8aaaa8b77cbc57e72f7ab8cb', 'value': 1390.63757297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4b62f920b3dc35a400', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:39:12.000Z'}}, {'blockNum': '0x7d7b49', 'uniqueId': '0x09486ef6ab05fc9d7e23b0a6aacb2f070358b079c8a6efc404fe2bc2efcee7f4:log:4', 'hash': '0x09486ef6ab05fc9d7e23b0a6aacb2f070358b079c8a6efc404fe2bc2efcee7f4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 40854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x08a6b324a23b30980000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:39:18.000Z'}}, {'blockNum': '0x7d7b4b', 'uniqueId': '0xe3623d7da605411b3589824b9945ca340c7f2b947592dd822e068ab6233d1ec4:log:85', 'hash': '0xe3623d7da605411b3589824b9945ca340c7f2b947592dd822e068ab6233d1ec4', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 1778.839935769615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x606e5cf8e272935654', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:39:40.000Z'}}, {'blockNum': '0x7d7b4c', 'uniqueId': '0x6de20f1608e81cafc5f384da844888cffa044f4cc8d75ae4e6fdc4f36db5ca01:log:75', 'hash': '0x6de20f1608e81cafc5f384da844888cffa044f4cc8d75ae4e6fdc4f36db5ca01', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 12495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02a55af56aa719dc0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:40:17.000Z'}}, {'blockNum': '0x7d7b4c', 'uniqueId': '0x2dfd91354cba03274963e9bef644cfc217b6f5d7dca29e85a73bb9d75c8560c0:log:115', 'hash': '0x2dfd91354cba03274963e9bef644cfc217b6f5d7dca29e85a73bb9d75c8560c0', 'from': '0xe1036ddd04175168a556d46bc5be5e5a5925f711', 'to': '0x8f5d6281a055575bda9848a8e1b12319c97e45ca', 'value': 16000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03635c9adc5dea000000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:40:17.000Z'}}, {'blockNum': '0x7d7b4d', 'uniqueId': '0x6929d527ada73609467eedb546245b36ac8393e62177fd9fb41d266f42229740:log:132', 'hash': '0x6929d527ada73609467eedb546245b36ac8393e62177fd9fb41d266f42229740', 'from': '0xa69a4320c09b86e1adbaccdd005dde9270e2b822', 'to': '0x164efe71c47042da2cddc47b359a325467af1b1e', 'value': 10098.255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02236d70aba6e8418000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:40:24.000Z'}}, {'blockNum': '0x7d7b4e', 'uniqueId': '0xd3562ed40d6f1f559d4b227cb8f3f7a8751a8f3ea30544455fb2e75ec2b6ffde:log:30', 'hash': '0xd3562ed40d6f1f559d4b227cb8f3f7a8751a8f3ea30544455fb2e75ec2b6ffde', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x99781ad21621a30881aaa21559463c38cf1a9ef9', 'value': 15078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03316148d9550bd80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:40:33.000Z'}}, {'blockNum': '0x7d7b4e', 'uniqueId': '0x89527937c35fa89562b8c844de9fcd3bbc0579ac22eabd22e1d08af49e620673:log:46', 'hash': '0x89527937c35fa89562b8c844de9fcd3bbc0579ac22eabd22e1d08af49e620673', 'from': '0x37b779911ccb1421600dd1509df148464dbb07c2', 'to': '0x732c0283711b6391ebbd28eb6e25b48e4ed59648', 'value': 2233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x790d19a50f17440000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:40:33.000Z'}}, {'blockNum': '0x7d7b54', 'uniqueId': '0x25bdedc0628f0a17ac2c257a36efbb0b9881aeb0d9fdfc9a2619aec90ae9749b:log:28', 'hash': '0x25bdedc0628f0a17ac2c257a36efbb0b9881aeb0d9fdfc9a2619aec90ae9749b', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 877.4008972212462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x2f90622b5a81667a1b', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:41:26.000Z'}}, {'blockNum': '0x7d7b55', 'uniqueId': '0xdcf05a2ee7f1390972ef0bdd31a5703f4186889d29c9f9fc68a137dbe4a8a609:log:39', 'hash': '0xdcf05a2ee7f1390972ef0bdd31a5703f4186889d29c9f9fc68a137dbe4a8a609', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'value': 7623.56796326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x019d46422f30d881d800', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:41:53.000Z'}}, {'blockNum': '0x7d7b5b', 'uniqueId': '0x3ba5258b646c96098bdb3788c13760247a0bb710cf56a90367a24ad0369b8a6f:log:31', 'hash': '0x3ba5258b646c96098bdb3788c13760247a0bb710cf56a90367a24ad0369b8a6f', 'from': '0x732c0283711b6391ebbd28eb6e25b48e4ed59648', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x790d19a50f17440000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:43:46.000Z'}}, {'blockNum': '0x7d7b5b', 'uniqueId': '0x2d0199b1bdf7c63b66eee68e55579aaa78a6715417c8901ec7bf20b146d35520:log:33', 'hash': '0x2d0199b1bdf7c63b66eee68e55579aaa78a6715417c8901ec7bf20b146d35520', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02a55af56aa719dc0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:43:46.000Z'}}, {'blockNum': '0x7d7b5b', 'uniqueId': '0x785fbba736602b5510c2a3c93d5467c667839064467d025f86144c5eaf71e014:log:37', 'hash': '0x785fbba736602b5510c2a3c93d5467c667839064467d025f86144c5eaf71e014', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x08a6b324a23b30980000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:43:46.000Z'}}, {'blockNum': '0x7d7b5b', 'uniqueId': '0x66c1a8e9bf95ef34bc0e0881686012e44c587e3b568bd4cbd7d2f6dbf7343f57:log:60', 'hash': '0x66c1a8e9bf95ef34bc0e0881686012e44c587e3b568bd4cbd7d2f6dbf7343f57', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 888.7550200803213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x302df41defe8b64c14', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:43:46.000Z'}}, {'blockNum': '0x7d7b5c', 'uniqueId': '0xb1ba95b545e86f8453df050a45b0488d30cf735813f63c19744aa61b588821ac:log:16', 'hash': '0xb1ba95b545e86f8453df050a45b0488d30cf735813f63c19744aa61b588821ac', 'from': '0x851b494f4a4ce4de8aaaa8b77cbc57e72f7ab8cb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1390.63757297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4b62f920b3dc35a400', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:44:05.000Z'}}, {'blockNum': '0x7d7b65', 'uniqueId': '0x520f08f1acf9de20f67a08e4119adf8b97c19bf0129f4c4512d8a93cc431e544:log:135', 'hash': '0x520f08f1acf9de20f67a08e4119adf8b97c19bf0129f4c4512d8a93cc431e544', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 1810.2249488752557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x6221eaf004eb443029', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:47:43.000Z'}}, {'blockNum': '0x7d7b66', 'uniqueId': '0x6b9709d9e44066ac6a78ba8f3286fd71cff499397affaa700b12f9869c11f6c0:log:50', 'hash': '0x6b9709d9e44066ac6a78ba8f3286fd71cff499397affaa700b12f9869c11f6c0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1817fa1023501eabeb948f9cbc81c0028daf46ef', 'value': 17806.4161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03c549aa0c83a0824000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:48:19.000Z'}}, {'blockNum': '0x7d7b79', 'uniqueId': '0xd9e32ff5bb99fcc4d14aac1f66d583fd8b773306cf216d7bcc09db175612a444:log:76', 'hash': '0xd9e32ff5bb99fcc4d14aac1f66d583fd8b773306cf216d7bcc09db175612a444', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 19416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x041c8b20c99f88600000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:52:48.000Z'}}, {'blockNum': '0x7d7b79', 'uniqueId': '0x9eb756147832b4bad512313ee064b94dd90b69ddfd2b1370cc08a5bf2fc858ea:log:90', 'hash': '0x9eb756147832b4bad512313ee064b94dd90b69ddfd2b1370cc08a5bf2fc858ea', 'from': '0xa69a4320c09b86e1adbaccdd005dde9270e2b822', 'to': '0x164efe71c47042da2cddc47b359a325467af1b1e', 'value': 2021.84, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x6d9aaa9fd523c80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:52:48.000Z'}}, {'blockNum': '0x7d7b7e', 'uniqueId': '0x7a2178db4ea25b203190a8190e96956ca1d1c4af54a562cdcf035e5852fe5463:log:17', 'hash': '0x7a2178db4ea25b203190a8190e96956ca1d1c4af54a562cdcf035e5852fe5463', 'from': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7623.56796326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x019d46422f30d881d800', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:54:02.000Z'}}, {'blockNum': '0x7d7b7e', 'uniqueId': '0x39c8466315890335dcc5496370fc06e5626d537e39d597c82892cd04d7b78ead:log:20', 'hash': '0x39c8466315890335dcc5496370fc06e5626d537e39d597c82892cd04d7b78ead', 'from': '0x1817fa1023501eabeb948f9cbc81c0028daf46ef', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17806.4161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03c549aa0c83a0824000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:54:02.000Z'}}, {'blockNum': '0x7d7b8c', 'uniqueId': '0x06c882ac58e8e7995a741c006763a7a3d9aaa20d245583539ad68495fd3bedb2:log:44', 'hash': '0x06c882ac58e8e7995a741c006763a7a3d9aaa20d245583539ad68495fd3bedb2', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 1374.5341614906831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4a837e51481b95f675', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:56:58.000Z'}}, {'blockNum': '0x7d7b8d', 'uniqueId': '0xc244416d5f2736215ba66dd7266982ddd7eff1a9e145337511e5beec9a2261c0:log:50', 'hash': '0xc244416d5f2736215ba66dd7266982ddd7eff1a9e145337511e5beec9a2261c0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x40f738f99562cf5e7af8978da5cd3da311ab8340', 'value': 224990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x2fa4bb7a97e420b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:57:00.000Z'}}, {'blockNum': '0x7d7b9b', 'uniqueId': '0x243f30fccb4017379439e515fa2350043b88cc46089aae8f49d3c76a3f0a04c3:log:30', 'hash': '0x243f30fccb4017379439e515fa2350043b88cc46089aae8f49d3c76a3f0a04c3', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 1394.1176470588234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4b9344d5a5ec93c3c3', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:59:54.000Z'}}, {'blockNum': '0x7d7ba5', 'uniqueId': '0x9728f87006477dbb5cc509109face0c56f182c1fbccc203c1ba2327062c981d4:log:40', 'hash': '0x9728f87006477dbb5cc509109face0c56f182c1fbccc203c1ba2327062c981d4', 'from': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 38184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0815f5731c7f5ba00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:02:14.000Z'}}, {'blockNum': '0x7d7ba5', 'uniqueId': '0x1eaa404327eeb729041361a5b1fac832d6349cf0ef05fb038a6000930835c34b:log:44', 'hash': '0x1eaa404327eeb729041361a5b1fac832d6349cf0ef05fb038a6000930835c34b', 'from': '0x164efe71c47042da2cddc47b359a325467af1b1e', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 12120.095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0291081b4b7c0c098000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:02:14.000Z'}}, {'blockNum': '0x7d7ba5', 'uniqueId': '0xe38ca13f273f6fb0bc635053d0fb25ca54b406ee6716ccadc7f63c7e81c699fa:log:98', 'hash': '0xe38ca13f273f6fb0bc635053d0fb25ca54b406ee6716ccadc7f63c7e81c699fa', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 30359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x066dc3c2931fd3fc0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:02:14.000Z'}}, {'blockNum': '0x7d7bad', 'uniqueId': '0xfb4e461d11efc3c6a6f86a45116a178e615251d922b98271590d9df844a27d7f:log:37', 'hash': '0xfb4e461d11efc3c6a6f86a45116a178e615251d922b98271590d9df844a27d7f', 'from': '0x40f738f99562cf5e7af8978da5cd3da311ab8340', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 224990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x2fa4bb7a97e420b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:04:29.000Z'}}, {'blockNum': '0x7d7baf', 'uniqueId': '0xf145da40a4e59f86550d9bf221518867649a446d266894332f3b8708cf9e3915:log:4', 'hash': '0xf145da40a4e59f86550d9bf221518867649a446d266894332f3b8708cf9e3915', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 47296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a03ebda270d6b000000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:04:34.000Z'}}, {'blockNum': '0x7d7bc5', 'uniqueId': '0x2ada8805d63247d816afa9243024ce4e2ad87fc4d4db1fc2d4340ae62223460d:log:47', 'hash': '0x2ada8805d63247d816afa9243024ce4e2ad87fc4d4db1fc2d4340ae62223460d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 36587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x07bf629f5dc420cc0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:08:19.000Z'}}, {'blockNum': '0x7d7bc8', 'uniqueId': '0x7cf4f9b75c3de9c719240bf7de624380e183fb5e62766d43910b70549dbbf136:log:56', 'hash': '0x7cf4f9b75c3de9c719240bf7de624380e183fb5e62766d43910b70549dbbf136', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 23138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x04e65041199f3c480000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:08:52.000Z'}}, {'blockNum': '0x7d7bdf', 'uniqueId': '0x6f572a3ddd909b2a33ec07c9cf0ea583e628dcd6ef5216b495dbfcb7917b4ef9:log:53', 'hash': '0x6f572a3ddd909b2a33ec07c9cf0ea583e628dcd6ef5216b495dbfcb7917b4ef9', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1241.651331915331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x434f5fabd387f296d8', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:13:33.000Z'}}, {'blockNum': '0x7d7bdf', 'uniqueId': '0x6f572a3ddd909b2a33ec07c9cf0ea583e628dcd6ef5216b495dbfcb7917b4ef9:log:55', 'hash': '0x6f572a3ddd909b2a33ec07c9cf0ea583e628dcd6ef5216b495dbfcb7917b4ef9', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1241.6512547393534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x434f5f65a299380000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:13:33.000Z'}}, {'blockNum': '0x7d7bdf', 'uniqueId': '0x6f572a3ddd909b2a33ec07c9cf0ea583e628dcd6ef5216b495dbfcb7917b4ef9:log:56', 'hash': '0x6f572a3ddd909b2a33ec07c9cf0ea583e628dcd6ef5216b495dbfcb7917b4ef9', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1241.6512547393534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x434f5f65a299380000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:13:33.000Z'}}, {'blockNum': '0x7d7bf6', 'uniqueId': '0x75c0155f10a63f564d4ad28a7d03998e7912f2ffec1be7147a3f1cfc22898a15:log:99', 'hash': '0x75c0155f10a63f564d4ad28a7d03998e7912f2ffec1be7147a3f1cfc22898a15', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 930.2521008403361, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x326dd75d0705181135', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:19:38.000Z'}}, {'blockNum': '0x7d7bfb', 'uniqueId': '0x89a6f11ae7ac2db8621390d5ef679857eab8c5adac9a2275c3b8499846463279:log:5', 'hash': '0x89a6f11ae7ac2db8621390d5ef679857eab8c5adac9a2275c3b8499846463279', 'from': '0x86ff4b153c06c2f75a88c16ddbd481d7daf27d8e', 'to': '0xc94727e72519c3b3434f5af6d3886615f82c2ec6', 'value': 505.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1b6cc5d9a07e1e0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:20:43.000Z'}}, {'blockNum': '0x7d7c0e', 'uniqueId': '0x92d37bd16ecd752bcf15bb2860e0e58d626cb359a5a0c4fa58c68471e3e07366:log:24', 'hash': '0x92d37bd16ecd752bcf15bb2860e0e58d626cb359a5a0c4fa58c68471e3e07366', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 47296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a03ebda270d6b000000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:23:59.000Z'}}, {'blockNum': '0x7d7c0e', 'uniqueId': '0xcbce0ca2c20100b9b122e222e2e823b13f26b9779b4c36525f3fcb6ea7086a4a:log:37', 'hash': '0xcbce0ca2c20100b9b122e222e2e823b13f26b9779b4c36525f3fcb6ea7086a4a', 'from': '0xc94727e72519c3b3434f5af6d3886615f82c2ec6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 505.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1b6cc5d9a07e1e0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:23:59.000Z'}}, {'blockNum': '0x7d7c36', 'uniqueId': '0x5f6eb273f08e692cd7454574cb72e6f4af4606796387bcce4510e9cff09ba90a:log:8', 'hash': '0x5f6eb273f08e692cd7454574cb72e6f4af4606796387bcce4510e9cff09ba90a', 'from': '0xaeec6f5aca72f3a005af1b3420ab8c8c7009bac8', 'to': '0xdeb834d1d59d74a3532a7b353fc0c8ff748f74a5', 'value': 195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a922b2ad8812c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:34:14.000Z'}}, {'blockNum': '0x7d7c44', 'uniqueId': '0xc9643d67fecea4687eb0f312cfa3685ef2f95e1e73ecbf7f099dba66d2cbd046:log:95', 'hash': '0xc9643d67fecea4687eb0f312cfa3685ef2f95e1e73ecbf7f099dba66d2cbd046', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 11586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0274140caebdbbc80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:38:55.000Z'}}, {'blockNum': '0x7d7c47', 'uniqueId': '0xb4796c18ee520ccbc56529fb9496268c4b53b2010794200020a8d365cc0ca4d4:log:61', 'hash': '0xb4796c18ee520ccbc56529fb9496268c4b53b2010794200020a8d365cc0ca4d4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x95b564f3b3bae3f206aa418667ba000afafacc8a', 'value': 110525.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x17679bcbaae730570000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:39:53.000Z'}}, {'blockNum': '0x7d7c5a', 'uniqueId': '0xd58d8980018205873901a6ef026ef9f52b9f788ae062d282090af05bbc27734f:log:10', 'hash': '0xd58d8980018205873901a6ef026ef9f52b9f788ae062d282090af05bbc27734f', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0274140caebdbbc80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:44:06.000Z'}}, {'blockNum': '0x7d7c6a', 'uniqueId': '0xa22db8b294fe4bee3a142f62ed5bf61720fd573ad1094e849b20fa861123d004:log:32', 'hash': '0xa22db8b294fe4bee3a142f62ed5bf61720fd573ad1094e849b20fa861123d004', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 19440, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x041dd831ea7739c00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:47:46.000Z'}}, {'blockNum': '0x7d7c6d', 'uniqueId': '0x94b2c30af26193f607bfe5678ca4eeff5a1ea3e83a9d5c3de54ee614a7d851dd:log:77', 'hash': '0x94b2c30af26193f607bfe5678ca4eeff5a1ea3e83a9d5c3de54ee614a7d851dd', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 56098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0be11423f40ec7480000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:48:45.000Z'}}, {'blockNum': '0x7d7c6f', 'uniqueId': '0x01fae415932032dc601fdeb3be12ef87cd79bfb31b43733befd4fc9ef470c9b2:log:26', 'hash': '0x01fae415932032dc601fdeb3be12ef87cd79bfb31b43733befd4fc9ef470c9b2', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 1823.7933638557554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x62de37a18e3109f98e', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:49:50.000Z'}}, {'blockNum': '0x7d7c7a', 'uniqueId': '0xb83dfbcb21abd3ca519b9f9ae0c82b801d94c11470cf1c2dd4163dc8fd566b7a:log:37', 'hash': '0xb83dfbcb21abd3ca519b9f9ae0c82b801d94c11470cf1c2dd4163dc8fd566b7a', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:54:05.000Z'}}, {'blockNum': '0x7d7c7d', 'uniqueId': '0x384274a1383c4fb4472f3031f57e11014fc8a2825c55bab75bb8debb29661d7e:log:51', 'hash': '0x384274a1383c4fb4472f3031f57e11014fc8a2825c55bab75bb8debb29661d7e', 'from': '0x0cbf107b335d045b3082c8fc1038261212acec09', 'to': '0xfc1e76d665d25fef21457081761b80f7f16e88b7', 'value': 10000.274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x021e1dae3b470eb50000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:54:39.000Z'}}, {'blockNum': '0x7d7c7e', 'uniqueId': '0xc6dee9422642b0cff182f39ee762b5f057c426c77e9f4a831a089069af831313:log:0', 'hash': '0xc6dee9422642b0cff182f39ee762b5f057c426c77e9f4a831a089069af831313', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:54:49.000Z'}}, {'blockNum': '0x7d7c82', 'uniqueId': '0x05a5d354792040680739fdfb4a19571b45baea2db64f54967c4740d3fd8c7816:log:22', 'hash': '0x05a5d354792040680739fdfb4a19571b45baea2db64f54967c4740d3fd8c7816', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:55:38.000Z'}}, {'blockNum': '0x7d7c88', 'uniqueId': '0x8fde8c82376145908a2108f64c1af57073df3c7e04367596a65162b6069618f1:log:23', 'hash': '0x8fde8c82376145908a2108f64c1af57073df3c7e04367596a65162b6069618f1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 47354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a0710c38bc157a80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:57:36.000Z'}}, {'blockNum': '0x7d7c91', 'uniqueId': '0x2c8a6f7877d44d0fb31a51318c9b77f1323eb501bef5fb717868e0a76dd07b03:log:89', 'hash': '0x2c8a6f7877d44d0fb31a51318c9b77f1323eb501bef5fb717868e0a76dd07b03', 'from': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'to': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:58:40.000Z'}}, {'blockNum': '0x7d7c96', 'uniqueId': '0x109585ed98124de767377c90af331602349cc42875f603574d80c1cc8237ee23:log:70', 'hash': '0x109585ed98124de767377c90af331602349cc42875f603574d80c1cc8237ee23', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 1796.3488843813388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x61615940e16af0ae79', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:00:57.000Z'}}, {'blockNum': '0x7d7c9e', 'uniqueId': '0x8791336e83be74abb91b5fc389b22761ed523c108c426c4140bce1b88c66d4a7:log:2', 'hash': '0x8791336e83be74abb91b5fc389b22761ed523c108c426c4140bce1b88c66d4a7', 'from': '0xc8fcc48d1454a83589169294470549a2e1713dec', 'to': '0x5896d36acdbca971db78e8ebd23cc5315d91cfcf', 'value': 29462.933251621416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x063d3055fb0a03224789', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:02:12.000Z'}}, {'blockNum': '0x7d7ca6', 'uniqueId': '0xd3501cc3a8b2be9f44a25780aee484c0f7f414f5aae6fff50e0529d8c0e1d463:log:20', 'hash': '0xd3501cc3a8b2be9f44a25780aee484c0f7f414f5aae6fff50e0529d8c0e1d463', 'from': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 83941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x11c67362e98578740000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:03:26.000Z'}}, {'blockNum': '0x7d7ca6', 'uniqueId': '0xbed2833fd9cbc5a366e5cdf36d488ca84dad10131b6407b746af3f17fad77a91:log:23', 'hash': '0xbed2833fd9cbc5a366e5cdf36d488ca84dad10131b6407b746af3f17fad77a91', 'from': '0xfc1e76d665d25fef21457081761b80f7f16e88b7', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 10000.274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x021e1dae3b470eb4ffff', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:03:26.000Z'}}, {'blockNum': '0x7d7ca6', 'uniqueId': '0xdaf049c7a2d6512449283dc68d6720153c4b1be680545d1f253c0edeb073efbf:log:32', 'hash': '0xdaf049c7a2d6512449283dc68d6720153c4b1be680545d1f253c0edeb073efbf', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 42578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x09042873041676080000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:03:26.000Z'}}, {'blockNum': '0x7d7ca7', 'uniqueId': '0xf31f77347cdf2b93ac2423c3ed2b9a969659a2a49835deaa36d24619bb747380:log:41', 'hash': '0xf31f77347cdf2b93ac2423c3ed2b9a969659a2a49835deaa36d24619bb747380', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:03:40.000Z'}}, {'blockNum': '0x7d7ca7', 'uniqueId': '0x5131f66f2db82f4e42ad40399f171ec0c33a9d5946291c910abb0b4fe43c7d74:log:46', 'hash': '0x5131f66f2db82f4e42ad40399f171ec0c33a9d5946291c910abb0b4fe43c7d74', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 10641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0240d98a4190d3a40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:03:40.000Z'}}, {'blockNum': '0x7d7ca9', 'uniqueId': '0x11e6ac9e7b1b4fdc9fca14fc56610f62f69acc9b30fb1c30ef0e82d1366bf1ca:log:7', 'hash': '0x11e6ac9e7b1b4fdc9fca14fc56610f62f69acc9b30fb1c30ef0e82d1366bf1ca', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0be11423f40ec7480000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:04:12.000Z'}}, {'blockNum': '0x7d7ca9', 'uniqueId': '0xc71ef5e08f3b291d1cd57f9c6df7f561092edff3850995d50245022128e52f4f:log:8', 'hash': '0xc71ef5e08f3b291d1cd57f9c6df7f561092edff3850995d50245022128e52f4f', 'from': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:04:12.000Z'}}, {'blockNum': '0x7d7cb7', 'uniqueId': '0x0bd879d3b48b1ce2792d0e11996848aafc269db4dd0e15e750a95d437f2807c3:log:0', 'hash': '0x0bd879d3b48b1ce2792d0e11996848aafc269db4dd0e15e750a95d437f2807c3', 'from': '0x5896d36acdbca971db78e8ebd23cc5315d91cfcf', 'to': '0xac63f8b7e5230db113d03827f826720b45f0be20', 'value': 29462.933251621416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x063d3055fb0a03224789', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:07:45.000Z'}}, {'blockNum': '0x7d7cbd', 'uniqueId': '0x58ffc3af05951fdb5c69df89c498d1e16ad38c6fd83c645bcfea305f19c785cc:log:11', 'hash': '0x58ffc3af05951fdb5c69df89c498d1e16ad38c6fd83c645bcfea305f19c785cc', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:09:02.000Z'}}, {'blockNum': '0x7d7cbf', 'uniqueId': '0xa25efff0850b849341157000a4ebbea07b68f74c4f944d0e12126a1d16171567:log:42', 'hash': '0xa25efff0850b849341157000a4ebbea07b68f74c4f944d0e12126a1d16171567', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 999.9190516617144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3634aa17b029f49b5d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:09:19.000Z'}}, {'blockNum': '0x7d7cbf', 'uniqueId': '0xa25efff0850b849341157000a4ebbea07b68f74c4f944d0e12126a1d16171567:log:44', 'hash': '0xa25efff0850b849341157000a4ebbea07b68f74c4f944d0e12126a1d16171567', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 999.9190516617144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3634aa17b029f49b5d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:09:19.000Z'}}, {'blockNum': '0x7d7cc2', 'uniqueId': '0x15eb8f4cd45623c217a963673a58c4725b179637de8580dad5c73905cc34cf0f:log:133', 'hash': '0x15eb8f4cd45623c217a963673a58c4725b179637de8580dad5c73905cc34cf0f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 11874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0283b0da38da0c480000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:09:47.000Z'}}, {'blockNum': '0x7d7cd9', 'uniqueId': '0x6f54831c07e9d71975afe954927c5aa12b03045e887efc922c58606dd43125ea:log:29', 'hash': '0x6f54831c07e9d71975afe954927c5aa12b03045e887efc922c58606dd43125ea', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0240d98a4190d3a40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:13:56.000Z'}}, {'blockNum': '0x7d7cd9', 'uniqueId': '0x6ce6a493675ac660458766d30d743d9d4bb1adbfe678e3bbf7d2c4782c11fe4a:log:33', 'hash': '0x6ce6a493675ac660458766d30d743d9d4bb1adbfe678e3bbf7d2c4782c11fe4a', 'from': '0xac63f8b7e5230db113d03827f826720b45f0be20', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29462.933251621416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x063d3055fb0a03224789', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:13:56.000Z'}}, {'blockNum': '0x7d7cea', 'uniqueId': '0xcc97a6b717554327e44d72c89a88061a65ab5b8d0e5922960e7bf599252acc67:log:37', 'hash': '0xcc97a6b717554327e44d72c89a88061a65ab5b8d0e5922960e7bf599252acc67', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 11186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x025e64ef36082f880000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:16:38.000Z'}}, {'blockNum': '0x7d7cf1', 'uniqueId': '0xd1520dd21ce38f1cc6cb368b645c951fb0b4b6d25d8b623cac86b547cb1c9f1d:log:0', 'hash': '0xd1520dd21ce38f1cc6cb368b645c951fb0b4b6d25d8b623cac86b547cb1c9f1d', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:18:00.000Z'}}, {'blockNum': '0x7d7cfd', 'uniqueId': '0x172584c7ac964ee8e7d42e160a028451fc62c7e47440e4843abaf220012d7b95:log:4', 'hash': '0x172584c7ac964ee8e7d42e160a028451fc62c7e47440e4843abaf220012d7b95', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 1327.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x47f29998316a700000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:20:23.000Z'}}, {'blockNum': '0x7d7d02', 'uniqueId': '0x9faf435460ea934818d25686b8276e0238648294904b07d62fb53bef5f0b609f:log:85', 'hash': '0x9faf435460ea934818d25686b8276e0238648294904b07d62fb53bef5f0b609f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 14536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0313ff8608f8a6200000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:21:47.000Z'}}, {'blockNum': '0x7d7d0b', 'uniqueId': '0xe743a7e9fc51975b711a048b5176beccfa6c8bba5757da9bcfacb0236aee767e:log:19', 'hash': '0xe743a7e9fc51975b711a048b5176beccfa6c8bba5757da9bcfacb0236aee767e', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x025e64ef36082f880000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:23:58.000Z'}}, {'blockNum': '0x7d7d17', 'uniqueId': '0x096210658de3875a49081584d535855b70366da5932cac0a2647e073290c63e1:log:33', 'hash': '0x096210658de3875a49081584d535855b70366da5932cac0a2647e073290c63e1', 'from': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'to': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'value': 3999.9190516617145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xd8d6072101c5d49b5d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:27:19.000Z'}}, {'blockNum': '0x7d7d17', 'uniqueId': '0xe5fb6963f2374854f654e200da7c5f933b1d47c5dcf0ec1e0205e062db6d031b:log:36', 'hash': '0xe5fb6963f2374854f654e200da7c5f933b1d47c5dcf0ec1e0205e062db6d031b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x77cdc9a4f33f8cf2392a651553519923ef23808a', 'value': 105287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x164b9ea51990f8bc0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:27:19.000Z'}}, {'blockNum': '0x7d7d1c', 'uniqueId': '0xc464a842487c6b9f9055864f183e4d43fafe6ce76505a7394c6a3c186946a588:log:21', 'hash': '0xc464a842487c6b9f9055864f183e4d43fafe6ce76505a7394c6a3c186946a588', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 22836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x04d5f12991afc4500000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:28:32.000Z'}}, {'blockNum': '0x7d7d1c', 'uniqueId': '0x7b8738fb44d9e01250625ab6f48a4b240d52e11a787dc066432ad59f9c087406:log:22', 'hash': '0x7b8738fb44d9e01250625ab6f48a4b240d52e11a787dc066432ad59f9c087406', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 74984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0fe0e40a7dbdc2a00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:28:32.000Z'}}, {'blockNum': '0x7d7d1e', 'uniqueId': '0x3f0073f58aab7100112fe90fce336b1dff11bdc725b90b107278dd091ef5f604:log:48', 'hash': '0x3f0073f58aab7100112fe90fce336b1dff11bdc725b90b107278dd091ef5f604', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:29:02.000Z'}}, {'blockNum': '0x7d7d1e', 'uniqueId': '0xff483aab1845649c0b55ed122ef19970f056b06334b59b1ec77dce1793a9b6ac:log:50', 'hash': '0xff483aab1845649c0b55ed122ef19970f056b06334b59b1ec77dce1793a9b6ac', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x7853b07d41dfafbb094ccf7a226ce429af635657', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:29:02.000Z'}}, {'blockNum': '0x7d7d25', 'uniqueId': '0xabd65c0a758536ebb6e9aabb3559db8566bdf4b9ee3134d305813395a3229b8a:log:40', 'hash': '0xabd65c0a758536ebb6e9aabb3559db8566bdf4b9ee3134d305813395a3229b8a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xfa7e17ae2b6425f9c66eacadd9418cb87325c1a0', 'value': 1167.996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3f51335db125260000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:30:47.000Z'}}, {'blockNum': '0x7d7d2d', 'uniqueId': '0xd85a5759dd0c38174ff93f36c981c90d386d979a948638cf761037c858653b26:log:47', 'hash': '0xd85a5759dd0c38174ff93f36c981c90d386d979a948638cf761037c858653b26', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:32:14.000Z'}}, {'blockNum': '0x7d7d30', 'uniqueId': '0x977a3bd91e33b0df59cec6612bca4c8f09a50c4578c8851fb1a4981b5cc01d74:log:50', 'hash': '0x977a3bd91e33b0df59cec6612bca4c8f09a50c4578c8851fb1a4981b5cc01d74', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:33:05.000Z'}}, {'blockNum': '0x7d7d37', 'uniqueId': '0x83874c4a1c691d66659bb1b2fa39cae150d85bb8ec03e8ed6f69904700b099e7:log:42', 'hash': '0x83874c4a1c691d66659bb1b2fa39cae150d85bb8ec03e8ed6f69904700b099e7', 'from': '0xfa7e17ae2b6425f9c66eacadd9418cb87325c1a0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1167.996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3f51335db125260000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:34:34.000Z'}}, {'blockNum': '0x7d7d37', 'uniqueId': '0xb4ccfc9cc531ff677e2b4d1c93f4a60b7154d8a16dd8e0b9a42c65507d6086b3:log:114', 'hash': '0xb4ccfc9cc531ff677e2b4d1c93f4a60b7154d8a16dd8e0b9a42c65507d6086b3', 'from': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'to': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:34:34.000Z'}}, {'blockNum': '0x7d7d66', 'uniqueId': '0xce41cd997607714207827d03e5829b65a02a0e02504b7263b0f3ee9471821f1f:log:4', 'hash': '0xce41cd997607714207827d03e5829b65a02a0e02504b7263b0f3ee9471821f1f', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:44:00.000Z'}}, {'blockNum': '0x7d7d66', 'uniqueId': '0x0b7018844057fa5c56ca2a8b2a2605d5b3fdfba575b92fb4fb9c6bfd3ce912ac:log:5', 'hash': '0x0b7018844057fa5c56ca2a8b2a2605d5b3fdfba575b92fb4fb9c6bfd3ce912ac', 'from': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4999.919051661715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010f0bd0cec7a4749b5d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:44:00.000Z'}}, {'blockNum': '0x7d7d7f', 'uniqueId': '0x252ef8b6bcfc7e8dc005a7c76a99084dcc2398669e9304b43e3c71d323af7383:log:38', 'hash': '0x252ef8b6bcfc7e8dc005a7c76a99084dcc2398669e9304b43e3c71d323af7383', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 887.14859437751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3017a8f2458a973260', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:49:17.000Z'}}, {'blockNum': '0x7d7d82', 'uniqueId': '0xa5c9a5536c5c9dd72a8091a4cb7da62b1e90329aa5d0b6b2517650da5a81492b:log:98', 'hash': '0xa5c9a5536c5c9dd72a8091a4cb7da62b1e90329aa5d0b6b2517650da5a81492b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 999.7914381942751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3632e4b7ea66ae3e92', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:49:46.000Z'}}, {'blockNum': '0x7d7d82', 'uniqueId': '0xa5c9a5536c5c9dd72a8091a4cb7da62b1e90329aa5d0b6b2517650da5a81492b:log:100', 'hash': '0xa5c9a5536c5c9dd72a8091a4cb7da62b1e90329aa5d0b6b2517650da5a81492b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 999.7914381942751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3632e4b7ea66ae3e92', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:49:46.000Z'}}, {'blockNum': '0x7d7d85', 'uniqueId': '0x1462c300650c10b3c98effea6b2103175db5d7f865b8b4302ec0ccea6a9f3db2:log:99', 'hash': '0x1462c300650c10b3c98effea6b2103175db5d7f865b8b4302ec0ccea6a9f3db2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 12338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029cd8255e7971880000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:50:37.000Z'}}, {'blockNum': '0x7d7d94', 'uniqueId': '0x8772ab71273b801fd5a7d527c006035ab56a3011ef9e0042cc66e0a484a6629a:log:11', 'hash': '0x8772ab71273b801fd5a7d527c006035ab56a3011ef9e0042cc66e0a484a6629a', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029cd8255e7971880000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:53:58.000Z'}}, {'blockNum': '0x7d7da3', 'uniqueId': '0x3cd024433b1fbdb4b5cbfbd339df7de2d08e44c41f4036e0ec403d9b55791520:log:13', 'hash': '0x3cd024433b1fbdb4b5cbfbd339df7de2d08e44c41f4036e0ec403d9b55791520', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 1796.7479674796748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x6166e314d8131f7acb', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:57:49.000Z'}}, {'blockNum': '0x7d7db0', 'uniqueId': '0xb40853956a2a001336e11bf9f4a7c0adc6be36bfdb29d570ed317bf6684df89b:log:73', 'hash': '0xb40853956a2a001336e11bf9f4a7c0adc6be36bfdb29d570ed317bf6684df89b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 891.7577176217364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x30579fd7712cb3986b', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:00:00.000Z'}}, {'blockNum': '0x7d7db0', 'uniqueId': '0xb40853956a2a001336e11bf9f4a7c0adc6be36bfdb29d570ed317bf6684df89b:log:75', 'hash': '0xb40853956a2a001336e11bf9f4a7c0adc6be36bfdb29d570ed317bf6684df89b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 891.7577176217364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x30579fd7712cb3986b', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:00:00.000Z'}}, {'blockNum': '0x7d7db0', 'uniqueId': '0xb40853956a2a001336e11bf9f4a7c0adc6be36bfdb29d570ed317bf6684df89b:log:80', 'hash': '0xb40853956a2a001336e11bf9f4a7c0adc6be36bfdb29d570ed317bf6684df89b', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 891.7577176217366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x30579fd7712cb60000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:00:00.000Z'}}, {'blockNum': '0x7d7db4', 'uniqueId': '0x184cb06d1c32e3ff60959f224e20c239c670c0819a6941dafbaca3e451775010:log:38', 'hash': '0x184cb06d1c32e3ff60959f224e20c239c670c0819a6941dafbaca3e451775010', 'from': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'to': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'value': 999.7914381942751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3632e4b7ea66ae3e92', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:00:51.000Z'}}, {'blockNum': '0x7d7dbe', 'uniqueId': '0x4a6e6946c58522628197752cb353852b9411bb234ff9da9c9c76a9abb0a31f52:log:6', 'hash': '0x4a6e6946c58522628197752cb353852b9411bb234ff9da9c9c76a9abb0a31f52', 'from': '0x7853b07d41dfafbb094ccf7a226ce429af635657', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:04:07.000Z'}}, {'blockNum': '0x7d7dbe', 'uniqueId': '0x0a714fd392692a4a7c653f1b7db1b9b42b25c9d7d0d2126522884a47052594fc:log:12', 'hash': '0x0a714fd392692a4a7c653f1b7db1b9b42b25c9d7d0d2126522884a47052594fc', 'from': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 74984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0fe0e40a7dbdc2a00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:04:07.000Z'}}, {'blockNum': '0x7d7dbe', 'uniqueId': '0xb9fcae2060b37669f859ed4b01de8eba3f807352dceaf1d4926ae4b8b1a4aa45:log:19', 'hash': '0xb9fcae2060b37669f859ed4b01de8eba3f807352dceaf1d4926ae4b8b1a4aa45', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 49246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a6da189d38276b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:04:07.000Z'}}, {'blockNum': '0x7d7dc0', 'uniqueId': '0x358463979b3ae2968163128c45a233e811797c02a0d2c47ce40a874d4f65517e:log:23', 'hash': '0x358463979b3ae2968163128c45a233e811797c02a0d2c47ce40a874d4f65517e', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 999.7839831119849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3632ca3b8ecaff779c', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:04:24.000Z'}}, {'blockNum': '0x7d7dc0', 'uniqueId': '0x358463979b3ae2968163128c45a233e811797c02a0d2c47ce40a874d4f65517e:log:25', 'hash': '0x358463979b3ae2968163128c45a233e811797c02a0d2c47ce40a874d4f65517e', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 999.7839831119849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3632ca3b8ecaff779c', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:04:24.000Z'}}, {'blockNum': '0x7d7dcd', 'uniqueId': '0xaa9e2e3faa1fda7076cee056b410ca980937e7377479772c7291bb79896e5582:log:32', 'hash': '0xaa9e2e3faa1fda7076cee056b410ca980937e7377479772c7291bb79896e5582', 'from': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'to': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'value': 999.7839831119849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3632ca3b8ecaff779c', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:08:43.000Z'}}, {'blockNum': '0x7d7ddb', 'uniqueId': '0x69cb10281165bc1847bea40bb6de2220cd0efab885bfd90b6ecf5619798ccfe4:log:4', 'hash': '0x69cb10281165bc1847bea40bb6de2220cd0efab885bfd90b6ecf5619798ccfe4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xbb08e572938fbd418f7e858b4727945f5ebe6575', 'value': 77006.252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x104e846cd56415de0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:11:55.000Z'}}, {'blockNum': '0x7d7de4', 'uniqueId': '0xf479ca01536108faaf1eae64702adcea3a1890cb622efe45129d2c62f9d2c12d:log:17', 'hash': '0xf479ca01536108faaf1eae64702adcea3a1890cb622efe45129d2c62f9d2c12d', 'from': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1999.57542130626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x6c65aef37931adb62e', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:13:58.000Z'}}, {'blockNum': '0x7d7df6', 'uniqueId': '0xbb7389bd41d48e93301fc5e4adea885b4898083f965bc27cc4af4dce70cecd4f:log:199', 'hash': '0xbb7389bd41d48e93301fc5e4adea885b4898083f965bc27cc4af4dce70cecd4f', 'from': '0xa69a4320c09b86e1adbaccdd005dde9270e2b822', 'to': '0x807edd9751b0f245c9990f4a9bc9b74ef5a116e6', 'value': 3283.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xb1ffb75d457b1e0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:19:57.000Z'}}, {'blockNum': '0x7d7df8', 'uniqueId': '0x948868effff2966feb0d2b502d725b4e3d8263fd1237ff71ae47e083c5cec154:log:3', 'hash': '0x948868effff2966feb0d2b502d725b4e3d8263fd1237ff71ae47e083c5cec154', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xebcada62ac4b67f84fe1bf31fc81d00b98286337', 'value': 2056.806896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x6f7fedfe7b65cf0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:20:08.000Z'}}, {'blockNum': '0x7d7e01', 'uniqueId': '0xda9f2fd1a13048154ecc8df99e341f4cdf04146c3bdfadf0a2216539c27d84c1:log:21', 'hash': '0xda9f2fd1a13048154ecc8df99e341f4cdf04146c3bdfadf0a2216539c27d84c1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xe987fa5b20167c6d7159324387e314f03fa4a8b0', 'value': 102239.016498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x15a663606b67ef9d2000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:22:34.000Z'}}, {'blockNum': '0x7d7e10', 'uniqueId': '0x4ee2a2d8e754da06710c67c4b27fbf36cd91c0a8f541af76e6a17d169d60a66e:log:17', 'hash': '0x4ee2a2d8e754da06710c67c4b27fbf36cd91c0a8f541af76e6a17d169d60a66e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xeba579f59f375780ccb14b1a41236059a2ef6079', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:24:18.000Z'}}, {'blockNum': '0x7d7e26', 'uniqueId': '0x6617a59b6efd224a0adb696fcc43b31f7adc820c49bdb5a2479227ddea6cd12a:log:1', 'hash': '0x6617a59b6efd224a0adb696fcc43b31f7adc820c49bdb5a2479227ddea6cd12a', 'from': '0x859cdc3626614143526f20c4eada64a448198668', 'to': '0x3413b9768ce97d46bb274370cea03eaceedd37d1', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:29:58.000Z'}}, {'blockNum': '0x7d7e27', 'uniqueId': '0xb79dc129ea54b03f29c70991a79742bf539008a51ad552afd2c17a368f076b07:log:125', 'hash': '0xb79dc129ea54b03f29c70991a79742bf539008a51ad552afd2c17a368f076b07', 'from': '0xeba579f59f375780ccb14b1a41236059a2ef6079', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:30:11.000Z'}}, {'blockNum': '0x7d7e29', 'uniqueId': '0xa217b1d26302a087fb4295dead90f532cf366c304c30a39c9ae38547678af315:log:37', 'hash': '0xa217b1d26302a087fb4295dead90f532cf366c304c30a39c9ae38547678af315', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x275409f8eb9927f0db19b103ce45f91ffe404e6e', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:30:57.000Z'}}, {'blockNum': '0x7d7e33', 'uniqueId': '0xc96d94b48e1fe00e1579642eade746aaa6e30bfba57f10723b24fe2a5de86b0f:log:29', 'hash': '0xc96d94b48e1fe00e1579642eade746aaa6e30bfba57f10723b24fe2a5de86b0f', 'from': '0x807edd9751b0f245c9990f4a9bc9b74ef5a116e6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3283.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xb1ffb75d457b1e0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:34:02.000Z'}}, {'blockNum': '0x7d7e33', 'uniqueId': '0x5b4ba9de6d70721cf55103e6a43bed036062f9aa2c6741d1ba84fb43e35cb76b:log:36', 'hash': '0x5b4ba9de6d70721cf55103e6a43bed036062f9aa2c6741d1ba84fb43e35cb76b', 'from': '0xbb08e572938fbd418f7e858b4727945f5ebe6575', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 77006.252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x104e846cd56415de0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:34:02.000Z'}}, {'blockNum': '0x7d7e5f', 'uniqueId': '0x25fb46bf278b2981f8a484012fdac743d73a4ca219bbe15557da60dd1c604e6f:log:46', 'hash': '0x25fb46bf278b2981f8a484012fdac743d73a4ca219bbe15557da60dd1c604e6f', 'from': '0x3413b9768ce97d46bb274370cea03eaceedd37d1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:43:53.000Z'}}, {'blockNum': '0x7d7e5f', 'uniqueId': '0xae516cf0fb7ff9b783c84e34d6224c5f1ed83f74eec82f586b8867e9ed01f8d1:log:50', 'hash': '0xae516cf0fb7ff9b783c84e34d6224c5f1ed83f74eec82f586b8867e9ed01f8d1', 'from': '0x275409f8eb9927f0db19b103ce45f91ffe404e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x152a4ce4323444f80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:43:53.000Z'}}]}}
Number of returned transfers: 293
Answer is complete
symbol NAV
group CPS
date 2019-08-01
hour 20:00
exchange binance
Name: 405, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
Symbol: NAV, Contract:
Datetime timestamps: 2019-08-01 20:00:00 2019-08-01 08:00:00 2019-08-02 08:00:00
Unix timestamps: 1564639200.0 1564725600.0
Hex Block Numbers: 0x7e15d5 0x7e2ec1
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol CVC
group CPS
date 2019-08-13
hour 20:00
exchange binance
Name: 406, dtype: object
HERE
Symbol: CVC, Contract: 0x41e5560054824ea6b0732e656e3ad64e20e94e45
Datetime timestamps: 2019-08-13 20:00:00 2019-08-13 08:00:00 2019-08-14 08:00:00
Unix timestamps: 1565676000.0 1565762400.0
Hex Block Numbers: 0x7f43ed 0x7f5d01
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7f43f1', 'uniqueId': '0xd462f90d07f9f53d0253b0790885b109f883ad6546f4e863d39a4e9eb9720807:log:16', 'hash': '0xd462f90d07f9f53d0253b0790885b109f883ad6546f4e863d39a4e9eb9720807', 'from': '0x3840feee6e82d07dea385b011b597a0ddce74aa7', 'to': '0x0e17fdee2528ee4b6c076fd5fe725b05a6d0566a', 'value': 512.34814767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bedd53b2f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:01:43.000Z'}}, {'blockNum': '0x7f43f5', 'uniqueId': '0x52439710e05d050970d86088bbf0a80f2eb1fd7bbed0ecd2e64ab24bb2c0a5e2:log:0', 'hash': '0x52439710e05d050970d86088bbf0a80f2eb1fd7bbed0ecd2e64ab24bb2c0a5e2', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 49743.66673596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04862f5bcabc', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:02:02.000Z'}}, {'blockNum': '0x7f441b', 'uniqueId': '0x0728cdc1a7501444eacf75bb518ac3ca0405602e5b5ca706aca7b0f7e6561358:log:132', 'hash': '0x0728cdc1a7501444eacf75bb518ac3ca0405602e5b5ca706aca7b0f7e6561358', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49743.66673596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04862f5bcabc', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:10:04.000Z'}}, {'blockNum': '0x7f4420', 'uniqueId': '0x8f8b6156acadf56b35ff1ec83fc1d2ff162caf3333d779a3fda9da90bfa309f4:log:96', 'hash': '0x8f8b6156acadf56b35ff1ec83fc1d2ff162caf3333d779a3fda9da90bfa309f4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:12:05.000Z'}}, {'blockNum': '0x7f4472', 'uniqueId': '0xfba7b1affe6746c6170e7851c4ad65c69876c53de0f7afa4490d9cf6b640663f:log:100', 'hash': '0xfba7b1affe6746c6170e7851c4ad65c69876c53de0f7afa4490d9cf6b640663f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:32:46.000Z'}}, {'blockNum': '0x7f4477', 'uniqueId': '0xaada3cc576bb205d30e540c176e8ddaea914ae7960bff5db847bd418ec6e9602:log:68', 'hash': '0xaada3cc576bb205d30e540c176e8ddaea914ae7960bff5db847bd418ec6e9602', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:33:47.000Z'}}, {'blockNum': '0x7f4487', 'uniqueId': '0xd956a4b8c9ce9d7e0279c3f5d67a854bb19f34f04af86afb279c253a48096fbf:log:50', 'hash': '0xd956a4b8c9ce9d7e0279c3f5d67a854bb19f34f04af86afb279c253a48096fbf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:36:43.000Z'}}, {'blockNum': '0x7f448b', 'uniqueId': '0x65fb7245948f41d195367bea148c2a4a4d43f9875016151abb389c55fdf454ae:log:95', 'hash': '0x65fb7245948f41d195367bea148c2a4a4d43f9875016151abb389c55fdf454ae', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:37:03.000Z'}}, {'blockNum': '0x7f449b', 'uniqueId': '0xbd001f943b64f695606ddde21649a3aa3ed2a77078df98148eb4aca2baebe9e2:log:94', 'hash': '0xbd001f943b64f695606ddde21649a3aa3ed2a77078df98148eb4aca2baebe9e2', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:42:14.000Z'}}, {'blockNum': '0x7f449b', 'uniqueId': '0x3325ab97a8bac32d43584131770ef41a581b978991f6370dcb2b433f2026b9c2:log:96', 'hash': '0x3325ab97a8bac32d43584131770ef41a581b978991f6370dcb2b433f2026b9c2', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:42:14.000Z'}}, {'blockNum': '0x7f449b', 'uniqueId': '0x1d9b5c112ae27a2a83f7295173631bd4f637b174261caece7ac1dd5c235a3cd6:log:98', 'hash': '0x1d9b5c112ae27a2a83f7295173631bd4f637b174261caece7ac1dd5c235a3cd6', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:42:14.000Z'}}, {'blockNum': '0x7f452e', 'uniqueId': '0xd8b62f6827db6110ceafa8aa2139b8a40969d55d22092b829c3db522d22e4be0:log:30', 'hash': '0xd8b62f6827db6110ceafa8aa2139b8a40969d55d22092b829c3db522d22e4be0', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:11:40.000Z'}}, {'blockNum': '0x7f454c', 'uniqueId': '0xa0867820b5bea05690b8020d6a7f740f7f95dd6e60df89022ffb43297d06419f:log:101', 'hash': '0xa0867820b5bea05690b8020d6a7f740f7f95dd6e60df89022ffb43297d06419f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:19:39.000Z'}}, {'blockNum': '0x7f4568', 'uniqueId': '0x96d3e6d614d445bb8ea66cdcf1652d2565f59909fff631eee7088ec439826181:log:27', 'hash': '0x96d3e6d614d445bb8ea66cdcf1652d2565f59909fff631eee7088ec439826181', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:25:06.000Z'}}, {'blockNum': '0x7f4570', 'uniqueId': '0x4f9279658221b70de7775b1113ed5d320cd8d135f665fa67cdcb1ee559cbf73b:log:57', 'hash': '0x4f9279658221b70de7775b1113ed5d320cd8d135f665fa67cdcb1ee559cbf73b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:26:11.000Z'}}, {'blockNum': '0x7f457b', 'uniqueId': '0x78899d052b6c2d4a0ff0c0d3a57ffd22547e1119a4f4229d1133676fbae2d46d:log:77', 'hash': '0x78899d052b6c2d4a0ff0c0d3a57ffd22547e1119a4f4229d1133676fbae2d46d', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:28:39.000Z'}}, {'blockNum': '0x7f457b', 'uniqueId': '0x1fe75484d66e6191399d9560b319f782b6839bcf7cd1d97fd24db3866c2cd7dc:log:79', 'hash': '0x1fe75484d66e6191399d9560b319f782b6839bcf7cd1d97fd24db3866c2cd7dc', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:28:39.000Z'}}, {'blockNum': '0x7f4581', 'uniqueId': '0x3d928eeafdc48cffdcb9319261026632d6b6e6f385cf4b57f67b07f10e298845:log:105', 'hash': '0x3d928eeafdc48cffdcb9319261026632d6b6e6f385cf4b57f67b07f10e298845', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:30:17.000Z'}}, {'blockNum': '0x7f45b2', 'uniqueId': '0xddfa04bdb443dc35d4867b13676ee07a8ad219ff771735c0eb561ae0a51fe848:log:211', 'hash': '0xddfa04bdb443dc35d4867b13676ee07a8ad219ff771735c0eb561ae0a51fe848', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:41:43.000Z'}}, {'blockNum': '0x7f462e', 'uniqueId': '0x21938ab804b1ef1755d6befa7b9bd949c971c9c1ea39f382b550b62481497093:log:103', 'hash': '0x21938ab804b1ef1755d6befa7b9bd949c971c9c1ea39f382b550b62481497093', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T08:12:01.000Z'}}, {'blockNum': '0x7f4680', 'uniqueId': '0x58ae0454653019438d2d7e3f0d55ec2ab0afd7b27a112852906d6fee1d195d84:log:119', 'hash': '0x58ae0454653019438d2d7e3f0d55ec2ab0afd7b27a112852906d6fee1d195d84', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T08:31:07.000Z'}}, {'blockNum': '0x7f46af', 'uniqueId': '0xc901ee0c2f49a1bc71e47feac4498b76b4c2a9e8031eb6272e541b86f3bc7a06:log:84', 'hash': '0xc901ee0c2f49a1bc71e47feac4498b76b4c2a9e8031eb6272e541b86f3bc7a06', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T08:41:35.000Z'}}, {'blockNum': '0x7f4709', 'uniqueId': '0x7419b7c8835e8483b0d33a809bdee3056fc6120ba1492bf1256567c4ef74a341:log:23', 'hash': '0x7419b7c8835e8483b0d33a809bdee3056fc6120ba1492bf1256567c4ef74a341', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:01:50.000Z'}}, {'blockNum': '0x7f470a', 'uniqueId': '0x6010c2923b8ad38ad595acb2936e2ec099a961987efaf28f2df6b7c11d0e86ec:log:44', 'hash': '0x6010c2923b8ad38ad595acb2936e2ec099a961987efaf28f2df6b7c11d0e86ec', 'from': '0xaf37117018271a4ab607001179ef389f11c3e580', 'to': '0x2ae27588be2e682bf877d4ddef97f6efaef540de', 'value': 6080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x8d8f9fc000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:02:14.000Z'}}, {'blockNum': '0x7f4710', 'uniqueId': '0xd7b88e56d31c80c9eab03bc9b276b03d912ced481cfc1a1363966408697bf7df:log:92', 'hash': '0xd7b88e56d31c80c9eab03bc9b276b03d912ced481cfc1a1363966408697bf7df', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:03:01.000Z'}}, {'blockNum': '0x7f4715', 'uniqueId': '0x2d44d9ee58d0e0441139de1e10fc9b64574746019117e9921f10801cd70f925e:log:61', 'hash': '0x2d44d9ee58d0e0441139de1e10fc9b64574746019117e9921f10801cd70f925e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:04:37.000Z'}}, {'blockNum': '0x7f471e', 'uniqueId': '0xd775df107ed724103c7eb1462fe0733a0ca04ce1e6e41a2f2bf1b3ae21e92374:log:9', 'hash': '0xd775df107ed724103c7eb1462fe0733a0ca04ce1e6e41a2f2bf1b3ae21e92374', 'from': '0x2ae27588be2e682bf877d4ddef97f6efaef540de', 'to': '0x842a499c04afab73af5b1940ee492cd3f7f3eb2e', 'value': 6080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x8d8f9fc000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:06:51.000Z'}}, {'blockNum': '0x7f4739', 'uniqueId': '0x01101fd70f809ae62e536088acb0a98e96589564b4eabd47ce87023617db5966:log:0', 'hash': '0x01101fd70f809ae62e536088acb0a98e96589564b4eabd47ce87023617db5966', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 95443.25707285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08ae3624b615', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:14:48.000Z'}}, {'blockNum': '0x7f474a', 'uniqueId': '0x847824858a129551fdbb628518c6b2140746bf71243aee41e20539e52438fdda:log:61', 'hash': '0x847824858a129551fdbb628518c6b2140746bf71243aee41e20539e52438fdda', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:17:53.000Z'}}, {'blockNum': '0x7f475c', 'uniqueId': '0xe3333f3b800fbc4f8f3815f536eaed341c859def773440d1681b9ccf9cde4192:log:105', 'hash': '0xe3333f3b800fbc4f8f3815f536eaed341c859def773440d1681b9ccf9cde4192', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 95443.25707285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08ae3624b615', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:20:00.000Z'}}, {'blockNum': '0x7f4764', 'uniqueId': '0x21eb0c244f0c44a8d68ced0627e1fb8142a76b1021c8d4685097dcc1e2eccda8:log:133', 'hash': '0x21eb0c244f0c44a8d68ced0627e1fb8142a76b1021c8d4685097dcc1e2eccda8', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:21:21.000Z'}}, {'blockNum': '0x7f4777', 'uniqueId': '0xf174f050738a96ef3f25c875ef5ebb64e69840038c9dad83db7d03fca0c69d6b:log:0', 'hash': '0xf174f050738a96ef3f25c875ef5ebb64e69840038c9dad83db7d03fca0c69d6b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 48447.24427285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x046800141a15', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:25:07.000Z'}}, {'blockNum': '0x7f47cf', 'uniqueId': '0x28470ab8676d92f7b8be0f6dc2d141bb2276acf7c512275f2a6cf63d85c2ff30:log:3', 'hash': '0x28470ab8676d92f7b8be0f6dc2d141bb2276acf7c512275f2a6cf63d85c2ff30', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 48447.24427285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x046800141a15', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:43:44.000Z'}}, {'blockNum': '0x7f482f', 'uniqueId': '0xd3ea56a68953a21f83fbf5df43e9f8d37c9f8e1d247c7b60d649e08423cb2302:log:0', 'hash': '0xd3ea56a68953a21f83fbf5df43e9f8d37c9f8e1d247c7b60d649e08423cb2302', 'from': '0x9ba2cb2df0d7d5b3fb1938ce5619339f723e4eb6', 'to': '0xb8f11b8416c6c0ad25f913a3606478c6e0003978', 'value': 62.452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01743e3080', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:03:25.000Z'}}, {'blockNum': '0x7f4849', 'uniqueId': '0x58888ea6029ab575fb3ae053e6f37b94b463e1a2522b347b2632b479ecccdb5f:log:14', 'hash': '0x58888ea6029ab575fb3ae053e6f37b94b463e1a2522b347b2632b479ecccdb5f', 'from': '0xb8f11b8416c6c0ad25f913a3606478c6e0003978', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 62.452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01743e3080', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:07:13.000Z'}}, {'blockNum': '0x7f485c', 'uniqueId': '0x03855a5c721f6fba3e085551e26b4aa0272bc9807596e38ab088a95d33819a56:log:63', 'hash': '0x03855a5c721f6fba3e085551e26b4aa0272bc9807596e38ab088a95d33819a56', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:11:46.000Z'}}, {'blockNum': '0x7f48b4', 'uniqueId': '0x11ebedacaaae5290867f178fd013e0b7010da10955604c405bc22ad28631df5b:log:41', 'hash': '0x11ebedacaaae5290867f178fd013e0b7010da10955604c405bc22ad28631df5b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:28:54.000Z'}}, {'blockNum': '0x7f48de', 'uniqueId': '0x309d10cd875e418d6be559fdb02267c6a8799d430fd1144f7ec815fba7ec43b0:log:33', 'hash': '0x309d10cd875e418d6be559fdb02267c6a8799d430fd1144f7ec815fba7ec43b0', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:39:41.000Z'}}, {'blockNum': '0x7f48e7', 'uniqueId': '0x71a4f58c68db712b3e8a1b6a10f53cc5d21a8c3a5c32b84134ca8f6af5c56579:log:69', 'hash': '0x71a4f58c68db712b3e8a1b6a10f53cc5d21a8c3a5c32b84134ca8f6af5c56579', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:41:09.000Z'}}, {'blockNum': '0x7f4910', 'uniqueId': '0x6d71c90c8f8e933f8972bcde6455f9c6349f999aea3b83c3ec6c1336c354e812:log:0', 'hash': '0x6d71c90c8f8e933f8972bcde6455f9c6349f999aea3b83c3ec6c1336c354e812', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 195846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x11cfe5204600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:50:46.000Z'}}, {'blockNum': '0x7f4920', 'uniqueId': '0xdca641191a4846c25afa8d3709473224a4344aadf1aaa2b925ee93668a33586e:log:47', 'hash': '0xdca641191a4846c25afa8d3709473224a4344aadf1aaa2b925ee93668a33586e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:54:13.000Z'}}, {'blockNum': '0x7f4920', 'uniqueId': '0x2675a85c38c68391231980fa66835edc42ea0cb56a98e88d160236139ae0b4ed:log:49', 'hash': '0x2675a85c38c68391231980fa66835edc42ea0cb56a98e88d160236139ae0b4ed', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:54:13.000Z'}}, {'blockNum': '0x7f492f', 'uniqueId': '0xf0e589fe97ce22991941bbb0f88e5a84b40062d4315e745c71ba821f0718e8b6:log:12', 'hash': '0xf0e589fe97ce22991941bbb0f88e5a84b40062d4315e745c71ba821f0718e8b6', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:58:10.000Z'}}, {'blockNum': '0x7f4938', 'uniqueId': '0x4c091ef0b9773a08dc92b85aefe25087fc346417e0dbbe1affcb326b14120d80:log:100', 'hash': '0x4c091ef0b9773a08dc92b85aefe25087fc346417e0dbbe1affcb326b14120d80', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 424709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x26a086e86500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:00:11.000Z'}}, {'blockNum': '0x7f4968', 'uniqueId': '0x4ba409b5a4c270fe646305d186217f22a114764de559b66fb37a081ec64c03f6:log:2', 'hash': '0x4ba409b5a4c270fe646305d186217f22a114764de559b66fb37a081ec64c03f6', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 49794.15631116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04875c4cc50c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:11:13.000Z'}}, {'blockNum': '0x7f4976', 'uniqueId': '0x878a0855634a7eff17797cf6d5d60d982564d4d05d8d941705479f7570a00231:log:33', 'hash': '0x878a0855634a7eff17797cf6d5d60d982564d4d05d8d941705479f7570a00231', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:14:45.000Z'}}, {'blockNum': '0x7f4994', 'uniqueId': '0x4a98cfa9e9698415988d3f0fdef9fb0a120387ee4ad82100373a40382915cf9e:log:26', 'hash': '0x4a98cfa9e9698415988d3f0fdef9fb0a120387ee4ad82100373a40382915cf9e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:22:07.000Z'}}, {'blockNum': '0x7f49b0', 'uniqueId': '0x593b088f71c03f6605a47c3a6c04b98bf8c1a5c34ada9b5baf3c3a1b863200dc:log:72', 'hash': '0x593b088f71c03f6605a47c3a6c04b98bf8c1a5c34ada9b5baf3c3a1b863200dc', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49794.15631116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04875c4cc50c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:30:06.000Z'}}, {'blockNum': '0x7f4a4a', 'uniqueId': '0xef26ce674b87dbbf9811f0eeb338b411d7b5b5b386d63370ec9ccc98c708303d:log:0', 'hash': '0xef26ce674b87dbbf9811f0eeb338b411d7b5b5b386d63370ec9ccc98c708303d', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 59000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x055db3677800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:05:28.000Z'}}, {'blockNum': '0x7f4a4b', 'uniqueId': '0x98a90898878dce7a8c71779669231c07f24491bc46b6bcbc12d65192877a0dab:log:115', 'hash': '0x98a90898878dce7a8c71779669231c07f24491bc46b6bcbc12d65192877a0dab', 'from': '0x6d367f8f9e9c647acf649de37306ff896d09f1f5', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 22303.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02074d9a8980', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:05:50.000Z'}}, {'blockNum': '0x7f4a5d', 'uniqueId': '0x7cf055076fa3abf115b027df77a341b9049f7a70a83cccc8247dec72ab11b3dc:log:82', 'hash': '0x7cf055076fa3abf115b027df77a341b9049f7a70a83cccc8247dec72ab11b3dc', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x055db3677800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:10:11.000Z'}}, {'blockNum': '0x7f4a61', 'uniqueId': '0x81dbbcbfdfb65483ed0d4b9a5b739459d2a12fd071df5e4e0ef5315f7ff95323:log:0', 'hash': '0x81dbbcbfdfb65483ed0d4b9a5b739459d2a12fd071df5e4e0ef5315f7ff95323', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x69412cde74814fee9553e22a424a0b2889725c5e', 'value': 1034.934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1818aff5c0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:10:36.000Z'}}, {'blockNum': '0x7f4a67', 'uniqueId': '0x61a050874f656313e7ac321f9c184327fb03caffc54efd0eff7c94ce1a410baf:log:31', 'hash': '0x61a050874f656313e7ac321f9c184327fb03caffc54efd0eff7c94ce1a410baf', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:12:01.000Z'}}, {'blockNum': '0x7f4a87', 'uniqueId': '0xfef6c8a22015d7e1122a8726e2a66a9fdb9b4cb5e032e742b699fd3866cce2d2:log:104', 'hash': '0xfef6c8a22015d7e1122a8726e2a66a9fdb9b4cb5e032e742b699fd3866cce2d2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:18:28.000Z'}}, {'blockNum': '0x7f4a89', 'uniqueId': '0x53b86a793ec29ff8771199e9fdda3444d77d386110916f592ea4879f19c0a197:log:105', 'hash': '0x53b86a793ec29ff8771199e9fdda3444d77d386110916f592ea4879f19c0a197', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:18:56.000Z'}}, {'blockNum': '0x7f4aa3', 'uniqueId': '0x6a5242043d0b4eb02467f40ee4d9d90cbe593b11336cc2cf7661e489516efc90:log:1', 'hash': '0x6a5242043d0b4eb02467f40ee4d9d90cbe593b11336cc2cf7661e489516efc90', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 96849.28334898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08cef2b68c32', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:25:13.000Z'}}, {'blockNum': '0x7f4ab2', 'uniqueId': '0xca77ce4ec17854c92bbf20e183b90e92b6e6dca139dab242a4d2782fa79bd588:log:80', 'hash': '0xca77ce4ec17854c92bbf20e183b90e92b6e6dca139dab242a4d2782fa79bd588', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 96849.28334898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08cef2b68c32', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:29:59.000Z'}}, {'blockNum': '0x7f4ac2', 'uniqueId': '0xad4e96b4572a8041549fc23600fc93e10e48e57d23d0bed1c0a44a9f5d500f7e:log:94', 'hash': '0xad4e96b4572a8041549fc23600fc93e10e48e57d23d0bed1c0a44a9f5d500f7e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:33:08.000Z'}}, {'blockNum': '0x7f4ac7', 'uniqueId': '0x02272f1d2cc1c2000ae42503b199231878791e31e1aa7ec86048dbf1aeeccee8:log:103', 'hash': '0x02272f1d2cc1c2000ae42503b199231878791e31e1aa7ec86048dbf1aeeccee8', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:34:34.000Z'}}, {'blockNum': '0x7f4ad6', 'uniqueId': '0x65349594a37f9687c49cb35bbaf0473ac5d80071b906b7b6a2aecc84829159a4:log:52', 'hash': '0x65349594a37f9687c49cb35bbaf0473ac5d80071b906b7b6a2aecc84829159a4', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:38:58.000Z'}}, {'blockNum': '0x7f4ad9', 'uniqueId': '0x3dcfc87bcda9ed25c88676136cdf4c27504e1f01b922bbeea2cbc110625dc2ea:log:18', 'hash': '0x3dcfc87bcda9ed25c88676136cdf4c27504e1f01b922bbeea2cbc110625dc2ea', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:39:13.000Z'}}, {'blockNum': '0x7f4ae4', 'uniqueId': '0xa3b8da535cd95f3267099db927b45b087daee832aa59349dabe84fd42e85595e:log:3', 'hash': '0xa3b8da535cd95f3267099db927b45b087daee832aa59349dabe84fd42e85595e', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 136000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c5e7f2b4000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:41:49.000Z'}}, {'blockNum': '0x7f4aec', 'uniqueId': '0xac553eba70c24ffc13ec48bc2378affd3506aa2dd890c08963158aeb208c166f:log:105', 'hash': '0xac553eba70c24ffc13ec48bc2378affd3506aa2dd890c08963158aeb208c166f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:44:26.000Z'}}, {'blockNum': '0x7f4aef', 'uniqueId': '0x2025a23bbe61de886eb02a30b218797503839960bac54571148b90298023316f:log:2', 'hash': '0x2025a23bbe61de886eb02a30b218797503839960bac54571148b90298023316f', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 93908.26598401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088a78e23001', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:45:02.000Z'}}, {'blockNum': '0x7f4b02', 'uniqueId': '0x4d2df00b11e92029fea2aa2e3dbdc8482814ec18917f48e963e6a7c9aa2f8bc0:log:64', 'hash': '0x4d2df00b11e92029fea2aa2e3dbdc8482814ec18917f48e963e6a7c9aa2f8bc0', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 136000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c5e7f2b4000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:49:50.000Z'}}, {'blockNum': '0x7f4b15', 'uniqueId': '0xd09537a6efb823ea7b4f81c8f7a8e66a9912642f125ee3f8e5a7a21b299263a2:log:124', 'hash': '0xd09537a6efb823ea7b4f81c8f7a8e66a9912642f125ee3f8e5a7a21b299263a2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:54:33.000Z'}}, {'blockNum': '0x7f4b26', 'uniqueId': '0xffd54854b2bacfef99c753b18666609e8fc15e73bb5a3bf08629380ee2084cb5:log:116', 'hash': '0xffd54854b2bacfef99c753b18666609e8fc15e73bb5a3bf08629380ee2084cb5', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 93908.26598401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088a78e23001', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:59:31.000Z'}}, {'blockNum': '0x7f4b34', 'uniqueId': '0x6849fed45177018626f2b33fd6dcb4cc1020f77833b2a1b33127d82878f350a4:log:106', 'hash': '0x6849fed45177018626f2b33fd6dcb4cc1020f77833b2a1b33127d82878f350a4', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:03:45.000Z'}}, {'blockNum': '0x7f4b3a', 'uniqueId': '0x3275f5dc629c776c68242359d7d5f438822d87732c487176ca1711d38837f6e8:log:83', 'hash': '0x3275f5dc629c776c68242359d7d5f438822d87732c487176ca1711d38837f6e8', 'from': '0x4003caeff9d6eb5af6927b0842c90f43f31d25d1', 'to': '0x4bc966c0b047278f3c02b52b5d0b9c6a7be35e93', 'value': 99424.065368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x090ae59c1e60', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:05:13.000Z'}}, {'blockNum': '0x7f4b51', 'uniqueId': '0xa76094bbffd397b77265f6427b0df458d67bb560ce706776a89435411455c794:log:79', 'hash': '0xa76094bbffd397b77265f6427b0df458d67bb560ce706776a89435411455c794', 'from': '0x4bc966c0b047278f3c02b52b5d0b9c6a7be35e93', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99424.065368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x090ae59c1e60', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:10:13.000Z'}}, {'blockNum': '0x7f4b55', 'uniqueId': '0x03021a5557f992f7ed43b9f835a50ab6c62c8706b93e01685e4c569887d8aca9:log:81', 'hash': '0x03021a5557f992f7ed43b9f835a50ab6c62c8706b93e01685e4c569887d8aca9', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:11:44.000Z'}}, {'blockNum': '0x7f4b5b', 'uniqueId': '0x549d6ab5ad47d157374592d74bb577285049ff318922093096b330e7db6bce56:log:27', 'hash': '0x549d6ab5ad47d157374592d74bb577285049ff318922093096b330e7db6bce56', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:12:40.000Z'}}, {'blockNum': '0x7f4b76', 'uniqueId': '0xc6333ebdf385d5cc124e0845f407da98cd5527ccb3855591e909a11c48643072:log:25', 'hash': '0xc6333ebdf385d5cc124e0845f407da98cd5527ccb3855591e909a11c48643072', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:17:42.000Z'}}, {'blockNum': '0x7f4b7b', 'uniqueId': '0x727e340c7d18031d6e4eadf71005aa21468f69f39dbbd5cfa02f7d9efe4d2e8f:log:158', 'hash': '0x727e340c7d18031d6e4eadf71005aa21468f69f39dbbd5cfa02f7d9efe4d2e8f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:19:50.000Z'}}, {'blockNum': '0x7f4b7b', 'uniqueId': '0x875005d952afe7548e500b3e97f0ecf844ed59ce76ce920d7e9886a135e92d52:log:160', 'hash': '0x875005d952afe7548e500b3e97f0ecf844ed59ce76ce920d7e9886a135e92d52', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:19:50.000Z'}}, {'blockNum': '0x7f4bce', 'uniqueId': '0x6f44fa62edbbd0ad871fc38cccaffde70c6ce00f75cbd681b1dff003146d3170:log:2', 'hash': '0x6f44fa62edbbd0ad871fc38cccaffde70c6ce00f75cbd681b1dff003146d3170', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 93234.62781364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x087ac9afe9b4', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:39:22.000Z'}}, {'blockNum': '0x7f4bd1', 'uniqueId': '0x6f96534943e0dfa0ddf0199011af08dfc2970dd8f935734a030343dd20f77517:log:3', 'hash': '0x6f96534943e0dfa0ddf0199011af08dfc2970dd8f935734a030343dd20f77517', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 115000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0a758d6a3800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:40:20.000Z'}}, {'blockNum': '0x7f4bd3', 'uniqueId': '0x69a8353964faa7ecf5e140285f5c398d64dd33feb0f1b47dcf0249cd7cae74c3:log:1', 'hash': '0x69a8353964faa7ecf5e140285f5c398d64dd33feb0f1b47dcf0249cd7cae74c3', 'from': '0xc928a3ed8f5f723007b7b1e68d9f918d10dae923', 'to': '0xcf57c6d76bcaa985f25f45f02cb29f11fbaa136b', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:41:44.000Z'}}, {'blockNum': '0x7f4bd7', 'uniqueId': '0x584b2dcbeb9e4854af8283630b7b40820333e1a2044aa8ba2f48d55c0b0e57c1:log:1', 'hash': '0x584b2dcbeb9e4854af8283630b7b40820333e1a2044aa8ba2f48d55c0b0e57c1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd2cc61d000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:43:02.000Z'}}, {'blockNum': '0x7f4bdd', 'uniqueId': '0xc0fd21bb10b1fdb1d8d95ff8e8d971197424155913f63870c9513978b77639d2:log:0', 'hash': '0xc0fd21bb10b1fdb1d8d95ff8e8d971197424155913f63870c9513978b77639d2', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 132569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c0e9cd0b900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:44:30.000Z'}}, {'blockNum': '0x7f4bec', 'uniqueId': '0x168917152554f694879bcdf80eb432b7962bda31eafa2be9bd26332369fca329:log:72', 'hash': '0x168917152554f694879bcdf80eb432b7962bda31eafa2be9bd26332369fca329', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 132569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c0e9cd0b900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:50:14.000Z'}}, {'blockNum': '0x7f4bec', 'uniqueId': '0x7f2f3332e70fa95da30514d5a41e330ca1228cb8c984bd7e395ab1fc0e55daac:log:84', 'hash': '0x7f2f3332e70fa95da30514d5a41e330ca1228cb8c984bd7e395ab1fc0e55daac', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 245000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x164859cc0800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:50:14.000Z'}}, {'blockNum': '0x7f4bf1', 'uniqueId': '0xfe5ce81548d2fe63354dca5d212224481e4ae90b03c46396bb5c4ea637ba6a52:log:37', 'hash': '0xfe5ce81548d2fe63354dca5d212224481e4ae90b03c46396bb5c4ea637ba6a52', 'from': '0xcb75906a534b86a4a72ee621e4e071abfe852980', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:51:10.000Z'}}, {'blockNum': '0x7f4bf2', 'uniqueId': '0x7c885a8fee3e292745a618061e7a95997bcc0d6f4773a3e00055ea2d11cb5f09:log:117', 'hash': '0x7c885a8fee3e292745a618061e7a95997bcc0d6f4773a3e00055ea2d11cb5f09', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:51:14.000Z'}}, {'blockNum': '0x7f4bfc', 'uniqueId': '0xd22ed27d9495374f21a708dad281e9cbe11ffa2176488c682538c7c53e67d263:log:44', 'hash': '0xd22ed27d9495374f21a708dad281e9cbe11ffa2176488c682538c7c53e67d263', 'from': '0xd65e1f33a142d57b431b65d0774d514948a0e0bc', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 20081.3516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01d38e2ed0c0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:52:42.000Z'}}, {'blockNum': '0x7f4c01', 'uniqueId': '0x659c340ace18167d2a60dcfd198b0cda263e40e658f661d735f3423852dcaaa3:log:27', 'hash': '0x659c340ace18167d2a60dcfd198b0cda263e40e658f661d735f3423852dcaaa3', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 20050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01d2d3501200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:53:24.000Z'}}, {'blockNum': '0x7f4c06', 'uniqueId': '0xf86d4a013cc3459eed0cb6b7a605e0fcbc4c567a263d26a1fa27c3ff1306a825:log:6', 'hash': '0xf86d4a013cc3459eed0cb6b7a605e0fcbc4c567a263d26a1fa27c3ff1306a825', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 49460.60042325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x047f9826e055', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:53:59.000Z'}}, {'blockNum': '0x7f4c28', 'uniqueId': '0x3aac3059c0d3a437b4e2a703284eafe5e8011d85c35e995ef94d9e03f5b10257:log:13', 'hash': '0x3aac3059c0d3a437b4e2a703284eafe5e8011d85c35e995ef94d9e03f5b10257', 'from': '0xcf57c6d76bcaa985f25f45f02cb29f11fbaa136b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:00:09.000Z'}}, {'blockNum': '0x7f4c3e', 'uniqueId': '0xd1653a0a16d19ef8bc233e6208910e3b134a428050beab219ca2683e437823ec:log:127', 'hash': '0xd1653a0a16d19ef8bc233e6208910e3b134a428050beab219ca2683e437823ec', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:05:57.000Z'}}, {'blockNum': '0x7f4c40', 'uniqueId': '0xe1cbfbadff35defb35640813df50ceb210701e79fdb248bf8f0eca3cdd3cd34e:log:117', 'hash': '0xe1cbfbadff35defb35640813df50ceb210701e79fdb248bf8f0eca3cdd3cd34e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:06:11.000Z'}}, {'blockNum': '0x7f4c50', 'uniqueId': '0x2ba2cfd3951c41340ba4fb7406fa7f2d0dac948940f7186321deab0df74f6d45:log:75', 'hash': '0x2ba2cfd3951c41340ba4fb7406fa7f2d0dac948940f7186321deab0df74f6d45', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:09:34.000Z'}}, {'blockNum': '0x7f4c55', 'uniqueId': '0x627aaf6db3905e0a54933ef6e4a79aca3fd55ffcc9133f5fb16334b9f54dea5c:log:134', 'hash': '0x627aaf6db3905e0a54933ef6e4a79aca3fd55ffcc9133f5fb16334b9f54dea5c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:11:17.000Z'}}, {'blockNum': '0x7f4c59', 'uniqueId': '0x0a70b415dadb95ee3fa56799d36f4934fb8301d770369e9227a535ff7f8d7486:log:6', 'hash': '0x0a70b415dadb95ee3fa56799d36f4934fb8301d770369e9227a535ff7f8d7486', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 49460.60042325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x047f9826e055', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:13:44.000Z'}}, {'blockNum': '0x7f4c80', 'uniqueId': '0xacf8f9c97ab942b4250cc8c38493f267335ab2cf54eb4f32656bb4ce78330f8a:log:6', 'hash': '0xacf8f9c97ab942b4250cc8c38493f267335ab2cf54eb4f32656bb4ce78330f8a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe905e6691019605015334b20bdf2882f65de0153', 'value': 1241.769537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1ce985f164', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:20:55.000Z'}}, {'blockNum': '0x7f4c92', 'uniqueId': '0x6c7f5925877b7b9d51b6e82194a4b346ac0d14fd606ea57533e72a516d602d63:log:44', 'hash': '0x6c7f5925877b7b9d51b6e82194a4b346ac0d14fd606ea57533e72a516d602d63', 'from': '0xaa33c73a6bc3044ece79de75eed32970622026df', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01747790', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:26:24.000Z'}}, {'blockNum': '0x7f4c92', 'uniqueId': '0x43f4b4c2768f7b6467e476178bd562c1688c7cd3efdf9bba75c9736703463876:log:89', 'hash': '0x43f4b4c2768f7b6467e476178bd562c1688c7cd3efdf9bba75c9736703463876', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:26:24.000Z'}}, {'blockNum': '0x7f4c94', 'uniqueId': '0xe13ff0629b69430f7199f0f13d15d3eb8361aed188a7e78535a7a89f1ba724f7:log:95', 'hash': '0xe13ff0629b69430f7199f0f13d15d3eb8361aed188a7e78535a7a89f1ba724f7', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:10.000Z'}}, {'blockNum': '0x7f4c96', 'uniqueId': '0xf1c61d229ed5b46a5181589800261cc599eaaa09a7bdda922fbd389a0988272f:log:18', 'hash': '0xf1c61d229ed5b46a5181589800261cc599eaaa09a7bdda922fbd389a0988272f', 'from': '0xaa33c73a6bc3044ece79de75eed32970622026df', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01767360', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:47.000Z'}}, {'blockNum': '0x7f4c96', 'uniqueId': '0xba446377651eb1f42a4c9e001a91aaa6b204ed57d4f12751d37d3b8440b45fef:log:70', 'hash': '0xba446377651eb1f42a4c9e001a91aaa6b204ed57d4f12751d37d3b8440b45fef', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:47.000Z'}}, {'blockNum': '0x7f4c96', 'uniqueId': '0x12c5f0b03e7058ab8aa197bf92edee899c4b29a78c10509fbc046c8ac05468d8:log:72', 'hash': '0x12c5f0b03e7058ab8aa197bf92edee899c4b29a78c10509fbc046c8ac05468d8', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:47.000Z'}}, {'blockNum': '0x7f4c98', 'uniqueId': '0xaf9924d87f069b8c3623c448cdfb2a146e70202e27aa79c352687dfa2f81f416:log:120', 'hash': '0xaf9924d87f069b8c3623c448cdfb2a146e70202e27aa79c352687dfa2f81f416', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:57.000Z'}}, {'blockNum': '0x7f4ca2', 'uniqueId': '0xb752079269420d5baca971675a9955e08a2ac8bf8368a4dce1c9736fbc9bcd3b:log:107', 'hash': '0xb752079269420d5baca971675a9955e08a2ac8bf8368a4dce1c9736fbc9bcd3b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:30:09.000Z'}}, {'blockNum': '0x7f4cc0', 'uniqueId': '0xe3be47f90acb6a2489f4c62d6de18f8c2aa42dd74e097fbc1e2a5331f98eac06:log:22', 'hash': '0xe3be47f90acb6a2489f4c62d6de18f8c2aa42dd74e097fbc1e2a5331f98eac06', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:35:36.000Z'}}, {'blockNum': '0x7f4cf2', 'uniqueId': '0x0593e75e73155067efc7c70b0e9a05af88c693cf68f080dda7092479b72b7a70:log:86', 'hash': '0x0593e75e73155067efc7c70b0e9a05af88c693cf68f080dda7092479b72b7a70', 'from': '0xcc6648fe5eccd8772c9a19d704370d708af02466', 'to': '0x664603913b58345c8b8881fbb39ad7e518a406c9', 'value': 215.19153456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0502a43930', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:46:36.000Z'}}, {'blockNum': '0x7f4d06', 'uniqueId': '0x005ef785052199af9d65e889567a322a87ab8063cad9d965f019aa9fbee31991:log:65', 'hash': '0x005ef785052199af9d65e889567a322a87ab8063cad9d965f019aa9fbee31991', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:50:20.000Z'}}, {'blockNum': '0x7f4d08', 'uniqueId': '0xa3e072f22d42035a011f957154121eb711d631b616a3cb0820f0bed8f4748ff7:log:75', 'hash': '0xa3e072f22d42035a011f957154121eb711d631b616a3cb0820f0bed8f4748ff7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:50:31.000Z'}}, {'blockNum': '0x7f4d09', 'uniqueId': '0xb99d749ce1d4b299fe909f15b9515d55417f4522c8d307e2b0089a48e8fa2b32:log:67', 'hash': '0xb99d749ce1d4b299fe909f15b9515d55417f4522c8d307e2b0089a48e8fa2b32', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:51:01.000Z'}}, {'blockNum': '0x7f4d0b', 'uniqueId': '0xbd86fcd06005af5c416047d214bf3df17aa570c92ea777ea3cf63bdeebc07f8d:log:34', 'hash': '0xbd86fcd06005af5c416047d214bf3df17aa570c92ea777ea3cf63bdeebc07f8d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:51:54.000Z'}}, {'blockNum': '0x7f4d0e', 'uniqueId': '0x01a7fdf9d0282a3d79a9e6ab6386899c03482a5fdf1c63ef09f9eed75e28637f:log:19', 'hash': '0x01a7fdf9d0282a3d79a9e6ab6386899c03482a5fdf1c63ef09f9eed75e28637f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:52:27.000Z'}}, {'blockNum': '0x7f4d13', 'uniqueId': '0x9dbcc757e60d26c2eeb51a326ddb446f9b3e8a20a376a51bcf88b05457e723a1:log:82', 'hash': '0x9dbcc757e60d26c2eeb51a326ddb446f9b3e8a20a376a51bcf88b05457e723a1', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:54:22.000Z'}}, {'blockNum': '0x7f4d14', 'uniqueId': '0xfc06c193d31a36984ba8cb26aa830a51a4fcfed01b86f4469fe2e22e010ca922:log:7', 'hash': '0xfc06c193d31a36984ba8cb26aa830a51a4fcfed01b86f4469fe2e22e010ca922', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:54:28.000Z'}}, {'blockNum': '0x7f4d15', 'uniqueId': '0x842118098de7591a8ef5aba98fec28f19ad8606180f0a10e5603d2eb23c7fcbb:log:25', 'hash': '0x842118098de7591a8ef5aba98fec28f19ad8606180f0a10e5603d2eb23c7fcbb', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:54:38.000Z'}}, {'blockNum': '0x7f4d1c', 'uniqueId': '0x910a94c6becc53fcfd72eac53f112b4e5bd81253b93df3945d002037102deacf:log:57', 'hash': '0x910a94c6becc53fcfd72eac53f112b4e5bd81253b93df3945d002037102deacf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:55:36.000Z'}}, {'blockNum': '0x7f4d1f', 'uniqueId': '0x259fa9599d82793f174993d0121032c4e8cda0c1f421cc028244e860e229c2bc:log:31', 'hash': '0x259fa9599d82793f174993d0121032c4e8cda0c1f421cc028244e860e229c2bc', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xefe0874afb2455a68b4f234b81da94a738777807', 'value': 1740.287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2884eb3960', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:57:24.000Z'}}, {'blockNum': '0x7f4d21', 'uniqueId': '0x36fff7cfe98539d8cc474b5b816ee9ab97ee281fe5334032003290d754ef845b:log:37', 'hash': '0x36fff7cfe98539d8cc474b5b816ee9ab97ee281fe5334032003290d754ef845b', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:57:29.000Z'}}, {'blockNum': '0x7f4d2a', 'uniqueId': '0x4e8c07cfc0e8c9f17bdf4e840bfb7881f64f26d62fce3fa35d2339048040df58:log:30', 'hash': '0x4e8c07cfc0e8c9f17bdf4e840bfb7881f64f26d62fce3fa35d2339048040df58', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:59:01.000Z'}}, {'blockNum': '0x7f4d63', 'uniqueId': '0xa17122886556bfb483df717e31c790354ba9cfc2f5a9d6651c595304bffe2af2:log:32', 'hash': '0xa17122886556bfb483df717e31c790354ba9cfc2f5a9d6651c595304bffe2af2', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:11:40.000Z'}}, {'blockNum': '0x7f4d63', 'uniqueId': '0x414870a07816c5427d5b33563ebfc1bacf73af822fc394369eba14cc0b0b30e1:log:34', 'hash': '0x414870a07816c5427d5b33563ebfc1bacf73af822fc394369eba14cc0b0b30e1', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:11:40.000Z'}}, {'blockNum': '0x7f4d63', 'uniqueId': '0xac4b2f46620a12df30115d1184159a99d8ecfdf188649e9d527059705b73eb2a:log:36', 'hash': '0xac4b2f46620a12df30115d1184159a99d8ecfdf188649e9d527059705b73eb2a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:11:40.000Z'}}, {'blockNum': '0x7f4db9', 'uniqueId': '0x2da1c6aebf618dda603d498fd22773eae329990fc22a8177aced151798133a2f:log:71', 'hash': '0x2da1c6aebf618dda603d498fd22773eae329990fc22a8177aced151798133a2f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:31:04.000Z'}}, {'blockNum': '0x7f4dba', 'uniqueId': '0x0137bb39cbc86a7f1730d5b1d01906da8207cf239a9e99775bd44b26a8bd651a:log:128', 'hash': '0x0137bb39cbc86a7f1730d5b1d01906da8207cf239a9e99775bd44b26a8bd651a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:31:15.000Z'}}, {'blockNum': '0x7f4dd8', 'uniqueId': '0xf2f46df8a5338214f7c55528e6421d958773565c96966d97d7945c26e025e0d2:log:2', 'hash': '0xf2f46df8a5338214f7c55528e6421d958773565c96966d97d7945c26e025e0d2', 'from': '0x1b9e3ca833bccc64ad46e016c6c8aebf7e27259d', 'to': '0x9aa22e4ee96e16e598e430eb0c5fff699522e510', 'value': 1980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2e19b83c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:38:11.000Z'}}, {'blockNum': '0x7f4de9', 'uniqueId': '0x95a43ac7694195f0f0c1586b9663162600cd162cf7546b58d5fed0d0b564a041:log:51', 'hash': '0x95a43ac7694195f0f0c1586b9663162600cd162cf7546b58d5fed0d0b564a041', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:41:33.000Z'}}, {'blockNum': '0x7f4dfd', 'uniqueId': '0x80181dd3c529506cc84ef9d2224a15a1e4133b78796c803fd395fb0b9e01b9f4:log:4', 'hash': '0x80181dd3c529506cc84ef9d2224a15a1e4133b78796c803fd395fb0b9e01b9f4', 'from': '0x664603913b58345c8b8881fbb39ad7e518a406c9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 215.19153456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0502a43930', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:45:08.000Z'}}, {'blockNum': '0x7f4e91', 'uniqueId': '0xec79bd5702e2bcac2876a2bf7e750af10618ec33536570649413f19db91f5a95:log:52', 'hash': '0xec79bd5702e2bcac2876a2bf7e750af10618ec33536570649413f19db91f5a95', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:21:59.000Z'}}, {'blockNum': '0x7f4e9e', 'uniqueId': '0xf311617a196875b45a8d052fd01e0e117ad1d7f42ff3caae58b757d50b7a8482:log:111', 'hash': '0xf311617a196875b45a8d052fd01e0e117ad1d7f42ff3caae58b757d50b7a8482', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:23:12.000Z'}}, {'blockNum': '0x7f4eaf', 'uniqueId': '0x7cd4d676a8d462e2321074d5c80b5e5cd6f2db539f74e01b0fb53e27668c8159:log:30', 'hash': '0x7cd4d676a8d462e2321074d5c80b5e5cd6f2db539f74e01b0fb53e27668c8159', 'from': '0x1e1a70d484fd170de28ec146987b25d9d7752300', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01764c50', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:26:17.000Z'}}, {'blockNum': '0x7f4eb1', 'uniqueId': '0x74af1fa1fea77e97ceebf777247e57d28c34810f1a4ad766f307a54ff3384ce3:log:101', 'hash': '0x74af1fa1fea77e97ceebf777247e57d28c34810f1a4ad766f307a54ff3384ce3', 'from': '0x1e1a70d484fd170de28ec146987b25d9d7752300', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01764c50', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:26:56.000Z'}}, {'blockNum': '0x7f4eb3', 'uniqueId': '0x198cb7505b4bfb3f771e566d7a87b3bcee9543c035882dad12664846ace7bded:log:29', 'hash': '0x198cb7505b4bfb3f771e566d7a87b3bcee9543c035882dad12664846ace7bded', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:27:48.000Z'}}, {'blockNum': '0x7f4eb5', 'uniqueId': '0xada169b64bebae19cbfd2cb62cc6a7e9df34dacc21dd2c33f7bdcac18563e6e4:log:13', 'hash': '0xada169b64bebae19cbfd2cb62cc6a7e9df34dacc21dd2c33f7bdcac18563e6e4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:27:55.000Z'}}, {'blockNum': '0x7f4eb6', 'uniqueId': '0x05168123f7dc72ec45b3c7cddd699be9972c6d71c51fd17cd960d8f8596df25a:log:36', 'hash': '0x05168123f7dc72ec45b3c7cddd699be9972c6d71c51fd17cd960d8f8596df25a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:28:03.000Z'}}, {'blockNum': '0x7f4eba', 'uniqueId': '0xf159fa7abf05e468c911fe59f3e91f501643f24bc615b4cf0905ea4f5de0fb9b:log:70', 'hash': '0xf159fa7abf05e468c911fe59f3e91f501643f24bc615b4cf0905ea4f5de0fb9b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:28:34.000Z'}}, {'blockNum': '0x7f4ebb', 'uniqueId': '0xd9ab43b827202848f31c352b6008436322f9a4b374fdc0955b0a0233b8242ddf:log:79', 'hash': '0xd9ab43b827202848f31c352b6008436322f9a4b374fdc0955b0a0233b8242ddf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:28:54.000Z'}}, {'blockNum': '0x7f4ebb', 'uniqueId': '0xb2e18beba870efe93f157191d9136ea22ea3d54d0186cd1c7a8a575942fe83c0:log:81', 'hash': '0xb2e18beba870efe93f157191d9136ea22ea3d54d0186cd1c7a8a575942fe83c0', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:28:54.000Z'}}, {'blockNum': '0x7f4ebd', 'uniqueId': '0x6998eb9bcee93bfaf1240aab6bde3c16be55b33ee389772933a0d33551672f84:log:56', 'hash': '0x6998eb9bcee93bfaf1240aab6bde3c16be55b33ee389772933a0d33551672f84', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:06.000Z'}}, {'blockNum': '0x7f4ebf', 'uniqueId': '0x1715f58f4b59d76d355ec12c80943a976c31e535bf54f173c445a5b8ebb1390f:log:47', 'hash': '0x1715f58f4b59d76d355ec12c80943a976c31e535bf54f173c445a5b8ebb1390f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:24.000Z'}}, {'blockNum': '0x7f4ec0', 'uniqueId': '0x06ca4ee62a7f7d87cc2a67cdac1e07f7d954812c6831163f16739d9a377b8a62:log:153', 'hash': '0x06ca4ee62a7f7d87cc2a67cdac1e07f7d954812c6831163f16739d9a377b8a62', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:32.000Z'}}, {'blockNum': '0x7f4ec0', 'uniqueId': '0x9a60ffd87859c8d63d5d4d2c0232539f527f997f64219e7b493c55ac2a607d58:log:156', 'hash': '0x9a60ffd87859c8d63d5d4d2c0232539f527f997f64219e7b493c55ac2a607d58', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:32.000Z'}}, {'blockNum': '0x7f4ec0', 'uniqueId': '0x5c96e498184fa6f65adcb63dd4a6264daec4df4f8afbd08b4b3aee5bdc86f8ce:log:158', 'hash': '0x5c96e498184fa6f65adcb63dd4a6264daec4df4f8afbd08b4b3aee5bdc86f8ce', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:32.000Z'}}, {'blockNum': '0x7f4ec3', 'uniqueId': '0xe0b0879c269e6859eada3c791d18932ee77e91ed2f3e4ec76a7ca54ec2ac75e7:log:108', 'hash': '0xe0b0879c269e6859eada3c791d18932ee77e91ed2f3e4ec76a7ca54ec2ac75e7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:56.000Z'}}, {'blockNum': '0x7f4ec9', 'uniqueId': '0xf79702dc41f79ce234e3389ffbdf67fe88b27ce3dfa7803f87123704886c79a5:log:109', 'hash': '0xf79702dc41f79ce234e3389ffbdf67fe88b27ce3dfa7803f87123704886c79a5', 'from': '0x1e1a70d484fd170de28ec146987b25d9d7752300', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0176c180', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:30:32.000Z'}}, {'blockNum': '0x7f4eca', 'uniqueId': '0x0a58b8e214de84587865989513958671852f5e6ab275796e766030928904f2b2:log:55', 'hash': '0x0a58b8e214de84587865989513958671852f5e6ab275796e766030928904f2b2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:06.000Z'}}, {'blockNum': '0x7f4eca', 'uniqueId': '0x6edcabc4b22981f3cc1127e7612751d069926fd8fcd5ce4fa256e17c8b70d27e:log:57', 'hash': '0x6edcabc4b22981f3cc1127e7612751d069926fd8fcd5ce4fa256e17c8b70d27e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:06.000Z'}}, {'blockNum': '0x7f4ecb', 'uniqueId': '0x0079074fb53aa34e2fb3f66174e90a9312325eabfdb3ef3bddb39ad7a6092f9a:log:93', 'hash': '0x0079074fb53aa34e2fb3f66174e90a9312325eabfdb3ef3bddb39ad7a6092f9a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:18.000Z'}}, {'blockNum': '0x7f4ecc', 'uniqueId': '0x5067d5236d392f8aee2048b72bca0e4774e64625dd89bb7b4fbd805a28954c71:log:18', 'hash': '0x5067d5236d392f8aee2048b72bca0e4774e64625dd89bb7b4fbd805a28954c71', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:25.000Z'}}, {'blockNum': '0x7f4ece', 'uniqueId': '0x9bbb24b641547914f808c2ee0736c27aa7bf8a217b7e6043984fe88882124b4a:log:148', 'hash': '0x9bbb24b641547914f808c2ee0736c27aa7bf8a217b7e6043984fe88882124b4a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:56.000Z'}}, {'blockNum': '0x7f4f22', 'uniqueId': '0x99e3a6cc2673966b27bce2501c8c5632e8fa81b02013b53ee970085a3e2034ba:log:52', 'hash': '0x99e3a6cc2673966b27bce2501c8c5632e8fa81b02013b53ee970085a3e2034ba', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:49.000Z'}}, {'blockNum': '0x7f4f22', 'uniqueId': '0x05c58cb232d485ab2c9d9f56836aee46ff9cfd55765685fa70921d57fb4899d2:log:54', 'hash': '0x05c58cb232d485ab2c9d9f56836aee46ff9cfd55765685fa70921d57fb4899d2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:49.000Z'}}, {'blockNum': '0x7f4f22', 'uniqueId': '0x73cad86091e47b9d360cab56c78dfac2ffe23d4414c0be27fc1c2072f8981c7f:log:56', 'hash': '0x73cad86091e47b9d360cab56c78dfac2ffe23d4414c0be27fc1c2072f8981c7f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:49.000Z'}}, {'blockNum': '0x7f4f24', 'uniqueId': '0xeaaab10f73693b5490be2faab9b13dabe1ca913c3b7a9f3e7ef3d85ba76349bc:log:44', 'hash': '0xeaaab10f73693b5490be2faab9b13dabe1ca913c3b7a9f3e7ef3d85ba76349bc', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:56.000Z'}}, {'blockNum': '0x7f4f24', 'uniqueId': '0xd63c2d13f3c561f4a8364a0039a197d61c90a583e64a9e92076e00ccff399a43:log:46', 'hash': '0xd63c2d13f3c561f4a8364a0039a197d61c90a583e64a9e92076e00ccff399a43', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:56.000Z'}}, {'blockNum': '0x7f4f26', 'uniqueId': '0xc7db799357d8d20ec021a9dacc8b8a29884dd2a3c68a921cef09643dabe11b8e:log:113', 'hash': '0xc7db799357d8d20ec021a9dacc8b8a29884dd2a3c68a921cef09643dabe11b8e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:51:05.000Z'}}, {'blockNum': '0x7f4f38', 'uniqueId': '0x914df8ac4a3f9d6ed678cb362a0789e3ab26e020934f919cc1d8663b743dde71:log:49', 'hash': '0x914df8ac4a3f9d6ed678cb362a0789e3ab26e020934f919cc1d8663b743dde71', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:56:01.000Z'}}, {'blockNum': '0x7f4f49', 'uniqueId': '0xd777975ce63960151f9d8cdff8beb43079fd1d783914b619f2f6795f70e751ca:log:126', 'hash': '0xd777975ce63960151f9d8cdff8beb43079fd1d783914b619f2f6795f70e751ca', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:59:09.000Z'}}, {'blockNum': '0x7f4f4a', 'uniqueId': '0xd7255067c506b13d3e218c1ec28b3474b99d49e2d94b54981c63ed4d53d954e8:log:0', 'hash': '0xd7255067c506b13d3e218c1ec28b3474b99d49e2d94b54981c63ed4d53d954e8', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 49866.00463223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0489088c9b77', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:59:18.000Z'}}, {'blockNum': '0x7f4f5e', 'uniqueId': '0x16c7f1d00c8819ea54937def0bce7e58385246a23bc5328f58d59b126c863230:log:21', 'hash': '0x16c7f1d00c8819ea54937def0bce7e58385246a23bc5328f58d59b126c863230', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc9f42134fb5f8703177352093111372dfafcb550', 'value': 361.289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08697343a0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:02:56.000Z'}}, {'blockNum': '0x7f4f6b', 'uniqueId': '0xab4f4f68aef1afd6e0608f8a07c44915baf7a568d888df4f03b318511af95e41:log:154', 'hash': '0xab4f4f68aef1afd6e0608f8a07c44915baf7a568d888df4f03b318511af95e41', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:05:13.000Z'}}, {'blockNum': '0x7f4f7b', 'uniqueId': '0x3e6804df5c9f253891ba7bcd68368d7201225de376ed64382bcdc11fd2f035f1:log:151', 'hash': '0x3e6804df5c9f253891ba7bcd68368d7201225de376ed64382bcdc11fd2f035f1', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:09:08.000Z'}}, {'blockNum': '0x7f4f7d', 'uniqueId': '0x35e28ab54903bc6a00c821463b5e18c2675ea3764bad0499b569426a89555f03:log:118', 'hash': '0x35e28ab54903bc6a00c821463b5e18c2675ea3764bad0499b569426a89555f03', 'from': '0xc9f42134fb5f8703177352093111372dfafcb550', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 361.289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08697343a0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:10:12.000Z'}}, {'blockNum': '0x7f4f7e', 'uniqueId': '0x4ea0b8cc54c83abc18d2b30da0b6a2e62ad9e92edc276e3952f98a598406f4e8:log:82', 'hash': '0x4ea0b8cc54c83abc18d2b30da0b6a2e62ad9e92edc276e3952f98a598406f4e8', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:10:22.000Z'}}, {'blockNum': '0x7f4f7f', 'uniqueId': '0x4c58258b7291827ff9f741383e0e0c71b407fff5fd7f42a2f7d63905c26855c6:log:104', 'hash': '0x4c58258b7291827ff9f741383e0e0c71b407fff5fd7f42a2f7d63905c26855c6', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:10:28.000Z'}}, {'blockNum': '0x7f4f82', 'uniqueId': '0xa72047f81604c1806ad466213991691aded38387f06aa0e3dc3d45586e7e7df5:log:77', 'hash': '0xa72047f81604c1806ad466213991691aded38387f06aa0e3dc3d45586e7e7df5', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:10:55.000Z'}}, {'blockNum': '0x7f4f84', 'uniqueId': '0xeb2232eb63801818034344554f4eedbf459bc1e4531fb8cadc4d66b9d6d9dba3:log:76', 'hash': '0xeb2232eb63801818034344554f4eedbf459bc1e4531fb8cadc4d66b9d6d9dba3', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:11:00.000Z'}}, {'blockNum': '0x7f4f8a', 'uniqueId': '0x0e91493785e90dc5bd87a4a478b08759dabf7c3eaf6e9d83c39759129d84e2da:log:37', 'hash': '0x0e91493785e90dc5bd87a4a478b08759dabf7c3eaf6e9d83c39759129d84e2da', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:12:13.000Z'}}, {'blockNum': '0x7f4f8a', 'uniqueId': '0x93919d5c7d4f160adddffe9dba7d2301cf3de1117adcd28a533e983fc9538831:log:39', 'hash': '0x93919d5c7d4f160adddffe9dba7d2301cf3de1117adcd28a533e983fc9538831', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:12:13.000Z'}}, {'blockNum': '0x7f4f8c', 'uniqueId': '0xd3b06620ba98bde7cba7f4eb43edff1bc0b2959ac040ca851e4cc9c5c9ddca9d:log:14', 'hash': '0xd3b06620ba98bde7cba7f4eb43edff1bc0b2959ac040ca851e4cc9c5c9ddca9d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:12:21.000Z'}}, {'blockNum': '0x7f4f91', 'uniqueId': '0x7656eb48674b1640cb46f7893bec6f8fd48cc662e285ee2d54981c3a8c1a2796:log:50', 'hash': '0x7656eb48674b1640cb46f7893bec6f8fd48cc662e285ee2d54981c3a8c1a2796', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:13:10.000Z'}}, {'blockNum': '0x7f4f93', 'uniqueId': '0xdb5194b09fed146b41426c6252e1004cda03a4206e908694df15e119dfc4e457:log:32', 'hash': '0xdb5194b09fed146b41426c6252e1004cda03a4206e908694df15e119dfc4e457', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:13:19.000Z'}}, {'blockNum': '0x7f4f96', 'uniqueId': '0xea5d8e9901dd9001d19ca1eef5567448070dd05b82271980a95e76a3c8520571:log:29', 'hash': '0xea5d8e9901dd9001d19ca1eef5567448070dd05b82271980a95e76a3c8520571', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:14:05.000Z'}}, {'blockNum': '0x7f4f9b', 'uniqueId': '0xc7242f397f54a457a3e06b5e3fab87f1ff67bf8150da96eba7094b0bebdd93b9:log:14', 'hash': '0xc7242f397f54a457a3e06b5e3fab87f1ff67bf8150da96eba7094b0bebdd93b9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:15:17.000Z'}}, {'blockNum': '0x7f4fa6', 'uniqueId': '0x470d4a3fea4d2775bddad28a4b5479175ad2b6a8719f3d9f3ddb66640d7d791c:log:90', 'hash': '0x470d4a3fea4d2775bddad28a4b5479175ad2b6a8719f3d9f3ddb66640d7d791c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:18:27.000Z'}}, {'blockNum': '0x7f4fa6', 'uniqueId': '0x6910ddf60b036b11d862e2b1f01d06834a0e9789641c47e1610fd9162546e0a4:log:92', 'hash': '0x6910ddf60b036b11d862e2b1f01d06834a0e9789641c47e1610fd9162546e0a4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:18:27.000Z'}}, {'blockNum': '0x7f4fa7', 'uniqueId': '0xfd080a37ff1952b54f1a0f54f8a56bbdf04b371b42a4f9b4f602ee9f894b4dd4:log:51', 'hash': '0xfd080a37ff1952b54f1a0f54f8a56bbdf04b371b42a4f9b4f602ee9f894b4dd4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:18:46.000Z'}}, {'blockNum': '0x7f4fac', 'uniqueId': '0x5f4cd0c7034536762bc09c2c9d2573e114ac06de8876a73d7b93fd615b100ea6:log:68', 'hash': '0x5f4cd0c7034536762bc09c2c9d2573e114ac06de8876a73d7b93fd615b100ea6', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:19:40.000Z'}}, {'blockNum': '0x7f4fae', 'uniqueId': '0xd56a0e1575b4b110361075f38bc950c8c2206a56ba3107d6ff49451ca811cd71:log:99', 'hash': '0xd56a0e1575b4b110361075f38bc950c8c2206a56ba3107d6ff49451ca811cd71', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:20:02.000Z'}}, {'blockNum': '0x7f4fb5', 'uniqueId': '0x79bf384d1a271b2ddad2ac74c2c271c772dda10d88029960594c9e8d590e653e:log:115', 'hash': '0x79bf384d1a271b2ddad2ac74c2c271c772dda10d88029960594c9e8d590e653e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:21:13.000Z'}}, {'blockNum': '0x7f4fb7', 'uniqueId': '0x33ee12d6a49b9c95673b19b80d6ed569443db1a2bbf48402c62193c54eef7707:log:6', 'hash': '0x33ee12d6a49b9c95673b19b80d6ed569443db1a2bbf48402c62193c54eef7707', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:21:51.000Z'}}, {'blockNum': '0x7f4fc9', 'uniqueId': '0x8de00473399c7a7ecdb5a507d5cbf242009fb7e71b5410f1b64fe298794695d0:log:44', 'hash': '0x8de00473399c7a7ecdb5a507d5cbf242009fb7e71b5410f1b64fe298794695d0', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:27:31.000Z'}}, {'blockNum': '0x7f4fc9', 'uniqueId': '0x065a7eb3013d4fb59136e29ef904c18e5c0bfb553e405644d4441dfbf576df74:log:69', 'hash': '0x065a7eb3013d4fb59136e29ef904c18e5c0bfb553e405644d4441dfbf576df74', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:27:31.000Z'}}, {'blockNum': '0x7f4fd0', 'uniqueId': '0xf3649e6d488fd53a935d01724f2995981496ad5355753974175255dbb3e61c9f:log:33', 'hash': '0xf3649e6d488fd53a935d01724f2995981496ad5355753974175255dbb3e61c9f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:28:40.000Z'}}, {'blockNum': '0x7f4fdf', 'uniqueId': '0x845d968e0e80ca9eed3e27765379376371c7af05a60c9778bdaee2aa4d9792a0:log:77', 'hash': '0x845d968e0e80ca9eed3e27765379376371c7af05a60c9778bdaee2aa4d9792a0', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:31:37.000Z'}}, {'blockNum': '0x7f4fe2', 'uniqueId': '0xf911af1ec4322e1525127367c0b7506161dd9c12c8e2413fb9a8582bfa1cb218:log:56', 'hash': '0xf911af1ec4322e1525127367c0b7506161dd9c12c8e2413fb9a8582bfa1cb218', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:33:06.000Z'}}, {'blockNum': '0x7f4fe6', 'uniqueId': '0x3b5428cf1110a4d5a02a40e670b9a5a30f11f8ec0cad2b943515395dcb593254:log:22', 'hash': '0x3b5428cf1110a4d5a02a40e670b9a5a30f11f8ec0cad2b943515395dcb593254', 'from': '0xc0fe06bb9847c2d38245e875edf8500da4a2d0c4', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 12904.262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012c73652fc0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:33:52.000Z'}}, {'blockNum': '0x7f4fe9', 'uniqueId': '0x6b7b0ad60476ff5a3af5b8c7dc386c82e36963043f061960c5cba42db0444a1e:log:33', 'hash': '0x6b7b0ad60476ff5a3af5b8c7dc386c82e36963043f061960c5cba42db0444a1e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:35:20.000Z'}}, {'blockNum': '0x7f5007', 'uniqueId': '0xcb3ba730ab0aca0367f7e5471464a3ca175044b41ab923d8b6a0b3aa2a4fb197:log:88', 'hash': '0xcb3ba730ab0aca0367f7e5471464a3ca175044b41ab923d8b6a0b3aa2a4fb197', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:42:15.000Z'}}, {'blockNum': '0x7f5009', 'uniqueId': '0xabb4d4f2ee2513264ca64682d250a57ef48cb840c9f55ac37436b1ba88c65381:log:20', 'hash': '0xabb4d4f2ee2513264ca64682d250a57ef48cb840c9f55ac37436b1ba88c65381', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:42:40.000Z'}}, {'blockNum': '0x7f500d', 'uniqueId': '0xe5150f1cb5ea150e06e217290cc922af3f362b39feb57163e94504572b19a875:log:111', 'hash': '0xe5150f1cb5ea150e06e217290cc922af3f362b39feb57163e94504572b19a875', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:42:51.000Z'}}, {'blockNum': '0x7f5018', 'uniqueId': '0x71a9ca9d673210415da8b90a508d4b9025c75be3500f01524e6ebd523526d37a:log:143', 'hash': '0x71a9ca9d673210415da8b90a508d4b9025c75be3500f01524e6ebd523526d37a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:45:07.000Z'}}, {'blockNum': '0x7f5027', 'uniqueId': '0xe16400eb86ae692e8cbe1bb72181842187a780f66f062f449476739c6d7b7d69:log:48', 'hash': '0xe16400eb86ae692e8cbe1bb72181842187a780f66f062f449476739c6d7b7d69', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:47:20.000Z'}}, {'blockNum': '0x7f5028', 'uniqueId': '0x3c50efdf1f9830ac0a289b2061b3dc784910cdae64ab3c2f6e8276f394b2171a:log:35', 'hash': '0x3c50efdf1f9830ac0a289b2061b3dc784910cdae64ab3c2f6e8276f394b2171a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:47:31.000Z'}}, {'blockNum': '0x7f5038', 'uniqueId': '0xbbf6124d4e3a1d42a2f6bb3b34ee8b24c0d02bfeb88357969a8a2bc5c83ce5d2:log:25', 'hash': '0xbbf6124d4e3a1d42a2f6bb3b34ee8b24c0d02bfeb88357969a8a2bc5c83ce5d2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:50:46.000Z'}}, {'blockNum': '0x7f503a', 'uniqueId': '0x85965e3425f8c5da4735cbd8a4107fd7b7c74b91cd43346bc2e42894b6c7d53a:log:15', 'hash': '0x85965e3425f8c5da4735cbd8a4107fd7b7c74b91cd43346bc2e42894b6c7d53a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:51:08.000Z'}}, {'blockNum': '0x7f5059', 'uniqueId': '0xcac19566796d064aad442b2fa5f106e5a75fd46a7e4be937c9a58371440fdba1:log:65', 'hash': '0xcac19566796d064aad442b2fa5f106e5a75fd46a7e4be937c9a58371440fdba1', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:56:33.000Z'}}, {'blockNum': '0x7f505c', 'uniqueId': '0xa8e9390491a48e52f540a1bd47c15182fd8eb6244681fc3ec317e9ac8fd8f3c7:log:47', 'hash': '0xa8e9390491a48e52f540a1bd47c15182fd8eb6244681fc3ec317e9ac8fd8f3c7', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:56:51.000Z'}}, {'blockNum': '0x7f5084', 'uniqueId': '0x8adc879b8ce8617acc25092256dd89b5a4cb1c79dace11557e8d938202be65c1:log:103', 'hash': '0x8adc879b8ce8617acc25092256dd89b5a4cb1c79dace11557e8d938202be65c1', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:05:10.000Z'}}, {'blockNum': '0x7f5086', 'uniqueId': '0xb3b3291b9b37401a5829ebc4fa2fff1628da81890971f2f8e14c706dc067c852:log:4', 'hash': '0xb3b3291b9b37401a5829ebc4fa2fff1628da81890971f2f8e14c706dc067c852', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:05:41.000Z'}}, {'blockNum': '0x7f5087', 'uniqueId': '0xea0d7b4fec579bffb612e06724cd4d55b767822e972ff3b89912f3542cc057ae:log:95', 'hash': '0xea0d7b4fec579bffb612e06724cd4d55b767822e972ff3b89912f3542cc057ae', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:06:10.000Z'}}, {'blockNum': '0x7f5087', 'uniqueId': '0x69f59501c832265ce9de1cde8ea595da185dcfc6eea3dcc714033abb314e93c9:log:97', 'hash': '0x69f59501c832265ce9de1cde8ea595da185dcfc6eea3dcc714033abb314e93c9', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:06:10.000Z'}}, {'blockNum': '0x7f50a1', 'uniqueId': '0xb692f0bc398a17dfe67d3b42dd031221a36eef56b0d6842d2039e3c60e4c9af7:log:120', 'hash': '0xb692f0bc398a17dfe67d3b42dd031221a36eef56b0d6842d2039e3c60e4c9af7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:12:27.000Z'}}, {'blockNum': '0x7f50a3', 'uniqueId': '0xeaeca26b22a2d0a588459224d70ee94e784d470fc4d3ab8cf1c53c6f5ad05fc9:log:53', 'hash': '0xeaeca26b22a2d0a588459224d70ee94e784d470fc4d3ab8cf1c53c6f5ad05fc9', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:12:56.000Z'}}, {'blockNum': '0x7f50b3', 'uniqueId': '0x4fe4668d1763990f44ca3987b8137889ed30c548cefaee678f9b4f3ffa25fba8:log:61', 'hash': '0x4fe4668d1763990f44ca3987b8137889ed30c548cefaee678f9b4f3ffa25fba8', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:16:44.000Z'}}, {'blockNum': '0x7f50b5', 'uniqueId': '0x92fba44fe96ab99229f30aae40e006c99f2f65f830188c634a2323d7a0d9104d:log:22', 'hash': '0x92fba44fe96ab99229f30aae40e006c99f2f65f830188c634a2323d7a0d9104d', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:17:13.000Z'}}, {'blockNum': '0x7f50b7', 'uniqueId': '0xcf9ddb98473c363936ca0a370aafad3d9c59415be5b1bc7dcfb6a746fdbed036:log:64', 'hash': '0xcf9ddb98473c363936ca0a370aafad3d9c59415be5b1bc7dcfb6a746fdbed036', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:17:29.000Z'}}, {'blockNum': '0x7f50bc', 'uniqueId': '0xff8053d9e064f43e2049f07d6eecb2bfa9aafec157868cc4570446960175a283:log:79', 'hash': '0xff8053d9e064f43e2049f07d6eecb2bfa9aafec157868cc4570446960175a283', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:19:09.000Z'}}, {'blockNum': '0x7f50d2', 'uniqueId': '0xb0ddee92e5aadc75cd46d2a605d22d111bb93efc479cc425da2e1d1f799b7b42:log:13', 'hash': '0xb0ddee92e5aadc75cd46d2a605d22d111bb93efc479cc425da2e1d1f799b7b42', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:24:21.000Z'}}, {'blockNum': '0x7f50d9', 'uniqueId': '0xae32a9671209360dbe2aff47b51bfc7f9e127620b319aff529a542e06d25d4ba:log:58', 'hash': '0xae32a9671209360dbe2aff47b51bfc7f9e127620b319aff529a542e06d25d4ba', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:26:43.000Z'}}, {'blockNum': '0x7f50da', 'uniqueId': '0xaa272cb8e75d0285d4426ebb4a0b916c0861b9b3ea520de0e960c13530a31e44:log:53', 'hash': '0xaa272cb8e75d0285d4426ebb4a0b916c0861b9b3ea520de0e960c13530a31e44', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:26:47.000Z'}}, {'blockNum': '0x7f50da', 'uniqueId': '0xf5cd097d0855bfec9dd45796dc993694cbe6defcdf78d9f1f56632a2837a6642:log:55', 'hash': '0xf5cd097d0855bfec9dd45796dc993694cbe6defcdf78d9f1f56632a2837a6642', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:26:47.000Z'}}, {'blockNum': '0x7f50de', 'uniqueId': '0xf09047dedf31bc272d0c3474a49f2b417034ea8b7cf09c1d194f077c7eb8192f:log:30', 'hash': '0xf09047dedf31bc272d0c3474a49f2b417034ea8b7cf09c1d194f077c7eb8192f', 'from': '0xefe0874afb2455a68b4f234b81da94a738777807', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 11006.8096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x010045b29800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:27:24.000Z'}}, {'blockNum': '0x7f50e2', 'uniqueId': '0x83599f0fefeec5fd5e45a7d132c7e7f03a644841fa80717bd2385be50a40eab7:log:8', 'hash': '0x83599f0fefeec5fd5e45a7d132c7e7f03a644841fa80717bd2385be50a40eab7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:28:07.000Z'}}, {'blockNum': '0x7f50fc', 'uniqueId': '0x4dab517f7b5e69eb8d4a629c51e7adf863b2a5bcdbbd8400a19e9aa782bd580d:log:9', 'hash': '0x4dab517f7b5e69eb8d4a629c51e7adf863b2a5bcdbbd8400a19e9aa782bd580d', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:32:48.000Z'}}, {'blockNum': '0x7f50fd', 'uniqueId': '0x806c69dbebc1215dfc1dab3b45b0945d4fc8bf24a2caac9491e1cf69136d9baa:log:7', 'hash': '0x806c69dbebc1215dfc1dab3b45b0945d4fc8bf24a2caac9491e1cf69136d9baa', 'from': '0xcba419e954900a32b1a0f61d01a565c313924dae', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 10773.656486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xfad7ff2cd8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:32:50.000Z'}}, {'blockNum': '0x7f5100', 'uniqueId': '0x60e10baafc58f80685ba67da68fff608dcb2054da72abd03453264175b94b231:log:42', 'hash': '0x60e10baafc58f80685ba67da68fff608dcb2054da72abd03453264175b94b231', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:34:02.000Z'}}, {'blockNum': '0x7f510b', 'uniqueId': '0xf1db746b2b0bd19ad9ead01ce30d2c3ab59cbbc41bfde8b19da303a3b7323282:log:18', 'hash': '0xf1db746b2b0bd19ad9ead01ce30d2c3ab59cbbc41bfde8b19da303a3b7323282', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:36:26.000Z'}}, {'blockNum': '0x7f510d', 'uniqueId': '0x353e284cb26fb705faaeeeb4e0854c6d7fe508e31dff8de182c663fe55151163:log:96', 'hash': '0x353e284cb26fb705faaeeeb4e0854c6d7fe508e31dff8de182c663fe55151163', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:36:48.000Z'}}, {'blockNum': '0x7f5110', 'uniqueId': '0x6f9fbd129534c58d66d6cba01a5506a9799650396c6d1e318c47dd4154eca098:log:5', 'hash': '0x6f9fbd129534c58d66d6cba01a5506a9799650396c6d1e318c47dd4154eca098', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:39:06.000Z'}}, {'blockNum': '0x7f5111', 'uniqueId': '0xb6043cb8a3ebf1a5285cad4c5dc4449fd6bfb427f304fc97508eeaf1c7b0bd7c:log:61', 'hash': '0xb6043cb8a3ebf1a5285cad4c5dc4449fd6bfb427f304fc97508eeaf1c7b0bd7c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:39:17.000Z'}}, {'blockNum': '0x7f5146', 'uniqueId': '0x649f88b67a85622ab923f83d36d3ddbfdc4d70d444795595448da829021afe66:log:147', 'hash': '0x649f88b67a85622ab923f83d36d3ddbfdc4d70d444795595448da829021afe66', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:50:58.000Z'}}, {'blockNum': '0x7f5149', 'uniqueId': '0x08c938d8bdda38efc2361a49f934f0325df673dd7159fc83b13da3164e7ae489:log:7', 'hash': '0x08c938d8bdda38efc2361a49f934f0325df673dd7159fc83b13da3164e7ae489', 'from': '0x3347e9a544546d8234306d92ac6ac707780147b3', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:51:34.000Z'}}, {'blockNum': '0x7f5149', 'uniqueId': '0x61c858d00d2e1e7c3f79e7e763de9b91038f11cc525a6e258f06c1320ad18dce:log:12', 'hash': '0x61c858d00d2e1e7c3f79e7e763de9b91038f11cc525a6e258f06c1320ad18dce', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:51:34.000Z'}}, {'blockNum': '0x7f515b', 'uniqueId': '0x74239cda34140df3f6493e810c19349614d990620e21a884ebf6dbe88bbe5668:log:63', 'hash': '0x74239cda34140df3f6493e810c19349614d990620e21a884ebf6dbe88bbe5668', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:55:49.000Z'}}, {'blockNum': '0x7f516b', 'uniqueId': '0xcf92fcc362f5bee29fbbe5cb9de6be52a5d6954ea6474a17f0d9b9d1a37af460:log:63', 'hash': '0xcf92fcc362f5bee29fbbe5cb9de6be52a5d6954ea6474a17f0d9b9d1a37af460', 'from': '0xce39c69dbcc2d4425b8978d111b551b50da102eb', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 9938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xe763189200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:58:48.000Z'}}, {'blockNum': '0x7f518c', 'uniqueId': '0xb3a2e1a7f80842182adbb8e90246cc53cfc0e44061e457ff50391ceb89550d38:log:55', 'hash': '0xb3a2e1a7f80842182adbb8e90246cc53cfc0e44061e457ff50391ceb89550d38', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:07:45.000Z'}}, {'blockNum': '0x7f5190', 'uniqueId': '0x4eecf58b1c16b800c742e62a740db168339d23f1bc68841168f09815cc50ae60:log:69', 'hash': '0x4eecf58b1c16b800c742e62a740db168339d23f1bc68841168f09815cc50ae60', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:09:18.000Z'}}, {'blockNum': '0x7f5193', 'uniqueId': '0xc36617d5b941730595a1224aa647c36e36c583872c304b01853bc820948193ab:log:31', 'hash': '0xc36617d5b941730595a1224aa647c36e36c583872c304b01853bc820948193ab', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:09:29.000Z'}}, {'blockNum': '0x7f519e', 'uniqueId': '0x22b228061c6eedb37e8207547e2cbba6934c77ce40efd791f812e5abfb414bfb:log:16', 'hash': '0x22b228061c6eedb37e8207547e2cbba6934c77ce40efd791f812e5abfb414bfb', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:11:44.000Z'}}, {'blockNum': '0x7f519e', 'uniqueId': '0x5c4a62361c155ea24883d41d5bad0c6581f3e688546355a2faf8e3690939be78:log:18', 'hash': '0x5c4a62361c155ea24883d41d5bad0c6581f3e688546355a2faf8e3690939be78', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:11:44.000Z'}}, {'blockNum': '0x7f51a4', 'uniqueId': '0x7036c21dd081e5ed76a6243e8199cdf9c684f8812c5ae90eee7449543f0857ad:log:19', 'hash': '0x7036c21dd081e5ed76a6243e8199cdf9c684f8812c5ae90eee7449543f0857ad', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x194009c35583ed133832cedf0530d3e76761503e', 'value': 2881.1156034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x4314c98694', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:12:46.000Z'}}, {'blockNum': '0x7f51aa', 'uniqueId': '0x3c25f2a5645cca167fa5fe256d35c518780bc9620c6a7260a19d9de16e471d93:log:81', 'hash': '0x3c25f2a5645cca167fa5fe256d35c518780bc9620c6a7260a19d9de16e471d93', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:14:17.000Z'}}, {'blockNum': '0x7f51ac', 'uniqueId': '0xc9a04b3c0fcb81057199c70874e0277cf2aec800ec188a78652cd17049a6300b:log:90', 'hash': '0xc9a04b3c0fcb81057199c70874e0277cf2aec800ec188a78652cd17049a6300b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa7ce45ed85a73241eca6fb164a4c0ee21b1d86e4', 'value': 23184.19834821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x021bcc9737c5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:15:32.000Z'}}, {'blockNum': '0x7f51b3', 'uniqueId': '0x146041ea99f67fa443211cc8f6a5a0ff9067a62d03d778d27f7b83e2225c1b69:log:57', 'hash': '0x146041ea99f67fa443211cc8f6a5a0ff9067a62d03d778d27f7b83e2225c1b69', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:17:26.000Z'}}, {'blockNum': '0x7f51b3', 'uniqueId': '0xf3b5aead3be21801cc0c12093c7ebbd458b7692e4b6f25ea06ff6582ae6b15a9:log:59', 'hash': '0xf3b5aead3be21801cc0c12093c7ebbd458b7692e4b6f25ea06ff6582ae6b15a9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:17:26.000Z'}}, {'blockNum': '0x7f51c0', 'uniqueId': '0x1a3d6e2d4de929765f47771d207c6a39d1d83f2beeccd01b8b95a7d8668fcc05:log:54', 'hash': '0x1a3d6e2d4de929765f47771d207c6a39d1d83f2beeccd01b8b95a7d8668fcc05', 'from': '0xa7ce45ed85a73241eca6fb164a4c0ee21b1d86e4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23184.19834821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x021bcc9737c5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:19:56.000Z'}}, {'blockNum': '0x7f51ed', 'uniqueId': '0xd36247e6d8e823b092bda56c8cd6d96f0965437e37e36797b2726690547d7c6e:log:73', 'hash': '0xd36247e6d8e823b092bda56c8cd6d96f0965437e37e36797b2726690547d7c6e', 'from': '0x7c963d491bda44c8cff7b35d290e45bdaec57381', 'to': '0xa38c2f0288caedb41df338c3da800ee27a5c9bb1', 'value': 24860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0242d1259c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:31:31.000Z'}}, {'blockNum': '0x7f51ee', 'uniqueId': '0x98968a51392b4a5679cbbaad85c99659554d45f965a9de3a0509417368ba99db:log:45', 'hash': '0x98968a51392b4a5679cbbaad85c99659554d45f965a9de3a0509417368ba99db', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:31:55.000Z'}}, {'blockNum': '0x7f51f0', 'uniqueId': '0xc1a4066d76efd3563273fc0e72871cef72225383f235dff7054395b415032dc1:log:32', 'hash': '0xc1a4066d76efd3563273fc0e72871cef72225383f235dff7054395b415032dc1', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:32:50.000Z'}}, {'blockNum': '0x7f51f6', 'uniqueId': '0xe28dcd3865c6fe261e311a680d50758bd953fa3553512e1e807421442709b184:log:28', 'hash': '0xe28dcd3865c6fe261e311a680d50758bd953fa3553512e1e807421442709b184', 'from': '0xa38c2f0288caedb41df338c3da800ee27a5c9bb1', 'to': '0x75599ecce86f8d1d90102a72762e0d898d823e73', 'value': 24860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0242d1259c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:34:43.000Z'}}, {'blockNum': '0x7f51fa', 'uniqueId': '0xab97e0f5a70ffb79bd451a47f482a2fd5d3cee7aa2221a82b3f85f2288cc8ed2:log:90', 'hash': '0xab97e0f5a70ffb79bd451a47f482a2fd5d3cee7aa2221a82b3f85f2288cc8ed2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:35:20.000Z'}}, {'blockNum': '0x7f5200', 'uniqueId': '0x3a014ce55ea7e1744a4b8f47354d00b464ab3219b0a16bc5c10b62fe43c04e6f:log:25', 'hash': '0x3a014ce55ea7e1744a4b8f47354d00b464ab3219b0a16bc5c10b62fe43c04e6f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:35:51.000Z'}}, {'blockNum': '0x7f521a', 'uniqueId': '0x235b2d17a59654c0e950024cead685ffbba30c13397b4d1d08b8657290b9c6b7:log:27', 'hash': '0x235b2d17a59654c0e950024cead685ffbba30c13397b4d1d08b8657290b9c6b7', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:41:41.000Z'}}, {'blockNum': '0x7f521d', 'uniqueId': '0x2a8d2a59ceb31f56f4699794d5bb7d3ddb806ab88243a469b1b4c0d4e9e09e88:log:0', 'hash': '0x2a8d2a59ceb31f56f4699794d5bb7d3ddb806ab88243a469b1b4c0d4e9e09e88', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa7ce45ed85a73241eca6fb164a4c0ee21b1d86e4', 'value': 30330.30860162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02c22eba1d82', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:42:08.000Z'}}, {'blockNum': '0x7f522e', 'uniqueId': '0x66aa69498310920ef47b544fe4b677a85c1fac3f683865eb74a44d6687e3508f:log:130', 'hash': '0x66aa69498310920ef47b544fe4b677a85c1fac3f683865eb74a44d6687e3508f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:45:53.000Z'}}, {'blockNum': '0x7f522e', 'uniqueId': '0x57311a28be625ab03fbd1ecc797def318a9db56c9d7075a15b131ca1a5a45c62:log:154', 'hash': '0x57311a28be625ab03fbd1ecc797def318a9db56c9d7075a15b131ca1a5a45c62', 'from': '0x6d38eb10d3bd0702697776a10fc857dcbd2bb172', 'to': '0x35b2badca3efd25b36a8cd3cfc96a68838edd021', 'value': 10394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xf201115a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:45:53.000Z'}}, {'blockNum': '0x7f5236', 'uniqueId': '0x789eb5536adf65e9d4ceedb35544064d6abf86bd610188e270c630ccd34cd20e:log:0', 'hash': '0x789eb5536adf65e9d4ceedb35544064d6abf86bd610188e270c630ccd34cd20e', 'from': '0x35b2badca3efd25b36a8cd3cfc96a68838edd021', 'to': '0x2ad7cb7ce3b5cbaa02481e416d85f5954748d292', 'value': 10394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xf201115a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:46:20.000Z'}}, {'blockNum': '0x7f5245', 'uniqueId': '0x54a0adaa51384bf5fb193f56ca2a2c7e57bc2a5c89fe2f2474927e063a0f49be:log:64', 'hash': '0x54a0adaa51384bf5fb193f56ca2a2c7e57bc2a5c89fe2f2474927e063a0f49be', 'from': '0xa7ce45ed85a73241eca6fb164a4c0ee21b1d86e4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30330.30860162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02c22eba1d82', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:50:00.000Z'}}, {'blockNum': '0x7f524e', 'uniqueId': '0x7dd406cd202712f60aa0ec15cac0923d2aa94ba4a87704636c43e8d7736cadc8:log:0', 'hash': '0x7dd406cd202712f60aa0ec15cac0923d2aa94ba4a87704636c43e8d7736cadc8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x351385cfe21d200c389eb33e99a9c537c62e1bba', 'value': 745.28818706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x115a438612', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:52:04.000Z'}}, {'blockNum': '0x7f525b', 'uniqueId': '0x175d15242b1fd4aa4db6a1cc7d53530f49dceec5322c445c6d4cb98aecd02c32:log:0', 'hash': '0x175d15242b1fd4aa4db6a1cc7d53530f49dceec5322c445c6d4cb98aecd02c32', 'from': '0x351385cfe21d200c389eb33e99a9c537c62e1bba', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 745.28818706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x115a438612', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:54:33.000Z'}}, {'blockNum': '0x7f526c', 'uniqueId': '0xc0ebbe5ec9b134b415c2e092d5eeddf4c6bef8085a26297a4c4d597f8cc637ae:log:2', 'hash': '0xc0ebbe5ec9b134b415c2e092d5eeddf4c6bef8085a26297a4c4d597f8cc637ae', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3771bb5030f0386a0dd80d3f3019ecb00d8c947f', 'value': 2970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x4526945a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:58:05.000Z'}}, {'blockNum': '0x7f5276', 'uniqueId': '0x1ff6f4033e6743ec3bed1ffca7261cf9a5ae87dcc04d0fb999fe271e52a996c4:log:56', 'hash': '0x1ff6f4033e6743ec3bed1ffca7261cf9a5ae87dcc04d0fb999fe271e52a996c4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 34428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x032196defc00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:59:56.000Z'}}, {'blockNum': '0x7f5276', 'uniqueId': '0x1d59f7a526bb0e757bce63f03bfdd7372d361141d8d84a32bf4d7131b35e28d2:log:77', 'hash': '0x1d59f7a526bb0e757bce63f03bfdd7372d361141d8d84a32bf4d7131b35e28d2', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 3173.93281631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x49e61d225f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:59:56.000Z'}}, {'blockNum': '0x7f5276', 'uniqueId': '0xe62aa7d187f57da2b440d1848a775f115017b8e2cab94b04990cd28cc19842b7:log:126', 'hash': '0xe62aa7d187f57da2b440d1848a775f115017b8e2cab94b04990cd28cc19842b7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:59:56.000Z'}}, {'blockNum': '0x7f527d', 'uniqueId': '0x475ee4399041c33089ff34b96f1a5edfe6ab2d7554d31b6badb10540cffdb2fa:log:33', 'hash': '0x475ee4399041c33089ff34b96f1a5edfe6ab2d7554d31b6badb10540cffdb2fa', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x69064f400f992bf9056c3c483ae93ef714cb707a', 'value': 906.70917715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x151c686853', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:01:23.000Z'}}, {'blockNum': '0x7f5281', 'uniqueId': '0xefbd4914215017dc5e0231c9acb39a581456569e4dd65e662bdd397af44b8795:log:2', 'hash': '0xefbd4914215017dc5e0231c9acb39a581456569e4dd65e662bdd397af44b8795', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:01:43.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0x17bcc7caec2e5141bfce611d0a216e76d2cc32dc6887fe6dcf1a9f7fd1f3b138:log:1', 'hash': '0x17bcc7caec2e5141bfce611d0a216e76d2cc32dc6887fe6dcf1a9f7fd1f3b138', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 7544.11222445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xafa669b5ad', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0xb156f9e7e834a962e8c153011591a9e3bd9ccb21317ce290cfd6d4ceeeda0e33:log:2', 'hash': '0xb156f9e7e834a962e8c153011591a9e3bd9ccb21317ce290cfd6d4ceeeda0e33', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 220572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x140f97921c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0xddc8ab894ed3653568ad9f8898fe9ee97f09c0d30229fc97f9fdbd59edadc01a:log:3', 'hash': '0xddc8ab894ed3653568ad9f8898fe9ee97f09c0d30229fc97f9fdbd59edadc01a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 7541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xaf93dcd500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0xbbea8796a9ea614cfad7f34042116b6700880312faa214ad765072e2c3a13a40:log:4', 'hash': '0xbbea8796a9ea614cfad7f34042116b6700880312faa214ad765072e2c3a13a40', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 155695.96309408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0e291441dfa0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0xc20906600483d2da4b443000087ba366e7f218e84c9f2d5c8bcc7149321d2952:log:5', 'hash': '0xc20906600483d2da4b443000087ba366e7f218e84c9f2d5c8bcc7149321d2952', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 4137.37759336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x6054b13268', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0x2b03d3e568898666af72bb338bcb6ddc57110d892cf603f3fc50862450962486:log:6', 'hash': '0x2b03d3e568898666af72bb338bcb6ddc57110d892cf603f3fc50862450962486', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x32e28e146c62541e2830d3bed33946b37c2e57f0', 'value': 29009.31612648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a36cff8fe8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5285', 'uniqueId': '0x48bf55ac07b61d8ab73bc57be049d58419991bb731aa6e4b80632638c8890c0e:log:14', 'hash': '0x48bf55ac07b61d8ab73bc57be049d58419991bb731aa6e4b80632638c8890c0e', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'value': 6664.8854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x9b2dd00b60', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:30.000Z'}}, {'blockNum': '0x7f5288', 'uniqueId': '0x93d7fedb3c5b1d90b153f7197665030cd28cde7ecc4cedee26d7268fba96c6be:log:1', 'hash': '0x93d7fedb3c5b1d90b153f7197665030cd28cde7ecc4cedee26d7268fba96c6be', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:50.000Z'}}, {'blockNum': '0x7f5288', 'uniqueId': '0x1efaa607158667838bb7dec510022ca3ad385f42197a2a53169ee355c4c88d6c:log:2', 'hash': '0x1efaa607158667838bb7dec510022ca3ad385f42197a2a53169ee355c4c88d6c', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 19323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01c1e60e1b00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:50.000Z'}}, {'blockNum': '0x7f528e', 'uniqueId': '0x07941ec3c4ff779deaeaa9e1e256af1a5280b3f999b0d776ecf55b1a431ccd08:log:5', 'hash': '0x07941ec3c4ff779deaeaa9e1e256af1a5280b3f999b0d776ecf55b1a431ccd08', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3b8e9b2c23bad8e8be04e6122ad6da060a9768ec', 'value': 5066.18678391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x75f4d38c77', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:35.000Z'}}, {'blockNum': '0x7f528e', 'uniqueId': '0x882e754a3281dbeba4a4d264e4093a42a6caf39502115d931bb002530c76916e:log:6', 'hash': '0x882e754a3281dbeba4a4d264e4093a42a6caf39502115d931bb002530c76916e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'value': 5576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x81d38cc800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:35.000Z'}}, {'blockNum': '0x7f528e', 'uniqueId': '0x05a0e328c9e78af7df8a260485ee1c880d4de61d6ec7079801704fb615e2bce3:log:8', 'hash': '0x05a0e328c9e78af7df8a260485ee1c880d4de61d6ec7079801704fb615e2bce3', 'from': '0x69064f400f992bf9056c3c483ae93ef714cb707a', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 906.70917715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x151c686853', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:35.000Z'}}, {'blockNum': '0x7f528e', 'uniqueId': '0xcf562054a6e4c669ff3e769b625f2603958a4cbd0a80e7f7cfb1a2036a5e3b1c:log:12', 'hash': '0xcf562054a6e4c669ff3e769b625f2603958a4cbd0a80e7f7cfb1a2036a5e3b1c', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 296367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1af454f9cf00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:35.000Z'}}, {'blockNum': '0x7f528f', 'uniqueId': '0xdbd8a410ef2ea0a46e6557b33cef1391a8de8b6b8b98eae6353527682e162d1a:log:25', 'hash': '0xdbd8a410ef2ea0a46e6557b33cef1391a8de8b6b8b98eae6353527682e162d1a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:53.000Z'}}, {'blockNum': '0x7f5290', 'uniqueId': '0x2bbaa5596cf5079a29326cb069e46ddcec1bc14761ffb4fee5ce33de8a856ead:log:49', 'hash': '0x2bbaa5596cf5079a29326cb069e46ddcec1bc14761ffb4fee5ce33de8a856ead', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 20844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01e54febec00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:05:01.000Z'}}, {'blockNum': '0x7f5293', 'uniqueId': '0xdf0f1cc60cf7e4021e1d21399923ec593e2b0c433ed4b622865755af14398a2e:log:1', 'hash': '0xdf0f1cc60cf7e4021e1d21399923ec593e2b0c433ed4b622865755af14398a2e', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x499438353ac81376dd6f18711bd68acfa04e48e3', 'value': 556.4708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0cf4d30e40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:05:54.000Z'}}, {'blockNum': '0x7f5293', 'uniqueId': '0x3c61d5e0db513ba14c389313754f846de64784ce0c00007d462b916bf779f438:log:3', 'hash': '0x3c61d5e0db513ba14c389313754f846de64784ce0c00007d462b916bf779f438', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 5243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x7a12b71b00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:05:54.000Z'}}, {'blockNum': '0x7f5296', 'uniqueId': '0x506a26f8c9834d53f0c3d4ad2b00e4d7b002939e42e8a430469df489c10f755a:log:7', 'hash': '0x506a26f8c9834d53f0c3d4ad2b00e4d7b002939e42e8a430469df489c10f755a', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'value': 34.9191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xd0225170', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:06:06.000Z'}}, {'blockNum': '0x7f5296', 'uniqueId': '0x6983b26af86e67f34797db1fc5ee3c57f6021956cc06ad5122c8f921cc72696e:log:10', 'hash': '0x6983b26af86e67f34797db1fc5ee3c57f6021956cc06ad5122c8f921cc72696e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1c5ea3f17feefe0c2dc0c79aedf770c1151489f6', 'value': 29059.16796728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a496236f38', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:06:06.000Z'}}, {'blockNum': '0x7f529b', 'uniqueId': '0x808e7435a82de9ac7285261c6aebb1fcd22b0235dfd0452173a67cb6237d9163:log:2', 'hash': '0x808e7435a82de9ac7285261c6aebb1fcd22b0235dfd0452173a67cb6237d9163', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 31887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02e66d54af00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:07:32.000Z'}}, {'blockNum': '0x7f529c', 'uniqueId': '0xbc62ceacd339915e3c7ee5bafeb2884dca7a11e24b7fe1e2a3c11db5bb51fa53:log:2', 'hash': '0xbc62ceacd339915e3c7ee5bafeb2884dca7a11e24b7fe1e2a3c11db5bb51fa53', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:07:50.000Z'}}, {'blockNum': '0x7f529d', 'uniqueId': '0xa1e6f8c593566ed514092dd03736940130640e72149eb7cbe33a13a958209355:log:4', 'hash': '0xa1e6f8c593566ed514092dd03736940130640e72149eb7cbe33a13a958209355', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x80e4cb323f0cd414da028f586b92613b4caf7654', 'value': 10340, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xf0bf33e400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:07:57.000Z'}}, {'blockNum': '0x7f529f', 'uniqueId': '0x067836baa04a7a31a046fa3bd173c5433baf88437e7c9d3a88affac7156160a0:log:0', 'hash': '0x067836baa04a7a31a046fa3bd173c5433baf88437e7c9d3a88affac7156160a0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 123058.71, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0b312f11d1c0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:12.000Z'}}, {'blockNum': '0x7f529f', 'uniqueId': '0x7754a3eed0796aaf27c0b25455eeb4cca6842d40c4543f1563d3c336ee038157:log:1', 'hash': '0x7754a3eed0796aaf27c0b25455eeb4cca6842d40c4543f1563d3c336ee038157', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 29249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a901a02100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:12.000Z'}}, {'blockNum': '0x7f52a0', 'uniqueId': '0xf6bd368ce3235f4684f62de5a4b9f863c37eb23b4c4243a3f1dd2baf96259d0e:log:1', 'hash': '0xf6bd368ce3235f4684f62de5a4b9f863c37eb23b4c4243a3f1dd2baf96259d0e', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x523c00131ef14dfe144137088fca435cc38a697f', 'value': 6338.9971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x93975df630', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:18.000Z'}}, {'blockNum': '0x7f52a0', 'uniqueId': '0xfc4e4d4a7abeac62bdfafffd097e6cb1ebd12e58bb938555ddf59421340825e5:log:2', 'hash': '0xfc4e4d4a7abeac62bdfafffd097e6cb1ebd12e58bb938555ddf59421340825e5', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:18.000Z'}}, {'blockNum': '0x7f52a1', 'uniqueId': '0xa012f808271bbb00647aafef71b48fcbc097d5fdd7db26e933053debb4d90257:log:14', 'hash': '0xa012f808271bbb00647aafef71b48fcbc097d5fdd7db26e933053debb4d90257', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:43.000Z'}}, {'blockNum': '0x7f52a4', 'uniqueId': '0x177c098c73f4c72cff7b72e96bbe8fb2f690adf0ab6c0cd48d6e763b361019db:log:0', 'hash': '0x177c098c73f4c72cff7b72e96bbe8fb2f690adf0ab6c0cd48d6e763b361019db', 'from': '0x41694ef21fd72e8e375b350e4c261c9edb5f6b52', 'to': '0x07dce128690c49f41b17ebb57dd467c1f960348d', 'value': 43357.981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f181b4a020', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:09:01.000Z'}}, {'blockNum': '0x7f52a4', 'uniqueId': '0x2a0607efe9ed240ad2bc485e25db84f4220978b216b73a9d8d1ae15437e92453:log:2', 'hash': '0x2a0607efe9ed240ad2bc485e25db84f4220978b216b73a9d8d1ae15437e92453', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:09:01.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xd8eb876e2edcdd0511910e2cec3da4a5caa3fe71e619bb5faf269336cf5cdecb:log:53', 'hash': '0xd8eb876e2edcdd0511910e2cec3da4a5caa3fe71e619bb5faf269336cf5cdecb', 'from': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x81d38cc800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x986117daa1a424ddfcfda162c529fbe09b129d0fe6e9b98c9fd3ec704568942e:log:54', 'hash': '0x986117daa1a424ddfcfda162c529fbe09b129d0fe6e9b98c9fd3ec704568942e', 'from': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4137.37759336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x6054b13268', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x99f07e815d4ffbea25b8ef04f3c8c6725f2440840dadc8f9f1f8b8d972e3873e:log:55', 'hash': '0x99f07e815d4ffbea25b8ef04f3c8c6725f2440840dadc8f9f1f8b8d972e3873e', 'from': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11803.4948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0112d24fbc40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x5e14627a75dca3080d1b0f951d12c0b06892556d0bd54924ee34f0d8d3eff06f:log:56', 'hash': '0x5e14627a75dca3080d1b0f951d12c0b06892556d0bd54924ee34f0d8d3eff06f', 'from': '0x1c5ea3f17feefe0c2dc0c79aedf770c1151489f6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29059.16796728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a496236f38', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xcddc5e86d95b710c681881d1e4ff9ce71a64d30b6714f6e786816e47fb6f0ccd:log:57', 'hash': '0xcddc5e86d95b710c681881d1e4ff9ce71a64d30b6714f6e786816e47fb6f0ccd', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 220572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x140f97921c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xf8c410780a549475b0d6741083ced3eea3d2fdd7c6a6f3b940997152fff448da:log:59', 'hash': '0xf8c410780a549475b0d6741083ced3eea3d2fdd7c6a6f3b940997152fff448da', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 66315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x06080433ab00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xba411a8860613ac93926990d73b4ff390cba8cd5424efb20ba6d74b229195d17:log:60', 'hash': '0xba411a8860613ac93926990d73b4ff390cba8cd5424efb20ba6d74b229195d17', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 296367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1af454f9cf00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x19cf7bc0ce51836b16e3b89d4277ea6819fe9dbc9400c8f1dd382defb534e286:log:61', 'hash': '0x19cf7bc0ce51836b16e3b89d4277ea6819fe9dbc9400c8f1dd382defb534e286', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01e54febec00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xa1f15dd4e6d4bda323d424a378e138c264e725f443dddbb742992cca0326e253:log:68', 'hash': '0xa1f15dd4e6d4bda323d424a378e138c264e725f443dddbb742992cca0326e253', 'from': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34.9191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xd0225170', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x0d7959d96625e47b455c92d285ca3ba18cb053b0a43bb6e3f6284df9fc1c12bf:log:69', 'hash': '0x0d7959d96625e47b455c92d285ca3ba18cb053b0a43bb6e3f6284df9fc1c12bf', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 166414.00813484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0f22a0c8b7ac', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x8b009fdbfe0c5e4ad15f109838fe2c34cb717e4b81cfcd02fdba18b7c6c581ca:log:70', 'hash': '0x8b009fdbfe0c5e4ad15f109838fe2c34cb717e4b81cfcd02fdba18b7c6c581ca', 'from': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xd18c2e2800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x8adb11621ca46242fdb2b203b8394be414d56635c723d409f4bcb9267d441bdf:log:71', 'hash': '0x8adb11621ca46242fdb2b203b8394be414d56635c723d409f4bcb9267d441bdf', 'from': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x7a12b71b00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a9', 'uniqueId': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5:log:110', 'hash': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5', 'from': '0x1c6c712b1f4a7c263b1dbd8f97fb447c945d3b9a', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 191.91934267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0477edad3b', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:33.000Z'}}, {'blockNum': '0x7f52a9', 'uniqueId': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5:log:112', 'hash': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 191.91929686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0477ed9b56', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:33.000Z'}}, {'blockNum': '0x7f52a9', 'uniqueId': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5:log:113', 'hash': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 191.91929686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0477ed9b56', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:33.000Z'}}, {'blockNum': '0x7f52ab', 'uniqueId': '0xcfdcd738dbad21d8ce8485dabe2f52c896bb9956dfd4191fcd02c9abfc0cc9e1:log:65', 'hash': '0xcfdcd738dbad21d8ce8485dabe2f52c896bb9956dfd4191fcd02c9abfc0cc9e1', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:39.000Z'}}, {'blockNum': '0x7f52ab', 'uniqueId': '0x6a752f40f99e0c97687406e72670c0e911335fedb637fb0710f1f1a7ca0ed715:log:69', 'hash': '0x6a752f40f99e0c97687406e72670c0e911335fedb637fb0710f1f1a7ca0ed715', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:39.000Z'}}, {'blockNum': '0x7f52ad', 'uniqueId': '0xde533293232af65bacd3e555ec0e06b8d579d3c47b37260f3f8dbb574e25af92:log:3', 'hash': '0xde533293232af65bacd3e555ec0e06b8d579d3c47b37260f3f8dbb574e25af92', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:08.000Z'}}, {'blockNum': '0x7f52ad', 'uniqueId': '0x5aefeaf09e2faf180e9351d541515146bc41bcc2db89a1a9f493e0e3cac178f3:log:33', 'hash': '0x5aefeaf09e2faf180e9351d541515146bc41bcc2db89a1a9f493e0e3cac178f3', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:08.000Z'}}, {'blockNum': '0x7f52af', 'uniqueId': '0x5f69dc86ca26d92402802b3510602690b70ddd0565c58f980d6863d1e494e955:log:0', 'hash': '0x5f69dc86ca26d92402802b3510602690b70ddd0565c58f980d6863d1e494e955', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 4820.048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x7039b99200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:40.000Z'}}, {'blockNum': '0x7f52af', 'uniqueId': '0xcda44f009ccbb9a908067a176f782464670869da5887ea3169b224af2f3ec0b0:log:11', 'hash': '0xcda44f009ccbb9a908067a176f782464670869da5887ea3169b224af2f3ec0b0', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:40.000Z'}}, {'blockNum': '0x7f52af', 'uniqueId': '0x435e7062fa62ce31f3c48ed94884935fb0bfd533f761d289b09c981271ac411d:log:13', 'hash': '0x435e7062fa62ce31f3c48ed94884935fb0bfd533f761d289b09c981271ac411d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:40.000Z'}}, {'blockNum': '0x7f52b2', 'uniqueId': '0x85592bcdd762f0dfa580bbb3af8d1dc92411f7f949fcb15aa075902ad8859e79:log:0', 'hash': '0x85592bcdd762f0dfa580bbb3af8d1dc92411f7f949fcb15aa075902ad8859e79', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 7549.9191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xafc9064c70', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:58.000Z'}}, {'blockNum': '0x7f52b3', 'uniqueId': '0xc7dafd797830bc50fa76657ac6f654edc8fb30f27eb753a0cad1878231ea7d33:log:31', 'hash': '0xc7dafd797830bc50fa76657ac6f654edc8fb30f27eb753a0cad1878231ea7d33', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:12:04.000Z'}}, {'blockNum': '0x7f52b4', 'uniqueId': '0x3008c17fd47499ecd583fe52bf287cd24a75ee097eeb3e13046d2ffc00b23514:log:4', 'hash': '0x3008c17fd47499ecd583fe52bf287cd24a75ee097eeb3e13046d2ffc00b23514', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'value': 200194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x12352139c200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:12:19.000Z'}}, {'blockNum': '0x7f52b5', 'uniqueId': '0x96a85a5702b1ba750dc83238d293e6283a46c23639405ac2245553de434a5b5c:log:36', 'hash': '0x96a85a5702b1ba750dc83238d293e6283a46c23639405ac2245553de434a5b5c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:12:27.000Z'}}, {'blockNum': '0x7f52b9', 'uniqueId': '0x8528adc4529fc19d076c97c21a5cd127e830dace2f510e2343335931fa2c42c0:log:84', 'hash': '0x8528adc4529fc19d076c97c21a5cd127e830dace2f510e2343335931fa2c42c0', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:13:37.000Z'}}, {'blockNum': '0x7f52b9', 'uniqueId': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783:log:88', 'hash': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783', 'from': '0x1c6c712b1f4a7c263b1dbd8f97fb447c945d3b9a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 228.98258421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0554d7b1f5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:13:37.000Z'}}, {'blockNum': '0x7f52b9', 'uniqueId': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783:log:90', 'hash': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 228.98258421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0554d7b1f5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:13:37.000Z'}}, {'blockNum': '0x7f52b9', 'uniqueId': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783:log:91', 'hash': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 228.98258421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0554d7b1f5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:13:37.000Z'}}, {'blockNum': '0x7f52bb', 'uniqueId': '0xa02334398d2d6433d71e72d92d45239f93d74137eb7f4d2d8d2d464e44b065b6:log:1', 'hash': '0xa02334398d2d6433d71e72d92d45239f93d74137eb7f4d2d8d2d464e44b065b6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd2cc61d000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:14:23.000Z'}}, {'blockNum': '0x7f52bb', 'uniqueId': '0xd10ff1baba4da6f1b1928e4f292b528364c6583d1cf6dd471c5d2c29b99aac3a:log:2', 'hash': '0xd10ff1baba4da6f1b1928e4f292b528364c6583d1cf6dd471c5d2c29b99aac3a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 42319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03d950e56f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:14:23.000Z'}}, {'blockNum': '0x7f52bd', 'uniqueId': '0xaf12133493ea8247d2472db07ac62d148b2b720552e903ecc8c667efc2827139:log:116', 'hash': '0xaf12133493ea8247d2472db07ac62d148b2b720552e903ecc8c667efc2827139', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 64921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05e78f507900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:14:38.000Z'}}, {'blockNum': '0x7f52c1', 'uniqueId': '0x6663812eb4fb5453b1438b7a15c176401dd8897fe76f654250a0c2baf1fe8dcb:log:0', 'hash': '0x6663812eb4fb5453b1438b7a15c176401dd8897fe76f654250a0c2baf1fe8dcb', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 173778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0fce15989200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:15:42.000Z'}}, {'blockNum': '0x7f52c1', 'uniqueId': '0x83f52332443f9f6040fac8e407a1b9218b94b681cfebaa63a499287a5e92415d:log:3', 'hash': '0x83f52332443f9f6040fac8e407a1b9218b94b681cfebaa63a499287a5e92415d', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 27141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0277ecf76500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:15:42.000Z'}}, {'blockNum': '0x7f52c3', 'uniqueId': '0x2b88c9a8a75c90b9d57570804398d497600094cf7ee00a4544820dff9866ad4f:log:2', 'hash': '0x2b88c9a8a75c90b9d57570804398d497600094cf7ee00a4544820dff9866ad4f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 152799.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0de5a19b9580', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:16:15.000Z'}}, {'blockNum': '0x7f52c7', 'uniqueId': '0x80c22701d3ee4d46cff26b945b8b77d31df2831cf990b5adec6d747f04f4c6c7:log:11', 'hash': '0x80c22701d3ee4d46cff26b945b8b77d31df2831cf990b5adec6d747f04f4c6c7', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:17:31.000Z'}}, {'blockNum': '0x7f52c8', 'uniqueId': '0x24f69cd5c09e6396434fbbf3751248c5107983c9b8ec0af4646c894434b3c77e:log:32', 'hash': '0x24f69cd5c09e6396434fbbf3751248c5107983c9b8ec0af4646c894434b3c77e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 16098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0176cf8ea200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:18:03.000Z'}}, {'blockNum': '0x7f52ca', 'uniqueId': '0xe04260cfc9d76761083ba906bbe8a1361cb732035e94cf8400da91f8ab0fcc08:log:50', 'hash': '0xe04260cfc9d76761083ba906bbe8a1361cb732035e94cf8400da91f8ab0fcc08', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:18:42.000Z'}}, {'blockNum': '0x7f52cf', 'uniqueId': '0x316a6755b38ddee3c3236672d9ed91b95a4e00ba3abd6f545fe7da6e48c783b8:log:10', 'hash': '0x316a6755b38ddee3c3236672d9ed91b95a4e00ba3abd6f545fe7da6e48c783b8', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:06.000Z'}}, {'blockNum': '0x7f52d1', 'uniqueId': '0x591a41deb96a63e8d5d7e9e207fa8bf6aab849f39f3dcbbe37444223ae3a6326:log:44', 'hash': '0x591a41deb96a63e8d5d7e9e207fa8bf6aab849f39f3dcbbe37444223ae3a6326', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:17.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x4cfe7458c74b55438d880fd846d7ae1878da6d43f1a12ab812f343b0576f2378:log:50', 'hash': '0x4cfe7458c74b55438d880fd846d7ae1878da6d43f1a12ab812f343b0576f2378', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03d950e56f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x0e93a06178c34ec6da79aad55d42b597a8e4cf72e0975e003797cbf8f1d7be3b:log:51', 'hash': '0x0e93a06178c34ec6da79aad55d42b597a8e4cf72e0975e003797cbf8f1d7be3b', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0277ecf76500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x5598e0bb3fb7f2fda623b22e1007aaf25e3af1bf54518d109f12299d46c7e021:log:52', 'hash': '0x5598e0bb3fb7f2fda623b22e1007aaf25e3af1bf54518d109f12299d46c7e021', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a901a02100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x4d5a00d15a7c534be4f461583b7aebd24d2e4c350302c5be5aeb57804d4b5fa9:log:53', 'hash': '0x4d5a00d15a7c534be4f461583b7aebd24d2e4c350302c5be5aeb57804d4b5fa9', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd2cc61d000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xa88a2d82cdaa41aa0742be9dc055cc36e23d60b7985a624535e8f434f7b2f093:log:54', 'hash': '0xa88a2d82cdaa41aa0742be9dc055cc36e23d60b7985a624535e8f434f7b2f093', 'from': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xfdc7d4d49299c5b7df71a91dd8f6b017f8f60d3d742a088be63009fda74f94bd:log:55', 'hash': '0xfdc7d4d49299c5b7df71a91dd8f6b017f8f60d3d742a088be63009fda74f94bd', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 64921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05e78f507900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xfb854abb047d2925854c635acd7ceeae4b837e0ce03bc529412b1b2ca08c7139:log:56', 'hash': '0xfb854abb047d2925854c635acd7ceeae4b837e0ce03bc529412b1b2ca08c7139', 'from': '0x07dce128690c49f41b17ebb57dd467c1f960348d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 43357.981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f181b4a020', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xca707f383a7c149ed50054de77cffbbc0c828e1c0d6a9e6f5f42b14ab19bd0e7:log:57', 'hash': '0xca707f383a7c149ed50054de77cffbbc0c828e1c0d6a9e6f5f42b14ab19bd0e7', 'from': '0x523c00131ef14dfe144137088fca435cc38a697f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6338.9971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x93975df630', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x19f723a79b049fe3b6b5930f88ee5d41e722ca2f81794af396464b198c2faeff:log:58', 'hash': '0x19f723a79b049fe3b6b5930f88ee5d41e722ca2f81794af396464b198c2faeff', 'from': '0x80e4cb323f0cd414da028f586b92613b4caf7654', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10340, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xf0bf33e400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x156f2489c0821e3bcab2db19b476c94fc809f1bc257055f4744188af23b8d53c:log:59', 'hash': '0x156f2489c0821e3bcab2db19b476c94fc809f1bc257055f4744188af23b8d53c', 'from': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 275857.81, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1916d0ad6740', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x827160317e1cbf788f90b7517ce3544e7e51b2b37d766e9ab054cd6af593bd2a:log:60', 'hash': '0x827160317e1cbf788f90b7517ce3544e7e51b2b37d766e9ab054cd6af593bd2a', 'from': '0x32e28e146c62541e2830d3bed33946b37c2e57f0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29009.31612648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a36cff8fe8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xc914c610b5cd3dceaebc563f6ca7f4e3db9172598a49b134b95282e1cab76a87:log:61', 'hash': '0xc914c610b5cd3dceaebc563f6ca7f4e3db9172598a49b134b95282e1cab76a87', 'from': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12369.9671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012002bfde70', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x796c84e5d869917fd9671c444b4db403a10b97297674edf662454d7e87341b9b:log:62', 'hash': '0x796c84e5d869917fd9671c444b4db403a10b97297674edf662454d7e87341b9b', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xaf93dcd500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d8', 'uniqueId': '0xa51a5fe92610ef49b26021d39ab412ff32befbc27e94849093d836e87748f269:log:12', 'hash': '0xa51a5fe92610ef49b26021d39ab412ff32befbc27e94849093d836e87748f269', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:20:13.000Z'}}, {'blockNum': '0x7f52d8', 'uniqueId': '0x07f07aff52976e22dee765680977e57ab2bcd70ff405b03dcd5a16a9365caabb:log:13', 'hash': '0x07f07aff52976e22dee765680977e57ab2bcd70ff405b03dcd5a16a9365caabb', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 93987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088c4e2cc300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:20:13.000Z'}}, {'blockNum': '0x7f52d8', 'uniqueId': '0x1b7d6cbd0dfac0967eb141d53c68e52db22463b925de719bd8f0fa38fdb4e61f:log:27', 'hash': '0x1b7d6cbd0dfac0967eb141d53c68e52db22463b925de719bd8f0fa38fdb4e61f', 'from': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 200194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x12352139c200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:20:13.000Z'}}, {'blockNum': '0x7f52d8', 'uniqueId': '0x27b640604868ee8f58a0b26b91428e4a33609f18e37f839c53ada68d675df745:log:72', 'hash': '0x27b640604868ee8f58a0b26b91428e4a33609f18e37f839c53ada68d675df745', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:20:13.000Z'}}, {'blockNum': '0x7f52da', 'uniqueId': '0x2b3493300ee90b273522cd3fa0d62dd562f8eab1191954906a4cff8ec872c643:log:82', 'hash': '0x2b3493300ee90b273522cd3fa0d62dd562f8eab1191954906a4cff8ec872c643', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:22:06.000Z'}}, {'blockNum': '0x7f52da', 'uniqueId': '0x78335b931d286fa6b026131a6b4f318fd8c191b67a4c4b32ef1fbbe91d0b1369:log:87', 'hash': '0x78335b931d286fa6b026131a6b4f318fd8c191b67a4c4b32ef1fbbe91d0b1369', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:22:06.000Z'}}, {'blockNum': '0x7f52dd', 'uniqueId': '0x0641ba47bcfc31f5ac6a8af58b9c0b2e1f71cb972f0375dbaeb332d9ab834f30:log:1', 'hash': '0x0641ba47bcfc31f5ac6a8af58b9c0b2e1f71cb972f0375dbaeb332d9ab834f30', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:22:45.000Z'}}, {'blockNum': '0x7f52e1', 'uniqueId': '0x7d96f23fe722c2ce4968b103ef70845e0c5f0853beae6709602c8a8160674205:log:0', 'hash': '0x7d96f23fe722c2ce4968b103ef70845e0c5f0853beae6709602c8a8160674205', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 30741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02cbbea37500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:23:09.000Z'}}, {'blockNum': '0x7f52e5', 'uniqueId': '0xb5c20b650a3cb6287b62a4e3c977d02f13e728f63152292510d2478a417c9cf5:log:14', 'hash': '0xb5c20b650a3cb6287b62a4e3c977d02f13e728f63152292510d2478a417c9cf5', 'from': '0xac26adcff2c83f7757b7894075516f2aac8a7482', 'to': '0xca11c331ab6433415ff04b0b3679fdb99368e93a', 'value': 3992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x5cf22c9800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:23:33.000Z'}}, {'blockNum': '0x7f52fc', 'uniqueId': '0x22beae1be7cfafaeabadade3d89e4597dbfc73f3bdccc23e1c3c8554f84efd69:log:59', 'hash': '0x22beae1be7cfafaeabadade3d89e4597dbfc73f3bdccc23e1c3c8554f84efd69', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:27:40.000Z'}}, {'blockNum': '0x7f52fe', 'uniqueId': '0x7390d1124214eeb041db122e39a6f9e489f009c121dae1b6bf6e618dfc30b5a9:log:20', 'hash': '0x7390d1124214eeb041db122e39a6f9e489f009c121dae1b6bf6e618dfc30b5a9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:28:11.000Z'}}, {'blockNum': '0x7f5305', 'uniqueId': '0x0888ec08d6f2407f78ef8559737ece9e3239da70d9fb6598496218ffb5afcd4e:log:54', 'hash': '0x0888ec08d6f2407f78ef8559737ece9e3239da70d9fb6598496218ffb5afcd4e', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 93987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088c4e2cc300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:30:05.000Z'}}, {'blockNum': '0x7f5305', 'uniqueId': '0x148b8e81f7f6666ff08a2d7a61d0e587e75d6e3546164df86e584e624335adaf:log:55', 'hash': '0x148b8e81f7f6666ff08a2d7a61d0e587e75d6e3546164df86e584e624335adaf', 'from': '0xca11c331ab6433415ff04b0b3679fdb99368e93a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x5cf22c9800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:30:05.000Z'}}, {'blockNum': '0x7f5305', 'uniqueId': '0xcc1be55c541a46adcc6bffdbb576c3718587fe35f1b1436715238369404015af:log:59', 'hash': '0xcc1be55c541a46adcc6bffdbb576c3718587fe35f1b1436715238369404015af', 'from': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:30:05.000Z'}}, {'blockNum': '0x7f5305', 'uniqueId': '0x1355b59fde2ab908f7398ca4d0f1595dc0963ac87d9549c64dccaba23b9060bb:log:66', 'hash': '0x1355b59fde2ab908f7398ca4d0f1595dc0963ac87d9549c64dccaba23b9060bb', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 30741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02cbbea37500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:30:05.000Z'}}, {'blockNum': '0x7f5307', 'uniqueId': '0xcd854486b15ce48bcbe1fc552c1c19a003dfcc6886e782669d9488a63e31bb44:log:21', 'hash': '0xcd854486b15ce48bcbe1fc552c1c19a003dfcc6886e782669d9488a63e31bb44', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 173778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0fce15989200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:31:04.000Z'}}, {'blockNum': '0x7f5313', 'uniqueId': '0x11bba07fb6c39177ffa735f58201827a979a58bf7e0a3140d820bcaad7ad13ce:log:1', 'hash': '0x11bba07fb6c39177ffa735f58201827a979a58bf7e0a3140d820bcaad7ad13ce', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 595.98815176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0de05dbfc8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:33:15.000Z'}}, {'blockNum': '0x7f5319', 'uniqueId': '0xa9301a64026b9859f803b72aecb8c4f388442e82e93d757af71bb40a80c5df55:log:2', 'hash': '0xa9301a64026b9859f803b72aecb8c4f388442e82e93d757af71bb40a80c5df55', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 99986.7999806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0917ffc4fe6c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:35:09.000Z'}}, {'blockNum': '0x7f531f', 'uniqueId': '0x9b1e26c351e7807c6c15d3d8bd671f0f38c0d9f25c9827d27a44fbd3b38dcd7b:log:0', 'hash': '0x9b1e26c351e7807c6c15d3d8bd671f0f38c0d9f25c9827d27a44fbd3b38dcd7b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 135704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c579adf1800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:35:39.000Z'}}, {'blockNum': '0x7f5325', 'uniqueId': '0xce9024ae7739e1e4b96cab2e7069fb384284114a5615fc4cdd0f8111f8701213:log:2', 'hash': '0xce9024ae7739e1e4b96cab2e7069fb384284114a5615fc4cdd0f8111f8701213', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3f374e03e92865a6226a2613f85a12a4703634e6', 'value': 43532.15050222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f58fd631ee', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:36:31.000Z'}}, {'blockNum': '0x7f5327', 'uniqueId': '0xe6b41aefaa17fba10abc03b67bb13e0d3752b731d0d91ec33337c31e958b8963:log:14', 'hash': '0xe6b41aefaa17fba10abc03b67bb13e0d3752b731d0d91ec33337c31e958b8963', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:36:47.000Z'}}, {'blockNum': '0x7f532a', 'uniqueId': '0x8833874f93dbdafdf34237f5a17e406e7ce701da873e943e70c9bb41ba1fc1b4:log:102', 'hash': '0x8833874f93dbdafdf34237f5a17e406e7ce701da873e943e70c9bb41ba1fc1b4', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x88cf30e78492f3f3b340447a1889db971dabce25', 'value': 595.98815176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0de05dbfc8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:37:47.000Z'}}, {'blockNum': '0x7f5332', 'uniqueId': '0xc5918ada3ea9958dd27194692108439d7437abf9e5dd53d2c587f5c7fab770f2:log:26', 'hash': '0xc5918ada3ea9958dd27194692108439d7437abf9e5dd53d2c587f5c7fab770f2', 'from': '0x3f374e03e92865a6226a2613f85a12a4703634e6', 'to': '0x31a2feb9b5d3b5f4e76c71d6c92fc46ebb3cb1c1', 'value': 43532.15050222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f58fd631ee', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:39:42.000Z'}}, {'blockNum': '0x7f5335', 'uniqueId': '0x2c4f2d6d35dab751a38fcf9202501a7400375164e843ccf8b857e581347680b9:log:1', 'hash': '0x2c4f2d6d35dab751a38fcf9202501a7400375164e843ccf8b857e581347680b9', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 135704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c579adf1800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:40:13.000Z'}}, {'blockNum': '0x7f5336', 'uniqueId': '0x3a5c74e0fbb09b9173a705ac29b4df44e7fca229c5ecd467c59ff40f87b94a45:log:15', 'hash': '0x3a5c74e0fbb09b9173a705ac29b4df44e7fca229c5ecd467c59ff40f87b94a45', 'from': '0x31a2feb9b5d3b5f4e76c71d6c92fc46ebb3cb1c1', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 43532.15050222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f58fd631ee', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:40:18.000Z'}}, {'blockNum': '0x7f5336', 'uniqueId': '0x07f3842beede5acaec3261fc0807fbf7e26104d0a6cdf4aedc458a34a8d0eda5:log:16', 'hash': '0x07f3842beede5acaec3261fc0807fbf7e26104d0a6cdf4aedc458a34a8d0eda5', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 26009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x025d91b87900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:40:18.000Z'}}, {'blockNum': '0x7f5337', 'uniqueId': '0xfc79413b62b4d8e4a448cfa5464fdeb5186f0effbbb3f37bd1c822c5b613e6a9:log:20', 'hash': '0xfc79413b62b4d8e4a448cfa5464fdeb5186f0effbbb3f37bd1c822c5b613e6a9', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:41:04.000Z'}}, {'blockNum': '0x7f5344', 'uniqueId': '0xb4d928d5d256df6c0232a29c8139aab4b689a1668a1b4fd82e8168c6950147bb:log:51', 'hash': '0xb4d928d5d256df6c0232a29c8139aab4b689a1668a1b4fd82e8168c6950147bb', 'from': '0x932ab43cbf53a7e48296e0b641f9620906ca5442', 'to': '0x3686ca8649f174f3452aa7204da95ed6484b10a5', 'value': 188771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x112b2ad70300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:43:58.000Z'}}, {'blockNum': '0x7f534d', 'uniqueId': '0x57f13c7e05516d124773d628c56d51aed583b127af3d46ca48327e6fb1829c53:log:121', 'hash': '0x57f13c7e05516d124773d628c56d51aed583b127af3d46ca48327e6fb1829c53', 'from': '0x3686ca8649f174f3452aa7204da95ed6484b10a5', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 188771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x112b2ad70300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:45:11.000Z'}}, {'blockNum': '0x7f535a', 'uniqueId': '0x445d39dea8d9b63bfd404b5ccd5b8d578e6d0c9f94a252e8279db0e3e68ba7e3:log:1', 'hash': '0x445d39dea8d9b63bfd404b5ccd5b8d578e6d0c9f94a252e8279db0e3e68ba7e3', 'from': '0x3b8e9b2c23bad8e8be04e6122ad6da060a9768ec', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 5066.1867839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x75f4d38c76', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:46:38.000Z'}}, {'blockNum': '0x7f535a', 'uniqueId': '0x6e861699195584927f2d45cc940828d69f61aa48ca6b279f805da06bdfe2958a:log:3', 'hash': '0x6e861699195584927f2d45cc940828d69f61aa48ca6b279f805da06bdfe2958a', 'from': '0x499438353ac81376dd6f18711bd68acfa04e48e3', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 556.4708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0cf4d30e40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:46:38.000Z'}}, {'blockNum': '0x7f535a', 'uniqueId': '0x3e9b31e9daeca046c4d962a95185ea9e034622f67e6b7465d4d3e43c28d40ea2:log:6', 'hash': '0x3e9b31e9daeca046c4d962a95185ea9e034622f67e6b7465d4d3e43c28d40ea2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 66725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x06118ffe0500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:46:38.000Z'}}, {'blockNum': '0x7f5368', 'uniqueId': '0xb1dad78fba6ff48d547b0bec8d15e233c5fb99e1f4d5d03cee22aa037bc5d8d5:log:54', 'hash': '0xb1dad78fba6ff48d547b0bec8d15e233c5fb99e1f4d5d03cee22aa037bc5d8d5', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 188771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x112b2ad70300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:50:13.000Z'}}, {'blockNum': '0x7f5368', 'uniqueId': '0x695b9133a71aa3cddf4ee143f908b2d5ceecf777d428adae5baba73d5cad2a71:log:55', 'hash': '0x695b9133a71aa3cddf4ee143f908b2d5ceecf777d428adae5baba73d5cad2a71', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x025d91b87900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:50:13.000Z'}}, {'blockNum': '0x7f536b', 'uniqueId': '0x9a5460ad28ef7d44336cf50f1bff782794d2a147f8f2ec03f3cf43d5139ac4e1:log:1', 'hash': '0x9a5460ad28ef7d44336cf50f1bff782794d2a147f8f2ec03f3cf43d5139ac4e1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa5f7e18442a727e1e34264e8f271b8054a48155e', 'value': 16368.585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x017d1c5e93a0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:50:34.000Z'}}, {'blockNum': '0x7f537c', 'uniqueId': '0x0954849d2873c02e3f33f4e906eb585a4cd77fa9252277bbdb59e20aaf1d3619:log:1', 'hash': '0x0954849d2873c02e3f33f4e906eb585a4cd77fa9252277bbdb59e20aaf1d3619', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 2621731.92038343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xee71f3fb27c7', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:53:26.000Z'}}, {'blockNum': '0x7f5380', 'uniqueId': '0xfac7c6dd34dad1b6a19e7450cd583dcaf7e358dce5b36d5b51673d424f14a0f7:log:19', 'hash': '0xfac7c6dd34dad1b6a19e7450cd583dcaf7e358dce5b36d5b51673d424f14a0f7', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 66725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x06118ffe0500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:54:06.000Z'}}, {'blockNum': '0x7f5387', 'uniqueId': '0x99c56765648f944b5fc39a0fcadf72df9e38cd3cccc2d69264a26958693b0384:log:100', 'hash': '0x99c56765648f944b5fc39a0fcadf72df9e38cd3cccc2d69264a26958693b0384', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:55:54.000Z'}}, {'blockNum': '0x7f538c', 'uniqueId': '0xf5389e08bc0a4a4ca99facbfdff62d5f68dfe256b66dffd71743f5668cd2e95d:log:3', 'hash': '0xf5389e08bc0a4a4ca99facbfdff62d5f68dfe256b66dffd71743f5668cd2e95d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:56:40.000Z'}}, {'blockNum': '0x7f539a', 'uniqueId': '0xa555f6fd9ee8a0152de6cd69b3fd96da5c6f9c280a9feef6b31e315decdfd19c:log:128', 'hash': '0xa555f6fd9ee8a0152de6cd69b3fd96da5c6f9c280a9feef6b31e315decdfd19c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:00:15.000Z'}}, {'blockNum': '0x7f539c', 'uniqueId': '0xc828b100efcce47ea0eb0241fe5d26e125a19edbdc744106e1198b32f4b38634:log:88', 'hash': '0xc828b100efcce47ea0eb0241fe5d26e125a19edbdc744106e1198b32f4b38634', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:01:09.000Z'}}, {'blockNum': '0x7f539c', 'uniqueId': '0x75e91fe8752a1dd9c6326feaabdffa3282a5ef1b0a791674a32e31772be2cd16:log:137', 'hash': '0x75e91fe8752a1dd9c6326feaabdffa3282a5ef1b0a791674a32e31772be2cd16', 'from': '0x4a544eced6941964488b2250b85cbdd731b5b0f3', 'to': '0x4363bfbaa0bb31ee97953318415fbae83e8f60b8', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:01:09.000Z'}}, {'blockNum': '0x7f53a1', 'uniqueId': '0xb1b8b9d8f3c01a4813d6661900a4bc3a240e868e467f009c40fef6248058be2e:log:43', 'hash': '0xb1b8b9d8f3c01a4813d6661900a4bc3a240e868e467f009c40fef6248058be2e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:02:29.000Z'}}, {'blockNum': '0x7f53a2', 'uniqueId': '0x187141f29d800c185fa06605758f621293b6d757cc0bcb9d35d877b49c5eb00a:log:52', 'hash': '0x187141f29d800c185fa06605758f621293b6d757cc0bcb9d35d877b49c5eb00a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:02:54.000Z'}}, {'blockNum': '0x7f53bb', 'uniqueId': '0xc774c961aa275998b0ece21b760c6af1e6d474629a4fa6894cc22f0a2eb4327e:log:1', 'hash': '0xc774c961aa275998b0ece21b760c6af1e6d474629a4fa6894cc22f0a2eb4327e', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 107121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x09be1aea5100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:08:08.000Z'}}, {'blockNum': '0x7f53c2', 'uniqueId': '0xb345ce916b0c8e5277d1a8fc819e56c22a7893c695215db5246639f8c3739d55:log:56', 'hash': '0xb345ce916b0c8e5277d1a8fc819e56c22a7893c695215db5246639f8c3739d55', 'from': '0x4363bfbaa0bb31ee97953318415fbae83e8f60b8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:09:59.000Z'}}, {'blockNum': '0x7f53c4', 'uniqueId': '0xdb0b83ded07f0d6c9002223dc62735654434ef648bf0e6a17c67938ada2a3915:log:8', 'hash': '0xdb0b83ded07f0d6c9002223dc62735654434ef648bf0e6a17c67938ada2a3915', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 143100.63244587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0d03d23c852b', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:10:44.000Z'}}, {'blockNum': '0x7f53c9', 'uniqueId': '0x3abb232ed5a97c1cf04e1e5db8cddcdabade546d4046108811d50652a29d5c72:log:42', 'hash': '0x3abb232ed5a97c1cf04e1e5db8cddcdabade546d4046108811d50652a29d5c72', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:11:58.000Z'}}, {'blockNum': '0x7f53ce', 'uniqueId': '0x7c02c0650a52d89c6c8cbd973fff0eb894666a9c169962bc39d545ae67f4d227:log:12', 'hash': '0x7c02c0650a52d89c6c8cbd973fff0eb894666a9c169962bc39d545ae67f4d227', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xd89054acbbf5edce73e04328d5c8578881654f43', 'value': 268.943051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x064306874c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:12:11.000Z'}}, {'blockNum': '0x7f53cf', 'uniqueId': '0x2a066fb3289b8a7c69a7e0939565f49bad04e2d461fcf83d7fdd73c6036224cf:log:69', 'hash': '0x2a066fb3289b8a7c69a7e0939565f49bad04e2d461fcf83d7fdd73c6036224cf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:12:25.000Z'}}, {'blockNum': '0x7f53ea', 'uniqueId': '0x2aec3c63b7eaab302a7a904133a3631821c1df63d35593abe5e11186b8b69d7d:log:123', 'hash': '0x2aec3c63b7eaab302a7a904133a3631821c1df63d35593abe5e11186b8b69d7d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:17:49.000Z'}}, {'blockNum': '0x7f53ee', 'uniqueId': '0xa9383d0ca52f55082f943da4588703d292f0933f8a0e3d084f8ab56d73249721:log:14', 'hash': '0xa9383d0ca52f55082f943da4588703d292f0933f8a0e3d084f8ab56d73249721', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:18:34.000Z'}}, {'blockNum': '0x7f53f2', 'uniqueId': '0xb83183b96a1ccbf50a778fce17dcb9fbf12b7a48ac135e50099d566bf050282d:log:152', 'hash': '0xb83183b96a1ccbf50a778fce17dcb9fbf12b7a48ac135e50099d566bf050282d', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:19:16.000Z'}}, {'blockNum': '0x7f53f4', 'uniqueId': '0x398ea549eb8071143123eb908bb84f6287cd22f7c48ca77ef3da678f96b9c46d:log:63', 'hash': '0x398ea549eb8071143123eb908bb84f6287cd22f7c48ca77ef3da678f96b9c46d', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 107121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x09be1aea5100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:19:59.000Z'}}, {'blockNum': '0x7f53f6', 'uniqueId': '0x39b4cd1144a909e20ad495cdd0f716cd4973d0b77d7d1227e10a7d2b2596d98c:log:24', 'hash': '0x39b4cd1144a909e20ad495cdd0f716cd4973d0b77d7d1227e10a7d2b2596d98c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:20:35.000Z'}}, {'blockNum': '0x7f53f9', 'uniqueId': '0xbd8cbd6118fa0f530a7b98f93da28e0d85f020ea0ea5a9edcb33f39114c15420:log:76', 'hash': '0xbd8cbd6118fa0f530a7b98f93da28e0d85f020ea0ea5a9edcb33f39114c15420', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:21:29.000Z'}}, {'blockNum': '0x7f53ff', 'uniqueId': '0xd61491b28e4ff6a42d797e345f80bb915f4128a81692115977c7ab5ce340380e:log:84', 'hash': '0xd61491b28e4ff6a42d797e345f80bb915f4128a81692115977c7ab5ce340380e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:23:13.000Z'}}, {'blockNum': '0x7f5412', 'uniqueId': '0x85cae85e5471d19ee472266886323cb9a8a74783b19ca2c65226bcec3aecfd73:log:11', 'hash': '0x85cae85e5471d19ee472266886323cb9a8a74783b19ca2c65226bcec3aecfd73', 'from': '0xe65cf62c1969b28806f6a2bbbdf8855d58dc23d5', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 6078.139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x8d848816e0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:26:57.000Z'}}, {'blockNum': '0x7f5412', 'uniqueId': '0x517bf0bb14077d651ff3220cda6de11a1709e0bb69a28e2818996ad8675aa3bc:log:68', 'hash': '0x517bf0bb14077d651ff3220cda6de11a1709e0bb69a28e2818996ad8675aa3bc', 'from': '0x3314df7c38a5bea1375dde468441718a7a9d58ca', 'to': '0x1034e575289e1f1ca6e81f5906ad5fcabd3f2e51', 'value': 22582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x020dc7357600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:26:57.000Z'}}, {'blockNum': '0x7f541a', 'uniqueId': '0x62a33ee7d8bd3e2f5785fbf83e4a412182821d7265a515adf764d36c6634fe73:log:38', 'hash': '0x62a33ee7d8bd3e2f5785fbf83e4a412182821d7265a515adf764d36c6634fe73', 'from': '0x1034e575289e1f1ca6e81f5906ad5fcabd3f2e51', 'to': '0xd62ed0bc84fcea45d7998215e3371714059156f8', 'value': 22582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x020dc7357600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:28:08.000Z'}}, {'blockNum': '0x7f5444', 'uniqueId': '0xadcd1c0b371c814ba111f7eea473ee34fadfe357a7b97bdb7f57455d098ade53:log:100', 'hash': '0xadcd1c0b371c814ba111f7eea473ee34fadfe357a7b97bdb7f57455d098ade53', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x88cf30e78492f3f3b340447a1889db971dabce25', 'value': 794.02381337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x127cc03019', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:37:10.000Z'}}, {'blockNum': '0x7f5446', 'uniqueId': '0x7ff53b09f6f60b3fb973d71d8a6417053130516e074a5e7e99adc8404f362573:log:13', 'hash': '0x7ff53b09f6f60b3fb973d71d8a6417053130516e074a5e7e99adc8404f362573', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 140961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0cd201088100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:38:41.000Z'}}, {'blockNum': '0x7f544b', 'uniqueId': '0xacf2c8756095d0ac906d81e42ce9d05a54c60dcd844c318097a38e85ba02346c:log:0', 'hash': '0xacf2c8756095d0ac906d81e42ce9d05a54c60dcd844c318097a38e85ba02346c', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 56486.9525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x052330794c50', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:40:59.000Z'}}, {'blockNum': '0x7f545c', 'uniqueId': '0x831d1441ea4f7bec363186e86f1df61c96f4e3c886d08e8d235079f9441f4d58:log:88', 'hash': '0x831d1441ea4f7bec363186e86f1df61c96f4e3c886d08e8d235079f9441f4d58', 'from': '0xa5f7e18442a727e1e34264e8f271b8054a48155e', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 16368.585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x017d1c5e93a0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:44:20.000Z'}}, {'blockNum': '0x7f545d', 'uniqueId': '0x2c869dae8fcf8505f6c8a8e02a1ec9eb32559c137378001567ff02e3df9510e7:log:38', 'hash': '0x2c869dae8fcf8505f6c8a8e02a1ec9eb32559c137378001567ff02e3df9510e7', 'from': '0xd89054acbbf5edce73e04328d5c8578881654f43', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 268.943051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x064306874c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:45:23.000Z'}}, {'blockNum': '0x7f545d', 'uniqueId': '0x2b3d23eadbf9120eb5844f22bd70987ce38eed7efbfcd5395f277601db0a0790:log:50', 'hash': '0x2b3d23eadbf9120eb5844f22bd70987ce38eed7efbfcd5395f277601db0a0790', 'from': '0xd62ed0bc84fcea45d7998215e3371714059156f8', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 22582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x020dc7357600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:45:23.000Z'}}, {'blockNum': '0x7f5466', 'uniqueId': '0xd34489d102305fe46b5512b38523c630f3cb4587e1b4dd8f32a91332cc8b8e43:log:2', 'hash': '0xd34489d102305fe46b5512b38523c630f3cb4587e1b4dd8f32a91332cc8b8e43', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 16098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0176cf8ea200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:47:30.000Z'}}, {'blockNum': '0x7f5472', 'uniqueId': '0xffca885cfddea8772ec09a80d3a2462b9a79f9784e9799effc94f8c3fe4750f2:log:55', 'hash': '0xffca885cfddea8772ec09a80d3a2462b9a79f9784e9799effc94f8c3fe4750f2', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56486.9525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x052330794c50', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:50:07.000Z'}}, {'blockNum': '0x7f5490', 'uniqueId': '0xba38abc1e18dcf870b8cc9e76a6eb9702f26e3a2e535c4d2e669763be657d56c:log:67', 'hash': '0xba38abc1e18dcf870b8cc9e76a6eb9702f26e3a2e535c4d2e669763be657d56c', 'from': '0xbd4c4bf61b48d9876f5bddd71328d678f55cf912', 'to': '0x773ef1b61f9e2e737636f6d85f1a39976f8cce3e', 'value': 3267.34991727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x4c12ec516f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:54:51.000Z'}}, {'blockNum': '0x7f5493', 'uniqueId': '0x2bec1f8837be038a66b21b035e035a90a4788c59d4a97360096b5231d27d15e7:log:90', 'hash': '0x2bec1f8837be038a66b21b035e035a90a4788c59d4a97360096b5231d27d15e7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:55:47.000Z'}}, {'blockNum': '0x7f5498', 'uniqueId': '0x1235e1ed432e1757d44eaafb6f66ae35f94e58375790c7085be9c06865da83ff:log:3', 'hash': '0x1235e1ed432e1757d44eaafb6f66ae35f94e58375790c7085be9c06865da83ff', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:56:30.000Z'}}, {'blockNum': '0x7f549e', 'uniqueId': '0x5464d4c39f9ed9016b5de722063cc1ebf18d8ac3228c047ae6ec084f4933f63d:log:4', 'hash': '0x5464d4c39f9ed9016b5de722063cc1ebf18d8ac3228c047ae6ec084f4933f63d', 'from': '0x773ef1b61f9e2e737636f6d85f1a39976f8cce3e', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 3267.34991727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x4c12ec516f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:57:55.000Z'}}, {'blockNum': '0x7f54ad', 'uniqueId': '0xa3c06fa356cbf8ed6f0db3f72a9398ce9168036cf41d2317adfefeda78fb28bf:log:53', 'hash': '0xa3c06fa356cbf8ed6f0db3f72a9398ce9168036cf41d2317adfefeda78fb28bf', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 140961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0cd201088100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:00:07.000Z'}}, {'blockNum': '0x7f54db', 'uniqueId': '0x9ebffea6b41c83142838286c77cf42bd619cab32febac707d9a8cef94c12e938:log:15', 'hash': '0x9ebffea6b41c83142838286c77cf42bd619cab32febac707d9a8cef94c12e938', 'from': '0x49847f0578bb43887d1d6832622572e86687702c', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 4992.084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x743b23ac80', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:09:05.000Z'}}, {'blockNum': '0x7f54e8', 'uniqueId': '0x2a382bbdcca64334bb1c646abb391ebd475816201875f0e0e1912bd2707ede8e:log:76', 'hash': '0x2a382bbdcca64334bb1c646abb391ebd475816201875f0e0e1912bd2707ede8e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:11:17.000Z'}}, {'blockNum': '0x7f54e8', 'uniqueId': '0x36d2338ef9ae57ea1596ac6c3a01d9477c5710b8be8994e179e9c5709af8916f:log:78', 'hash': '0x36d2338ef9ae57ea1596ac6c3a01d9477c5710b8be8994e179e9c5709af8916f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:11:17.000Z'}}, {'blockNum': '0x7f54e8', 'uniqueId': '0xdd52fb1b6e90665a4799cc8a96aa29d05697034fcd7c9c0e3ac30e534a18f668:log:80', 'hash': '0xdd52fb1b6e90665a4799cc8a96aa29d05697034fcd7c9c0e3ac30e534a18f668', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:11:17.000Z'}}, {'blockNum': '0x7f54f7', 'uniqueId': '0x647e0a12919177a1b2b8f2504d7699eca4f17d06cfc2281728506f4c3f2de447:log:59', 'hash': '0x647e0a12919177a1b2b8f2504d7699eca4f17d06cfc2281728506f4c3f2de447', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x9e973080c3752dd5017f8242b70d3479587159c3', 'value': 588.67926574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0db4cd462e', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:15:04.000Z'}}, {'blockNum': '0x7f54f7', 'uniqueId': '0x1ea4a9aefcd4e02b3d2ffb7fd6dd08f846ce90b639a34a51a240c2d30c0e952b:log:73', 'hash': '0x1ea4a9aefcd4e02b3d2ffb7fd6dd08f846ce90b639a34a51a240c2d30c0e952b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:15:04.000Z'}}, {'blockNum': '0x7f54ff', 'uniqueId': '0x7d9b9d855e19a9d45d209365246393e9af6fe5138a962f893ebe1fed330579ea:log:73', 'hash': '0x7d9b9d855e19a9d45d209365246393e9af6fe5138a962f893ebe1fed330579ea', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:15:52.000Z'}}, {'blockNum': '0x7f5501', 'uniqueId': '0x42a15bf45c36d2d145889097c452abc6cc19a3e522c1b46b50fd2f7d17a64d11:log:1', 'hash': '0x42a15bf45c36d2d145889097c452abc6cc19a3e522c1b46b50fd2f7d17a64d11', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 60064.8025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05767e1f2490', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:16:22.000Z'}}, {'blockNum': '0x7f5511', 'uniqueId': '0xa58fa63fc3b56843934b04991fe58685366743905d03da2d3088c11c58cc92a1:log:57', 'hash': '0xa58fa63fc3b56843934b04991fe58685366743905d03da2d3088c11c58cc92a1', 'from': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 4691.10445333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x6d39295515', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:20:31.000Z'}}, {'blockNum': '0x7f551a', 'uniqueId': '0x493a16b2569dfb6b9806cc04073d56bb786ed7d873b7e0c88c6cdad70c741dc4:log:8', 'hash': '0x493a16b2569dfb6b9806cc04073d56bb786ed7d873b7e0c88c6cdad70c741dc4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 97978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08e93a637a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:23:40.000Z'}}, {'blockNum': '0x7f5531', 'uniqueId': '0xffc3b3f9658953633fda056e92a6f1115369dc3813f9f1f80f067abcd957574c:log:69', 'hash': '0xffc3b3f9658953633fda056e92a6f1115369dc3813f9f1f80f067abcd957574c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:30:54.000Z'}}, {'blockNum': '0x7f5535', 'uniqueId': '0xa4a06b742aab8e59e83bb5bab55cf5e02d8ffe233004e20e213d88d770844178:log:18', 'hash': '0xa4a06b742aab8e59e83bb5bab55cf5e02d8ffe233004e20e213d88d770844178', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:31:31.000Z'}}, {'blockNum': '0x7f553d', 'uniqueId': '0xe6b5fbd2358fc0dff62b5babe6a888856997e8a11d3f021673ca3cb265b27cb1:log:26', 'hash': '0xe6b5fbd2358fc0dff62b5babe6a888856997e8a11d3f021673ca3cb265b27cb1', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 97978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08e93a637a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:32:32.000Z'}}, {'blockNum': '0x7f5546', 'uniqueId': '0x1f5ba65901865e582959c5a6510e218c7e2c6891feae0dde9fec5bf4a97b654f:log:55', 'hash': '0x1f5ba65901865e582959c5a6510e218c7e2c6891feae0dde9fec5bf4a97b654f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:35:08.000Z'}}, {'blockNum': '0x7f5548', 'uniqueId': '0x27e76b0da5a21d0425fe4747a0952e0d1fd787e9dc8f727bcc7773e2275c636d:log:16', 'hash': '0x27e76b0da5a21d0425fe4747a0952e0d1fd787e9dc8f727bcc7773e2275c636d', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xaba7e21f3eff840bda71f9f077a9d5720489cf57', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0df8475800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:35:21.000Z'}}, {'blockNum': '0x7f5548', 'uniqueId': '0x8e26bbadd04092d77bfe9539bfb3daa7d40f7fda6e8b2403599f69bb1135bbb8:log:87', 'hash': '0x8e26bbadd04092d77bfe9539bfb3daa7d40f7fda6e8b2403599f69bb1135bbb8', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:35:21.000Z'}}, {'blockNum': '0x7f5555', 'uniqueId': '0x707ce8828236a00e8cdd00ccf0e78bf7d84c4d712617327bc0b57486c9d05b6a:log:12', 'hash': '0x707ce8828236a00e8cdd00ccf0e78bf7d84c4d712617327bc0b57486c9d05b6a', 'from': '0xcc60f38163459b9c2ce7852a8d95f5d09b088ac7', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 4410.177948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x66aeb580f0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:38:40.000Z'}}, {'blockNum': '0x7f5557', 'uniqueId': '0xb1cdc1279ada9d14919c69ed8099bf8ba2596963ccf87dd58b1ecdce1e3b1788:log:1', 'hash': '0xb1cdc1279ada9d14919c69ed8099bf8ba2596963ccf87dd58b1ecdce1e3b1788', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 60064.8025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05767e1f2490', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:39:39.000Z'}}, {'blockNum': '0x7f555a', 'uniqueId': '0x03134887f4c7542cabdc370f09d7b6e9205ae83b9ad9ca7bfd2edd12739085fc:log:77', 'hash': '0x03134887f4c7542cabdc370f09d7b6e9205ae83b9ad9ca7bfd2edd12739085fc', 'from': '0xaba7e21f3eff840bda71f9f077a9d5720489cf57', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0df8475800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:39:46.000Z'}}, {'blockNum': '0x7f555a', 'uniqueId': '0xeceb9c3769d1f697672c8e31e38f5228a2e7f0af9bab56dd9782cf43e4d0c4f0:log:155', 'hash': '0xeceb9c3769d1f697672c8e31e38f5228a2e7f0af9bab56dd9782cf43e4d0c4f0', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:39:46.000Z'}}, {'blockNum': '0x7f555e', 'uniqueId': '0x294f4d8ef186e68cba7e3a935fb3fb401cd7ddcadaa0f41cbd2805855a3358c4:log:93', 'hash': '0x294f4d8ef186e68cba7e3a935fb3fb401cd7ddcadaa0f41cbd2805855a3358c4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:41:52.000Z'}}, {'blockNum': '0x7f5568', 'uniqueId': '0xb505bda1eb2e580ec4c6de10db9829f88c29009cfa274aa658b28cdde77eab40:log:56', 'hash': '0xb505bda1eb2e580ec4c6de10db9829f88c29009cfa274aa658b28cdde77eab40', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:43:17.000Z'}}, {'blockNum': '0x7f5568', 'uniqueId': '0xb7031ff80c559af7f29ae75326169dc055e1558f1833dfe04d45f4e08535ec7b:log:58', 'hash': '0xb7031ff80c559af7f29ae75326169dc055e1558f1833dfe04d45f4e08535ec7b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:43:17.000Z'}}, {'blockNum': '0x7f5593', 'uniqueId': '0x8c692275f0a38f03b0d047935157e57b62852ae1351d196528fac3462d668bf1:log:20', 'hash': '0x8c692275f0a38f03b0d047935157e57b62852ae1351d196528fac3462d668bf1', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99986.7999806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0917ffc4fe6c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:53:45.000Z'}}, {'blockNum': '0x7f559c', 'uniqueId': '0xf0011247187823b0fcb5df2bf2144de1da6d6afccc248b20e52de41fb233a13c:log:36', 'hash': '0xf0011247187823b0fcb5df2bf2144de1da6d6afccc248b20e52de41fb233a13c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:55:53.000Z'}}, {'blockNum': '0x7f55c4', 'uniqueId': '0x6f92e057812bb0407eb3a1ea209dd0a09a8a128114310186cefe31e4545be5ca:log:34', 'hash': '0x6f92e057812bb0407eb3a1ea209dd0a09a8a128114310186cefe31e4545be5ca', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:03:53.000Z'}}, {'blockNum': '0x7f55c6', 'uniqueId': '0x194e2f2898a13435e541de958c65b4663abde8bd98560275fa9f289ede15204c:log:7', 'hash': '0x194e2f2898a13435e541de958c65b4663abde8bd98560275fa9f289ede15204c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:04:30.000Z'}}, {'blockNum': '0x7f55d0', 'uniqueId': '0x69c49dc9e88d33d170e59a44231bbc8f31cfb65bc1ad865d9047f6eee22c1bb3:log:64', 'hash': '0x69c49dc9e88d33d170e59a44231bbc8f31cfb65bc1ad865d9047f6eee22c1bb3', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:06:13.000Z'}}, {'blockNum': '0x7f5606', 'uniqueId': '0x04e517084abbcbde9f70322677dd940f2ae08791ad9437daa325250c32279919:log:30', 'hash': '0x04e517084abbcbde9f70322677dd940f2ae08791ad9437daa325250c32279919', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x8aa026adeb26d8e45e5c7dd04fb819ff9f015c69', 'value': 1517.34660381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2354172d1d', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:18:16.000Z'}}, {'blockNum': '0x7f560d', 'uniqueId': '0x94fff1660cd0cc91df0547a91098514d48d57a178f90901451258acc31fe58c1:log:0', 'hash': '0x94fff1660cd0cc91df0547a91098514d48d57a178f90901451258acc31fe58c1', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 89764.0021217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0829fb2560ca', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:19:54.000Z'}}, {'blockNum': '0x7f561c', 'uniqueId': '0x3aa01becce496a22386fc8a09fddcd25945faf5f627374f40ea46bdbbc2a5337:log:0', 'hash': '0x3aa01becce496a22386fc8a09fddcd25945faf5f627374f40ea46bdbbc2a5337', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 44300.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x040772110440', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:23:02.000Z'}}, {'blockNum': '0x7f5621', 'uniqueId': '0x2634723a4b3bfc6d37795727b02b4a9cfbd3dd4ddbccde0f93cbd18a6c9cab47:log:0', 'hash': '0x2634723a4b3bfc6d37795727b02b4a9cfbd3dd4ddbccde0f93cbd18a6c9cab47', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xefe0874afb2455a68b4f234b81da94a738777807', 'value': 1337.979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1f26f9eee0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:23:50.000Z'}}, {'blockNum': '0x7f5621', 'uniqueId': '0xb0899e1566746a372ab01ee6252303eda6df3173863f4ab124de64691dc26e22:log:30', 'hash': '0xb0899e1566746a372ab01ee6252303eda6df3173863f4ab124de64691dc26e22', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:23:50.000Z'}}, {'blockNum': '0x7f5627', 'uniqueId': '0x5046ec977731dd9de22638598f8947f17dfe38a41542bf7bde02d8ac45f6f7f5:log:39', 'hash': '0x5046ec977731dd9de22638598f8947f17dfe38a41542bf7bde02d8ac45f6f7f5', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:24:35.000Z'}}, {'blockNum': '0x7f5641', 'uniqueId': '0x1cd882940bbd9621db7f16618748228961c460abb314f66ed38085af3b25b49c:log:67', 'hash': '0x1cd882940bbd9621db7f16618748228961c460abb314f66ed38085af3b25b49c', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 44300.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x040772110440', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:30:01.000Z'}}, {'blockNum': '0x7f5661', 'uniqueId': '0x539e0e7b0644eca41950c1bde28e2030179ad0518aa6ea93d9bdad5b90039173:log:74', 'hash': '0x539e0e7b0644eca41950c1bde28e2030179ad0518aa6ea93d9bdad5b90039173', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:37:04.000Z'}}, {'blockNum': '0x7f5666', 'uniqueId': '0x3f3b801b0cd1a78cc945cf71afa739e9fd3e2ac23591d110d26892f15f07900a:log:51', 'hash': '0x3f3b801b0cd1a78cc945cf71afa739e9fd3e2ac23591d110d26892f15f07900a', 'from': '0x8aa026adeb26d8e45e5c7dd04fb819ff9f015c69', 'to': '0x211c5addcc353255e48b4daec589780ca2d90718', 'value': 194.62217137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x048809ddb1', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:38:40.000Z'}}, {'blockNum': '0x7f566a', 'uniqueId': '0x55d94d417fafe39fbcd291bc89509b35a7d128c5384e15628b9cf4bb1baa80d9:log:30', 'hash': '0x55d94d417fafe39fbcd291bc89509b35a7d128c5384e15628b9cf4bb1baa80d9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:39:22.000Z'}}, {'blockNum': '0x7f566c', 'uniqueId': '0x99b63702006c9e403687d12478a8275f4fd02abf6c1352e035653da2938c4b11:log:15', 'hash': '0x99b63702006c9e403687d12478a8275f4fd02abf6c1352e035653da2938c4b11', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:39:51.000Z'}}, {'blockNum': '0x7f5672', 'uniqueId': '0x48ee12d768ca927f5528283f89663aef0bc08644186930f4eaf2549230937b3a:log:104', 'hash': '0x48ee12d768ca927f5528283f89663aef0bc08644186930f4eaf2549230937b3a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:41:03.000Z'}}, {'blockNum': '0x7f569c', 'uniqueId': '0x25d228f137b0fb7dc9ee7564054a90d4684f584f2fa5a99187823cac3cdd0904:log:62', 'hash': '0x25d228f137b0fb7dc9ee7564054a90d4684f584f2fa5a99187823cac3cdd0904', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:51:54.000Z'}}, {'blockNum': '0x7f56a7', 'uniqueId': '0x3fee3c36e0ff45c266c172a55ee276d468c8a46ec1350b66dd60649afe8f5cdb:log:31', 'hash': '0x3fee3c36e0ff45c266c172a55ee276d468c8a46ec1350b66dd60649afe8f5cdb', 'from': '0xb6467d542a8fc27a487c95366b7e52f20344d690', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 2906.984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x43aef99100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:53:55.000Z'}}, {'blockNum': '0x7f56d2', 'uniqueId': '0x7985f4ad936f34ee79e0d073b8e9aa6b4c116acb33b3cb7c8a4e294673a8feff:log:49', 'hash': '0x7985f4ad936f34ee79e0d073b8e9aa6b4c116acb33b3cb7c8a4e294673a8feff', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:02:26.000Z'}}, {'blockNum': '0x7f5712', 'uniqueId': '0x9b659b462138a11be26d142a66f3b667c8488a45d7381686f428cdcecd8391f8:log:5', 'hash': '0x9b659b462138a11be26d142a66f3b667c8488a45d7381686f428cdcecd8391f8', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xefe0874afb2455a68b4f234b81da94a738777807', 'value': 1787.445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x299e009f20', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:18:17.000Z'}}, {'blockNum': '0x7f5713', 'uniqueId': '0x6b626cad768019a3fe2a1326f7e6edf5efcc3fa3b386de842c0a40dc88ebc65c:log:71', 'hash': '0x6b626cad768019a3fe2a1326f7e6edf5efcc3fa3b386de842c0a40dc88ebc65c', 'from': '0x4f1a3226108ada7e32bc15bdec19a66fa23e7142', 'to': '0x47ca4d64d59435f4077f1890cdfbad9ba88fc18f', 'value': 608.0048605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0e27fdcaa2', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:18:23.000Z'}}, {'blockNum': '0x7f5720', 'uniqueId': '0xf24868b98c2fa5913183d4100db8abf9a94b114ad593ce8ace82e7443aed8e29:log:6', 'hash': '0xf24868b98c2fa5913183d4100db8abf9a94b114ad593ce8ace82e7443aed8e29', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc2574e3b4851923b91a6541831404fddc0205e87', 'value': 213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04f5943500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:20:33.000Z'}}, {'blockNum': '0x7f572d', 'uniqueId': '0x61a9e7b75b3143fd0b81c22834e1a2b80cbef2651a44c1798f1f39e44418520c:log:1', 'hash': '0x61a9e7b75b3143fd0b81c22834e1a2b80cbef2651a44c1798f1f39e44418520c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'value': 139472.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0caf58e1c080', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:22:30.000Z'}}, {'blockNum': '0x7f572d', 'uniqueId': '0xc0d6cfed34c0f39809ff525fb0210c6b86d41b2c7a3d791ab27e2ba044dfaca1:log:8', 'hash': '0xc0d6cfed34c0f39809ff525fb0210c6b86d41b2c7a3d791ab27e2ba044dfaca1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x87181d0ad39fada24c3750b6a2e6b7ed1ce2fab0', 'value': 1016.65897187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x17abc27ae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:22:30.000Z'}}, {'blockNum': '0x7f5736', 'uniqueId': '0xd527d542ee6cd3537f617a7aca19863379376ace740f25131f27e800abef75ed:log:5', 'hash': '0xd527d542ee6cd3537f617a7aca19863379376ace740f25131f27e800abef75ed', 'from': '0xefe0874afb2455a68b4f234b81da94a738777807', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 3125.424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x48c4fa8e00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:25:22.000Z'}}, {'blockNum': '0x7f573f', 'uniqueId': '0xf4647ab77af52ae9755bf402e237ebfe97ea11f430fdb966994cc4c1b830c3d9:log:76', 'hash': '0xf4647ab77af52ae9755bf402e237ebfe97ea11f430fdb966994cc4c1b830c3d9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:27:01.000Z'}}, {'blockNum': '0x7f5742', 'uniqueId': '0x2acd48d7faba456aefa59d830dd63d4bf6b241acc5a40ab8494aef4da86cf785:log:57', 'hash': '0x2acd48d7faba456aefa59d830dd63d4bf6b241acc5a40ab8494aef4da86cf785', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:27:29.000Z'}}, {'blockNum': '0x7f5758', 'uniqueId': '0x0a327c927ada7f30eb89f37b49ec7afdf99dc1e7cede237e5cff0a797cc9f0bf:log:63', 'hash': '0x0a327c927ada7f30eb89f37b49ec7afdf99dc1e7cede237e5cff0a797cc9f0bf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:32:46.000Z'}}, {'blockNum': '0x7f5759', 'uniqueId': '0xb545f3fb42d44253ed31efdd8bbb006e6ec32e2aa03a4cda2c64497cd53e70c7:log:9', 'hash': '0xb545f3fb42d44253ed31efdd8bbb006e6ec32e2aa03a4cda2c64497cd53e70c7', 'from': '0xc0fbdad8aab77e5bc53e7494732e95f486924bfb', 'to': '0x63550a26a638084488391c1b96c3fc0f6704fc42', 'value': 14774.13163917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0157fcafd38d', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:33:04.000Z'}}, {'blockNum': '0x7f575e', 'uniqueId': '0xe06c169cb1a00d62a27b3861be7ee492d3367a6722c3305bbcb4b17b70b7b54c:log:19', 'hash': '0xe06c169cb1a00d62a27b3861be7ee492d3367a6722c3305bbcb4b17b70b7b54c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:34:23.000Z'}}, {'blockNum': '0x7f5761', 'uniqueId': '0x67b50394808432f67c225f4e3012c1fd3ec48ecd3bc039dc4f012cfd57058503:log:104', 'hash': '0x67b50394808432f67c225f4e3012c1fd3ec48ecd3bc039dc4f012cfd57058503', 'from': '0x1efa16b8ea27c61c92fe200e25628a6f047cedb2', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 2263.039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x34b0c37960', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:34:38.000Z'}}, {'blockNum': '0x7f5769', 'uniqueId': '0x370a5aa9fb850ed88d450c4ca51d825da76cf1f362fa04af87ff2e098c029c66:log:15', 'hash': '0x370a5aa9fb850ed88d450c4ca51d825da76cf1f362fa04af87ff2e098c029c66', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:37:11.000Z'}}, {'blockNum': '0x7f576b', 'uniqueId': '0x91d8abcc70a69a4e02d4d116b9f096440de992692cf707df6b9169c416f9036f:log:107', 'hash': '0x91d8abcc70a69a4e02d4d116b9f096440de992692cf707df6b9169c416f9036f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:37:52.000Z'}}, {'blockNum': '0x7f5770', 'uniqueId': '0x32ff2730b2850e3b51c314f411ea9b4b40dbdfa5e3ba3c0b3feea59fcbb0c456:log:50', 'hash': '0x32ff2730b2850e3b51c314f411ea9b4b40dbdfa5e3ba3c0b3feea59fcbb0c456', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:38:29.000Z'}}, {'blockNum': '0x7f5772', 'uniqueId': '0xf266cb4903d5cf7c8e0af50ee115e2910a7c1fa177e8a5553c219947a4e62674:log:12', 'hash': '0xf266cb4903d5cf7c8e0af50ee115e2910a7c1fa177e8a5553c219947a4e62674', 'from': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 139472.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0caf58e1c080', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:39:00.000Z'}}, {'blockNum': '0x7f5774', 'uniqueId': '0x01e971da3992066127316e72d21d0ce83f069140d08b7b72915a25c04e724b60:log:11', 'hash': '0x01e971da3992066127316e72d21d0ce83f069140d08b7b72915a25c04e724b60', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:39:21.000Z'}}, {'blockNum': '0x7f5777', 'uniqueId': '0xce2eaf936a4f9035b43c689a039f3b27f98ccba392612a7022e8818dcc6d343f:log:99', 'hash': '0xce2eaf936a4f9035b43c689a039f3b27f98ccba392612a7022e8818dcc6d343f', 'from': '0x63550a26a638084488391c1b96c3fc0f6704fc42', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14774.13163917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0157fcafd38d', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:39:46.000Z'}}, {'blockNum': '0x7f577d', 'uniqueId': '0x2034ba22689f29e5d8356cc4bf1828f16283cb0cd2abaaa81400defebc35beda:log:116', 'hash': '0x2034ba22689f29e5d8356cc4bf1828f16283cb0cd2abaaa81400defebc35beda', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:42:01.000Z'}}, {'blockNum': '0x7f5799', 'uniqueId': '0xc44334c5e60d3b6a48bfba42fed877d1893d1e6696f833edae3b41489a257f1d:log:6', 'hash': '0xc44334c5e60d3b6a48bfba42fed877d1893d1e6696f833edae3b41489a257f1d', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x85bd94ad709c258a9ad850b3b32efad621ecae77', 'value': 59982.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x057495d35400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:47:01.000Z'}}, {'blockNum': '0x7f579f', 'uniqueId': '0x662f10634bb7f92c9636fd17face4c4df22742e5f0b4c7454a1b0496bb70d48b:log:0', 'hash': '0x662f10634bb7f92c9636fd17face4c4df22742e5f0b4c7454a1b0496bb70d48b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 150665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0db3f1616900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:48:49.000Z'}}, {'blockNum': '0x7f57a8', 'uniqueId': '0xa6b21ed70087b533a90e69a9d79e27f786ea57e1882cb0bf85c0975960b18c1a:log:10', 'hash': '0xa6b21ed70087b533a90e69a9d79e27f786ea57e1882cb0bf85c0975960b18c1a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:50:52.000Z'}}, {'blockNum': '0x7f57aa', 'uniqueId': '0xa91b9e2be8849dcd113a4135a000a089ffaa1ce2065b013b54e4d00a8b568655:log:61', 'hash': '0xa91b9e2be8849dcd113a4135a000a089ffaa1ce2065b013b54e4d00a8b568655', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:51:02.000Z'}}, {'blockNum': '0x7f57cb', 'uniqueId': '0x31cec254990524d144cd69c0f10b99e5d21984bd48c49c37f2ce453f83170136:log:80', 'hash': '0x31cec254990524d144cd69c0f10b99e5d21984bd48c49c37f2ce453f83170136', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:58:10.000Z'}}, {'blockNum': '0x7f57cf', 'uniqueId': '0x19a94d2916437423267a124881f0a01013ab141f196bf6da911cbf0e033d298f:log:26', 'hash': '0x19a94d2916437423267a124881f0a01013ab141f196bf6da911cbf0e033d298f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:59:00.000Z'}}, {'blockNum': '0x7f57d0', 'uniqueId': '0xe89a55a717cdedb00acea12dd0995d74fc58d0880dfbde947b2e7d5ace66c537:log:115', 'hash': '0xe89a55a717cdedb00acea12dd0995d74fc58d0880dfbde947b2e7d5ace66c537', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0db3f1616900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:59:09.000Z'}}, {'blockNum': '0x7f57d0', 'uniqueId': '0xcdfa9039f0cc3965ae11cd891156d29434c677c7c72758f142123dd4e179d87b:log:127', 'hash': '0xcdfa9039f0cc3965ae11cd891156d29434c677c7c72758f142123dd4e179d87b', 'from': '0x85bd94ad709c258a9ad850b3b32efad621ecae77', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59982.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x057495d35400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:59:09.000Z'}}, {'blockNum': '0x7f57d9', 'uniqueId': '0xfa71d8d7a69879229c5ff4f6d673522d0862ccdba7830ac6ab410959f0a34ae4:log:11', 'hash': '0xfa71d8d7a69879229c5ff4f6d673522d0862ccdba7830ac6ab410959f0a34ae4', 'from': '0x1c7ff422dfc0fbc97b44d4fa3a1fdf78d4f22ee2', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 1972.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2debd2f780', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:02:47.000Z'}}, {'blockNum': '0x7f57e6', 'uniqueId': '0xb6a63275a98cb3eeb891530c8a62828f1417519e677bdd85c57ae63ddb270952:log:94', 'hash': '0xb6a63275a98cb3eeb891530c8a62828f1417519e677bdd85c57ae63ddb270952', 'from': '0x4aacac980e59a270031b6c2903474c86aa66cc79', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:04:03.000Z'}}, {'blockNum': '0x7f5807', 'uniqueId': '0xcdeef07e7bb8b53943a2bc544e736e8c6f67d5760c99d969dd24c9cbfc132fd5:log:100', 'hash': '0xcdeef07e7bb8b53943a2bc544e736e8c6f67d5760c99d969dd24c9cbfc132fd5', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:12:25.000Z'}}, {'blockNum': '0x7f5812', 'uniqueId': '0x5c12917ccfb1463eee51bc9ff86be03139715031009306c0dd3e2c03b9d52979:log:9', 'hash': '0x5c12917ccfb1463eee51bc9ff86be03139715031009306c0dd3e2c03b9d52979', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:14:25.000Z'}}, {'blockNum': '0x7f5827', 'uniqueId': '0x02fdfe7f8431b32b894ab859396d13ecb66a8a678f6a1c4f0a4ee17c00560256:log:3', 'hash': '0x02fdfe7f8431b32b894ab859396d13ecb66a8a678f6a1c4f0a4ee17c00560256', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 185179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x10d788d9fb00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:19:48.000Z'}}, {'blockNum': '0x7f5838', 'uniqueId': '0xf5cd1fd2b8344e02b1b1e1db9484094f1e59c974c950a491302f1554a67ffee0:log:24', 'hash': '0xf5cd1fd2b8344e02b1b1e1db9484094f1e59c974c950a491302f1554a67ffee0', 'from': '0x541b7e4992392c18253fb9f8232734e7e39bb471', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 1821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2a66017d00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:24:51.000Z'}}, {'blockNum': '0x7f5847', 'uniqueId': '0x76be616d2a6839a72571b903ad88997b5c8fad243150b43af6acdb18820b8c8f:log:8', 'hash': '0x76be616d2a6839a72571b903ad88997b5c8fad243150b43af6acdb18820b8c8f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'value': 130257.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd8cb33a180', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:27:22.000Z'}}, {'blockNum': '0x7f584b', 'uniqueId': '0xc297eacb1fcc0fb57f621c0610ad8caba61b08d459072c48e47a2b5170514f91:log:93', 'hash': '0xc297eacb1fcc0fb57f621c0610ad8caba61b08d459072c48e47a2b5170514f91', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 185179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x10d788d9fb00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:28:16.000Z'}}, {'blockNum': '0x7f584f', 'uniqueId': '0x8011d4793474368e91a24dcefa5a093ebeee8b577521877bec4b94d4f7eaadb2:log:11', 'hash': '0x8011d4793474368e91a24dcefa5a093ebeee8b577521877bec4b94d4f7eaadb2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 383242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x22db0c53ca00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:28:58.000Z'}}, {'blockNum': '0x7f5851', 'uniqueId': '0x9015e483b4bd5b5af95aaf00b0343128ead1dcc48d9ee2c6aefe536da0d9dac3:log:106', 'hash': '0x9015e483b4bd5b5af95aaf00b0343128ead1dcc48d9ee2c6aefe536da0d9dac3', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 56630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0526851a7600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:29:49.000Z'}}, {'blockNum': '0x7f5860', 'uniqueId': '0x6dc44fbec4e3a9cb277105a8f8a3d6753f7f883c572ff477bd9b1857c8b35199:log:94', 'hash': '0x6dc44fbec4e3a9cb277105a8f8a3d6753f7f883c572ff477bd9b1857c8b35199', 'from': '0x64b8b7632fd1d57fec6630019082898f3a7f8d0d', 'to': '0xf96d8d1ee7ebf60dcc39aeb1427a2c7f712e1db0', 'value': 1627.24771183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x25e326f56f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:34:23.000Z'}}, {'blockNum': '0x7f586e', 'uniqueId': '0x0b6b68a4442d510872b90cefcb229fe01eb6ef2f4e914cbd24484e11ebe01b59:log:2', 'hash': '0x0b6b68a4442d510872b90cefcb229fe01eb6ef2f4e914cbd24484e11ebe01b59', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 162423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0ec5b4859700', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:38:47.000Z'}}, {'blockNum': '0x7f586f', 'uniqueId': '0x1524b2b70c8bd8f28db75867cb5209643349506ba1c35e8889a01da1daf23640:log:2', 'hash': '0x1524b2b70c8bd8f28db75867cb5209643349506ba1c35e8889a01da1daf23640', 'from': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 130257.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd8cb33a180', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:39:01.000Z'}}, {'blockNum': '0x7f5884', 'uniqueId': '0x27da4f316cf1a3859ccacdb273a78b537dea8c1abbd6805577c49a27c7756762:log:10', 'hash': '0x27da4f316cf1a3859ccacdb273a78b537dea8c1abbd6805577c49a27c7756762', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x02ef943d4c8333bfd6304dedf8b027cf2018f656', 'value': 94061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088e073fcd00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:43:12.000Z'}}, {'blockNum': '0x7f5886', 'uniqueId': '0xe7cc931e385afbfa39945353d57ebe4ab34e1e15ed280fc9344da845344c349f:log:33', 'hash': '0xe7cc931e385afbfa39945353d57ebe4ab34e1e15ed280fc9344da845344c349f', 'from': '0x1ff9aeebc41b41af5df06123529a177f1a95827f', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 1600.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2542880380', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:43:43.000Z'}}, {'blockNum': '0x7f588b', 'uniqueId': '0x88a94f5222d80aad0ededabc805e4d15e480c50227eb9fbe2bb630be1780c3bb:log:33', 'hash': '0x88a94f5222d80aad0ededabc805e4d15e480c50227eb9fbe2bb630be1780c3bb', 'from': '0x87181d0ad39fada24c3750b6a2e6b7ed1ce2fab0', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1016.65897187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x17abc27ae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:46:07.000Z'}}, {'blockNum': '0x7f5892', 'uniqueId': '0xa73ea9233b92a1b2b8741a9a3b5080f688b731b5bcd228081f7e163a2915e90c:log:101', 'hash': '0xa73ea9233b92a1b2b8741a9a3b5080f688b731b5bcd228081f7e163a2915e90c', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 9100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xd3e03a0c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:48:14.000Z'}}, {'blockNum': '0x7f5894', 'uniqueId': '0x6e2645795e87554a24fefd61dc9cf705015a7e4803730d36babc24db9cc27cbe:log:61', 'hash': '0x6e2645795e87554a24fefd61dc9cf705015a7e4803730d36babc24db9cc27cbe', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x4346e1a1b9bc181773878e1745d6b9aee8fb1320', 'value': 7000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xa2fb405800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:48:48.000Z'}}, {'blockNum': '0x7f5894', 'uniqueId': '0x2528005ca0d22586352b557a5ef17617c383b9ac195f9895af0e3fb6f60bc7b0:log:95', 'hash': '0x2528005ca0d22586352b557a5ef17617c383b9ac195f9895af0e3fb6f60bc7b0', 'from': '0xa77cc27c89324245991576bef4be1d655a503ad4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 1611.4326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2584e30360', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:48:48.000Z'}}, {'blockNum': '0x7f5898', 'uniqueId': '0x27dfc1f9080148c722c3e11ed1efaa7021e7dd481d84ed750de7169ed9eececd:log:0', 'hash': '0x27dfc1f9080148c722c3e11ed1efaa7021e7dd481d84ed750de7169ed9eececd', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 162423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0ec5b4859700', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:50:14.000Z'}}, {'blockNum': '0x7f58b5', 'uniqueId': '0x819bd1823314ac7204ab8ab86855f24a2c41e335b2a6a06de4ab8e8ce035fdda:log:22', 'hash': '0x819bd1823314ac7204ab8ab86855f24a2c41e335b2a6a06de4ab8e8ce035fdda', 'from': '0x02ef943d4c8333bfd6304dedf8b027cf2018f656', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 94061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088e073fcd00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:58:53.000Z'}}, {'blockNum': '0x7f58d5', 'uniqueId': '0xafd64db9960b8d38be725abb6b6a39d6094daaee0f51387075ab86b8113377ce:log:131', 'hash': '0xafd64db9960b8d38be725abb6b6a39d6094daaee0f51387075ab86b8113377ce', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:07:46.000Z'}}, {'blockNum': '0x7f58fa', 'uniqueId': '0x82a613259c1dd01548b40b57cc1d1e8979e1c370a240b71b7e4f26bbcb391763:log:129', 'hash': '0x82a613259c1dd01548b40b57cc1d1e8979e1c370a240b71b7e4f26bbcb391763', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:15:58.000Z'}}, {'blockNum': '0x7f58fc', 'uniqueId': '0x8945eab5c58eadd49cec2219f5c9cad1fea9291df40287926f85a6c79e6ae862:log:110', 'hash': '0x8945eab5c58eadd49cec2219f5c9cad1fea9291df40287926f85a6c79e6ae862', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:16:21.000Z'}}, {'blockNum': '0x7f58ff', 'uniqueId': '0x182dd9e2a1ae0cde47b3f95e3858e0a19e6afd0e249984f9eece112a9646c765:log:82', 'hash': '0x182dd9e2a1ae0cde47b3f95e3858e0a19e6afd0e249984f9eece112a9646c765', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:17:17.000Z'}}, {'blockNum': '0x7f591a', 'uniqueId': '0x395de0fa73be10b30e69e8ac0ab6947eb42a668ef46bf17171f83cba6126a2da:log:79', 'hash': '0x395de0fa73be10b30e69e8ac0ab6947eb42a668ef46bf17171f83cba6126a2da', 'from': '0x37d7be6ac2b154530f20fe465cba4cd44c6c3033', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 1413.16040081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x20e717a591', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:25:05.000Z'}}, {'blockNum': '0x7f594b', 'uniqueId': '0xad6e485e0ade9ac7ca2c1c12cc5cc294a7e34bf88799112e632570c382077883:log:8', 'hash': '0xad6e485e0ade9ac7ca2c1c12cc5cc294a7e34bf88799112e632570c382077883', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 89764.0021217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0829fb2560ca', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:34:35.000Z'}}, {'blockNum': '0x7f5961', 'uniqueId': '0x23ff43c62afbbf5ba81e88af250c2f395307d581814668e8d7f5ac70772be797:log:15', 'hash': '0x23ff43c62afbbf5ba81e88af250c2f395307d581814668e8d7f5ac70772be797', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x26414eeec7a87301f561adcf42ee4ce1a46d6f78', 'value': 29984.9191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02ba240b8f70', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:38:18.000Z'}}, {'blockNum': '0x7f5974', 'uniqueId': '0xf24fc575b94a9cc510a8ec77bcea7153adf289fa568a1b425f08436f15d8afad:log:56', 'hash': '0xf24fc575b94a9cc510a8ec77bcea7153adf289fa568a1b425f08436f15d8afad', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:41:51.000Z'}}, {'blockNum': '0x7f59ab', 'uniqueId': '0xa154eb45e8fa29b23b4a64172ea3f6f70bc2fb1469bce5152371deeea3be6829:log:44', 'hash': '0xa154eb45e8fa29b23b4a64172ea3f6f70bc2fb1469bce5152371deeea3be6829', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 19323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01c1e60e1b00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:53:07.000Z'}}, {'blockNum': '0x7f59b7', 'uniqueId': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee:log:83', 'hash': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 188.01490659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0460a7fae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:56:13.000Z'}}, {'blockNum': '0x7f59b7', 'uniqueId': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee:log:85', 'hash': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 188.01490659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0460a7fae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:56:13.000Z'}}, {'blockNum': '0x7f59b7', 'uniqueId': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee:log:90', 'hash': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x1c6c712b1f4a7c263b1dbd8f97fb447c945d3b9a', 'value': 188.01490659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0460a7fae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:56:13.000Z'}}, {'blockNum': '0x7f59f5', 'uniqueId': '0x09ef93f5ad87c7e25bc4a6e4eb685454404bd3b2d3679db409aa6edc6d92f119:log:41', 'hash': '0x09ef93f5ad87c7e25bc4a6e4eb685454404bd3b2d3679db409aa6edc6d92f119', 'from': '0x8aa026adeb26d8e45e5c7dd04fb819ff9f015c69', 'to': '0xa5ad0e32ac5b7b4223c89dbb11054283c1d4efb2', 'value': 1402.04625002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x20a4d8cc6a', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:11:09.000Z'}}, {'blockNum': '0x7f59f7', 'uniqueId': '0x13a1099402ec09c563f376207b98e147090a6281dc2a9a37b5fa7e80fdb36369:log:2', 'hash': '0x13a1099402ec09c563f376207b98e147090a6281dc2a9a37b5fa7e80fdb36369', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 49941.96541891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x048acd4f91c3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:11:38.000Z'}}, {'blockNum': '0x7f5a1b', 'uniqueId': '0xd6d491c87382e15d76f07ef5016e1509c362fa1a0db7c07c0d977a1011987322:log:158', 'hash': '0xd6d491c87382e15d76f07ef5016e1509c362fa1a0db7c07c0d977a1011987322', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:19:54.000Z'}}, {'blockNum': '0x7f5a2d', 'uniqueId': '0x3df0c94c987dcb1a98558e6a61171817df7c9588d44a9df4783b812ff18c6f2f:log:124', 'hash': '0x3df0c94c987dcb1a98558e6a61171817df7c9588d44a9df4783b812ff18c6f2f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:22:10.000Z'}}, {'blockNum': '0x7f5a30', 'uniqueId': '0x430325491c14bfff580ff958d0a8b31e9fb6487f5f7a9933896ec7f53bc070fd:log:32', 'hash': '0x430325491c14bfff580ff958d0a8b31e9fb6487f5f7a9933896ec7f53bc070fd', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:23:16.000Z'}}, {'blockNum': '0x7f5a33', 'uniqueId': '0x177f1044fe7e5ad508ef538f006b338f84484711f0e8700a58f1036c74dc64b9:log:16', 'hash': '0x177f1044fe7e5ad508ef538f006b338f84484711f0e8700a58f1036c74dc64b9', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 49941.96541891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x048acd4f91c3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:23:58.000Z'}}, {'blockNum': '0x7f5a35', 'uniqueId': '0xaefe4aeef8087b50c08b05e778a60c35af831c11e95eb9140685062a7b6ad710:log:60', 'hash': '0xaefe4aeef8087b50c08b05e778a60c35af831c11e95eb9140685062a7b6ad710', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:24:05.000Z'}}, {'blockNum': '0x7f5a5d', 'uniqueId': '0x701adfc41df50c503b60daf1f4786dac50c333f8ed2e32384f5b3df1198f726a:log:13', 'hash': '0x701adfc41df50c503b60daf1f4786dac50c333f8ed2e32384f5b3df1198f726a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'value': 166383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0f21e7f60f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:31:50.000Z'}}, {'blockNum': '0x7f5a73', 'uniqueId': '0x1918b5f56a6858d1568a2f357fae9e9072c4919713370dc4a98c60145147be66:log:115', 'hash': '0x1918b5f56a6858d1568a2f357fae9e9072c4919713370dc4a98c60145147be66', 'from': '0xcbb9e4ebdee8acf1004d2869b7329ae25733e884', 'to': '0xaf7a95cee2a925f1f40b6eed33c929af63f4bb56', 'value': 56173.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x051be26c3c40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:36:42.000Z'}}, {'blockNum': '0x7f5a77', 'uniqueId': '0xaac8743d8b263639997e679968df5317aedf5f05a50c81e1f8c632d91fec9d40:log:22', 'hash': '0xaac8743d8b263639997e679968df5317aedf5f05a50c81e1f8c632d91fec9d40', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 33642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x030f49f22a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:37:32.000Z'}}, {'blockNum': '0x7f5a88', 'uniqueId': '0x54cd99f3257fbcc1d1e86ad5405d56bb656c1ddc93f73b1c41e48961752b1aa7:log:17', 'hash': '0x54cd99f3257fbcc1d1e86ad5405d56bb656c1ddc93f73b1c41e48961752b1aa7', 'from': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 166383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0f21e7f60f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:39:54.000Z'}}, {'blockNum': '0x7f5a88', 'uniqueId': '0x6934a09b922ad1e07200556c9bcae3a760e6224666fed5ea50f418e5da250669:log:18', 'hash': '0x6934a09b922ad1e07200556c9bcae3a760e6224666fed5ea50f418e5da250669', 'from': '0xa18c51606d69f16efeafa8b88608aeca23a99295', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 1067.18000085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x18d8e373d5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:39:54.000Z'}}, {'blockNum': '0x7f5a8a', 'uniqueId': '0x434927853e38e4e2431417f4ce454c3c845f4cc86f470023ca55f4ff7f5e64be:log:47', 'hash': '0x434927853e38e4e2431417f4ce454c3c845f4cc86f470023ca55f4ff7f5e64be', 'from': '0xaf7a95cee2a925f1f40b6eed33c929af63f4bb56', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56173.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x051be26c3c40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:40:04.000Z'}}, {'blockNum': '0x7f5a90', 'uniqueId': '0xf4a93adc5280bfdd37fb9dd2271edd4d3db80b23f8fc2cf1f37fb106dcda63b3:log:7', 'hash': '0xf4a93adc5280bfdd37fb9dd2271edd4d3db80b23f8fc2cf1f37fb106dcda63b3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 270355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1896b15fb300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:41:06.000Z'}}, {'blockNum': '0x7f5a93', 'uniqueId': '0x6f9747f4299d4d3afcf8689a02b409f69428bdd476f9e139c7565d7e253fa042:log:2', 'hash': '0x6f9747f4299d4d3afcf8689a02b409f69428bdd476f9e139c7565d7e253fa042', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 31323.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02d94e9beb80', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:41:26.000Z'}}, {'blockNum': '0x7f5a93', 'uniqueId': '0x3e57a1c6424fbb1a91325ca774b409533892396ac754ff78ba4946b626cfdcb5:log:99', 'hash': '0x3e57a1c6424fbb1a91325ca774b409533892396ac754ff78ba4946b626cfdcb5', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:41:26.000Z'}}, {'blockNum': '0x7f5a93', 'uniqueId': '0xf72b1169d158ea013edd4955c4e6f241588559433d8d78664d87f9901ca67961:log:101', 'hash': '0xf72b1169d158ea013edd4955c4e6f241588559433d8d78664d87f9901ca67961', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:41:26.000Z'}}, {'blockNum': '0x7f5a9b', 'uniqueId': '0x4211285b9b1aa98def3dcf7297d4068e6630db56496b32f6127630c0acc7711e:log:95', 'hash': '0x4211285b9b1aa98def3dcf7297d4068e6630db56496b32f6127630c0acc7711e', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 33642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x030f49f22a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:43:39.000Z'}}, {'blockNum': '0x7f5a9d', 'uniqueId': '0x60a6dd33fa359598437d114b88f0d8f5c5979b72819e7aa46d4b6a0d0c1ea08e:log:8', 'hash': '0x60a6dd33fa359598437d114b88f0d8f5c5979b72819e7aa46d4b6a0d0c1ea08e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 29973.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02b9dffb6580', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:43:59.000Z'}}, {'blockNum': '0x7f5aa2', 'uniqueId': '0x310acbe0880c729bef1abd4986cc76fbd6862376c8a163c8de52104ac3b65dc7:log:114', 'hash': '0x310acbe0880c729bef1abd4986cc76fbd6862376c8a163c8de52104ac3b65dc7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:45:36.000Z'}}, {'blockNum': '0x7f5aae', 'uniqueId': '0xe3d25bca73afce29297ea06570b68f83a8662dd3a84edddbe97d5bb6c6200939:log:2', 'hash': '0xe3d25bca73afce29297ea06570b68f83a8662dd3a84edddbe97d5bb6c6200939', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'value': 163274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0ed984e08a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:48:38.000Z'}}, {'blockNum': '0x7f5acb', 'uniqueId': '0xb29c5f2c329fb43822210cc644b87782efbe15c6f1ce99779ede4eb465784322:log:116', 'hash': '0xb29c5f2c329fb43822210cc644b87782efbe15c6f1ce99779ede4eb465784322', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 31323.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02d94e9beb80', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:56:38.000Z'}}, {'blockNum': '0x7f5ad3', 'uniqueId': '0x1ae62c6c556a2546e96858e3baf5594b6e9fdf9ab269b882ba93ecbba57ddb57:log:52', 'hash': '0x1ae62c6c556a2546e96858e3baf5594b6e9fdf9ab269b882ba93ecbba57ddb57', 'from': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 29973.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02b9dffb6580', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:57:54.000Z'}}, {'blockNum': '0x7f5ad5', 'uniqueId': '0x6ad33e0b0bd70829607bac75170df34aa6d7f0ab167b3182539eea380ae49fe7:log:38', 'hash': '0x6ad33e0b0bd70829607bac75170df34aa6d7f0ab167b3182539eea380ae49fe7', 'from': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 163274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0ed984e08a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:58:09.000Z'}}, {'blockNum': '0x7f5b04', 'uniqueId': '0x8bae284fb269619c6c189231129efdc6446d849bbc5caa8d380cb8d44be50f60:log:64', 'hash': '0x8bae284fb269619c6c189231129efdc6446d849bbc5caa8d380cb8d44be50f60', 'from': '0x4a6f0b865abdd8fc196d8b4e8b36a0c57ba72e40', 'to': '0xf050eb155416bdf5c34280e73a2a88a07efe3d25', 'value': 1750.85702986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x28c3ebcf4a', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T04:09:35.000Z'}}, {'blockNum': '0x7f5b19', 'uniqueId': '0xdf24e9903cf23692b9762efdbdd324f6381f148099c24ebe70e9aa7c9ffa2d21:log:77', 'hash': '0xdf24e9903cf23692b9762efdbdd324f6381f148099c24ebe70e9aa7c9ffa2d21', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x2036b75b900f5232de980fcb8d3aa1392e1be683', 'value': 3902.975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x5adf8b3960', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T04:14:12.000Z'}}, {'blockNum': '0x7f5bb2', 'uniqueId': '0x4f70d487d79a5866a5a14431cabfaef57bdfaf2fffe64f53cc2f4c4db793d3d6:log:78', 'hash': '0x4f70d487d79a5866a5a14431cabfaef57bdfaf2fffe64f53cc2f4c4db793d3d6', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T04:48:40.000Z'}}, {'blockNum': '0x7f5bd7', 'uniqueId': '0x0fa19d2c65386529f27317d9b1ccc49ac69c3f6d2b39f26b03ccecfc8a911861:log:88', 'hash': '0x0fa19d2c65386529f27317d9b1ccc49ac69c3f6d2b39f26b03ccecfc8a911861', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T04:57:00.000Z'}}, {'blockNum': '0x7f5bf6', 'uniqueId': '0x25cf0a1bc4c0e126a37ff7d04c7bae816212183f79a2571e889aeba58b4bb170:log:17', 'hash': '0x25cf0a1bc4c0e126a37ff7d04c7bae816212183f79a2571e889aeba58b4bb170', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x215c8efd4358a5212255cc033cc371e1c82ddf90', 'value': 4807.09640408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x6fec8700d8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:02:23.000Z'}}, {'blockNum': '0x7f5c01', 'uniqueId': '0x76e679387d28fa324a5b901a32dafeaa65ff05f9fe809d6b062339d804106625:log:54', 'hash': '0x76e679387d28fa324a5b901a32dafeaa65ff05f9fe809d6b062339d804106625', 'from': '0x215c8efd4358a5212255cc033cc371e1c82ddf90', 'to': '0x81fa5e19f1d7535b9a82d37f601de49d3e4fbeb5', 'value': 5207.09640408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x793cb690d8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:03:52.000Z'}}, {'blockNum': '0x7f5c1d', 'uniqueId': '0xfb7e9b7f4383c3732b8cebc48fbc9ff2a46290c0a5d1b9c6df6d024f4877bcd3:log:19', 'hash': '0xfb7e9b7f4383c3732b8cebc48fbc9ff2a46290c0a5d1b9c6df6d024f4877bcd3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd03512e7935802e0fb9ced7ad5843ed249013a03', 'value': 63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0177825f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:10:49.000Z'}}, {'blockNum': '0x7f5c32', 'uniqueId': '0xc57d5e03f769005ee610601b9d3a277bae7697dfccf914db10b0a873cb196f5a:log:38', 'hash': '0xc57d5e03f769005ee610601b9d3a277bae7697dfccf914db10b0a873cb196f5a', 'from': '0x349808181eb8be943ccea6e780235e9c294c19fe', 'to': '0xce58cb5735f880a8d1c7d308e491fb1b421be231', 'value': 60014.52561511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05755272b467', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:16:12.000Z'}}, {'blockNum': '0x7f5c40', 'uniqueId': '0xccd9b7bcac1869399756a140071f348527403ab799520121d449e3e7ed7075ca:log:10', 'hash': '0xccd9b7bcac1869399756a140071f348527403ab799520121d449e3e7ed7075ca', 'from': '0xce58cb5735f880a8d1c7d308e491fb1b421be231', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 60014.52561511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05755272b467', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:19:56.000Z'}}, {'blockNum': '0x7f5c75', 'uniqueId': '0x9882d305c1c167af48693f205f38985e00a50692fdb934bd34ed7eda40c9ee05:log:30', 'hash': '0x9882d305c1c167af48693f205f38985e00a50692fdb934bd34ed7eda40c9ee05', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 16410, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x017e1338da00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:30:32.000Z'}}, {'blockNum': '0x7f5c76', 'uniqueId': '0x943aa5f7fcc688f3fdbfb16a676caf591dd7372008485974cf7644e7efabdbd2:log:19', 'hash': '0x943aa5f7fcc688f3fdbfb16a676caf591dd7372008485974cf7644e7efabdbd2', 'from': '0xd03512e7935802e0fb9ced7ad5843ed249013a03', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0177825f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:30:42.000Z'}}, {'blockNum': '0x7f5cb7', 'uniqueId': '0x5c2c830ae47434a64c85d364e0f5caa74455c6d1880102a04f356d6169586ff3:log:2', 'hash': '0x5c2c830ae47434a64c85d364e0f5caa74455c6d1880102a04f356d6169586ff3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'value': 128323.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0babc3a9d380', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:43:39.000Z'}}, {'blockNum': '0x7f5ced', 'uniqueId': '0x233ca6a3ba90965d01a5a3497bf965edf6d0de6f9080a98add1b2722f0ac715c:log:25', 'hash': '0x233ca6a3ba90965d01a5a3497bf965edf6d0de6f9080a98add1b2722f0ac715c', 'from': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 128323.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0babc3a9d380', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:53:50.000Z'}}, {'blockNum': '0x7f5cf7', 'uniqueId': '0x4a81c1184343dc4426dd1535ce07dc477bde55e8f2dbef6794133e9732647c32:log:2', 'hash': '0x4a81c1184343dc4426dd1535ce07dc477bde55e8f2dbef6794133e9732647c32', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2341bc4817f1ca9ea7853541900aea1f9fe72e34', 'value': 761.256096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x11b9709e80', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:57:46.000Z'}}]}}
Number of returned transfers: 550
Answer is complete
symbol SNT
group CPS
date 2019-08-22
hour 20:00
exchange binance
Name: 407, dtype: object
HERE
Symbol: SNT, Contract: 0x744d70fdbe2ba4cf95131626614a1763df805b9e
Datetime timestamps: 2019-08-22 20:00:00 2019-08-22 08:00:00 2019-08-23 08:00:00
Unix timestamps: 1566453600.0 1566540000.0
Hex Block Numbers: 0x802612 0x803f44
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x80265b', 'uniqueId': '0x6ff0e40b3a236ed1efe9989bf4610b3c256c7d265a9e3f3383f9788069204c47:log:25', 'hash': '0x6ff0e40b3a236ed1efe9989bf4610b3c256c7d265a9e3f3383f9788069204c47', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x1958d9f482a95610012a4407d8f859962617f405', 'value': 59967.2696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb2d50afcfd210e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:14:08.000Z'}}, {'blockNum': '0x802675', 'uniqueId': '0xe43860ea4c7ff98126fd2f7077bc5b1be6f7f531f1fd769eb4ff86d72861e23e:log:48', 'hash': '0xe43860ea4c7ff98126fd2f7077bc5b1be6f7f531f1fd769eb4ff86d72861e23e', 'from': '0x754f3e1124b8443b9467e7945be34a59f29b43b2', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x31d1afdeede7fc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:19:28.000Z'}}, {'blockNum': '0x8026ae', 'uniqueId': '0xe534009a3e0afefe0b1f6c0e845ed59f7dbab7e5bc6e5a84c4a05737bb675c43:log:99', 'hash': '0xe534009a3e0afefe0b1f6c0e845ed59f7dbab7e5bc6e5a84c4a05737bb675c43', 'from': '0xa11618bba2eb61cf30c9bf360de802298dfdf2b8', 'to': '0x5d82428fa87f7a6d3953781658dfeef40a8e4b3f', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x69e10de76676d0800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:34:17.000Z'}}, {'blockNum': '0x8026b3', 'uniqueId': '0x5fbef8efe7131b0f79f1f9a7a199fd0ae93d9966eacb2b9e427e93a6f9ee9c65:log:138', 'hash': '0x5fbef8efe7131b0f79f1f9a7a199fd0ae93d9966eacb2b9e427e93a6f9ee9c65', 'from': '0xf3a71cc1be5ce833c471e3f25aa391f9cd56e1aa', 'to': '0xbac772ca07b12475e31ef61bf296738da9c05bd0', 'value': 47.749462068089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0296a82ac3706f2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:35:56.000Z'}}, {'blockNum': '0x8026d9', 'uniqueId': '0xb42c57ee8e50454a14e9adfe4823841d2df21baa7599f89ec0e7c844672eceeb:log:39', 'hash': '0xb42c57ee8e50454a14e9adfe4823841d2df21baa7599f89ec0e7c844672eceeb', 'from': '0x754f3e1124b8443b9467e7945be34a59f29b43b2', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 275.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ef5fdebcb984e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:43:19.000Z'}}, {'blockNum': '0x8026f5', 'uniqueId': '0x6353063062f24a43e5b96f6835c7b9841918d24796a8a40a388c79635421f470:log:48', 'hash': '0x6353063062f24a43e5b96f6835c7b9841918d24796a8a40a388c79635421f470', 'from': '0x5d82428fa87f7a6d3953781658dfeef40a8e4b3f', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x69e10de76676d0800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:48:22.000Z'}}, {'blockNum': '0x80271c', 'uniqueId': '0x2f00e595cef718b48aaa355166d0166ffe745048f186578819309bdac9f3a792:log:35', 'hash': '0x2f00e595cef718b48aaa355166d0166ffe745048f186578819309bdac9f3a792', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x754f3e1124b8443b9467e7945be34a59f29b43b2', 'value': 589.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ffa81cc936aee0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:59:11.000Z'}}, {'blockNum': '0x80271c', 'uniqueId': '0xad5f423a742099853b77137bed3982f8159ebdff14fd3abc1b46232bef4bcadc:log:53', 'hash': '0xad5f423a742099853b77137bed3982f8159ebdff14fd3abc1b46232bef4bcadc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd175e14675b048668a8ee7b471ccd8233f5ebc34', 'value': 1222.31292439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4242ffd8a42ad97c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:59:11.000Z'}}, {'blockNum': '0x802769', 'uniqueId': '0xe3ff401c7fcc834ddbd79319f177ee196c3eb876e206346eb57ba10cff8b85d3:log:2', 'hash': '0xe3ff401c7fcc834ddbd79319f177ee196c3eb876e206346eb57ba10cff8b85d3', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 271726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x398a4bc515f360f80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T07:16:57.000Z'}}, {'blockNum': '0x802797', 'uniqueId': '0x400c1fabc5d7c8af094a4a6293d210c6e0da73ff843e93081dc677a01128089c:log:1', 'hash': '0x400c1fabc5d7c8af094a4a6293d210c6e0da73ff843e93081dc677a01128089c', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x754f3e1124b8443b9467e7945be34a59f29b43b2', 'value': 593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2025873626bea40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T07:28:54.000Z'}}, {'blockNum': '0x8027b2', 'uniqueId': '0xa263f7abdd3edd3a286686872e9d59b560f80bea3c9c7d30df2fd6bdb0e1421d:log:2', 'hash': '0xa263f7abdd3edd3a286686872e9d59b560f80bea3c9c7d30df2fd6bdb0e1421d', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1c7ac55f29ec70f9b76b502085bbcd87436afd1c', 'value': 3661001.67026328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03073f4c580e4b43e76000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T07:34:13.000Z'}}, {'blockNum': '0x8027d0', 'uniqueId': '0x14f30a896e972008d9a12bf75e27d34d16446b88bba449e7965dca6fd8b6b063:log:147', 'hash': '0x14f30a896e972008d9a12bf75e27d34d16446b88bba449e7965dca6fd8b6b063', 'from': '0x754f3e1124b8443b9467e7945be34a59f29b43b2', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 1182.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x40200902ba29920000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T07:39:48.000Z'}}, {'blockNum': '0x8027d1', 'uniqueId': '0xf86a209ed080df9fac4ecc9642ac8a9fb860f76bcfb83041183474374c3e2368:log:0', 'hash': '0xf86a209ed080df9fac4ecc9642ac8a9fb860f76bcfb83041183474374c3e2368', 'from': '0x1c7ac55f29ec70f9b76b502085bbcd87436afd1c', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 3661001.67026328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03073f4c580e4b43e76000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T07:40:03.000Z'}}, {'blockNum': '0x8027d3', 'uniqueId': '0xbf5248d64635f1e5c1f34d2e3133462c7def4c3a82b09fd9fb64f0a5f738a6a1:log:81', 'hash': '0xbf5248d64635f1e5c1f34d2e3133462c7def4c3a82b09fd9fb64f0a5f738a6a1', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 271726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x398a4bc515f360f80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T07:40:15.000Z'}}, {'blockNum': '0x802878', 'uniqueId': '0xf0369c8ae1991e26f0debc8fbc0edfa3c2fa83fad915d93455cfb18aea0c310b:log:3', 'hash': '0xf0369c8ae1991e26f0debc8fbc0edfa3c2fa83fad915d93455cfb18aea0c310b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1b59f24e9bbc0a04909af81fb325d78fbbf495ec', 'value': 400000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x54b40b1f852bda000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T08:14:38.000Z'}}, {'blockNum': '0x80288f', 'uniqueId': '0xaf8680944159df476fb8bbda63ca6f4c23ee0b0ffc279616463c03fd541b6d2d:log:1', 'hash': '0xaf8680944159df476fb8bbda63ca6f4c23ee0b0ffc279616463c03fd541b6d2d', 'from': '0x1b59f24e9bbc0a04909af81fb325d78fbbf495ec', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 400000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x54b40b1f852bda000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T08:20:05.000Z'}}, {'blockNum': '0x8028c5', 'uniqueId': '0xea69e73feee8683f9f0c1374c2f08f148898183670417a8394c81b1a890afdc3:log:68', 'hash': '0xea69e73feee8683f9f0c1374c2f08f148898183670417a8394c81b1a890afdc3', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xdba5803f0f8a536fada095c2cfc2ef4673006179', 'value': 330.21896659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11e6b57089dd88ec00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T08:30:27.000Z'}}, {'blockNum': '0x80294a', 'uniqueId': '0x62aed0b82823869552fc5a2d630dcaf6bcf75af88e8b8b1384c71455c0a208d3:log:113', 'hash': '0x62aed0b82823869552fc5a2d630dcaf6bcf75af88e8b8b1384c71455c0a208d3', 'from': '0xdba5803f0f8a536fada095c2cfc2ef4673006179', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 330.21896659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11e6b57089dd88ec00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T08:57:16.000Z'}}, {'blockNum': '0x802991', 'uniqueId': '0x9ce73f753d4b8130d5fb1024d0815295a6e0d475f5750d59fa121a217c4453eb:log:1', 'hash': '0x9ce73f753d4b8130d5fb1024d0815295a6e0d475f5750d59fa121a217c4453eb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0fea8a99e2ab08a0682e92eef13e9b321a9c9a0e', 'value': 69937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ecf4ad88de4ae240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:12:48.000Z'}}, {'blockNum': '0x802992', 'uniqueId': '0xe378471203737dee344ffe9f174b2204f2189114ea3c379db011b554689a53ae:log:0', 'hash': '0xe378471203737dee344ffe9f174b2204f2189114ea3c379db011b554689a53ae', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 220000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2e963951560b51800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:13:06.000Z'}}, {'blockNum': '0x80299d', 'uniqueId': '0x82abc6e28fd09465c761557ce56345bb7d2e391d4a0d5347f1c16891aa194f95:log:2', 'hash': '0x82abc6e28fd09465c761557ce56345bb7d2e391d4a0d5347f1c16891aa194f95', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x2f6355703674c89a94a9bc18d75a41356bc062dd', 'value': 3799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcdf1b744090cfc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:14:51.000Z'}}, {'blockNum': '0x80299d', 'uniqueId': '0x3eddacf8317cee22de57aad7dfcb5a8b768019cdb86b2995efedd264833e519b:log:3', 'hash': '0x3eddacf8317cee22de57aad7dfcb5a8b768019cdb86b2995efedd264833e519b', 'from': '0x0fea8a99e2ab08a0682e92eef13e9b321a9c9a0e', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 69937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ecf4ad88de4ae240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:14:51.000Z'}}, {'blockNum': '0x8029a2', 'uniqueId': '0x5c35c4749b6945061fa843bd167b25accb5742d9c548e41a5bd72c4edc8807a4:log:3', 'hash': '0x5c35c4749b6945061fa843bd167b25accb5742d9c548e41a5bd72c4edc8807a4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0508a457516059a73956122252a1f22cba48298d', 'value': 40872.917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x08a7b9ab518130a88000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:16:19.000Z'}}, {'blockNum': '0x8029ab', 'uniqueId': '0xb5900a4108c51d55de31eced2c5af9d71391082a9222b43557222c8e148461f4:log:97', 'hash': '0xb5900a4108c51d55de31eced2c5af9d71391082a9222b43557222c8e148461f4', 'from': '0xe829f7947175fe6a338344e70aa770a8c134372c', 'to': '0xdb5ac1a559b02e12f29fc0ec0e37be8e046def49', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:18:36.000Z'}}, {'blockNum': '0x8029b2', 'uniqueId': '0x918e57b313492ddd3a28a37d0b3b75d12e8aa587e6cc3ec58570b7b617a7c294:log:4', 'hash': '0x918e57b313492ddd3a28a37d0b3b75d12e8aa587e6cc3ec58570b7b617a7c294', 'from': '0x0508a457516059a73956122252a1f22cba48298d', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 40872.917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x08a7b9ab518130a88000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:20:14.000Z'}}, {'blockNum': '0x8029b5', 'uniqueId': '0x6f050f4e7b8dac3bf959144e11ebb7db8ada0d8dd25db5e1e9bb5af038270140:log:2', 'hash': '0x6f050f4e7b8dac3bf959144e11ebb7db8ada0d8dd25db5e1e9bb5af038270140', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 220000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2e963951560b51800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:21:04.000Z'}}, {'blockNum': '0x8029bb', 'uniqueId': '0x9abe7cd8bd2a2474e5c655839e388b097dd99ac7b176a570ddefa519e077dcec:log:0', 'hash': '0x9abe7cd8bd2a2474e5c655839e388b097dd99ac7b176a570ddefa519e077dcec', 'from': '0x2f6355703674c89a94a9bc18d75a41356bc062dd', 'to': '0x2724a9fed47d947b33660ce0ee0d150c6ee18c90', 'value': 3799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcdf1b744090cfc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:21:41.000Z'}}, {'blockNum': '0x8029f8', 'uniqueId': '0xa6968ec8d0eb2d55398469d0b3d01f2de8a930deeaebcc76075b197942e37a54:log:4', 'hash': '0xa6968ec8d0eb2d55398469d0b3d01f2de8a930deeaebcc76075b197942e37a54', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfc573e8059e0cda91fa70866e34e94d77d0c78b0', 'value': 49937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a931716fa6f49a40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:33:01.000Z'}}, {'blockNum': '0x802a14', 'uniqueId': '0xfd66125831217802fead5da071824e2ef59ffe8e8cc92b5a88fc9b75e8a8b841:log:12', 'hash': '0xfd66125831217802fead5da071824e2ef59ffe8e8cc92b5a88fc9b75e8a8b841', 'from': '0xb8e7b196d974342125c1814a9eb6fb0c969f3feb', 'to': '0xc7f9fd30fcd6e3c80ec7e3e9e41c135a3bd46208', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:38:51.000Z'}}, {'blockNum': '0x802a20', 'uniqueId': '0xccf03d07e88fbb0b813932a3d2cf10ab7e9f63505b47c2c15d009191b6270b97:log:110', 'hash': '0xccf03d07e88fbb0b813932a3d2cf10ab7e9f63505b47c2c15d009191b6270b97', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x9bb09599c3d0e531a3671144baf4bedc380924f7', 'value': 6371.8932425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01596bc8485104742800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:42:27.000Z'}}, {'blockNum': '0x802a38', 'uniqueId': '0xc53672d00945213296030dbef1d01c946e48fe2367c6e485be195b711f1e04a6:log:1', 'hash': '0xc53672d00945213296030dbef1d01c946e48fe2367c6e485be195b711f1e04a6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 8151.698282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01b9e789fdee3408a000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:47:23.000Z'}}, {'blockNum': '0x802a59', 'uniqueId': '0x22989c6607d08ba62daa70988aa3252715b8d1006ba2f1d362a452df09349f63:log:19', 'hash': '0x22989c6607d08ba62daa70988aa3252715b8d1006ba2f1d362a452df09349f63', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x4b0552288ad7bdfc7ecd4b68e989c21b277367cc', 'value': 5718.62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x013601cb7f73e4560000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:57:31.000Z'}}, {'blockNum': '0x802b06', 'uniqueId': '0xd6163ad3cbcdb0211dffa89d5d49d6673f516bd705d7197956c2b8052c119e24:log:0', 'hash': '0xd6163ad3cbcdb0211dffa89d5d49d6673f516bd705d7197956c2b8052c119e24', 'from': '0x2e46956565cebdcbbb39ecd22af02e1916a2fe37', 'to': '0xce474a2582168e0ed0cbf780c179944e11442e8a', 'value': 1469.89436142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4faee1cde09cbdf800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T10:34:37.000Z'}}, {'blockNum': '0x802b09', 'uniqueId': '0xae9dab58504834cdeb77cca5217ca9f7e850879278d4d483e5e009329fc99975:log:0', 'hash': '0xae9dab58504834cdeb77cca5217ca9f7e850879278d4d483e5e009329fc99975', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 105991.9426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1671d5b0515201048000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T10:35:00.000Z'}}, {'blockNum': '0x802b14', 'uniqueId': '0x797c1c600e615794d98605848a90432e1ca29d161ae34cfb588a04e803234bbf:log:43', 'hash': '0x797c1c600e615794d98605848a90432e1ca29d161ae34cfb588a04e803234bbf', 'from': '0x5d0c10ebc713012f82f2859e2f47a9ee8d1318a3', 'to': '0x15e2f19fdeaf67983b335a5ab31aec0881505085', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T10:37:28.000Z'}}, {'blockNum': '0x802b38', 'uniqueId': '0x94b0945a14385df451e19351f176783fae288b44d2f37900007ab7396badcb65:log:67', 'hash': '0x94b0945a14385df451e19351f176783fae288b44d2f37900007ab7396badcb65', 'from': '0x15e2f19fdeaf67983b335a5ab31aec0881505085', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T10:43:35.000Z'}}, {'blockNum': '0x802b3d', 'uniqueId': '0x2786cfe8eea9e28ca64a3cdc44a37e06164645ac577ccaf531f7c9e701ca6475:log:9', 'hash': '0x2786cfe8eea9e28ca64a3cdc44a37e06164645ac577ccaf531f7c9e701ca6475', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x10d4a5e538a0718e37ae333cedfa721c5a009d2e', 'value': 590.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ffd48578426020000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T10:44:17.000Z'}}, {'blockNum': '0x802b48', 'uniqueId': '0xeef12fda5c729c6c16b5d89156ecb7508b799f3f19cf8ddffb3cc8b3ca9107cf:log:27', 'hash': '0xeef12fda5c729c6c16b5d89156ecb7508b799f3f19cf8ddffb3cc8b3ca9107cf', 'from': '0x2ae9a596883947605c654425e6cca6e0da44a9e0', 'to': '0x8e673532276aaad90e7ed82aeb7d832676671fd5', 'value': 6985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x017aa8590be247840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T10:46:16.000Z'}}, {'blockNum': '0x802b5b', 'uniqueId': '0xe0efa63024865416caa4e04a7c3b56b2e5ac791dc8d593cf66a382ecb832e268:log:11', 'hash': '0xe0efa63024865416caa4e04a7c3b56b2e5ac791dc8d593cf66a382ecb832e268', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xc8764a3e765390b1d9642b1b9c1d5488d3e9cde4', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T10:51:07.000Z'}}, {'blockNum': '0x802bad', 'uniqueId': '0x29699bc3b83f9ad3b74844e2fe877881108a3f06dcf35aec384fb95ecaab0d1c:log:42', 'hash': '0x29699bc3b83f9ad3b74844e2fe877881108a3f06dcf35aec384fb95ecaab0d1c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'value': 18172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03d91b28f89e1e700000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T11:09:20.000Z'}}, {'blockNum': '0x802baf', 'uniqueId': '0x986dc332af65553ba1b9c6afce772b71c1c097aa41d82ed974e781a1db228942:log:111', 'hash': '0x986dc332af65553ba1b9c6afce772b71c1c097aa41d82ed974e781a1db228942', 'from': '0xcb7e9e305fa4afa4cf5b414120c560ad3ed75a53', 'to': '0x478a746989ce31623b0e8c919186993b6d2ccd1c', 'value': 66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0393ef1a5127c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T11:09:44.000Z'}}, {'blockNum': '0x802bb6', 'uniqueId': '0x94c4057a43066145dd57501105a145664d6246c201ff3dec8fafa38231e0068d:log:26', 'hash': '0x94c4057a43066145dd57501105a145664d6246c201ff3dec8fafa38231e0068d', 'from': '0xc8764a3e765390b1d9642b1b9c1d5488d3e9cde4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T11:11:09.000Z'}}, {'blockNum': '0x802bb6', 'uniqueId': '0x430e5ec6dfcbd7f60b5e6a8332576a99a97a3131fccdc972e0eb83b21fb8f632:log:32', 'hash': '0x430e5ec6dfcbd7f60b5e6a8332576a99a97a3131fccdc972e0eb83b21fb8f632', 'from': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 18172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03d91b28f89e1e700000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T11:11:09.000Z'}}, {'blockNum': '0x802be2', 'uniqueId': '0xc1c2a92531fc7eae18b106ecc14d989cce0c4377bba7be07abc74f0366012208:log:34', 'hash': '0xc1c2a92531fc7eae18b106ecc14d989cce0c4377bba7be07abc74f0366012208', 'from': '0x9bf947bab6453996d47bef43a1d9e5bbbe18d26a', 'to': '0x15e2f19fdeaf67983b335a5ab31aec0881505085', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T11:21:03.000Z'}}, {'blockNum': '0x802c09', 'uniqueId': '0x1624e8722480fd49c12992634cc5752d43d82d95d17591c4b5fc200c99333d88:log:13', 'hash': '0x1624e8722480fd49c12992634cc5752d43d82d95d17591c4b5fc200c99333d88', 'from': '0x15e2f19fdeaf67983b335a5ab31aec0881505085', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T11:28:08.000Z'}}, {'blockNum': '0x802c75', 'uniqueId': '0x09c2ecd1ccc0bc559c939d6078b90b4c8b7c747ab03e78ecedbcb3c043218bad:log:10', 'hash': '0x09c2ecd1ccc0bc559c939d6078b90b4c8b7c747ab03e78ecedbcb3c043218bad', 'from': '0xfc573e8059e0cda91fa70866e34e94d77d0c78b0', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 45217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x099337ee6a1105e40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T11:53:36.000Z'}}, {'blockNum': '0x802cbc', 'uniqueId': '0xdadefb1cff892f283ccb6a06454914fae2db74615f7b5ef992aed110d3eaba7f:log:64', 'hash': '0xdadefb1cff892f283ccb6a06454914fae2db74615f7b5ef992aed110d3eaba7f', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 45217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x099337ee6a1105e40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:11:03.000Z'}}, {'blockNum': '0x802cee', 'uniqueId': '0x1a5d76a41ad0f108941a7e5f5664db938b6dc8585805ca084c62c1ddd52f7c45:log:82', 'hash': '0x1a5d76a41ad0f108941a7e5f5664db938b6dc8585805ca084c62c1ddd52f7c45', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 694542.87007688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x93133e930915eb262000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:25:34.000Z'}}, {'blockNum': '0x802cf3', 'uniqueId': '0x3d7f08b225d37a32f586f425d8a6604f5bca91e81818be8ea76cc8735c6966ed:log:41', 'hash': '0x3d7f08b225d37a32f586f425d8a6604f5bca91e81818be8ea76cc8735c6966ed', 'from': '0xc834ab4df4dcb346268152860e5bfa73bde6bdda', 'to': '0xd493f4a19de6497c0458fef2d7e3b21fb91a800d', 'value': 2150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x748d3e68cfd1d80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:26:02.000Z'}}, {'blockNum': '0x802d0e', 'uniqueId': '0x8ce2534196a5b3f399fb6f13c8952d7b2c872edce14d07600c2628fce595a4bd:log:2', 'hash': '0x8ce2534196a5b3f399fb6f13c8952d7b2c872edce14d07600c2628fce595a4bd', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 694542.87007688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x93133e930915eb262000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:31:12.000Z'}}, {'blockNum': '0x802d11', 'uniqueId': '0xa8d0eaf3da5edf81771a1b43901e4b62c20d6b80d5d6dcac55ab61ea096c477f:log:95', 'hash': '0xa8d0eaf3da5edf81771a1b43901e4b62c20d6b80d5d6dcac55ab61ea096c477f', 'from': '0xcf2272205cc0cf96cfbb9dd740bd681d1e86901e', 'to': '0xdb5ac1a559b02e12f29fc0ec0e37be8e046def49', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:31:53.000Z'}}, {'blockNum': '0x802d11', 'uniqueId': '0xdd307408e61169afb0b6deeeacf36d780cd1cde36dcad923460a9f91876c5f4e:log:103', 'hash': '0xdd307408e61169afb0b6deeeacf36d780cd1cde36dcad923460a9f91876c5f4e', 'from': '0xcf2272205cc0cf96cfbb9dd740bd681d1e86901e', 'to': '0xdb5ac1a559b02e12f29fc0ec0e37be8e046def49', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:31:53.000Z'}}, {'blockNum': '0x802d24', 'uniqueId': '0xe91cef504ab7f9755edfdb281465d287318a107d3383ea6df57934e8c8b9f0fc:log:122', 'hash': '0xe91cef504ab7f9755edfdb281465d287318a107d3383ea6df57934e8c8b9f0fc', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 7771.774303662996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01a54f08e08e75b41709', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:37:15.000Z'}}, {'blockNum': '0x802d24', 'uniqueId': '0xe91cef504ab7f9755edfdb281465d287318a107d3383ea6df57934e8c8b9f0fc:log:124', 'hash': '0xe91cef504ab7f9755edfdb281465d287318a107d3383ea6df57934e8c8b9f0fc', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 7771.774303662996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01a54f08e08e75b41709', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:37:15.000Z'}}, {'blockNum': '0x802d24', 'uniqueId': '0xe91cef504ab7f9755edfdb281465d287318a107d3383ea6df57934e8c8b9f0fc:log:129', 'hash': '0xe91cef504ab7f9755edfdb281465d287318a107d3383ea6df57934e8c8b9f0fc', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 7771.766531888692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01a54eed442b3f0f2374', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:37:15.000Z'}}, {'blockNum': '0x802d89', 'uniqueId': '0xbac2cce4c1921d1bb896e34dfb98159323f433f818e2077dfa2aca7610c0d582:log:77', 'hash': '0xbac2cce4c1921d1bb896e34dfb98159323f433f818e2077dfa2aca7610c0d582', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 17487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03b3f8e019e737dc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:00:51.000Z'}}, {'blockNum': '0x802da9', 'uniqueId': '0x4e03c616c451a6d14c521ec46e37c295e7e9872ebd41053b339a814c2f412fa9:log:58', 'hash': '0x4e03c616c451a6d14c521ec46e37c295e7e9872ebd41053b339a814c2f412fa9', 'from': '0xbac772ca07b12475e31ef61bf296738da9c05bd0', 'to': '0x080b406a7b163463cc312a73506582ac88bbb991', 'value': 47.749462068089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0296a82ac3706f2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:06:42.000Z'}}, {'blockNum': '0x802daa', 'uniqueId': '0xa7bc973a8ad36d1e8d14a3d5800660e96d1ebb5bf296adb3a8a5f022d16a224f:log:98', 'hash': '0xa7bc973a8ad36d1e8d14a3d5800660e96d1ebb5bf296adb3a8a5f022d16a224f', 'from': '0x79d35007e8879fbaf95011aab0c7311cf7287861', 'to': '0x61b9898c9b60a159fc91ae8026563cd226b7a0c1', 'value': 817000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xad01a8a3947b7ca00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:06:49.000Z'}}, {'blockNum': '0x802daf', 'uniqueId': '0x532cc218bb1d1b933078f3dcd2eb23fe7a0a9c4c2341ef019647db550a66ab75:log:7', 'hash': '0x532cc218bb1d1b933078f3dcd2eb23fe7a0a9c4c2341ef019647db550a66ab75', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe2f6e3565a96cd24d6ba985563a26fb3c93cad04', 'value': 436.617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x17ab47303438ba8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:08:06.000Z'}}, {'blockNum': '0x802dbc', 'uniqueId': '0x964c3f69dae903643d845ccedf28b94aea6cc14c9e236f7839bdd4dd6fddbd66:log:20', 'hash': '0x964c3f69dae903643d845ccedf28b94aea6cc14c9e236f7839bdd4dd6fddbd66', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 451737.98505332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5fa8c3e6bb92a22f5000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:10:05.000Z'}}, {'blockNum': '0x802dcf', 'uniqueId': '0x1707df55c43e9ac6237c334beedd6b06cfbf3fda55a1c096b5653f11031cc570:log:0', 'hash': '0x1707df55c43e9ac6237c334beedd6b06cfbf3fda55a1c096b5653f11031cc570', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1b59f24e9bbc0a04909af81fb325d78fbbf495ec', 'value': 400000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x54b40b1f852bda000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:14:46.000Z'}}, {'blockNum': '0x802dd3', 'uniqueId': '0xb2d35fe816af1cb01a001ccf7d237666f872de23dea35f8f8e8602cd79f38ec9:log:95', 'hash': '0xb2d35fe816af1cb01a001ccf7d237666f872de23dea35f8f8e8602cd79f38ec9', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x0549986777328f88fcf37e5954310f4f31c8f324', 'value': 149970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc1e3d668e2d4080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:16:16.000Z'}}, {'blockNum': '0x802de7', 'uniqueId': '0xf2c74fe0ee8728a35531cf6031dddfa2296e71d15a157a226bfde6a6c8ca9fb7:log:3', 'hash': '0xf2c74fe0ee8728a35531cf6031dddfa2296e71d15a157a226bfde6a6c8ca9fb7', 'from': '0x1b59f24e9bbc0a04909af81fb325d78fbbf495ec', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 400000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x54b40b1f852bda000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:20:23.000Z'}}, {'blockNum': '0x802de7', 'uniqueId': '0xf3a31ba43f16393995d58aee9ba5559bab843d2655f6eef5cba9d93440f34eca:log:4', 'hash': '0xf3a31ba43f16393995d58aee9ba5559bab843d2655f6eef5cba9d93440f34eca', 'from': '0x0549986777328f88fcf37e5954310f4f31c8f324', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 149970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc1e3d668e2d4080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:20:23.000Z'}}, {'blockNum': '0x802dec', 'uniqueId': '0x13429bf48d49472ae98f03f654f60c803ef7342eb917f300420f42b72a927535:log:12', 'hash': '0x13429bf48d49472ae98f03f654f60c803ef7342eb917f300420f42b72a927535', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x04c9f7e0055bf9fe9ab03255d8cdae2a78e824df', 'value': 79937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10ed64b9579f60640000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:22:13.000Z'}}, {'blockNum': '0x802dfc', 'uniqueId': '0xac722394ef534f9a3503dc6359143ac7c621f37b3ba9086e682c131fcb21f51a:log:15', 'hash': '0xac722394ef534f9a3503dc6359143ac7c621f37b3ba9086e682c131fcb21f51a', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 451737.98505332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5fa8c3e6bb92a22f5000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:26:23.000Z'}}, {'blockNum': '0x802e0e', 'uniqueId': '0x3c951a72cb5d36d38be2bc2446746320edb300488771c5e4358ccb23bc732795:log:1', 'hash': '0x3c951a72cb5d36d38be2bc2446746320edb300488771c5e4358ccb23bc732795', 'from': '0x04c9f7e0055bf9fe9ab03255d8cdae2a78e824df', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 79937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10ed64b9579f60640000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:29:55.000Z'}}, {'blockNum': '0x802e15', 'uniqueId': '0x71fa185b24592e66f36c22d401c28ade5ba995e7f454fb7428cf375234038576:log:63', 'hash': '0x71fa185b24592e66f36c22d401c28ade5ba995e7f454fb7428cf375234038576', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x2e074988d3f10177d32ed95cdc7097d7c44fdce4', 'value': 231285.5151295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x30fa034d4f1a49871800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:30:59.000Z'}}, {'blockNum': '0x802e17', 'uniqueId': '0x509f4f92bec008413c309467c7469f9a13bf51da98357b6723d2a080b7534678:log:62', 'hash': '0x509f4f92bec008413c309467c7469f9a13bf51da98357b6723d2a080b7534678', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 238250.35403534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x327393dbc2aa870a7800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:31:16.000Z'}}, {'blockNum': '0x802e4a', 'uniqueId': '0xe40101573fbb8f777e79a06cbe6f7579f402ee3354985c3ab5a04c896c3ac490:log:12', 'hash': '0xe40101573fbb8f777e79a06cbe6f7579f402ee3354985c3ab5a04c896c3ac490', 'from': '0x2e074988d3f10177d32ed95cdc7097d7c44fdce4', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 231285.5151295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x30fa034d4f1a49871800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:42:16.000Z'}}, {'blockNum': '0x802e4a', 'uniqueId': '0x8620fc5e4ff2b780f208fa3e2b1c47dcaadafdfa74e5c514ce582086a3051497:log:14', 'hash': '0x8620fc5e4ff2b780f208fa3e2b1c47dcaadafdfa74e5c514ce582086a3051497', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 238250.35403534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x327393dbc2aa870a7800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:42:16.000Z'}}, {'blockNum': '0x802e99', 'uniqueId': '0xcb111fd187d22f7b75a531ff38ea958661de6e50f707382f41560da393b38211:log:123', 'hash': '0xcb111fd187d22f7b75a531ff38ea958661de6e50f707382f41560da393b38211', 'from': '0x9932cb6c321c8373c3d8eb687e9371e833bee9b7', 'to': '0xb782c27f02b66b91968a695072c4f2300a303a6e', 'value': 3342.601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb533e84ba4117a8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:00:02.000Z'}}, {'blockNum': '0x802eaf', 'uniqueId': '0xcf888ab966e67d3e6556755738ae1ceca02495471901f713635cc47ec11ba460:log:2', 'hash': '0xcf888ab966e67d3e6556755738ae1ceca02495471901f713635cc47ec11ba460', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 61054.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cedc13b7cfc164c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:05:36.000Z'}}, {'blockNum': '0x802eb2', 'uniqueId': '0xdcff0053e1ab09c4a41ac608898e094c632568a42ab84444a829246077ae7e5e:log:27', 'hash': '0xdcff0053e1ab09c4a41ac608898e094c632568a42ab84444a829246077ae7e5e', 'from': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'to': '0xa0203891993c6e0bb7519676b0a66eb14ce79aa5', 'value': 3700.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc89e5cac887e9c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:06:09.000Z'}}, {'blockNum': '0x802eb5', 'uniqueId': '0x4ac7376ddf5c155e3914c746c69f7c8d57b3cd448af72c304dc7fad8ce916861:log:17', 'hash': '0x4ac7376ddf5c155e3914c746c69f7c8d57b3cd448af72c304dc7fad8ce916861', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 6251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0152de0d34c856cc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:06:19.000Z'}}, {'blockNum': '0x802ec5', 'uniqueId': '0x30a71497a98b48223cce27cf3a772dd0c90458e81bc94b144971e6bd496260cc:log:77', 'hash': '0x30a71497a98b48223cce27cf3a772dd0c90458e81bc94b144971e6bd496260cc', 'from': '0xb782c27f02b66b91968a695072c4f2300a303a6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3342.601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb533e84ba4117a8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:10:59.000Z'}}, {'blockNum': '0x802ef1', 'uniqueId': '0xf19c9ca9638c58292e482eb2762d987543f828150ba83d6f776c177e7d2c7755:log:2', 'hash': '0xf19c9ca9638c58292e482eb2762d987543f828150ba83d6f776c177e7d2c7755', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 61054.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cedc13b7cfc164c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:26:13.000Z'}}, {'blockNum': '0x802f09', 'uniqueId': '0xbb436ec1a31d2ba13229647977b52a22fc60ab83df48ccaeb0f0c7ccfbbe591b:log:65', 'hash': '0xbb436ec1a31d2ba13229647977b52a22fc60ab83df48ccaeb0f0c7ccfbbe591b', 'from': '0xa0203891993c6e0bb7519676b0a66eb14ce79aa5', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 3700.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc89e5cac887e9c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:33:34.000Z'}}, {'blockNum': '0x802f39', 'uniqueId': '0xe4afaaee34bb837703422537f66043efcde1490a61e755a6279d4dad1a6c1e88:log:20', 'hash': '0xe4afaaee34bb837703422537f66043efcde1490a61e755a6279d4dad1a6c1e88', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x7b3918c8f48e7f98f1666b6009c754bc0d9b704f', 'value': 4196.181812344968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe379b88600f0aea68f', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:44:53.000Z'}}, {'blockNum': '0x802f43', 'uniqueId': '0xf1f95a444d20d2c84289ad43f8fb359391610a8dcead5104b4e59e19cd008b55:log:102', 'hash': '0xf1f95a444d20d2c84289ad43f8fb359391610a8dcead5104b4e59e19cd008b55', 'from': '0xcf2272205cc0cf96cfbb9dd740bd681d1e86901e', 'to': '0xdb5ac1a559b02e12f29fc0ec0e37be8e046def49', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:46:23.000Z'}}, {'blockNum': '0x802f46', 'uniqueId': '0xf491bf18bb09955c50feb2f138c5e2e6e4184a503e6c4b103572aac469d441b3:log:52', 'hash': '0xf491bf18bb09955c50feb2f138c5e2e6e4184a503e6c4b103572aac469d441b3', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 6251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0152de0d34c856cc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:46:57.000Z'}}, {'blockNum': '0x802f5f', 'uniqueId': '0xb614e2e3d3763937c43ad203bd07d921fa8289bbad24251baa45762401d56c5f:log:9', 'hash': '0xb614e2e3d3763937c43ad203bd07d921fa8289bbad24251baa45762401d56c5f', 'from': '0x56a7e72942a25d07ba05fa1a4f736cd11830e171', 'to': '0xd1eaa6f996998f2713a5d3773f17798c095331a6', 'value': 1429776.8913900275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x012ec45c4fac98ec4fa7d4', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:53:01.000Z'}}, {'blockNum': '0x802f6c', 'uniqueId': '0x541800bd665298ccd8106dcf498a50dbd6758b20bbd4a6edf6aa6def3e23c2df:log:39', 'hash': '0x541800bd665298ccd8106dcf498a50dbd6758b20bbd4a6edf6aa6def3e23c2df', 'from': '0xd1eaa6f996998f2713a5d3773f17798c095331a6', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 1429776.8913900275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x012ec45c4fac98ec4fa7d4', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:56:15.000Z'}}, {'blockNum': '0x802f9c', 'uniqueId': '0xa98ef812e5ac2f626866321d812f6b5c95fef8de32ef0c289db9e03dda351e58:log:11', 'hash': '0xa98ef812e5ac2f626866321d812f6b5c95fef8de32ef0c289db9e03dda351e58', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 61117.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cf12b88733247e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:08:13.000Z'}}, {'blockNum': '0x802fee', 'uniqueId': '0x17395798804991d53c5d6e7dcf6b8916e98565bcba29f7cdde85b7ef0d049c4e:log:49', 'hash': '0x17395798804991d53c5d6e7dcf6b8916e98565bcba29f7cdde85b7ef0d049c4e', 'from': '0xf3e36ad56aa85abdacc18c02d19509ae4f7d5899', 'to': '0xafb6b4965d5a36c23b6416030cc06413e2bc9f3e', 'value': 337.149697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1246e4572037951000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:24:33.000Z'}}, {'blockNum': '0x802ff9', 'uniqueId': '0x583ec1a1b751f9cf9a530ae1b59f5eaa29aca513008ccfd6c30fd9700258b71a:log:23', 'hash': '0x583ec1a1b751f9cf9a530ae1b59f5eaa29aca513008ccfd6c30fd9700258b71a', 'from': '0xafb6b4965d5a36c23b6416030cc06413e2bc9f3e', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 337.149697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1246e4572037951000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:28:26.000Z'}}, {'blockNum': '0x80301d', 'uniqueId': '0xf472459110d1d180c08712fedb0eff10aeb286feb259d778d91cf91fac0cec38:log:6', 'hash': '0xf472459110d1d180c08712fedb0eff10aeb286feb259d778d91cf91fac0cec38', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 266558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3872235ccb302e380000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:37:10.000Z'}}, {'blockNum': '0x803032', 'uniqueId': '0x0e13018268600c016b3710bdb93426a0c50af287c32031f91a7284b5b3a8d2a0:log:43', 'hash': '0x0e13018268600c016b3710bdb93426a0c50af287c32031f91a7284b5b3a8d2a0', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 266558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3872235ccb302e380000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:41:09.000Z'}}, {'blockNum': '0x803059', 'uniqueId': '0x20cd4cc757163886e2fef4c2341c3e72727df39d7ac4e42b750f3d420f0dae1d:log:28', 'hash': '0x20cd4cc757163886e2fef4c2341c3e72727df39d7ac4e42b750f3d420f0dae1d', 'from': '0xdeeedf35c86a199fb1aa0b5d1f32d7ca4075aad5', 'to': '0xb32b9b08dde5a578ff6af6927af1fd5553d88e05', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:48:49.000Z'}}, {'blockNum': '0x80307c', 'uniqueId': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a:log:37', 'hash': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 6360.61715670319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0158cf4b94070cb9f9f7', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:56:26.000Z'}}, {'blockNum': '0x80307c', 'uniqueId': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a:log:39', 'hash': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 6360.61715670319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0158cf4b94070cb9f9f7', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:56:26.000Z'}}, {'blockNum': '0x80307c', 'uniqueId': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a:log:44', 'hash': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6360.610796086033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0158cf34fb14768c8621', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:56:26.000Z'}}, {'blockNum': '0x80307c', 'uniqueId': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a:log:46', 'hash': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 6360.610796086033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0158cf34fb14768c8621', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:56:26.000Z'}}, {'blockNum': '0x803080', 'uniqueId': '0xf843b6655d3bbca5b8f544994df3c1b5f81f79009d9d42b8e845f05a8943b9c0:log:29', 'hash': '0xf843b6655d3bbca5b8f544994df3c1b5f81f79009d9d42b8e845f05a8943b9c0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4254.288843355284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe6a01e2ad7e32f98dc', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:56:55.000Z'}}, {'blockNum': '0x803080', 'uniqueId': '0xf843b6655d3bbca5b8f544994df3c1b5f81f79009d9d42b8e845f05a8943b9c0:log:31', 'hash': '0xf843b6655d3bbca5b8f544994df3c1b5f81f79009d9d42b8e845f05a8943b9c0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 4254.288843355284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe6a01e2ad7e32f98dc', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:56:55.000Z'}}, {'blockNum': '0x803080', 'uniqueId': '0xf843b6655d3bbca5b8f544994df3c1b5f81f79009d9d42b8e845f05a8943b9c0:log:36', 'hash': '0xf843b6655d3bbca5b8f544994df3c1b5f81f79009d9d42b8e845f05a8943b9c0', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 4254.288843355284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe6a01e2ad7e32f98dc', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:56:55.000Z'}}, {'blockNum': '0x803086', 'uniqueId': '0x32599eff6f55dde9c4ee49df89db71369ba8ce2741aec9805679c2b4f046ef06:log:0', 'hash': '0x32599eff6f55dde9c4ee49df89db71369ba8ce2741aec9805679c2b4f046ef06', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xeca53f38dd5c31f421fd047ca6c92fe1a722a1a3', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:58:39.000Z'}}, {'blockNum': '0x803090', 'uniqueId': '0x2ab88bcb547bad17f59239dcdf86252123672d0654c648fccb0d3d3b030e28b3:log:68', 'hash': '0x2ab88bcb547bad17f59239dcdf86252123672d0654c648fccb0d3d3b030e28b3', 'from': '0xb32b9b08dde5a578ff6af6927af1fd5553d88e05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T16:00:37.000Z'}}, {'blockNum': '0x8030b9', 'uniqueId': '0xd707f8c8a239f1de5976a6d2ebcab030e42e947df4b6d6f7fb62cf38f7909d26:log:53', 'hash': '0xd707f8c8a239f1de5976a6d2ebcab030e42e947df4b6d6f7fb62cf38f7909d26', 'from': '0xeca53f38dd5c31f421fd047ca6c92fe1a722a1a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T16:11:16.000Z'}}, {'blockNum': '0x803198', 'uniqueId': '0x547251a447d3df704f18d14bf96787779d62c9df1aab886ee458e7dcb69efc96:log:90', 'hash': '0x547251a447d3df704f18d14bf96787779d62c9df1aab886ee458e7dcb69efc96', 'from': '0xc7f9fd30fcd6e3c80ec7e3e9e41c135a3bd46208', 'to': '0x0b0334a135d8f037bd6121a53b1620f8e26f1786', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T17:03:33.000Z'}}, {'blockNum': '0x8031b5', 'uniqueId': '0xe8cb62e52f9b416ab8f4e72ae10fda0612da438675c86826ec0adbae12986a77:log:1', 'hash': '0xe8cb62e52f9b416ab8f4e72ae10fda0612da438675c86826ec0adbae12986a77', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf1df6526fa58bf7b411439e0843f6d9a5aa73526', 'value': 4937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010ba2a36ea727840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T17:09:23.000Z'}}, {'blockNum': '0x8031b8', 'uniqueId': '0x1b93c82bbfa54ed10b9110a4cacb109e4237f6d7c25104a898999f5a6337cffb:log:0', 'hash': '0x1b93c82bbfa54ed10b9110a4cacb109e4237f6d7c25104a898999f5a6337cffb', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x1ef454fe3ecdbda61285754687d5f329b5221049', 'value': 9007.14926575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01e8474e67470d3ddc00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T17:09:49.000Z'}}, {'blockNum': '0x8031cc', 'uniqueId': '0x014149330f05c48b0ab13e0b7349a1c7aaf6da8fdefa10445423d58e64aa09bd:log:9', 'hash': '0x014149330f05c48b0ab13e0b7349a1c7aaf6da8fdefa10445423d58e64aa09bd', 'from': '0xf1df6526fa58bf7b411439e0843f6d9a5aa73526', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 4937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010ba2a36ea727840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T17:13:32.000Z'}}, {'blockNum': '0x803213', 'uniqueId': '0x99703b3d6920849fbe442f3f0d4de6a110c60bc00dcafece2f8a6a5120b66999:log:6', 'hash': '0x99703b3d6920849fbe442f3f0d4de6a110c60bc00dcafece2f8a6a5120b66999', 'from': '0x1ef454fe3ecdbda61285754687d5f329b5221049', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 9007.14926575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01e8474e67470d3ddc00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T17:26:19.000Z'}}, {'blockNum': '0x803254', 'uniqueId': '0x02dffd490885e48e4027847cc08687a88e087929a800236e5a25c3087aad994e:log:7', 'hash': '0x02dffd490885e48e4027847cc08687a88e087929a800236e5a25c3087aad994e', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x9b350e05c4e60cfd5db3c0c87bbfd9205eb4b322', 'value': 28709.748759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06145bcd218adad47000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T17:41:13.000Z'}}, {'blockNum': '0x8032f6', 'uniqueId': '0x4c410cfce20ac8b70b1798f8409c9a91e17244288f22a056aa8f457a21dbcdb6:log:8', 'hash': '0x4c410cfce20ac8b70b1798f8409c9a91e17244288f22a056aa8f457a21dbcdb6', 'from': '0x4b0552288ad7bdfc7ecd4b68e989c21b277367cc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5718.62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x013601cb7f73e4560000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:21:11.000Z'}}, {'blockNum': '0x8032f6', 'uniqueId': '0x7b794ce84869c0e7d85ea6803eeab35af5e88110bb8fb9eebf4e7edb1ad30540:log:10', 'hash': '0x7b794ce84869c0e7d85ea6803eeab35af5e88110bb8fb9eebf4e7edb1ad30540', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0117661e4cf00b480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:21:11.000Z'}}, {'blockNum': '0x803312', 'uniqueId': '0xf59fe190e81178b7a709cc89c3daa6dad912a5f09b7664048e5f68a8b4562b34:log:29', 'hash': '0xf59fe190e81178b7a709cc89c3daa6dad912a5f09b7664048e5f68a8b4562b34', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 110817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x177766cfbe5edee40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:25:55.000Z'}}, {'blockNum': '0x803314', 'uniqueId': '0x7d97e5092532caaed28e5e708d86c3044a8175c75abeb6f9523e5bad4432c072:log:6', 'hash': '0x7d97e5092532caaed28e5e708d86c3044a8175c75abeb6f9523e5bad4432c072', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 60543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cd20ae841703a9c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:26:39.000Z'}}, {'blockNum': '0x803318', 'uniqueId': '0x0eb17c9b840a8523ef60ae75ced985a83aee6e34dffcf4c03132ef8cc189c428:log:86', 'hash': '0x0eb17c9b840a8523ef60ae75ced985a83aee6e34dffcf4c03132ef8cc189c428', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x7c9b4b635d3db87080d30d65806696d30bbe6dd8', 'value': 15.662312217351518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd95bb5faac7f764b', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:27:45.000Z'}}, {'blockNum': '0x803328', 'uniqueId': '0x14c86b706cfa42d77cc5f4ce2f6cc1469cd78d782930d674ab07ccbe9255cfe6:log:1', 'hash': '0x14c86b706cfa42d77cc5f4ce2f6cc1469cd78d782930d674ab07ccbe9255cfe6', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 167109.1426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x23630138c48448ec8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:31:09.000Z'}}, {'blockNum': '0x803335', 'uniqueId': '0x03025ef5ba0437566e7e228d56ccd892c1c801be4f1710cdf09c85594406c6ca:log:5', 'hash': '0x03025ef5ba0437566e7e228d56ccd892c1c801be4f1710cdf09c85594406c6ca', 'from': '0x2e46956565cebdcbbb39ecd22af02e1916a2fe37', 'to': '0x87894d45701c7a31d662a357ab25ff9a1c988968', 'value': 1004.8811076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x367986db461f15a000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:34:21.000Z'}}, {'blockNum': '0x803338', 'uniqueId': '0x85d08851dedd90abca6aa654bb1f50300e635663790cb2e8a2ee9afedaab52bf:log:67', 'hash': '0x85d08851dedd90abca6aa654bb1f50300e635663790cb2e8a2ee9afedaab52bf', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x0acb17762d75a97af9abf6b76fa6343f7f79e912', 'value': 77526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x106ab160a9a5e5980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:34:57.000Z'}}, {'blockNum': '0x80333e', 'uniqueId': '0x7d4eee9f29116a066ed614e558482e3549795f629a83e163d8d0bcc87b59b6ab:log:96', 'hash': '0x7d4eee9f29116a066ed614e558482e3549795f629a83e163d8d0bcc87b59b6ab', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'value': 93834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x13dec057562933e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:35:36.000Z'}}, {'blockNum': '0x803355', 'uniqueId': '0xc1944c7900e4ff4deef31f50cc7729bcd2c0a99c46eba6fae49ee456613d17cc:log:3', 'hash': '0xc1944c7900e4ff4deef31f50cc7729bcd2c0a99c46eba6fae49ee456613d17cc', 'from': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 93834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x13dec057562933e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:39:46.000Z'}}, {'blockNum': '0x80335c', 'uniqueId': '0x1ebda6586637745b3cc89954f406b182e6e2ba1fac57ed554ba5e04f0834e085:log:15', 'hash': '0x1ebda6586637745b3cc89954f406b182e6e2ba1fac57ed554ba5e04f0834e085', 'from': '0x0acb17762d75a97af9abf6b76fa6343f7f79e912', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 77526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x106ab160a9a5e5980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:41:07.000Z'}}, {'blockNum': '0x80335e', 'uniqueId': '0x8b5e6ce0bdaec07299c2cdfe99cd9d1b850da6ac24dbdcea049b16a1dbd8a7f5:log:106', 'hash': '0x8b5e6ce0bdaec07299c2cdfe99cd9d1b850da6ac24dbdcea049b16a1dbd8a7f5', 'from': '0x77c370b04cf2a97417f3329062fa57dfca9ba999', 'to': '0x3ec83e4903a1218f7642614a6cadd924bd7cc436', 'value': 303.02318762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x106d4a9fa79ca56800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:41:58.000Z'}}, {'blockNum': '0x803391', 'uniqueId': '0xf545fa616052f854fec06aa1842844087f12a410ee5b80a2b35db5f34b0d7f2f:log:26', 'hash': '0xf545fa616052f854fec06aa1842844087f12a410ee5b80a2b35db5f34b0d7f2f', 'from': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 17487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03b3f8e019e737dc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:53:45.000Z'}}, {'blockNum': '0x8033eb', 'uniqueId': '0xa03e2a1e58ae916155400bef98d869661b7002de21e00bdaef539b86566548fe:log:1', 'hash': '0xa03e2a1e58ae916155400bef98d869661b7002de21e00bdaef539b86566548fe', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x092c017c5949e43c8191d7545271d94212a0984e', 'value': 10968.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0252a06a3e981616c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T19:13:06.000Z'}}, {'blockNum': '0x803449', 'uniqueId': '0x52e056f4d4e23c739a514178f4379eb80bae8d7c1a052860ea6355c8e7a40d61:log:4', 'hash': '0x52e056f4d4e23c739a514178f4379eb80bae8d7c1a052860ea6355c8e7a40d61', 'from': '0x7c9b4b635d3db87080d30d65806696d30bbe6dd8', 'to': '0xdb5ac1a559b02e12f29fc0ec0e37be8e046def49', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T19:34:47.000Z'}}, {'blockNum': '0x803459', 'uniqueId': '0x06633c521b4232b474ce0e6129f43b6a91f439a7518f580e15413bf636234d7c:log:51', 'hash': '0x06633c521b4232b474ce0e6129f43b6a91f439a7518f580e15413bf636234d7c', 'from': '0x4e1a6ebc1eef08a38d0f5fb0b6251d0266e940ca', 'to': '0x30a49f875e351f964b0f2016e2ed5daba42e708b', 'value': 8021.85, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01b2dd88396acb490000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T19:38:02.000Z'}}, {'blockNum': '0x80346d', 'uniqueId': '0x787b7c864363e65c1a02a4c5494ffb3d371c1f811e3130aec9237e398456df50:log:3', 'hash': '0x787b7c864363e65c1a02a4c5494ffb3d371c1f811e3130aec9237e398456df50', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa550c651f807aeaa82662b43012732b85cac9e50', 'value': 2355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x7faa30b6acdcec0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T19:42:45.000Z'}}, {'blockNum': '0x80348b', 'uniqueId': '0x5c6e10dac178fa31a39392935099d5f79578b87ba5da3c0be648c9e84de7b9d9:log:0', 'hash': '0x5c6e10dac178fa31a39392935099d5f79578b87ba5da3c0be648c9e84de7b9d9', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 357173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4ba2631acc5793b40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T19:48:51.000Z'}}, {'blockNum': '0x8034a8', 'uniqueId': '0x6fb14df444a189053fad11566ecc5478604ee875f3112b3596de4ff22d043077:log:1', 'hash': '0x6fb14df444a189053fad11566ecc5478604ee875f3112b3596de4ff22d043077', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 83889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11c3a1bdcd0778240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T19:55:41.000Z'}}, {'blockNum': '0x8034a8', 'uniqueId': '0x2cb898b300c9665f4dc9e9046fe70b2a9862c6d50387cda2e8880fcc1481f0f7:log:5', 'hash': '0x2cb898b300c9665f4dc9e9046fe70b2a9862c6d50387cda2e8880fcc1481f0f7', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 800000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa968163f0a57b4000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T19:55:41.000Z'}}, {'blockNum': '0x8034be', 'uniqueId': '0xec3acf5434a554314e0fc02613a907426629b2ead5c42f4c254c843dc5e88973:log:2', 'hash': '0xec3acf5434a554314e0fc02613a907426629b2ead5c42f4c254c843dc5e88973', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 406449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5611a4fa08e7a8240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:08.000Z'}}, {'blockNum': '0x8034bf', 'uniqueId': '0x054f486d452dfb5acb2be20aebb56b9f51a7912147840e4cc0a42e81bfeee077:log:0', 'hash': '0x054f486d452dfb5acb2be20aebb56b9f51a7912147840e4cc0a42e81bfeee077', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 36445.60952590821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07b7b86f7eb2cf676911', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:19.000Z'}}, {'blockNum': '0x8034bf', 'uniqueId': '0xa3bea8e6ee3deed61ad594de74caa4338d42b3cbabc2e876c9fbf8c48e50d012:log:2', 'hash': '0xa3bea8e6ee3deed61ad594de74caa4338d42b3cbabc2e876c9fbf8c48e50d012', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8c2fd1f3ae6162fd3cb3157222dc3979b42e699e', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:19.000Z'}}, {'blockNum': '0x8034c0', 'uniqueId': '0x6489c94afc741613f33e88c746ab886fe827f75e2ce59d521b38dee65d1d676c:log:7', 'hash': '0x6489c94afc741613f33e88c746ab886fe827f75e2ce59d521b38dee65d1d676c', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 30395.00911750311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x066fb77ca8b57c23f98d', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:47.000Z'}}, {'blockNum': '0x8034c0', 'uniqueId': '0x6489c94afc741613f33e88c746ab886fe827f75e2ce59d521b38dee65d1d676c:log:9', 'hash': '0x6489c94afc741613f33e88c746ab886fe827f75e2ce59d521b38dee65d1d676c', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 30395.00911750311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x066fb77ca8b57c23f98d', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:47.000Z'}}, {'blockNum': '0x8034c0', 'uniqueId': '0x6489c94afc741613f33e88c746ab886fe827f75e2ce59d521b38dee65d1d676c:log:14', 'hash': '0x6489c94afc741613f33e88c746ab886fe827f75e2ce59d521b38dee65d1d676c', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 30394.978722493994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x066fb710ac9bf2bf3b07', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:47.000Z'}}, {'blockNum': '0x8034c0', 'uniqueId': '0x3696fb1188ce65585b4a6bbaaeec17256cf74fc50bd35fe3c3df9a7f1fca1fa7:log:18', 'hash': '0x3696fb1188ce65585b4a6bbaaeec17256cf74fc50bd35fe3c3df9a7f1fca1fa7', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 81483.47038043274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11413a4fd1132d733910', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:47.000Z'}}, {'blockNum': '0x8034c0', 'uniqueId': '0x3696fb1188ce65585b4a6bbaaeec17256cf74fc50bd35fe3c3df9a7f1fca1fa7:log:20', 'hash': '0x3696fb1188ce65585b4a6bbaaeec17256cf74fc50bd35fe3c3df9a7f1fca1fa7', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 81483.47038043274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11413a4fd1132d733910', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:47.000Z'}}, {'blockNum': '0x8034c0', 'uniqueId': '0x6345e0bead2bc2aff544f84d1e0e3255a277ef1c5053765a22155d0a8253f230:log:99', 'hash': '0x6345e0bead2bc2aff544f84d1e0e3255a277ef1c5053765a22155d0a8253f230', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 35904.33392502378, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x079a60ba437ec09fdd99', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:47.000Z'}}, {'blockNum': '0x8034c0', 'uniqueId': '0x6345e0bead2bc2aff544f84d1e0e3255a277ef1c5053765a22155d0a8253f230:log:103', 'hash': '0x6345e0bead2bc2aff544f84d1e0e3255a277ef1c5053765a22155d0a8253f230', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'value': 35904.33392502378, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x079a60ba437ec09fdd99', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:47.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x0d67a7fab406196bd0f7a70e9b992fb03a6bcafb1097b24c4813fc6b87a50430:log:11', 'hash': '0x0d67a7fab406196bd0f7a70e9b992fb03a6bcafb1097b24c4813fc6b87a50430', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 33609.81815569577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x071dfdecb42828c84378', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x0d67a7fab406196bd0f7a70e9b992fb03a6bcafb1097b24c4813fc6b87a50430:log:15', 'hash': '0x0d67a7fab406196bd0f7a70e9b992fb03a6bcafb1097b24c4813fc6b87a50430', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 33609.81815569577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x071dfdecb42828c84378', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x9f3274c247b88dbfbed2bf0a9560114cef17a301cd513bb65bca290df56411c3:log:31', 'hash': '0x9f3274c247b88dbfbed2bf0a9560114cef17a301cd513bb65bca290df56411c3', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 20214.05125905593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0447ce50697a4e5a14cf', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x9f3274c247b88dbfbed2bf0a9560114cef17a301cd513bb65bca290df56411c3:log:33', 'hash': '0x9f3274c247b88dbfbed2bf0a9560114cef17a301cd513bb65bca290df56411c3', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 20214.05125905593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0447ce50697a4e5a14cf', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x9f3274c247b88dbfbed2bf0a9560114cef17a301cd513bb65bca290df56411c3:log:35', 'hash': '0x9f3274c247b88dbfbed2bf0a9560114cef17a301cd513bb65bca290df56411c3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 20214.05125905593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0447ce50697a4e5a14cf', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x86a3d4fd542b537bacf7bc5b5508b000c302302a48aa9cdc17c3308e6a405d15:log:47', 'hash': '0x86a3d4fd542b537bacf7bc5b5508b000c302302a48aa9cdc17c3308e6a405d15', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 19537.2684995676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04231e110b78cbbe7efb', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x86a3d4fd542b537bacf7bc5b5508b000c302302a48aa9cdc17c3308e6a405d15:log:49', 'hash': '0x86a3d4fd542b537bacf7bc5b5508b000c302302a48aa9cdc17c3308e6a405d15', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 19537.2684995676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04231e110b78cbbe7efb', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x86a3d4fd542b537bacf7bc5b5508b000c302302a48aa9cdc17c3308e6a405d15:log:51', 'hash': '0x86a3d4fd542b537bacf7bc5b5508b000c302302a48aa9cdc17c3308e6a405d15', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 19537.2684995676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04231e110b78cbbe7efb', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c3', 'uniqueId': '0x0b9a5d9b950d17859194dc92940e2cb460bdaebf3a21e41801a4bf7137076891:log:3', 'hash': '0x0b9a5d9b950d17859194dc92940e2cb460bdaebf3a21e41801a4bf7137076891', 'from': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 35796.84408683893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07948d01a52becc1953e', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:56.000Z'}}, {'blockNum': '0x8034c3', 'uniqueId': '0x0b9a5d9b950d17859194dc92940e2cb460bdaebf3a21e41801a4bf7137076891:log:5', 'hash': '0x0b9a5d9b950d17859194dc92940e2cb460bdaebf3a21e41801a4bf7137076891', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 35796.84408683893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07948d01a52becc1953e', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:56.000Z'}}, {'blockNum': '0x8034c3', 'uniqueId': '0x6baaefa0f2d733fa38d31a5b05b4d517679981545f3322f4b8b61c86e9e44eed:log:27', 'hash': '0x6baaefa0f2d733fa38d31a5b05b4d517679981545f3322f4b8b61c86e9e44eed', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 33251.7549745391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x070a94ccbdfeb34c0419', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:56.000Z'}}, {'blockNum': '0x8034c3', 'uniqueId': '0x6baaefa0f2d733fa38d31a5b05b4d517679981545f3322f4b8b61c86e9e44eed:log:31', 'hash': '0x6baaefa0f2d733fa38d31a5b05b4d517679981545f3322f4b8b61c86e9e44eed', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'value': 33251.7549745391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x070a94ccbdfeb34c0419', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:56.000Z'}}, {'blockNum': '0x8034c3', 'uniqueId': '0x6baaefa0f2d733fa38d31a5b05b4d517679981545f3322f4b8b61c86e9e44eed:log:33', 'hash': '0x6baaefa0f2d733fa38d31a5b05b4d517679981545f3322f4b8b61c86e9e44eed', 'from': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 33251.7549745391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x070a94ccbdfeb34c0419', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:56.000Z'}}, {'blockNum': '0x8034c5', 'uniqueId': '0xd52118bcfc171a17527ba34ce7c9d1c0842e4e8123caccd14900eb511cc91209:log:7', 'hash': '0xd52118bcfc171a17527ba34ce7c9d1c0842e4e8123caccd14900eb511cc91209', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 7575.952352094543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x019ab1758d1d3859eeb7', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:01.000Z'}}, {'blockNum': '0x8034c5', 'uniqueId': '0xd52118bcfc171a17527ba34ce7c9d1c0842e4e8123caccd14900eb511cc91209:log:9', 'hash': '0xd52118bcfc171a17527ba34ce7c9d1c0842e4e8123caccd14900eb511cc91209', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 7575.952352094543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x019ab1758d1d3859eeb7', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:01.000Z'}}, {'blockNum': '0x8034c5', 'uniqueId': '0xd52118bcfc171a17527ba34ce7c9d1c0842e4e8123caccd14900eb511cc91209:log:11', 'hash': '0xd52118bcfc171a17527ba34ce7c9d1c0842e4e8123caccd14900eb511cc91209', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 7575.952352094543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x019ab1758d1d3859eeb7', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:01.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x362ad475c980309245c04c23de553e1523e9e7a825ec1aa48147f42595b60dec:log:4', 'hash': '0x362ad475c980309245c04c23de553e1523e9e7a825ec1aa48147f42595b60dec', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 96147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x145c23aa135c9a6c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x64ab38cf7596b9a446477f8697941353f5c8799e357e69b220bcc30cda91a40e:log:5', 'hash': '0x64ab38cf7596b9a446477f8697941353f5c8799e357e69b220bcc30cda91a40e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 65326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd5545dc804aff80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x886acc6432533fc35e780c4df445403f367a3f709d599fbbd7f54dcf17782508:log:6', 'hash': '0x886acc6432533fc35e780c4df445403f367a3f709d599fbbd7f54dcf17782508', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 622355.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x83c9f4522eb7ee550000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x0a4626ac436b9eca9251aadae517c5616e7c456478531f2a4f544d75c471a69b:log:7', 'hash': '0x0a4626ac436b9eca9251aadae517c5616e7c456478531f2a4f544d75c471a69b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 224341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2f818ccb6a70c4340000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0xde1e34d61fbc9160304f5ee6997aa7bea58b9bb1a520df1e8bcb26985110acf5:log:8', 'hash': '0xde1e34d61fbc9160304f5ee6997aa7bea58b9bb1a520df1e8bcb26985110acf5', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 800000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa968163f0a57b4000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x9bdfc0e8b0d5611ea13d07c3431d92a7ef28ca90a06fe0cab2c3f849f60b21e4:log:61', 'hash': '0x9bdfc0e8b0d5611ea13d07c3431d92a7ef28ca90a06fe0cab2c3f849f60b21e4', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 12869.630895135904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b9aa01b8e638105408', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x9bdfc0e8b0d5611ea13d07c3431d92a7ef28ca90a06fe0cab2c3f849f60b21e4:log:65', 'hash': '0x9bdfc0e8b0d5611ea13d07c3431d92a7ef28ca90a06fe0cab2c3f849f60b21e4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'value': 12869.630895135904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b9aa01b8e638105408', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x3c32c94bfb896b0f64a2b5ad5ec149aee4114f8d9825f496ef02986123d8e58e:log:69', 'hash': '0x3c32c94bfb896b0f64a2b5ad5ec149aee4114f8d9825f496ef02986123d8e58e', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 6161.140714772089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x014dff00e4f672a75e7f', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x3c32c94bfb896b0f64a2b5ad5ec149aee4114f8d9825f496ef02986123d8e58e:log:71', 'hash': '0x3c32c94bfb896b0f64a2b5ad5ec149aee4114f8d9825f496ef02986123d8e58e', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6161.140391698783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x014dfeffbf2115000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x3c32c94bfb896b0f64a2b5ad5ec149aee4114f8d9825f496ef02986123d8e58e:log:73', 'hash': '0x3c32c94bfb896b0f64a2b5ad5ec149aee4114f8d9825f496ef02986123d8e58e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 6161.140391698783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x014dfeffbf2115000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c9', 'uniqueId': '0x89ac51370c6f500a7d185116a520cc40f7816459852aa558f85f0f9717527ca0:log:0', 'hash': '0x89ac51370c6f500a7d185116a520cc40f7816459852aa558f85f0f9717527ca0', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 83889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11c3a1bdcd0778240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:21.000Z'}}, {'blockNum': '0x8034c9', 'uniqueId': '0xc49fe67128b9b5c71dbfb360420336bd29098cf832db4a7f8d273d89b2dbaa27:log:11', 'hash': '0xc49fe67128b9b5c71dbfb360420336bd29098cf832db4a7f8d273d89b2dbaa27', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x1655ddd39b423671627f9e9fc810499c79cf019b', 'value': 26642.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05a4461abcd6f1570000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:21.000Z'}}, {'blockNum': '0x8034ca', 'uniqueId': '0xb096138eda9af805830c6cdc4ea8fceb26b5a7f12c4d39321ec9f594cd6746ca:log:2', 'hash': '0xb096138eda9af805830c6cdc4ea8fceb26b5a7f12c4d39321ec9f594cd6746ca', 'from': '0x6f31d347457962c9811ff953742870ef5a755de3', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:26.000Z'}}, {'blockNum': '0x8034ca', 'uniqueId': '0x11f1f7fb608e64ae29349fd92fcbc7b2f76284d76eb7b41cf32597e20976a660:log:3', 'hash': '0x11f1f7fb608e64ae29349fd92fcbc7b2f76284d76eb7b41cf32597e20976a660', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 99054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x14f9ba64bd6a66f80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:26.000Z'}}, {'blockNum': '0x8034ca', 'uniqueId': '0xde9a8f6c3fc45e024f12cc61515837ede075b34775c5f3b5fa0222952ae01056:log:10', 'hash': '0xde9a8f6c3fc45e024f12cc61515837ede075b34775c5f3b5fa0222952ae01056', 'from': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 12869.630895135904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b9aa01b8e638105408', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:26.000Z'}}, {'blockNum': '0x8034ca', 'uniqueId': '0x14c4277ba527c9b668384c701e0daffa77cd3f360eb5f4ad847200862dd2cb6c:log:11', 'hash': '0x14c4277ba527c9b668384c701e0daffa77cd3f360eb5f4ad847200862dd2cb6c', 'from': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'to': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'value': 81483.47038043274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11413a4fd1132d733910', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:26.000Z'}}, {'blockNum': '0x8034cd', 'uniqueId': '0x86cb69803056bec9de0fcb18f72e228bcafef458db09b451e5c314e9a4c0a38c:log:4', 'hash': '0x86cb69803056bec9de0fcb18f72e228bcafef458db09b451e5c314e9a4c0a38c', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 4290, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe88fb5ae9b19c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:02:13.000Z'}}, {'blockNum': '0x8034cd', 'uniqueId': '0xac5e932ec1bab81731d130e5e496c11b320fb0e15ab010af91d70b11f3fbd04f:log:26', 'hash': '0xac5e932ec1bab81731d130e5e496c11b320fb0e15ab010af91d70b11f3fbd04f', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3995.767195767196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd89c68c6117e6f119b', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:02:13.000Z'}}, {'blockNum': '0x8034cd', 'uniqueId': '0xac5e932ec1bab81731d130e5e496c11b320fb0e15ab010af91d70b11f3fbd04f:log:28', 'hash': '0xac5e932ec1bab81731d130e5e496c11b320fb0e15ab010af91d70b11f3fbd04f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 3995.767195767196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd89c68c6117e6f119b', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:02:13.000Z'}}, {'blockNum': '0x8034cf', 'uniqueId': '0x5913ddc3413c5cd9845aebf27245843f4d74185142ae055a382780fbfe711693:log:0', 'hash': '0x5913ddc3413c5cd9845aebf27245843f4d74185142ae055a382780fbfe711693', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:02:28.000Z'}}, {'blockNum': '0x8034cf', 'uniqueId': '0x4e9788c1390510fa6d4c8539d3eddac6343b1911112ddea8a6dc4dcfdb344faa:log:2', 'hash': '0x4e9788c1390510fa6d4c8539d3eddac6343b1911112ddea8a6dc4dcfdb344faa', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 7665.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x019f9290f400d1840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:02:28.000Z'}}, {'blockNum': '0x8034d0', 'uniqueId': '0x332fa7d995ff1cb968029a77d6bb2b26be212b0b4189c607c773e8e4c9028b7d:log:0', 'hash': '0x332fa7d995ff1cb968029a77d6bb2b26be212b0b4189c607c773e8e4c9028b7d', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'value': 153672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x208a936872d974200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:02.000Z'}}, {'blockNum': '0x8034d3', 'uniqueId': '0xdd786544ee1c6cf023adf017a4e3ff13cddce184955de869fcf8d81620b40d42:log:0', 'hash': '0xdd786544ee1c6cf023adf017a4e3ff13cddce184955de869fcf8d81620b40d42', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbed23a64127be8aedfc9eb0ef2db25fbc3178f43', 'value': 76510.853887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1033a9652e59620af000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:20.000Z'}}, {'blockNum': '0x8034d3', 'uniqueId': '0x93de0ba9c1e371cdb261ced88bc3453a262e0e3a2a1f9dd46adaceb5322d8bbf:log:1', 'hash': '0x93de0ba9c1e371cdb261ced88bc3453a262e0e3a2a1f9dd46adaceb5322d8bbf', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbd8e4e8acd6a346f01bd95f68aea58da855c47c3', 'value': 100145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1534df0f5d0cc6240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:20.000Z'}}, {'blockNum': '0x8034d3', 'uniqueId': '0x3b92b302883471a53d9fb31066e2ef170e4bcad050eb35c3c034188996c1b279:log:2', 'hash': '0x3b92b302883471a53d9fb31066e2ef170e4bcad050eb35c3c034188996c1b279', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 197798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29e2a6ac3d481ad80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:20.000Z'}}, {'blockNum': '0x8034d3', 'uniqueId': '0xf40d1ac0a3471eb1108d52bdff06dc886e715df58a5a9bc28ebf96bebdcaf204:log:11', 'hash': '0xf40d1ac0a3471eb1108d52bdff06dc886e715df58a5a9bc28ebf96bebdcaf204', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 5018.617021276596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01100f4d57141880efa8', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:20.000Z'}}, {'blockNum': '0x8034d4', 'uniqueId': '0xaec656e5931a28052479ce09bc004dae2ce6e3741dfa60a877f78c206f680aea:log:0', 'hash': '0xaec656e5931a28052479ce09bc004dae2ce6e3741dfa60a877f78c206f680aea', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x15640b199d20d80393712c0a656a73424a6bed97', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:48.000Z'}}, {'blockNum': '0x8034d4', 'uniqueId': '0xec1d757455731fb787db59f3d12b87a13f1991a19375775adf33a839fdc83514:log:3', 'hash': '0xec1d757455731fb787db59f3d12b87a13f1991a19375775adf33a839fdc83514', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:48.000Z'}}, {'blockNum': '0x8034d4', 'uniqueId': '0xc6c039f5d6f1855ed747e672aafc19729a35d931f7b5baff99b3dad6b7ba5fb9:log:4', 'hash': '0xc6c039f5d6f1855ed747e672aafc19729a35d931f7b5baff99b3dad6b7ba5fb9', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 187303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x27a9b74a2e2cbe3c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:48.000Z'}}, {'blockNum': '0x8034d5', 'uniqueId': '0x0a23ed6fa1776a73d6a0b6c60dd3e41854c69b333d6c58d7e5b21fb9a69a97ef:log:2', 'hash': '0x0a23ed6fa1776a73d6a0b6c60dd3e41854c69b333d6c58d7e5b21fb9a69a97ef', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0fe0ded4fcadde5c9a260723a29f35890f1b577f', 'value': 100077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x15312f5ed5544f940000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:04:03.000Z'}}, {'blockNum': '0x8034d6', 'uniqueId': '0x50f5a486e2b6bffbfee74c4c5200121317eec7aa2e6abb44abb7373710d99418:log:2', 'hash': '0x50f5a486e2b6bffbfee74c4c5200121317eec7aa2e6abb44abb7373710d99418', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0c7fb59b0778b6a2acb528e85ddf6dc731c459ee', 'value': 85065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1203620516506b840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:04:32.000Z'}}, {'blockNum': '0x8034d6', 'uniqueId': '0x5cf0e955a659815725b19fdbf98ec80bcebc809b3108a3f8a6c856f4afcaf54c:log:3', 'hash': '0x5cf0e955a659815725b19fdbf98ec80bcebc809b3108a3f8a6c856f4afcaf54c', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:04:32.000Z'}}, {'blockNum': '0x8034d6', 'uniqueId': '0xdab02c99515562f7e3c4dac24617f48d9b013e91c200d8df6f953df735e75533:log:27', 'hash': '0xdab02c99515562f7e3c4dac24617f48d9b013e91c200d8df6f953df735e75533', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 9135.483870967742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01ef3c4e82c6f6bdef7b', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:04:32.000Z'}}, {'blockNum': '0x8034d6', 'uniqueId': '0xfb47d41331d50b9881950d2fce91526659b56b99038551b310f42a7963f5b28f:log:54', 'hash': '0xfb47d41331d50b9881950d2fce91526659b56b99038551b310f42a7963f5b28f', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 12180.645161290322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02945068ae5e9e5294a5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:04:32.000Z'}}, {'blockNum': '0x8034d6', 'uniqueId': '0xfb47d41331d50b9881950d2fce91526659b56b99038551b310f42a7963f5b28f:log:56', 'hash': '0xfb47d41331d50b9881950d2fce91526659b56b99038551b310f42a7963f5b28f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 12180.645161290322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02945068ae5e9e5294a5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:04:32.000Z'}}, {'blockNum': '0x8034da', 'uniqueId': '0xa7141d7674e0e1d5917a3141e316044397a6de0e914e672de7d75c5e725c9ca8:log:0', 'hash': '0xa7141d7674e0e1d5917a3141e316044397a6de0e914e672de7d75c5e725c9ca8', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 347002.14566912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x497b06257de70a000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:05:16.000Z'}}, {'blockNum': '0x8034da', 'uniqueId': '0xefb01d0433f0f1e0dee6640233598131f280d935d9133b0097f1dbd6d36868c4:log:3', 'hash': '0xefb01d0433f0f1e0dee6640233598131f280d935d9133b0097f1dbd6d36868c4', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 123286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1a1b58f29ac6f8980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:05:16.000Z'}}, {'blockNum': '0x8034dd', 'uniqueId': '0xdae3777b293f92d37cd8d7a3e2553e28c4a0230b960855c2ae471afdc7b4917f:log:138', 'hash': '0xdae3777b293f92d37cd8d7a3e2553e28c4a0230b960855c2ae471afdc7b4917f', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5093.61932469544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0114202b0ca8a0bfc271', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:06:05.000Z'}}, {'blockNum': '0x8034dd', 'uniqueId': '0xdae3777b293f92d37cd8d7a3e2553e28c4a0230b960855c2ae471afdc7b4917f:log:142', 'hash': '0xdae3777b293f92d37cd8d7a3e2553e28c4a0230b960855c2ae471afdc7b4917f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'value': 5093.61932469544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0114202b0ca8a0bfc271', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:06:05.000Z'}}, {'blockNum': '0x8034e1', 'uniqueId': '0xdd4e12de6e9198222b00e3316b1d8de2d0656d526e01f1b390f5b52d37bab158:log:15', 'hash': '0xdd4e12de6e9198222b00e3316b1d8de2d0656d526e01f1b390f5b52d37bab158', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 406449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5611a4fa08e7a8240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:06:30.000Z'}}, {'blockNum': '0x8034e4', 'uniqueId': '0x5cc62a92950074f7dff1a56af69b8939d19cd9eabee5b68ab2432e6419c90526:log:34', 'hash': '0x5cc62a92950074f7dff1a56af69b8939d19cd9eabee5b68ab2432e6419c90526', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a7da17', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:07:42.000Z'}}, {'blockNum': '0x8034e4', 'uniqueId': '0x5cc62a92950074f7dff1a56af69b8939d19cd9eabee5b68ab2432e6419c90526:log:36', 'hash': '0x5cc62a92950074f7dff1a56af69b8939d19cd9eabee5b68ab2432e6419c90526', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x1f959dd88a9c469e16060eef0cb8d0778a256d42', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a7da17', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:07:42.000Z'}}, {'blockNum': '0x8034e5', 'uniqueId': '0x0de28170f14d4a5ef70bc839499ea4e5921c2f73d9d3b0c17751bee7ece181f0:log:122', 'hash': '0x0de28170f14d4a5ef70bc839499ea4e5921c2f73d9d3b0c17751bee7ece181f0', 'from': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 5093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01141792c42128740000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:08:14.000Z'}}, {'blockNum': '0x8034e8', 'uniqueId': '0xdd2f432c785d3c0b419bb533a3c4b867cf022379331bddd24c27d4d46ea07a56:log:45', 'hash': '0xdd2f432c785d3c0b419bb533a3c4b867cf022379331bddd24c27d4d46ea07a56', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 5163.934426229508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0117effc78f56470c971', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:08:50.000Z'}}, {'blockNum': '0x8034e8', 'uniqueId': '0xe5c3156f945d05c34e8979f9b233efd824d0e53878f25fb84a05908c43d0c1f5:log:75', 'hash': '0xe5c3156f945d05c34e8979f9b233efd824d0e53878f25fb84a05908c43d0c1f5', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 7229.508196721312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0187e994a9578c9de6d1', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:08:50.000Z'}}, {'blockNum': '0x8034e8', 'uniqueId': '0xe5c3156f945d05c34e8979f9b233efd824d0e53878f25fb84a05908c43d0c1f5:log:77', 'hash': '0xe5c3156f945d05c34e8979f9b233efd824d0e53878f25fb84a05908c43d0c1f5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 7229.508196721312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0187e994a9578c9de6d1', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:08:50.000Z'}}, {'blockNum': '0x8034f2', 'uniqueId': '0xa487bf8c98c58aacaaf8f14ba7bfb2cff869449c33d39cc1d226318747f8ef33:log:2', 'hash': '0xa487bf8c98c58aacaaf8f14ba7bfb2cff869449c33d39cc1d226318747f8ef33', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 255006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x35ffe728604eadb80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:02.000Z'}}, {'blockNum': '0x8034f3', 'uniqueId': '0xa356e129ebe94a4621d35aba918aaa59e1e49b597920d097f2533dc595bac96d:log:1', 'hash': '0xa356e129ebe94a4621d35aba918aaa59e1e49b597920d097f2533dc595bac96d', 'from': '0x1655ddd39b423671627f9e9fc810499c79cf019b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26642.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05a4461abcd6f1570000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:07.000Z'}}, {'blockNum': '0x8034f3', 'uniqueId': '0xb0aec820064a159035c2687dcf5e76c8007c7d5a4857c875aeebc33227d9de41:log:2', 'hash': '0xb0aec820064a159035c2687dcf5e76c8007c7d5a4857c875aeebc33227d9de41', 'from': '0x0fe0ded4fcadde5c9a260723a29f35890f1b577f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x15312f5ed5544f940000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:07.000Z'}}, {'blockNum': '0x8034f3', 'uniqueId': '0x8942b5ea8225f316223228074f061874f5d8fe2cd41ec3ef2b228fb3ccff27a9:log:3', 'hash': '0x8942b5ea8225f316223228074f061874f5d8fe2cd41ec3ef2b228fb3ccff27a9', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:07.000Z'}}, {'blockNum': '0x8034f3', 'uniqueId': '0x697c96525cc0d59baac305393424b77f7287b16298c46c8f31480938fdd32297:log:4', 'hash': '0x697c96525cc0d59baac305393424b77f7287b16298c46c8f31480938fdd32297', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 96147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x145c23aa135c9a6c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:07.000Z'}}, {'blockNum': '0x8034f3', 'uniqueId': '0x189b81430d52415bf4284f0c5d92b57c00c786e8fd4b7ec0de787f81386bd640:log:5', 'hash': '0x189b81430d52415bf4284f0c5d92b57c00c786e8fd4b7ec0de787f81386bd640', 'from': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 153672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x208a936872d974200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:07.000Z'}}, {'blockNum': '0x8034f3', 'uniqueId': '0x4527454b792bde8421600455f17fdfe0c1d0e888c09fd0920cf9bf74cb49451f:log:7', 'hash': '0x4527454b792bde8421600455f17fdfe0c1d0e888c09fd0920cf9bf74cb49451f', 'from': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:07.000Z'}}, {'blockNum': '0x8034f4', 'uniqueId': '0xcbc4d2e03dc158302d670ca3795b8dc1ac135d252fd576b6936a465416300e37:log:11', 'hash': '0xcbc4d2e03dc158302d670ca3795b8dc1ac135d252fd576b6936a465416300e37', 'from': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12869.630895135904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b9aa01b8e638105408', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:23.000Z'}}, {'blockNum': '0x8034f4', 'uniqueId': '0x0238db2f1fbd6371a48baa48b31947562e44fdd305de5ac563be9571a302fa2a:log:12', 'hash': '0x0238db2f1fbd6371a48baa48b31947562e44fdd305de5ac563be9571a302fa2a', 'from': '0xbed23a64127be8aedfc9eb0ef2db25fbc3178f43', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 76510.853887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1033a9652e59620af000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:23.000Z'}}, {'blockNum': '0x8034f4', 'uniqueId': '0x1290df3901e1866e4529ff11abd9fec10a7e302267f1a66c86182df1eae8e4b7:log:13', 'hash': '0x1290df3901e1866e4529ff11abd9fec10a7e302267f1a66c86182df1eae8e4b7', 'from': '0xbd8e4e8acd6a346f01bd95f68aea58da855c47c3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1534df0f5d0cc6240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:23.000Z'}}, {'blockNum': '0x8034f4', 'uniqueId': '0x08c81dbc67e4ea48d0ed99f75530515511b5d7d8c02baafaae9a35dfae35ecca:log:14', 'hash': '0x08c81dbc67e4ea48d0ed99f75530515511b5d7d8c02baafaae9a35dfae35ecca', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 622355.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x83c9f4522eb7ee550000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:23.000Z'}}, {'blockNum': '0x8034f4', 'uniqueId': '0x1b6b684f08dfdf3b54702f3817482b551ba712c1554c6b91d49ce6d834949fa8:log:15', 'hash': '0x1b6b684f08dfdf3b54702f3817482b551ba712c1554c6b91d49ce6d834949fa8', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 836520, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb123d70e971705a00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:23.000Z'}}, {'blockNum': '0x8034f4', 'uniqueId': '0x277684a32c886717581eeba5d48d0ffe970221b313147acae4fa30ecd211079d:log:16', 'hash': '0x277684a32c886717581eeba5d48d0ffe970221b313147acae4fa30ecd211079d', 'from': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:23.000Z'}}, {'blockNum': '0x8034f4', 'uniqueId': '0x88b42dec987ccde65452fb8132d29e9c1beb2285623565098c4831d03f31c290:log:20', 'hash': '0x88b42dec987ccde65452fb8132d29e9c1beb2285623565098c4831d03f31c290', 'from': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0115c5c8e3e26d900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:23.000Z'}}, {'blockNum': '0x8034fb', 'uniqueId': '0xbff49fdd2d63a2e7b9c4e4cc927c89e02fa4203c18a76b208c668b9efec09cdc:log:5', 'hash': '0xbff49fdd2d63a2e7b9c4e4cc927c89e02fa4203c18a76b208c668b9efec09cdc', 'from': '0x0c7fb59b0778b6a2acb528e85ddf6dc731c459ee', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 85065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1203620516506b840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:12:23.000Z'}}, {'blockNum': '0x803502', 'uniqueId': '0x8ec906fdbec2a42a2464b8a05e7a93af01a1a763768d267ca100d8be596ad1a6:log:2', 'hash': '0x8ec906fdbec2a42a2464b8a05e7a93af01a1a763768d267ca100d8be596ad1a6', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xeca53f38dd5c31f421fd047ca6c92fe1a722a1a3', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:14:04.000Z'}}, {'blockNum': '0x803503', 'uniqueId': '0xab0969b4922dcf8accb491436fc40f9feae7e4930a8ed856d4eadf503b2d35bf:log:2', 'hash': '0xab0969b4922dcf8accb491436fc40f9feae7e4930a8ed856d4eadf503b2d35bf', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 347058.55028586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x497e14eaf1fba9c06800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:14:19.000Z'}}, {'blockNum': '0x80350c', 'uniqueId': '0x7800bf78101aa0e1792846c5bbd6aaf69123dcc3de8cc90baa8f1da31c1d20b4:log:13', 'hash': '0x7800bf78101aa0e1792846c5bbd6aaf69123dcc3de8cc90baa8f1da31c1d20b4', 'from': '0x0b0334a135d8f037bd6121a53b1620f8e26f1786', 'to': '0xc7f9fd30fcd6e3c80ec7e3e9e41c135a3bd46208', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:16:07.000Z'}}, {'blockNum': '0x80350f', 'uniqueId': '0x19f7b6229a59dd2fc0e6a18c35f3a2db002d6779e0d966f80df60c0f928e564f:log:10', 'hash': '0x19f7b6229a59dd2fc0e6a18c35f3a2db002d6779e0d966f80df60c0f928e564f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 150825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ff03d589ae6e3040000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:16:52.000Z'}}, {'blockNum': '0x803516', 'uniqueId': '0xba258d74f3e723161b143d695ca4d756a338704444b0ee72c2de61f334f93d3e:log:0', 'hash': '0xba258d74f3e723161b143d695ca4d756a338704444b0ee72c2de61f334f93d3e', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xf358caa9bca436dd08608805e5316eae391ee054', 'value': 57370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2608afc0b680280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:18:11.000Z'}}, {'blockNum': '0x80351f', 'uniqueId': '0x2cee01dcdaed5e7afc74ce50a69dd1b77fd2e6135197ec46f769d248efe4cca9:log:0', 'hash': '0x2cee01dcdaed5e7afc74ce50a69dd1b77fd2e6135197ec46f769d248efe4cca9', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 347058.55028586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x497e14eaf1fba9c06800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:18.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x78676c988e74352a52411c4244fabbfa0d5b840300ec389b9034477c13c37ae6:log:4', 'hash': '0x78676c988e74352a52411c4244fabbfa0d5b840300ec389b9034477c13c37ae6', 'from': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7665.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x019f9290f400d1840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0xe72e5c1392d952e9747eeda1ac29bf5af8ae466d0bb5d39a3b848a3cb2108c3f:log:5', 'hash': '0xe72e5c1392d952e9747eeda1ac29bf5af8ae466d0bb5d39a3b848a3cb2108c3f', 'from': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 65326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd5545dc804aff80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0xe5065606ef7cead7826a0924f69f635e9ae2566fde72a9e27e0f1e2d4dd6ed45:log:8', 'hash': '0xe5065606ef7cead7826a0924f69f635e9ae2566fde72a9e27e0f1e2d4dd6ed45', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 347002.14566912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x497b06257de70a000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x91dbe23b646d1cf93b8fa99d1abd440363b495422a93c05a8619c1be394cacd8:log:9', 'hash': '0x91dbe23b646d1cf93b8fa99d1abd440363b495422a93c05a8619c1be394cacd8', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ff03d589ae6e3040000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0xa65511b775a022ddefcbb36770f3e3a3ed823bb89f4005c6f10b66f0cb78f734:log:10', 'hash': '0xa65511b775a022ddefcbb36770f3e3a3ed823bb89f4005c6f10b66f0cb78f734', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01141792c42128740000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x0d7b6c30486f3c141c2ca77c6f6e8e9dea712fe7d69dc3f2ad77ac0b646e5ba3:log:11', 'hash': '0x0d7b6c30486f3c141c2ca77c6f6e8e9dea712fe7d69dc3f2ad77ac0b646e5ba3', 'from': '0x15640b199d20d80393712c0a656a73424a6bed97', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0xf5824058c0124d559d13208af561a4d0f50c54d359fc968e2acba8a01c5d1e7b:log:12', 'hash': '0xf5824058c0124d559d13208af561a4d0f50c54d359fc968e2acba8a01c5d1e7b', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 197798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29e2a6ac3d481ad80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x41fb96caf8f2041c64984517008d99b8270a0d4a7d4b3be58d2e540c35ac0a04:log:13', 'hash': '0x41fb96caf8f2041c64984517008d99b8270a0d4a7d4b3be58d2e540c35ac0a04', 'from': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 81483.47038043274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11413a4fd1132d733910', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x4d8563bbf5610fc7c77f386a047443b404fbe2c491984024e3303de702181d3a:log:14', 'hash': '0x4d8563bbf5610fc7c77f386a047443b404fbe2c491984024e3303de702181d3a', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x14f9ba64bd6a66f80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x1232e8f0a2d41a5d8f9ec795fad3fb7c591059809f53a165e5ed1b7a019db4c0:log:46', 'hash': '0x1232e8f0a2d41a5d8f9ec795fad3fb7c591059809f53a165e5ed1b7a019db4c0', 'from': '0x4703d474871889fb4edf5e3910d03620497c328f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3121.83413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa93c26d10c84a32000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x1232e8f0a2d41a5d8f9ec795fad3fb7c591059809f53a165e5ed1b7a019db4c0:log:47', 'hash': '0x1232e8f0a2d41a5d8f9ec795fad3fb7c591059809f53a165e5ed1b7a019db4c0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x4703d474871889fb4edf5e3910d03620497c328f', 'value': 121.2675993355972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0692ed0f17aaaac3e8', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x1232e8f0a2d41a5d8f9ec795fad3fb7c591059809f53a165e5ed1b7a019db4c0:log:48', 'hash': '0x1232e8f0a2d41a5d8f9ec795fad3fb7c591059809f53a165e5ed1b7a019db4c0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3000.5665306644028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a939c1f4d9f85c18', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803547', 'uniqueId': '0x5fe32a64b10b70f487d2635804ec096905ff9cfd26f5723fcd90dfc7689c7756:log:8', 'hash': '0x5fe32a64b10b70f487d2635804ec096905ff9cfd26f5723fcd90dfc7689c7756', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 362014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4ca8d179b79ff5b80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:28:14.000Z'}}, {'blockNum': '0x803555', 'uniqueId': '0xee32aada831059969758a7903562842e5f11d3a444662d79b862af187402f8fe:log:7', 'hash': '0xee32aada831059969758a7903562842e5f11d3a444662d79b862af187402f8fe', 'from': '0xeca53f38dd5c31f421fd047ca6c92fe1a722a1a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:30:58.000Z'}}, {'blockNum': '0x803555', 'uniqueId': '0x4551d8116477d87674c97c1e30611de78bdebc47c8f3c591cd934f0d03451432:log:27', 'hash': '0x4551d8116477d87674c97c1e30611de78bdebc47c8f3c591cd934f0d03451432', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 6258.563535911602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01534704489eefc1c498', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:30:58.000Z'}}, {'blockNum': '0x803567', 'uniqueId': '0x97f32c43016baa74946cba7ff38c45f52893b084671672d03b6fd6809b066c9b:log:0', 'hash': '0x97f32c43016baa74946cba7ff38c45f52893b084671672d03b6fd6809b066c9b', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 232120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3127401b1f8837e00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:34:34.000Z'}}, {'blockNum': '0x80356f', 'uniqueId': '0xcb97884b628236e13284b54cc2cd4816236873c3210a4d57c4d4393e34bf96d2:log:18', 'hash': '0xcb97884b628236e13284b54cc2cd4816236873c3210a4d57c4d4393e34bf96d2', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 362014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4ca8d179b79ff5b80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:35:17.000Z'}}, {'blockNum': '0x80356f', 'uniqueId': '0x058519c2d2bd5edf6c87fbd99efe2534db46ac17fc8e3f61688643d8d64fb30f:log:20', 'hash': '0x058519c2d2bd5edf6c87fbd99efe2534db46ac17fc8e3f61688643d8d64fb30f', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x0acb17762d75a97af9abf6b76fa6343f7f79e912', 'value': 76810, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1043e0e1ab2db9e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:35:17.000Z'}}, {'blockNum': '0x803572', 'uniqueId': '0xc39a5fae3a9bd67df87bc6ca98eb3d301bf913babc4f801a78d1281d076e3f03:log:8', 'hash': '0xc39a5fae3a9bd67df87bc6ca98eb3d301bf913babc4f801a78d1281d076e3f03', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xffea7d2cca793b1d94e6e5d1e0861434635cea9c', 'value': 50703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0abc9d79a7fe26dc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:35:48.000Z'}}, {'blockNum': '0x803574', 'uniqueId': '0x6c36c02e1af5781c30d8a3ad87ad0d1312885cc0f6c6f90097b92337a6f3678a:log:63', 'hash': '0x6c36c02e1af5781c30d8a3ad87ad0d1312885cc0f6c6f90097b92337a6f3678a', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'value': 103549, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x15ed670cb9e28bd40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:36:32.000Z'}}, {'blockNum': '0x803588', 'uniqueId': '0x50380d5009ce95a19d865f48ae5d60c4de5b2b1f582fdcad4239df4323b5d95e:log:37', 'hash': '0x50380d5009ce95a19d865f48ae5d60c4de5b2b1f582fdcad4239df4323b5d95e', 'from': '0xffea7d2cca793b1d94e6e5d1e0861434635cea9c', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 50703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0abc9d79a7fe26dc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:40:46.000Z'}}, {'blockNum': '0x803588', 'uniqueId': '0xece88e233c2932ee0cf6426b01fa9532e5894875bee5bfb5f13df07dd7f6d84c:log:61', 'hash': '0xece88e233c2932ee0cf6426b01fa9532e5894875bee5bfb5f13df07dd7f6d84c', 'from': '0x0acb17762d75a97af9abf6b76fa6343f7f79e912', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 76810, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1043e0e1ab2db9e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:40:46.000Z'}}, {'blockNum': '0x803589', 'uniqueId': '0x3621631b1f44152fc5bc890591243162c13ee275e3134861445acd09da2c44e4:log:11', 'hash': '0x3621631b1f44152fc5bc890591243162c13ee275e3134861445acd09da2c44e4', 'from': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 103549, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x15ed670cb9e28bd40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:41:30.000Z'}}, {'blockNum': '0x80358a', 'uniqueId': '0x590886f1ce7cbe90ffd32045146a7a859c4fafde1830cdcf3fcba6029330f48b:log:59', 'hash': '0x590886f1ce7cbe90ffd32045146a7a859c4fafde1830cdcf3fcba6029330f48b', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6281.767955801105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0154890af1916c93fa57', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:41:54.000Z'}}, {'blockNum': '0x80358a', 'uniqueId': '0x590886f1ce7cbe90ffd32045146a7a859c4fafde1830cdcf3fcba6029330f48b:log:61', 'hash': '0x590886f1ce7cbe90ffd32045146a7a859c4fafde1830cdcf3fcba6029330f48b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 6281.767955801105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0154890af1916c93fa57', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:41:54.000Z'}}, {'blockNum': '0x803596', 'uniqueId': '0x55b3ff4bcefcbf1a245e979e0dbb531c8559b4b465c85f12908f0c02635e5e84:log:55', 'hash': '0x55b3ff4bcefcbf1a245e979e0dbb531c8559b4b465c85f12908f0c02635e5e84', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xd38a2dc9fed4416ead8556b851b0f459d4aec842', 'value': 345632.317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4930c3f471004e4c8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:44:35.000Z'}}, {'blockNum': '0x8035a7', 'uniqueId': '0xd1ee2c222aa297d0cd77b916f08cd5eb4d85410b1ed8805b8e38e1a79d27fed7:log:3', 'hash': '0xd1ee2c222aa297d0cd77b916f08cd5eb4d85410b1ed8805b8e38e1a79d27fed7', 'from': '0xd38a2dc9fed4416ead8556b851b0f459d4aec842', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 345632.317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4930c3f471004e4c8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:49:38.000Z'}}, {'blockNum': '0x8035c2', 'uniqueId': '0x9115fbcb54dc8ca5aa200262f7b8ab472beecb77fcd5fee559693e17e539e825:log:40', 'hash': '0x9115fbcb54dc8ca5aa200262f7b8ab472beecb77fcd5fee559693e17e539e825', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 8469.27374301676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01cb1ec8ad2368e9d518', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:54:45.000Z'}}, {'blockNum': '0x8035ca', 'uniqueId': '0xe94948e11bba1b5d5e1bd70e624063b7b2319be8b1da0779c27a2f39cb828e20:log:15', 'hash': '0xe94948e11bba1b5d5e1bd70e624063b7b2319be8b1da0779c27a2f39cb828e20', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x4f18343762b567f431ba8cda7b9f27735f365756', 'value': 18574.4001706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03eeeb958fc558061000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:55:59.000Z'}}, {'blockNum': '0x80361c', 'uniqueId': '0x1464a174f822a40353b2515197c7883814d59222a025674d7dc6605e7a403d0b:log:1', 'hash': '0x1464a174f822a40353b2515197c7883814d59222a025674d7dc6605e7a403d0b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'value': 343637.70152975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x48c4a31ac6bc08525c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:14:51.000Z'}}, {'blockNum': '0x803649', 'uniqueId': '0x6d1db111e92c20dde9ce61e1a2bb5deabe8a857dff353f4c7019107f02377f00:log:12', 'hash': '0x6d1db111e92c20dde9ce61e1a2bb5deabe8a857dff353f4c7019107f02377f00', 'from': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 343637.70152975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x48c4a31ac6bc08525c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:25:50.000Z'}}, {'blockNum': '0x803670', 'uniqueId': '0x168e92f605608f6fc37c9363feeca6b1c57261b40705a4ff4fda49f3cc863ffb:log:111', 'hash': '0x168e92f605608f6fc37c9363feeca6b1c57261b40705a4ff4fda49f3cc863ffb', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 3520.223555708562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbed4ea60f923580f48', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:34:57.000Z'}}, {'blockNum': '0x803670', 'uniqueId': '0x168e92f605608f6fc37c9363feeca6b1c57261b40705a4ff4fda49f3cc863ffb:log:113', 'hash': '0x168e92f605608f6fc37c9363feeca6b1c57261b40705a4ff4fda49f3cc863ffb', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3520.2234526861043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbed4ea03465a580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:34:57.000Z'}}, {'blockNum': '0x803670', 'uniqueId': '0x168e92f605608f6fc37c9363feeca6b1c57261b40705a4ff4fda49f3cc863ffb:log:114', 'hash': '0x168e92f605608f6fc37c9363feeca6b1c57261b40705a4ff4fda49f3cc863ffb', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3520.2234526861043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbed4ea03465a580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:34:57.000Z'}}, {'blockNum': '0x803678', 'uniqueId': '0x1ae4e6c75f810f8da2fa6c5d5615be6d850b7f37f40620b6c9806bcc977dccb8:log:19', 'hash': '0x1ae4e6c75f810f8da2fa6c5d5615be6d850b7f37f40620b6c9806bcc977dccb8', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 3671.7940336387337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc70c60e3988b6a9c2f', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:37:38.000Z'}}, {'blockNum': '0x803678', 'uniqueId': '0x1ae4e6c75f810f8da2fa6c5d5615be6d850b7f37f40620b6c9806bcc977dccb8:log:21', 'hash': '0x1ae4e6c75f810f8da2fa6c5d5615be6d850b7f37f40620b6c9806bcc977dccb8', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3671.7939212245096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc70c607d5b11880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:37:38.000Z'}}, {'blockNum': '0x803678', 'uniqueId': '0x1ae4e6c75f810f8da2fa6c5d5615be6d850b7f37f40620b6c9806bcc977dccb8:log:22', 'hash': '0x1ae4e6c75f810f8da2fa6c5d5615be6d850b7f37f40620b6c9806bcc977dccb8', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3671.7939212245096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc70c607d5b11880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:37:38.000Z'}}, {'blockNum': '0x80369a', 'uniqueId': '0xaf67d082e8f455ae8a812c9e32c71b7746e7c20c402c096fe37a843e8e2a6a3e:log:4', 'hash': '0xaf67d082e8f455ae8a812c9e32c71b7746e7c20c402c096fe37a843e8e2a6a3e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc40f65c5e9c146494eb61da2f012f6e5f7af8ab9', 'value': 9917.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02199a29146ddc950000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:45:20.000Z'}}, {'blockNum': '0x8036a8', 'uniqueId': '0x0c14dd6b6cb3f5c9a76e48302219efbe075c9008e332bbf871239ae614a27350:log:2', 'hash': '0x0c14dd6b6cb3f5c9a76e48302219efbe075c9008e332bbf871239ae614a27350', 'from': '0xc40f65c5e9c146494eb61da2f012f6e5f7af8ab9', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 9917.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02199a29146ddc950000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:48:42.000Z'}}, {'blockNum': '0x803799', 'uniqueId': '0x976c575ab2656118c45fa46809b59ef59acdc5ba6cb3de137fc8dd4eda7a91cf:log:9', 'hash': '0x976c575ab2656118c45fa46809b59ef59acdc5ba6cb3de137fc8dd4eda7a91cf', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x02ef943d4c8333bfd6304dedf8b027cf2018f656', 'value': 238029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x326793f4404eef140000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:40:47.000Z'}}, {'blockNum': '0x80379a', 'uniqueId': '0xf94dd77eecea58c4a91d2175b77a2bc064d174c0c285fb80be07c92e1f04d770:log:40', 'hash': '0xf94dd77eecea58c4a91d2175b77a2bc064d174c0c285fb80be07c92e1f04d770', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 109985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x174a4c7df67ed9e40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:41:12.000Z'}}, {'blockNum': '0x80379e', 'uniqueId': '0x6977af02f522d0bcd195f178163ff29b3d131e48a8f2e70cbb3de4d33786c9ae:log:22', 'hash': '0x6977af02f522d0bcd195f178163ff29b3d131e48a8f2e70cbb3de4d33786c9ae', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'value': 63797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d82713a9101ebb40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:41:38.000Z'}}, {'blockNum': '0x8037a8', 'uniqueId': '0xf1914245d71022415110e8dcc6cee9f9320c6f94ab4b1372519c92514d151196:log:1', 'hash': '0xf1914245d71022415110e8dcc6cee9f9320c6f94ab4b1372519c92514d151196', 'from': '0x02ef943d4c8333bfd6304dedf8b027cf2018f656', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 238029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x326793f4404eef140000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:44:10.000Z'}}, {'blockNum': '0x8037a8', 'uniqueId': '0xca9bb065f6a000921f711f53dde60cbe611f2fac37b5e0514b9f7fa2f4f645a2:log:2', 'hash': '0xca9bb065f6a000921f711f53dde60cbe611f2fac37b5e0514b9f7fa2f4f645a2', 'from': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 63797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d82713a9101ebb40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:44:10.000Z'}}, {'blockNum': '0x8037aa', 'uniqueId': '0xcb1292570996a3a7ed5ee2c0997c5487d887c98a68ea23ac3ce356d881091be6:log:0', 'hash': '0xcb1292570996a3a7ed5ee2c0997c5487d887c98a68ea23ac3ce356d881091be6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xdea6177f1df6ca2d96e998ea01b2b04c27740a8e', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x69e10de76676d0800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:45:35.000Z'}}, {'blockNum': '0x8037c1', 'uniqueId': '0xc332b1132a38afb2c21c9342a4b49e8c09e3dd5cc92724d435c4c448e3d9bd83:log:3', 'hash': '0xc332b1132a38afb2c21c9342a4b49e8c09e3dd5cc92724d435c4c448e3d9bd83', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 1059779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe06abc15ce364d2c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:52:21.000Z'}}, {'blockNum': '0x8037d0', 'uniqueId': '0x3b47910f7e4e3f9fced8e46b036961e0a9fcb299b8469835ea5dcd8127e6643c:log:10', 'hash': '0x3b47910f7e4e3f9fced8e46b036961e0a9fcb299b8469835ea5dcd8127e6643c', 'from': '0xdea6177f1df6ca2d96e998ea01b2b04c27740a8e', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x69e10de76676d0800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:55:58.000Z'}}, {'blockNum': '0x80386b', 'uniqueId': '0xe4c028f6c9e4d9e3aedd27324fea9fbce77e2a4aff756ae2d999476b709014cd:log:11', 'hash': '0xe4c028f6c9e4d9e3aedd27324fea9fbce77e2a4aff756ae2d999476b709014cd', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x2b7c6615195babbdbac5665eae1954f36865166f', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T23:32:43.000Z'}}, {'blockNum': '0x8038d7', 'uniqueId': '0x2f83f0285acc1f169bc1dc4051d18fdc7556676ffa7a79a80e11d1090f7afcc7:log:3', 'hash': '0x2f83f0285acc1f169bc1dc4051d18fdc7556676ffa7a79a80e11d1090f7afcc7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbce49cd26220ddd885b38b6ae7cf3d5f7dde9aaf', 'value': 336.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x123f436c9de47c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T23:55:48.000Z'}}, {'blockNum': '0x8038f6', 'uniqueId': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453:log:115', 'hash': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4019.590022507743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd9e70474c5266b1e35', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:03:42.000Z'}}, {'blockNum': '0x8038f6', 'uniqueId': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453:log:119', 'hash': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 4019.590022507743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd9e70474c5266b1e35', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:03:42.000Z'}}, {'blockNum': '0x8038f6', 'uniqueId': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453:log:120', 'hash': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4019.583980470733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd9e6eefd91c8b98daf', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:03:42.000Z'}}, {'blockNum': '0x8038f6', 'uniqueId': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453:log:121', 'hash': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4019.583980470733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd9e6eefd91c8b98daf', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:03:42.000Z'}}, {'blockNum': '0x803901', 'uniqueId': '0xe70dea2e44a96012ad4e34033153795b0e3cc35e3425515548643c99b4be863b:log:5', 'hash': '0xe70dea2e44a96012ad4e34033153795b0e3cc35e3425515548643c99b4be863b', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x6b838d866e45449294c32dedd9fcf3326fa099d9', 'value': 10418.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0234cfa1b89e753ec000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:06:45.000Z'}}, {'blockNum': '0x803903', 'uniqueId': '0x7db13acea4d40ddd4ba6ffed950709a44b0b42bd0f17819c922e937d0f010fba:log:83', 'hash': '0x7db13acea4d40ddd4ba6ffed950709a44b0b42bd0f17819c922e937d0f010fba', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 4241.979330448937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe5f549fe12d64295c5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:07:09.000Z'}}, {'blockNum': '0x803903', 'uniqueId': '0x7db13acea4d40ddd4ba6ffed950709a44b0b42bd0f17819c922e937d0f010fba:log:85', 'hash': '0x7db13acea4d40ddd4ba6ffed950709a44b0b42bd0f17819c922e937d0f010fba', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4241.979179949869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe5f54975320ac00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:07:09.000Z'}}, {'blockNum': '0x803903', 'uniqueId': '0x7db13acea4d40ddd4ba6ffed950709a44b0b42bd0f17819c922e937d0f010fba:log:86', 'hash': '0x7db13acea4d40ddd4ba6ffed950709a44b0b42bd0f17819c922e937d0f010fba', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4241.979179949869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe5f54975320ac00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:07:09.000Z'}}, {'blockNum': '0x80390d', 'uniqueId': '0xcb01da6794f7fe769d366db503691e034af5b4a81c0c797c492a4df0220328d1:log:0', 'hash': '0xcb01da6794f7fe769d366db503691e034af5b4a81c0c797c492a4df0220328d1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 693737.65530867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x92e797f9839bfb996c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:08:56.000Z'}}, {'blockNum': '0x803910', 'uniqueId': '0x8b9ad78810dd1605f82b78577b76f3f3d12e01a91dff94dcdec615cb9b1d8db6:log:1', 'hash': '0x8b9ad78810dd1605f82b78577b76f3f3d12e01a91dff94dcdec615cb9b1d8db6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 693738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x92e79cc21a8c35680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:09:17.000Z'}}, {'blockNum': '0x803920', 'uniqueId': '0x4ca006c2d6fec6851de1e742fde1ea0d14e570f6f1a060a8e5c47eb616930477:log:6', 'hash': '0x4ca006c2d6fec6851de1e742fde1ea0d14e570f6f1a060a8e5c47eb616930477', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x924ba914a8a8e5b45b5d39984529eacd9fd61beb', 'value': 25971.69534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x057fedad4bca680ac000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:11:35.000Z'}}, {'blockNum': '0x80392f', 'uniqueId': '0xef7e5a0125ef8086cd0bd26fd0a7d170f4bea61d3d6b2f90ed42fe0e45d8238b:log:9', 'hash': '0xef7e5a0125ef8086cd0bd26fd0a7d170f4bea61d3d6b2f90ed42fe0e45d8238b', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x3986a7e0df57ead3abed03ba5ce4ef1a51180d31', 'value': 10418.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0234cfa1b89e753ec000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:15:06.000Z'}}, {'blockNum': '0x80393f', 'uniqueId': '0xa5a4034fa33134e49d0ed0289b3a08e97e0b527e053789532c691f18291dffac:log:2', 'hash': '0xa5a4034fa33134e49d0ed0289b3a08e97e0b527e053789532c691f18291dffac', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 273528.72225766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x39ec05911c0f837ad800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:18:41.000Z'}}, {'blockNum': '0x803940', 'uniqueId': '0xcf5577e639e6a1da64bcc5d3c2375263e25923e12a4edfd04a426bbe2adc2ffa:log:0', 'hash': '0xcf5577e639e6a1da64bcc5d3c2375263e25923e12a4edfd04a426bbe2adc2ffa', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 73314.78221023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0f8666fd9dd71f1b9c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:18:47.000Z'}}, {'blockNum': '0x80396e', 'uniqueId': '0x0b10e125537770a2f2596d03a614e2ab5a33f5c54d6364e03f9fe6d5303bf2da:log:44', 'hash': '0x0b10e125537770a2f2596d03a614e2ab5a33f5c54d6364e03f9fe6d5303bf2da', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 693737.65530867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x92e797f9839bfb996c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:26:18.000Z'}}, {'blockNum': '0x803986', 'uniqueId': '0x84ca8086b25d0d1290f513851c8a2c5ab9520575ce5e2fd7a89638a93b8a0a27:log:22', 'hash': '0x84ca8086b25d0d1290f513851c8a2c5ab9520575ce5e2fd7a89638a93b8a0a27', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 346843.50446789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x49726c8eb9e6a2967400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:31:22.000Z'}}, {'blockNum': '0x8039b6', 'uniqueId': '0x5493e6804b7a1aec1ec5ccce7b5982ee7fd494dd21c840414487505aa4467318:log:34', 'hash': '0x5493e6804b7a1aec1ec5ccce7b5982ee7fd494dd21c840414487505aa4467318', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x4f18343762b567f431ba8cda7b9f27735f365756', 'value': 76209.2378022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10234fa1974109f27000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:42:14.000Z'}}, {'blockNum': '0x8039c4', 'uniqueId': '0xe030d236db4c4a9184ec7e7ca4a948d552a1d9e2919220245c5d411f23dd2f0d:log:28', 'hash': '0xe030d236db4c4a9184ec7e7ca4a948d552a1d9e2919220245c5d411f23dd2f0d', 'from': '0x90889616322936d77c9fa1e1441e23754fbba1f7', 'to': '0x331f06673a10408c5982b24776007c44d08cf7f5', 'value': 547893.012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x740556f6406951020000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:45:24.000Z'}}, {'blockNum': '0x8039fa', 'uniqueId': '0x3bc588aae8eda80b3fd7bb24abdaf8faeffe61ba3809d15f1535680112f50753:log:10', 'hash': '0x3bc588aae8eda80b3fd7bb24abdaf8faeffe61ba3809d15f1535680112f50753', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xb6ff8c73b2239bcd735cd66ce971f21376a69286', 'value': 132479.6572306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1c0dbc9267ec9f205000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:59:52.000Z'}}, {'blockNum': '0x8039ff', 'uniqueId': '0x53f84c7cdb91a263002bd16fe0644e519a2a3fc2a4e631dd72178e7457cfbba2:log:57', 'hash': '0x53f84c7cdb91a263002bd16fe0644e519a2a3fc2a4e631dd72178e7457cfbba2', 'from': '0x331f06673a10408c5982b24776007c44d08cf7f5', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 547893.012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x740556f6406951020000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:01:31.000Z'}}, {'blockNum': '0x803a13', 'uniqueId': '0x52b58438d9a6733b157cdef89519382d4b8b8438991edc371781141a2683c134:log:1', 'hash': '0x52b58438d9a6733b157cdef89519382d4b8b8438991edc371781141a2683c134', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x9e3542b0541b06c0d44357fcd81a1e7656da5be4', 'value': 330000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x45e155fa0110fa400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:05:45.000Z'}}, {'blockNum': '0x803a17', 'uniqueId': '0xf9cbd2648ceb02b1821a466da3070036850b5b10cc9f89c295f1c404c093bcbf:log:0', 'hash': '0xf9cbd2648ceb02b1821a466da3070036850b5b10cc9f89c295f1c404c093bcbf', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x9e3542b0541b06c0d44357fcd81a1e7656da5be4', 'value': 330000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x45e155fa0110fa400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:06:20.000Z'}}, {'blockNum': '0x803a18', 'uniqueId': '0x824f866f7bc6489af88cd1a6c9658413983cad4ef18c2fdda5ac242d9a9c71e1:log:0', 'hash': '0x824f866f7bc6489af88cd1a6c9658413983cad4ef18c2fdda5ac242d9a9c71e1', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x9e3542b0541b06c0d44357fcd81a1e7656da5be4', 'value': 330000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x45e155fa0110fa400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:06:36.000Z'}}, {'blockNum': '0x803a1b', 'uniqueId': '0x387c3e014048f497dbff65e5f40a708e1cbb347ec61f4dd6dfe1ae0dc13ba4e6:log:0', 'hash': '0x387c3e014048f497dbff65e5f40a708e1cbb347ec61f4dd6dfe1ae0dc13ba4e6', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x9e3542b0541b06c0d44357fcd81a1e7656da5be4', 'value': 329900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x45dbea32a2e397300000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:07:15.000Z'}}, {'blockNum': '0x803a1d', 'uniqueId': '0x76c3ff789169311db8b3ac1fc7cc3901adadaffdba06db23d85954a3295900a3:log:0', 'hash': '0x76c3ff789169311db8b3ac1fc7cc3901adadaffdba06db23d85954a3295900a3', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x9e3542b0541b06c0d44357fcd81a1e7656da5be4', 'value': 330000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x45e155fa0110fa400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:07:48.000Z'}}, {'blockNum': '0x803a1e', 'uniqueId': '0xe896c030ba86ed6372db56f03c497d0c462730e3081ef902e18965bf53366705:log:3', 'hash': '0xe896c030ba86ed6372db56f03c497d0c462730e3081ef902e18965bf53366705', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 83460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11ac602ba1f7f5900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:08:10.000Z'}}, {'blockNum': '0x803a20', 'uniqueId': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd:log:97', 'hash': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5979.041082998097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01441fdd0aab60744ba0', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:08:54.000Z'}}, {'blockNum': '0x803a20', 'uniqueId': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd:log:101', 'hash': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 5979.041082998097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01441fdd0aab60744ba0', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:08:54.000Z'}}, {'blockNum': '0x803a20', 'uniqueId': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd:log:102', 'hash': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 5979.2224047213285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0144226139d0e7b00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:08:54.000Z'}}, {'blockNum': '0x803a20', 'uniqueId': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd:log:103', 'hash': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5979.2224047213285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0144226139d0e7b00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:08:54.000Z'}}, {'blockNum': '0x803a23', 'uniqueId': '0xea8e0a17da16e58373fe207a9dfd9d8458eaf21cb22a4737d1f2b837932ad5fe:log:85', 'hash': '0xea8e0a17da16e58373fe207a9dfd9d8458eaf21cb22a4737d1f2b837932ad5fe', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 6222.404439515491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x015151355e07166ead52', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:09:17.000Z'}}, {'blockNum': '0x803a23', 'uniqueId': '0xea8e0a17da16e58373fe207a9dfd9d8458eaf21cb22a4737d1f2b837932ad5fe:log:87', 'hash': '0xea8e0a17da16e58373fe207a9dfd9d8458eaf21cb22a4737d1f2b837932ad5fe', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 6222.4041145352485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x015151343675ba800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:09:17.000Z'}}, {'blockNum': '0x803a23', 'uniqueId': '0xea8e0a17da16e58373fe207a9dfd9d8458eaf21cb22a4737d1f2b837932ad5fe:log:88', 'hash': '0xea8e0a17da16e58373fe207a9dfd9d8458eaf21cb22a4737d1f2b837932ad5fe', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 6222.4041145352485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x015151343675ba800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:09:17.000Z'}}, {'blockNum': '0x803a25', 'uniqueId': '0x0f66282451d06f51a886b242749021f3cf1dd416a35b1de155f876ef2f5aecc6:log:1', 'hash': '0x0f66282451d06f51a886b242749021f3cf1dd416a35b1de155f876ef2f5aecc6', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xcb75906a534b86a4a72ee621e4e071abfe852980', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:09:49.000Z'}}, {'blockNum': '0x803a2b', 'uniqueId': '0xdbb6ff8afd96e3b13da398b592758b28455be5c7b59501f5dd2c754902283a24:log:4', 'hash': '0xdbb6ff8afd96e3b13da398b592758b28455be5c7b59501f5dd2c754902283a24', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 302626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x40156369c2bbf3480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:12:01.000Z'}}, {'blockNum': '0x803a46', 'uniqueId': '0x9d6f3db033dc661c2203e8fb1d0b4b04bb8f6f3d9416e079bc0b1e9474da4051:log:35', 'hash': '0x9d6f3db033dc661c2203e8fb1d0b4b04bb8f6f3d9416e079bc0b1e9474da4051', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 3309.767919176599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb36c41c296d0feef75', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:17:23.000Z'}}, {'blockNum': '0x803a46', 'uniqueId': '0x9d6f3db033dc661c2203e8fb1d0b4b04bb8f6f3d9416e079bc0b1e9474da4051:log:37', 'hash': '0x9d6f3db033dc661c2203e8fb1d0b4b04bb8f6f3d9416e079bc0b1e9474da4051', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3309.767919176599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb36c41c296d0feef75', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:17:23.000Z'}}, {'blockNum': '0x803a46', 'uniqueId': '0x9d6f3db033dc661c2203e8fb1d0b4b04bb8f6f3d9416e079bc0b1e9474da4051:log:38', 'hash': '0x9d6f3db033dc661c2203e8fb1d0b4b04bb8f6f3d9416e079bc0b1e9474da4051', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3309.767919176599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb36c41c296d0feef75', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:17:23.000Z'}}, {'blockNum': '0x803a55', 'uniqueId': '0xd7bfdff18f84397114ca6563136ed1097781eb5be1a015c31d2bb44d63660d3d:log:29', 'hash': '0xd7bfdff18f84397114ca6563136ed1097781eb5be1a015c31d2bb44d63660d3d', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x754f3e1124b8443b9467e7945be34a59f29b43b2', 'value': 589.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ff7bb41a2afda0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:20:58.000Z'}}, {'blockNum': '0x803a55', 'uniqueId': '0x1c12c4c421e01bad22ac8556d5233218397c1f8f36af1703607249713b095bae:log:60', 'hash': '0x1c12c4c421e01bad22ac8556d5233218397c1f8f36af1703607249713b095bae', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 83460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11ac602ba1f7f5900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:20:58.000Z'}}, {'blockNum': '0x803a57', 'uniqueId': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2:log:89', 'hash': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3830.6356716121613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcfa8bfbfc0eec3da27', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:22:01.000Z'}}, {'blockNum': '0x803a57', 'uniqueId': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2:log:93', 'hash': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 3830.6356716121613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcfa8bfbfc0eec3da27', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:22:01.000Z'}}, {'blockNum': '0x803a57', 'uniqueId': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2:log:94', 'hash': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3830.4397528432646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcfa607b4abddd80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:22:01.000Z'}}, {'blockNum': '0x803a57', 'uniqueId': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2:log:95', 'hash': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3830.4397528432646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcfa607b4abddd80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:22:01.000Z'}}, {'blockNum': '0x803a5d', 'uniqueId': '0x4112f1390af6714fe310b569018c2ec37aca7358673379a254f0ac11d1b4220c:log:14', 'hash': '0x4112f1390af6714fe310b569018c2ec37aca7358673379a254f0ac11d1b4220c', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x3b0937e7fb99f677e8ce5866f04ed924b17b26e4', 'value': 53283.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b488701901d9462c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:22:52.000Z'}}, {'blockNum': '0x803a63', 'uniqueId': '0x8205f9f8d9993e021ab58b26038fd84716493a34aa421c189c2fb6599ecf19e2:log:19', 'hash': '0x8205f9f8d9993e021ab58b26038fd84716493a34aa421c189c2fb6599ecf19e2', 'from': '0xcb75906a534b86a4a72ee621e4e071abfe852980', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:23:54.000Z'}}, {'blockNum': '0x803a6e', 'uniqueId': '0x4f9e691087c5d4a08395f0fbd75175832948db2a21e5ea3ed9e307e8f6d1827b:log:51', 'hash': '0x4f9e691087c5d4a08395f0fbd75175832948db2a21e5ea3ed9e307e8f6d1827b', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 302626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x40156369c2bbf3480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:25:10.000Z'}}, {'blockNum': '0x803a70', 'uniqueId': '0xab1315cd5a50e4d4be1f5cc8613421c5b99eef130d1c654fb2074d6d9de28e42:log:88', 'hash': '0xab1315cd5a50e4d4be1f5cc8613421c5b99eef130d1c654fb2074d6d9de28e42', 'from': '0x9e3542b0541b06c0d44357fcd81a1e7656da5be4', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 1649900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x015d61421aa72780300000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:25:41.000Z'}}, {'blockNum': '0x803a71', 'uniqueId': '0xac4b0f32d920a398f05940f5c56b5389653ae0c3f138298131fee39732859539:log:75', 'hash': '0xac4b0f32d920a398f05940f5c56b5389653ae0c3f138298131fee39732859539', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x01c97e3a7f437ed0c315c03df2dc9ea4fc6c815d', 'value': 772.064657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29da8caaf7b6ce1000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:26:33.000Z'}}, {'blockNum': '0x803a7c', 'uniqueId': '0x87d6c6aea6f3056000518d3cf557bf5c97e0836d520c97d0ecbee4c3f0d55dc3:log:15', 'hash': '0x87d6c6aea6f3056000518d3cf557bf5c97e0836d520c97d0ecbee4c3f0d55dc3', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x03a182fb2ca5527d4ee4cdc6b8b87273a2cf846f', 'value': 39214.4867798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x084dd25396f8fecdf000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:28:36.000Z'}}, {'blockNum': '0x803a7d', 'uniqueId': '0xb34515681edd0ccf26ca1f7e9c6da0e9090a2d44c0dba7eebd7b9d548441fcea:log:104', 'hash': '0xb34515681edd0ccf26ca1f7e9c6da0e9090a2d44c0dba7eebd7b9d548441fcea', 'from': '0x0211f3cedbef3143223d3acf0e589747933e8527', 'to': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'value': 414284.767468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x57ba6c184d6026228000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:29:09.000Z'}}, {'blockNum': '0x803a80', 'uniqueId': '0xd75e392ea5ac4840c085436771cd935f82be76151c0bfbcf1201966e9519c153:log:137', 'hash': '0xd75e392ea5ac4840c085436771cd935f82be76151c0bfbcf1201966e9519c153', 'from': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'to': '0x03a182fb2ca5527d4ee4cdc6b8b87273a2cf846f', 'value': 20771.24, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x046602dc794100c40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:30:09.000Z'}}, {'blockNum': '0x803a80', 'uniqueId': '0x87544f074344c34171df705b4a4928fb9c6d246253b8c8560bf5e9d2c2b99a8c:log:138', 'hash': '0x87544f074344c34171df705b4a4928fb9c6d246253b8c8560bf5e9d2c2b99a8c', 'from': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'to': '0x621c14a9ff6254ccee6156503cf0c1f56b482b9a', 'value': 495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ad5814560aa5c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:30:09.000Z'}}, {'blockNum': '0x803a82', 'uniqueId': '0x81f7082b23483c8929f3a45b9fe3d64d5c06627680d74040fb5f24f28e568845:log:13', 'hash': '0x81f7082b23483c8929f3a45b9fe3d64d5c06627680d74040fb5f24f28e568845', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x10d4a5e538a0718e37ae333cedfa721c5a009d2e', 'value': 582.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1f97f9883179a80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:30:26.000Z'}}, {'blockNum': '0x803a89', 'uniqueId': '0x99d4797fef1354dfb27a9415d551f49aecf9419858351df08346a647ac0b3f4d:log:3', 'hash': '0x99d4797fef1354dfb27a9415d551f49aecf9419858351df08346a647ac0b3f4d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 342100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x487147358484ccd00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:31:27.000Z'}}, {'blockNum': '0x803a99', 'uniqueId': '0x93a4d0999c1ba01e5e8742a3a296714fb0894be3f5fa9eed5fad5b740ded8abf:log:0', 'hash': '0x93a4d0999c1ba01e5e8742a3a296714fb0894be3f5fa9eed5fad5b740ded8abf', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x32a79ed3588693f111c4ec385da98f3761068b8e', 'value': 753.1484845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x28d408ec4d124ac800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:33:23.000Z'}}, {'blockNum': '0x803a9e', 'uniqueId': '0x3010bab1454d6f8f603dbd81d79c2444194773a9ea017917ebe1e6322df76d83:log:26', 'hash': '0x3010bab1454d6f8f603dbd81d79c2444194773a9ea017917ebe1e6322df76d83', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 4091.1102490221015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xddc78f57dac23d73d5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:34:09.000Z'}}, {'blockNum': '0x803a9e', 'uniqueId': '0x3010bab1454d6f8f603dbd81d79c2444194773a9ea017917ebe1e6322df76d83:log:28', 'hash': '0x3010bab1454d6f8f603dbd81d79c2444194773a9ea017917ebe1e6322df76d83', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4091.1101074064404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xddc78ed70e4b100000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:34:09.000Z'}}, {'blockNum': '0x803a9e', 'uniqueId': '0x3010bab1454d6f8f603dbd81d79c2444194773a9ea017917ebe1e6322df76d83:log:29', 'hash': '0x3010bab1454d6f8f603dbd81d79c2444194773a9ea017917ebe1e6322df76d83', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4091.1101074064404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xddc78ed70e4b100000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:34:09.000Z'}}, {'blockNum': '0x803aa5', 'uniqueId': '0x65eb1efd4108a9625ffebd533c3048567b45a1ffb249c82ac65d8ec729967837:log:23', 'hash': '0x65eb1efd4108a9625ffebd533c3048567b45a1ffb249c82ac65d8ec729967837', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xc97789232985136437ce72a8cfefb8cbe17d8c1f', 'value': 12835.4251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b7cf4e537408b0c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:35:38.000Z'}}, {'blockNum': '0x803ab4', 'uniqueId': '0x4c270dd48d1f4d7f99a2d143f72f223cab7c7aed69b798e11e7317e204de2198:log:56', 'hash': '0x4c270dd48d1f4d7f99a2d143f72f223cab7c7aed69b798e11e7317e204de2198', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 342100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x487147358484ccd00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:38:40.000Z'}}, {'blockNum': '0x803ab5', 'uniqueId': '0xfc1a154111fedb4f43e63ed97f37e4cef55cb6d8ba6067157ed0b21637b54d50:log:23', 'hash': '0xfc1a154111fedb4f43e63ed97f37e4cef55cb6d8ba6067157ed0b21637b54d50', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x3a879221bbebdc04418e75d7cc31221550ffb67f', 'value': 8800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01dd0c885f9a0d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:38:50.000Z'}}, {'blockNum': '0x803ab6', 'uniqueId': '0xad10d9e210c7653db8a21edae678f8f378905d02965858949147246dd0977107:log:9', 'hash': '0xad10d9e210c7653db8a21edae678f8f378905d02965858949147246dd0977107', 'from': '0xc97789232985136437ce72a8cfefb8cbe17d8c1f', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 12835.4251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b7cf4e537408b0c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:39:05.000Z'}}, {'blockNum': '0x803ac6', 'uniqueId': '0x34c7bf72d9586575e51636f29e3d3e4f879da376c582999324613956a8904b47:log:34', 'hash': '0x34c7bf72d9586575e51636f29e3d3e4f879da376c582999324613956a8904b47', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x284cb1ea7b4bcb6e0938c18d776c3011a614dc89', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:45:34.000Z'}}, {'blockNum': '0x803ac9', 'uniqueId': '0xc6d1a544d6f778f25871b7310c04e486cc34ccabcde490600979a0cd46634486:log:38', 'hash': '0xc6d1a544d6f778f25871b7310c04e486cc34ccabcde490600979a0cd46634486', 'from': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'to': '0xe638b39cc4659b3dd397a8ef02abfb9ac8a3d48d', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:47:19.000Z'}}, {'blockNum': '0x803acc', 'uniqueId': '0x6ab456aeba1ba11366fc78c8efa903337c6856f55deaeaaeeeaeeb24f5a5c50a:log:34', 'hash': '0x6ab456aeba1ba11366fc78c8efa903337c6856f55deaeaaeeeaeeb24f5a5c50a', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x8cbee18999a05165711c9a655c2dc5d3dbb95474', 'value': 968.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34868974dd63d6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:47:54.000Z'}}, {'blockNum': '0x803acf', 'uniqueId': '0x1c383717e09d12bcae160866727578e854daf848f20c7da72dc119a7683fea0c:log:8', 'hash': '0x1c383717e09d12bcae160866727578e854daf848f20c7da72dc119a7683fea0c', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x537c6cda0b2549be42fab62c165143b16ec122ff', 'value': 11424.8056034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x026b57072513f558d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:49:01.000Z'}}, {'blockNum': '0x803acf', 'uniqueId': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9:log:101', 'hash': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5682.213826900337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0134088ec9e81f8ef7c4', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:49:01.000Z'}}, {'blockNum': '0x803acf', 'uniqueId': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9:log:105', 'hash': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 5682.213826900337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0134088ec9e81f8ef7c4', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:49:01.000Z'}}, {'blockNum': '0x803acf', 'uniqueId': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9:log:106', 'hash': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 5682.213826900337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0134088ec9e81f8ef7c4', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:49:01.000Z'}}, {'blockNum': '0x803acf', 'uniqueId': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9:log:107', 'hash': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5682.213826900337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0134088ec9e81f8ef7c4', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:49:01.000Z'}}, {'blockNum': '0x803ada', 'uniqueId': '0xfcdb108d6733df193ad401adfc10172010cf68e28255f049e094e420c7d9c4c7:log:115', 'hash': '0xfcdb108d6733df193ad401adfc10172010cf68e28255f049e094e420c7d9c4c7', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 4054.2601802429476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xdbc829998a380f8910', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:51:25.000Z'}}, {'blockNum': '0x803ada', 'uniqueId': '0xfcdb108d6733df193ad401adfc10172010cf68e28255f049e094e420c7d9c4c7:log:117', 'hash': '0xfcdb108d6733df193ad401adfc10172010cf68e28255f049e094e420c7d9c4c7', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4054.2600406838696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xdbc8291a9c96c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:51:25.000Z'}}, {'blockNum': '0x803ada', 'uniqueId': '0xfcdb108d6733df193ad401adfc10172010cf68e28255f049e094e420c7d9c4c7:log:118', 'hash': '0xfcdb108d6733df193ad401adfc10172010cf68e28255f049e094e420c7d9c4c7', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4054.2600406838696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xdbc8291a9c96c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:51:25.000Z'}}, {'blockNum': '0x803ae0', 'uniqueId': '0x066e9ab2252289eec18f66f7f8d323e786728c9eb492cd4b5d901b00bb57316b:log:14', 'hash': '0x066e9ab2252289eec18f66f7f8d323e786728c9eb492cd4b5d901b00bb57316b', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x3a541ca30225350eed366dd071639d5ffbbf06ba', 'value': 12835.4251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b7cf4e537408b0c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:51:57.000Z'}}, {'blockNum': '0x803ae0', 'uniqueId': '0xa41a33802328f160159ccefb78cc1eabed323d8fe432d2e56d2b2612a0e1db72:log:17', 'hash': '0xa41a33802328f160159ccefb78cc1eabed323d8fe432d2e56d2b2612a0e1db72', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x12cff71edfc4e16eec6373f1fb37c5cf3ca71c19', 'value': 800000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa968163f0a57b4000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:51:57.000Z'}}, {'blockNum': '0x803ae2', 'uniqueId': '0xbfd9ea285a408a64e3cbca4e7c69d72441571f6b3d5237644518118970c4ddb6:log:30', 'hash': '0xbfd9ea285a408a64e3cbca4e7c69d72441571f6b3d5237644518118970c4ddb6', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x2895730bd3725084c91a07f25786baac644851a2', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:52:15.000Z'}}, {'blockNum': '0x803ae5', 'uniqueId': '0x73b4ca8cc14ae8483f292478e56feee0547d64ba06fb53dc4e2c5446b03227d3:log:160', 'hash': '0x73b4ca8cc14ae8483f292478e56feee0547d64ba06fb53dc4e2c5446b03227d3', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2383.8659713849893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x813ac93eb61fcfa97e', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:52:42.000Z'}}, {'blockNum': '0x803ae5', 'uniqueId': '0x73b4ca8cc14ae8483f292478e56feee0547d64ba06fb53dc4e2c5446b03227d3:log:164', 'hash': '0x73b4ca8cc14ae8483f292478e56feee0547d64ba06fb53dc4e2c5446b03227d3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xea161ab775be8374c9aed9e394d5b8711dcfc55f', 'value': 2383.8659713849893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x813ac93eb61fcfa97e', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:52:42.000Z'}}, {'blockNum': '0x803ae5', 'uniqueId': '0x73b4ca8cc14ae8483f292478e56feee0547d64ba06fb53dc4e2c5446b03227d3:log:166', 'hash': '0x73b4ca8cc14ae8483f292478e56feee0547d64ba06fb53dc4e2c5446b03227d3', 'from': '0xea161ab775be8374c9aed9e394d5b8711dcfc55f', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 2383.8659713849893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x813ac93eb61fcfa97e', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:52:42.000Z'}}, {'blockNum': '0x803ae7', 'uniqueId': '0xaf3bebd0a8e3edb6abeea8cbf90be270fe7bbd482f8a781fddb9aaaeb80e5961:log:101', 'hash': '0xaf3bebd0a8e3edb6abeea8cbf90be270fe7bbd482f8a781fddb9aaaeb80e5961', 'from': '0x2895730bd3725084c91a07f25786baac644851a2', 'to': '0x5bcf2767f86f14edd82053bfbfd5069f68c2c5f8', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:53:30.000Z'}}, {'blockNum': '0x803aec', 'uniqueId': '0xc960694878b24925ded24c578cf90baacfb95cb2263af12d61dde53e2468e4ab:log:11', 'hash': '0xc960694878b24925ded24c578cf90baacfb95cb2263af12d61dde53e2468e4ab', 'from': '0x12cff71edfc4e16eec6373f1fb37c5cf3ca71c19', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 800000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa968163f0a57b4000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:54:28.000Z'}}, {'blockNum': '0x803af3', 'uniqueId': '0x166706924760dbce32556e91afd29d4cac2c9b38c17efc6dc95d02c8f7d65c63:log:5', 'hash': '0x166706924760dbce32556e91afd29d4cac2c9b38c17efc6dc95d02c8f7d65c63', 'from': '0x32a79ed3588693f111c4ec385da98f3761068b8e', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 753.1484845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x28d408ec4d124ac800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:56:27.000Z'}}, {'blockNum': '0x803afa', 'uniqueId': '0x7a659e8e899b44020f800cb8c232720babd06bc3108c3303b79290211381c723:log:85', 'hash': '0x7a659e8e899b44020f800cb8c232720babd06bc3108c3303b79290211381c723', 'from': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'to': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'value': 3000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x027b46536c66c8e3000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:59:14.000Z'}}, {'blockNum': '0x803afd', 'uniqueId': '0x1a18803d48fde9c6a55db1e71745557a8f46438981c09fef33249959f0738752:log:0', 'hash': '0x1a18803d48fde9c6a55db1e71745557a8f46438981c09fef33249959f0738752', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 91025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x134679a29ce17ba40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:59:57.000Z'}}, {'blockNum': '0x803b00', 'uniqueId': '0xebf4b28fb66aede1abcace5afe026fbb60c0a56c52b51c291f66aa46099f0011:log:46', 'hash': '0xebf4b28fb66aede1abcace5afe026fbb60c0a56c52b51c291f66aa46099f0011', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'value': 54359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b82ceaaddacb2fc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:00:55.000Z'}}, {'blockNum': '0x803b03', 'uniqueId': '0xd1f8f31f902d6bed50abc56b038c9775bfbe4f23d6b9881620ab16a7883d4b3c:log:88', 'hash': '0xd1f8f31f902d6bed50abc56b038c9775bfbe4f23d6b9881620ab16a7883d4b3c', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'value': 74431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0fc2e99fd3a92b9c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:01:25.000Z'}}, {'blockNum': '0x803b08', 'uniqueId': '0xf0e7dea0fd62e58fed595793481486c51766d05457a5c92d7a7c954a7c9ce6e9:log:42', 'hash': '0xf0e7dea0fd62e58fed595793481486c51766d05457a5c92d7a7c954a7c9ce6e9', 'from': '0xc7f9fd30fcd6e3c80ec7e3e9e41c135a3bd46208', 'to': '0xbad6143b8863bf0f84e1ad8f582d2aafb21913ee', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:02:39.000Z'}}, {'blockNum': '0x803b0c', 'uniqueId': '0xa960ad5b548b0c0a3c1ab0cd3f347844a0f8407c69ef58c95fdf96da71d8f654:log:27', 'hash': '0xa960ad5b548b0c0a3c1ab0cd3f347844a0f8407c69ef58c95fdf96da71d8f654', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xf27e8b11a505a09f4c790472040813475fa44eee', 'value': 4230.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe55be17a0c500ec000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:03:55.000Z'}}, {'blockNum': '0x803b16', 'uniqueId': '0xb7e3072f157acee15e092681e9464e212e4b213a9f5fe4a92f7d5ddbeecae14e:log:16', 'hash': '0xb7e3072f157acee15e092681e9464e212e4b213a9f5fe4a92f7d5ddbeecae14e', 'from': '0xf27e8b11a505a09f4c790472040813475fa44eee', 'to': '0x529dab7bad9ef1000c3c0d708878c83fc870f7ae', 'value': 4230.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe55be17a0c500ec000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:06:38.000Z'}}, {'blockNum': '0x803b18', 'uniqueId': '0x0e9388da03dc8457d395d73e31bb5a9f93708910ca8a381dfe3294bc66ca7368:log:19', 'hash': '0x0e9388da03dc8457d395d73e31bb5a9f93708910ca8a381dfe3294bc66ca7368', 'from': '0x3a541ca30225350eed366dd071639d5ffbbf06ba', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 12835.4251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b7cf4e537408b0c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:06:44.000Z'}}, {'blockNum': '0x803b26', 'uniqueId': '0xc80b6f49e1c40c21e77a17e25d462f32a531da003daeaa8f5e566d607f5373ad:log:181', 'hash': '0xc80b6f49e1c40c21e77a17e25d462f32a531da003daeaa8f5e566d607f5373ad', 'from': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 54359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b82ceaaddacb2fc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:10:15.000Z'}}, {'blockNum': '0x803b3f', 'uniqueId': '0xbf11b38a89f173beb42f37825bbc263169575138ae2b765d50e9eaa7232afe65:log:13', 'hash': '0xbf11b38a89f173beb42f37825bbc263169575138ae2b765d50e9eaa7232afe65', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x8d44ad4690ddb9f9e794bfad56b93a3dee9e5793', 'value': 576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1f399b1438a1000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:14:39.000Z'}}, {'blockNum': '0x803b6e', 'uniqueId': '0x3f34e0f0f84ca0313a87acd4ffb8a17ea7aaa0ec4f905679c8ded5ffc8d7da72:log:9', 'hash': '0x3f34e0f0f84ca0313a87acd4ffb8a17ea7aaa0ec4f905679c8ded5ffc8d7da72', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1c72a0b0171dd785a67dd70bf0e20a35a445daeb', 'value': 28299.332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05fe1c1fe5b68cba0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:26:10.000Z'}}, {'blockNum': '0x803b7d', 'uniqueId': '0xa0539d60c720c03fe27b708763eec049a379a3745efdf6a66fc8d9b00740a699:log:77', 'hash': '0xa0539d60c720c03fe27b708763eec049a379a3745efdf6a66fc8d9b00740a699', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 82472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1176d0ea849defa00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:29:24.000Z'}}, {'blockNum': '0x803b88', 'uniqueId': '0xa7d9eb47313ce6105a85e2425ec4e9fbc0ed080765c8c090b85d8b0f3240c740:log:21', 'hash': '0xa7d9eb47313ce6105a85e2425ec4e9fbc0ed080765c8c090b85d8b0f3240c740', 'from': '0x1c72a0b0171dd785a67dd70bf0e20a35a445daeb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28299.332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05fe1c1fe5b68cba0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:31:04.000Z'}}, {'blockNum': '0x803b9b', 'uniqueId': '0x58e33986f917efca69d4137a61de2a0ac3b12025c3eac1ff75651aac00ebace6:log:104', 'hash': '0x58e33986f917efca69d4137a61de2a0ac3b12025c3eac1ff75651aac00ebace6', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x24462c702ff5504cee8432a18e029873b6547e21', 'value': 210000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2c782c4729dd10f6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:36:22.000Z'}}, {'blockNum': '0x803baf', 'uniqueId': '0x33edefc2c33023605402ec104512cb4920d429456131a683edab2eb64285e6a9:log:41', 'hash': '0x33edefc2c33023605402ec104512cb4920d429456131a683edab2eb64285e6a9', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xd68a741029c2ffde775cdbc4e8878d874bb7ca96', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:41:18.000Z'}}, {'blockNum': '0x803baf', 'uniqueId': '0xbe6685747f88effe0082d9c3b0b796e36ac1944b942e23267fb61825d4ff48c1:log:47', 'hash': '0xbe6685747f88effe0082d9c3b0b796e36ac1944b942e23267fb61825d4ff48c1', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x3cac884cebcce149cc3f6bba39951294f23b484e', 'value': 23136.4688212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04e63b01429daeac2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:41:18.000Z'}}, {'blockNum': '0x803bb6', 'uniqueId': '0x13ef2df5beeb9653fcf42ff85b1eb2c545d30144131696efb194d7671775af22:log:118', 'hash': '0x13ef2df5beeb9653fcf42ff85b1eb2c545d30144131696efb194d7671775af22', 'from': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 82472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1176d0ea849defa00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:42:46.000Z'}}, {'blockNum': '0x803bcd', 'uniqueId': '0xdbbf470aa55bf72b8af23b4d753356ae28577a5d1cf409dfa725ad1f8d3f5385:log:20', 'hash': '0xdbbf470aa55bf72b8af23b4d753356ae28577a5d1cf409dfa725ad1f8d3f5385', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x3c5bfac7c09e12b83ad2f93e02d7f43e02794ef1', 'value': 10000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e26b7674723f6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:48:15.000Z'}}, {'blockNum': '0x803bd4', 'uniqueId': '0xa1ed461e64c8a4edb9f224994098375a3797be7aef9efcc164d418d06224b0d4:log:98', 'hash': '0xa1ed461e64c8a4edb9f224994098375a3797be7aef9efcc164d418d06224b0d4', 'from': '0x3c5bfac7c09e12b83ad2f93e02d7f43e02794ef1', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 20001.4398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043c47bcc5ee201b8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:49:37.000Z'}}, {'blockNum': '0x803be0', 'uniqueId': '0xb2da325951efba752f9f8dea50c6b5d0284def89290b21998ade37ebd0f81ff0:log:153', 'hash': '0xb2da325951efba752f9f8dea50c6b5d0284def89290b21998ade37ebd0f81ff0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4993.928564629898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010eb8ae5290396a0659', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:53:05.000Z'}}, {'blockNum': '0x803be0', 'uniqueId': '0xb2da325951efba752f9f8dea50c6b5d0284def89290b21998ade37ebd0f81ff0:log:155', 'hash': '0xb2da325951efba752f9f8dea50c6b5d0284def89290b21998ade37ebd0f81ff0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 4993.928564629898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010eb8ae5290396a0659', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:53:05.000Z'}}, {'blockNum': '0x803be0', 'uniqueId': '0xb2da325951efba752f9f8dea50c6b5d0284def89290b21998ade37ebd0f81ff0:log:160', 'hash': '0xb2da325951efba752f9f8dea50c6b5d0284def89290b21998ade37ebd0f81ff0', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 4993.923570701333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010eb89c949c9f4924cf', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:53:05.000Z'}}, {'blockNum': '0x803bef', 'uniqueId': '0x1eeeaee8cc7880d0fce363ccb902a2c113cb6e482256aa8c5442a2ab28fab54b:log:72', 'hash': '0x1eeeaee8cc7880d0fce363ccb902a2c113cb6e482256aa8c5442a2ab28fab54b', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x4934c415f52a55df925413c823e162034bce9f6c', 'value': 10300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022e5d36e442db700000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:56:13.000Z'}}, {'blockNum': '0x803bf6', 'uniqueId': '0xfaf54634984af962a0b991783d1ccad5e7bdc31a894e2f2b1af484d9cb9d7d64:log:4', 'hash': '0xfaf54634984af962a0b991783d1ccad5e7bdc31a894e2f2b1af484d9cb9d7d64', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:56:55.000Z'}}, {'blockNum': '0x803bf9', 'uniqueId': '0x7b8fe9ced92d865ab1c7033f06abd7e4b005902454a86fcf7bc41eeb206d5e78:log:37', 'hash': '0x7b8fe9ced92d865ab1c7033f06abd7e4b005902454a86fcf7bc41eeb206d5e78', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xb677cbce33c00576f03aaf6176ca0147e12426e3', 'value': 10085.5251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0222bcc6fb0c4202c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:57:07.000Z'}}, {'blockNum': '0x803c0b', 'uniqueId': '0x344e1dfc310690baabdaef3e0a507564ec6d3ac64158a6067795f7c9e19211bd:log:14', 'hash': '0x344e1dfc310690baabdaef3e0a507564ec6d3ac64158a6067795f7c9e19211bd', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x10d4a5e538a0718e37ae333cedfa721c5a009d2e', 'value': 586.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc9ef4d1ea1100000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:59:58.000Z'}}, {'blockNum': '0x803c0c', 'uniqueId': '0x4c80747f6a96ac9ea79f06a125cb85cb0bfb903f1a3386fb53881f3639159418:log:104', 'hash': '0x4c80747f6a96ac9ea79f06a125cb85cb0bfb903f1a3386fb53881f3639159418', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x590f1d569b3709d9a0b0014875f392b93a1b7a20', 'value': 59998.6251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb488301a1c37d0c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:00:17.000Z'}}, {'blockNum': '0x803c0e', 'uniqueId': '0x04d530f559e325b443995b71c16f5302105cf44d8266c7424897fe074a36226c:log:50', 'hash': '0x04d530f559e325b443995b71c16f5302105cf44d8266c7424897fe074a36226c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xfac37aea925b47348e2775fb9127871119eacace', 'value': 560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1e5b8fa8fe2ac00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:00:27.000Z'}}, {'blockNum': '0x803c0f', 'uniqueId': '0x322487b9c397cef294d5b1d94152cffb65791e2be0a1185852292e92174906a8:log:3', 'hash': '0x322487b9c397cef294d5b1d94152cffb65791e2be0a1185852292e92174906a8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 600000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x7f0e10af47c1c7000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:00:35.000Z'}}, {'blockNum': '0x803c17', 'uniqueId': '0xdace5821a81e4f8751aff945243ba73f32da905e4ac4f978243049cae881a184:log:9', 'hash': '0xdace5821a81e4f8751aff945243ba73f32da905e4ac4f978243049cae881a184', 'from': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 74431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0fc2e99fd3a92b9c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:02:29.000Z'}}, {'blockNum': '0x803c1d', 'uniqueId': '0xfd8a81c55ebd9380338298de4cac39addcc6d3196be9b74c5325bb061c85029c:log:86', 'hash': '0xfd8a81c55ebd9380338298de4cac39addcc6d3196be9b74c5325bb061c85029c', 'from': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:03:39.000Z'}}, {'blockNum': '0x803c1f', 'uniqueId': '0xc11146ebe5f47272ec6d17021662ea6d52e48fe7c7069a47b0bb57ba6032a67f:log:98', 'hash': '0xc11146ebe5f47272ec6d17021662ea6d52e48fe7c7069a47b0bb57ba6032a67f', 'from': '0x7ae7788322b9bf3b2ef657b6a6d55b3869177020', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 16984.214399646367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0398b752d240fc2e3c05', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:04:07.000Z'}}, {'blockNum': '0x803c2a', 'uniqueId': '0x33658004501c3697f32832405d3fe4efdca204fa2ca010accd79f13c307a3574:log:3', 'hash': '0x33658004501c3697f32832405d3fe4efdca204fa2ca010accd79f13c307a3574', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 1112792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xeba493400f4ce4600000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:05:29.000Z'}}, {'blockNum': '0x803c36', 'uniqueId': '0x85a9c10e618a3b92ba9251e727a43a8d999593de8d11aa94495dcad62672265c:log:28', 'hash': '0x85a9c10e618a3b92ba9251e727a43a8d999593de8d11aa94495dcad62672265c', 'from': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 600000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x7f0e10af47c1c7000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:07:36.000Z'}}, {'blockNum': '0x803c44', 'uniqueId': '0x4f70444892abd15ce7acbc28e26497db456b3d752e73fa31d0fc8035786ecc34:log:0', 'hash': '0x4f70444892abd15ce7acbc28e26497db456b3d752e73fa31d0fc8035786ecc34', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x5b662727aef339126d8687f9d863c448c2567774', 'value': 200230.79196494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2a66887187e90c1b7800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:10:35.000Z'}}, {'blockNum': '0x803c45', 'uniqueId': '0xc8fa925019acb25543a6b6a9dcf8e689cfddb4738cbebbd21bc1ef4451bc85f8:log:118', 'hash': '0xc8fa925019acb25543a6b6a9dcf8e689cfddb4738cbebbd21bc1ef4451bc85f8', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x3dee4a4e076e8d82859d241db0baf46f112cfa23', 'value': 16956.403834843863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0397355fd8e9a3c75da5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:11:19.000Z'}}, {'blockNum': '0x803c49', 'uniqueId': '0x4b1fe8f4f64bd86f987a79d6731cee7bad1c6ce06e0cde25ac12f8a816dd3694:log:63', 'hash': '0x4b1fe8f4f64bd86f987a79d6731cee7bad1c6ce06e0cde25ac12f8a816dd3694', 'from': '0x3dee4a4e076e8d82859d241db0baf46f112cfa23', 'to': '0x2ea38df81968758b95732fc317b428dccd40bf5b', 'value': 16956.403834843863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0397355fd8e9a3c75da5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:12:49.000Z'}}, {'blockNum': '0x803c58', 'uniqueId': '0xcae01f8defc83b0f028869227e4d842d927b2910cdf91a4f61d3f6da8b8c06de:log:26', 'hash': '0xcae01f8defc83b0f028869227e4d842d927b2910cdf91a4f61d3f6da8b8c06de', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x770105b2b710aacabaca2319299dedbfcdad954b', 'value': 200000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2a5a126660225eb6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:15:23.000Z'}}, {'blockNum': '0x803c6e', 'uniqueId': '0xf45490af09782da1e3d022cf699a7d7be71751cd032ab21f01782624535bd9ab:log:30', 'hash': '0xf45490af09782da1e3d022cf699a7d7be71751cd032ab21f01782624535bd9ab', 'from': '0x2ea38df81968758b95732fc317b428dccd40bf5b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16956.403834843863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0397355fd8e9a3c75da5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:21:05.000Z'}}, {'blockNum': '0x803c70', 'uniqueId': '0x00913f6360d285448756b03324bdfbbef8167db93b37ceeca46c052f8f90c741:log:39', 'hash': '0x00913f6360d285448756b03324bdfbbef8167db93b37ceeca46c052f8f90c741', 'from': '0x754f3e1124b8443b9467e7945be34a59f29b43b2', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 589.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ff7bb41a2afda0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:21:08.000Z'}}, {'blockNum': '0x803c82', 'uniqueId': '0x0e5d13e34312d9056e7f9f31b064a5a3454e2ac88542262035163123eb2d5536:log:102', 'hash': '0x0e5d13e34312d9056e7f9f31b064a5a3454e2ac88542262035163123eb2d5536', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x8129a73c9e93343eed2f5e0a5886d040e772703d', 'value': 17857.39637385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03c80d285d79c5e50400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:25:18.000Z'}}, {'blockNum': '0x803c85', 'uniqueId': '0x62d8cc6d2ce1047c4267b5cd953233b8cb6303643fa47fa41b8d031ce3e4658d:log:43', 'hash': '0x62d8cc6d2ce1047c4267b5cd953233b8cb6303643fa47fa41b8d031ce3e4658d', 'from': '0x5b662727aef339126d8687f9d863c448c2567774', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 200230.79196494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2a66887187e90c1b7800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:26:20.000Z'}}, {'blockNum': '0x803c85', 'uniqueId': '0x646b2c9f06afce5029cf5731a16e9802f60f1c61bdfd02c4c7d2919a371d824f:log:101', 'hash': '0x646b2c9f06afce5029cf5731a16e9802f60f1c61bdfd02c4c7d2919a371d824f', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xe97deda2e1526cd18a31c665aa4fce14215b36b3', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:26:20.000Z'}}, {'blockNum': '0x803c88', 'uniqueId': '0xb00f5e2e7abee4cab2a3d5567366118a1974c94987d51d9b81467a177aa8c8a8:log:1', 'hash': '0xb00f5e2e7abee4cab2a3d5567366118a1974c94987d51d9b81467a177aa8c8a8', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0xce89f3eec9fd9592a2f7850c5ad01785555a842a', 'value': 16000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03635c9adc5dea000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:26:36.000Z'}}, {'blockNum': '0x803c8c', 'uniqueId': '0x19e1e623b82814a3948f3ef7163105aafd1d5ee10e8af94801a8949987c1c427:log:35', 'hash': '0x19e1e623b82814a3948f3ef7163105aafd1d5ee10e8af94801a8949987c1c427', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xb30eec8730cf4ced5884956eff11932fb50105f6', 'value': 60000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a81b57ec9f36c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:27:08.000Z'}}, {'blockNum': '0x803c91', 'uniqueId': '0x140114835eb46115ef2b77fb01b096e4cc9d245fe16e1a088c027460d70953e7:log:0', 'hash': '0x140114835eb46115ef2b77fb01b096e4cc9d245fe16e1a088c027460d70953e7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2c0f30e6667fd08503c695dfe66251c9b1335732', 'value': 65037.000078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc5a9afce25825ee000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:28:06.000Z'}}, {'blockNum': '0x803ca3', 'uniqueId': '0xaf54f1ac8f07a8e49e667125ae252254833375f1fcff80b0286a252b967a8e6c:log:78', 'hash': '0xaf54f1ac8f07a8e49e667125ae252254833375f1fcff80b0286a252b967a8e6c', 'from': '0x8129a73c9e93343eed2f5e0a5886d040e772703d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17857.39637385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03c80d285d79c5e50400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:30:48.000Z'}}, {'blockNum': '0x803cbc', 'uniqueId': '0x5af094c15e38ee59163adec9921799d9066ee6390ac4a1509b549cf2bc826522:log:117', 'hash': '0x5af094c15e38ee59163adec9921799d9066ee6390ac4a1509b549cf2bc826522', 'from': '0x2c0f30e6667fd08503c695dfe66251c9b1335732', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 65037.000078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc5a9afce25825ee000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:36:22.000Z'}}, {'blockNum': '0x803cbe', 'uniqueId': '0x57b424623f0dfbf7e713532a3934693ee95fa776d20b900386923bd7621467d5:log:29', 'hash': '0x57b424623f0dfbf7e713532a3934693ee95fa776d20b900386923bd7621467d5', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x10d4a5e538a0718e37ae333cedfa721c5a009d2e', 'value': 588.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe9da8aef08760000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:36:35.000Z'}}, {'blockNum': '0x803cc1', 'uniqueId': '0xe65df53c06b7fae06a123a661e40cf6f0150e8213e4676aa9f3cfdfdb68d48db:log:15', 'hash': '0xe65df53c06b7fae06a123a661e40cf6f0150e8213e4676aa9f3cfdfdb68d48db', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xa40bc4cc83e6e71ad33cc3595dd9ed1fd5e8ff44', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:37:51.000Z'}}, {'blockNum': '0x803cc5', 'uniqueId': '0x9fd193d7f5c2efaffe950d1d8a79dce495fc44d6687e9b27ece62d2c388093ca:log:77', 'hash': '0x9fd193d7f5c2efaffe950d1d8a79dce495fc44d6687e9b27ece62d2c388093ca', 'from': '0xb30eec8730cf4ced5884956eff11932fb50105f6', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a81b57ec9f36c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:38:43.000Z'}}, {'blockNum': '0x803cc9', 'uniqueId': '0x76e76f79a1c21064d041fd55f56aef0af746ecbee5b22a2cb4b878e1102ef06e:log:67', 'hash': '0x76e76f79a1c21064d041fd55f56aef0af746ecbee5b22a2cb4b878e1102ef06e', 'from': '0x9b350e05c4e60cfd5db3c0c87bbfd9205eb4b322', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 28709.748759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06145bcd218adad47000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:39:53.000Z'}}, {'blockNum': '0x803cca', 'uniqueId': '0x446ae84fa75aae6b79c7248ed80e040cc7740c5e50492882b7b9c144dbdd46e4:log:62', 'hash': '0x446ae84fa75aae6b79c7248ed80e040cc7740c5e50492882b7b9c144dbdd46e4', 'from': '0xce89f3eec9fd9592a2f7850c5ad01785555a842a', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 16000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03635c9adc5dea000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:39:57.000Z'}}, {'blockNum': '0x803cce', 'uniqueId': '0x487bfe153b0381d2b2eddfd04f980187609dad89097d06e005f27bac0044d069:log:32', 'hash': '0x487bfe153b0381d2b2eddfd04f980187609dad89097d06e005f27bac0044d069', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x47564a0e832fc93ab78c66c3ce80b8dd09bb5ae7', 'value': 59787.7352164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ca91980ba518a56a000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:40:58.000Z'}}, {'blockNum': '0x803ce3', 'uniqueId': '0xafb874b316bfbbda4f4d3f04f793ed776e27a18493471b809bb7791e00e968b5:log:78', 'hash': '0xafb874b316bfbbda4f4d3f04f793ed776e27a18493471b809bb7791e00e968b5', 'from': '0x7b3918c8f48e7f98f1666b6009c754bc0d9b704f', 'to': '0xe28541c7b8fb617114047f13133a695f19b41d29', 'value': 4196.181812344968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe379b88600f0aea68f', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:46:29.000Z'}}, {'blockNum': '0x803cee', 'uniqueId': '0x539e092a93670a4b0f0dd5bf7f0c040062bb0aa60acc5fd05ac89762fc8fb611:log:60', 'hash': '0x539e092a93670a4b0f0dd5bf7f0c040062bb0aa60acc5fd05ac89762fc8fb611', 'from': '0xe97deda2e1526cd18a31c665aa4fce14215b36b3', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:48:38.000Z'}}, {'blockNum': '0x803cf3', 'uniqueId': '0xbe44dc30419567235aef7b83f588145f904f3d3b9d7de4333011f157b5aadda5:log:42', 'hash': '0xbe44dc30419567235aef7b83f588145f904f3d3b9d7de4333011f157b5aadda5', 'from': '0x4934c415f52a55df925413c823e162034bce9f6c', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022e5d36e442db700000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:49:30.000Z'}}, {'blockNum': '0x803cf4', 'uniqueId': '0xa0b9935d678ef9459ea5ed7bc6ce73df021b8f47911f5cc5d9efd2bd30da94cb:log:15', 'hash': '0xa0b9935d678ef9459ea5ed7bc6ce73df021b8f47911f5cc5d9efd2bd30da94cb', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x3568d82a933590b2973b7089cef2892c0a27ca3d', 'value': 10048.7251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0220be131e05cba2c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:49:39.000Z'}}, {'blockNum': '0x803cf4', 'uniqueId': '0xda0dc33ea629da074c9928e2779cb443ec7d7b27ccea739161613a461cff4ca9:log:83', 'hash': '0xda0dc33ea629da074c9928e2779cb443ec7d7b27ccea739161613a461cff4ca9', 'from': '0xbd1421e158c21f804fa5d74e72133f7c1431b9d5', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10011.959, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021ebfd7b0de27258000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:49:39.000Z'}}, {'blockNum': '0x803cf8', 'uniqueId': '0x2e211ce2e0cef35c1c1f9c0afab42ffc8810da660391bf5f46a180ef0bd46d2a:log:13', 'hash': '0x2e211ce2e0cef35c1c1f9c0afab42ffc8810da660391bf5f46a180ef0bd46d2a', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xe2c49ea63f662128215cfe35540a1bd23337deb3', 'value': 10000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e26b7674723f6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:50:31.000Z'}}, {'blockNum': '0x803cfa', 'uniqueId': '0x99d981f6b2ad4211d93883d02e80b2e71d8ebd6611e829b9513c19fc48b1e37b:log:111', 'hash': '0x99d981f6b2ad4211d93883d02e80b2e71d8ebd6611e829b9513c19fc48b1e37b', 'from': '0x6b838d866e45449294c32dedd9fcf3326fa099d9', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10418.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0234cfa1b89e753ec000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:50:43.000Z'}}, {'blockNum': '0x803cfb', 'uniqueId': '0x6ad96d6558ff49f3a25cb0e78aa7b4f7f53d1177ddc473bb6b8669455ba7f829:log:30', 'hash': '0x6ad96d6558ff49f3a25cb0e78aa7b4f7f53d1177ddc473bb6b8669455ba7f829', 'from': '0x2b7c6615195babbdbac5665eae1954f36865166f', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:50:48.000Z'}}, {'blockNum': '0x803cfb', 'uniqueId': '0x9c8c6632c0e77103ef497bfc042efc9bc7909e441cd39b85a4000b0d5a7b9c9b:log:116', 'hash': '0x9c8c6632c0e77103ef497bfc042efc9bc7909e441cd39b85a4000b0d5a7b9c9b', 'from': '0x924ba914a8a8e5b45b5d39984529eacd9fd61beb', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 25971.69534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x057fedad4bca680ac000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:50:48.000Z'}}, {'blockNum': '0x803cfb', 'uniqueId': '0x2492f2528a73c455a2e1c8b2c567aaaa45e27207cdd57eddbbe2ade29ecb1a0e:log:140', 'hash': '0x2492f2528a73c455a2e1c8b2c567aaaa45e27207cdd57eddbbe2ade29ecb1a0e', 'from': '0x3b0937e7fb99f677e8ce5866f04ed924b17b26e4', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 53283.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b488701901d9462c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:50:48.000Z'}}, {'blockNum': '0x803cfc', 'uniqueId': '0xf136492e42dd9575f2907d8de92d51643cd6ddd6292cc12768a7cc3cacb8ded9:log:73', 'hash': '0xf136492e42dd9575f2907d8de92d51643cd6ddd6292cc12768a7cc3cacb8ded9', 'from': '0x621c14a9ff6254ccee6156503cf0c1f56b482b9a', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ad5814560aa5c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:51:00.000Z'}}, {'blockNum': '0x803d03', 'uniqueId': '0x8cc8fc57e2c15bf7f0b922c2bcd211c71c45b00d4bd3bcffe8d4a39679c64ab0:log:66', 'hash': '0x8cc8fc57e2c15bf7f0b922c2bcd211c71c45b00d4bd3bcffe8d4a39679c64ab0', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x1f6e38dac16a5ec92f2624fbc7e424bd2313788b', 'value': 10000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e26b7674723f6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:52:16.000Z'}}, {'blockNum': '0x803d0b', 'uniqueId': '0x087b923a5d699193bab690f218d62116e7841f05fc1154067c992e1e205cd763:log:132', 'hash': '0x087b923a5d699193bab690f218d62116e7841f05fc1154067c992e1e205cd763', 'from': '0xfac37aea925b47348e2775fb9127871119eacace', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1e5b8fa8fe2ac00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:55:01.000Z'}}, {'blockNum': '0x803d10', 'uniqueId': '0x4bb01f9f4c567933b73160b6b8e6e89cfef729c748598fee8bbb1bb4ddb60547:log:45', 'hash': '0x4bb01f9f4c567933b73160b6b8e6e89cfef729c748598fee8bbb1bb4ddb60547', 'from': '0x478a746989ce31623b0e8c919186993b6d2ccd1c', 'to': '0xdb5ac1a559b02e12f29fc0ec0e37be8e046def49', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:55:53.000Z'}}, {'blockNum': '0x803d10', 'uniqueId': '0x62f402879e300cd32353aa73aba399baf25d19bc21c6636d47a57e9db77e544b:log:54', 'hash': '0x62f402879e300cd32353aa73aba399baf25d19bc21c6636d47a57e9db77e544b', 'from': '0x478a746989ce31623b0e8c919186993b6d2ccd1c', 'to': '0xdb5ac1a559b02e12f29fc0ec0e37be8e046def49', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:55:53.000Z'}}, {'blockNum': '0x803d29', 'uniqueId': '0x6e06e5766a3a1f8d233f8f5ea21bbd39688f3d1777583941cc9c870f63c01140:log:168', 'hash': '0x6e06e5766a3a1f8d233f8f5ea21bbd39688f3d1777583941cc9c870f63c01140', 'from': '0x092c017c5949e43c8191d7545271d94212a0984e', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10968.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0252a06a3e981616c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:01:09.000Z'}}, {'blockNum': '0x803d62', 'uniqueId': '0xeccb275e3eb9a2cd44110e647b38425a1b3a2bbb0398db5ffde87860d72357f4:log:30', 'hash': '0xeccb275e3eb9a2cd44110e647b38425a1b3a2bbb0398db5ffde87860d72357f4', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xd0e980ffac3e601dfc86521cea048d6b4f0ebda0', 'value': 20603.2207062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x045ce72007bf47c5f000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:12:19.000Z'}}, {'blockNum': '0x803d72', 'uniqueId': '0x4561a7b3fea608329f2bebcefef626b0deef80480187d10fba28f1b37ad272eb:log:56', 'hash': '0x4561a7b3fea608329f2bebcefef626b0deef80480187d10fba28f1b37ad272eb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 17971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03ce35b9858fb0ec0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:17:32.000Z'}}, {'blockNum': '0x803d7d', 'uniqueId': '0x551cb04743f27c5caa30ff686321f24f1ce64f611e668dc564d584d4dd8c0500:log:6', 'hash': '0x551cb04743f27c5caa30ff686321f24f1ce64f611e668dc564d584d4dd8c0500', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x863edcba3503038bc790889ea0c2c902d6faeb6d', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:21:41.000Z'}}, {'blockNum': '0x803d82', 'uniqueId': '0x74ea7425c43d4ffed60b44ae42b6e4388590af440f09600b79317a5300145a17:log:34', 'hash': '0x74ea7425c43d4ffed60b44ae42b6e4388590af440f09600b79317a5300145a17', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xdf9d80fc59e61fbe176b449da06d65ba98e6c9f6', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:22:29.000Z'}}, {'blockNum': '0x803d88', 'uniqueId': '0xf25352500400374bb96c220a5cbe31443e4e58ca1b6fa1c2d01ee0c3fec47ac9:log:0', 'hash': '0xf25352500400374bb96c220a5cbe31443e4e58ca1b6fa1c2d01ee0c3fec47ac9', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x5b662727aef339126d8687f9d863c448c2567774', 'value': 346547.2376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x49625d075f3e7d8e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:23:59.000Z'}}, {'blockNum': '0x803d94', 'uniqueId': '0x96a8513e3655692414e4bb40d05717189bcfa72a6b89142ede58df73260344e2:log:31', 'hash': '0x96a8513e3655692414e4bb40d05717189bcfa72a6b89142ede58df73260344e2', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xae8bdbe465e04c5e7a5f150efaccc9b669d4099e', 'value': 10234.5384286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022ad0c0abe733913000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:25:38.000Z'}}, {'blockNum': '0x803db5', 'uniqueId': '0x3cc8e66d623983fadd46b265fe73900536e2166512889461a2a33640fb1bb500:log:52', 'hash': '0x3cc8e66d623983fadd46b265fe73900536e2166512889461a2a33640fb1bb500', 'from': '0x3568d82a933590b2973b7089cef2892c0a27ca3d', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10048.7251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0220be131e05cba2c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:33:54.000Z'}}, {'blockNum': '0x803db6', 'uniqueId': '0x2ce65038cdb773978d65fb50aaa78845a88f863be705051c28d796c33c3b04e8:log:11', 'hash': '0x2ce65038cdb773978d65fb50aaa78845a88f863be705051c28d796c33c3b04e8', 'from': '0x590f1d569b3709d9a0b0014875f392b93a1b7a20', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 59998.6251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb488301a1c37d0c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:34:00.000Z'}}, {'blockNum': '0x803db6', 'uniqueId': '0x51f04ef0c772b49cd75eb29a3e4690e9b0753c72572f7d85277ac2b43d3742ea:log:14', 'hash': '0x51f04ef0c772b49cd75eb29a3e4690e9b0753c72572f7d85277ac2b43d3742ea', 'from': '0xb677cbce33c00576f03aaf6176ca0147e12426e3', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10085.5251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0222bcc6fb0c4202c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:34:00.000Z'}}, {'blockNum': '0x803db8', 'uniqueId': '0xc446f7b0bf9f315ae07395a142b82c1c0c94a0955e6d5e927922fa331f43e0cf:log:39', 'hash': '0xc446f7b0bf9f315ae07395a142b82c1c0c94a0955e6d5e927922fa331f43e0cf', 'from': '0xe2c49ea63f662128215cfe35540a1bd23337deb3', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e26b7674723f6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:34:05.000Z'}}, {'blockNum': '0x803dbb', 'uniqueId': '0x75d4b659b72b91f6bd90c7678fd27a09e7b612dfb0fb2f3fa6c3a702653b5d41:log:76', 'hash': '0x75d4b659b72b91f6bd90c7678fd27a09e7b612dfb0fb2f3fa6c3a702653b5d41', 'from': '0x1f6e38dac16a5ec92f2624fbc7e424bd2313788b', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e26b7674723f6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:34:59.000Z'}}, {'blockNum': '0x803dbb', 'uniqueId': '0x906a8d3663b3284686ea1b66c77843924bcd63fd360c3b6fb5df226793e8b6bd:log:80', 'hash': '0x906a8d3663b3284686ea1b66c77843924bcd63fd360c3b6fb5df226793e8b6bd', 'from': '0xd0e980ffac3e601dfc86521cea048d6b4f0ebda0', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 20603.2207062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x045ce72007bf47c5f000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:34:59.000Z'}}, {'blockNum': '0x803dbd', 'uniqueId': '0x8d3708e2eca94f3375b3e6f3ebb1f38619a02ce1a5810141d6b9c9246a5b3f4c:log:89', 'hash': '0x8d3708e2eca94f3375b3e6f3ebb1f38619a02ce1a5810141d6b9c9246a5b3f4c', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3512.6498966935446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbe6bcf5639db4ffe76', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:35:09.000Z'}}, {'blockNum': '0x803dbd', 'uniqueId': '0x8d3708e2eca94f3375b3e6f3ebb1f38619a02ce1a5810141d6b9c9246a5b3f4c:log:91', 'hash': '0x8d3708e2eca94f3375b3e6f3ebb1f38619a02ce1a5810141d6b9c9246a5b3f4c', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'value': 3512.6498966935446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbe6bcf5639db4ffe76', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:35:09.000Z'}}, {'blockNum': '0x803dbd', 'uniqueId': '0x8d3708e2eca94f3375b3e6f3ebb1f38619a02ce1a5810141d6b9c9246a5b3f4c:log:95', 'hash': '0x8d3708e2eca94f3375b3e6f3ebb1f38619a02ce1a5810141d6b9c9246a5b3f4c', 'from': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 3512.6498966935446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbe6bcf5639db4ffe76', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:35:09.000Z'}}, {'blockNum': '0x803dd0', 'uniqueId': '0x74ec59dd1ad16b37c0e8e50945e25b9262d7bae402e19de47caf188838e1c8f7:log:30', 'hash': '0x74ec59dd1ad16b37c0e8e50945e25b9262d7bae402e19de47caf188838e1c8f7', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 7112.903225806452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0181975c961833a39ce7', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:38:34.000Z'}}, {'blockNum': '0x803dd0', 'uniqueId': '0x74ec59dd1ad16b37c0e8e50945e25b9262d7bae402e19de47caf188838e1c8f7:log:32', 'hash': '0x74ec59dd1ad16b37c0e8e50945e25b9262d7bae402e19de47caf188838e1c8f7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 7112.903225806452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0181975c961833a39ce7', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:38:34.000Z'}}, {'blockNum': '0x803dd2', 'uniqueId': '0x4f2c2caa952285ea16aaa5518594c768fe79be4b20c07a066d363c46d7ead242:log:12', 'hash': '0x4f2c2caa952285ea16aaa5518594c768fe79be4b20c07a066d363c46d7ead242', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x5285cfc9bb587bbfaad6786fe345aaaafeff342d', 'value': 1203.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4143d12bc80ca2c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:39:19.000Z'}}, {'blockNum': '0x803dd3', 'uniqueId': '0xfa3103def493be93df4b16b1fc961929f3de3084ed7ff99128bf584a318d4501:log:92', 'hash': '0xfa3103def493be93df4b16b1fc961929f3de3084ed7ff99128bf584a318d4501', 'from': '0x537c6cda0b2549be42fab62c165143b16ec122ff', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 11424.8056034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x026b57072513f558d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:39:35.000Z'}}, {'blockNum': '0x803dd5', 'uniqueId': '0x86212e867218cffb16efc374434e53a57fd4aa7c29d66bc06a5cc97134a0523b:log:143', 'hash': '0x86212e867218cffb16efc374434e53a57fd4aa7c29d66bc06a5cc97134a0523b', 'from': '0xe638b39cc4659b3dd397a8ef02abfb9ac8a3d48d', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:39:59.000Z'}}, {'blockNum': '0x803dd6', 'uniqueId': '0xe182de55c01cdc598d8ac31a322906845e398b65c391d416a67d2e886eb9130f:log:44', 'hash': '0xe182de55c01cdc598d8ac31a322906845e398b65c391d416a67d2e886eb9130f', 'from': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'to': '0xb9fcf16e0cb34780b48797b1ee8aab3713091fdd', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:40:05.000Z'}}, {'blockNum': '0x803ddb', 'uniqueId': '0xbb234074dfa3374df3acbc5fb9cd925840696d4f7e957bfc93001d93c884a3f0:log:81', 'hash': '0xbb234074dfa3374df3acbc5fb9cd925840696d4f7e957bfc93001d93c884a3f0', 'from': '0x24462c702ff5504cee8432a18e029873b6547e21', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 210000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2c782c4729dd10f6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:40:54.000Z'}}, {'blockNum': '0x803ddd', 'uniqueId': '0x45b95b857aeec59521e4089701c07db5f0ab21f82cdc4a7a3bfbafc4ad930b2a:log:5', 'hash': '0x45b95b857aeec59521e4089701c07db5f0ab21f82cdc4a7a3bfbafc4ad930b2a', 'from': '0xc2f95afb3492bf1eb0e241a90fef6286527ec588', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10000.5147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e21055ea6fc24c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:40:58.000Z'}}, {'blockNum': '0x803dde', 'uniqueId': '0x907f410a24593274ea766c4b3dc3af88534a47c16504abb92226b67be7516d7d:log:14', 'hash': '0x907f410a24593274ea766c4b3dc3af88534a47c16504abb92226b67be7516d7d', 'from': '0x5b662727aef339126d8687f9d863c448c2567774', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 346547.2376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x49625d075f3e7d8e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:41:12.000Z'}}, {'blockNum': '0x803dde', 'uniqueId': '0x4c8d7c1bf830393fd384bcc68c4a1516bd86b69f9cfe429ad6758da60a0fb1d9:log:25', 'hash': '0x4c8d7c1bf830393fd384bcc68c4a1516bd86b69f9cfe429ad6758da60a0fb1d9', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03ce35b9858fb0ec0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:41:12.000Z'}}, {'blockNum': '0x803ddf', 'uniqueId': '0xcc08ca37be66e6ee0b02de56a1dd1f8d2ddf497b2984bf51439655be8cbed9ec:log:10', 'hash': '0xcc08ca37be66e6ee0b02de56a1dd1f8d2ddf497b2984bf51439655be8cbed9ec', 'from': '0xd68a741029c2ffde775cdbc4e8878d874bb7ca96', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:41:15.000Z'}}, {'blockNum': '0x803de2', 'uniqueId': '0x77c351692e6a4bb6b50d9e4902c960914199e7ba693ad577bccfd8fd6e93ef72:log:93', 'hash': '0x77c351692e6a4bb6b50d9e4902c960914199e7ba693ad577bccfd8fd6e93ef72', 'from': '0x770105b2b710aacabaca2319299dedbfcdad954b', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 200000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2a5a126660225eb6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:41:39.000Z'}}, {'blockNum': '0x803de3', 'uniqueId': '0x3c91d12b3de2072f79f7202d094692f114f92e58a27acbc53a6501b1232643f7:log:127', 'hash': '0x3c91d12b3de2072f79f7202d094692f114f92e58a27acbc53a6501b1232643f7', 'from': '0x47564a0e832fc93ab78c66c3ce80b8dd09bb5ae7', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 59787.7352164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ca91980ba518a56a000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:41:43.000Z'}}, {'blockNum': '0x803de4', 'uniqueId': '0x2c5a8d7f24e73195d15af2983342ab203ab54e30bf1b937015d327da5a0a6b97:log:129', 'hash': '0x2c5a8d7f24e73195d15af2983342ab203ab54e30bf1b937015d327da5a0a6b97', 'from': '0xa40bc4cc83e6e71ad33cc3595dd9ed1fd5e8ff44', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:42:07.000Z'}}, {'blockNum': '0x803de4', 'uniqueId': '0x2c4175a086fc6e5ffa5e3534fa8e556216cf75f8285358644f7cbba55033fdbd:log:130', 'hash': '0x2c4175a086fc6e5ffa5e3534fa8e556216cf75f8285358644f7cbba55033fdbd', 'from': '0xdf9d80fc59e61fbe176b449da06d65ba98e6c9f6', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:42:07.000Z'}}, {'blockNum': '0x803df2', 'uniqueId': '0x5e6b6387dab4a7d1ad38bbf7a190601da26a9db7ca54eee0a7108e711d9aa46d:log:115', 'hash': '0x5e6b6387dab4a7d1ad38bbf7a190601da26a9db7ca54eee0a7108e711d9aa46d', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x76cdc449bcc480e57d1790e57cbf304053b2e307', 'value': 22158.4398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04b136202da785af8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:44:59.000Z'}}, {'blockNum': '0x803df4', 'uniqueId': '0xca44dd645aa87d023e4c58b966e7fc79c639018a76863ac038dd109480648c52:log:58', 'hash': '0xca44dd645aa87d023e4c58b966e7fc79c639018a76863ac038dd109480648c52', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x5285cfc9bb587bbfaad6786fe345aaaafeff342d', 'value': 8006.6655114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01b20ace157c80511000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:45:59.000Z'}}, {'blockNum': '0x803dfd', 'uniqueId': '0x662986ed7ebe3f9ba637f2e3d83c2f48dcbbd2ed2f7719d2d48dbe06200135ff:log:14', 'hash': '0x662986ed7ebe3f9ba637f2e3d83c2f48dcbbd2ed2f7719d2d48dbe06200135ff', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x537c6cda0b2549be42fab62c165143b16ec122ff', 'value': 9667.9648466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x020c19f6f4e8dcea5000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:47:25.000Z'}}, {'blockNum': '0x803dfd', 'uniqueId': '0xa71a88a0f71f6c6db1c0918c4ef0d151c161f4a81cba7d2c3344687002261524:log:104', 'hash': '0xa71a88a0f71f6c6db1c0918c4ef0d151c161f4a81cba7d2c3344687002261524', 'from': '0x5285cfc9bb587bbfaad6786fe345aaaafeff342d', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 9210.5906114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01f34e9f41448cf3d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:47:25.000Z'}}, {'blockNum': '0x803e05', 'uniqueId': '0x9bd9a939b67606119a1e4329293fdfcfccc94b681a631ea5afd987cd63d20f05:log:151', 'hash': '0x9bd9a939b67606119a1e4329293fdfcfccc94b681a631ea5afd987cd63d20f05', 'from': '0x537c6cda0b2549be42fab62c165143b16ec122ff', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 9667.9648466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x020c19f6f4e8dcea5000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:48:24.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0x09dee30ca3d5960afafb58d70e78d1435e950a463d16d63786fc1c03a5cae63c:log:0', 'hash': '0x09dee30ca3d5960afafb58d70e78d1435e950a463d16d63786fc1c03a5cae63c', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 453000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5fed2de07f22f1200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0xe88eabb573fc0e41931c6901b54d1255507f02b798b0087903416a9627eafb64:log:99', 'hash': '0xe88eabb573fc0e41931c6901b54d1255507f02b798b0087903416a9627eafb64', 'from': '0x3a879221bbebdc04418e75d7cc31221550ffb67f', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 8800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01dd0c885f9a0d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0x438324a7e6e34bcc64583b689fc5f34d27c560cf4645723c46c3c9366ff16ba0:log:103', 'hash': '0x438324a7e6e34bcc64583b689fc5f34d27c560cf4645723c46c3c9366ff16ba0', 'from': '0x8cbee18999a05165711c9a655c2dc5d3dbb95474', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 968.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34868974dd63d6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0xe9a3efd5871a5c03ed9efdf489e0847bb2714e6e21118e8af38c300e2e21763a:log:104', 'hash': '0xe9a3efd5871a5c03ed9efdf489e0847bb2714e6e21118e8af38c300e2e21763a', 'from': '0xb6ff8c73b2239bcd735cd66ce971f21376a69286', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 132479.6572306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1c0dbc9267ec9f205000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0xbfcb83d1f1b27a139d54b9781269541f6048cc3b33208a8b8a31b6a376f7abfd:log:106', 'hash': '0xbfcb83d1f1b27a139d54b9781269541f6048cc3b33208a8b8a31b6a376f7abfd', 'from': '0x03a182fb2ca5527d4ee4cdc6b8b87273a2cf846f', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 59985.7267798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb3d5301039ff91f000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0x56a30db7f082396592caa1ca1f393e0d0ff1bb89d09834ce41a182b2ff3cc153:log:107', 'hash': '0x56a30db7f082396592caa1ca1f393e0d0ff1bb89d09834ce41a182b2ff3cc153', 'from': '0x3cac884cebcce149cc3f6bba39951294f23b484e', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 23136.4688212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04e63b01429daeac2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0x6f8d5a281c693f6ca3451bf69535d8b8c9de3a46baf89d3772578e48b0d87be2:log:110', 'hash': '0x6f8d5a281c693f6ca3451bf69535d8b8c9de3a46baf89d3772578e48b0d87be2', 'from': '0x378760b131447113a39a4995a64f6beee9f4f6b9', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 46400.5147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x09d3607f472fd6e4c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0xfb2a78bbf06de6ab1dc5d3b274ffa96c5a4d8ba0170876feb6964306215908de:log:111', 'hash': '0xfb2a78bbf06de6ab1dc5d3b274ffa96c5a4d8ba0170876feb6964306215908de', 'from': '0xae8bdbe465e04c5e7a5f150efaccc9b669d4099e', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10234.5384286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022ad0c0abe733913000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e09', 'uniqueId': '0xf0fa6870a37a224b170e6723a2fdf7d2a1aeeef2a8f8264efd2bb11f30bafe54:log:25', 'hash': '0xf0fa6870a37a224b170e6723a2fdf7d2a1aeeef2a8f8264efd2bb11f30bafe54', 'from': '0x284cb1ea7b4bcb6e0938c18d776c3011a614dc89', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:45.000Z'}}, {'blockNum': '0x803e10', 'uniqueId': '0xa1f1cffe15b340103ae3ffd7c502b10eb795803ad7cf937a750a93ec5b0a9621:log:43', 'hash': '0xa1f1cffe15b340103ae3ffd7c502b10eb795803ad7cf937a750a93ec5b0a9621', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x5285cfc9bb587bbfaad6786fe345aaaafeff342d', 'value': 1968.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x6abc5322a34276c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:51:47.000Z'}}, {'blockNum': '0x803e10', 'uniqueId': '0x647b04193acdb7b3f9e56888b86bafb2f12d4a8eb21a684feb51b252e90d0589:log:45', 'hash': '0x647b04193acdb7b3f9e56888b86bafb2f12d4a8eb21a684feb51b252e90d0589', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xe9a06fdba334ea394c2680adc35b0f5c46ce0632', 'value': 1908.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x677ba850880706c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:51:47.000Z'}}, {'blockNum': '0x803e11', 'uniqueId': '0x324356995dd602bd5fcbe35cfc3829f4d92bbdf5b1920f29da103a2b7de17216:log:19', 'hash': '0x324356995dd602bd5fcbe35cfc3829f4d92bbdf5b1920f29da103a2b7de17216', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd9cbfe4aa15eccf67c115a0bc7ed003f9da8a8ac', 'value': 9958.2365398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021bd64b2bf31e15f000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:52:42.000Z'}}, {'blockNum': '0x803e14', 'uniqueId': '0xb0ea3dd0f01e5fdab0b09c358a7d24c53e8f577b6d65d0499a5170aa36cadbde:log:65', 'hash': '0xb0ea3dd0f01e5fdab0b09c358a7d24c53e8f577b6d65d0499a5170aa36cadbde', 'from': '0x5285cfc9bb587bbfaad6786fe345aaaafeff342d', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 1968.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x6abc5322a34276c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:53:38.000Z'}}, {'blockNum': '0x803e14', 'uniqueId': '0x4ce72a2a479cff1c2434d995e9b68b56f755aad99eae7c36b68eeda2960a2733:log:80', 'hash': '0x4ce72a2a479cff1c2434d995e9b68b56f755aad99eae7c36b68eeda2960a2733', 'from': '0x76cdc449bcc480e57d1790e57cbf304053b2e307', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 22158.4398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04b136202da785af8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:53:38.000Z'}}, {'blockNum': '0x803e24', 'uniqueId': '0xea0e1869cac2c2db9dd8c24be9c7957c64ca78b551377e06b1b1cfc3937e3443:log:7', 'hash': '0xea0e1869cac2c2db9dd8c24be9c7957c64ca78b551377e06b1b1cfc3937e3443', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x98ae5bf7ba048587664cb407dbd7fc7ae9222c81', 'value': 1736.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5e2164082894480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:56:21.000Z'}}, {'blockNum': '0x803e29', 'uniqueId': '0x648881a33475aa6ba9c5eed9c0cc288a843e34b32cb7578ab91e0ae441da7a48:log:28', 'hash': '0x648881a33475aa6ba9c5eed9c0cc288a843e34b32cb7578ab91e0ae441da7a48', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xbb6131c8f5eca3979aeea5f8c723d0c530688c9e', 'value': 17749.1891892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03c22f7b3857bd8b2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:58:09.000Z'}}, {'blockNum': '0x803e2f', 'uniqueId': '0x1a808b9f4a678f7b46ada7333c58204cbdeeca94b18e8e413f385ee7c5654ee1:log:9', 'hash': '0x1a808b9f4a678f7b46ada7333c58204cbdeeca94b18e8e413f385ee7c5654ee1', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x17fdf49eda93839700c76fd9317854f66911ce25', 'value': 60000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a81b57ec9f36c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:58:52.000Z'}}, {'blockNum': '0x803e2f', 'uniqueId': '0xdc1f8ddbc8895b07434cc6796fb6321b85ed52b3a380f80c0800ed173116e6dc:log:17', 'hash': '0xdc1f8ddbc8895b07434cc6796fb6321b85ed52b3a380f80c0800ed173116e6dc', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x6499577c648c9005fc57841bbde2c2402813c9ce', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:58:52.000Z'}}, {'blockNum': '0x803e2f', 'uniqueId': '0x0e6cdc3029f6b2ccc7850e57d7e9b476c77ce949eedca897ee46df51f2f47feb:log:32', 'hash': '0x0e6cdc3029f6b2ccc7850e57d7e9b476c77ce949eedca897ee46df51f2f47feb', 'from': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 453000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5fed2de07f22f1200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:58:52.000Z'}}, {'blockNum': '0x803e30', 'uniqueId': '0x9dd5eaa62504eb599da60456620dc45f14c2d31a0289012edc83521c02288078:log:38', 'hash': '0x9dd5eaa62504eb599da60456620dc45f14c2d31a0289012edc83521c02288078', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x8bfc1e6b3db10ef4c447b903707812eaaa1de700', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:59:09.000Z'}}, {'blockNum': '0x803e32', 'uniqueId': '0x37472723aacc6fd5a222f7ab49555e27ccc0ea06598acc8926f3f68ff145f036:log:9', 'hash': '0x37472723aacc6fd5a222f7ab49555e27ccc0ea06598acc8926f3f68ff145f036', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xd6b96b64014362749969238765220701b0c9eb8b', 'value': 10064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0221920e76a48b400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:59:50.000Z'}}, {'blockNum': '0x803e43', 'uniqueId': '0xf976194aa597fbd0af3dea0b5fa7884f49ac21b0beaf7afbbbad5edc282e188f:log:6', 'hash': '0xf976194aa597fbd0af3dea0b5fa7884f49ac21b0beaf7afbbbad5edc282e188f', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 85131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1206f5f430a1934c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:03:00.000Z'}}, {'blockNum': '0x803e43', 'uniqueId': '0x8b61c9ddd644b166c1033b5cdf8acedb6a31d98ca66159238811905bace35a53:log:34', 'hash': '0x8b61c9ddd644b166c1033b5cdf8acedb6a31d98ca66159238811905bace35a53', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xaef0d20c06b1bf9c303e61912fb6fc8607c45c00', 'value': 38641.048854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x082ebc46d3a970ff6000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:03:00.000Z'}}, {'blockNum': '0x803e4c', 'uniqueId': '0xc8c9664ee907230a3eb0c703f5fbd0d6469bb653609028d035c19781b31c17b5:log:29', 'hash': '0xc8c9664ee907230a3eb0c703f5fbd0d6469bb653609028d035c19781b31c17b5', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'value': 94612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1408ed429423e9d00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:04:25.000Z'}}, {'blockNum': '0x803e5e', 'uniqueId': '0xaaf8f99d58c16178159206ad09c4213d4b2c8d87c52ef1231a359ff7d0f784a0:log:28', 'hash': '0xaaf8f99d58c16178159206ad09c4213d4b2c8d87c52ef1231a359ff7d0f784a0', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x155d395b0b27349e41b7ca436a0a8d586f0041ed', 'value': 59848.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cac6aaedd413bd6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:07:15.000Z'}}, {'blockNum': '0x803e64', 'uniqueId': '0xd70467fcaac00814471d52fb9078c611f8f4a35d33f65feaae1d9b51d3ab8a4c:log:3', 'hash': '0xd70467fcaac00814471d52fb9078c611f8f4a35d33f65feaae1d9b51d3ab8a4c', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x73fde08d4cefe45f5ae6c2baf0d0b92c82f42c34', 'value': 117825.7030722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x18f3581b04d60cd7d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:08:53.000Z'}}, {'blockNum': '0x803e72', 'uniqueId': '0x4a2ac2e927c966f6d64d31855d14d2676a6c750be1b8af5bfe3e6458d2cb0ccc:log:96', 'hash': '0x4a2ac2e927c966f6d64d31855d14d2676a6c750be1b8af5bfe3e6458d2cb0ccc', 'from': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 94612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1408ed429423e9d00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:10:56.000Z'}}, {'blockNum': '0x803e81', 'uniqueId': '0xeb5e026890033a19b7f63463430693d33316100db652a0b4f191a93203e1b462:log:0', 'hash': '0xeb5e026890033a19b7f63463430693d33316100db652a0b4f191a93203e1b462', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x5b662727aef339126d8687f9d863c448c2567774', 'value': 349760.5217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4a108e4dbf7c3c524000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:14:08.000Z'}}, {'blockNum': '0x803e84', 'uniqueId': '0xd54f72c7ec453c1aec567cc6e767fe37a4ff4bc0577b3e4a3fc118d4c213c3f8:log:2', 'hash': '0xd54f72c7ec453c1aec567cc6e767fe37a4ff4bc0577b3e4a3fc118d4c213c3f8', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 301277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3fcc4247020ae1540000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:14:37.000Z'}}, {'blockNum': '0x803e89', 'uniqueId': '0xd36fdb07e9714c037b913a4f40685372d3be201d19c913292d1dd1b991ba9f0d:log:10', 'hash': '0xd36fdb07e9714c037b913a4f40685372d3be201d19c913292d1dd1b991ba9f0d', 'from': '0xb14232b0204b2f7bb6ba5aff59ef36030f7fe38b', 'to': '0x41f8d14c9475444f30a80431c68cf24dc9a8369a', 'value': 1011.0201193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x36ceb901e3a18d2800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:16:36.000Z'}}, {'blockNum': '0x803e89', 'uniqueId': '0xd36fdb07e9714c037b913a4f40685372d3be201d19c913292d1dd1b991ba9f0d:log:12', 'hash': '0xd36fdb07e9714c037b913a4f40685372d3be201d19c913292d1dd1b991ba9f0d', 'from': '0x41f8d14c9475444f30a80431c68cf24dc9a8369a', 'to': '0xfa29654a1d94fa8c5145798ffb71cfb08f29f821', 'value': 1007.9870589421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x36a4a16990429a4d00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:16:36.000Z'}}, {'blockNum': '0x803e8c', 'uniqueId': '0x32431068e473c93d79d223c5d0bdb107353b602446633d7075f38b1fdd89e1be:log:72', 'hash': '0x32431068e473c93d79d223c5d0bdb107353b602446633d7075f38b1fdd89e1be', 'from': '0x5f4161eb3a67f1f2096b31997d59b5386fa21ff3', 'to': '0xa1cf0c28748c5dd3324866c36b1bce966a8ba921', 'value': 413667.1509766994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5798f0f1becf64a7eac6', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:17:22.000Z'}}, {'blockNum': '0x803eac', 'uniqueId': '0x4be8f640f90c5be432621ad5bcddbd96e393f3e92c8196eb4edfff96f20cb1fd:log:123', 'hash': '0x4be8f640f90c5be432621ad5bcddbd96e393f3e92c8196eb4edfff96f20cb1fd', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 301277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3fcc4247020ae1540000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:25:20.000Z'}}, {'blockNum': '0x803eb2', 'uniqueId': '0x8c751b3e306065945024a7cd0810f5808f12519184bc84d0c8d0d111e17dba35:log:22', 'hash': '0x8c751b3e306065945024a7cd0810f5808f12519184bc84d0c8d0d111e17dba35', 'from': '0x5b662727aef339126d8687f9d863c448c2567774', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 349760.5217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4a108e4dbf7c3c524000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:26:23.000Z'}}, {'blockNum': '0x803ec9', 'uniqueId': '0xd32f0ce27bae362dda73528f3035537a268564dfe0b2fb7e54fdc57fc8412c95:log:1', 'hash': '0xd32f0ce27bae362dda73528f3035537a268564dfe0b2fb7e54fdc57fc8412c95', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:31:17.000Z'}}, {'blockNum': '0x803eca', 'uniqueId': '0xf7f75dd7929775bc161ae63e381505991479d2c8cc7a28737e2b6212d52d7707:log:68', 'hash': '0xf7f75dd7929775bc161ae63e381505991479d2c8cc7a28737e2b6212d52d7707', 'from': '0xaef0d20c06b1bf9c303e61912fb6fc8607c45c00', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 38641.048854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x082ebc46d3a970ff6000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:31:38.000Z'}}, {'blockNum': '0x803ecc', 'uniqueId': '0xd5f3639b60a8d04a03570cf62f18de38b14c19518b31e0918969510633c85846:log:5', 'hash': '0xd5f3639b60a8d04a03570cf62f18de38b14c19518b31e0918969510633c85846', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x152b1bedd7313ac5613c93abad59ba6dab3736e7', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:31:55.000Z'}}, {'blockNum': '0x803ecc', 'uniqueId': '0x8490bc66f62ee92af9acbac1bf2d8826bc61665137d3a792290a7e50173a3c71:log:7', 'hash': '0x8490bc66f62ee92af9acbac1bf2d8826bc61665137d3a792290a7e50173a3c71', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 18217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03db8ba916328b040000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:31:55.000Z'}}, {'blockNum': '0x803ecc', 'uniqueId': '0xfd113837f314436d65c949419bad5e9b115312129edbc18bc3e08eb09b74d50c:log:8', 'hash': '0xfd113837f314436d65c949419bad5e9b115312129edbc18bc3e08eb09b74d50c', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x2d5ebdfca13265c97c53a30e21ca860ddabc3dac', 'value': 30968.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x068ed42bd20d7a96c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:31:55.000Z'}}, {'blockNum': '0x803ed5', 'uniqueId': '0x2874a1d2efde623b4030a244659e8001f72f0c7ff8e40d066aef52f296e4fad1:log:14', 'hash': '0x2874a1d2efde623b4030a244659e8001f72f0c7ff8e40d066aef52f296e4fad1', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xaacd1e63da8b541344fcd0891a7161db215a25a2', 'value': 3068.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa65de42e968426c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:33:52.000Z'}}, {'blockNum': '0x803edc', 'uniqueId': '0xb5e412370508bdd72ab13678a88daa814a5dbe0947cc015363a304b24feddc25:log:12', 'hash': '0xb5e412370508bdd72ab13678a88daa814a5dbe0947cc015363a304b24feddc25', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xb58a14601d35131e8f6023791e872f4609f472a7', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:35:44.000Z'}}, {'blockNum': '0x803ee0', 'uniqueId': '0xd3139a4260ffab20f128529ec7d8c954053aec1612f8fd5c68473dd8c423c08c:log:68', 'hash': '0xd3139a4260ffab20f128529ec7d8c954053aec1612f8fd5c68473dd8c423c08c', 'from': '0x8bfc1e6b3db10ef4c447b903707812eaaa1de700', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:36:32.000Z'}}, {'blockNum': '0x803ee2', 'uniqueId': '0x04893a5227df00f4da7980e3fb84df293c1e4c8a053c2158706a040a83150ae4:log:23', 'hash': '0x04893a5227df00f4da7980e3fb84df293c1e4c8a053c2158706a040a83150ae4', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x3a0514b6a2de27b87210ee377862963f6ae92ba0', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:37:00.000Z'}}, {'blockNum': '0x803ef2', 'uniqueId': '0x09d8c2ccf93e7557a4f9e2509b401efdac29112a6c10587fd320dfbe9f30fe14:log:161', 'hash': '0x09d8c2ccf93e7557a4f9e2509b401efdac29112a6c10587fd320dfbe9f30fe14', 'from': '0xe9a06fdba334ea394c2680adc35b0f5c46ce0632', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 1908.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x677ba850880706c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:40:48.000Z'}}, {'blockNum': '0x803ef4', 'uniqueId': '0x518d8416aab858bbacbbfe9c43efbb9821b6d9d5b2f3f648898b0eecc78a2bd2:log:71', 'hash': '0x518d8416aab858bbacbbfe9c43efbb9821b6d9d5b2f3f648898b0eecc78a2bd2', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03db8ba916328b040000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:41:07.000Z'}}, {'blockNum': '0x803ef6', 'uniqueId': '0x552275ea1ea69f0c0622c27e1fc07eaeb3d86d2d4e7842b91a2d20fdaff53534:log:90', 'hash': '0x552275ea1ea69f0c0622c27e1fc07eaeb3d86d2d4e7842b91a2d20fdaff53534', 'from': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:41:39.000Z'}}, {'blockNum': '0x803efc', 'uniqueId': '0x66a3d32148397969a87e5d058529137c1c53c25878ab06375afdefce85b5c0c5:log:65', 'hash': '0x66a3d32148397969a87e5d058529137c1c53c25878ab06375afdefce85b5c0c5', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x67ffb39872071159da34a322a07f770753995ba6', 'value': 60498.8089276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ccfa5a20739950a6000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:43:22.000Z'}}, {'blockNum': '0x803f0a', 'uniqueId': '0xfcb604bef436966fab61776f928703ea05477687eca0693268eb8d3ff3cb9b5a:log:9', 'hash': '0xfcb604bef436966fab61776f928703ea05477687eca0693268eb8d3ff3cb9b5a', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x10d4a5e538a0718e37ae333cedfa721c5a009d2e', 'value': 591.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2012196991a1180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:46:26.000Z'}}, {'blockNum': '0x803f11', 'uniqueId': '0x4d931b3b8932196bf358a098492cdd886f196bdbd1f79650a5ba78968a64ba34:log:16', 'hash': '0x4d931b3b8932196bf358a098492cdd886f196bdbd1f79650a5ba78968a64ba34', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xba50519a5e49ff8f359bd2c8bc79bb1e6d2d919a', 'value': 20028.7251568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043dc265d56031e58000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:47:49.000Z'}}, {'blockNum': '0x803f15', 'uniqueId': '0x279f115ff80e3c21e5e363fc2f5d3dbff5b7d76696352c77f2a37f1c35e26fcd:log:0', 'hash': '0x279f115ff80e3c21e5e363fc2f5d3dbff5b7d76696352c77f2a37f1c35e26fcd', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 305000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4096154808be3ca00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:48:59.000Z'}}, {'blockNum': '0x803f1c', 'uniqueId': '0xa23c5f5ff3551e23202531e57f21aab6108ff2bb779e05c261cea2d1286e6631:log:26', 'hash': '0xa23c5f5ff3551e23202531e57f21aab6108ff2bb779e05c261cea2d1286e6631', 'from': '0x155d395b0b27349e41b7ca436a0a8d586f0041ed', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 59848.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cac6aaedd413bd6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:49:57.000Z'}}, {'blockNum': '0x803f1c', 'uniqueId': '0x57d21853e2a70bcc21b6a93bf2f9f473702e3f9d97011ec38a8b6294f6f53ff8:log:35', 'hash': '0x57d21853e2a70bcc21b6a93bf2f9f473702e3f9d97011ec38a8b6294f6f53ff8', 'from': '0x73fde08d4cefe45f5ae6c2baf0d0b92c82f42c34', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 117825.7030722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x18f3581b04d60cd7d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:49:57.000Z'}}, {'blockNum': '0x803f2e', 'uniqueId': '0xc684a1b2b2f95be79352de0f6aa2210d2de2633294ed0d9cf91ce42c1db70b9e:log:14', 'hash': '0xc684a1b2b2f95be79352de0f6aa2210d2de2633294ed0d9cf91ce42c1db70b9e', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xc8764a3e765390b1d9642b1b9c1d5488d3e9cde4', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:54:28.000Z'}}, {'blockNum': '0x803f2e', 'uniqueId': '0x0b2b302102887e57e2c697c5dff20de54e63e330bc4ea2791d5d150bbbace6cd:log:91', 'hash': '0x0b2b302102887e57e2c697c5dff20de54e63e330bc4ea2791d5d150bbbace6cd', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xe2075a864929278db933a5082e7189786d414ca9', 'value': 168.7251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x092587f8819042c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:54:28.000Z'}}, {'blockNum': '0x803f3a', 'uniqueId': '0x7b7a97011c73958a0fb9e5ed07580185a2f793b69f0500c973ee8a027f857b43:log:91', 'hash': '0x7b7a97011c73958a0fb9e5ed07580185a2f793b69f0500c973ee8a027f857b43', 'from': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 305000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4096154808be3ca00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:04.000Z'}}, {'blockNum': '0x803f3a', 'uniqueId': '0x1dc0cfaa355587d8e21b9c43b72e8c2b3e9bb02ccedec0debdb6b5d4abbd7704:log:110', 'hash': '0x1dc0cfaa355587d8e21b9c43b72e8c2b3e9bb02ccedec0debdb6b5d4abbd7704', 'from': '0xbb6131c8f5eca3979aeea5f8c723d0c530688c9e', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 17749.1891892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03c22f7b3857bd8b2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:04.000Z'}}, {'blockNum': '0x803f3b', 'uniqueId': '0x07115f516e9678b4d19241a7dc65c69f30ffc3c98776805042d3a1226009a571:log:85', 'hash': '0x07115f516e9678b4d19241a7dc65c69f30ffc3c98776805042d3a1226009a571', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3542.399557685189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc008ab5d47068c6c14', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:20.000Z'}}, {'blockNum': '0x803f3b', 'uniqueId': '0x07115f516e9678b4d19241a7dc65c69f30ffc3c98776805042d3a1226009a571:log:87', 'hash': '0x07115f516e9678b4d19241a7dc65c69f30ffc3c98776805042d3a1226009a571', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 3542.399557685189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc008ab5d47068c6c14', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:20.000Z'}}, {'blockNum': '0x803f3b', 'uniqueId': '0x07115f516e9678b4d19241a7dc65c69f30ffc3c98776805042d3a1226009a571:log:92', 'hash': '0x07115f516e9678b4d19241a7dc65c69f30ffc3c98776805042d3a1226009a571', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 3542.396015285631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc0089ec77bdb429c4f', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:20.000Z'}}, {'blockNum': '0x803f3c', 'uniqueId': '0xa20219bef9e1dc6b58dae6c347f4d8f77ec5faf605fca87e130d91a695223714:log:10', 'hash': '0xa20219bef9e1dc6b58dae6c347f4d8f77ec5faf605fca87e130d91a695223714', 'from': '0x17fdf49eda93839700c76fd9317854f66911ce25', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a81b57ec9f36c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:27.000Z'}}, {'blockNum': '0x803f3d', 'uniqueId': '0x0ed6444090791d3a579bb492ff2ffe18597e9c21aea0c99b49f0c6c238482679:log:33', 'hash': '0x0ed6444090791d3a579bb492ff2ffe18597e9c21aea0c99b49f0c6c238482679', 'from': '0xaacd1e63da8b541344fcd0891a7161db215a25a2', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 3068.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa65de42e968426c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:29.000Z'}}, {'blockNum': '0x803f3f', 'uniqueId': '0x6e4c1d7eaa9d564ed1f6bb9cc76b6fef47802a4056a6f35c580a15ba4cad627c:log:33', 'hash': '0x6e4c1d7eaa9d564ed1f6bb9cc76b6fef47802a4056a6f35c580a15ba4cad627c', 'from': '0x67ffb39872071159da34a322a07f770753995ba6', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60498.8089276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ccfa5a20739950a6000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:42.000Z'}}, {'blockNum': '0x803f40', 'uniqueId': '0x77a7930016aaa2fe628a145a6409461a75f7d0f224ca942d8b50cf9427248593:log:6', 'hash': '0x77a7930016aaa2fe628a145a6409461a75f7d0f224ca942d8b50cf9427248593', 'from': '0xc8764a3e765390b1d9642b1b9c1d5488d3e9cde4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:48.000Z'}}, {'blockNum': '0x803f40', 'uniqueId': '0xac6f56df0c6ed94bf92861ea0e870151646fb3cfc758ee460968d56458fb97ae:log:82', 'hash': '0xac6f56df0c6ed94bf92861ea0e870151646fb3cfc758ee460968d56458fb97ae', 'from': '0xd6b96b64014362749969238765220701b0c9eb8b', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0221920e76a48b400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:48.000Z'}}]}}
Number of returned transfers: 519
Answer is complete
symbol BNT
group CPS
date 2019-09-09
hour 20:00
exchange binance
Name: 408, dtype: object
HERE
Symbol: BNT, Contract: 0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c
Datetime timestamps: 2019-09-09 20:00:00 2019-09-09 08:00:00 2019-09-10 08:00:00
Unix timestamps: 1568008800.0 1568095200.0
Hex Block Numbers: 0x81e999 0x8202cb
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x81e99c', 'uniqueId': '0x25ece82fd631d70930e9fb065e14d43f5940bd40beabdc4afed1d21a3df38e62:log:115', 'hash': '0x25ece82fd631d70930e9fb065e14d43f5940bd40beabdc4afed1d21a3df38e62', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.0694988291698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9ef553632dc49730', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:00:45.000Z'}}, {'blockNum': '0x81e99c', 'uniqueId': '0x25ece82fd631d70930e9fb065e14d43f5940bd40beabdc4afed1d21a3df38e62:log:119', 'hash': '0x25ece82fd631d70930e9fb065e14d43f5940bd40beabdc4afed1d21a3df38e62', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 491.0694988291698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9ef553632dc49730', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:00:45.000Z'}}, {'blockNum': '0x81e9a2', 'uniqueId': '0x195513fa1032bd6f8ab3d09a056026a69e3bdb7be0bcedc3608880efb2b9fe14:log:126', 'hash': '0x195513fa1032bd6f8ab3d09a056026a69e3bdb7be0bcedc3608880efb2b9fe14', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 441.93560066617425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17f516a754aa33d2b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:03:06.000Z'}}, {'blockNum': '0x81e9a2', 'uniqueId': '0x195513fa1032bd6f8ab3d09a056026a69e3bdb7be0bcedc3608880efb2b9fe14:log:130', 'hash': '0x195513fa1032bd6f8ab3d09a056026a69e3bdb7be0bcedc3608880efb2b9fe14', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1c29f12d94ad2e6b5321ce226b4550f83ce88fca', 'value': 441.93560066617425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17f516a754aa33d2b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:03:06.000Z'}}, {'blockNum': '0x81e9c2', 'uniqueId': '0x82e4f818c45b0b0380910e5e4e6b179113b33db347d4988877c4fb21dfe51659:log:48', 'hash': '0x82e4f818c45b0b0380910e5e4e6b179113b33db347d4988877c4fb21dfe51659', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 489.1185968032061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a83e25454c49caa0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:09:55.000Z'}}, {'blockNum': '0x81e9c2', 'uniqueId': '0x82e4f818c45b0b0380910e5e4e6b179113b33db347d4988877c4fb21dfe51659:log:52', 'hash': '0x82e4f818c45b0b0380910e5e4e6b179113b33db347d4988877c4fb21dfe51659', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 489.1185968032061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a83e25454c49caa0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:09:55.000Z'}}, {'blockNum': '0x81e9d8', 'uniqueId': '0x301dc219df57c7d83eec3eee55b449d361d9467bdae376166996f2432e4cebb5:log:64', 'hash': '0x301dc219df57c7d83eec3eee55b449d361d9467bdae376166996f2432e4cebb5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.5496949588759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27edae2d28561e07e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:13:29.000Z'}}, {'blockNum': '0x81e9d8', 'uniqueId': '0x301dc219df57c7d83eec3eee55b449d361d9467bdae376166996f2432e4cebb5:log:68', 'hash': '0x301dc219df57c7d83eec3eee55b449d361d9467bdae376166996f2432e4cebb5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 736.5496949588759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27edae2d28561e07e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:13:29.000Z'}}, {'blockNum': '0x81e9da', 'uniqueId': '0xe066be732efbeae38386ab954dde07f49081f2c8242a6abf4ff69dcf09cc2d4e:log:19', 'hash': '0xe066be732efbeae38386ab954dde07f49081f2c8242a6abf4ff69dcf09cc2d4e', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 158.68369132873448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x089a2db88570f3b7a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:13:44.000Z'}}, {'blockNum': '0x81e9da', 'uniqueId': '0xe066be732efbeae38386ab954dde07f49081f2c8242a6abf4ff69dcf09cc2d4e:log:23', 'hash': '0xe066be732efbeae38386ab954dde07f49081f2c8242a6abf4ff69dcf09cc2d4e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 158.68369132873448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x089a2db88570f3b7a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:13:44.000Z'}}, {'blockNum': '0x81e9f1', 'uniqueId': '0x5ce4498c2cff4c573fb4024880cbd95971bba991d419ad77c194b0750c132a3d:log:70', 'hash': '0x5ce4498c2cff4c573fb4024880cbd95971bba991d419ad77c194b0750c132a3d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.0039222144626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9e0c59cdc4923e54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:19:29.000Z'}}, {'blockNum': '0x81e9f1', 'uniqueId': '0x5ce4498c2cff4c573fb4024880cbd95971bba991d419ad77c194b0750c132a3d:log:74', 'hash': '0x5ce4498c2cff4c573fb4024880cbd95971bba991d419ad77c194b0750c132a3d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 491.0039222144626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9e0c59cdc4923e54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:19:29.000Z'}}, {'blockNum': '0x81e9f6', 'uniqueId': '0x3ae1fc47ffca9954e913dee5234d81dfdf98a4118546caf9029db1f1cfb8c471:log:132', 'hash': '0x3ae1fc47ffca9954e913dee5234d81dfdf98a4118546caf9029db1f1cfb8c471', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 981.9133204092605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x353ac8e2833248bc61', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:21:26.000Z'}}, {'blockNum': '0x81e9f6', 'uniqueId': '0x3ae1fc47ffca9954e913dee5234d81dfdf98a4118546caf9029db1f1cfb8c471:log:136', 'hash': '0x3ae1fc47ffca9954e913dee5234d81dfdf98a4118546caf9029db1f1cfb8c471', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 981.9133204092605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x353ac8e2833248bc61', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:21:26.000Z'}}, {'blockNum': '0x81ea0a', 'uniqueId': '0x03f3d3ff5c02d4dc5e95f5db3ddfeb932a1ab2e76b225317579b46cd97df02bc:log:30', 'hash': '0x03f3d3ff5c02d4dc5e95f5db3ddfeb932a1ab2e76b225317579b46cd97df02bc', 'from': '0xdb9272880400e0ae8e522994f6a959122d94c7b7', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 364.5840694242839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13c39ecf7e00cbf28d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:25:47.000Z'}}, {'blockNum': '0x81ea0a', 'uniqueId': '0x03f3d3ff5c02d4dc5e95f5db3ddfeb932a1ab2e76b225317579b46cd97df02bc:log:34', 'hash': '0x03f3d3ff5c02d4dc5e95f5db3ddfeb932a1ab2e76b225317579b46cd97df02bc', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 364.5840694242839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13c39ecf7e00cbf28d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:25:47.000Z'}}, {'blockNum': '0x81ea2d', 'uniqueId': '0x9bd7bc48e6260f56f2c20522e3a383e8a780e334a8528e7545ac2b5e514f552f:log:156', 'hash': '0x9bd7bc48e6260f56f2c20522e3a383e8a780e334a8528e7545ac2b5e514f552f', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 972.6371818833696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ba0d6bab973f2ef0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:33:50.000Z'}}, {'blockNum': '0x81ea2d', 'uniqueId': '0x9bd7bc48e6260f56f2c20522e3a383e8a780e334a8528e7545ac2b5e514f552f:log:160', 'hash': '0x9bd7bc48e6260f56f2c20522e3a383e8a780e334a8528e7545ac2b5e514f552f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 972.6371818833696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ba0d6bab973f2ef0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:33:50.000Z'}}, {'blockNum': '0x81ea2f', 'uniqueId': '0xaf2e0e417d37c253ffe97566dd2ee36d39ae5bd9e3db78ccf2d09decf815332b:log:92', 'hash': '0xaf2e0e417d37c253ffe97566dd2ee36d39ae5bd9e3db78ccf2d09decf815332b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 77.98910020606719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043a50f16ef6faa261', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:34:22.000Z'}}, {'blockNum': '0x81ea2f', 'uniqueId': '0xaf2e0e417d37c253ffe97566dd2ee36d39ae5bd9e3db78ccf2d09decf815332b:log:96', 'hash': '0xaf2e0e417d37c253ffe97566dd2ee36d39ae5bd9e3db78ccf2d09decf815332b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8a7bdf8388add5a24b357d947911be3a07801c56', 'value': 77.98910020606719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043a50f16ef6faa261', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:34:22.000Z'}}, {'blockNum': '0x81ea3c', 'uniqueId': '0xcbd719df630c4b5e512e6129994efdec51dfc40f1ad802942e0e3bb0fbecf9a8:log:73', 'hash': '0xcbd719df630c4b5e512e6129994efdec51dfc40f1ad802942e0e3bb0fbecf9a8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.4734979280794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27ec9f785c9c8ec736', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:39:20.000Z'}}, {'blockNum': '0x81ea3c', 'uniqueId': '0xcbd719df630c4b5e512e6129994efdec51dfc40f1ad802942e0e3bb0fbecf9a8:log:77', 'hash': '0xcbd719df630c4b5e512e6129994efdec51dfc40f1ad802942e0e3bb0fbecf9a8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 736.4734979280794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27ec9f785c9c8ec736', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:39:20.000Z'}}, {'blockNum': '0x81ea42', 'uniqueId': '0xc52a9c4e8024412ad211926202f2d8393d95abab2498dfa0b7b620fe28d64298:log:145', 'hash': '0xc52a9c4e8024412ad211926202f2d8393d95abab2498dfa0b7b620fe28d64298', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 0.03478118329419377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b914d4b1e4064', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:40:55.000Z'}}, {'blockNum': '0x81ea42', 'uniqueId': '0xc52a9c4e8024412ad211926202f2d8393d95abab2498dfa0b7b620fe28d64298:log:149', 'hash': '0xc52a9c4e8024412ad211926202f2d8393d95abab2498dfa0b7b620fe28d64298', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 0.03478118329419377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b914d4b1e4064', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:40:55.000Z'}}, {'blockNum': '0x81ea49', 'uniqueId': '0x233ce8a858f37ba368589b8a0a28ae4b76ee6f3335f1889c91b2ab6c7343ac9b:log:40', 'hash': '0x233ce8a858f37ba368589b8a0a28ae4b76ee6f3335f1889c91b2ab6c7343ac9b', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 494.00081952251605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ac7a37806f76c9cb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:41:43.000Z'}}, {'blockNum': '0x81ea49', 'uniqueId': '0x233ce8a858f37ba368589b8a0a28ae4b76ee6f3335f1889c91b2ab6c7343ac9b:log:44', 'hash': '0x233ce8a858f37ba368589b8a0a28ae4b76ee6f3335f1889c91b2ab6c7343ac9b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 494.00081952251605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ac7a37806f76c9cb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:41:43.000Z'}}, {'blockNum': '0x81ea58', 'uniqueId': '0x18b7c802cf864145bd572330812810e067b7edfab1706a4214e375a83509cf37:log:24', 'hash': '0x18b7c802cf864145bd572330812810e067b7edfab1706a4214e375a83509cf37', 'from': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1352.9001681716124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x495742eefad332710d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:45:29.000Z'}}, {'blockNum': '0x81ea58', 'uniqueId': '0x18b7c802cf864145bd572330812810e067b7edfab1706a4214e375a83509cf37:log:28', 'hash': '0x18b7c802cf864145bd572330812810e067b7edfab1706a4214e375a83509cf37', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1352.9001681716124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x495742eefad332710d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:45:29.000Z'}}, {'blockNum': '0x81ea61', 'uniqueId': '0xdd3b7a774987d15fe2307d1aa9b379d9c73efddd370aab55ddeffeb8a3d807d6:log:114', 'hash': '0xdd3b7a774987d15fe2307d1aa9b379d9c73efddd370aab55ddeffeb8a3d807d6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2700.4481366930668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x92643f08bc23c016ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:47:22.000Z'}}, {'blockNum': '0x81ea61', 'uniqueId': '0xdd3b7a774987d15fe2307d1aa9b379d9c73efddd370aab55ddeffeb8a3d807d6:log:117', 'hash': '0xdd3b7a774987d15fe2307d1aa9b379d9c73efddd370aab55ddeffeb8a3d807d6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x760f6df021517d001e43469eeaf2cd00c71f8f7a', 'value': 2700.4481366930668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x92643f08bc23c016ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:47:22.000Z'}}, {'blockNum': '0x81ea69', 'uniqueId': '0xcd3fbd087cc4f2aeaf0496e8300d6714c82c74b9572b9f0707c4f5a74e2f7139:log:111', 'hash': '0xcd3fbd087cc4f2aeaf0496e8300d6714c82c74b9572b9f0707c4f5a74e2f7139', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1300.008379265213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46793d8d33be50a645', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:50:13.000Z'}}, {'blockNum': '0x81ea69', 'uniqueId': '0xcd3fbd087cc4f2aeaf0496e8300d6714c82c74b9572b9f0707c4f5a74e2f7139:log:115', 'hash': '0xcd3fbd087cc4f2aeaf0496e8300d6714c82c74b9572b9f0707c4f5a74e2f7139', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1300.008379265213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46793d8d33be50a645', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:50:13.000Z'}}, {'blockNum': '0x81ea71', 'uniqueId': '0xcd553661acd1248415521c2a40187e8a5aedf2a4bdcc61305ae858bfd14fd7f8:log:49', 'hash': '0xcd553661acd1248415521c2a40187e8a5aedf2a4bdcc61305ae858bfd14fd7f8', 'from': '0x9300de97702dfbe25f4f71c764824670abac6331', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:52:21.000Z'}}, {'blockNum': '0x81ea71', 'uniqueId': '0xcd553661acd1248415521c2a40187e8a5aedf2a4bdcc61305ae858bfd14fd7f8:log:52', 'hash': '0xcd553661acd1248415521c2a40187e8a5aedf2a4bdcc61305ae858bfd14fd7f8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:52:21.000Z'}}, {'blockNum': '0x81ea99', 'uniqueId': '0xf7eaf996cfb14b62742351218149d7fbd28d318f3f6b640396da4b06883fcf7d:log:82', 'hash': '0xf7eaf996cfb14b62742351218149d7fbd28d318f3f6b640396da4b06883fcf7d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 785.5394309042101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a958cae70ebf42aa1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:00:57.000Z'}}, {'blockNum': '0x81ea99', 'uniqueId': '0xf7eaf996cfb14b62742351218149d7fbd28d318f3f6b640396da4b06883fcf7d:log:86', 'hash': '0xf7eaf996cfb14b62742351218149d7fbd28d318f3f6b640396da4b06883fcf7d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 785.5394309042101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a958cae70ebf42aa1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:00:57.000Z'}}, {'blockNum': '0x81ea9d', 'uniqueId': '0x8e2911a3aba7b106e47c4289c4770f1dc53e24f6a43ec0642e4b30826dbd50b3:log:108', 'hash': '0x8e2911a3aba7b106e47c4289c4770f1dc53e24f6a43ec0642e4b30826dbd50b3', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4.168884508743058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x39dada5f7d424164', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:01:41.000Z'}}, {'blockNum': '0x81ea9d', 'uniqueId': '0x8e2911a3aba7b106e47c4289c4770f1dc53e24f6a43ec0642e4b30826dbd50b3:log:112', 'hash': '0x8e2911a3aba7b106e47c4289c4770f1dc53e24f6a43ec0642e4b30826dbd50b3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4.168884508743058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x39dada5f7d424164', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:01:41.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0x4b579c6f483336d885550cecacf29f0f2e66cfbd96ee60be13b3882bce48f0d4:log:64', 'hash': '0x4b579c6f483336d885550cecacf29f0f2e66cfbd96ee60be13b3882bce48f0d4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 842.3700391788294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2daa3b8f90be02b525', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0x4b579c6f483336d885550cecacf29f0f2e66cfbd96ee60be13b3882bce48f0d4:log:68', 'hash': '0x4b579c6f483336d885550cecacf29f0f2e66cfbd96ee60be13b3882bce48f0d4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 842.3700391788294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2daa3b8f90be02b525', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0x382a480862c9e8a7d33472225f22a42e5acff7d3e10d64d0367efa1937906c79:log:91', 'hash': '0x382a480862c9e8a7d33472225f22a42e5acff7d3e10d64d0367efa1937906c79', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.2893072986367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27ea1117f5cdab0e3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0x382a480862c9e8a7d33472225f22a42e5acff7d3e10d64d0367efa1937906c79:log:95', 'hash': '0x382a480862c9e8a7d33472225f22a42e5acff7d3e10d64d0367efa1937906c79', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 736.2893072986367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27ea1117f5cdab0e3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0xbf53345a9e41603f39e45b6912f6f5d4c293ebf51367eb3b9c171499906af878:log:105', 'hash': '0xbf53345a9e41603f39e45b6912f6f5d4c293ebf51367eb3b9c171499906af878', 'from': '0xbac94dc2411f494c438ca667a4836e3dccaa4920', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1534.574283231964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x53307f0c1392e778fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0xbf53345a9e41603f39e45b6912f6f5d4c293ebf51367eb3b9c171499906af878:log:109', 'hash': '0xbf53345a9e41603f39e45b6912f6f5d4c293ebf51367eb3b9c171499906af878', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1534.574283231964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x53307f0c1392e778fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eacf', 'uniqueId': '0x8caa5ac349507a6e6e4a03831cf1296a5cd278d757e857a253a1b3e211211250:log:126', 'hash': '0x8caa5ac349507a6e6e4a03831cf1296a5cd278d757e857a253a1b3e211211250', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x3667d5c9e58b6d0a5a8fbe58f3862dcd2eafadfb', 'value': 475.5570555258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19c7ae0e6436063a00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:13:33.000Z'}}, {'blockNum': '0x81eae2', 'uniqueId': '0x6d7baa0d5d14ace67d59010d05a4907aa27a122cdf243346675676f4a52e4274:log:17', 'hash': '0x6d7baa0d5d14ace67d59010d05a4907aa27a122cdf243346675676f4a52e4274', 'from': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1205.6239339948668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x415b64a44c8906066d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:19:21.000Z'}}, {'blockNum': '0x81eae2', 'uniqueId': '0x6d7baa0d5d14ace67d59010d05a4907aa27a122cdf243346675676f4a52e4274:log:21', 'hash': '0x6d7baa0d5d14ace67d59010d05a4907aa27a122cdf243346675676f4a52e4274', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1205.6239339948668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x415b64a44c8906066d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:19:21.000Z'}}, {'blockNum': '0x81eae7', 'uniqueId': '0xd7d4440122ee7311a148ee75303c97bdecd71f0a4d872da231a4e7a354b36ea1:log:24', 'hash': '0xd7d4440122ee7311a148ee75303c97bdecd71f0a4d872da231a4e7a354b36ea1', 'from': '0x92a497f0bcdeaa5345f6aa4a3357ee3cbe2e7226', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 147.66779699993228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08014d66fe71751f4b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:20:21.000Z'}}, {'blockNum': '0x81eae7', 'uniqueId': '0xd7d4440122ee7311a148ee75303c97bdecd71f0a4d872da231a4e7a354b36ea1:log:28', 'hash': '0xd7d4440122ee7311a148ee75303c97bdecd71f0a4d872da231a4e7a354b36ea1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 147.66779699993228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08014d66fe71751f4b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:20:21.000Z'}}, {'blockNum': '0x81eafe', 'uniqueId': '0x49fb682c8d8f24fb94bf5f6546c251fa295dd09aa79e9b860f16472415aee828:log:119', 'hash': '0x49fb682c8d8f24fb94bf5f6546c251fa295dd09aa79e9b860f16472415aee828', 'from': '0xc18166e01970be040d8c7761cdd1c3372ae1edf0', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 284.5828059063387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f6d613a2fff410e1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:24:14.000Z'}}, {'blockNum': '0x81eafe', 'uniqueId': '0x49fb682c8d8f24fb94bf5f6546c251fa295dd09aa79e9b860f16472415aee828:log:123', 'hash': '0x49fb682c8d8f24fb94bf5f6546c251fa295dd09aa79e9b860f16472415aee828', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 284.5828059063387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f6d613a2fff410e1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:24:14.000Z'}}, {'blockNum': '0x81eb12', 'uniqueId': '0xcce66b120e4795548d7a3c8356a6a46a780dab9b007b7531950893456c635df9:log:32', 'hash': '0xcce66b120e4795548d7a3c8356a6a46a780dab9b007b7531950893456c635df9', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 251.4792684694989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0da1f9d6475b92f108', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:29:23.000Z'}}, {'blockNum': '0x81eb12', 'uniqueId': '0xcce66b120e4795548d7a3c8356a6a46a780dab9b007b7531950893456c635df9:log:36', 'hash': '0xcce66b120e4795548d7a3c8356a6a46a780dab9b007b7531950893456c635df9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 251.4792684694989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0da1f9d6475b92f108', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:29:23.000Z'}}, {'blockNum': '0x81eb1b', 'uniqueId': '0x5fdadeba9493cdf89e95f1584b7661a81d6670a694eab84b86e67a74f907fa75:log:98', 'hash': '0x5fdadeba9493cdf89e95f1584b7661a81d6670a694eab84b86e67a74f907fa75', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 638.3456891082857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x229ad37624c14fadf6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:31:59.000Z'}}, {'blockNum': '0x81eb1b', 'uniqueId': '0x5fdadeba9493cdf89e95f1584b7661a81d6670a694eab84b86e67a74f907fa75:log:102', 'hash': '0x5fdadeba9493cdf89e95f1584b7661a81d6670a694eab84b86e67a74f907fa75', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'value': 638.3456891082857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x229ad37624c14fadf6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:31:59.000Z'}}, {'blockNum': '0x81eb28', 'uniqueId': '0x074953c89b8a325bf937191bc924e11d9f4a2c0cb82485df3daf4b36d1d5bbde:log:103', 'hash': '0x074953c89b8a325bf937191bc924e11d9f4a2c0cb82485df3daf4b36d1d5bbde', 'from': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 326.66697627910935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11b56a3c2b87449936', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:35:32.000Z'}}, {'blockNum': '0x81eb28', 'uniqueId': '0x074953c89b8a325bf937191bc924e11d9f4a2c0cb82485df3daf4b36d1d5bbde:log:107', 'hash': '0x074953c89b8a325bf937191bc924e11d9f4a2c0cb82485df3daf4b36d1d5bbde', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 326.66697627910935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11b56a3c2b87449936', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:35:32.000Z'}}, {'blockNum': '0x81eb2f', 'uniqueId': '0x021a4d795f640aaf42f389e4a912fbc0e131c53470bb4609aba91b6e77bf7a25:log:108', 'hash': '0x021a4d795f640aaf42f389e4a912fbc0e131c53470bb4609aba91b6e77bf7a25', 'from': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 488.30219071752725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a788ddf525b424eb0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:37:28.000Z'}}, {'blockNum': '0x81eb2f', 'uniqueId': '0x021a4d795f640aaf42f389e4a912fbc0e131c53470bb4609aba91b6e77bf7a25:log:112', 'hash': '0x021a4d795f640aaf42f389e4a912fbc0e131c53470bb4609aba91b6e77bf7a25', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 488.30219071752725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a788ddf525b424eb0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:37:28.000Z'}}, {'blockNum': '0x81eb2f', 'uniqueId': '0xe133d88cd9fbf8dbe8aa69b8cb38f6ef0c11d4e49e01d566e14666ac4d520ab1:log:133', 'hash': '0xe133d88cd9fbf8dbe8aa69b8cb38f6ef0c11d4e49e01d566e14666ac4d520ab1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 500.4159090923124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b20aa7200997288de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:37:28.000Z'}}, {'blockNum': '0x81eb2f', 'uniqueId': '0xe133d88cd9fbf8dbe8aa69b8cb38f6ef0c11d4e49e01d566e14666ac4d520ab1:log:137', 'hash': '0xe133d88cd9fbf8dbe8aa69b8cb38f6ef0c11d4e49e01d566e14666ac4d520ab1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'value': 500.4159090923124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b20aa7200997288de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:37:28.000Z'}}, {'blockNum': '0x81eb33', 'uniqueId': '0xcea17eb11595f0bcf815035a0e0d34fa5a5411f430a59f27e04d4058402dc2d8:log:51', 'hash': '0xcea17eb11595f0bcf815035a0e0d34fa5a5411f430a59f27e04d4058402dc2d8', 'from': '0xe0569fd1c3f0affd7e08131a16c06f3381c9355a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 497.93545480278516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1afe3e19f7d09573b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:38:18.000Z'}}, {'blockNum': '0x81eb33', 'uniqueId': '0xcea17eb11595f0bcf815035a0e0d34fa5a5411f430a59f27e04d4058402dc2d8:log:55', 'hash': '0xcea17eb11595f0bcf815035a0e0d34fa5a5411f430a59f27e04d4058402dc2d8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 497.93545480278516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1afe3e19f7d09573b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:38:18.000Z'}}, {'blockNum': '0x81eb33', 'uniqueId': '0x112299e8def03932659c266f765262222171f892837f1e0de6ca0c9bd7c0dca5:log:135', 'hash': '0x112299e8def03932659c266f765262222171f892837f1e0de6ca0c9bd7c0dca5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 368.2912419554568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f71155449271c8f4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:38:18.000Z'}}, {'blockNum': '0x81eb33', 'uniqueId': '0x112299e8def03932659c266f765262222171f892837f1e0de6ca0c9bd7c0dca5:log:139', 'hash': '0x112299e8def03932659c266f765262222171f892837f1e0de6ca0c9bd7c0dca5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 368.2912419554568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f71155449271c8f4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:38:18.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x521f012630b7d653ac8d73a2d874d14bedd0c3d16a7629fbd1c0bd3278628132:log:14', 'hash': '0x521f012630b7d653ac8d73a2d874d14bedd0c3d16a7629fbd1c0bd3278628132', 'from': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2172.4042042247193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75c42a21da038cda07', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x521f012630b7d653ac8d73a2d874d14bedd0c3d16a7629fbd1c0bd3278628132:log:18', 'hash': '0x521f012630b7d653ac8d73a2d874d14bedd0c3d16a7629fbd1c0bd3278628132', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2172.4042042247193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75c42a21da038cda07', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x76ea0af7c32514d1337564a4364c553587fcdbb1c4643a6d6fca163f8ef5f107:log:52', 'hash': '0x76ea0af7c32514d1337564a4364c553587fcdbb1c4643a6d6fca163f8ef5f107', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.53803694888538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4f8657b0510d0d3b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x76ea0af7c32514d1337564a4364c553587fcdbb1c4643a6d6fca163f8ef5f107:log:56', 'hash': '0x76ea0af7c32514d1337564a4364c553587fcdbb1c4643a6d6fca163f8ef5f107', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'value': 245.53803694888538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4f8657b0510d0d3b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x08808419cff53ee700d431d510c27c9978673c1639c6bdada656ad3e28801758:log:92', 'hash': '0x08808419cff53ee700d431d510c27c9978673c1639c6bdada656ad3e28801758', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 859.4937236469076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e97df1bdd2bafd7bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x08808419cff53ee700d431d510c27c9978673c1639c6bdada656ad3e28801758:log:96', 'hash': '0x08808419cff53ee700d431d510c27c9978673c1639c6bdada656ad3e28801758', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'value': 859.4937236469076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e97df1bdd2bafd7bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3d', 'uniqueId': '0x20adecbefc0c8cebdbac857dcb06b4f43646a17adaf6a7af677f5b6ec576bdc4:log:108', 'hash': '0x20adecbefc0c8cebdbac857dcb06b4f43646a17adaf6a7af677f5b6ec576bdc4', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 125.26535521166481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06ca67f0e176687247', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:15.000Z'}}, {'blockNum': '0x81eb3d', 'uniqueId': '0x20adecbefc0c8cebdbac857dcb06b4f43646a17adaf6a7af677f5b6ec576bdc4:log:112', 'hash': '0x20adecbefc0c8cebdbac857dcb06b4f43646a17adaf6a7af677f5b6ec576bdc4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 125.26535521166481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06ca67f0e176687247', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:15.000Z'}}, {'blockNum': '0x81eb44', 'uniqueId': '0x3c3aeacb8a83a2fb71d51bb2cd9a94a82f59435f243c859d9051deeaec8018a1:log:94', 'hash': '0x3c3aeacb8a83a2fb71d51bb2cd9a94a82f59435f243c859d9051deeaec8018a1', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 92.04830027251134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04fd6d4167b187cbe5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:42:42.000Z'}}, {'blockNum': '0x81eb44', 'uniqueId': '0x3c3aeacb8a83a2fb71d51bb2cd9a94a82f59435f243c859d9051deeaec8018a1:log:98', 'hash': '0x3c3aeacb8a83a2fb71d51bb2cd9a94a82f59435f243c859d9051deeaec8018a1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 92.04830027251134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04fd6d4167b187cbe5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:42:42.000Z'}}, {'blockNum': '0x81eb9a', 'uniqueId': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17:log:29', 'hash': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.804757917050273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26ec80771ebefc78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:56:58.000Z'}}, {'blockNum': '0x81eb9a', 'uniqueId': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17:log:33', 'hash': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2.804757917050273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26ec80771ebefc78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:56:58.000Z'}}, {'blockNum': '0x81eb9a', 'uniqueId': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17:log:36', 'hash': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2.804757917050273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26ec80771ebefc78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:56:58.000Z'}}, {'blockNum': '0x81eba2', 'uniqueId': '0x3a198d65354f340ad740f1166c1fba9d991041d46266d46430cfbcef085fbfbf:log:29', 'hash': '0x3a198d65354f340ad740f1166c1fba9d991041d46266d46430cfbcef085fbfbf', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 738.6624969450271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x280b005b5eaf670beb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:59:02.000Z'}}, {'blockNum': '0x81eba2', 'uniqueId': '0x3a198d65354f340ad740f1166c1fba9d991041d46266d46430cfbcef085fbfbf:log:33', 'hash': '0x3a198d65354f340ad740f1166c1fba9d991041d46266d46430cfbcef085fbfbf', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 738.6624969450271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x280b005b5eaf670beb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:59:02.000Z'}}, {'blockNum': '0x81ebb0', 'uniqueId': '0xae1ad30328832fe6fb1b2bd3aad8e4e6fbe95cf502da0c3b4b1e05d38209dc35:log:97', 'hash': '0xae1ad30328832fe6fb1b2bd3aad8e4e6fbe95cf502da0c3b4b1e05d38209dc35', 'from': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 996.0203909220442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35fe8f4466c225fca6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:01:49.000Z'}}, {'blockNum': '0x81ebb0', 'uniqueId': '0xae1ad30328832fe6fb1b2bd3aad8e4e6fbe95cf502da0c3b4b1e05d38209dc35:log:101', 'hash': '0xae1ad30328832fe6fb1b2bd3aad8e4e6fbe95cf502da0c3b4b1e05d38209dc35', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 996.0203909220442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35fe8f4466c225fca6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:01:49.000Z'}}, {'blockNum': '0x81ebb4', 'uniqueId': '0xc1284920f3132f797c4cce2eb20a8189b522edea282ce15018bcd3da17fce5a6:log:93', 'hash': '0xc1284920f3132f797c4cce2eb20a8189b522edea282ce15018bcd3da17fce5a6', 'from': '0x73f73391e5f56ce371a61fc3e18200a73d44cf6f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 136.42750988523056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07654fe16aac42e56e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:02:26.000Z'}}, {'blockNum': '0x81ebb4', 'uniqueId': '0xc1284920f3132f797c4cce2eb20a8189b522edea282ce15018bcd3da17fce5a6:log:97', 'hash': '0xc1284920f3132f797c4cce2eb20a8189b522edea282ce15018bcd3da17fce5a6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 136.42750988523056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07654fe16aac42e56e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:02:26.000Z'}}, {'blockNum': '0x81ebb8', 'uniqueId': '0xa68489a04fa4bb9984158c14af78d30df43bdb71135933e800ae70b092f8d788:log:41', 'hash': '0xa68489a04fa4bb9984158c14af78d30df43bdb71135933e800ae70b092f8d788', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.790485370715651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26b9cba8f86e3bbd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:03:20.000Z'}}, {'blockNum': '0x81ebb8', 'uniqueId': '0xa68489a04fa4bb9984158c14af78d30df43bdb71135933e800ae70b092f8d788:log:45', 'hash': '0xa68489a04fa4bb9984158c14af78d30df43bdb71135933e800ae70b092f8d788', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2.790485370715651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26b9cba8f86e3bbd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:03:20.000Z'}}, {'blockNum': '0x81ebbc', 'uniqueId': '0xe85b60aaaa872e2c76badcda6d72bab2b0eaa4f2d54ea85b08c53f66875b7f9a:log:97', 'hash': '0xe85b60aaaa872e2c76badcda6d72bab2b0eaa4f2d54ea85b08c53f66875b7f9a', 'from': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1.3736076293722583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131008dc797ff863', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:05:31.000Z'}}, {'blockNum': '0x81ebbc', 'uniqueId': '0xe85b60aaaa872e2c76badcda6d72bab2b0eaa4f2d54ea85b08c53f66875b7f9a:log:100', 'hash': '0xe85b60aaaa872e2c76badcda6d72bab2b0eaa4f2d54ea85b08c53f66875b7f9a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1.3736076293722583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131008dc797ff863', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:05:31.000Z'}}, {'blockNum': '0x81ebd0', 'uniqueId': '0x021dff79f8c4bece787bb3e6df429565139751ada0d2e258b6614d8ee1c3c243:log:71', 'hash': '0x021dff79f8c4bece787bb3e6df429565139751ada0d2e258b6614d8ee1c3c243', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 99.69631595627632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056790772604f55f86', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:09:29.000Z'}}, {'blockNum': '0x81ebd0', 'uniqueId': '0x021dff79f8c4bece787bb3e6df429565139751ada0d2e258b6614d8ee1c3c243:log:75', 'hash': '0x021dff79f8c4bece787bb3e6df429565139751ada0d2e258b6614d8ee1c3c243', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 99.69631595627632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056790772604f55f86', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:09:29.000Z'}}, {'blockNum': '0x81ebe0', 'uniqueId': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e:log:97', 'hash': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 10.091680102339232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8c0cd995c6cec245', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:13:53.000Z'}}, {'blockNum': '0x81ebe0', 'uniqueId': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e:log:100', 'hash': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 10.091680102339232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8c0cd995c6cec245', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:13:53.000Z'}}, {'blockNum': '0x81ebe0', 'uniqueId': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e:log:103', 'hash': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 10.091680102339232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8c0cd995c6cec245', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:13:53.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0xccc599639966c2df0ce68b9225fe9944946b7704fa7047aa7d87b9fe4327884c:log:76', 'hash': '0xccc599639966c2df0ce68b9225fe9944946b7704fa7047aa7d87b9fe4327884c', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6067.535546795697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0148ebf888a12d085719', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0xccc599639966c2df0ce68b9225fe9944946b7704fa7047aa7d87b9fe4327884c:log:80', 'hash': '0xccc599639966c2df0ce68b9225fe9944946b7704fa7047aa7d87b9fe4327884c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 6067.535546795697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0148ebf888a12d085719', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0x5ddfbfa304e440504f45684953f62f6ceabc3adbd568474136383f4268a32360:log:96', 'hash': '0x5ddfbfa304e440504f45684953f62f6ceabc3adbd568474136383f4268a32360', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6192.1770756091655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014fadb832b4d1781afa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0x5ddfbfa304e440504f45684953f62f6ceabc3adbd568474136383f4268a32360:log:100', 'hash': '0x5ddfbfa304e440504f45684953f62f6ceabc3adbd568474136383f4268a32360', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 6192.1770756091655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014fadb832b4d1781afa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0x99bcd2606a6a0d1cc5de0705ee1dda2b37220571768c7ab1174f4bda86f9e319:log:121', 'hash': '0x99bcd2606a6a0d1cc5de0705ee1dda2b37220571768c7ab1174f4bda86f9e319', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 368.42396666754195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f8e8ddb0b731f6c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0x99bcd2606a6a0d1cc5de0705ee1dda2b37220571768c7ab1174f4bda86f9e319:log:125', 'hash': '0x99bcd2606a6a0d1cc5de0705ee1dda2b37220571768c7ab1174f4bda86f9e319', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 368.42396666754195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f8e8ddb0b731f6c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf8', 'uniqueId': '0xdce08203614ff14f3806deb7199cf80070a7761f4ac2562023ecf0f5f469d81e:log:97', 'hash': '0xdce08203614ff14f3806deb7199cf80070a7761f4ac2562023ecf0f5f469d81e', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 252.271037108751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dacf6c3a9427d3905', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:39.000Z'}}, {'blockNum': '0x81ebf8', 'uniqueId': '0xdce08203614ff14f3806deb7199cf80070a7761f4ac2562023ecf0f5f469d81e:log:101', 'hash': '0xdce08203614ff14f3806deb7199cf80070a7761f4ac2562023ecf0f5f469d81e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 252.271037108751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dacf6c3a9427d3905', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:39.000Z'}}, {'blockNum': '0x81ec27', 'uniqueId': '0xbd42e9c5cad5572e42363cafb1a45f7efd8af64f52d3b4785b9eee02cf2cd2e9:log:71', 'hash': '0xbd42e9c5cad5572e42363cafb1a45f7efd8af64f52d3b4785b9eee02cf2cd2e9', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 527.8889070629579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c9dee241934cbc149', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:16.000Z'}}, {'blockNum': '0x81ec27', 'uniqueId': '0xbd42e9c5cad5572e42363cafb1a45f7efd8af64f52d3b4785b9eee02cf2cd2e9:log:75', 'hash': '0xbd42e9c5cad5572e42363cafb1a45f7efd8af64f52d3b4785b9eee02cf2cd2e9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 527.8889070629579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c9dee241934cbc149', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:16.000Z'}}, {'blockNum': '0x81ec2b', 'uniqueId': '0xac1f4604860326a7109d62b704a83e23ba2528e8a005161ea8bc2e87d7c021fe:log:70', 'hash': '0xac1f4604860326a7109d62b704a83e23ba2528e8a005161ea8bc2e87d7c021fe', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 294.09339163776656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff15d9d855ee93b2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:45.000Z'}}, {'blockNum': '0x81ec2b', 'uniqueId': '0xac1f4604860326a7109d62b704a83e23ba2528e8a005161ea8bc2e87d7c021fe:log:74', 'hash': '0xac1f4604860326a7109d62b704a83e23ba2528e8a005161ea8bc2e87d7c021fe', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 294.09339163776656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff15d9d855ee93b2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:45.000Z'}}, {'blockNum': '0x81ec2b', 'uniqueId': '0x985aeb61e390a077bd530379a1991bc8c6ef64a05ed1afe99a377ea080e135ca:log:102', 'hash': '0x985aeb61e390a077bd530379a1991bc8c6ef64a05ed1afe99a377ea080e135ca', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 122.82129148889216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06a87ce1dfc22003e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:45.000Z'}}, {'blockNum': '0x81ec2b', 'uniqueId': '0x985aeb61e390a077bd530379a1991bc8c6ef64a05ed1afe99a377ea080e135ca:log:106', 'hash': '0x985aeb61e390a077bd530379a1991bc8c6ef64a05ed1afe99a377ea080e135ca', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 122.82129148889216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06a87ce1dfc22003e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:45.000Z'}}, {'blockNum': '0x81ec7b', 'uniqueId': '0x43c2308d999c9e430f15800d1b7f6aa23fc41339cfc47285939123e6aab84ee3:log:3', 'hash': '0x43c2308d999c9e430f15800d1b7f6aa23fc41339cfc47285939123e6aab84ee3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 1022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x376719613641380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:43:35.000Z'}}, {'blockNum': '0x81ec7d', 'uniqueId': '0xa9072884e8c338b454ffee414a1349bef16b2b437672b6ce25e60b6ae45840e9:log:29', 'hash': '0xa9072884e8c338b454ffee414a1349bef16b2b437672b6ce25e60b6ae45840e9', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x376719613641380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:44:01.000Z'}}, {'blockNum': '0x81ec7d', 'uniqueId': '0xa9072884e8c338b454ffee414a1349bef16b2b437672b6ce25e60b6ae45840e9:log:32', 'hash': '0xa9072884e8c338b454ffee414a1349bef16b2b437672b6ce25e60b6ae45840e9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 1022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x376719613641380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:44:01.000Z'}}, {'blockNum': '0x81ec83', 'uniqueId': '0xcf330efe2d1f3790033f203932a3f385b458506d97c7d9179d7103cd75c4b7b5:log:94', 'hash': '0xcf330efe2d1f3790033f203932a3f385b458506d97c7d9179d7103cd75c4b7b5', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 579.0628002644288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f641c54d5943fc5ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:45:54.000Z'}}, {'blockNum': '0x81ec83', 'uniqueId': '0xcf330efe2d1f3790033f203932a3f385b458506d97c7d9179d7103cd75c4b7b5:log:98', 'hash': '0xcf330efe2d1f3790033f203932a3f385b458506d97c7d9179d7103cd75c4b7b5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 579.0628002644288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f641c54d5943fc5ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:45:54.000Z'}}, {'blockNum': '0x81ec85', 'uniqueId': '0xbc50fb0a63a09cc0b63b332d0140a9cfefa16c573efc05fcdbad9bdc42964c67:log:33', 'hash': '0xbc50fb0a63a09cc0b63b332d0140a9cfefa16c573efc05fcdbad9bdc42964c67', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 528.0091730043429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c9f996955bfa09c02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:46:14.000Z'}}, {'blockNum': '0x81ec85', 'uniqueId': '0xbc50fb0a63a09cc0b63b332d0140a9cfefa16c573efc05fcdbad9bdc42964c67:log:37', 'hash': '0xbc50fb0a63a09cc0b63b332d0140a9cfefa16c573efc05fcdbad9bdc42964c67', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 528.0091730043429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c9f996955bfa09c02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:46:14.000Z'}}, {'blockNum': '0x81ec8b', 'uniqueId': '0x63318a85d6bf2692778b4d5a567e206186cb42ae23a166697dca6f986f2c1fdb:log:30', 'hash': '0x63318a85d6bf2692778b4d5a567e206186cb42ae23a166697dca6f986f2c1fdb', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 748.523561751946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2893d9e590cae833d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:47:41.000Z'}}, {'blockNum': '0x81ec8b', 'uniqueId': '0x63318a85d6bf2692778b4d5a567e206186cb42ae23a166697dca6f986f2c1fdb:log:34', 'hash': '0x63318a85d6bf2692778b4d5a567e206186cb42ae23a166697dca6f986f2c1fdb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 748.523561751946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2893d9e590cae833d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:47:41.000Z'}}, {'blockNum': '0x81ec9e', 'uniqueId': '0x0f9fea9b3134bae4eee72d79cf86fa0a90a5bb1a2d2a6d92e81f8fa535538c68:log:43', 'hash': '0x0f9fea9b3134bae4eee72d79cf86fa0a90a5bb1a2d2a6d92e81f8fa535538c68', 'from': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3735.9257159445733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xca866264de6b309b42', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:54:13.000Z'}}, {'blockNum': '0x81ec9e', 'uniqueId': '0x0f9fea9b3134bae4eee72d79cf86fa0a90a5bb1a2d2a6d92e81f8fa535538c68:log:47', 'hash': '0x0f9fea9b3134bae4eee72d79cf86fa0a90a5bb1a2d2a6d92e81f8fa535538c68', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3735.9257159445733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xca866264de6b309b42', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:54:13.000Z'}}, {'blockNum': '0x81eca8', 'uniqueId': '0xd324f1733a4ca78eeb78eb1b1c86a0577dc86eed5322f02cd176dbd3ab5039b3:log:12', 'hash': '0xd324f1733a4ca78eeb78eb1b1c86a0577dc86eed5322f02cd176dbd3ab5039b3', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 405.447106265603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15fab57aff6b525186', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:52.000Z'}}, {'blockNum': '0x81eca8', 'uniqueId': '0xd324f1733a4ca78eeb78eb1b1c86a0577dc86eed5322f02cd176dbd3ab5039b3:log:16', 'hash': '0xd324f1733a4ca78eeb78eb1b1c86a0577dc86eed5322f02cd176dbd3ab5039b3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 405.447106265603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15fab57aff6b525186', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:52.000Z'}}, {'blockNum': '0x81eca9', 'uniqueId': '0x64ace93c8d80060f0e9d69483c912c7c9d881fb20e6cb611e6d286a041bf050d:log:26', 'hash': '0x64ace93c8d80060f0e9d69483c912c7c9d881fb20e6cb611e6d286a041bf050d', 'from': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 938.2073340968713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32dc3e07868e3e185e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:57.000Z'}}, {'blockNum': '0x81eca9', 'uniqueId': '0x64ace93c8d80060f0e9d69483c912c7c9d881fb20e6cb611e6d286a041bf050d:log:30', 'hash': '0x64ace93c8d80060f0e9d69483c912c7c9d881fb20e6cb611e6d286a041bf050d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 938.2073340968713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32dc3e07868e3e185e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:57.000Z'}}, {'blockNum': '0x81eca9', 'uniqueId': '0x5e3dd9c64182bd346e9a4e79274b12a51387a2e48407eb74bbeedc04227084b2:log:42', 'hash': '0x5e3dd9c64182bd346e9a4e79274b12a51387a2e48407eb74bbeedc04227084b2', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 956.370508616555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33d84e9684c56b2fe6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:57.000Z'}}, {'blockNum': '0x81eca9', 'uniqueId': '0x5e3dd9c64182bd346e9a4e79274b12a51387a2e48407eb74bbeedc04227084b2:log:46', 'hash': '0x5e3dd9c64182bd346e9a4e79274b12a51387a2e48407eb74bbeedc04227084b2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 956.370508616555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33d84e9684c56b2fe6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:57.000Z'}}, {'blockNum': '0x81ecaa', 'uniqueId': '0xe432f2dca4ca8476c411cc63e2c93d11b2d0cdbda43057571c1aaed5427b9c90:log:51', 'hash': '0xe432f2dca4ca8476c411cc63e2c93d11b2d0cdbda43057571c1aaed5427b9c90', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.0759866941578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aaced16c49d1e6809', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:57:18.000Z'}}, {'blockNum': '0x81ecaa', 'uniqueId': '0xe432f2dca4ca8476c411cc63e2c93d11b2d0cdbda43057571c1aaed5427b9c90:log:55', 'hash': '0xe432f2dca4ca8476c411cc63e2c93d11b2d0cdbda43057571c1aaed5427b9c90', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 492.0759866941578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aaced16c49d1e6809', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:57:18.000Z'}}, {'blockNum': '0x81ecb1', 'uniqueId': '0xf7b25cc3c9178ce91cc54b7d7678a84c448525cbd87b40f6e5b6feb161d51f27:log:55', 'hash': '0xf7b25cc3c9178ce91cc54b7d7678a84c448525cbd87b40f6e5b6feb161d51f27', 'from': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 927.0574605108661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x324181b892dde678ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:59:20.000Z'}}, {'blockNum': '0x81ecb1', 'uniqueId': '0xf7b25cc3c9178ce91cc54b7d7678a84c448525cbd87b40f6e5b6feb161d51f27:log:59', 'hash': '0xf7b25cc3c9178ce91cc54b7d7678a84c448525cbd87b40f6e5b6feb161d51f27', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 927.0574605108661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x324181b892dde678ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:59:20.000Z'}}, {'blockNum': '0x81ecc2', 'uniqueId': '0xe99734b70c03797950ad38da6324b848337a8765c99715cba5b3f3444a1275da:log:17', 'hash': '0xe99734b70c03797950ad38da6324b848337a8765c99715cba5b3f3444a1275da', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 5032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0110c9073b5245a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:04:42.000Z'}}, {'blockNum': '0x81ecc2', 'uniqueId': '0x05e89167a888f76c4cffc3c021b9fcf22e9c7bf5b81477fc27b31d700b95c6a3:log:18', 'hash': '0x05e89167a888f76c4cffc3c021b9fcf22e9c7bf5b81477fc27b31d700b95c6a3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xacda8e694f34fbc2e60465a0d1a034e6c3dcfa3d', 'value': 3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29a2241af62c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:04:42.000Z'}}, {'blockNum': '0x81ecc6', 'uniqueId': '0xcea28e576ff9c7d53fe99bf21a05776d08acb6ac0695e80902169024176216c6:log:18', 'hash': '0xcea28e576ff9c7d53fe99bf21a05776d08acb6ac0695e80902169024176216c6', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0110c9073b5245a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:04:59.000Z'}}, {'blockNum': '0x81ecc6', 'uniqueId': '0xcea28e576ff9c7d53fe99bf21a05776d08acb6ac0695e80902169024176216c6:log:21', 'hash': '0xcea28e576ff9c7d53fe99bf21a05776d08acb6ac0695e80902169024176216c6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 5032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0110c9073b5245a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:04:59.000Z'}}, {'blockNum': '0x81eccf', 'uniqueId': '0xc1f9d5c79888f1e17ea842605a1f6fd0ae53c169252133ab70cadd6da8660ed8:log:124', 'hash': '0xc1f9d5c79888f1e17ea842605a1f6fd0ae53c169252133ab70cadd6da8660ed8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9831.270473938357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0214f44917be5a0bf12e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:06:41.000Z'}}, {'blockNum': '0x81eccf', 'uniqueId': '0xc1f9d5c79888f1e17ea842605a1f6fd0ae53c169252133ab70cadd6da8660ed8:log:127', 'hash': '0xc1f9d5c79888f1e17ea842605a1f6fd0ae53c169252133ab70cadd6da8660ed8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 9831.270473938357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0214f44917be5a0bf12e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:06:41.000Z'}}, {'blockNum': '0x81ecd3', 'uniqueId': '0xf34d4df166c2a2dde63cc11cae94f24278f7d85f0dd3a7a6693dca017c08c8ed:log:152', 'hash': '0xf34d4df166c2a2dde63cc11cae94f24278f7d85f0dd3a7a6693dca017c08c8ed', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:09:30.000Z'}}, {'blockNum': '0x81ecd4', 'uniqueId': '0xc6fd3b15904009fffbdf507a6612f44715ca36ef032d92a9783dfbce329b885c:log:14', 'hash': '0xc6fd3b15904009fffbdf507a6612f44715ca36ef032d92a9783dfbce329b885c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xacda8e694f34fbc2e60465a0d1a034e6c3dcfa3d', 'value': 315.675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x111cdee3fb6f6f8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:09:34.000Z'}}, {'blockNum': '0x81ecd5', 'uniqueId': '0x0ea2862f3cd34469b2d6cd84d992aa33b4a48e18ee46520297f09f4cb1c37a06:log:130', 'hash': '0x0ea2862f3cd34469b2d6cd84d992aa33b4a48e18ee46520297f09f4cb1c37a06', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 936.7063226123735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32c7695d887cf7fd08', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:10:24.000Z'}}, {'blockNum': '0x81ecd5', 'uniqueId': '0x0ea2862f3cd34469b2d6cd84d992aa33b4a48e18ee46520297f09f4cb1c37a06:log:134', 'hash': '0x0ea2862f3cd34469b2d6cd84d992aa33b4a48e18ee46520297f09f4cb1c37a06', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 936.7063226123735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32c7695d887cf7fd08', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:10:24.000Z'}}, {'blockNum': '0x81ecda', 'uniqueId': '0xbab230f645d1ce6c30243c960e0771a142a02aa8cb7576124f14705e59fae5a9:log:59', 'hash': '0xbab230f645d1ce6c30243c960e0771a142a02aa8cb7576124f14705e59fae5a9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.9264233728927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f2e895a774636834', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:10:56.000Z'}}, {'blockNum': '0x81ecda', 'uniqueId': '0xbab230f645d1ce6c30243c960e0771a142a02aa8cb7576124f14705e59fae5a9:log:63', 'hash': '0xbab230f645d1ce6c30243c960e0771a142a02aa8cb7576124f14705e59fae5a9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 736.9264233728927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f2e895a774636834', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:10:56.000Z'}}, {'blockNum': '0x81ecf0', 'uniqueId': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d:log:128', 'hash': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d', 'from': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 974.1222850989373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34cea9912d29f2f7a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:15:47.000Z'}}, {'blockNum': '0x81ecf0', 'uniqueId': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d:log:132', 'hash': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 974.1222850989373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34cea9912d29f2f7a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:15:47.000Z'}}, {'blockNum': '0x81ecf0', 'uniqueId': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d:log:135', 'hash': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 974.1222850989373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34cea9912d29f2f7a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:15:47.000Z'}}, {'blockNum': '0x81ecf2', 'uniqueId': '0x7c7e139c0a3f930b4b9111be4baccc2d3b3baad92ea59bff2915f0c5192993b1:log:20', 'hash': '0x7c7e139c0a3f930b4b9111be4baccc2d3b3baad92ea59bff2915f0c5192993b1', 'from': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 391.0596300054491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15330ae591367bbf51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:15:57.000Z'}}, {'blockNum': '0x81ecf2', 'uniqueId': '0x7c7e139c0a3f930b4b9111be4baccc2d3b3baad92ea59bff2915f0c5192993b1:log:24', 'hash': '0x7c7e139c0a3f930b4b9111be4baccc2d3b3baad92ea59bff2915f0c5192993b1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 391.0596300054491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15330ae591367bbf51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:15:57.000Z'}}, {'blockNum': '0x81ecf5', 'uniqueId': '0x8ea02991dfe276d302fa72a6fc9b9779aa5c52ece786eb06c5c9da0b1b35d26a:log:33', 'hash': '0x8ea02991dfe276d302fa72a6fc9b9779aa5c52ece786eb06c5c9da0b1b35d26a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9819.410416193594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02144fb1b40fddd13da0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:17:10.000Z'}}, {'blockNum': '0x81ecf5', 'uniqueId': '0x8ea02991dfe276d302fa72a6fc9b9779aa5c52ece786eb06c5c9da0b1b35d26a:log:36', 'hash': '0x8ea02991dfe276d302fa72a6fc9b9779aa5c52ece786eb06c5c9da0b1b35d26a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 9819.410416193594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02144fb1b40fddd13da0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:17:10.000Z'}}, {'blockNum': '0x81ecf5', 'uniqueId': '0x097a3cf027b8f51be771c4ad85ce7883a6c85d2bdd9a9e46b484dcbb35dabfea:log:63', 'hash': '0x097a3cf027b8f51be771c4ad85ce7883a6c85d2bdd9a9e46b484dcbb35dabfea', 'from': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 737.691549957765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27fd86dc3aafe879c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:17:10.000Z'}}, {'blockNum': '0x81ecf5', 'uniqueId': '0x097a3cf027b8f51be771c4ad85ce7883a6c85d2bdd9a9e46b484dcbb35dabfea:log:67', 'hash': '0x097a3cf027b8f51be771c4ad85ce7883a6c85d2bdd9a9e46b484dcbb35dabfea', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 737.691549957765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27fd86dc3aafe879c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:17:10.000Z'}}, {'blockNum': '0x81ecfa', 'uniqueId': '0x99e64a271a19eb54786745029000746c35405090a580da5d7e45e695d0e78185:log:80', 'hash': '0x99e64a271a19eb54786745029000746c35405090a580da5d7e45e695d0e78185', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0xa6822f11ea34866349e230a898ea2b340b083072', 'value': 5.035668127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e2497b3c977600', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:18:25.000Z'}}, {'blockNum': '0x81ecfb', 'uniqueId': '0x855feb7bc30a31c9812209adce2e2567cbeb41051ced8b807edbe561050d076f:log:46', 'hash': '0x855feb7bc30a31c9812209adce2e2567cbeb41051ced8b807edbe561050d076f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 477.92969873955326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19e89b60d2d4879687', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:18:27.000Z'}}, {'blockNum': '0x81ecfb', 'uniqueId': '0x855feb7bc30a31c9812209adce2e2567cbeb41051ced8b807edbe561050d076f:log:50', 'hash': '0x855feb7bc30a31c9812209adce2e2567cbeb41051ced8b807edbe561050d076f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 477.92969873955326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19e89b60d2d4879687', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:18:27.000Z'}}, {'blockNum': '0x81ecfc', 'uniqueId': '0x12fafb06540ffd40769cc20d95a0c8e163f805f8f842479203b007f9d6ed885c:log:24', 'hash': '0x12fafb06540ffd40769cc20d95a0c8e163f805f8f842479203b007f9d6ed885c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 2821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x98ed3d49b390f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:18:55.000Z'}}, {'blockNum': '0x81ed01', 'uniqueId': '0xde781dd7390288f47071872a82da8cb335d1c53508e60ac5272279398ecf40ff:log:40', 'hash': '0xde781dd7390288f47071872a82da8cb335d1c53508e60ac5272279398ecf40ff', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x98ed3d49b390f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:20:06.000Z'}}, {'blockNum': '0x81ed01', 'uniqueId': '0xde781dd7390288f47071872a82da8cb335d1c53508e60ac5272279398ecf40ff:log:43', 'hash': '0xde781dd7390288f47071872a82da8cb335d1c53508e60ac5272279398ecf40ff', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x98ed3d49b390f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:20:06.000Z'}}, {'blockNum': '0x81ed03', 'uniqueId': '0x5ef8864dbbc3ba5b7f9b49323e5692bf0ccb1c3df2fb5377e065dcf71fbdbc02:log:35', 'hash': '0x5ef8864dbbc3ba5b7f9b49323e5692bf0ccb1c3df2fb5377e065dcf71fbdbc02', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 982.5916471793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x354432c91dac21d100', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:20:28.000Z'}}, {'blockNum': '0x81ed09', 'uniqueId': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532:log:112', 'hash': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532', 'from': '0xa6822f11ea34866349e230a898ea2b340b083072', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.035668127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e2497b3c977600', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:22:27.000Z'}}, {'blockNum': '0x81ed09', 'uniqueId': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532:log:115', 'hash': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5.035668127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e2497b3c977600', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:22:27.000Z'}}, {'blockNum': '0x81ed09', 'uniqueId': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532:log:116', 'hash': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.035668127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e2497b3c977600', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:22:27.000Z'}}, {'blockNum': '0x81ed15', 'uniqueId': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389:log:140', 'hash': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 982.5916471793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x354432c91dac21d100', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:24:58.000Z'}}, {'blockNum': '0x81ed15', 'uniqueId': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389:log:143', 'hash': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 982.5916471793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x354432c91dac21d100', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:24:58.000Z'}}, {'blockNum': '0x81ed15', 'uniqueId': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389:log:144', 'hash': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 982.5916471793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x354432c91dac21d100', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:24:58.000Z'}}, {'blockNum': '0x81ed1d', 'uniqueId': '0x61a140d6168ecc78a499b92c779180beccd3b8fa870f719b69a81e64b47f8072:log:138', 'hash': '0x61a140d6168ecc78a499b92c779180beccd3b8fa870f719b69a81e64b47f8072', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1636.6685539865766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x58b956c268be22b8d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:26:29.000Z'}}, {'blockNum': '0x81ed1d', 'uniqueId': '0x61a140d6168ecc78a499b92c779180beccd3b8fa870f719b69a81e64b47f8072:log:142', 'hash': '0x61a140d6168ecc78a499b92c779180beccd3b8fa870f719b69a81e64b47f8072', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1636.6685539865766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x58b956c268be22b8d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:26:29.000Z'}}, {'blockNum': '0x81ed22', 'uniqueId': '0xb619b6ad98318b96735148f285ed4dce5a88700ab3c57d541a7640d4ca2330eb:log:56', 'hash': '0xb619b6ad98318b96735148f285ed4dce5a88700ab3c57d541a7640d4ca2330eb', 'from': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 32.88291783211047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01c857978c114d81fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:10.000Z'}}, {'blockNum': '0x81ed22', 'uniqueId': '0xb619b6ad98318b96735148f285ed4dce5a88700ab3c57d541a7640d4ca2330eb:log:60', 'hash': '0xb619b6ad98318b96735148f285ed4dce5a88700ab3c57d541a7640d4ca2330eb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 32.88291783211047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01c857978c114d81fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:10.000Z'}}, {'blockNum': '0x81ed22', 'uniqueId': '0x1fc889360e5fbbbbb7ff5150906c23e510233cc7f9fe8baaa2999fd19bcc08f7:log:79', 'hash': '0x1fc889360e5fbbbbb7ff5150906c23e510233cc7f9fe8baaa2999fd19bcc08f7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 14711.129415829846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031d7deeb4cb09c08a43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:10.000Z'}}, {'blockNum': '0x81ed22', 'uniqueId': '0x1fc889360e5fbbbbb7ff5150906c23e510233cc7f9fe8baaa2999fd19bcc08f7:log:82', 'hash': '0x1fc889360e5fbbbbb7ff5150906c23e510233cc7f9fe8baaa2999fd19bcc08f7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 14711.129415829846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031d7deeb4cb09c08a43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:10.000Z'}}, {'blockNum': '0x81ed24', 'uniqueId': '0x21eac4da9785e3bba85b9ea1345465de449b257e3ecf4b6f2adc5ae8b4725734:log:81', 'hash': '0x21eac4da9785e3bba85b9ea1345465de449b257e3ecf4b6f2adc5ae8b4725734', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1449.5647854674376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4e94c0a4425dedede3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:20.000Z'}}, {'blockNum': '0x81ed24', 'uniqueId': '0x21eac4da9785e3bba85b9ea1345465de449b257e3ecf4b6f2adc5ae8b4725734:log:85', 'hash': '0x21eac4da9785e3bba85b9ea1345465de449b257e3ecf4b6f2adc5ae8b4725734', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1449.5647854674376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4e94c0a4425dedede3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:20.000Z'}}, {'blockNum': '0x81ed26', 'uniqueId': '0x2364565b952c7e79a05a2b2e69eea3b200b5301cb2b88e2c51f7d8a81c4292e6:log:42', 'hash': '0x2364565b952c7e79a05a2b2e69eea3b200b5301cb2b88e2c51f7d8a81c4292e6', 'from': '0x7f913e9deef8efe8d09a2e67d18ced9be4ad1dc7', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 348.58868193529906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12e5a3c7517320ada1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:26.000Z'}}, {'blockNum': '0x81ed26', 'uniqueId': '0x2364565b952c7e79a05a2b2e69eea3b200b5301cb2b88e2c51f7d8a81c4292e6:log:46', 'hash': '0x2364565b952c7e79a05a2b2e69eea3b200b5301cb2b88e2c51f7d8a81c4292e6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 348.58868193529906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12e5a3c7517320ada1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:26.000Z'}}, {'blockNum': '0x81ed27', 'uniqueId': '0xa0868c03024da1eea97059aa303489eacad59b3ba6f4e8ec8a59cbcde655e4d5:log:64', 'hash': '0xa0868c03024da1eea97059aa303489eacad59b3ba6f4e8ec8a59cbcde655e4d5', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 0.03175409283572924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x70d02ddfa36f59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:29.000Z'}}, {'blockNum': '0x81ed27', 'uniqueId': '0xa0868c03024da1eea97059aa303489eacad59b3ba6f4e8ec8a59cbcde655e4d5:log:68', 'hash': '0xa0868c03024da1eea97059aa303489eacad59b3ba6f4e8ec8a59cbcde655e4d5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 0.03175409283572924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x70d02ddfa36f59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:29.000Z'}}, {'blockNum': '0x81ed2e', 'uniqueId': '0xbbe7971e732f10fdda4dbd4ed8b6c73dc17787311c3f97eb6ed760eeb79cbeb5:log:82', 'hash': '0xbbe7971e732f10fdda4dbd4ed8b6c73dc17787311c3f97eb6ed760eeb79cbeb5', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 183.47907249292675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09f2489c518b0b0cda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:28:41.000Z'}}, {'blockNum': '0x81ed2e', 'uniqueId': '0xbbe7971e732f10fdda4dbd4ed8b6c73dc17787311c3f97eb6ed760eeb79cbeb5:log:86', 'hash': '0xbbe7971e732f10fdda4dbd4ed8b6c73dc17787311c3f97eb6ed760eeb79cbeb5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 183.47907249292675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09f2489c518b0b0cda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:28:41.000Z'}}, {'blockNum': '0x81ed2f', 'uniqueId': '0xd946c8a9cb6138f41cfc4710ea7812ec3787a74770c916ed6697c6925477191b:log:12', 'hash': '0xd946c8a9cb6138f41cfc4710ea7812ec3787a74770c916ed6697c6925477191b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0111a712a68cbbe00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:28:49.000Z'}}, {'blockNum': '0x81ed30', 'uniqueId': '0xc67de2f1b14af021d381f7fe8ad677e5925a4ec45565da9c821ee54d9d3f14bf:log:25', 'hash': '0xc67de2f1b14af021d381f7fe8ad677e5925a4ec45565da9c821ee54d9d3f14bf', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0111a712a68cbbe00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:29:13.000Z'}}, {'blockNum': '0x81ed30', 'uniqueId': '0xc67de2f1b14af021d381f7fe8ad677e5925a4ec45565da9c821ee54d9d3f14bf:log:28', 'hash': '0xc67de2f1b14af021d381f7fe8ad677e5925a4ec45565da9c821ee54d9d3f14bf', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0111a712a68cbbe00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:29:13.000Z'}}, {'blockNum': '0x81ed30', 'uniqueId': '0xd6ce22660a2be635becb199db5ae2a809c5fa8a1e4d73077fad7009b299e4e1b:log:107', 'hash': '0xd6ce22660a2be635becb199db5ae2a809c5fa8a1e4d73077fad7009b299e4e1b', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 497.223298976447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af45c040462f8ea1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:29:13.000Z'}}, {'blockNum': '0x81ed30', 'uniqueId': '0xd6ce22660a2be635becb199db5ae2a809c5fa8a1e4d73077fad7009b299e4e1b:log:111', 'hash': '0xd6ce22660a2be635becb199db5ae2a809c5fa8a1e4d73077fad7009b299e4e1b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 497.223298976447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af45c040462f8ea1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:29:13.000Z'}}, {'blockNum': '0x81ed33', 'uniqueId': '0xac4a27dc420cba3cb7c9283c4e4755a9c86fef59a614fd6246e7132c4f25111e:log:30', 'hash': '0xac4a27dc420cba3cb7c9283c4e4755a9c86fef59a614fd6246e7132c4f25111e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 735.0526437332921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27d8e794ffe6a34d1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:30:16.000Z'}}, {'blockNum': '0x81ed33', 'uniqueId': '0xac4a27dc420cba3cb7c9283c4e4755a9c86fef59a614fd6246e7132c4f25111e:log:34', 'hash': '0xac4a27dc420cba3cb7c9283c4e4755a9c86fef59a614fd6246e7132c4f25111e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 735.0526437332921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27d8e794ffe6a34d1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:30:16.000Z'}}, {'blockNum': '0x81ed33', 'uniqueId': '0x9878de19941701cc609a8c696751f71ee92d1e558e3ef3ffd32384fd2f78ea9c:log:63', 'hash': '0x9878de19941701cc609a8c696751f71ee92d1e558e3ef3ffd32384fd2f78ea9c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 440.99769787922304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17e8128db7181f9659', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:30:16.000Z'}}, {'blockNum': '0x81ed33', 'uniqueId': '0x9878de19941701cc609a8c696751f71ee92d1e558e3ef3ffd32384fd2f78ea9c:log:67', 'hash': '0x9878de19941701cc609a8c696751f71ee92d1e558e3ef3ffd32384fd2f78ea9c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 440.99769787922304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17e8128db7181f9659', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:30:16.000Z'}}, {'blockNum': '0x81ed55', 'uniqueId': '0xc831303571c985d18f967fa05cfd1c23b53be539b428de3fff39f75543bb9213:log:52', 'hash': '0xc831303571c985d18f967fa05cfd1c23b53be539b428de3fff39f75543bb9213', 'from': '0xdfee8dc240c6cadc2c7f7f9c257c259914dea84e', 'to': '0xfee4ae2adfc648afde92a4087fd7b7c6980149ba', 'value': 13503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02dbffc4ce0a339c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:36:29.000Z'}}, {'blockNum': '0x81ed56', 'uniqueId': '0x5ae0c2fbb25dc75c76a00b8d6267a52eb2d08f5818451286710d9d2a3b42f4f4:log:43', 'hash': '0x5ae0c2fbb25dc75c76a00b8d6267a52eb2d08f5818451286710d9d2a3b42f4f4', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0xa6822f11ea34866349e230a898ea2b340b083072', 'value': 1.0000000314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6baf6f9fa00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:37:09.000Z'}}, {'blockNum': '0x81ed97', 'uniqueId': '0x38d02a72c05a048cd25a72434fa1cd119c4dcd8866ce1dd88205214d83efc47f:log:80', 'hash': '0x38d02a72c05a048cd25a72434fa1cd119c4dcd8866ce1dd88205214d83efc47f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea0000d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:52:44.000Z'}}, {'blockNum': '0x81ed97', 'uniqueId': '0x38d02a72c05a048cd25a72434fa1cd119c4dcd8866ce1dd88205214d83efc47f:log:83', 'hash': '0x38d02a72c05a048cd25a72434fa1cd119c4dcd8866ce1dd88205214d83efc47f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea0000d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:52:44.000Z'}}, {'blockNum': '0x81ed9c', 'uniqueId': '0x729d6ebc68ec8da48e00652800b9431f59b6abf2884f096ab658aee36add5724:log:2', 'hash': '0x729d6ebc68ec8da48e00652800b9431f59b6abf2884f096ab658aee36add5724', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 2557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8a9d80e06ef1d40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:53:26.000Z'}}, {'blockNum': '0x81ed9e', 'uniqueId': '0x4d1074d777aa892fd5e6ac93b19b0ac0f679f4de1bf5433c7455ec12fe612224:log:69', 'hash': '0x4d1074d777aa892fd5e6ac93b19b0ac0f679f4de1bf5433c7455ec12fe612224', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8a9d80e06ef1d40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:54:03.000Z'}}, {'blockNum': '0x81ed9e', 'uniqueId': '0x4d1074d777aa892fd5e6ac93b19b0ac0f679f4de1bf5433c7455ec12fe612224:log:72', 'hash': '0x4d1074d777aa892fd5e6ac93b19b0ac0f679f4de1bf5433c7455ec12fe612224', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8a9d80e06ef1d40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:54:03.000Z'}}, {'blockNum': '0x81eda2', 'uniqueId': '0x3a7e09cea9ebc23facf2084a55c41a839a2d8287802e81b3f0cb9e4f2528b541:log:5', 'hash': '0x3a7e09cea9ebc23facf2084a55c41a839a2d8287802e81b3f0cb9e4f2528b541', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x9b3d736cd160db8be8856e39f68fd0feaf1bde66', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:54:39.000Z'}}, {'blockNum': '0x81edaa', 'uniqueId': '0x99e73e760849a3257e56eef4da31d44f31d73ebc0045687ef1e4ac5ff339e19f:log:25', 'hash': '0x99e73e760849a3257e56eef4da31d44f31d73ebc0045687ef1e4ac5ff339e19f', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x9b3d736cd160db8be8856e39f68fd0feaf1bde66', 'value': 4250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe664992288f2280000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:56:17.000Z'}}, {'blockNum': '0x81edb2', 'uniqueId': '0x03d683c0fa47163a0601825d516d50920353a3cc640b099c15265344ef757141:log:45', 'hash': '0x03d683c0fa47163a0601825d516d50920353a3cc640b099c15265344ef757141', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 947.3828872761264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x335b9424872973e431', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:06.000Z'}}, {'blockNum': '0x81edb2', 'uniqueId': '0x03d683c0fa47163a0601825d516d50920353a3cc640b099c15265344ef757141:log:49', 'hash': '0x03d683c0fa47163a0601825d516d50920353a3cc640b099c15265344ef757141', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 947.3828872761264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x335b9424872973e431', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:06.000Z'}}, {'blockNum': '0x81edb6', 'uniqueId': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0:log:82', 'hash': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0', 'from': '0xa6822f11ea34866349e230a898ea2b340b083072', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1.0000000314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6baf6f9fa00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:23.000Z'}}, {'blockNum': '0x81edb6', 'uniqueId': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0:log:85', 'hash': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1.0000000314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6baf6f9fa00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:23.000Z'}}, {'blockNum': '0x81edb6', 'uniqueId': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0:log:87', 'hash': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 1.0000000314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6baf6f9fa00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:23.000Z'}}, {'blockNum': '0x81edb7', 'uniqueId': '0x5f0723a22d4f1df3555ee5f86f66a54eb908bdcfef19ab6f1a5ea9075b278669:log:26', 'hash': '0x5f0723a22d4f1df3555ee5f86f66a54eb908bdcfef19ab6f1a5ea9075b278669', 'from': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f4b192ebd64f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:59.000Z'}}, {'blockNum': '0x81edb7', 'uniqueId': '0x5f0723a22d4f1df3555ee5f86f66a54eb908bdcfef19ab6f1a5ea9075b278669:log:29', 'hash': '0x5f0723a22d4f1df3555ee5f86f66a54eb908bdcfef19ab6f1a5ea9075b278669', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f4b192ebd64f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:59.000Z'}}, {'blockNum': '0x81edbf', 'uniqueId': '0x22f1e1e9cd70ae0f9bb026b1d66a61c9bb73154cbc6bba96276f0a1e04f6b20f:log:6', 'hash': '0x22f1e1e9cd70ae0f9bb026b1d66a61c9bb73154cbc6bba96276f0a1e04f6b20f', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x004cb6d46df49972ef099a578c1a8533564ed30e', 'value': 67.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a8c02c5ea2de0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:00:16.000Z'}}, {'blockNum': '0x81edc4', 'uniqueId': '0xb7714a52845107ebd83381cac3b5233c88fc6a24ecd85b8166fe1b500abaca40:log:33', 'hash': '0xb7714a52845107ebd83381cac3b5233c88fc6a24ecd85b8166fe1b500abaca40', 'from': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 44.645253901784606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026b93cde20afe6673', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:01:20.000Z'}}, {'blockNum': '0x81edc4', 'uniqueId': '0xb7714a52845107ebd83381cac3b5233c88fc6a24ecd85b8166fe1b500abaca40:log:38', 'hash': '0xb7714a52845107ebd83381cac3b5233c88fc6a24ecd85b8166fe1b500abaca40', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 44.645253901784606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026b93cde20afe6673', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:01:20.000Z'}}, {'blockNum': '0x81edc8', 'uniqueId': '0x5f07a9aff739022ddbece6bdf9d076b789425d849fd4f8f356e4e51b453546c7:log:44', 'hash': '0x5f07a9aff739022ddbece6bdf9d076b789425d849fd4f8f356e4e51b453546c7', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x001f7e88078e8fa2741422c6af6c5cd4465c0e5e', 'value': 62.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03635c9adc5dea0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:01:51.000Z'}}, {'blockNum': '0x81edcb', 'uniqueId': '0xdbc404ba2c29a4b46687212d626b24e5aeb12fb8232cbc3572ecc7c5728142e1:log:2', 'hash': '0xdbc404ba2c29a4b46687212d626b24e5aeb12fb8232cbc3572ecc7c5728142e1', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0xb464ccaaddfb6a9a4345bd3b88c40a7633eaebed', 'value': 125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06c6b935b8bbd40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:02:54.000Z'}}, {'blockNum': '0x81edd3', 'uniqueId': '0x36ae0a59bd45bcd5d27a4d770fcdc4e8c80697b601f6fbbfb4190a53a6ecbef0:log:10', 'hash': '0x36ae0a59bd45bcd5d27a4d770fcdc4e8c80697b601f6fbbfb4190a53a6ecbef0', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0xce16cbe6722a90b015466cda8e55d540643b5ceb', 'value': 62.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03635c9adc5dea0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:04:47.000Z'}}, {'blockNum': '0x81edd4', 'uniqueId': '0xafa3fb0ce5db1dac678093209bdea7f0151f7fe1769b6aa841b886cd37586e10:log:7', 'hash': '0xafa3fb0ce5db1dac678093209bdea7f0151f7fe1769b6aa841b886cd37586e10', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 497.1647036954102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af38bd7eb63421b1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:04:49.000Z'}}, {'blockNum': '0x81edd4', 'uniqueId': '0xafa3fb0ce5db1dac678093209bdea7f0151f7fe1769b6aa841b886cd37586e10:log:11', 'hash': '0xafa3fb0ce5db1dac678093209bdea7f0151f7fe1769b6aa841b886cd37586e10', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 497.1647036954102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af38bd7eb63421b1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:04:49.000Z'}}, {'blockNum': '0x81eddb', 'uniqueId': '0x93dc43792c38277458cc026c9c0085462a2ecf52f5548f265968af7166937afd:log:5', 'hash': '0x93dc43792c38277458cc026c9c0085462a2ecf52f5548f265968af7166937afd', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x008bc52f7ca763fdc7aa338506ffe9139c53988e', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:06:10.000Z'}}, {'blockNum': '0x81edde', 'uniqueId': '0xc1c570c66f69698a9e792260804bac66b3bd5e3c4b6e2f058762c9336673a639:log:40', 'hash': '0xc1c570c66f69698a9e792260804bac66b3bd5e3c4b6e2f058762c9336673a639', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x008bc52f7ca763fdc7aa338506ffe9139c53988e', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015af1d78b58c40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:07:10.000Z'}}, {'blockNum': '0x81ede1', 'uniqueId': '0xab376aaeae77be808c8ce4e0990daa643489869b80fe8665b7305eed2d09c55d:log:109', 'hash': '0xab376aaeae77be808c8ce4e0990daa643489869b80fe8665b7305eed2d09c55d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 734.9823858251938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27d7edf9cdefc6722f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:08:08.000Z'}}, {'blockNum': '0x81ede1', 'uniqueId': '0xab376aaeae77be808c8ce4e0990daa643489869b80fe8665b7305eed2d09c55d:log:113', 'hash': '0xab376aaeae77be808c8ce4e0990daa643489869b80fe8665b7305eed2d09c55d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 734.9823858251938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27d7edf9cdefc6722f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:08:08.000Z'}}, {'blockNum': '0x81ede5', 'uniqueId': '0x57e336b779f6b98628f8fa93bdb117ecad01ae7e3df27a5b91eff238f7fdacea:log:13', 'hash': '0x57e336b779f6b98628f8fa93bdb117ecad01ae7e3df27a5b91eff238f7fdacea', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x64d0f9deb341cc4fd242aeff362f43c8e4558bbb', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:08:53.000Z'}}, {'blockNum': '0x81edea', 'uniqueId': '0x623d99aa638bdf263773ad57f87012c0da7e9b81bb6e355e57b59705c99da366:log:30', 'hash': '0x623d99aa638bdf263773ad57f87012c0da7e9b81bb6e355e57b59705c99da366', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x00a3ecaf33491743183dc59e7ae02ae31ede3973', 'value': 57.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031df9095a18f60000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:10:21.000Z'}}, {'blockNum': '0x81edf2', 'uniqueId': '0xd3c44e540e85c6563a87ead4398117926684844af998b32d83ea257723af5ce4:log:0', 'hash': '0xd3c44e540e85c6563a87ead4398117926684844af998b32d83ea257723af5ce4', 'from': '0x64d0f9deb341cc4fd242aeff362f43c8e4558bbb', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:11:52.000Z'}}, {'blockNum': '0x81ee1a', 'uniqueId': '0xf891284d752eff88704040abf1e0f28447d983442bd605a70c60d85cdc4641d5:log:164', 'hash': '0xf891284d752eff88704040abf1e0f28447d983442bd605a70c60d85cdc4641d5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 489.9490426675056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f68aa71df60661d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:07.000Z'}}, {'blockNum': '0x81ee1a', 'uniqueId': '0xf891284d752eff88704040abf1e0f28447d983442bd605a70c60d85cdc4641d5:log:168', 'hash': '0xf891284d752eff88704040abf1e0f28447d983442bd605a70c60d85cdc4641d5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 489.9490426675056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f68aa71df60661d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:07.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0xfad7e7df59a31df1335c58f56a12821c6f4713f21f1745413ca89cdc5ae137cc:log:75', 'hash': '0xfad7e7df59a31df1335c58f56a12821c6f4713f21f1745413ca89cdc5ae137cc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 434.07071084651045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1787f0f3b5af8d762c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0xfad7e7df59a31df1335c58f56a12821c6f4713f21f1745413ca89cdc5ae137cc:log:79', 'hash': '0xfad7e7df59a31df1335c58f56a12821c6f4713f21f1745413ca89cdc5ae137cc', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 434.07071084651045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1787f0f3b5af8d762c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0x8487bea769bea7d03a3b1afb794295a096ed49010308fa25c40a6ae27b3bf38a:log:87', 'hash': '0x8487bea769bea7d03a3b1afb794295a096ed49010308fa25c40a6ae27b3bf38a', 'from': '0xa7a402266ceea0652ea8eafd919d619d16bee134', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 506.93537573891496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b7b243e6035332651', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0x8487bea769bea7d03a3b1afb794295a096ed49010308fa25c40a6ae27b3bf38a:log:91', 'hash': '0x8487bea769bea7d03a3b1afb794295a096ed49010308fa25c40a6ae27b3bf38a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 506.93537573891496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b7b243e6035332651', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0x3fe8d8c8944cccea5aa29fe9f8e2f10c8d0070778ea4a8693c5e7afc0b75dcee:log:103', 'hash': '0x3fe8d8c8944cccea5aa29fe9f8e2f10c8d0070778ea4a8693c5e7afc0b75dcee', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 48.993645524836275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a7ec65067f45ca80', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0x3fe8d8c8944cccea5aa29fe9f8e2f10c8d0070778ea4a8693c5e7afc0b75dcee:log:107', 'hash': '0x3fe8d8c8944cccea5aa29fe9f8e2f10c8d0070778ea4a8693c5e7afc0b75dcee', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xce1e2b5ffe4d441abafd136768f24867101dfa50', 'value': 48.993645524836275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a7ec65067f45ca80', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0xc09ee79fa5e15067c7061b2363bf1b19a2f36e6b328f4b56cf35e9c99745f477:log:115', 'hash': '0xc09ee79fa5e15067c7061b2363bf1b19a2f36e6b328f4b56cf35e9c99745f477', 'from': '0xa7a402266ceea0652ea8eafd919d619d16bee134', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 507.609588876155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b847f87a6e94b79be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0xc09ee79fa5e15067c7061b2363bf1b19a2f36e6b328f4b56cf35e9c99745f477:log:119', 'hash': '0xc09ee79fa5e15067c7061b2363bf1b19a2f36e6b328f4b56cf35e9c99745f477', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 507.609588876155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b847f87a6e94b79be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee20', 'uniqueId': '0x32821f3ddcd3cc07d1a253e59db08f30a45bc0475d2bdd82f1790a5dd3ff02e1:log:88', 'hash': '0x32821f3ddcd3cc07d1a253e59db08f30a45bc0475d2bdd82f1790a5dd3ff02e1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 489.95170163406084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f721cc2c45e908f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:31.000Z'}}, {'blockNum': '0x81ee20', 'uniqueId': '0x32821f3ddcd3cc07d1a253e59db08f30a45bc0475d2bdd82f1790a5dd3ff02e1:log:92', 'hash': '0x32821f3ddcd3cc07d1a253e59db08f30a45bc0475d2bdd82f1790a5dd3ff02e1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 489.95170163406084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f721cc2c45e908f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:31.000Z'}}, {'blockNum': '0x81ee23', 'uniqueId': '0x8a045abc6bc4a59d8b4d935d223fdcb55435ed695c49c23e0322ad5d6686af04:log:103', 'hash': '0x8a045abc6bc4a59d8b4d935d223fdcb55435ed695c49c23e0322ad5d6686af04', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 489.9203345819562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f02ac97d6052937', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:20:21.000Z'}}, {'blockNum': '0x81ee23', 'uniqueId': '0x8a045abc6bc4a59d8b4d935d223fdcb55435ed695c49c23e0322ad5d6686af04:log:107', 'hash': '0x8a045abc6bc4a59d8b4d935d223fdcb55435ed695c49c23e0322ad5d6686af04', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 489.9203345819562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f02ac97d6052937', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:20:21.000Z'}}, {'blockNum': '0x81ee2f', 'uniqueId': '0xe7d1a13a9b4477fc5329d76801d917bba84f142868f98e062535f78ff82aecdd:log:29', 'hash': '0xe7d1a13a9b4477fc5329d76801d917bba84f142868f98e062535f78ff82aecdd', 'from': '0xa7a402266ceea0652ea8eafd919d619d16bee134', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 483.63161017710723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a37bca310e4ab1e49', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:16.000Z'}}, {'blockNum': '0x81ee2f', 'uniqueId': '0xe7d1a13a9b4477fc5329d76801d917bba84f142868f98e062535f78ff82aecdd:log:33', 'hash': '0xe7d1a13a9b4477fc5329d76801d917bba84f142868f98e062535f78ff82aecdd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 483.63161017710723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a37bca310e4ab1e49', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:16.000Z'}}, {'blockNum': '0x81ee31', 'uniqueId': '0x1427264b5a13a36c5906f75ae4c812ee44263b1611eb11847bbc0f4193656091:log:139', 'hash': '0x1427264b5a13a36c5906f75ae4c812ee44263b1611eb11847bbc0f4193656091', 'from': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 903.8037693886702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30fecc03b38ec0d453', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:52.000Z'}}, {'blockNum': '0x81ee31', 'uniqueId': '0x1427264b5a13a36c5906f75ae4c812ee44263b1611eb11847bbc0f4193656091:log:143', 'hash': '0x1427264b5a13a36c5906f75ae4c812ee44263b1611eb11847bbc0f4193656091', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 903.8037693886702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30fecc03b38ec0d453', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:52.000Z'}}, {'blockNum': '0x81ee32', 'uniqueId': '0x29f6848cef98e372bf5b3ce17876c4921e4c379e4d12b4e11a8136397c8fc629:log:92', 'hash': '0x29f6848cef98e372bf5b3ce17876c4921e4c379e4d12b4e11a8136397c8fc629', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 253.99452209387957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc4e1d01faccc53db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:56.000Z'}}, {'blockNum': '0x81ee32', 'uniqueId': '0x29f6848cef98e372bf5b3ce17876c4921e4c379e4d12b4e11a8136397c8fc629:log:96', 'hash': '0x29f6848cef98e372bf5b3ce17876c4921e4c379e4d12b4e11a8136397c8fc629', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 253.99452209387957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc4e1d01faccc53db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:56.000Z'}}, {'blockNum': '0x81ee42', 'uniqueId': '0x3ef87de9c6450d6e3daa0cfbd58508a2551a2c4d053fb05e1111f0581eb9f59b:log:67', 'hash': '0x3ef87de9c6450d6e3daa0cfbd58508a2551a2c4d053fb05e1111f0581eb9f59b', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1481.708350154181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5052d58609b61114f3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:26:30.000Z'}}, {'blockNum': '0x81ee42', 'uniqueId': '0x3ef87de9c6450d6e3daa0cfbd58508a2551a2c4d053fb05e1111f0581eb9f59b:log:71', 'hash': '0x3ef87de9c6450d6e3daa0cfbd58508a2551a2c4d053fb05e1111f0581eb9f59b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1481.708350154181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5052d58609b61114f3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:26:30.000Z'}}, {'blockNum': '0x81ee48', 'uniqueId': '0x105dced5e42f4314fcef91e23308f27f8e8c2083621be0387316e5bc37a0b67e:log:46', 'hash': '0x105dced5e42f4314fcef91e23308f27f8e8c2083621be0387316e5bc37a0b67e', 'from': '0xbdc7310289dcd30d16e284d6f207a8e2f76a37ad', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 261.5974631351306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e2e64e2b7f8ce30d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:28:17.000Z'}}, {'blockNum': '0x81ee48', 'uniqueId': '0x105dced5e42f4314fcef91e23308f27f8e8c2083621be0387316e5bc37a0b67e:log:50', 'hash': '0x105dced5e42f4314fcef91e23308f27f8e8c2083621be0387316e5bc37a0b67e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 261.5974631351306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e2e64e2b7f8ce30d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:28:17.000Z'}}, {'blockNum': '0x81ee4b', 'uniqueId': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3:log:12', 'hash': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9.80242152964677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x880932721d3ca514', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:28:34.000Z'}}, {'blockNum': '0x81ee4b', 'uniqueId': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3:log:15', 'hash': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 9.80242152964677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x880932721d3ca514', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:28:34.000Z'}}, {'blockNum': '0x81ee4b', 'uniqueId': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3:log:18', 'hash': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 9.80242152964677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x880932721d3ca514', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:28:34.000Z'}}, {'blockNum': '0x81ee4c', 'uniqueId': '0x9ac8def835639bb9fd4bf782f3c4fb5020d88d2f0b00ba9ab811793089812fbd:log:47', 'hash': '0x9ac8def835639bb9fd4bf782f3c4fb5020d88d2f0b00ba9ab811793089812fbd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2053.067362136741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f4c08803f0cb6ef13', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:29:07.000Z'}}, {'blockNum': '0x81ee4c', 'uniqueId': '0x9ac8def835639bb9fd4bf782f3c4fb5020d88d2f0b00ba9ab811793089812fbd:log:50', 'hash': '0x9ac8def835639bb9fd4bf782f3c4fb5020d88d2f0b00ba9ab811793089812fbd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'value': 2053.067362136741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f4c08803f0cb6ef13', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:29:07.000Z'}}, {'blockNum': '0x81ee4d', 'uniqueId': '0xfd076c8d74f675b2167ecdbf28116a9515d72174e73c805e4253234a74aa3170:log:117', 'hash': '0xfd076c8d74f675b2167ecdbf28116a9515d72174e73c805e4253234a74aa3170', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 138.03779534061343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x077ba8c381b755a237', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:29:34.000Z'}}, {'blockNum': '0x81ee4d', 'uniqueId': '0xfd076c8d74f675b2167ecdbf28116a9515d72174e73c805e4253234a74aa3170:log:121', 'hash': '0xfd076c8d74f675b2167ecdbf28116a9515d72174e73c805e4253234a74aa3170', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 138.03779534061343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x077ba8c381b755a237', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:29:34.000Z'}}, {'blockNum': '0x81ee67', 'uniqueId': '0x46a9a11f4bd1f5df9f0e8143e5ac6d444a75a0de71edddb8a963dc3390a55bfe:log:81', 'hash': '0x46a9a11f4bd1f5df9f0e8143e5ac6d444a75a0de71edddb8a963dc3390a55bfe', 'from': '0x2801cd0e845874085597865f5b5773f3e44dcdf0', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 493.35985899750597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1abebe51d35f25e807', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:37:28.000Z'}}, {'blockNum': '0x81ee67', 'uniqueId': '0x46a9a11f4bd1f5df9f0e8143e5ac6d444a75a0de71edddb8a963dc3390a55bfe:log:85', 'hash': '0x46a9a11f4bd1f5df9f0e8143e5ac6d444a75a0de71edddb8a963dc3390a55bfe', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 493.35985899750597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1abebe51d35f25e807', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:37:28.000Z'}}, {'blockNum': '0x81ee71', 'uniqueId': '0x8c79c54dabeeef4dcf71ccbd143156d48df70a20c90c57dc3ee522f030c40bbb:log:37', 'hash': '0x8c79c54dabeeef4dcf71ccbd143156d48df70a20c90c57dc3ee522f030c40bbb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 20323.77853310784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x044dc115ffde327db74f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:39:46.000Z'}}, {'blockNum': '0x81ee71', 'uniqueId': '0x8c79c54dabeeef4dcf71ccbd143156d48df70a20c90c57dc3ee522f030c40bbb:log:40', 'hash': '0x8c79c54dabeeef4dcf71ccbd143156d48df70a20c90c57dc3ee522f030c40bbb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0080ef2e364721695608c066b8330b1488156060', 'value': 20323.77853310784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x044dc115ffde327db74f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:39:46.000Z'}}, {'blockNum': '0x81ee7a', 'uniqueId': '0xef5942dcd9bc341238e8d459329d94ab185df11ae2b946a9731226f15957fe21:log:9', 'hash': '0xef5942dcd9bc341238e8d459329d94ab185df11ae2b946a9731226f15957fe21', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0x591203018192cd5df17ac89c169202f2f9044d2d', 'value': 18000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfc82e37e9a7400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:41:08.000Z'}}, {'blockNum': '0x81ee82', 'uniqueId': '0xc24b4fa8d4b5eba2b7e92a84a51a790c4cb4ed80540fa19710976ea6bd128d96:log:94', 'hash': '0xc24b4fa8d4b5eba2b7e92a84a51a790c4cb4ed80540fa19710976ea6bd128d96', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0xc884a85d8100c0705efd49d1639ef812620a0196', 'value': 2300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7caee97613e6700000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:42:41.000Z'}}, {'blockNum': '0x81ee8a', 'uniqueId': '0x4780d12d206c97b611297c7169c4ab542fa64c1a2ddc2707a19459d5f613a213:log:83', 'hash': '0x4780d12d206c97b611297c7169c4ab542fa64c1a2ddc2707a19459d5f613a213', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 38998.91747124235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x084222b38ef97f4f6c96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:34.000Z'}}, {'blockNum': '0x81ee8a', 'uniqueId': '0x4780d12d206c97b611297c7169c4ab542fa64c1a2ddc2707a19459d5f613a213:log:86', 'hash': '0x4780d12d206c97b611297c7169c4ab542fa64c1a2ddc2707a19459d5f613a213', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 38998.91747124235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x084222b38ef97f4f6c96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:34.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xf577a1204e010d18ca35fa8e48e83d0d883cfceb675eb93965a315b50ad84cc9:log:150', 'hash': '0xf577a1204e010d18ca35fa8e48e83d0d883cfceb675eb93965a315b50ad84cc9', 'from': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1291.5194219423965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46036eb77e52634263', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xf577a1204e010d18ca35fa8e48e83d0d883cfceb675eb93965a315b50ad84cc9:log:154', 'hash': '0xf577a1204e010d18ca35fa8e48e83d0d883cfceb675eb93965a315b50ad84cc9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1291.5194219423965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46036eb77e52634263', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xcb4f02eeb64252fd431e03560ff02e42e54d69a58ae1f54b5d6b7182f01d69dc:log:168', 'hash': '0xcb4f02eeb64252fd431e03560ff02e42e54d69a58ae1f54b5d6b7182f01d69dc', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1976.0918524094932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6b1fc88dfbab7adaaf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xcb4f02eeb64252fd431e03560ff02e42e54d69a58ae1f54b5d6b7182f01d69dc:log:172', 'hash': '0xcb4f02eeb64252fd431e03560ff02e42e54d69a58ae1f54b5d6b7182f01d69dc', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1976.0918524094932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6b1fc88dfbab7adaaf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xc5a458db098a797a4af7a9a6d5edfe873bcc9c580db10a9f2fdc42040b3100b7:log:190', 'hash': '0xc5a458db098a797a4af7a9a6d5edfe873bcc9c580db10a9f2fdc42040b3100b7', 'from': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 982.1276225808123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x353dc23d33bc3a15ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xc5a458db098a797a4af7a9a6d5edfe873bcc9c580db10a9f2fdc42040b3100b7:log:194', 'hash': '0xc5a458db098a797a4af7a9a6d5edfe873bcc9c580db10a9f2fdc42040b3100b7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 982.1276225808123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x353dc23d33bc3a15ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0x190ca0996d01808ca71d1ffdb551c447e5faee03bfa78c4977998ad97468162d:log:211', 'hash': '0x190ca0996d01808ca71d1ffdb551c447e5faee03bfa78c4977998ad97468162d', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1698.1385620928259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c0e681919877ea6d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0x190ca0996d01808ca71d1ffdb551c447e5faee03bfa78c4977998ad97468162d:log:215', 'hash': '0x190ca0996d01808ca71d1ffdb551c447e5faee03bfa78c4977998ad97468162d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1698.1385620928259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c0e681919877ea6d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8f', 'uniqueId': '0x4872db3f30dc576c8ea28742fdb3691a49213ade7a7343a5947b981d5f0b5f32:log:84', 'hash': '0x4872db3f30dc576c8ea28742fdb3691a49213ade7a7343a5947b981d5f0b5f32', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:45:24.000Z'}}, {'blockNum': '0x81ee94', 'uniqueId': '0x41c8aaa037137306fc91117387075a111b0d74e9cdd801c2ced5cb7793632732:log:96', 'hash': '0x41c8aaa037137306fc91117387075a111b0d74e9cdd801c2ced5cb7793632732', 'from': '0xdda1bfaf552b0f303d27853a4a13dd440c7e849f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1380.1972811121757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ad215c292ab31da54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:45:48.000Z'}}, {'blockNum': '0x81ee94', 'uniqueId': '0x41c8aaa037137306fc91117387075a111b0d74e9cdd801c2ced5cb7793632732:log:101', 'hash': '0x41c8aaa037137306fc91117387075a111b0d74e9cdd801c2ced5cb7793632732', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 1380.1972811121757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ad215c292ab31da54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:45:48.000Z'}}, {'blockNum': '0x81ee97', 'uniqueId': '0x0ef184d795c81818c44e35f6bf9f0500334664d9cc83626aa0e52ddaade82985:log:69', 'hash': '0x0ef184d795c81818c44e35f6bf9f0500334664d9cc83626aa0e52ddaade82985', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 522.5772596285237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c543760e62f3d762f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:14.000Z'}}, {'blockNum': '0x81ee97', 'uniqueId': '0x0ef184d795c81818c44e35f6bf9f0500334664d9cc83626aa0e52ddaade82985:log:73', 'hash': '0x0ef184d795c81818c44e35f6bf9f0500334664d9cc83626aa0e52ddaade82985', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 522.5772596285237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c543760e62f3d762f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:14.000Z'}}, {'blockNum': '0x81ee99', 'uniqueId': '0x9337fa68f83ec8ccc92e6b351879cee3f8e07ea9c4cd3de97b692f96ffb98890:log:13', 'hash': '0x9337fa68f83ec8ccc92e6b351879cee3f8e07ea9c4cd3de97b692f96ffb98890', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 495.1304499024967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ad750b8df6da8dfd8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:27.000Z'}}, {'blockNum': '0x81ee99', 'uniqueId': '0x9337fa68f83ec8ccc92e6b351879cee3f8e07ea9c4cd3de97b692f96ffb98890:log:17', 'hash': '0x9337fa68f83ec8ccc92e6b351879cee3f8e07ea9c4cd3de97b692f96ffb98890', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 495.1304499024967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ad750b8df6da8dfd8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:27.000Z'}}, {'blockNum': '0x81ee9c', 'uniqueId': '0x44354e554c8bb1cceb966cc301c9aa9423734177eabe272eea619cd899f82f42:log:51', 'hash': '0x44354e554c8bb1cceb966cc301c9aa9423734177eabe272eea619cd899f82f42', 'from': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 730.5116958242895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2799e2e4ef72fc87ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:54.000Z'}}, {'blockNum': '0x81ee9c', 'uniqueId': '0x44354e554c8bb1cceb966cc301c9aa9423734177eabe272eea619cd899f82f42:log:55', 'hash': '0x44354e554c8bb1cceb966cc301c9aa9423734177eabe272eea619cd899f82f42', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 730.5116958242895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2799e2e4ef72fc87ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:54.000Z'}}, {'blockNum': '0x81ee9e', 'uniqueId': '0x25a1e5888356cee10cffb7b260f769a117a19b069cc8e7526f46c1b57ee2c45a:log:35', 'hash': '0x25a1e5888356cee10cffb7b260f769a117a19b069cc8e7526f46c1b57ee2c45a', 'from': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.45508559572374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab22feb35dfb32574', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:04.000Z'}}, {'blockNum': '0x81ee9e', 'uniqueId': '0x25a1e5888356cee10cffb7b260f769a117a19b069cc8e7526f46c1b57ee2c45a:log:39', 'hash': '0x25a1e5888356cee10cffb7b260f769a117a19b069cc8e7526f46c1b57ee2c45a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 492.45508559572374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab22feb35dfb32574', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:04.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0xce94e0e39c8f9f3e6aae4818c228ca2e996fd0ef079c7c2d5032e987c6af1f6e:log:80', 'hash': '0xce94e0e39c8f9f3e6aae4818c228ca2e996fd0ef079c7c2d5032e987c6af1f6e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 111.95568203569857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0611b27ba5146505e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0xce94e0e39c8f9f3e6aae4818c228ca2e996fd0ef079c7c2d5032e987c6af1f6e:log:84', 'hash': '0xce94e0e39c8f9f3e6aae4818c228ca2e996fd0ef079c7c2d5032e987c6af1f6e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 111.95568203569857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0611b27ba5146505e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0x8929a49d5fa2d061e2f00f6f9d91eb15e25ce1b61e2cadc538c5b94d41244ced:log:93', 'hash': '0x8929a49d5fa2d061e2f00f6f9d91eb15e25ce1b61e2cadc538c5b94d41244ced', 'from': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 475.9426495754124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19cd07f622f8ad8a5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0x8929a49d5fa2d061e2f00f6f9d91eb15e25ce1b61e2cadc538c5b94d41244ced:log:97', 'hash': '0x8929a49d5fa2d061e2f00f6f9d91eb15e25ce1b61e2cadc538c5b94d41244ced', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 475.9426495754124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19cd07f622f8ad8a5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0x119a3f5b86cf0b18f8aee4640b16ff9e28e3b8e45383cd4179d283754011ba3a:log:117', 'hash': '0x119a3f5b86cf0b18f8aee4640b16ff9e28e3b8e45383cd4179d283754011ba3a', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1119.8389520839369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3cb4e329c260bcb8d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0x119a3f5b86cf0b18f8aee4640b16ff9e28e3b8e45383cd4179d283754011ba3a:log:121', 'hash': '0x119a3f5b86cf0b18f8aee4640b16ff9e28e3b8e45383cd4179d283754011ba3a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1119.8389520839369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3cb4e329c260bcb8d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81eea1', 'uniqueId': '0x5c94b2a1757bf7393b22912d050b540d23c4d2a655f010cbf38d942d9857f709:log:32', 'hash': '0x5c94b2a1757bf7393b22912d050b540d23c4d2a655f010cbf38d942d9857f709', 'from': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 904.6667699324896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x310ac6021fa61512ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:48:30.000Z'}}, {'blockNum': '0x81eea1', 'uniqueId': '0x5c94b2a1757bf7393b22912d050b540d23c4d2a655f010cbf38d942d9857f709:log:36', 'hash': '0x5c94b2a1757bf7393b22912d050b540d23c4d2a655f010cbf38d942d9857f709', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 904.6667699324896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x310ac6021fa61512ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:48:30.000Z'}}, {'blockNum': '0x81eea3', 'uniqueId': '0x2ff9634e781e88f3190d94d8d253f6243a6b13ef544629b5ddb121510eeeb094:log:87', 'hash': '0x2ff9634e781e88f3190d94d8d253f6243a6b13ef544629b5ddb121510eeeb094', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.943689258796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f325ece2c8630ba1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:48:58.000Z'}}, {'blockNum': '0x81eea3', 'uniqueId': '0x2ff9634e781e88f3190d94d8d253f6243a6b13ef544629b5ddb121510eeeb094:log:89', 'hash': '0x2ff9634e781e88f3190d94d8d253f6243a6b13ef544629b5ddb121510eeeb094', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 736.943689258796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f325ece2c8630ba1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:48:58.000Z'}}, {'blockNum': '0x81eea4', 'uniqueId': '0xa3742bae97fe031f97b556046c922bea6a943725b385756b2c1e9763879a3fd8:log:39', 'hash': '0xa3742bae97fe031f97b556046c922bea6a943725b385756b2c1e9763879a3fd8', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 485.5696245115934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a52a1d8d5cd55a337', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:49:13.000Z'}}, {'blockNum': '0x81eea4', 'uniqueId': '0xa3742bae97fe031f97b556046c922bea6a943725b385756b2c1e9763879a3fd8:log:43', 'hash': '0xa3742bae97fe031f97b556046c922bea6a943725b385756b2c1e9763879a3fd8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 485.5696245115934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a52a1d8d5cd55a337', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:49:13.000Z'}}, {'blockNum': '0x81eea5', 'uniqueId': '0x7612b5f5e33662b57b6505f688d3273d80dba7daf1d95a571c9c3890d00f4f8b:log:19', 'hash': '0x7612b5f5e33662b57b6505f688d3273d80dba7daf1d95a571c9c3890d00f4f8b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0080ef2e364721695608c066b8330b1488156060', 'value': 2299.209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7ca3ef43c4c51a8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:49:17.000Z'}}, {'blockNum': '0x81eeaa', 'uniqueId': '0x7cd52209cdc2e2d76b574253e970d7fec6b77cf4ffdd45afaa6ec7e81aae38f2:log:19', 'hash': '0x7cd52209cdc2e2d76b574253e970d7fec6b77cf4ffdd45afaa6ec7e81aae38f2', 'from': '0xe88d6d63389d5c91e6348e379913f330739ad2c4', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 743.3644724783999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284c41213490a9fef6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:49:53.000Z'}}, {'blockNum': '0x81eeaa', 'uniqueId': '0x7cd52209cdc2e2d76b574253e970d7fec6b77cf4ffdd45afaa6ec7e81aae38f2:log:23', 'hash': '0x7cd52209cdc2e2d76b574253e970d7fec6b77cf4ffdd45afaa6ec7e81aae38f2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 743.3644724783999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284c41213490a9fef6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:49:53.000Z'}}, {'blockNum': '0x81eeac', 'uniqueId': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f:log:37', 'hash': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2322.9875331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7deded95a39678b800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:50:32.000Z'}}, {'blockNum': '0x81eeac', 'uniqueId': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f:log:40', 'hash': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2322.9875331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7deded95a39678b800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:50:32.000Z'}}, {'blockNum': '0x81eeac', 'uniqueId': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f:log:41', 'hash': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2322.9875331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7deded95a39678b800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:50:32.000Z'}}, {'blockNum': '0x81eeaf', 'uniqueId': '0xaca533b7f67070e58762ca363055a737000c182f76a27d759fa8c80503c08197:log:24', 'hash': '0xaca533b7f67070e58762ca363055a737000c182f76a27d759fa8c80503c08197', 'from': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.99123027889044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab9a0aff58c105b06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:51:36.000Z'}}, {'blockNum': '0x81eeaf', 'uniqueId': '0xaca533b7f67070e58762ca363055a737000c182f76a27d759fa8c80503c08197:log:28', 'hash': '0xaca533b7f67070e58762ca363055a737000c182f76a27d759fa8c80503c08197', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 492.99123027889044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab9a0aff58c105b06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:51:36.000Z'}}, {'blockNum': '0x81eeb0', 'uniqueId': '0x94c6c77d093b66fca19a45cd0d2d559b73b31a760702581231071cfb7537fad7:log:5', 'hash': '0x94c6c77d093b66fca19a45cd0d2d559b73b31a760702581231071cfb7537fad7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0080ef2e364721695608c066b8330b1488156060', 'value': 18001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfd60eee9d4ea40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:51:51.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4:log:95', 'hash': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 18001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfd60eee9d4ea40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4:log:98', 'hash': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 18001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfd60eee9d4ea40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4:log:99', 'hash': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 18001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfd60eee9d4ea40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0x29c539848aee3a81e76a4435309f2903c3b698e2f075f7736aeefe947a2c967c:log:112', 'hash': '0x29c539848aee3a81e76a4435309f2903c3b698e2f075f7736aeefe947a2c967c', 'from': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 486.8925099380834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a64fdae1f21cec921', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0x29c539848aee3a81e76a4435309f2903c3b698e2f075f7736aeefe947a2c967c:log:116', 'hash': '0x29c539848aee3a81e76a4435309f2903c3b698e2f075f7736aeefe947a2c967c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 486.8925099380834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a64fdae1f21cec921', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0x89f9dfd6dafd0336114023bb836308a8a95b0838503f365a1e04f45f3f1cc7fb:log:177', 'hash': '0x89f9dfd6dafd0336114023bb836308a8a95b0838503f365a1e04f45f3f1cc7fb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 244.14772288956777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3c3af46b0131be54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0x89f9dfd6dafd0336114023bb836308a8a95b0838503f365a1e04f45f3f1cc7fb:log:181', 'hash': '0x89f9dfd6dafd0336114023bb836308a8a95b0838503f365a1e04f45f3f1cc7fb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'value': 244.14772288956777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3c3af46b0131be54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb7', 'uniqueId': '0xb19bfd855622274f04249d530c557050872a8bc9dcc05889eb7f7921b73bb71e:log:21', 'hash': '0xb19bfd855622274f04249d530c557050872a8bc9dcc05889eb7f7921b73bb71e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 244.1399365463213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3c1f4ac7b1e37bfd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:45.000Z'}}, {'blockNum': '0x81eeb7', 'uniqueId': '0xb19bfd855622274f04249d530c557050872a8bc9dcc05889eb7f7921b73bb71e:log:25', 'hash': '0xb19bfd855622274f04249d530c557050872a8bc9dcc05889eb7f7921b73bb71e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 244.1399365463213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3c1f4ac7b1e37bfd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:45.000Z'}}, {'blockNum': '0x81eec1', 'uniqueId': '0xd75bac541e8ac0dec1ed362eb4f06521c96e4d4b33486a2241138b0926f82164:log:136', 'hash': '0xd75bac541e8ac0dec1ed362eb4f06521c96e4d4b33486a2241138b0926f82164', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 763.8796959473787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2968f5d8418ce66e29', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:12.000Z'}}, {'blockNum': '0x81eec1', 'uniqueId': '0xd75bac541e8ac0dec1ed362eb4f06521c96e4d4b33486a2241138b0926f82164:log:140', 'hash': '0xd75bac541e8ac0dec1ed362eb4f06521c96e4d4b33486a2241138b0926f82164', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 763.8796959473787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2968f5d8418ce66e29', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:12.000Z'}}, {'blockNum': '0x81eec1', 'uniqueId': '0x04c8d236ceee8fe645c091aa29336cef59eeb3cb9705728dea051b6f44369ff1:log:150', 'hash': '0x04c8d236ceee8fe645c091aa29336cef59eeb3cb9705728dea051b6f44369ff1', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 394.811877149515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15671d8e76ea01807d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:12.000Z'}}, {'blockNum': '0x81eec1', 'uniqueId': '0x04c8d236ceee8fe645c091aa29336cef59eeb3cb9705728dea051b6f44369ff1:log:154', 'hash': '0x04c8d236ceee8fe645c091aa29336cef59eeb3cb9705728dea051b6f44369ff1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 394.811877149515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15671d8e76ea01807d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:12.000Z'}}, {'blockNum': '0x81eec2', 'uniqueId': '0xde5d50e36e64ad21d05f4228ce7011722378f8269b55e0c52812f3f151310c2d:log:71', 'hash': '0xde5d50e36e64ad21d05f4228ce7011722378f8269b55e0c52812f3f151310c2d', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.43606708847295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa40ba346ef779049', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:17.000Z'}}, {'blockNum': '0x81eec2', 'uniqueId': '0xde5d50e36e64ad21d05f4228ce7011722378f8269b55e0c52812f3f151310c2d:log:75', 'hash': '0xde5d50e36e64ad21d05f4228ce7011722378f8269b55e0c52812f3f151310c2d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 491.43606708847295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa40ba346ef779049', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:17.000Z'}}, {'blockNum': '0x81eeca', 'uniqueId': '0x20fcf47c0335249c722dcdc5a455dcf6109d363364b06875555f8dce419bbe41:log:22', 'hash': '0x20fcf47c0335249c722dcdc5a455dcf6109d363364b06875555f8dce419bbe41', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 743.8290568815831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2852b3aa4230966612', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:58:47.000Z'}}, {'blockNum': '0x81eeca', 'uniqueId': '0x20fcf47c0335249c722dcdc5a455dcf6109d363364b06875555f8dce419bbe41:log:26', 'hash': '0x20fcf47c0335249c722dcdc5a455dcf6109d363364b06875555f8dce419bbe41', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 743.8290568815831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2852b3aa4230966612', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:58:47.000Z'}}, {'blockNum': '0x81eecb', 'uniqueId': '0xffd6e750780909bc879e21d81e54eb77b11305d59d1fe36c6aeebaa59784e243:log:152', 'hash': '0xffd6e750780909bc879e21d81e54eb77b11305d59d1fe36c6aeebaa59784e243', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 486.61714087938356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a612b5f6bf3df07eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:59:02.000Z'}}, {'blockNum': '0x81eecb', 'uniqueId': '0xffd6e750780909bc879e21d81e54eb77b11305d59d1fe36c6aeebaa59784e243:log:154', 'hash': '0xffd6e750780909bc879e21d81e54eb77b11305d59d1fe36c6aeebaa59784e243', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 486.61714087938356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a612b5f6bf3df07eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:59:02.000Z'}}, {'blockNum': '0x81eecf', 'uniqueId': '0xf683e71dcfd6896be856f2fbdd287362cf5b8b56bb6236e86ee7a3ff0996bf4a:log:58', 'hash': '0xf683e71dcfd6896be856f2fbdd287362cf5b8b56bb6236e86ee7a3ff0996bf4a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 293.12678653349315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fe3f38b4cc89d24e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:59:38.000Z'}}, {'blockNum': '0x81eecf', 'uniqueId': '0xf683e71dcfd6896be856f2fbdd287362cf5b8b56bb6236e86ee7a3ff0996bf4a:log:62', 'hash': '0xf683e71dcfd6896be856f2fbdd287362cf5b8b56bb6236e86ee7a3ff0996bf4a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'value': 293.12678653349315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fe3f38b4cc89d24e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:59:38.000Z'}}, {'blockNum': '0x81eed4', 'uniqueId': '0x5c336bffd1fde9f7368e55b7d2cac8f11ebc5987350b772e1b94fc0191bc73ad:log:3', 'hash': '0x5c336bffd1fde9f7368e55b7d2cac8f11ebc5987350b772e1b94fc0191bc73ad', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 21100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0477d5529f68a6300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:00:34.000Z'}}, {'blockNum': '0x81eed4', 'uniqueId': '0x99ef68e15270a1d4131237904dba98ad92d80d9d40c6ed48415eedc2819eee2e:log:54', 'hash': '0x99ef68e15270a1d4131237904dba98ad92d80d9d40c6ed48415eedc2819eee2e', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 441.44983918854217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17ee58e1d72a5f25d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:00:34.000Z'}}, {'blockNum': '0x81eed4', 'uniqueId': '0x99ef68e15270a1d4131237904dba98ad92d80d9d40c6ed48415eedc2819eee2e:log:58', 'hash': '0x99ef68e15270a1d4131237904dba98ad92d80d9d40c6ed48415eedc2819eee2e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 441.44983918854217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17ee58e1d72a5f25d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:00:34.000Z'}}, {'blockNum': '0x81eed9', 'uniqueId': '0x4156f46b97631505ebd2467e6549f37790127ba487150d11ab2f996cc84104fd:log:6', 'hash': '0x4156f46b97631505ebd2467e6549f37790127ba487150d11ab2f996cc84104fd', 'from': '0x0e17fdee2528ee4b6c076fd5fe725b05a6d0566a', 'to': '0x3ab23200bba977271f7ff0bc301c09671916b0aa', 'value': 134.8172234408092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x074ef6fe6d59e5c953', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:01:13.000Z'}}, {'blockNum': '0x81eed9', 'uniqueId': '0xab078cfc72b76190c8fd763dd67b60218bfee3816f8c6ac246cf81606022df64:log:34', 'hash': '0xab078cfc72b76190c8fd763dd67b60218bfee3816f8c6ac246cf81606022df64', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 384.70177310071824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14dacf4065d33c8f93', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:01:13.000Z'}}, {'blockNum': '0x81eed9', 'uniqueId': '0xab078cfc72b76190c8fd763dd67b60218bfee3816f8c6ac246cf81606022df64:log:38', 'hash': '0xab078cfc72b76190c8fd763dd67b60218bfee3816f8c6ac246cf81606022df64', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 384.70177310071824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14dacf4065d33c8f93', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:01:13.000Z'}}, {'blockNum': '0x81eedf', 'uniqueId': '0xb23ecb8ab8df30b7291c9dc515da5d4584f1ab68352232ef764462cb4934b6a7:log:121', 'hash': '0xb23ecb8ab8df30b7291c9dc515da5d4584f1ab68352232ef764462cb4934b6a7', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 486.48234357272116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5f4c79fc4795010b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:17.000Z'}}, {'blockNum': '0x81eedf', 'uniqueId': '0xb23ecb8ab8df30b7291c9dc515da5d4584f1ab68352232ef764462cb4934b6a7:log:125', 'hash': '0xb23ecb8ab8df30b7291c9dc515da5d4584f1ab68352232ef764462cb4934b6a7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 486.48234357272116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5f4c79fc4795010b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:17.000Z'}}, {'blockNum': '0x81eedf', 'uniqueId': '0x78fa996627c4653b2f182338b17ed880bc59d2089d8f86807706ba1ca9df487b:log:136', 'hash': '0x78fa996627c4653b2f182338b17ed880bc59d2089d8f86807706ba1ca9df487b', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.731196206868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9a436ef1e0e2b781', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:17.000Z'}}, {'blockNum': '0x81eedf', 'uniqueId': '0x78fa996627c4653b2f182338b17ed880bc59d2089d8f86807706ba1ca9df487b:log:140', 'hash': '0x78fa996627c4653b2f182338b17ed880bc59d2089d8f86807706ba1ca9df487b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 490.731196206868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9a436ef1e0e2b781', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:17.000Z'}}, {'blockNum': '0x81eee0', 'uniqueId': '0x7574a65456adddc236bafb88bd1e479b0c7b9c03c4aa34c2e6c69fd470de9278:log:101', 'hash': '0x7574a65456adddc236bafb88bd1e479b0c7b9c03c4aa34c2e6c69fd470de9278', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1270.3856059645502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44de2451d55660edfd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:31.000Z'}}, {'blockNum': '0x81eee0', 'uniqueId': '0x7574a65456adddc236bafb88bd1e479b0c7b9c03c4aa34c2e6c69fd470de9278:log:105', 'hash': '0x7574a65456adddc236bafb88bd1e479b0c7b9c03c4aa34c2e6c69fd470de9278', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'value': 1270.3856059645502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44de2451d55660edfd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:31.000Z'}}, {'blockNum': '0x81eee6', 'uniqueId': '0x20db02305d1c2c5241c0494d22217c375a87f0bc62e43918a6044ad883f5afb6:log:89', 'hash': '0x20db02305d1c2c5241c0494d22217c375a87f0bc62e43918a6044ad883f5afb6', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 488.323224352254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a78d8994d117b346b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:04:25.000Z'}}, {'blockNum': '0x81eee6', 'uniqueId': '0x20db02305d1c2c5241c0494d22217c375a87f0bc62e43918a6044ad883f5afb6:log:93', 'hash': '0x20db02305d1c2c5241c0494d22217c375a87f0bc62e43918a6044ad883f5afb6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 488.323224352254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a78d8994d117b346b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:04:25.000Z'}}, {'blockNum': '0x81eef2', 'uniqueId': '0x81d1b2dca353fb06ef49d461745ba7bba9a467481016ea685e240756f1bb98cf:log:63', 'hash': '0x81d1b2dca353fb06ef49d461745ba7bba9a467481016ea685e240756f1bb98cf', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 496.20794907736763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ae644c4a9d99e4ff3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:06:52.000Z'}}, {'blockNum': '0x81eef2', 'uniqueId': '0x81d1b2dca353fb06ef49d461745ba7bba9a467481016ea685e240756f1bb98cf:log:67', 'hash': '0x81d1b2dca353fb06ef49d461745ba7bba9a467481016ea685e240756f1bb98cf', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 496.20794907736763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ae644c4a9d99e4ff3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:06:52.000Z'}}, {'blockNum': '0x81eefa', 'uniqueId': '0xc5d7c194420f382554fdd5de2b4e688cb48b13825dc057ed748a21400f6d7b6c:log:54', 'hash': '0xc5d7c194420f382554fdd5de2b4e688cb48b13825dc057ed748a21400f6d7b6c', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.9005244640418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9c9d0218fc29f6eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:00.000Z'}}, {'blockNum': '0x81eefa', 'uniqueId': '0xc5d7c194420f382554fdd5de2b4e688cb48b13825dc057ed748a21400f6d7b6c:log:58', 'hash': '0xc5d7c194420f382554fdd5de2b4e688cb48b13825dc057ed748a21400f6d7b6c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 490.9005244640418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9c9d0218fc29f6eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:00.000Z'}}, {'blockNum': '0x81eefa', 'uniqueId': '0x0cd138765714061053907201a40f20f8498a087138f4cafeb44c1cdeeaa50b2e:log:70', 'hash': '0x0cd138765714061053907201a40f20f8498a087138f4cafeb44c1cdeeaa50b2e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9767.036235772322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021178db3c7589b61301', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:00.000Z'}}, {'blockNum': '0x81eefa', 'uniqueId': '0x0cd138765714061053907201a40f20f8498a087138f4cafeb44c1cdeeaa50b2e:log:73', 'hash': '0x0cd138765714061053907201a40f20f8498a087138f4cafeb44c1cdeeaa50b2e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 9767.036235772322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021178db3c7589b61301', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:00.000Z'}}, {'blockNum': '0x81eefd', 'uniqueId': '0x496b51a33bb452024dd505687d7579df001121ab31a5a6c312fa797bb7d3fd15:log:73', 'hash': '0x496b51a33bb452024dd505687d7579df001121ab31a5a6c312fa797bb7d3fd15', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 480.86758967215883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a1160dd0fa753571b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:21.000Z'}}, {'blockNum': '0x81eefd', 'uniqueId': '0x496b51a33bb452024dd505687d7579df001121ab31a5a6c312fa797bb7d3fd15:log:77', 'hash': '0x496b51a33bb452024dd505687d7579df001121ab31a5a6c312fa797bb7d3fd15', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 480.86758967215883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a1160dd0fa753571b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:21.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0x56ac091c28fa6d935eafa20cdd3ff69ba821cbe75e53f7737ab2e3563e8fe1c5:log:73', 'hash': '0x56ac091c28fa6d935eafa20cdd3ff69ba821cbe75e53f7737ab2e3563e8fe1c5', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1235.1249345028996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42f4cd3ff540f28ded', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0x56ac091c28fa6d935eafa20cdd3ff69ba821cbe75e53f7737ab2e3563e8fe1c5:log:77', 'hash': '0x56ac091c28fa6d935eafa20cdd3ff69ba821cbe75e53f7737ab2e3563e8fe1c5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1235.1249345028996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42f4cd3ff540f28ded', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0x28a8521149ddfe64837ca57f856c93878d7a9e09b3de35ff6d9077f706a6765c:log:87', 'hash': '0x28a8521149ddfe64837ca57f856c93878d7a9e09b3de35ff6d9077f706a6765c', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 450.7146472716078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186eec17b479aaeb74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0x28a8521149ddfe64837ca57f856c93878d7a9e09b3de35ff6d9077f706a6765c:log:91', 'hash': '0x28a8521149ddfe64837ca57f856c93878d7a9e09b3de35ff6d9077f706a6765c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 450.7146472716078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186eec17b479aaeb74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0xdc68fa7a66024018001ac4d8431388ea431e0fb4323078cb4348fee0837a2c9d:log:103', 'hash': '0xdc68fa7a66024018001ac4d8431388ea431e0fb4323078cb4348fee0837a2c9d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 439.3480990942714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17d12e005c392adc59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0xdc68fa7a66024018001ac4d8431388ea431e0fb4323078cb4348fee0837a2c9d:log:107', 'hash': '0xdc68fa7a66024018001ac4d8431388ea431e0fb4323078cb4348fee0837a2c9d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'value': 439.3480990942714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17d12e005c392adc59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef07', 'uniqueId': '0xb9a14db80afee798b4930e0c1fe23bfbc284715991f02ff04928e56d5c3d714f:log:121', 'hash': '0xb9a14db80afee798b4930e0c1fe23bfbc284715991f02ff04928e56d5c3d714f', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 393.25048573759494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x155172613f7b2a0e23', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:11:42.000Z'}}, {'blockNum': '0x81ef07', 'uniqueId': '0xb9a14db80afee798b4930e0c1fe23bfbc284715991f02ff04928e56d5c3d714f:log:125', 'hash': '0xb9a14db80afee798b4930e0c1fe23bfbc284715991f02ff04928e56d5c3d714f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 393.25048573759494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x155172613f7b2a0e23', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:11:42.000Z'}}, {'blockNum': '0x81ef0c', 'uniqueId': '0x9a5a5ea1ea900af372ab44dec1459479e1afe35500af58fbccf2773d49186bd7:log:100', 'hash': '0x9a5a5ea1ea900af372ab44dec1459479e1afe35500af58fbccf2773d49186bd7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 185.50448920380168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a0e64561600e23c81', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:13:42.000Z'}}, {'blockNum': '0x81ef0c', 'uniqueId': '0x9a5a5ea1ea900af372ab44dec1459479e1afe35500af58fbccf2773d49186bd7:log:104', 'hash': '0x9a5a5ea1ea900af372ab44dec1459479e1afe35500af58fbccf2773d49186bd7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 185.50448920380168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a0e64561600e23c81', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:13:42.000Z'}}, {'blockNum': '0x81ef0d', 'uniqueId': '0xd9fc738c5d49820b35c2c6ee17e2a67cc9d131fcdadd11f5853de527499b283c:log:67', 'hash': '0xd9fc738c5d49820b35c2c6ee17e2a67cc9d131fcdadd11f5853de527499b283c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 732.2106743705912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27b176e0ebf04d36c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:13:50.000Z'}}, {'blockNum': '0x81ef0d', 'uniqueId': '0xd9fc738c5d49820b35c2c6ee17e2a67cc9d131fcdadd11f5853de527499b283c:log:71', 'hash': '0xd9fc738c5d49820b35c2c6ee17e2a67cc9d131fcdadd11f5853de527499b283c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 732.2106743705912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27b176e0ebf04d36c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:13:50.000Z'}}, {'blockNum': '0x81ef17', 'uniqueId': '0x1559ba1d81227020ace653ee9fb9d290b9ddc014fec7bd6803596edba986c7e8:log:149', 'hash': '0x1559ba1d81227020ace653ee9fb9d290b9ddc014fec7bd6803596edba986c7e8', 'from': '0x5142127a6703f5fc80bf11b7b57ff68998f218e4', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 232.3813512926134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c98f067ca9d7bc76f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:16:24.000Z'}}, {'blockNum': '0x81ef17', 'uniqueId': '0x1559ba1d81227020ace653ee9fb9d290b9ddc014fec7bd6803596edba986c7e8:log:153', 'hash': '0x1559ba1d81227020ace653ee9fb9d290b9ddc014fec7bd6803596edba986c7e8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 232.3813512926134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c98f067ca9d7bc76f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:16:24.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0x299c353a958d5547bdb1019e0f7d7623e99045162599bcbc89c23865983a498f:log:132', 'hash': '0x299c353a958d5547bdb1019e0f7d7623e99045162599bcbc89c23865983a498f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 917.6330186337935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x31beb7609e8caad579', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0x299c353a958d5547bdb1019e0f7d7623e99045162599bcbc89c23865983a498f:log:136', 'hash': '0x299c353a958d5547bdb1019e0f7d7623e99045162599bcbc89c23865983a498f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 917.6330186337935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x31beb7609e8caad579', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0x25eb257827854b1100201368ac331ca69d6705b6fe1a82f13698fa3bde49dc2b:log:146', 'hash': '0x25eb257827854b1100201368ac331ca69d6705b6fe1a82f13698fa3bde49dc2b', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 485.2301895173384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a4debee819c6cb830', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0x25eb257827854b1100201368ac331ca69d6705b6fe1a82f13698fa3bde49dc2b:log:150', 'hash': '0x25eb257827854b1100201368ac331ca69d6705b6fe1a82f13698fa3bde49dc2b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 485.2301895173384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a4debee819c6cb830', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0xc9e1eebf9bf3e8e8a2984994e52d6001c4cae4762c542bf233d08f748ae08f37:log:163', 'hash': '0xc9e1eebf9bf3e8e8a2984994e52d6001c4cae4762c542bf233d08f748ae08f37', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1376.3305540134118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4a9c6c62c36dfcc3e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0xc9e1eebf9bf3e8e8a2984994e52d6001c4cae4762c542bf233d08f748ae08f37:log:167', 'hash': '0xc9e1eebf9bf3e8e8a2984994e52d6001c4cae4762c542bf233d08f748ae08f37', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 1376.3305540134118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4a9c6c62c36dfcc3e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0xaf9690517c9262b92d4f01a6728bccdb5132644850b5b35617960f6751213706:log:133', 'hash': '0xaf9690517c9262b92d4f01a6728bccdb5132644850b5b35617960f6751213706', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 938.2240520427426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32dc796c68a747f041', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0xaf9690517c9262b92d4f01a6728bccdb5132644850b5b35617960f6751213706:log:137', 'hash': '0xaf9690517c9262b92d4f01a6728bccdb5132644850b5b35617960f6751213706', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 938.2240520427426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32dc796c68a747f041', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0xb13514824e5abb5a5daae4bd6282a449b0ee03bf1e2bb2690542c8753ba51aeb:log:149', 'hash': '0xb13514824e5abb5a5daae4bd6282a449b0ee03bf1e2bb2690542c8753ba51aeb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 585.6693043804041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fbfcb5953341e4d1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0xb13514824e5abb5a5daae4bd6282a449b0ee03bf1e2bb2690542c8753ba51aeb:log:153', 'hash': '0xb13514824e5abb5a5daae4bd6282a449b0ee03bf1e2bb2690542c8753ba51aeb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'value': 585.6693043804041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fbfcb5953341e4d1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0x9d6b0f5ed56053dc9d56c1b0497c7698901080a5e65f3bf19e43a7fd4e2bfa6b:log:162', 'hash': '0x9d6b0f5ed56053dc9d56c1b0497c7698901080a5e65f3bf19e43a7fd4e2bfa6b', 'from': '0x7172c5b24bdce3b93a78c53ef1ece011b0472c1b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 114.33484541115729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0632b6f821253b26d0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0x9d6b0f5ed56053dc9d56c1b0497c7698901080a5e65f3bf19e43a7fd4e2bfa6b:log:166', 'hash': '0x9d6b0f5ed56053dc9d56c1b0497c7698901080a5e65f3bf19e43a7fd4e2bfa6b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 114.33484541115729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0632b6f821253b26d0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef33', 'uniqueId': '0x6737a0b03b73cf58ec8e541c8c4b069c2a23559de71c2c10943cce0013c63f31:log:31', 'hash': '0x6737a0b03b73cf58ec8e541c8c4b069c2a23559de71c2c10943cce0013c63f31', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.7928253064561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa8ff18fc750deda5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:11.000Z'}}, {'blockNum': '0x81ef33', 'uniqueId': '0x6737a0b03b73cf58ec8e541c8c4b069c2a23559de71c2c10943cce0013c63f31:log:35', 'hash': '0x6737a0b03b73cf58ec8e541c8c4b069c2a23559de71c2c10943cce0013c63f31', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 491.7928253064561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa8ff18fc750deda5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:11.000Z'}}, {'blockNum': '0x81ef35', 'uniqueId': '0xa5c0a738f81d7d7b1ab4385962d2aab8c0842197a0161557fb620f36bba569c0:log:50', 'hash': '0xa5c0a738f81d7d7b1ab4385962d2aab8c0842197a0161557fb620f36bba569c0', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1226.0258483417433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x427686cd4db08b1e02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:29.000Z'}}, {'blockNum': '0x81ef35', 'uniqueId': '0xa5c0a738f81d7d7b1ab4385962d2aab8c0842197a0161557fb620f36bba569c0:log:54', 'hash': '0xa5c0a738f81d7d7b1ab4385962d2aab8c0842197a0161557fb620f36bba569c0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1226.0258483417433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x427686cd4db08b1e02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:29.000Z'}}, {'blockNum': '0x81ef36', 'uniqueId': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3:log:70', 'hash': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 114.96411966367708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x063b7299ba64f8fe5b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:33.000Z'}}, {'blockNum': '0x81ef36', 'uniqueId': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3:log:73', 'hash': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 114.96411966367708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x063b7299ba64f8fe5b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:33.000Z'}}, {'blockNum': '0x81ef36', 'uniqueId': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3:log:76', 'hash': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 114.96411966367708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x063b7299ba64f8fe5b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:33.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0xc1abfa73bbc919f20a33800d787fbf4544507a70035370568bc846f9bc02ceb9:log:32', 'hash': '0xc1abfa73bbc919f20a33800d787fbf4544507a70035370568bc846f9bc02ceb9', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 146.09874860341566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07eb8705ca5bafd7f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0xc1abfa73bbc919f20a33800d787fbf4544507a70035370568bc846f9bc02ceb9:log:36', 'hash': '0xc1abfa73bbc919f20a33800d787fbf4544507a70035370568bc846f9bc02ceb9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 146.09874860341566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07eb8705ca5bafd7f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54:log:46', 'hash': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54:log:49', 'hash': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54:log:50', 'hash': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0xb0e488909a5e2e8fadb008564e7c5be4fe648cf781b7a2bc1691a18cc2874b45:log:63', 'hash': '0xb0e488909a5e2e8fadb008564e7c5be4fe648cf781b7a2bc1691a18cc2874b45', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 497.52918318646886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af89abc15e3b9f810', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0xb0e488909a5e2e8fadb008564e7c5be4fe648cf781b7a2bc1691a18cc2874b45:log:67', 'hash': '0xb0e488909a5e2e8fadb008564e7c5be4fe648cf781b7a2bc1691a18cc2874b45', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 497.52918318646886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af89abc15e3b9f810', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef41', 'uniqueId': '0xe180cfcb2766f5959548e5ed6a68f5020ceac6f4112cc3cbce6d5d42c02a32b6:log:5', 'hash': '0xe180cfcb2766f5959548e5ed6a68f5020ceac6f4112cc3cbce6d5d42c02a32b6', 'from': '0xc884a85d8100c0705efd49d1639ef812620a0196', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7caee97613e6700000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:59.000Z'}}, {'blockNum': '0x81ef42', 'uniqueId': '0x9a4e4cf931860a1d67d354c142afcc17a8604c46a349f4d9b94366dce6df1ff3:log:45', 'hash': '0x9a4e4cf931860a1d67d354c142afcc17a8604c46a349f4d9b94366dce6df1ff3', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1159.5070945793111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3edb64b730211993e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:01.000Z'}}, {'blockNum': '0x81ef42', 'uniqueId': '0x9a4e4cf931860a1d67d354c142afcc17a8604c46a349f4d9b94366dce6df1ff3:log:49', 'hash': '0x9a4e4cf931860a1d67d354c142afcc17a8604c46a349f4d9b94366dce6df1ff3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1159.5070945793111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3edb64b730211993e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:01.000Z'}}, {'blockNum': '0x81ef42', 'uniqueId': '0xab8b70ab6c942048b0a1cfd8206f5c80f1279d17c27c61c13db61a4c41a130c7:log:166', 'hash': '0xab8b70ab6c942048b0a1cfd8206f5c80f1279d17c27c61c13db61a4c41a130c7', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 475.1006099727449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19c1586f944cde75c8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:01.000Z'}}, {'blockNum': '0x81ef42', 'uniqueId': '0xab8b70ab6c942048b0a1cfd8206f5c80f1279d17c27c61c13db61a4c41a130c7:log:170', 'hash': '0xab8b70ab6c942048b0a1cfd8206f5c80f1279d17c27c61c13db61a4c41a130c7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 475.1006099727449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19c1586f944cde75c8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:01.000Z'}}, {'blockNum': '0x81ef46', 'uniqueId': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e:log:151', 'hash': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 24.44018242972988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01532cf86e21caf550', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:45.000Z'}}, {'blockNum': '0x81ef46', 'uniqueId': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e:log:154', 'hash': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 24.44018242972988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01532cf86e21caf550', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:45.000Z'}}, {'blockNum': '0x81ef46', 'uniqueId': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e:log:157', 'hash': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 24.44018242972988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01532cf86e21caf550', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:45.000Z'}}, {'blockNum': '0x81ef48', 'uniqueId': '0x1a819fcf6e1a638fcdcd93d8d11ba83b82e3b7160e793062b63224aa69ed98f3:log:71', 'hash': '0x1a819fcf6e1a638fcdcd93d8d11ba83b82e3b7160e793062b63224aa69ed98f3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 488.787261895144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a7f4930fcdbe29b62', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:28:29.000Z'}}, {'blockNum': '0x81ef48', 'uniqueId': '0x1a819fcf6e1a638fcdcd93d8d11ba83b82e3b7160e793062b63224aa69ed98f3:log:74', 'hash': '0x1a819fcf6e1a638fcdcd93d8d11ba83b82e3b7160e793062b63224aa69ed98f3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x14bafc009cc698da196927871e2ce54dc23c25f3', 'value': 488.787261895144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a7f4930fcdbe29b62', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:28:29.000Z'}}, {'blockNum': '0x81ef4a', 'uniqueId': '0x540c5efa7cac1b3a3eadd30ac2f888f2d9c50e849ea9391de13ea4b035468c0e:log:40', 'hash': '0x540c5efa7cac1b3a3eadd30ac2f888f2d9c50e849ea9391de13ea4b035468c0e', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.9981734426174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f3e77df65ef060ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:28:59.000Z'}}, {'blockNum': '0x81ef4a', 'uniqueId': '0x540c5efa7cac1b3a3eadd30ac2f888f2d9c50e849ea9391de13ea4b035468c0e:log:44', 'hash': '0x540c5efa7cac1b3a3eadd30ac2f888f2d9c50e849ea9391de13ea4b035468c0e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 736.9981734426174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f3e77df65ef060ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:28:59.000Z'}}, {'blockNum': '0x81ef4c', 'uniqueId': '0x20478071b8a85af4d5638bab4b7fe5a1bcedc543fe84692150bc42557958338b:log:150', 'hash': '0x20478071b8a85af4d5638bab4b7fe5a1bcedc543fe84692150bc42557958338b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 122.20370421358193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x069feac584ef7532ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:29:33.000Z'}}, {'blockNum': '0x81ef4c', 'uniqueId': '0x20478071b8a85af4d5638bab4b7fe5a1bcedc543fe84692150bc42557958338b:log:154', 'hash': '0x20478071b8a85af4d5638bab4b7fe5a1bcedc543fe84692150bc42557958338b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 122.20370421358193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x069feac584ef7532ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:29:33.000Z'}}, {'blockNum': '0x81ef55', 'uniqueId': '0xd7721bd523c8b89180229de3e2ea99b9ba5d3eaddc4740cde3cdac4c5228aa70:log:106', 'hash': '0xd7721bd523c8b89180229de3e2ea99b9ba5d3eaddc4740cde3cdac4c5228aa70', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 426.0836021448373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1719190aa9bde4dc2c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:30:31.000Z'}}, {'blockNum': '0x81ef55', 'uniqueId': '0xd7721bd523c8b89180229de3e2ea99b9ba5d3eaddc4740cde3cdac4c5228aa70:log:110', 'hash': '0xd7721bd523c8b89180229de3e2ea99b9ba5d3eaddc4740cde3cdac4c5228aa70', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 426.0836021448373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1719190aa9bde4dc2c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:30:31.000Z'}}, {'blockNum': '0x81ef59', 'uniqueId': '0xa478e0b2122b57479936c4ae71e3f15c73f8f2e1cf02fb3f7d1f08abcccb7200:log:56', 'hash': '0xa478e0b2122b57479936c4ae71e3f15c73f8f2e1cf02fb3f7d1f08abcccb7200', 'from': '0xbac94dc2411f494c438ca667a4836e3dccaa4920', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 793.1444928424017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2aff1749fb04b4bdd6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:31:22.000Z'}}, {'blockNum': '0x81ef59', 'uniqueId': '0xa478e0b2122b57479936c4ae71e3f15c73f8f2e1cf02fb3f7d1f08abcccb7200:log:60', 'hash': '0xa478e0b2122b57479936c4ae71e3f15c73f8f2e1cf02fb3f7d1f08abcccb7200', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 793.1444928424017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2aff1749fb04b4bdd6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:31:22.000Z'}}, {'blockNum': '0x81ef5b', 'uniqueId': '0xd15de9c31fb48b0e10b5fdcc1b0bef85e91842791e92ca4a9f162dccb7bf7783:log:140', 'hash': '0xd15de9c31fb48b0e10b5fdcc1b0bef85e91842791e92ca4a9f162dccb7bf7783', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 461.0082373649752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18fdc6455b6c4ebf04', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:32:39.000Z'}}, {'blockNum': '0x81ef5b', 'uniqueId': '0xd15de9c31fb48b0e10b5fdcc1b0bef85e91842791e92ca4a9f162dccb7bf7783:log:144', 'hash': '0xd15de9c31fb48b0e10b5fdcc1b0bef85e91842791e92ca4a9f162dccb7bf7783', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 461.0082373649752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18fdc6455b6c4ebf04', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:32:39.000Z'}}, {'blockNum': '0x81ef5c', 'uniqueId': '0x8ec009eeae33fd812054d978c410bbe06178e964f9620b467eabd3ab922b5cba:log:64', 'hash': '0x8ec009eeae33fd812054d978c410bbe06178e964f9620b467eabd3ab922b5cba', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 588.8496532869458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1febee37ce28566e40', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:33:10.000Z'}}, {'blockNum': '0x81ef5c', 'uniqueId': '0x8ec009eeae33fd812054d978c410bbe06178e964f9620b467eabd3ab922b5cba:log:68', 'hash': '0x8ec009eeae33fd812054d978c410bbe06178e964f9620b467eabd3ab922b5cba', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 588.8496532869458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1febee37ce28566e40', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:33:10.000Z'}}, {'blockNum': '0x81ef5e', 'uniqueId': '0x62ad96a9084995d5e00a017e6258d94747f183a8b6c300665108322413de5801:log:26', 'hash': '0x62ad96a9084995d5e00a017e6258d94747f183a8b6c300665108322413de5801', 'from': '0x9f547e89078b24d0e2269ba08eb411102e98ca14', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 405.4023939379966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15fa16a15f6742a6bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:33:32.000Z'}}, {'blockNum': '0x81ef5e', 'uniqueId': '0x62ad96a9084995d5e00a017e6258d94747f183a8b6c300665108322413de5801:log:30', 'hash': '0x62ad96a9084995d5e00a017e6258d94747f183a8b6c300665108322413de5801', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 405.4023939379966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15fa16a15f6742a6bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:33:32.000Z'}}, {'blockNum': '0x81ef9c', 'uniqueId': '0xb3cf5bdb9a13b9fa6874d0461e7bb0467a5532cbe028b4242c42b27ecdd0354e:log:7', 'hash': '0xb3cf5bdb9a13b9fa6874d0461e7bb0467a5532cbe028b4242c42b27ecdd0354e', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0xdddeadf2f83ea85abd1807d396d06566a3dd2838', 'value': 315.7540137122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x111df79a88e7806200', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:50:24.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x63e746b0632be6248d1e41ab2403404b0d606b3f5c906d323a354c129585f20e:log:137', 'hash': '0x63e746b0632be6248d1e41ab2403404b0d606b3f5c906d323a354c129585f20e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 391.12827945415773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1533fec9e08ac91ad0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x63e746b0632be6248d1e41ab2403404b0d606b3f5c906d323a354c129585f20e:log:141', 'hash': '0x63e746b0632be6248d1e41ab2403404b0d606b3f5c906d323a354c129585f20e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 391.12827945415773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1533fec9e08ac91ad0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x0dc04d6766891c040e086acdbb211da627e780e5496a0db2acd2b2f1747d6b17:log:151', 'hash': '0x0dc04d6766891c040e086acdbb211da627e780e5496a0db2acd2b2f1747d6b17', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 681.1644193011612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24ed0e266400f1b551', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x0dc04d6766891c040e086acdbb211da627e780e5496a0db2acd2b2f1747d6b17:log:155', 'hash': '0x0dc04d6766891c040e086acdbb211da627e780e5496a0db2acd2b2f1747d6b17', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 681.1644193011612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24ed0e266400f1b551', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x06e63fa29804776f6332520cea0e748a73824317d1eafd7c6a06acbaebbf73f3:log:170', 'hash': '0x06e63fa29804776f6332520cea0e748a73824317d1eafd7c6a06acbaebbf73f3', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 876.4579352317572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f834c186b8d36f207', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x06e63fa29804776f6332520cea0e748a73824317d1eafd7c6a06acbaebbf73f3:log:174', 'hash': '0x06e63fa29804776f6332520cea0e748a73824317d1eafd7c6a06acbaebbf73f3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 876.4579352317572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f834c186b8d36f207', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa7', 'uniqueId': '0xcb8b1bce98a1126ac0439ba55ba41498c8662c31824571770331b95e24bd14ef:log:28', 'hash': '0xcb8b1bce98a1126ac0439ba55ba41498c8662c31824571770331b95e24bd14ef', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 748.0510061449074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x288d4b0abea4c1efb6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:17.000Z'}}, {'blockNum': '0x81efa7', 'uniqueId': '0xcb8b1bce98a1126ac0439ba55ba41498c8662c31824571770331b95e24bd14ef:log:32', 'hash': '0xcb8b1bce98a1126ac0439ba55ba41498c8662c31824571770331b95e24bd14ef', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 748.0510061449074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x288d4b0abea4c1efb6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:17.000Z'}}, {'blockNum': '0x81efab', 'uniqueId': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb:log:117', 'hash': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb', 'from': '0xdddeadf2f83ea85abd1807d396d06566a3dd2838', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 315.7540137122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x111df79a88e7806200', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:53:09.000Z'}}, {'blockNum': '0x81efab', 'uniqueId': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb:log:120', 'hash': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 315.7540137122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x111df79a88e7806200', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:53:09.000Z'}}, {'blockNum': '0x81efab', 'uniqueId': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb:log:121', 'hash': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 315.7540137122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x111df79a88e7806200', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:53:09.000Z'}}, {'blockNum': '0x81efb7', 'uniqueId': '0xa4581c087ffd16f474bd5f95947b3606a3c4e4cd23de7a55c8eadb047b63afe1:log:8', 'hash': '0xa4581c087ffd16f474bd5f95947b3606a3c4e4cd23de7a55c8eadb047b63afe1', 'from': '0x57886276c3fb7fe85bc74798b2afaaa22d4eb1a3', 'to': '0x576768569cfc4b5d5423837a600f5ca689a7e554', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:55:28.000Z'}}, {'blockNum': '0x81efc6', 'uniqueId': '0x824e76738bc03fdda49436b6fae8d6c395c004647ee7a95f46402505fcc04969:log:77', 'hash': '0x824e76738bc03fdda49436b6fae8d6c395c004647ee7a95f46402505fcc04969', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 133.21380416683778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0738b68117bed15316', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:11.000Z'}}, {'blockNum': '0x81efc6', 'uniqueId': '0x824e76738bc03fdda49436b6fae8d6c395c004647ee7a95f46402505fcc04969:log:81', 'hash': '0x824e76738bc03fdda49436b6fae8d6c395c004647ee7a95f46402505fcc04969', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 133.21380416683778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0738b68117bed15316', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:11.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0x1a635c1d3f4e2a9ce0545abe43f1aa445fb98b6a82ee540bc492c8d90c91cb88:log:39', 'hash': '0x1a635c1d3f4e2a9ce0545abe43f1aa445fb98b6a82ee540bc492c8d90c91cb88', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 900.2602523018567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30cd9ee9af6fb42c43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0x1a635c1d3f4e2a9ce0545abe43f1aa445fb98b6a82ee540bc492c8d90c91cb88:log:43', 'hash': '0x1a635c1d3f4e2a9ce0545abe43f1aa445fb98b6a82ee540bc492c8d90c91cb88', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 900.2602523018567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30cd9ee9af6fb42c43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0xcadaa6c6f311ca23163ff2ba2a6678e034701821761813e91fd32d82c15ffa1c:log:54', 'hash': '0xcadaa6c6f311ca23163ff2ba2a6678e034701821761813e91fd32d82c15ffa1c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3412.5730496355036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb8fef6f40e7baa3816', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0xcadaa6c6f311ca23163ff2ba2a6678e034701821761813e91fd32d82c15ffa1c:log:58', 'hash': '0xcadaa6c6f311ca23163ff2ba2a6678e034701821761813e91fd32d82c15ffa1c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 3412.5730496355036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb8fef6f40e7baa3816', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0x24c062499f95b38a9b9901bdfd863fc0d80a2cc9b79e72b2c1acef536f01397c:log:163', 'hash': '0x24c062499f95b38a9b9901bdfd863fc0d80a2cc9b79e72b2c1acef536f01397c', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 384.0756707644447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d21ee3a3e09bed5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0x24c062499f95b38a9b9901bdfd863fc0d80a2cc9b79e72b2c1acef536f01397c:log:167', 'hash': '0x24c062499f95b38a9b9901bdfd863fc0d80a2cc9b79e72b2c1acef536f01397c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 384.0756707644447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d21ee3a3e09bed5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efca', 'uniqueId': '0x3078b4b29fb33de3808a67f04cbe9bffae8654079b8a411e46bca510a4c13861:log:72', 'hash': '0x3078b4b29fb33de3808a67f04cbe9bffae8654079b8a411e46bca510a4c13861', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 955.4721885873464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33cbd71d3629d336eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:57.000Z'}}, {'blockNum': '0x81efca', 'uniqueId': '0x3078b4b29fb33de3808a67f04cbe9bffae8654079b8a411e46bca510a4c13861:log:76', 'hash': '0x3078b4b29fb33de3808a67f04cbe9bffae8654079b8a411e46bca510a4c13861', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 955.4721885873464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33cbd71d3629d336eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:57.000Z'}}, {'blockNum': '0x81efcd', 'uniqueId': '0xd2f51ad050106358e8fe95283a23023d92c4d636a427d54d8fe17c43aab3e7d0:log:64', 'hash': '0xd2f51ad050106358e8fe95283a23023d92c4d636a427d54d8fe17c43aab3e7d0', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 684.7267521249931, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x251e7e1938492a6cb7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:59:09.000Z'}}, {'blockNum': '0x81efcd', 'uniqueId': '0xd2f51ad050106358e8fe95283a23023d92c4d636a427d54d8fe17c43aab3e7d0:log:68', 'hash': '0xd2f51ad050106358e8fe95283a23023d92c4d636a427d54d8fe17c43aab3e7d0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 684.7267521249931, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x251e7e1938492a6cb7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:59:09.000Z'}}, {'blockNum': '0x81efcd', 'uniqueId': '0x8bb351f7ab10cfb4a6681282ae2b291085ea2657f58a7e48b6d1daf00a85b7d7:log:96', 'hash': '0x8bb351f7ab10cfb4a6681282ae2b291085ea2657f58a7e48b6d1daf00a85b7d7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 244.45991059928932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4090117c66637d6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:59:09.000Z'}}, {'blockNum': '0x81efcd', 'uniqueId': '0x8bb351f7ab10cfb4a6681282ae2b291085ea2657f58a7e48b6d1daf00a85b7d7:log:100', 'hash': '0x8bb351f7ab10cfb4a6681282ae2b291085ea2657f58a7e48b6d1daf00a85b7d7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 244.45991059928932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4090117c66637d6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:59:09.000Z'}}, {'blockNum': '0x81efd7', 'uniqueId': '0x9f748297b7ff43a55864ff27262653f270e2fc2ce7f6dc0f1cecd461d0c330e1:log:17', 'hash': '0x9f748297b7ff43a55864ff27262653f270e2fc2ce7f6dc0f1cecd461d0c330e1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 488.89640011795956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a80cced9f8638f076', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:01:20.000Z'}}, {'blockNum': '0x81efd7', 'uniqueId': '0x9f748297b7ff43a55864ff27262653f270e2fc2ce7f6dc0f1cecd461d0c330e1:log:21', 'hash': '0x9f748297b7ff43a55864ff27262653f270e2fc2ce7f6dc0f1cecd461d0c330e1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc6aacdf2cb021515009098025a0ece472608918e', 'value': 488.89640011795956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a80cced9f8638f076', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:01:20.000Z'}}, {'blockNum': '0x81effb', 'uniqueId': '0x58d3ce1f16a3e17d9472d563dd15be704d62692833b8f3a7a7c94b59b61af073:log:52', 'hash': '0x58d3ce1f16a3e17d9472d563dd15be704d62692833b8f3a7a7c94b59b61af073', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 1059.169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x396aec31c839b68000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:10:49.000Z'}}, {'blockNum': '0x81effc', 'uniqueId': '0xa7259f8ff191699f6e2a3e019496df8faf99c45c3aab8949f648ee186498ff98:log:121', 'hash': '0xa7259f8ff191699f6e2a3e019496df8faf99c45c3aab8949f648ee186498ff98', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'value': 1059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x396893c92d72ac0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:11:12.000Z'}}, {'blockNum': '0x81f018', 'uniqueId': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802:log:52', 'hash': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9.92034563464888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x89ac25cb6257f5fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:16:48.000Z'}}, {'blockNum': '0x81f018', 'uniqueId': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802:log:55', 'hash': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 9.92034563464888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x89ac25cb6257f5fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:16:48.000Z'}}, {'blockNum': '0x81f018', 'uniqueId': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802:log:58', 'hash': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 9.92034563464888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x89ac25cb6257f5fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:16:48.000Z'}}, {'blockNum': '0x81f01b', 'uniqueId': '0x51789ce10832cb730bdda9f76ade7caa48578af2b6b9e878801fb641c2b77341:log:67', 'hash': '0x51789ce10832cb730bdda9f76ade7caa48578af2b6b9e878801fb641c2b77341', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 797.2250785257891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b37b8710a2a8e23db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:17:14.000Z'}}, {'blockNum': '0x81f01b', 'uniqueId': '0x51789ce10832cb730bdda9f76ade7caa48578af2b6b9e878801fb641c2b77341:log:71', 'hash': '0x51789ce10832cb730bdda9f76ade7caa48578af2b6b9e878801fb641c2b77341', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 797.2250785257891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b37b8710a2a8e23db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:17:14.000Z'}}, {'blockNum': '0x81f020', 'uniqueId': '0xdb9f2822a7c1f87351f32ea1086ef31a1bfa5bf22a13ccc139500749f68978ac:log:51', 'hash': '0xdb9f2822a7c1f87351f32ea1086ef31a1bfa5bf22a13ccc139500749f68978ac', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1466.6527021226566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f81e51debe7bdb346', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:18:31.000Z'}}, {'blockNum': '0x81f020', 'uniqueId': '0xdb9f2822a7c1f87351f32ea1086ef31a1bfa5bf22a13ccc139500749f68978ac:log:55', 'hash': '0xdb9f2822a7c1f87351f32ea1086ef31a1bfa5bf22a13ccc139500749f68978ac', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'value': 1466.6527021226566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f81e51debe7bdb346', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:18:31.000Z'}}, {'blockNum': '0x81f029', 'uniqueId': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e:log:134', 'hash': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 244.41479754573683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3fefcb671aa92ec3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:17.000Z'}}, {'blockNum': '0x81f029', 'uniqueId': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e:log:137', 'hash': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 244.41479754573683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3fefcb671aa92ec3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:17.000Z'}}, {'blockNum': '0x81f029', 'uniqueId': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e:log:140', 'hash': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 244.41479754573683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3fefcb671aa92ec3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:17.000Z'}}, {'blockNum': '0x81f029', 'uniqueId': '0x9ec97a85797b8c24e1ec2a536974fbf73e19ace71b9552b38660c82cb4b12ea6:log:166', 'hash': '0x9ec97a85797b8c24e1ec2a536974fbf73e19ace71b9552b38660c82cb4b12ea6', 'from': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x396893c92d72ac0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:17.000Z'}}, {'blockNum': '0x81f02a', 'uniqueId': '0x610f7d9792a03dd93e1dea6a9177910f9bd364e900ee20514febb616c008ddb9:log:25', 'hash': '0x610f7d9792a03dd93e1dea6a9177910f9bd364e900ee20514febb616c008ddb9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 24402.15618560535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052ad7f212a4bfef4d24', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:32.000Z'}}, {'blockNum': '0x81f02a', 'uniqueId': '0x610f7d9792a03dd93e1dea6a9177910f9bd364e900ee20514febb616c008ddb9:log:28', 'hash': '0x610f7d9792a03dd93e1dea6a9177910f9bd364e900ee20514febb616c008ddb9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 24402.15618560535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052ad7f212a4bfef4d24', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:32.000Z'}}, {'blockNum': '0x81f030', 'uniqueId': '0x82d38d91c5ba332ca0e33bc9210a6e7943d3c33ad215ee9d84896d1be81789f6:log:56', 'hash': '0x82d38d91c5ba332ca0e33bc9210a6e7943d3c33ad215ee9d84896d1be81789f6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa3248bf19f3ac2efb40dccbbd71404d2f5ae7a53', 'value': 116.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065701dd5f51ef0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:29.000Z'}}, {'blockNum': '0x81f031', 'uniqueId': '0xf72b328e36e05af45396219262964ffa8d5f84a1b48bc6f318976ea50a447474:log:116', 'hash': '0xf72b328e36e05af45396219262964ffa8d5f84a1b48bc6f318976ea50a447474', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 447.19540726692753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183e153d91035a9c35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:41.000Z'}}, {'blockNum': '0x81f031', 'uniqueId': '0xf72b328e36e05af45396219262964ffa8d5f84a1b48bc6f318976ea50a447474:log:120', 'hash': '0xf72b328e36e05af45396219262964ffa8d5f84a1b48bc6f318976ea50a447474', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 447.19540726692753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183e153d91035a9c35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:41.000Z'}}, {'blockNum': '0x81f032', 'uniqueId': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12:log:50', 'hash': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 24.364694213865207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015220c84c3e73703e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:47.000Z'}}, {'blockNum': '0x81f032', 'uniqueId': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12:log:53', 'hash': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 24.364694213865207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015220c84c3e73703e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:47.000Z'}}, {'blockNum': '0x81f032', 'uniqueId': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12:log:56', 'hash': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 24.364694213865207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015220c84c3e73703e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:47.000Z'}}, {'blockNum': '0x81f032', 'uniqueId': '0xee4a9f2c4e8eb972b5c432d11ceac0a0c4662b69ffd2b3acaaac9e72f945a6a6:log:66', 'hash': '0xee4a9f2c4e8eb972b5c432d11ceac0a0c4662b69ffd2b3acaaac9e72f945a6a6', 'from': '0x83e240d1cbc6ec7f394cd6ba5ed01b7fcdf44ed5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 500.533061134166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b224aa729e8d82ca0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:47.000Z'}}, {'blockNum': '0x81f032', 'uniqueId': '0xee4a9f2c4e8eb972b5c432d11ceac0a0c4662b69ffd2b3acaaac9e72f945a6a6:log:70', 'hash': '0xee4a9f2c4e8eb972b5c432d11ceac0a0c4662b69ffd2b3acaaac9e72f945a6a6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 500.533061134166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b224aa729e8d82ca0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:47.000Z'}}, {'blockNum': '0x81f03d', 'uniqueId': '0x017ecd6c9cd79fd4e3b336d5d6c17d614fc488589a4022c2b34655915dad7033:log:64', 'hash': '0x017ecd6c9cd79fd4e3b336d5d6c17d614fc488589a4022c2b34655915dad7033', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 389.8500464133615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15224197b2e9f5ce3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:25:44.000Z'}}, {'blockNum': '0x81f03d', 'uniqueId': '0x017ecd6c9cd79fd4e3b336d5d6c17d614fc488589a4022c2b34655915dad7033:log:68', 'hash': '0x017ecd6c9cd79fd4e3b336d5d6c17d614fc488589a4022c2b34655915dad7033', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'value': 389.8500464133615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15224197b2e9f5ce3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:25:44.000Z'}}, {'blockNum': '0x81f03e', 'uniqueId': '0x2b85d94368ee6a1018c5483afc455c413309dc852ebd5d7acb3acecfcfe14162:log:15', 'hash': '0x2b85d94368ee6a1018c5483afc455c413309dc852ebd5d7acb3acecfcfe14162', 'from': '0xa3248bf19f3ac2efb40dccbbd71404d2f5ae7a53', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 116.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065701dd5f51ef0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:05.000Z'}}, {'blockNum': '0x81f03f', 'uniqueId': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473:log:180', 'hash': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 97.4594103344617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05488561564c9f7a4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:12.000Z'}}, {'blockNum': '0x81f03f', 'uniqueId': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473:log:183', 'hash': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 97.4594103344617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05488561564c9f7a4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:12.000Z'}}, {'blockNum': '0x81f03f', 'uniqueId': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473:log:186', 'hash': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 97.4594103344617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05488561564c9f7a4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:12.000Z'}}, {'blockNum': '0x81f043', 'uniqueId': '0x54b78fd6f1b1d3ecf7fa1a2ba11dd770ab29ac25bd429b81d5274f2bf9ee3c85:log:145', 'hash': '0x54b78fd6f1b1d3ecf7fa1a2ba11dd770ab29ac25bd429b81d5274f2bf9ee3c85', 'from': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1080.5608352325194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a93cb429659b5ca7f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:46.000Z'}}, {'blockNum': '0x81f043', 'uniqueId': '0x54b78fd6f1b1d3ecf7fa1a2ba11dd770ab29ac25bd429b81d5274f2bf9ee3c85:log:149', 'hash': '0x54b78fd6f1b1d3ecf7fa1a2ba11dd770ab29ac25bd429b81d5274f2bf9ee3c85', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1080.5608352325194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a93cb429659b5ca7f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:46.000Z'}}, {'blockNum': '0x81f04f', 'uniqueId': '0x036e85121121e7990c0818c30f1a82f92bfd8f96b2e17a0fa188d8b2e387cb30:log:102', 'hash': '0x036e85121121e7990c0818c30f1a82f92bfd8f96b2e17a0fa188d8b2e387cb30', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 262.39527902062224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e39774c0a1bb25bd1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:29:36.000Z'}}, {'blockNum': '0x81f04f', 'uniqueId': '0x036e85121121e7990c0818c30f1a82f92bfd8f96b2e17a0fa188d8b2e387cb30:log:106', 'hash': '0x036e85121121e7990c0818c30f1a82f92bfd8f96b2e17a0fa188d8b2e387cb30', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 262.39527902062224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e39774c0a1bb25bd1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:29:36.000Z'}}, {'blockNum': '0x81f053', 'uniqueId': '0x40841e9e3f7ac2df13d70ecdb79019458e87ce4c74e8e5c57ae1a6970f312d96:log:142', 'hash': '0x40841e9e3f7ac2df13d70ecdb79019458e87ce4c74e8e5c57ae1a6970f312d96', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x7fd8a3e656c90a0e3cd703e4ba46aa4c9d9e84fb', 'value': 341.5028015726495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12834dacabc27bcaf3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:30:02.000Z'}}, {'blockNum': '0x81f054', 'uniqueId': '0xbd8d9bf6284c89b56d3cc7b2a100bdcf90995d346da76e5e0162a13e4558d19d:log:102', 'hash': '0xbd8d9bf6284c89b56d3cc7b2a100bdcf90995d346da76e5e0162a13e4558d19d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 609.2000445136018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21065954ce116421fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:30:11.000Z'}}, {'blockNum': '0x81f054', 'uniqueId': '0xbd8d9bf6284c89b56d3cc7b2a100bdcf90995d346da76e5e0162a13e4558d19d:log:106', 'hash': '0xbd8d9bf6284c89b56d3cc7b2a100bdcf90995d346da76e5e0162a13e4558d19d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 609.2000445136018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21065954ce116421fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:30:11.000Z'}}, {'blockNum': '0x81f061', 'uniqueId': '0x537ed86c9936568c2fe5060f1c4819f848e966c98bef21b5d218815f4e042f19:log:21', 'hash': '0x537ed86c9936568c2fe5060f1c4819f848e966c98bef21b5d218815f4e042f19', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 254.85581796066703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd0d5c026b72d146a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:31:48.000Z'}}, {'blockNum': '0x81f061', 'uniqueId': '0x537ed86c9936568c2fe5060f1c4819f848e966c98bef21b5d218815f4e042f19:log:25', 'hash': '0x537ed86c9936568c2fe5060f1c4819f848e966c98bef21b5d218815f4e042f19', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 254.85581796066703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd0d5c026b72d146a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:31:48.000Z'}}, {'blockNum': '0x81f063', 'uniqueId': '0x5cb4961bd16f6a04ce48016b8e3e464117da53a8d6fba548334268a72c1b7c12:log:10', 'hash': '0x5cb4961bd16f6a04ce48016b8e3e464117da53a8d6fba548334268a72c1b7c12', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdd4c592dd07d4e9f56a4f50f36771d23b9a6d04c', 'value': 11.88546544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa4f1a7d88561c000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:32:25.000Z'}}, {'blockNum': '0x81f071', 'uniqueId': '0xe40a6d8d1c74bc701d7c39566ab19e8c5dcda689a5a9cd16a411b8cce7fcea80:log:49', 'hash': '0xe40a6d8d1c74bc701d7c39566ab19e8c5dcda689a5a9cd16a411b8cce7fcea80', 'from': '0xdd4c592dd07d4e9f56a4f50f36771d23b9a6d04c', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 11.88546544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa4f1a7d88561c000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:34:28.000Z'}}, {'blockNum': '0x81f077', 'uniqueId': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b:log:160', 'hash': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.3413605323029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6b38515be37c1efd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:36:24.000Z'}}, {'blockNum': '0x81f077', 'uniqueId': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b:log:163', 'hash': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 487.3413605323029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6b38515be37c1efd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:36:24.000Z'}}, {'blockNum': '0x81f077', 'uniqueId': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b:log:166', 'hash': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 487.3413605323029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6b38515be37c1efd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:36:24.000Z'}}, {'blockNum': '0x81f0b8', 'uniqueId': '0x7f476e28e7ead0153801c423002dd065b4ffb61852880bc9b960bdd462bcc29e:log:6', 'hash': '0x7f476e28e7ead0153801c423002dd065b4ffb61852880bc9b960bdd462bcc29e', 'from': '0xbac94dc2411f494c438ca667a4836e3dccaa4920', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 606.6913677442114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20e388b893219b1c7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:50:35.000Z'}}, {'blockNum': '0x81f0b8', 'uniqueId': '0x7f476e28e7ead0153801c423002dd065b4ffb61852880bc9b960bdd462bcc29e:log:10', 'hash': '0x7f476e28e7ead0153801c423002dd065b4ffb61852880bc9b960bdd462bcc29e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 606.6913677442114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20e388b893219b1c7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:50:35.000Z'}}, {'blockNum': '0x81f0b9', 'uniqueId': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c:log:86', 'hash': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c', 'from': '0xa523b5195ba2f859607785e34d9607558413e72b', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 113.30265843827425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x062463e78be0c0802c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:50:49.000Z'}}, {'blockNum': '0x81f0b9', 'uniqueId': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c:log:89', 'hash': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 113.30265843827425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x062463e78be0c0802c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:50:49.000Z'}}, {'blockNum': '0x81f0b9', 'uniqueId': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c:log:91', 'hash': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 113.30265843827425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x062463e78be0c0802c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:50:49.000Z'}}, {'blockNum': '0x81f0c7', 'uniqueId': '0x64211088fb6e06457de677d2f96994ad70f3f92051c49e73bef5dcee2b5be097:log:99', 'hash': '0x64211088fb6e06457de677d2f96994ad70f3f92051c49e73bef5dcee2b5be097', 'from': '0x80bac595727e9bb690d2b2354450e176f44903eb', 'to': '0x466611822da9e4f52d6ddd7af277b58d8195d5f9', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:53:32.000Z'}}, {'blockNum': '0x81f0cf', 'uniqueId': '0xb2456b21f240175f24d52861cafbd2b2d593df9dde234885eca0426f52e1bac4:log:54', 'hash': '0xb2456b21f240175f24d52861cafbd2b2d593df9dde234885eca0426f52e1bac4', 'from': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1351.7103732575401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4946bfeecf2a5ae899', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:56:31.000Z'}}, {'blockNum': '0x81f0cf', 'uniqueId': '0xb2456b21f240175f24d52861cafbd2b2d593df9dde234885eca0426f52e1bac4:log:58', 'hash': '0xb2456b21f240175f24d52861cafbd2b2d593df9dde234885eca0426f52e1bac4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1351.7103732575401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4946bfeecf2a5ae899', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:56:31.000Z'}}, {'blockNum': '0x81f0d7', 'uniqueId': '0x316a0bfd40ce6b44affd42f26e24396e11a4a5579fe42383739920dcebd68434:log:55', 'hash': '0x316a0bfd40ce6b44affd42f26e24396e11a4a5579fe42383739920dcebd68434', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 469.7743436537185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19776dbc94f82c0c6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:59:06.000Z'}}, {'blockNum': '0x81f0d7', 'uniqueId': '0x316a0bfd40ce6b44affd42f26e24396e11a4a5579fe42383739920dcebd68434:log:59', 'hash': '0x316a0bfd40ce6b44affd42f26e24396e11a4a5579fe42383739920dcebd68434', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 469.7743436537185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19776dbc94f82c0c6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:59:06.000Z'}}, {'blockNum': '0x81f0d9', 'uniqueId': '0x8c81eb458b50fd2de518fa8e450131486abc7a742464157077273c74e4b97d8f:log:75', 'hash': '0x8c81eb458b50fd2de518fa8e450131486abc7a742464157077273c74e4b97d8f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.3071829693401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6abee50be7cc7cb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:59:27.000Z'}}, {'blockNum': '0x81f0d9', 'uniqueId': '0x8c81eb458b50fd2de518fa8e450131486abc7a742464157077273c74e4b97d8f:log:79', 'hash': '0x8c81eb458b50fd2de518fa8e450131486abc7a742464157077273c74e4b97d8f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'value': 487.3071829693401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6abee50be7cc7cb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:59:27.000Z'}}, {'blockNum': '0x81f0dd', 'uniqueId': '0x07569f9bb1d4ed52ddeb746adcbfcad837cc21b5f3df36a1984180dc154e651f:log:234', 'hash': '0x07569f9bb1d4ed52ddeb746adcbfcad837cc21b5f3df36a1984180dc154e651f', 'from': '0x92a497f0bcdeaa5345f6aa4a3357ee3cbe2e7226', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 242.72416135686487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d287972bf1086c307', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:00:22.000Z'}}, {'blockNum': '0x81f0dd', 'uniqueId': '0x07569f9bb1d4ed52ddeb746adcbfcad837cc21b5f3df36a1984180dc154e651f:log:238', 'hash': '0x07569f9bb1d4ed52ddeb746adcbfcad837cc21b5f3df36a1984180dc154e651f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 242.72416135686487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d287972bf1086c307', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:00:22.000Z'}}, {'blockNum': '0x81f0e0', 'uniqueId': '0x85c6da7cf83673d3cf77ce89f5024b22e581de7fd068548ccc4cd07a7900102f:log:38', 'hash': '0x85c6da7cf83673d3cf77ce89f5024b22e581de7fd068548ccc4cd07a7900102f', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 390.7022173109214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x152e151c9d7ef212b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:00:47.000Z'}}, {'blockNum': '0x81f0e0', 'uniqueId': '0x85c6da7cf83673d3cf77ce89f5024b22e581de7fd068548ccc4cd07a7900102f:log:42', 'hash': '0x85c6da7cf83673d3cf77ce89f5024b22e581de7fd068548ccc4cd07a7900102f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 390.7022173109214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x152e151c9d7ef212b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:00:47.000Z'}}, {'blockNum': '0x81f0e2', 'uniqueId': '0xd5c4851262bf7825b7cff639b5eed2633dac81e31611b6a9965699fc58e63cfa:log:47', 'hash': '0xd5c4851262bf7825b7cff639b5eed2633dac81e31611b6a9965699fc58e63cfa', 'from': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.2613156346276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27e9ada5b0a7bd098e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:00.000Z'}}, {'blockNum': '0x81f0e2', 'uniqueId': '0xd5c4851262bf7825b7cff639b5eed2633dac81e31611b6a9965699fc58e63cfa:log:51', 'hash': '0xd5c4851262bf7825b7cff639b5eed2633dac81e31611b6a9965699fc58e63cfa', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 736.2613156346276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27e9ada5b0a7bd098e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:00.000Z'}}, {'blockNum': '0x81f0e3', 'uniqueId': '0xb0e9aadf676f7c3bf521efe6a11ad3f0c0dfce25d52b2e41c752115af0876445:log:33', 'hash': '0xb0e9aadf676f7c3bf521efe6a11ad3f0c0dfce25d52b2e41c752115af0876445', 'from': '0x2ce573c05c9b8f6ef1a476cc40250972f1f3d63c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4349.390875443627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xebc7ec7527cea6f414', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:16.000Z'}}, {'blockNum': '0x81f0e3', 'uniqueId': '0xb0e9aadf676f7c3bf521efe6a11ad3f0c0dfce25d52b2e41c752115af0876445:log:37', 'hash': '0xb0e9aadf676f7c3bf521efe6a11ad3f0c0dfce25d52b2e41c752115af0876445', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4349.390875443627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xebc7ec7527cea6f414', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:16.000Z'}}, {'blockNum': '0x81f0e3', 'uniqueId': '0xf5d929e4d561a5f7c3f0611d3ad83aeb1589c56cddc62f3e54ec5a0e51129507:log:54', 'hash': '0xf5d929e4d561a5f7c3f0611d3ad83aeb1589c56cddc62f3e54ec5a0e51129507', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1219.287340947652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x421902d087db647655', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:16.000Z'}}, {'blockNum': '0x81f0e3', 'uniqueId': '0xf5d929e4d561a5f7c3f0611d3ad83aeb1589c56cddc62f3e54ec5a0e51129507:log:58', 'hash': '0xf5d929e4d561a5f7c3f0611d3ad83aeb1589c56cddc62f3e54ec5a0e51129507', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2ce573c05c9b8f6ef1a476cc40250972f1f3d63c', 'value': 1219.287340947652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x421902d087db647655', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:16.000Z'}}, {'blockNum': '0x81f0ee', 'uniqueId': '0x3b949469f7131ded9752bd0dab77a2106ddef7fd3a22cd09ee408be0a8d718ba:log:102', 'hash': '0x3b949469f7131ded9752bd0dab77a2106ddef7fd3a22cd09ee408be0a8d718ba', 'from': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1046.5632184542094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38bbfb764128b0fbaa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:04:38.000Z'}}, {'blockNum': '0x81f0ee', 'uniqueId': '0x3b949469f7131ded9752bd0dab77a2106ddef7fd3a22cd09ee408be0a8d718ba:log:106', 'hash': '0x3b949469f7131ded9752bd0dab77a2106ddef7fd3a22cd09ee408be0a8d718ba', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1046.5632184542094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38bbfb764128b0fbaa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:04:38.000Z'}}, {'blockNum': '0x81f0ee', 'uniqueId': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea:log:158', 'hash': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea', 'from': '0x41f57a9c25d6f9607b85fac6fe778c265d8575f6', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:04:38.000Z'}}, {'blockNum': '0x81f0ee', 'uniqueId': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea:log:161', 'hash': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:04:38.000Z'}}, {'blockNum': '0x81f0ee', 'uniqueId': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea:log:162', 'hash': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:04:38.000Z'}}, {'blockNum': '0x81f0f5', 'uniqueId': '0x276cc720c2e00d3db67e1adc0add7c24e69b75cb1380015db3d3c907a99cc35b:log:113', 'hash': '0x276cc720c2e00d3db67e1adc0add7c24e69b75cb1380015db3d3c907a99cc35b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 14.145635756547637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc44f64c617160344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:07:51.000Z'}}, {'blockNum': '0x81f0f5', 'uniqueId': '0x276cc720c2e00d3db67e1adc0add7c24e69b75cb1380015db3d3c907a99cc35b:log:117', 'hash': '0x276cc720c2e00d3db67e1adc0add7c24e69b75cb1380015db3d3c907a99cc35b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 14.145635756547637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc44f64c617160344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:07:51.000Z'}}, {'blockNum': '0x81f0fb', 'uniqueId': '0x6d4325cdbc9960fa0e05a19cfe1d93fae55721c8f5d909fd8ee5932d1b18663e:log:50', 'hash': '0x6d4325cdbc9960fa0e05a19cfe1d93fae55721c8f5d909fd8ee5932d1b18663e', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1930.7827775313965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x68aafe627070f3da53', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:08:30.000Z'}}, {'blockNum': '0x81f0fb', 'uniqueId': '0x6d4325cdbc9960fa0e05a19cfe1d93fae55721c8f5d909fd8ee5932d1b18663e:log:55', 'hash': '0x6d4325cdbc9960fa0e05a19cfe1d93fae55721c8f5d909fd8ee5932d1b18663e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 1930.7827775313965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x68aafe627070f3da53', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:08:30.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x862e6bdbc2fcb21b8fcdf56e4a5b82de2fd3907c4ae3ee4a66215864dd3f7ce3:log:33', 'hash': '0x862e6bdbc2fcb21b8fcdf56e4a5b82de2fd3907c4ae3ee4a66215864dd3f7ce3', 'from': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1480.0618854219433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x503bfc1b1659d4a336', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x862e6bdbc2fcb21b8fcdf56e4a5b82de2fd3907c4ae3ee4a66215864dd3f7ce3:log:37', 'hash': '0x862e6bdbc2fcb21b8fcdf56e4a5b82de2fd3907c4ae3ee4a66215864dd3f7ce3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1480.0618854219433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x503bfc1b1659d4a336', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x280893664c98691a028caa19387168037699dffcb1ee64e168a8340522795d2e:log:49', 'hash': '0x280893664c98691a028caa19387168037699dffcb1ee64e168a8340522795d2e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.85885346195505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a7266d26fc92e2feb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x280893664c98691a028caa19387168037699dffcb1ee64e168a8340522795d2e:log:53', 'hash': '0x280893664c98691a028caa19387168037699dffcb1ee64e168a8340522795d2e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 487.85885346195505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a7266d26fc92e2feb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x3daf732176a4cd1af16c09d12d27dbd0ae3b7e03128a49a4a60dc25dc1d26b88:log:65', 'hash': '0x3daf732176a4cd1af16c09d12d27dbd0ae3b7e03128a49a4a60dc25dc1d26b88', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 253.6456807507306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc00a7ac5376f1b1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x3daf732176a4cd1af16c09d12d27dbd0ae3b7e03128a49a4a60dc25dc1d26b88:log:69', 'hash': '0x3daf732176a4cd1af16c09d12d27dbd0ae3b7e03128a49a4a60dc25dc1d26b88', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 253.6456807507306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc00a7ac5376f1b1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f10b', 'uniqueId': '0x173eed8a037d26dbdeab48b33bfa1fa32043ab1c01d61b830b3e9640e6264adf:log:166', 'hash': '0x173eed8a037d26dbdeab48b33bfa1fa32043ab1c01d61b830b3e9640e6264adf', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 531.0166204283288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cc95602d53af93a59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:11:19.000Z'}}, {'blockNum': '0x81f10b', 'uniqueId': '0x173eed8a037d26dbdeab48b33bfa1fa32043ab1c01d61b830b3e9640e6264adf:log:170', 'hash': '0x173eed8a037d26dbdeab48b33bfa1fa32043ab1c01d61b830b3e9640e6264adf', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'value': 531.0166204283288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cc95602d53af93a59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:11:19.000Z'}}, {'blockNum': '0x81f117', 'uniqueId': '0xdfe1b8344d47dd2439ca9d7c6c2524cd57a96e58264b1a653e4a0f49db8b008c:log:136', 'hash': '0xdfe1b8344d47dd2439ca9d7c6c2524cd57a96e58264b1a653e4a0f49db8b008c', 'from': '0x466611822da9e4f52d6ddd7af277b58d8195d5f9', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a1f0a87470e840000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:13:21.000Z'}}, {'blockNum': '0x81f117', 'uniqueId': '0xdfe1b8344d47dd2439ca9d7c6c2524cd57a96e58264b1a653e4a0f49db8b008c:log:139', 'hash': '0xdfe1b8344d47dd2439ca9d7c6c2524cd57a96e58264b1a653e4a0f49db8b008c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a1f0a87470e840000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:13:21.000Z'}}, {'blockNum': '0x81f11a', 'uniqueId': '0x3f4bb6c06732da6c445bfedc0529f2db1e38ce357af9b1d048d7619fcaa95e0f:log:35', 'hash': '0x3f4bb6c06732da6c445bfedc0529f2db1e38ce357af9b1d048d7619fcaa95e0f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4876.702940529008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01085dd93e8816667951', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:13:37.000Z'}}, {'blockNum': '0x81f11a', 'uniqueId': '0x3f4bb6c06732da6c445bfedc0529f2db1e38ce357af9b1d048d7619fcaa95e0f:log:38', 'hash': '0x3f4bb6c06732da6c445bfedc0529f2db1e38ce357af9b1d048d7619fcaa95e0f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7059010320d07a47d2ad54db88bb89ea644c3e6f', 'value': 4876.702940529008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01085dd93e8816667951', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:13:37.000Z'}}, {'blockNum': '0x81f11d', 'uniqueId': '0xeb871a3d9497877d2caeacddbc728d08a5552196f29a7f20e6ae632903293bc0:log:80', 'hash': '0xeb871a3d9497877d2caeacddbc728d08a5552196f29a7f20e6ae632903293bc0', 'from': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.675411405449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a997d3ef6a8710070', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:14:23.000Z'}}, {'blockNum': '0x81f11d', 'uniqueId': '0xeb871a3d9497877d2caeacddbc728d08a5552196f29a7f20e6ae632903293bc0:log:84', 'hash': '0xeb871a3d9497877d2caeacddbc728d08a5552196f29a7f20e6ae632903293bc0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 490.675411405449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a997d3ef6a8710070', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:14:23.000Z'}}, {'blockNum': '0x81f11f', 'uniqueId': '0x106feddb513f4e0e90ad1a4cc9fd3e9247b4ca5ec354c58922b4beb40f778a59:log:91', 'hash': '0x106feddb513f4e0e90ad1a4cc9fd3e9247b4ca5ec354c58922b4beb40f778a59', 'from': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 355.44611119427555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1344ce42e5a0ca8eef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:15:02.000Z'}}, {'blockNum': '0x81f11f', 'uniqueId': '0x106feddb513f4e0e90ad1a4cc9fd3e9247b4ca5ec354c58922b4beb40f778a59:log:95', 'hash': '0x106feddb513f4e0e90ad1a4cc9fd3e9247b4ca5ec354c58922b4beb40f778a59', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 355.44611119427555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1344ce42e5a0ca8eef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:15:02.000Z'}}, {'blockNum': '0x81f13b', 'uniqueId': '0x8dd0d30345ec0c42255d3bf9213cf7b490e531ed0c6298930d7a103fe01f50ba:log:13', 'hash': '0x8dd0d30345ec0c42255d3bf9213cf7b490e531ed0c6298930d7a103fe01f50ba', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 942.8684335334889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x331ced94c4849d155a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:15.000Z'}}, {'blockNum': '0x81f13b', 'uniqueId': '0x8dd0d30345ec0c42255d3bf9213cf7b490e531ed0c6298930d7a103fe01f50ba:log:17', 'hash': '0x8dd0d30345ec0c42255d3bf9213cf7b490e531ed0c6298930d7a103fe01f50ba', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 942.8684335334889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x331ced94c4849d155a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:15.000Z'}}, {'blockNum': '0x81f13b', 'uniqueId': '0x557e8c0a91af47942cf7100f77088672cc362091cd599c40f71f5277488b80b1:log:28', 'hash': '0x557e8c0a91af47942cf7100f77088672cc362091cd599c40f71f5277488b80b1', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 688.432827209895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2551ecb8dfbbaa1d1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:15.000Z'}}, {'blockNum': '0x81f13b', 'uniqueId': '0x557e8c0a91af47942cf7100f77088672cc362091cd599c40f71f5277488b80b1:log:32', 'hash': '0x557e8c0a91af47942cf7100f77088672cc362091cd599c40f71f5277488b80b1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 688.432827209895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2551ecb8dfbbaa1d1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:15.000Z'}}, {'blockNum': '0x81f13c', 'uniqueId': '0x0bd6a050c580dde5b54b95e13e19f769b213ff49b3fa3e19f52df02c56ea3b05:log:98', 'hash': '0x0bd6a050c580dde5b54b95e13e19f769b213ff49b3fa3e19f52df02c56ea3b05', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1128.6318335956482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d2ee9c0e852644be5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:37.000Z'}}, {'blockNum': '0x81f13c', 'uniqueId': '0x0bd6a050c580dde5b54b95e13e19f769b213ff49b3fa3e19f52df02c56ea3b05:log:102', 'hash': '0x0bd6a050c580dde5b54b95e13e19f769b213ff49b3fa3e19f52df02c56ea3b05', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1128.6318335956482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d2ee9c0e852644be5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:37.000Z'}}, {'blockNum': '0x81f13d', 'uniqueId': '0xf3b5443a99c80b38af37a041015c7ca521c1608031840d1788f13eecf218cec4:log:48', 'hash': '0xf3b5443a99c80b38af37a041015c7ca521c1608031840d1788f13eecf218cec4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 703.2884980511309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x262016aacb9ba7b8f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:48.000Z'}}, {'blockNum': '0x81f13d', 'uniqueId': '0xf3b5443a99c80b38af37a041015c7ca521c1608031840d1788f13eecf218cec4:log:52', 'hash': '0xf3b5443a99c80b38af37a041015c7ca521c1608031840d1788f13eecf218cec4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 703.2884980511309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x262016aacb9ba7b8f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:48.000Z'}}, {'blockNum': '0x81f148', 'uniqueId': '0x0bf0fd97af0654a4ffae6440c88d436d8066e68a6085e641ceb24aa0111c094a:log:70', 'hash': '0x0bf0fd97af0654a4ffae6440c88d436d8066e68a6085e641ceb24aa0111c094a', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 344.56843490547163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12add8fdf1d8f187cd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:24:06.000Z'}}, {'blockNum': '0x81f148', 'uniqueId': '0x0bf0fd97af0654a4ffae6440c88d436d8066e68a6085e641ceb24aa0111c094a:log:74', 'hash': '0x0bf0fd97af0654a4ffae6440c88d436d8066e68a6085e641ceb24aa0111c094a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 344.56843490547163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12add8fdf1d8f187cd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:24:06.000Z'}}, {'blockNum': '0x81f154', 'uniqueId': '0x5cacca15e7e1c4ea30dc12a1c60a93f6a8f18bba49c3c17141a58faa3bcd1076:log:58', 'hash': '0x5cacca15e7e1c4ea30dc12a1c60a93f6a8f18bba49c3c17141a58faa3bcd1076', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 152.8234229759484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0848d9dd80e0ac9c9e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:27:15.000Z'}}, {'blockNum': '0x81f154', 'uniqueId': '0x5cacca15e7e1c4ea30dc12a1c60a93f6a8f18bba49c3c17141a58faa3bcd1076:log:63', 'hash': '0x5cacca15e7e1c4ea30dc12a1c60a93f6a8f18bba49c3c17141a58faa3bcd1076', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x73f73391e5f56ce371a61fc3e18200a73d44cf6f', 'value': 152.8234229759484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0848d9dd80e0ac9c9e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:27:15.000Z'}}, {'blockNum': '0x81f187', 'uniqueId': '0xed01f8a0a53afd21322dc6bb5e2786b5e70b47e5fd362f90b9e342b7036a5447:log:47', 'hash': '0xed01f8a0a53afd21322dc6bb5e2786b5e70b47e5fd362f90b9e342b7036a5447', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4.877216763220558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43af5ace385780b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:37:34.000Z'}}, {'blockNum': '0x81f187', 'uniqueId': '0xed01f8a0a53afd21322dc6bb5e2786b5e70b47e5fd362f90b9e342b7036a5447:log:51', 'hash': '0xed01f8a0a53afd21322dc6bb5e2786b5e70b47e5fd362f90b9e342b7036a5447', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 4.877216763220558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43af5ace385780b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:37:34.000Z'}}, {'blockNum': '0x81f18f', 'uniqueId': '0xea8f6084b528fc6b57dc9ebed37a6157c88be1fee6e4c0fdf3c5777e06f286d4:log:69', 'hash': '0xea8f6084b528fc6b57dc9ebed37a6157c88be1fee6e4c0fdf3c5777e06f286d4', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 987.8334598444121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x358cf171f66748cdea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:38:57.000Z'}}, {'blockNum': '0x81f18f', 'uniqueId': '0xea8f6084b528fc6b57dc9ebed37a6157c88be1fee6e4c0fdf3c5777e06f286d4:log:73', 'hash': '0xea8f6084b528fc6b57dc9ebed37a6157c88be1fee6e4c0fdf3c5777e06f286d4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 987.8334598444121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x358cf171f66748cdea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:38:57.000Z'}}, {'blockNum': '0x81f197', 'uniqueId': '0x445497a4a30536bb2d60969a7c8f9e852e22812f20834653ff7630d95e2821d6:log:24', 'hash': '0x445497a4a30536bb2d60969a7c8f9e852e22812f20834653ff7630d95e2821d6', 'from': '0xe88d6d63389d5c91e6348e379913f330739ad2c4', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 509.9673240823878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ba537e3548b3b4c06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:40:11.000Z'}}, {'blockNum': '0x81f197', 'uniqueId': '0x445497a4a30536bb2d60969a7c8f9e852e22812f20834653ff7630d95e2821d6:log:28', 'hash': '0x445497a4a30536bb2d60969a7c8f9e852e22812f20834653ff7630d95e2821d6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 509.9673240823878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ba537e3548b3b4c06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:40:11.000Z'}}, {'blockNum': '0x81f19d', 'uniqueId': '0x7d07225087c63437b152d6a597f039c691474664a8a99d4b0058603c3fd03863:log:82', 'hash': '0x7d07225087c63437b152d6a597f039c691474664a8a99d4b0058603c3fd03863', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 985.326818890226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x356a28114ba1939344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:41:36.000Z'}}, {'blockNum': '0x81f19d', 'uniqueId': '0x7d07225087c63437b152d6a597f039c691474664a8a99d4b0058603c3fd03863:log:86', 'hash': '0x7d07225087c63437b152d6a597f039c691474664a8a99d4b0058603c3fd03863', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 985.326818890226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x356a28114ba1939344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:41:36.000Z'}}, {'blockNum': '0x81f1a3', 'uniqueId': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742:log:107', 'hash': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742', 'from': '0x7059010320d07a47d2ad54db88bb89ea644c3e6f', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4876.702940529008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01085dd93e8816667951', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:42.000Z'}}, {'blockNum': '0x81f1a3', 'uniqueId': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742:log:110', 'hash': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4876.702940529008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01085dd93e8816667951', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:42.000Z'}}, {'blockNum': '0x81f1a3', 'uniqueId': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742:log:111', 'hash': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4876.702940529008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01085dd93e8816667951', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:42.000Z'}}, {'blockNum': '0x81f1a5', 'uniqueId': '0x9d698d6a496d00b88ea12dc54e45951264007efa64c4bf29739dbed9e364c9d2:log:28', 'hash': '0x9d698d6a496d00b88ea12dc54e45951264007efa64c4bf29739dbed9e364c9d2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4.880647972545573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43bb8b78e54f3056', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:46.000Z'}}, {'blockNum': '0x81f1a5', 'uniqueId': '0x9d698d6a496d00b88ea12dc54e45951264007efa64c4bf29739dbed9e364c9d2:log:32', 'hash': '0x9d698d6a496d00b88ea12dc54e45951264007efa64c4bf29739dbed9e364c9d2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 4.880647972545573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43bb8b78e54f3056', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:46.000Z'}}, {'blockNum': '0x81f1a5', 'uniqueId': '0xd13af326b4000a5016904f587030796f5f95227a8583e2a0522c1b66bddba739:log:56', 'hash': '0xd13af326b4000a5016904f587030796f5f95227a8583e2a0522c1b66bddba739', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1342.5746007406688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48c7f7261bc974bf41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:46.000Z'}}, {'blockNum': '0x81f1a5', 'uniqueId': '0xd13af326b4000a5016904f587030796f5f95227a8583e2a0522c1b66bddba739:log:60', 'hash': '0xd13af326b4000a5016904f587030796f5f95227a8583e2a0522c1b66bddba739', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1342.5746007406688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48c7f7261bc974bf41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:46.000Z'}}, {'blockNum': '0x81f1a8', 'uniqueId': '0x8a3327668c81fc99b816d1dbeb3889c4c7eee6b468b19e8fc7ae936f640e0720:log:233', 'hash': '0x8a3327668c81fc99b816d1dbeb3889c4c7eee6b468b19e8fc7ae936f640e0720', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 118.63782262552296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x066e6e371b9818af10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:43:09.000Z'}}, {'blockNum': '0x81f1a8', 'uniqueId': '0x8a3327668c81fc99b816d1dbeb3889c4c7eee6b468b19e8fc7ae936f640e0720:log:235', 'hash': '0x8a3327668c81fc99b816d1dbeb3889c4c7eee6b468b19e8fc7ae936f640e0720', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x10b4a87cc41ab72ec0955786c7645e32dcf56049', 'value': 118.63782262552296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x066e6e371b9818af10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:43:09.000Z'}}, {'blockNum': '0x81f1ac', 'uniqueId': '0x912125649616eab52a6415fd2ac8658e30ed3ffe2a9d2f5393ea4c85de968989:log:74', 'hash': '0x912125649616eab52a6415fd2ac8658e30ed3ffe2a9d2f5393ea4c85de968989', 'from': '0xdda1bfaf552b0f303d27853a4a13dd440c7e849f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1361.4636767680593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x49ce1aa0ad4569bda2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:43:43.000Z'}}, {'blockNum': '0x81f1ac', 'uniqueId': '0x912125649616eab52a6415fd2ac8658e30ed3ffe2a9d2f5393ea4c85de968989:log:79', 'hash': '0x912125649616eab52a6415fd2ac8658e30ed3ffe2a9d2f5393ea4c85de968989', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 1361.4636767680593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x49ce1aa0ad4569bda2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:43:43.000Z'}}, {'blockNum': '0x81f1ba', 'uniqueId': '0x4b0a1623fbd5f2b14b12e7b110b7e6eee91d2708a79a35b8ef6a9cdb778092d0:log:37', 'hash': '0x4b0a1623fbd5f2b14b12e7b110b7e6eee91d2708a79a35b8ef6a9cdb778092d0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 976.2382344746645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ec06edec40e108fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:47:46.000Z'}}, {'blockNum': '0x81f1ba', 'uniqueId': '0x4b0a1623fbd5f2b14b12e7b110b7e6eee91d2708a79a35b8ef6a9cdb778092d0:log:40', 'hash': '0x4b0a1623fbd5f2b14b12e7b110b7e6eee91d2708a79a35b8ef6a9cdb778092d0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xefd0199657b444856e3259ed8e3c39ee43cf51dc', 'value': 976.2382344746645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ec06edec40e108fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:47:46.000Z'}}, {'blockNum': '0x81f1bc', 'uniqueId': '0x8dd92a2cabfad32d998e1c2ff1cb2c569261aa8d0e1eea9ad1e6229dc1800cdb:log:131', 'hash': '0x8dd92a2cabfad32d998e1c2ff1cb2c569261aa8d0e1eea9ad1e6229dc1800cdb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 116.16406189296919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x064c19a6d3fceb4bf8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:48:13.000Z'}}, {'blockNum': '0x81f1bc', 'uniqueId': '0x8dd92a2cabfad32d998e1c2ff1cb2c569261aa8d0e1eea9ad1e6229dc1800cdb:log:135', 'hash': '0x8dd92a2cabfad32d998e1c2ff1cb2c569261aa8d0e1eea9ad1e6229dc1800cdb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 116.16406189296919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x064c19a6d3fceb4bf8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:48:13.000Z'}}, {'blockNum': '0x81f1c2', 'uniqueId': '0x7d6853565731f108749cca5b1712c453a2edfe67896362fea35c236fbd9a2007:log:181', 'hash': '0x7d6853565731f108749cca5b1712c453a2edfe67896362fea35c236fbd9a2007', 'from': '0x7f913e9deef8efe8d09a2e67d18ced9be4ad1dc7', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.4517991923932345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22068a601330385d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:50:08.000Z'}}, {'blockNum': '0x81f1c2', 'uniqueId': '0x7d6853565731f108749cca5b1712c453a2edfe67896362fea35c236fbd9a2007:log:185', 'hash': '0x7d6853565731f108749cca5b1712c453a2edfe67896362fea35c236fbd9a2007', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2.4517991923932345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22068a601330385d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:50:08.000Z'}}, {'blockNum': '0x81f1c3', 'uniqueId': '0x623f7338f4fd885314bcfb1db7a86bd56ef2a0d967369370bdffd256296aff47:log:12', 'hash': '0x623f7338f4fd885314bcfb1db7a86bd56ef2a0d967369370bdffd256296aff47', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5020.100912229649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011023e52e09ceac07c8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:50:11.000Z'}}, {'blockNum': '0x81f1c3', 'uniqueId': '0x623f7338f4fd885314bcfb1db7a86bd56ef2a0d967369370bdffd256296aff47:log:15', 'hash': '0x623f7338f4fd885314bcfb1db7a86bd56ef2a0d967369370bdffd256296aff47', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x3463a5a0ac21b0729fba76d3bc1123180f3d99fd', 'value': 5020.100912229649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011023e52e09ceac07c8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:50:11.000Z'}}, {'blockNum': '0x81f1d4', 'uniqueId': '0x84f2346ce460d0315db083d287aeb684bc095ab3b10530d897a5498f603602e3:log:26', 'hash': '0x84f2346ce460d0315db083d287aeb684bc095ab3b10530d897a5498f603602e3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x10b4a87cc41ab72ec0955786c7645e32dcf56049', 'value': 128.868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06fc671b3a630a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:54:44.000Z'}}, {'blockNum': '0x81f1de', 'uniqueId': '0xc1c973c6fadc2588331516cdea8e1edd7904684639aa6029aadec224cc724894:log:46', 'hash': '0xc1c973c6fadc2588331516cdea8e1edd7904684639aa6029aadec224cc724894', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 61.945372904046465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x035baa2c74a0cc0382', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:57:37.000Z'}}, {'blockNum': '0x81f1de', 'uniqueId': '0xc1c973c6fadc2588331516cdea8e1edd7904684639aa6029aadec224cc724894:log:50', 'hash': '0xc1c973c6fadc2588331516cdea8e1edd7904684639aa6029aadec224cc724894', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xce1e2b5ffe4d441abafd136768f24867101dfa50', 'value': 61.945372904046465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x035baa2c74a0cc0382', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:57:37.000Z'}}, {'blockNum': '0x81f1e1', 'uniqueId': '0x47be47dc5ed7a69eb372b5b9ee44355dc183a398d7bcfb483912ac8e30ab98c6:log:14', 'hash': '0x47be47dc5ed7a69eb372b5b9ee44355dc183a398d7bcfb483912ac8e30ab98c6', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 486.0439572089029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a593703e905d13e68', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:57:54.000Z'}}, {'blockNum': '0x81f1e1', 'uniqueId': '0x47be47dc5ed7a69eb372b5b9ee44355dc183a398d7bcfb483912ac8e30ab98c6:log:18', 'hash': '0x47be47dc5ed7a69eb372b5b9ee44355dc183a398d7bcfb483912ac8e30ab98c6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 486.0439572089029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a593703e905d13e68', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:57:54.000Z'}}, {'blockNum': '0x81f1e7', 'uniqueId': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b:log:26', 'hash': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 156.34509992415695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0879b960077853bf7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:58:57.000Z'}}, {'blockNum': '0x81f1e7', 'uniqueId': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b:log:29', 'hash': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 156.34509992415695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0879b960077853bf7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:58:57.000Z'}}, {'blockNum': '0x81f1e7', 'uniqueId': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b:log:32', 'hash': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 156.34509992415695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0879b960077853bf7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:58:57.000Z'}}, {'blockNum': '0x81f1f3', 'uniqueId': '0x22e128208609faf41a073b2389276452692017bb67a74d561c7c47420747da95:log:19', 'hash': '0x22e128208609faf41a073b2389276452692017bb67a74d561c7c47420747da95', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 816.4955360909327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4326dc18902d0d98', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:00:55.000Z'}}, {'blockNum': '0x81f1f3', 'uniqueId': '0x22e128208609faf41a073b2389276452692017bb67a74d561c7c47420747da95:log:23', 'hash': '0x22e128208609faf41a073b2389276452692017bb67a74d561c7c47420747da95', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 816.4955360909327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4326dc18902d0d98', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:00:55.000Z'}}, {'blockNum': '0x81f1f7', 'uniqueId': '0xf85efa6992340772500e841440abf2d9d63ef6794560bf74ffff401f4962588d:log:27', 'hash': '0xf85efa6992340772500e841440abf2d9d63ef6794560bf74ffff401f4962588d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1463.3498288740348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f540ef433857e89cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:01:57.000Z'}}, {'blockNum': '0x81f1f7', 'uniqueId': '0xf85efa6992340772500e841440abf2d9d63ef6794560bf74ffff401f4962588d:log:30', 'hash': '0xf85efa6992340772500e841440abf2d9d63ef6794560bf74ffff401f4962588d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7059010320d07a47d2ad54db88bb89ea644c3e6f', 'value': 1463.3498288740348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f540ef433857e89cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:01:57.000Z'}}, {'blockNum': '0x81f204', 'uniqueId': '0xf6d3b125652e5b241cbe243488dfb4bd5a4bb470c08a2990946af57f9125b48e:log:39', 'hash': '0xf6d3b125652e5b241cbe243488dfb4bd5a4bb470c08a2990946af57f9125b48e', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:05:07.000Z'}}, {'blockNum': '0x81f205', 'uniqueId': '0x68c6431e78ff1c419d24b965827565b281fc11ee6865adb1665c5b77ea28879d:log:96', 'hash': '0x68c6431e78ff1c419d24b965827565b281fc11ee6865adb1665c5b77ea28879d', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 75.2971955012658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0414f5605de416ea71', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:05:22.000Z'}}, {'blockNum': '0x81f205', 'uniqueId': '0x68c6431e78ff1c419d24b965827565b281fc11ee6865adb1665c5b77ea28879d:log:98', 'hash': '0x68c6431e78ff1c419d24b965827565b281fc11ee6865adb1665c5b77ea28879d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75.2971955012658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0414f5605de416ea71', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:05:22.000Z'}}, {'blockNum': '0x81f20e', 'uniqueId': '0xffd5d3ffa21246d4b846f69d0551f3c63648a7f7225a8ac03aa112d12349541c:log:97', 'hash': '0xffd5d3ffa21246d4b846f69d0551f3c63648a7f7225a8ac03aa112d12349541c', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 271.97293189713076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ebe61f49609fc0c7f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:05.000Z'}}, {'blockNum': '0x81f20e', 'uniqueId': '0xffd5d3ffa21246d4b846f69d0551f3c63648a7f7225a8ac03aa112d12349541c:log:101', 'hash': '0xffd5d3ffa21246d4b846f69d0551f3c63648a7f7225a8ac03aa112d12349541c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 271.97293189713076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ebe61f49609fc0c7f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:05.000Z'}}, {'blockNum': '0x81f20e', 'uniqueId': '0x5dec3f38bd108c53c9dfd810b0037b45c1646f349e2e4c121d1b3c1592dfed04:log:132', 'hash': '0x5dec3f38bd108c53c9dfd810b0037b45c1646f349e2e4c121d1b3c1592dfed04', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 990.5276956815171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35b2554b2e830e1fba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:05.000Z'}}, {'blockNum': '0x81f20e', 'uniqueId': '0x5dec3f38bd108c53c9dfd810b0037b45c1646f349e2e4c121d1b3c1592dfed04:log:136', 'hash': '0x5dec3f38bd108c53c9dfd810b0037b45c1646f349e2e4c121d1b3c1592dfed04', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 990.5276956815171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35b2554b2e830e1fba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:05.000Z'}}, {'blockNum': '0x81f210', 'uniqueId': '0xd4971617e47c540944b70be422557981fd1914a7385bf1064e2be4ef087b204c:log:69', 'hash': '0xd4971617e47c540944b70be422557981fd1914a7385bf1064e2be4ef087b204c', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 566.1109121429901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1eb05dfb35bb4af0b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:31.000Z'}}, {'blockNum': '0x81f210', 'uniqueId': '0xd4971617e47c540944b70be422557981fd1914a7385bf1064e2be4ef087b204c:log:71', 'hash': '0xd4971617e47c540944b70be422557981fd1914a7385bf1064e2be4ef087b204c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 566.1109121429901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1eb05dfb35bb4af0b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:31.000Z'}}, {'blockNum': '0x81f218', 'uniqueId': '0x04d0090e2101440491e6a2d9c2c2a0e2bd91ea5276dc0943c90d9a2260f76443:log:84', 'hash': '0x04d0090e2101440491e6a2d9c2c2a0e2bd91ea5276dc0943c90d9a2260f76443', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1229.2253301640137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42a2eda511ba4c1544', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:39.000Z'}}, {'blockNum': '0x81f218', 'uniqueId': '0x04d0090e2101440491e6a2d9c2c2a0e2bd91ea5276dc0943c90d9a2260f76443:log:88', 'hash': '0x04d0090e2101440491e6a2d9c2c2a0e2bd91ea5276dc0943c90d9a2260f76443', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1229.2253301640137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42a2eda511ba4c1544', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:39.000Z'}}, {'blockNum': '0x81f219', 'uniqueId': '0x7f2cad141d217a93820d8dbbdae192ad633cfd85777d5ba245edfa3034b0993e:log:20', 'hash': '0x7f2cad141d217a93820d8dbbdae192ad633cfd85777d5ba245edfa3034b0993e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.82274148083843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a71e686c7fa969b2f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:50.000Z'}}, {'blockNum': '0x81f219', 'uniqueId': '0x7f2cad141d217a93820d8dbbdae192ad633cfd85777d5ba245edfa3034b0993e:log:24', 'hash': '0x7f2cad141d217a93820d8dbbdae192ad633cfd85777d5ba245edfa3034b0993e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 487.82274148083843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a71e686c7fa969b2f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:50.000Z'}}, {'blockNum': '0x81f21a', 'uniqueId': '0xe460cb90fd617a9997f32ae7dfaf59bcbdc8cddf5a6426c1a69d79a8327306d5:log:122', 'hash': '0xe460cb90fd617a9997f32ae7dfaf59bcbdc8cddf5a6426c1a69d79a8327306d5', 'from': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 161.48452121209996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08c10c4475f3403197', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:55.000Z'}}, {'blockNum': '0x81f21a', 'uniqueId': '0xe460cb90fd617a9997f32ae7dfaf59bcbdc8cddf5a6426c1a69d79a8327306d5:log:126', 'hash': '0xe460cb90fd617a9997f32ae7dfaf59bcbdc8cddf5a6426c1a69d79a8327306d5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 161.48452121209996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08c10c4475f3403197', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:55.000Z'}}, {'blockNum': '0x81f21d', 'uniqueId': '0xe4dc6b084a63b5ba45c9b7b9bd17835f6f18ca5d6b05deeaefb6ce54398afb76:log:47', 'hash': '0xe4dc6b084a63b5ba45c9b7b9bd17835f6f18ca5d6b05deeaefb6ce54398afb76', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.89995675937547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a72f8d9aafb052a30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:10:53.000Z'}}, {'blockNum': '0x81f21d', 'uniqueId': '0xe4dc6b084a63b5ba45c9b7b9bd17835f6f18ca5d6b05deeaefb6ce54398afb76:log:51', 'hash': '0xe4dc6b084a63b5ba45c9b7b9bd17835f6f18ca5d6b05deeaefb6ce54398afb76', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 487.89995675937547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a72f8d9aafb052a30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:10:53.000Z'}}, {'blockNum': '0x81f21d', 'uniqueId': '0xc77f5cf983fa9231828eea4360ceaab479cf777c359c32ee2ff4dd561c062ffb:log:64', 'hash': '0xc77f5cf983fa9231828eea4360ceaab479cf777c359c32ee2ff4dd561c062ffb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 478.11179368745275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19eb224f36c178d921', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:10:53.000Z'}}, {'blockNum': '0x81f21d', 'uniqueId': '0xc77f5cf983fa9231828eea4360ceaab479cf777c359c32ee2ff4dd561c062ffb:log:68', 'hash': '0xc77f5cf983fa9231828eea4360ceaab479cf777c359c32ee2ff4dd561c062ffb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 478.11179368745275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19eb224f36c178d921', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:10:53.000Z'}}, {'blockNum': '0x81f224', 'uniqueId': '0x59f426ea94c38dbfbba7edd5aa850ddf60512ce73c87b078a0f31e39eb64422f:log:92', 'hash': '0x59f426ea94c38dbfbba7edd5aa850ddf60512ce73c87b078a0f31e39eb64422f', 'from': '0xfe62e9d7c7781936499eaae20fbf3671b641516d', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 20.867390302783864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x012197dceb92dd003a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:12:31.000Z'}}, {'blockNum': '0x81f224', 'uniqueId': '0x59f426ea94c38dbfbba7edd5aa850ddf60512ce73c87b078a0f31e39eb64422f:log:96', 'hash': '0x59f426ea94c38dbfbba7edd5aa850ddf60512ce73c87b078a0f31e39eb64422f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 20.867390302783864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x012197dceb92dd003a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:12:31.000Z'}}, {'blockNum': '0x81f22b', 'uniqueId': '0x47709f70111d01e3b314cf36260b7d07ca24f7385cf3e8d5ed1b258bd81e2208:log:78', 'hash': '0x47709f70111d01e3b314cf36260b7d07ca24f7385cf3e8d5ed1b258bd81e2208', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 575.6475820031172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f34b709eb945924b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:11.000Z'}}, {'blockNum': '0x81f22b', 'uniqueId': '0x47709f70111d01e3b314cf36260b7d07ca24f7385cf3e8d5ed1b258bd81e2208:log:82', 'hash': '0x47709f70111d01e3b314cf36260b7d07ca24f7385cf3e8d5ed1b258bd81e2208', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 575.6475820031172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f34b709eb945924b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:11.000Z'}}, {'blockNum': '0x81f22b', 'uniqueId': '0x37a0e6e21785739a219622afdfcf02b0801c62642ebe14a013561dfaf7a4e315:log:92', 'hash': '0x37a0e6e21785739a219622afdfcf02b0801c62642ebe14a013561dfaf7a4e315', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 861.3287559960906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2eb156741028178b37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:11.000Z'}}, {'blockNum': '0x81f22b', 'uniqueId': '0x37a0e6e21785739a219622afdfcf02b0801c62642ebe14a013561dfaf7a4e315:log:96', 'hash': '0x37a0e6e21785739a219622afdfcf02b0801c62642ebe14a013561dfaf7a4e315', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 861.3287559960906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2eb156741028178b37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:11.000Z'}}, {'blockNum': '0x81f22c', 'uniqueId': '0x4d431710c45fbec419ee23e1e960fb19a4d7737d217850c1561de81de006a231:log:139', 'hash': '0x4d431710c45fbec419ee23e1e960fb19a4d7737d217850c1561de81de006a231', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 211.8323298273057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b7bc39da463f09012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:31.000Z'}}, {'blockNum': '0x81f22c', 'uniqueId': '0x4d431710c45fbec419ee23e1e960fb19a4d7737d217850c1561de81de006a231:log:143', 'hash': '0x4d431710c45fbec419ee23e1e960fb19a4d7737d217850c1561de81de006a231', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 211.8323298273057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b7bc39da463f09012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:31.000Z'}}, {'blockNum': '0x81f230', 'uniqueId': '0x9794712ed01655453abcfe52128df4f8503ac092acf9801e8c3e312b6fbb49b4:log:52', 'hash': '0x9794712ed01655453abcfe52128df4f8503ac092acf9801e8c3e312b6fbb49b4', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1224.0318038641803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x425ada886a81154ae8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:58.000Z'}}, {'blockNum': '0x81f230', 'uniqueId': '0x9794712ed01655453abcfe52128df4f8503ac092acf9801e8c3e312b6fbb49b4:log:56', 'hash': '0x9794712ed01655453abcfe52128df4f8503ac092acf9801e8c3e312b6fbb49b4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1224.0318038641803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x425ada886a81154ae8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:58.000Z'}}, {'blockNum': '0x81f235', 'uniqueId': '0x7f62712d37afeb4984c983a309ff184e64f1f0d06490088d85a7bffde3e535ce:log:1', 'hash': '0x7f62712d37afeb4984c983a309ff184e64f1f0d06490088d85a7bffde3e535ce', 'from': '0x2b704992676068e24ebccebe29e22a7883c9593a', 'to': '0x53f397713ecd059e0c6d4f3a368899a4eb293118', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:15:47.000Z'}}, {'blockNum': '0x81f23e', 'uniqueId': '0x4d716917fbd29289dcec4d9382da70584a4bc8810c2947b9a90a5e7ce220cdf4:log:66', 'hash': '0x4d716917fbd29289dcec4d9382da70584a4bc8810c2947b9a90a5e7ce220cdf4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 268.37603821456327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e8c7738d6c5b44069', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:16:56.000Z'}}, {'blockNum': '0x81f23e', 'uniqueId': '0x4d716917fbd29289dcec4d9382da70584a4bc8810c2947b9a90a5e7ce220cdf4:log:69', 'hash': '0x4d716917fbd29289dcec4d9382da70584a4bc8810c2947b9a90a5e7ce220cdf4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc74a40e0de05127ec0686b95fe38014e5685b1b1', 'value': 268.37603821456327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e8c7738d6c5b44069', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:16:56.000Z'}}, {'blockNum': '0x81f23f', 'uniqueId': '0x1394afa16b4a3b05abc0db04e4be244c6236e71322c8341ee0b0285cb13b39ff:log:3', 'hash': '0x1394afa16b4a3b05abc0db04e4be244c6236e71322c8341ee0b0285cb13b39ff', 'from': '0x2b704992676068e24ebccebe29e22a7883c9593a', 'to': '0x53f397713ecd059e0c6d4f3a368899a4eb293118', 'value': 1999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c5db2a4d815dc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:17:06.000Z'}}, {'blockNum': '0x81f24c', 'uniqueId': '0xc46e43e51913a7ed3754b751bfddb7984dbbf0706bae621b05b334a87dd05d23:log:98', 'hash': '0xc46e43e51913a7ed3754b751bfddb7984dbbf0706bae621b05b334a87dd05d23', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 390.34835325302976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15292bef2121887129', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:20:52.000Z'}}, {'blockNum': '0x81f24c', 'uniqueId': '0xc46e43e51913a7ed3754b751bfddb7984dbbf0706bae621b05b334a87dd05d23:log:102', 'hash': '0xc46e43e51913a7ed3754b751bfddb7984dbbf0706bae621b05b334a87dd05d23', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 390.34835325302976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15292bef2121887129', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:20:52.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0xae28d7ad31a39793ebee621a376ea339ed03245cc5bf8ab4b78c3bac9a941b3e:log:22', 'hash': '0xae28d7ad31a39793ebee621a376ea339ed03245cc5bf8ab4b78c3bac9a941b3e', 'from': '0x53f397713ecd059e0c6d4f3a368899a4eb293118', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0xae28d7ad31a39793ebee621a376ea339ed03245cc5bf8ab4b78c3bac9a941b3e:log:25', 'hash': '0xae28d7ad31a39793ebee621a376ea339ed03245cc5bf8ab4b78c3bac9a941b3e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0x7e4bcced12785ed1c429ba7f0d1e0e63da0cd8fec3780ad575834e0420b64ae0:log:31', 'hash': '0x7e4bcced12785ed1c429ba7f0d1e0e63da0cd8fec3780ad575834e0420b64ae0', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 549.8681260388602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dcef4034e5ffba13c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0x7e4bcced12785ed1c429ba7f0d1e0e63da0cd8fec3780ad575834e0420b64ae0:log:35', 'hash': '0x7e4bcced12785ed1c429ba7f0d1e0e63da0cd8fec3780ad575834e0420b64ae0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 549.8681260388602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dcef4034e5ffba13c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0x68adbcc9c79ef9ff2cfb4df329f3624d3d1ba13bf1bcc38e5d2f2af2a0daf9ab:log:42', 'hash': '0x68adbcc9c79ef9ff2cfb4df329f3624d3d1ba13bf1bcc38e5d2f2af2a0daf9ab', 'from': '0x53f397713ecd059e0c6d4f3a368899a4eb293118', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0x68adbcc9c79ef9ff2cfb4df329f3624d3d1ba13bf1bcc38e5d2f2af2a0daf9ab:log:45', 'hash': '0x68adbcc9c79ef9ff2cfb4df329f3624d3d1ba13bf1bcc38e5d2f2af2a0daf9ab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f256', 'uniqueId': '0x8a640f7d042b3b4eefc8bdba6634164e412fdc8e9cb9487c88e7fc0cf9cd55c4:log:99', 'hash': '0x8a640f7d042b3b4eefc8bdba6634164e412fdc8e9cb9487c88e7fc0cf9cd55c4', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 542.4504528360167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d680324d4248ebc33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:24:07.000Z'}}, {'blockNum': '0x81f256', 'uniqueId': '0x8a640f7d042b3b4eefc8bdba6634164e412fdc8e9cb9487c88e7fc0cf9cd55c4:log:103', 'hash': '0x8a640f7d042b3b4eefc8bdba6634164e412fdc8e9cb9487c88e7fc0cf9cd55c4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 542.4504528360167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d680324d4248ebc33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:24:07.000Z'}}, {'blockNum': '0x81f256', 'uniqueId': '0x9acb48822040d861f043a0608b35b1feee54a073204ed6a19daa4a50c5aed576:log:114', 'hash': '0x9acb48822040d861f043a0608b35b1feee54a073204ed6a19daa4a50c5aed576', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 269.58452613327336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e9d3ca232bbc54698', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:24:07.000Z'}}, {'blockNum': '0x81f256', 'uniqueId': '0x9acb48822040d861f043a0608b35b1feee54a073204ed6a19daa4a50c5aed576:log:119', 'hash': '0x9acb48822040d861f043a0608b35b1feee54a073204ed6a19daa4a50c5aed576', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 269.58452613327336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e9d3ca232bbc54698', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:24:07.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x0ecf16f36b2f0350d1e4349d851db6e2ae62851d24527cd2aa4512a23606cc49:log:122', 'hash': '0x0ecf16f36b2f0350d1e4349d851db6e2ae62851d24527cd2aa4512a23606cc49', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 688.5844548632133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x255407696bd9d3509f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x0ecf16f36b2f0350d1e4349d851db6e2ae62851d24527cd2aa4512a23606cc49:log:126', 'hash': '0x0ecf16f36b2f0350d1e4349d851db6e2ae62851d24527cd2aa4512a23606cc49', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 688.5844548632133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x255407696bd9d3509f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x83167a80928c4bd3a24e2e6f6c7c0da6e66e9318105f3e3f1dbd4af62fb0122a:log:135', 'hash': '0x83167a80928c4bd3a24e2e6f6c7c0da6e66e9318105f3e3f1dbd4af62fb0122a', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1081.4817629555005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3aa0930d78d9cfb931', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x83167a80928c4bd3a24e2e6f6c7c0da6e66e9318105f3e3f1dbd4af62fb0122a:log:139', 'hash': '0x83167a80928c4bd3a24e2e6f6c7c0da6e66e9318105f3e3f1dbd4af62fb0122a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1081.4817629555005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3aa0930d78d9cfb931', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x68de371f4ed0c1f7dd5e35b4ce0c6e8d05fc664801330b100c75b7a3659c8297:log:151', 'hash': '0x68de371f4ed0c1f7dd5e35b4ce0c6e8d05fc664801330b100c75b7a3659c8297', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2439.6995664846004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8441a205a2ad18f061', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x68de371f4ed0c1f7dd5e35b4ce0c6e8d05fc664801330b100c75b7a3659c8297:log:155', 'hash': '0x68de371f4ed0c1f7dd5e35b4ce0c6e8d05fc664801330b100c75b7a3659c8297', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 2439.6995664846004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8441a205a2ad18f061', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x8a7b12eb51efa68ad1e1da68032e6ac86ce1fde3fd7884c6c761aae5a49494ac:log:166', 'hash': '0x8a7b12eb51efa68ad1e1da68032e6ac86ce1fde3fd7884c6c761aae5a49494ac', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 682.976584518309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x250634410deb5bc615', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x8a7b12eb51efa68ad1e1da68032e6ac86ce1fde3fd7884c6c761aae5a49494ac:log:170', 'hash': '0x8a7b12eb51efa68ad1e1da68032e6ac86ce1fde3fd7884c6c761aae5a49494ac', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 682.976584518309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x250634410deb5bc615', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x2893968c235eb23c06af4627d67514af8a5767c619c3f28699a0567b21d23ed1:log:181', 'hash': '0x2893968c235eb23c06af4627d67514af8a5767c619c3f28699a0567b21d23ed1', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 459.06940390350013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18e2de2698a672ad69', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x2893968c235eb23c06af4627d67514af8a5767c619c3f28699a0567b21d23ed1:log:185', 'hash': '0x2893968c235eb23c06af4627d67514af8a5767c619c3f28699a0567b21d23ed1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 459.06940390350013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18e2de2698a672ad69', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f274', 'uniqueId': '0x1ff7cb853e7800156d7fc3acf2a72f48b15241ae7f0bf557930512450e25d9eb:log:81', 'hash': '0x1ff7cb853e7800156d7fc3acf2a72f48b15241ae7f0bf557930512450e25d9eb', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 483.50053526928554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a35eaf721bcfd5e5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:58.000Z'}}, {'blockNum': '0x81f274', 'uniqueId': '0x1ff7cb853e7800156d7fc3acf2a72f48b15241ae7f0bf557930512450e25d9eb:log:83', 'hash': '0x1ff7cb853e7800156d7fc3acf2a72f48b15241ae7f0bf557930512450e25d9eb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 483.50053526928554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a35eaf721bcfd5e5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:58.000Z'}}, {'blockNum': '0x81f275', 'uniqueId': '0x04077193d1e51f47ca5e9c395b24a391cc7ee2b4f4bc1ff71834e3061cc85aba:log:48', 'hash': '0x04077193d1e51f47ca5e9c395b24a391cc7ee2b4f4bc1ff71834e3061cc85aba', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 706.8564516822861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26519a95b813baaa01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:32:07.000Z'}}, {'blockNum': '0x81f275', 'uniqueId': '0x04077193d1e51f47ca5e9c395b24a391cc7ee2b4f4bc1ff71834e3061cc85aba:log:52', 'hash': '0x04077193d1e51f47ca5e9c395b24a391cc7ee2b4f4bc1ff71834e3061cc85aba', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 706.8564516822861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26519a95b813baaa01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:32:07.000Z'}}, {'blockNum': '0x81f27d', 'uniqueId': '0xb376902d10a47ab8467a1121ace797511ba004d192d6797f5792871b2a1204b6:log:149', 'hash': '0xb376902d10a47ab8467a1121ace797511ba004d192d6797f5792871b2a1204b6', 'from': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 111.85346063345409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06104751d2332ba4e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:34:06.000Z'}}, {'blockNum': '0x81f27d', 'uniqueId': '0xb376902d10a47ab8467a1121ace797511ba004d192d6797f5792871b2a1204b6:log:154', 'hash': '0xb376902d10a47ab8467a1121ace797511ba004d192d6797f5792871b2a1204b6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 111.85346063345409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06104751d2332ba4e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:34:06.000Z'}}, {'blockNum': '0x81f28b', 'uniqueId': '0x2af4af989db54b65feacf70676661948eeebebf89ed38e0d19c5f23884164231:log:19', 'hash': '0x2af4af989db54b65feacf70676661948eeebebf89ed38e0d19c5f23884164231', 'from': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 44.1367901834085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02648560d33803040a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:37:36.000Z'}}, {'blockNum': '0x81f28b', 'uniqueId': '0x2af4af989db54b65feacf70676661948eeebebf89ed38e0d19c5f23884164231:log:24', 'hash': '0x2af4af989db54b65feacf70676661948eeebebf89ed38e0d19c5f23884164231', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 44.1367901834085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02648560d33803040a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:37:36.000Z'}}, {'blockNum': '0x81f299', 'uniqueId': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0:log:144', 'hash': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5.855082946992235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51416eeb31eb628b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:40:16.000Z'}}, {'blockNum': '0x81f299', 'uniqueId': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0:log:147', 'hash': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.855082946992235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51416eeb31eb628b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:40:16.000Z'}}, {'blockNum': '0x81f299', 'uniqueId': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0:log:150', 'hash': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 5.855082946992235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51416eeb31eb628b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:40:16.000Z'}}, {'blockNum': '0x81f2a3', 'uniqueId': '0x9d736b86db60fc99ebc7470f0d224492a881f232d2e950fddadc7114282ec04c:log:15', 'hash': '0x9d736b86db60fc99ebc7470f0d224492a881f232d2e950fddadc7114282ec04c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 141.49647622419326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07aba87772088b9330', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:42:49.000Z'}}, {'blockNum': '0x81f2a3', 'uniqueId': '0x9d736b86db60fc99ebc7470f0d224492a881f232d2e950fddadc7114282ec04c:log:19', 'hash': '0x9d736b86db60fc99ebc7470f0d224492a881f232d2e950fddadc7114282ec04c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x92a497f0bcdeaa5345f6aa4a3357ee3cbe2e7226', 'value': 141.49647622419326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07aba87772088b9330', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:42:49.000Z'}}, {'blockNum': '0x81f2a4', 'uniqueId': '0x7080450e79abb5d52961f86726b2e00e47c7ed9b3b0b675bca9f2d6d85cc9e9a:log:119', 'hash': '0x7080450e79abb5d52961f86726b2e00e47c7ed9b3b0b675bca9f2d6d85cc9e9a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 0.00010000000000007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5af3107a4046', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:43:00.000Z'}}, {'blockNum': '0x81f2a4', 'uniqueId': '0x7080450e79abb5d52961f86726b2e00e47c7ed9b3b0b675bca9f2d6d85cc9e9a:log:122', 'hash': '0x7080450e79abb5d52961f86726b2e00e47c7ed9b3b0b675bca9f2d6d85cc9e9a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x272ffb35833185a81660f4d62496d89bc38c7978', 'value': 0.00010000000000007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5af3107a4046', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:43:00.000Z'}}, {'blockNum': '0x81f2b3', 'uniqueId': '0x2769fb5f1a929be1a4eb38b173d41aaa8ca4a371f734bf1e26157bb507830c4e:log:118', 'hash': '0x2769fb5f1a929be1a4eb38b173d41aaa8ca4a371f734bf1e26157bb507830c4e', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 186.20457652725605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a181b8bcc2322ae03', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:46:22.000Z'}}, {'blockNum': '0x81f2b3', 'uniqueId': '0x2769fb5f1a929be1a4eb38b173d41aaa8ca4a371f734bf1e26157bb507830c4e:log:122', 'hash': '0x2769fb5f1a929be1a4eb38b173d41aaa8ca4a371f734bf1e26157bb507830c4e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 186.20457652725605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a181b8bcc2322ae03', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:46:22.000Z'}}, {'blockNum': '0x81f2da', 'uniqueId': '0x8c65277f10c1d0f140f59e89884d2a77366687681ee8e0bc4f7ec28374b1cb00:log:109', 'hash': '0x8c65277f10c1d0f140f59e89884d2a77366687681ee8e0bc4f7ec28374b1cb00', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 60.44406420924957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0346d47426e5390d02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:55:18.000Z'}}, {'blockNum': '0x81f2da', 'uniqueId': '0x8c65277f10c1d0f140f59e89884d2a77366687681ee8e0bc4f7ec28374b1cb00:log:113', 'hash': '0x8c65277f10c1d0f140f59e89884d2a77366687681ee8e0bc4f7ec28374b1cb00', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 60.44406420924957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0346d47426e5390d02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:55:18.000Z'}}, {'blockNum': '0x81f2e5', 'uniqueId': '0xee07f84c0daa222001da9ddd14acc66ade83cc72d65592efb96c36e3a3bd3126:log:5', 'hash': '0xee07f84c0daa222001da9ddd14acc66ade83cc72d65592efb96c36e3a3bd3126', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x78d8e8807f652b54afe33b7645a26c5ffae5291c', 'value': 25366.44914084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x055f1e32d862ecea1000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:57:00.000Z'}}, {'blockNum': '0x81f2e8', 'uniqueId': '0x6535459816126d3cff6b6b8f05354b5293d87eb4b78a8ec39f71b6fc46667f6f:log:41', 'hash': '0x6535459816126d3cff6b6b8f05354b5293d87eb4b78a8ec39f71b6fc46667f6f', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1898.3219062922733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x66e8823408455132bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:58:05.000Z'}}, {'blockNum': '0x81f2e8', 'uniqueId': '0x6535459816126d3cff6b6b8f05354b5293d87eb4b78a8ec39f71b6fc46667f6f:log:45', 'hash': '0x6535459816126d3cff6b6b8f05354b5293d87eb4b78a8ec39f71b6fc46667f6f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1898.3219062922733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x66e8823408455132bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:58:05.000Z'}}, {'blockNum': '0x81f2ec', 'uniqueId': '0xdf7e6566266f945122383ecdae27fbc56353a3e9480f6e52af90a43a4a087d5f:log:13', 'hash': '0xdf7e6566266f945122383ecdae27fbc56353a3e9480f6e52af90a43a4a087d5f', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 1423.357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d290be23b3dac8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:59:16.000Z'}}, {'blockNum': '0x81f2ec', 'uniqueId': '0xbe99ed1d2da672a628dabf1b8621b594d298bb201166387735c6592d90a8d6ee:log:40', 'hash': '0xbe99ed1d2da672a628dabf1b8621b594d298bb201166387735c6592d90a8d6ee', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 319.9893279013035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1158be7659a12fed1b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:59:16.000Z'}}, {'blockNum': '0x81f2ec', 'uniqueId': '0xbe99ed1d2da672a628dabf1b8621b594d298bb201166387735c6592d90a8d6ee:log:44', 'hash': '0xbe99ed1d2da672a628dabf1b8621b594d298bb201166387735c6592d90a8d6ee', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 319.9893279013035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1158be7659a12fed1b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:59:16.000Z'}}, {'blockNum': '0x81f2fa', 'uniqueId': '0x41fd05d717d8453ee01483f204cb07242f8947640235cd66e22ef4260b924b5d:log:99', 'hash': '0x41fd05d717d8453ee01483f204cb07242f8947640235cd66e22ef4260b924b5d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.0000000000000004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80113', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:01:35.000Z'}}, {'blockNum': '0x81f2fa', 'uniqueId': '0x41fd05d717d8453ee01483f204cb07242f8947640235cd66e22ef4260b924b5d:log:102', 'hash': '0x41fd05d717d8453ee01483f204cb07242f8947640235cd66e22ef4260b924b5d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x301166fae420d41984c00ac498a41eab26109cc5', 'value': 2.0000000000000004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80113', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:01:35.000Z'}}, {'blockNum': '0x81f2fe', 'uniqueId': '0x3e99041999bc8f794e57ac574f7d4efed5f8987b28b414028435d1466039aac2:log:47', 'hash': '0x3e99041999bc8f794e57ac574f7d4efed5f8987b28b414028435d1466039aac2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.440113917888392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21dd06ae17396b70', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:02:55.000Z'}}, {'blockNum': '0x81f2fe', 'uniqueId': '0x3e99041999bc8f794e57ac574f7d4efed5f8987b28b414028435d1466039aac2:log:51', 'hash': '0x3e99041999bc8f794e57ac574f7d4efed5f8987b28b414028435d1466039aac2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x71168843b49e305e4d53de158683903ef261b37f', 'value': 2.440113917888392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21dd06ae17396b70', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:02:55.000Z'}}, {'blockNum': '0x81f306', 'uniqueId': '0x286ff8d2b3a4288ffffc2328517b7a7d3e76cefcc873f45417ea463e75be317e:log:64', 'hash': '0x286ff8d2b3a4288ffffc2328517b7a7d3e76cefcc873f45417ea463e75be317e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 361.1282849311923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1393a965ce25c45a52', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:03:49.000Z'}}, {'blockNum': '0x81f306', 'uniqueId': '0x286ff8d2b3a4288ffffc2328517b7a7d3e76cefcc873f45417ea463e75be317e:log:68', 'hash': '0x286ff8d2b3a4288ffffc2328517b7a7d3e76cefcc873f45417ea463e75be317e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 361.1282849311923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1393a965ce25c45a52', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:03:49.000Z'}}, {'blockNum': '0x81f310', 'uniqueId': '0x799a33b381b756f34394b1ba768c7b9f45c34390c093ed99043e838ef18267f9:log:112', 'hash': '0x799a33b381b756f34394b1ba768c7b9f45c34390c093ed99043e838ef18267f9', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 136.4742868381317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0765f610ceb99b9d4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:05:07.000Z'}}, {'blockNum': '0x81f310', 'uniqueId': '0x799a33b381b756f34394b1ba768c7b9f45c34390c093ed99043e838ef18267f9:log:116', 'hash': '0x799a33b381b756f34394b1ba768c7b9f45c34390c093ed99043e838ef18267f9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 136.4742868381317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0765f610ceb99b9d4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:05:07.000Z'}}, {'blockNum': '0x81f312', 'uniqueId': '0xbb18da97d3a33db645b1ce6b57d5c0d8ad96cb7473881b1079ead9a78168319a:log:35', 'hash': '0xbb18da97d3a33db645b1ce6b57d5c0d8ad96cb7473881b1079ead9a78168319a', 'from': '0x301166fae420d41984c00ac498a41eab26109cc5', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1.0979916524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f3cd99727a56c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:05:55.000Z'}}, {'blockNum': '0x81f312', 'uniqueId': '0xbb18da97d3a33db645b1ce6b57d5c0d8ad96cb7473881b1079ead9a78168319a:log:38', 'hash': '0xbb18da97d3a33db645b1ce6b57d5c0d8ad96cb7473881b1079ead9a78168319a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 1.0979916524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f3cd99727a56c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:05:55.000Z'}}, {'blockNum': '0x81f31d', 'uniqueId': '0x65764d07c4731b21716f7939593932f0d52c8230ed11969967e86d2812b2b1e7:log:65', 'hash': '0x65764d07c4731b21716f7939593932f0d52c8230ed11969967e86d2812b2b1e7', 'from': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 599.6613064995004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2081f8ed1e995c5cad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:09:27.000Z'}}, {'blockNum': '0x81f31d', 'uniqueId': '0x65764d07c4731b21716f7939593932f0d52c8230ed11969967e86d2812b2b1e7:log:69', 'hash': '0x65764d07c4731b21716f7939593932f0d52c8230ed11969967e86d2812b2b1e7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 599.6613064995004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2081f8ed1e995c5cad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:09:27.000Z'}}, {'blockNum': '0x81f31d', 'uniqueId': '0xb4fe81cb6c7814f02b7f8f6a8ace5020ba1a1332f9595cd653718d8a8d227107:log:145', 'hash': '0xb4fe81cb6c7814f02b7f8f6a8ace5020ba1a1332f9595cd653718d8a8d227107', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 366.02620845485677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13d7a2514cbad1c99a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:09:27.000Z'}}, {'blockNum': '0x81f31d', 'uniqueId': '0xb4fe81cb6c7814f02b7f8f6a8ace5020ba1a1332f9595cd653718d8a8d227107:log:149', 'hash': '0xb4fe81cb6c7814f02b7f8f6a8ace5020ba1a1332f9595cd653718d8a8d227107', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'value': 366.02620845485677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13d7a2514cbad1c99a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:09:27.000Z'}}, {'blockNum': '0x81f322', 'uniqueId': '0xdbf6d73d51ed0684a8704093091c0696adf5d132a2b529faf18bcc41b6425d32:log:134', 'hash': '0xdbf6d73d51ed0684a8704093091c0696adf5d132a2b529faf18bcc41b6425d32', 'from': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 869.0174689357245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f1c0a3fbec2ea44e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:13.000Z'}}, {'blockNum': '0x81f322', 'uniqueId': '0xdbf6d73d51ed0684a8704093091c0696adf5d132a2b529faf18bcc41b6425d32:log:139', 'hash': '0xdbf6d73d51ed0684a8704093091c0696adf5d132a2b529faf18bcc41b6425d32', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 869.0174689357245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f1c0a3fbec2ea44e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:13.000Z'}}, {'blockNum': '0x81f323', 'uniqueId': '0xa902e724c7e242c6bd28fde57623965a18553a9ad74b39b515d86651ff322ff1:log:119', 'hash': '0xa902e724c7e242c6bd28fde57623965a18553a9ad74b39b515d86651ff322ff1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 439.2083518030066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17cf3d84f07301e826', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:15.000Z'}}, {'blockNum': '0x81f323', 'uniqueId': '0xa902e724c7e242c6bd28fde57623965a18553a9ad74b39b515d86651ff322ff1:log:123', 'hash': '0xa902e724c7e242c6bd28fde57623965a18553a9ad74b39b515d86651ff322ff1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 439.2083518030066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17cf3d84f07301e826', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:15.000Z'}}, {'blockNum': '0x81f325', 'uniqueId': '0xcccc073af68f1024e160e465e524560fa02cc0c7322f42419cb46a3452cd1569:log:15', 'hash': '0xcccc073af68f1024e160e465e524560fa02cc0c7322f42419cb46a3452cd1569', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 341.589076710707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1284802f73af596a82', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:35.000Z'}}, {'blockNum': '0x81f325', 'uniqueId': '0xcccc073af68f1024e160e465e524560fa02cc0c7322f42419cb46a3452cd1569:log:19', 'hash': '0xcccc073af68f1024e160e465e524560fa02cc0c7322f42419cb46a3452cd1569', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 341.589076710707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1284802f73af596a82', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:35.000Z'}}, {'blockNum': '0x81f325', 'uniqueId': '0xa2399aad7b1b6b23000de397833d36ca23b75672cfd633acc05c075120cd2999:log:80', 'hash': '0xa2399aad7b1b6b23000de397833d36ca23b75672cfd633acc05c075120cd2999', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 128.82964806577158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06fbdeda58dae7a110', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:35.000Z'}}, {'blockNum': '0x81f325', 'uniqueId': '0xa2399aad7b1b6b23000de397833d36ca23b75672cfd633acc05c075120cd2999:log:84', 'hash': '0xa2399aad7b1b6b23000de397833d36ca23b75672cfd633acc05c075120cd2999', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 128.82964806577158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06fbdeda58dae7a110', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:35.000Z'}}, {'blockNum': '0x81f333', 'uniqueId': '0x80997379c774f20fb0f2aa6f7ca7cce18455ef3325933d81ddf66805b72da1a8:log:11', 'hash': '0x80997379c774f20fb0f2aa6f7ca7cce18455ef3325933d81ddf66805b72da1a8', 'from': '0xf977814e90da44bfa03b6295a0616a897441acec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:13:57.000Z'}}, {'blockNum': '0x81f334', 'uniqueId': '0xdef6cfd75556fb8d02bd8e3183ad188fcac5cb026b638fad47d686ccd883c772:log:137', 'hash': '0xdef6cfd75556fb8d02bd8e3183ad188fcac5cb026b638fad47d686ccd883c772', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 15.36668497813966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd5416e9249587c4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:14:03.000Z'}}, {'blockNum': '0x81f334', 'uniqueId': '0xdef6cfd75556fb8d02bd8e3183ad188fcac5cb026b638fad47d686ccd883c772:log:141', 'hash': '0xdef6cfd75556fb8d02bd8e3183ad188fcac5cb026b638fad47d686ccd883c772', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 15.36668497813966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd5416e9249587c4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:14:03.000Z'}}, {'blockNum': '0x81f338', 'uniqueId': '0x85bdb1364f050b191ab7b92e4660be42128ef958d8ea337e039cedf6fd7dddbf:log:8', 'hash': '0x85bdb1364f050b191ab7b92e4660be42128ef958d8ea337e039cedf6fd7dddbf', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x78d8e8807f652b54afe33b7645a26c5ffae5291c', 'value': 19997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c0a1f6f5a6e540000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:16:01.000Z'}}, {'blockNum': '0x81f339', 'uniqueId': '0x24bbe6a56a02bc593c086707a31174d34b65e96ffe47402e5b5e7173c2629822:log:180', 'hash': '0x24bbe6a56a02bc593c086707a31174d34b65e96ffe47402e5b5e7173c2629822', 'from': '0xb018af916ed0116404537d1238b18988d652733a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 317.5369837117481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1136b5fc4d83bf3369', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:16:10.000Z'}}, {'blockNum': '0x81f339', 'uniqueId': '0x24bbe6a56a02bc593c086707a31174d34b65e96ffe47402e5b5e7173c2629822:log:182', 'hash': '0x24bbe6a56a02bc593c086707a31174d34b65e96ffe47402e5b5e7173c2629822', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 317.5369837117481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1136b5fc4d83bf3369', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:16:10.000Z'}}, {'blockNum': '0x81f343', 'uniqueId': '0x9b09c5d7d55a555c210c0e5545b8876aa3a23f79a766973c1bcf16442a8a8063:log:127', 'hash': '0x9b09c5d7d55a555c210c0e5545b8876aa3a23f79a766973c1bcf16442a8a8063', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 127.03170886237224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06e2eb4a2ae089e739', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:18:18.000Z'}}, {'blockNum': '0x81f343', 'uniqueId': '0x9b09c5d7d55a555c210c0e5545b8876aa3a23f79a766973c1bcf16442a8a8063:log:131', 'hash': '0x9b09c5d7d55a555c210c0e5545b8876aa3a23f79a766973c1bcf16442a8a8063', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 127.03170886237224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06e2eb4a2ae089e739', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:18:18.000Z'}}, {'blockNum': '0x81f34d', 'uniqueId': '0xcd3e51e31314b502b95a6de2557f829e786f53486b8cd7478bceb10777b43632:log:78', 'hash': '0xcd3e51e31314b502b95a6de2557f829e786f53486b8cd7478bceb10777b43632', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 122.00129748929822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x069d1badad0a606328', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:20:33.000Z'}}, {'blockNum': '0x81f34d', 'uniqueId': '0xcd3e51e31314b502b95a6de2557f829e786f53486b8cd7478bceb10777b43632:log:82', 'hash': '0xcd3e51e31314b502b95a6de2557f829e786f53486b8cd7478bceb10777b43632', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 122.00129748929822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x069d1badad0a606328', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:20:33.000Z'}}, {'blockNum': '0x81f34f', 'uniqueId': '0x16b6f2ad8c88c26253787270cfe60c19ccc2a163dadc09c2adbaab8464ca9632:log:53', 'hash': '0x16b6f2ad8c88c26253787270cfe60c19ccc2a163dadc09c2adbaab8464ca9632', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3.0875881404807153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ad9510e160fd942', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:20:55.000Z'}}, {'blockNum': '0x81f34f', 'uniqueId': '0x16b6f2ad8c88c26253787270cfe60c19ccc2a163dadc09c2adbaab8464ca9632:log:57', 'hash': '0x16b6f2ad8c88c26253787270cfe60c19ccc2a163dadc09c2adbaab8464ca9632', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 3.0875881404807153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ad9510e160fd942', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:20:55.000Z'}}, {'blockNum': '0x81f358', 'uniqueId': '0xf128d9f1f844a6cfb37be8bf963ac5480662c39550b6fd74aedb67f3292500bf:log:27', 'hash': '0xf128d9f1f844a6cfb37be8bf963ac5480662c39550b6fd74aedb67f3292500bf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x78d8e8807f652b54afe33b7645a26c5ffae5291c', 'value': 19997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c0a1f6f5a6e540000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:23:00.000Z'}}, {'blockNum': '0x81f35b', 'uniqueId': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6:log:85', 'hash': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 107.47015159148717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05d372ad789ff95649', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:24:16.000Z'}}, {'blockNum': '0x81f35b', 'uniqueId': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6:log:90', 'hash': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 107.47015159148717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05d372ad789ff95649', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:24:16.000Z'}}, {'blockNum': '0x81f35b', 'uniqueId': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6:log:102', 'hash': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 105.970903149697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05bea446f4ed0335ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:24:16.000Z'}}, {'blockNum': '0x81f35b', 'uniqueId': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6:log:106', 'hash': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 105.970903149697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05bea446f4ed0335ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:24:16.000Z'}}, {'blockNum': '0x81f35e', 'uniqueId': '0xc5ce0aeadf73b25501367a01fe742fc62fd9fb1306f1c37b6ae5c4587b7667c8:log:6', 'hash': '0xc5ce0aeadf73b25501367a01fe742fc62fd9fb1306f1c37b6ae5c4587b7667c8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 19997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c0a1f6f5a6e540000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:24:47.000Z'}}, {'blockNum': '0x81f363', 'uniqueId': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6:log:34', 'hash': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1.0506219782556667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e948f1f6f25ae74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:25:23.000Z'}}, {'blockNum': '0x81f363', 'uniqueId': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6:log:37', 'hash': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1.0506219782556667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e948f1f6f25ae74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:25:23.000Z'}}, {'blockNum': '0x81f363', 'uniqueId': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6:log:40', 'hash': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 1.0506219782556667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e948f1f6f25ae74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:25:23.000Z'}}, {'blockNum': '0x81f367', 'uniqueId': '0x8947ad54cddf9e3d7d90e28a8c30b9813398ad63ed056488010edc20773efbfe:log:71', 'hash': '0x8947ad54cddf9e3d7d90e28a8c30b9813398ad63ed056488010edc20773efbfe', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 144.53805616284816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07d5de5448e006669b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:26:32.000Z'}}, {'blockNum': '0x81f367', 'uniqueId': '0x8947ad54cddf9e3d7d90e28a8c30b9813398ad63ed056488010edc20773efbfe:log:75', 'hash': '0x8947ad54cddf9e3d7d90e28a8c30b9813398ad63ed056488010edc20773efbfe', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 144.53805616284816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07d5de5448e006669b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:26:32.000Z'}}, {'blockNum': '0x81f36d', 'uniqueId': '0xc23ed0468e51280a2db9aaf72516912e9dd2077e6ba53b83067ba6f2147e6d43:log:0', 'hash': '0xc23ed0468e51280a2db9aaf72516912e9dd2077e6ba53b83067ba6f2147e6d43', 'from': '0xee1f918d9eae66add53254537660463363017946', 'to': '0xcba3dc8fd14ebd75c75323f710ac4928a9b6a6ba', 'value': 1794.586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6148e23ae039290000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:27:35.000Z'}}, {'blockNum': '0x81f378', 'uniqueId': '0x41680de72501be1b9f8aa0909d5edcf56d21a91a932c88df9ce6c4f98d186a6f:log:6', 'hash': '0x41680de72501be1b9f8aa0909d5edcf56d21a91a932c88df9ce6c4f98d186a6f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x78d8e8807f652b54afe33b7645a26c5ffae5291c', 'value': 9997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021df03ea59fbc140000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:29:56.000Z'}}, {'blockNum': '0x81f384', 'uniqueId': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f:log:35', 'hash': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f', 'from': '0x78d8e8807f652b54afe33b7645a26c5ffae5291c', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75357.44914084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff522b05cb785a61000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:08.000Z'}}, {'blockNum': '0x81f384', 'uniqueId': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f:log:38', 'hash': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 75357.44914084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff522b05cb785a61000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:08.000Z'}}, {'blockNum': '0x81f384', 'uniqueId': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f:log:39', 'hash': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75357.44914084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff522b05cb785a61000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:08.000Z'}}, {'blockNum': '0x81f384', 'uniqueId': '0x6d264223a2910937b4d4fa49b2d3f4672a383e4bc271e85aec08bc70510bb517:log:48', 'hash': '0x6d264223a2910937b4d4fa49b2d3f4672a383e4bc271e85aec08bc70510bb517', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x301166fae420d41984c00ac498a41eab26109cc5', 'value': 1.8213554827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1946c1295c0b2b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:08.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0x7ddf4db0f2e851cabf8efcde4bde57738506487a1fd824b42d7c1cfad665affc:log:57', 'hash': '0x7ddf4db0f2e851cabf8efcde4bde57738506487a1fd824b42d7c1cfad665affc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 887.0395829427927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x301625a8f307ce7ab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0x7ddf4db0f2e851cabf8efcde4bde57738506487a1fd824b42d7c1cfad665affc:log:61', 'hash': '0x7ddf4db0f2e851cabf8efcde4bde57738506487a1fd824b42d7c1cfad665affc', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 887.0395829427927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x301625a8f307ce7ab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0x8feac63e8a0104b37d5d12ea2674b05c692dea716e38241ac38a010c4a6877c2:log:74', 'hash': '0x8feac63e8a0104b37d5d12ea2674b05c692dea716e38241ac38a010c4a6877c2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 985.4788820582137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x356c444df0e8e691b6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0x8feac63e8a0104b37d5d12ea2674b05c692dea716e38241ac38a010c4a6877c2:log:78', 'hash': '0x8feac63e8a0104b37d5d12ea2674b05c692dea716e38241ac38a010c4a6877c2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 985.4788820582137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x356c444df0e8e691b6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0xf1056b9d2791138cc57829091ef00206cfaa8105f330daabc291d3dfc540fc0a:log:89', 'hash': '0xf1056b9d2791138cc57829091ef00206cfaa8105f330daabc291d3dfc540fc0a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.69182459920387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab578fc146e9cd9d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0xf1056b9d2791138cc57829091ef00206cfaa8105f330daabc291d3dfc540fc0a:log:93', 'hash': '0xf1056b9d2791138cc57829091ef00206cfaa8105f330daabc291d3dfc540fc0a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc6aacdf2cb021515009098025a0ece472608918e', 'value': 492.69182459920387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab578fc146e9cd9d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f38a', 'uniqueId': '0xb9458523ec52729762316081aa4c26ab0ecfebff0c49a2ce6756445e4cacd3a4:log:30', 'hash': '0xb9458523ec52729762316081aa4c26ab0ecfebff0c49a2ce6756445e4cacd3a4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 689.7152346744799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2563b8bfab238ee53e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:48.000Z'}}, {'blockNum': '0x81f38a', 'uniqueId': '0xb9458523ec52729762316081aa4c26ab0ecfebff0c49a2ce6756445e4cacd3a4:log:34', 'hash': '0xb9458523ec52729762316081aa4c26ab0ecfebff0c49a2ce6756445e4cacd3a4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 689.7152346744799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2563b8bfab238ee53e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:48.000Z'}}, {'blockNum': '0x81f38c', 'uniqueId': '0x42ecdfd8019ecfd8b4f8d1cc7dc9651d432ce5654c37c92b285ae7641dafb544:log:30', 'hash': '0x42ecdfd8019ecfd8b4f8d1cc7dc9651d432ce5654c37c92b285ae7641dafb544', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 541.8754801936001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d60086e41b9c0e5e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:34:09.000Z'}}, {'blockNum': '0x81f38c', 'uniqueId': '0x42ecdfd8019ecfd8b4f8d1cc7dc9651d432ce5654c37c92b285ae7641dafb544:log:34', 'hash': '0x42ecdfd8019ecfd8b4f8d1cc7dc9651d432ce5654c37c92b285ae7641dafb544', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 541.8754801936001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d60086e41b9c0e5e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:34:09.000Z'}}, {'blockNum': '0x81f38d', 'uniqueId': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849:log:50', 'hash': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 269.28011438964336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e99032554873f474c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:34:11.000Z'}}, {'blockNum': '0x81f38d', 'uniqueId': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849:log:53', 'hash': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 269.28011438964336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e99032554873f474c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:34:11.000Z'}}, {'blockNum': '0x81f38d', 'uniqueId': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849:log:54', 'hash': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 269.37984611374947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e9a6576ce0b6db1b6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:34:11.000Z'}}, {'blockNum': '0x81f392', 'uniqueId': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232:log:132', 'hash': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232', 'from': '0x301166fae420d41984c00ac498a41eab26109cc5', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1.8213554827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1946c1295c0b2b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:03.000Z'}}, {'blockNum': '0x81f392', 'uniqueId': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232:log:135', 'hash': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1.8213554827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1946c1295c0b2b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:03.000Z'}}, {'blockNum': '0x81f392', 'uniqueId': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232:log:137', 'hash': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 1.8213554827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1946c1295c0b2b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:03.000Z'}}, {'blockNum': '0x81f394', 'uniqueId': '0xb3941526b4bbd18394938f2756c408a714fde3624916fd86e246b030cf6beed2:log:35', 'hash': '0xb3941526b4bbd18394938f2756c408a714fde3624916fd86e246b030cf6beed2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 344.79772213045663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12b107957605b64834', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:09.000Z'}}, {'blockNum': '0x81f394', 'uniqueId': '0xb3941526b4bbd18394938f2756c408a714fde3624916fd86e246b030cf6beed2:log:39', 'hash': '0xb3941526b4bbd18394938f2756c408a714fde3624916fd86e246b030cf6beed2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 344.79772213045663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12b107957605b64834', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:09.000Z'}}, {'blockNum': '0x81f395', 'uniqueId': '0x3c4c8586d7bbacacdbe423c7ea815cad40bc1219a8561c0a5bdbcdf0f80e9508:log:94', 'hash': '0x3c4c8586d7bbacacdbe423c7ea815cad40bc1219a8561c0a5bdbcdf0f80e9508', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1039.916504918531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x385fbd978276cb885d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:24.000Z'}}, {'blockNum': '0x81f395', 'uniqueId': '0x3c4c8586d7bbacacdbe423c7ea815cad40bc1219a8561c0a5bdbcdf0f80e9508:log:97', 'hash': '0x3c4c8586d7bbacacdbe423c7ea815cad40bc1219a8561c0a5bdbcdf0f80e9508', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'value': 1039.916504918531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x385fbd978276cb885d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:24.000Z'}}, {'blockNum': '0x81f398', 'uniqueId': '0xfbf27c6a8e183c5a093e2bb39af497a52ffaf3d159370c2efaea26aec38ffcff:log:78', 'hash': '0xfbf27c6a8e183c5a093e2bb39af497a52ffaf3d159370c2efaea26aec38ffcff', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 590.9652902889001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20094a78730f7d1cfe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:34.000Z'}}, {'blockNum': '0x81f398', 'uniqueId': '0xfbf27c6a8e183c5a093e2bb39af497a52ffaf3d159370c2efaea26aec38ffcff:log:82', 'hash': '0xfbf27c6a8e183c5a093e2bb39af497a52ffaf3d159370c2efaea26aec38ffcff', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'value': 590.9652902889001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20094a78730f7d1cfe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:34.000Z'}}, {'blockNum': '0x81f399', 'uniqueId': '0xa5aaf2040bcb7163b886b03eb3f9846d5f23098a706af0f01a4bc6aa47c43d1c:log:22', 'hash': '0xa5aaf2040bcb7163b886b03eb3f9846d5f23098a706af0f01a4bc6aa47c43d1c', 'from': '0x8bd7448162c296a5bb3f0b9ccdee383f5b899c93', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 124.43427656318754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06bedf5b40cf8210c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:52.000Z'}}, {'blockNum': '0x81f399', 'uniqueId': '0xa5aaf2040bcb7163b886b03eb3f9846d5f23098a706af0f01a4bc6aa47c43d1c:log:26', 'hash': '0xa5aaf2040bcb7163b886b03eb3f9846d5f23098a706af0f01a4bc6aa47c43d1c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 124.43427656318754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06bedf5b40cf8210c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:52.000Z'}}, {'blockNum': '0x81f39c', 'uniqueId': '0xbeb929f67aa90d6f9176903a6344cb8ab61a3f9b215667df86fd81c4c2704405:log:64', 'hash': '0xbeb929f67aa90d6f9176903a6344cb8ab61a3f9b215667df86fd81c4c2704405', 'from': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:36:42.000Z'}}, {'blockNum': '0x81f39c', 'uniqueId': '0xbeb929f67aa90d6f9176903a6344cb8ab61a3f9b215667df86fd81c4c2704405:log:67', 'hash': '0xbeb929f67aa90d6f9176903a6344cb8ab61a3f9b215667df86fd81c4c2704405', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:36:42.000Z'}}, {'blockNum': '0x81f3a2', 'uniqueId': '0xb61e28c170111ee931d7d5faf86000e5d1eae4b5e30401333fb174a0bf8bf78e:log:12', 'hash': '0xb61e28c170111ee931d7d5faf86000e5d1eae4b5e30401333fb174a0bf8bf78e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 246.22606720374804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d5912b78f68dcc9c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:38:01.000Z'}}, {'blockNum': '0x81f3a2', 'uniqueId': '0xb61e28c170111ee931d7d5faf86000e5d1eae4b5e30401333fb174a0bf8bf78e:log:16', 'hash': '0xb61e28c170111ee931d7d5faf86000e5d1eae4b5e30401333fb174a0bf8bf78e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xce1e2b5ffe4d441abafd136768f24867101dfa50', 'value': 246.22606720374804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d5912b78f68dcc9c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:38:01.000Z'}}, {'blockNum': '0x81f3a6', 'uniqueId': '0xfe4c0731d46645e09fe3881cac2ff32acbe956baf92b20f6dae59b641a7b8db8:log:83', 'hash': '0xfe4c0731d46645e09fe3881cac2ff32acbe956baf92b20f6dae59b641a7b8db8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.42835468028454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab1d0f395a06c0b20', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:38:30.000Z'}}, {'blockNum': '0x81f3a6', 'uniqueId': '0xfe4c0731d46645e09fe3881cac2ff32acbe956baf92b20f6dae59b641a7b8db8:log:87', 'hash': '0xfe4c0731d46645e09fe3881cac2ff32acbe956baf92b20f6dae59b641a7b8db8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'value': 492.42835468028454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab1d0f395a06c0b20', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:38:30.000Z'}}, {'blockNum': '0x81f3ae', 'uniqueId': '0xc423e7f20f13e5e5d85849b2a8b59a42dae177283207170604e76f5b09cc488f:log:42', 'hash': '0xc423e7f20f13e5e5d85849b2a8b59a42dae177283207170604e76f5b09cc488f', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8.883380505149718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b481b80d6144083', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:39:29.000Z'}}, {'blockNum': '0x81f3ae', 'uniqueId': '0xc423e7f20f13e5e5d85849b2a8b59a42dae177283207170604e76f5b09cc488f:log:44', 'hash': '0xc423e7f20f13e5e5d85849b2a8b59a42dae177283207170604e76f5b09cc488f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5b14706689e0427e4d19a46a4a5237cd19241641', 'value': 8.883380505149718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b481b80d6144083', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:39:29.000Z'}}, {'blockNum': '0x81f3b3', 'uniqueId': '0x42506488337a60e1178fa5561e112994b36357cd4639642c2ff2a415c2735887:log:68', 'hash': '0x42506488337a60e1178fa5561e112994b36357cd4639642c2ff2a415c2735887', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 369.22627657812876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14040b3e4d9b7ed9f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:40:27.000Z'}}, {'blockNum': '0x81f3b3', 'uniqueId': '0x42506488337a60e1178fa5561e112994b36357cd4639642c2ff2a415c2735887:log:72', 'hash': '0x42506488337a60e1178fa5561e112994b36357cd4639642c2ff2a415c2735887', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 369.22627657812876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14040b3e4d9b7ed9f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:40:27.000Z'}}, {'blockNum': '0x81f3bd', 'uniqueId': '0xdc317897a3ea59270e0fd355e7ad1c62b351538d228f487d24fca1c1852fe145:log:107', 'hash': '0xdc317897a3ea59270e0fd355e7ad1c62b351538d228f487d24fca1c1852fe145', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 590.8436554865756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20079a563dbe9e25b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:42:29.000Z'}}, {'blockNum': '0x81f3bd', 'uniqueId': '0xdc317897a3ea59270e0fd355e7ad1c62b351538d228f487d24fca1c1852fe145:log:111', 'hash': '0xdc317897a3ea59270e0fd355e7ad1c62b351538d228f487d24fca1c1852fe145', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'value': 590.8436554865756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20079a563dbe9e25b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:42:29.000Z'}}, {'blockNum': '0x81f3d4', 'uniqueId': '0xf464c3da7d5d52d51f81056c4d2f9a6540fc306d5b91c8c62a46b1a9f72d6a7e:log:15', 'hash': '0xf464c3da7d5d52d51f81056c4d2f9a6540fc306d5b91c8c62a46b1a9f72d6a7e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.4116572309812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6c320fd57d1659db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:48:20.000Z'}}, {'blockNum': '0x81f3d4', 'uniqueId': '0xf464c3da7d5d52d51f81056c4d2f9a6540fc306d5b91c8c62a46b1a9f72d6a7e:log:19', 'hash': '0xf464c3da7d5d52d51f81056c4d2f9a6540fc306d5b91c8c62a46b1a9f72d6a7e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 487.4116572309812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6c320fd57d1659db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:48:20.000Z'}}, {'blockNum': '0x81f3e7', 'uniqueId': '0xa72d96c310ac77b0d7b712318f494ffdca40df604b2092b96901b29650cc4f32:log:122', 'hash': '0xa72d96c310ac77b0d7b712318f494ffdca40df604b2092b96901b29650cc4f32', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 113.23260541314032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06236b06b0f233dd6e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:52:22.000Z'}}, {'blockNum': '0x81f3e7', 'uniqueId': '0xa72d96c310ac77b0d7b712318f494ffdca40df604b2092b96901b29650cc4f32:log:126', 'hash': '0xa72d96c310ac77b0d7b712318f494ffdca40df604b2092b96901b29650cc4f32', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 113.23260541314032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06236b06b0f233dd6e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:52:22.000Z'}}, {'blockNum': '0x81f3fa', 'uniqueId': '0x58ce18289851392d658e6bed29549dd17e089cb1cccfc1095b47d04804b9f92f:log:14', 'hash': '0x58ce18289851392d658e6bed29549dd17e089cb1cccfc1095b47d04804b9f92f', 'from': '0x6d1ceb4fd5595c9773eb7fc79b0c090a380514da', 'to': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'value': 89264.78831687754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12e70dca7d1504ec2983', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:56:20.000Z'}}, {'blockNum': '0x81f3fa', 'uniqueId': '0xc26761164e5767c9db835a0f156e4e018fbc64a3675529b85478bcc3a03364a1:log:73', 'hash': '0xc26761164e5767c9db835a0f156e4e018fbc64a3675529b85478bcc3a03364a1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 290.4585832104908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fbeec2e83b08b5b16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:56:20.000Z'}}, {'blockNum': '0x81f3fa', 'uniqueId': '0xc26761164e5767c9db835a0f156e4e018fbc64a3675529b85478bcc3a03364a1:log:77', 'hash': '0xc26761164e5767c9db835a0f156e4e018fbc64a3675529b85478bcc3a03364a1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 290.4585832104908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fbeec2e83b08b5b16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:56:20.000Z'}}, {'blockNum': '0x81f401', 'uniqueId': '0x4f3f3d6eb84b173aa7ce184d658c0df272bece5958660e035efc96b95ffcdd6c:log:88', 'hash': '0x4f3f3d6eb84b173aa7ce184d658c0df272bece5958660e035efc96b95ffcdd6c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.27749309438786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aafb8fbc57accf4fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:57:18.000Z'}}, {'blockNum': '0x81f401', 'uniqueId': '0x4f3f3d6eb84b173aa7ce184d658c0df272bece5958660e035efc96b95ffcdd6c:log:92', 'hash': '0x4f3f3d6eb84b173aa7ce184d658c0df272bece5958660e035efc96b95ffcdd6c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2ce573c05c9b8f6ef1a476cc40250972f1f3d63c', 'value': 492.27749309438786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aafb8fbc57accf4fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:57:18.000Z'}}, {'blockNum': '0x81f401', 'uniqueId': '0xbac83c2b2437283b57cc6a3f06140d9df9219ad9a91c375a4199e34863f7d01b:log:103', 'hash': '0xbac83c2b2437283b57cc6a3f06140d9df9219ad9a91c375a4199e34863f7d01b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 290.42886010827664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fbe829582ab724997', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:57:18.000Z'}}, {'blockNum': '0x81f401', 'uniqueId': '0xbac83c2b2437283b57cc6a3f06140d9df9219ad9a91c375a4199e34863f7d01b:log:107', 'hash': '0xbac83c2b2437283b57cc6a3f06140d9df9219ad9a91c375a4199e34863f7d01b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 290.42886010827664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fbe829582ab724997', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:57:18.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x8cd4d068c97b64bbb741ee17e303383f452c408fdaad758373aecd1fce9fc87e:log:92', 'hash': '0x8cd4d068c97b64bbb741ee17e303383f452c408fdaad758373aecd1fce9fc87e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 438.08368774012445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17bfa1e8eecb4448bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x8cd4d068c97b64bbb741ee17e303383f452c408fdaad758373aecd1fce9fc87e:log:96', 'hash': '0x8cd4d068c97b64bbb741ee17e303383f452c408fdaad758373aecd1fce9fc87e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc6aacdf2cb021515009098025a0ece472608918e', 'value': 438.08368774012445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17bfa1e8eecb4448bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x7b293510253505ff0c171cbecd28a607b0cc5717261a21eb2b74df97dbf3fc27:log:107', 'hash': '0x7b293510253505ff0c171cbecd28a607b0cc5717261a21eb2b74df97dbf3fc27', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5825.603774423163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013bce7e37775b7b5565', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x7b293510253505ff0c171cbecd28a607b0cc5717261a21eb2b74df97dbf3fc27:log:111', 'hash': '0x7b293510253505ff0c171cbecd28a607b0cc5717261a21eb2b74df97dbf3fc27', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 5825.603774423163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013bce7e37775b7b5565', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x5f70164fef43ed1751d1e75db50dfb4fe3603c465ce3bc94ca92c163adca6733:log:122', 'hash': '0x5f70164fef43ed1751d1e75db50dfb4fe3603c465ce3bc94ca92c163adca6733', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.82421397614905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa96e9cd0a01281fd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x5f70164fef43ed1751d1e75db50dfb4fe3603c465ce3bc94ca92c163adca6733:log:126', 'hash': '0x5f70164fef43ed1751d1e75db50dfb4fe3603c465ce3bc94ca92c163adca6733', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc6aacdf2cb021515009098025a0ece472608918e', 'value': 491.82421397614905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa96e9cd0a01281fd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f408', 'uniqueId': '0xc91e39f48d71f4799d9e30c5d5591e94b1a3290ed1c08492f01c1f4a8ff155bb:log:52', 'hash': '0xc91e39f48d71f4799d9e30c5d5591e94b1a3290ed1c08492f01c1f4a8ff155bb', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 447.17798547238726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183dd75889606f176d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:59:07.000Z'}}, {'blockNum': '0x81f408', 'uniqueId': '0xc91e39f48d71f4799d9e30c5d5591e94b1a3290ed1c08492f01c1f4a8ff155bb:log:56', 'hash': '0xc91e39f48d71f4799d9e30c5d5591e94b1a3290ed1c08492f01c1f4a8ff155bb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 447.17798547238726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183dd75889606f176d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:59:07.000Z'}}, {'blockNum': '0x81f40b', 'uniqueId': '0xc7e5dda0a0c453ff10ecaaa4738374efa697c557d6e056615b3480e6dd757406:log:1', 'hash': '0xc7e5dda0a0c453ff10ecaaa4738374efa697c557d6e056615b3480e6dd757406', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 2534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x895e50764ae7d80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:59:28.000Z'}}, {'blockNum': '0x81f40f', 'uniqueId': '0x1a622fc398e0d45732f4561eac5d8e319dbdf92adbac2523f5ca2da71e48ae56:log:41', 'hash': '0x1a622fc398e0d45732f4561eac5d8e319dbdf92adbac2523f5ca2da71e48ae56', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x895e50764ae7d80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:00:16.000Z'}}, {'blockNum': '0x81f40f', 'uniqueId': '0x1a622fc398e0d45732f4561eac5d8e319dbdf92adbac2523f5ca2da71e48ae56:log:44', 'hash': '0x1a622fc398e0d45732f4561eac5d8e319dbdf92adbac2523f5ca2da71e48ae56', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x895e50764ae7d80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:00:16.000Z'}}, {'blockNum': '0x81f41c', 'uniqueId': '0x39312c3d747623d535b1554f4871afc75c29daf3759ca1f839833e9d9b3ee69b:log:27', 'hash': '0x39312c3d747623d535b1554f4871afc75c29daf3759ca1f839833e9d9b3ee69b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.91462453230577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d54c04019c1a5520e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:22.000Z'}}, {'blockNum': '0x81f41c', 'uniqueId': '0x39312c3d747623d535b1554f4871afc75c29daf3759ca1f839833e9d9b3ee69b:log:31', 'hash': '0x39312c3d747623d535b1554f4871afc75c29daf3759ca1f839833e9d9b3ee69b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'value': 245.91462453230577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d54c04019c1a5520e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:22.000Z'}}, {'blockNum': '0x81f41c', 'uniqueId': '0xffa3517cccdc50b36e3ff9a41005b5675f6381fbda52fcca1641adbdc38b5b9b:log:42', 'hash': '0xffa3517cccdc50b36e3ff9a41005b5675f6381fbda52fcca1641adbdc38b5b9b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.906718928326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d54a429fee4b2ab3c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:22.000Z'}}, {'blockNum': '0x81f41c', 'uniqueId': '0xffa3517cccdc50b36e3ff9a41005b5675f6381fbda52fcca1641adbdc38b5b9b:log:46', 'hash': '0xffa3517cccdc50b36e3ff9a41005b5675f6381fbda52fcca1641adbdc38b5b9b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 245.906718928326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d54a429fee4b2ab3c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:22.000Z'}}, {'blockNum': '0x81f41e', 'uniqueId': '0x63f9854b450f5aeae3471d554735db9dae71ec4fd20b02eb839f3030ff9a9793:log:74', 'hash': '0x63f9854b450f5aeae3471d554735db9dae71ec4fd20b02eb839f3030ff9a9793', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1229.0722768820142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42a0cde3eb9101936d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:28.000Z'}}, {'blockNum': '0x81f41e', 'uniqueId': '0x63f9854b450f5aeae3471d554735db9dae71ec4fd20b02eb839f3030ff9a9793:log:78', 'hash': '0x63f9854b450f5aeae3471d554735db9dae71ec4fd20b02eb839f3030ff9a9793', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 1229.0722768820142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42a0cde3eb9101936d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:28.000Z'}}, {'blockNum': '0x81f425', 'uniqueId': '0x349b2f6d2656040207adca1c6a7df3590765a3773a409770c7ec1f7bf2fdf07e:log:39', 'hash': '0x349b2f6d2656040207adca1c6a7df3590765a3773a409770c7ec1f7bf2fdf07e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.71071332064696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa7db6091f318ccd4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:04:10.000Z'}}, {'blockNum': '0x81f425', 'uniqueId': '0x349b2f6d2656040207adca1c6a7df3590765a3773a409770c7ec1f7bf2fdf07e:log:43', 'hash': '0x349b2f6d2656040207adca1c6a7df3590765a3773a409770c7ec1f7bf2fdf07e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 491.71071332064696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa7db6091f318ccd4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:04:10.000Z'}}, {'blockNum': '0x81f42b', 'uniqueId': '0xa8ec68608c2e4bf76c5427149e741d88f7440a118bf869ef3cc313eb85436338:log:66', 'hash': '0xa8ec68608c2e4bf76c5427149e741d88f7440a118bf869ef3cc313eb85436338', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 590.0111374232855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ffc0ca379371c99e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:05:37.000Z'}}, {'blockNum': '0x81f42b', 'uniqueId': '0xa8ec68608c2e4bf76c5427149e741d88f7440a118bf869ef3cc313eb85436338:log:70', 'hash': '0xa8ec68608c2e4bf76c5427149e741d88f7440a118bf869ef3cc313eb85436338', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'value': 590.0111374232855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ffc0ca379371c99e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:05:37.000Z'}}, {'blockNum': '0x81f42d', 'uniqueId': '0x655b7a2831fd43880b220407d31a0d8814cdfcd97fb2491db754d80cade62b19:log:95', 'hash': '0x655b7a2831fd43880b220407d31a0d8814cdfcd97fb2491db754d80cade62b19', 'from': '0x9f547e89078b24d0e2269ba08eb411102e98ca14', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 424.13431368654807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16fe0bc72354cb68c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:06:22.000Z'}}, {'blockNum': '0x81f42d', 'uniqueId': '0x655b7a2831fd43880b220407d31a0d8814cdfcd97fb2491db754d80cade62b19:log:99', 'hash': '0x655b7a2831fd43880b220407d31a0d8814cdfcd97fb2491db754d80cade62b19', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 424.13431368654807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16fe0bc72354cb68c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:06:22.000Z'}}, {'blockNum': '0x81f432', 'uniqueId': '0x36f0d05b0eaf6a5b9111dd72873fe53236da23e5c258b896fecd1e45697e72ef:log:11', 'hash': '0x36f0d05b0eaf6a5b9111dd72873fe53236da23e5c258b896fecd1e45697e72ef', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 12531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a74e8f1beaa3ec0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:07:54.000Z'}}, {'blockNum': '0x81f433', 'uniqueId': '0x246f5ce09db7f005ce6fc3941996bc415ad6a1998360c5c1f96d60077d8240f8:log:64', 'hash': '0x246f5ce09db7f005ce6fc3941996bc415ad6a1998360c5c1f96d60077d8240f8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 344.1712308030159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12a855d6eb02bdbc84', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:08:53.000Z'}}, {'blockNum': '0x81f433', 'uniqueId': '0x246f5ce09db7f005ce6fc3941996bc415ad6a1998360c5c1f96d60077d8240f8:log:68', 'hash': '0x246f5ce09db7f005ce6fc3941996bc415ad6a1998360c5c1f96d60077d8240f8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 344.1712308030159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12a855d6eb02bdbc84', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:08:53.000Z'}}, {'blockNum': '0x81f43c', 'uniqueId': '0x3dbe59e15c21e5019937f712cc5b79f6e51d6ae27652e3cbb5e96b0f890e9048:log:113', 'hash': '0x3dbe59e15c21e5019937f712cc5b79f6e51d6ae27652e3cbb5e96b0f890e9048', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.646326538971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa6f6a12221117cd2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:10:24.000Z'}}, {'blockNum': '0x81f43c', 'uniqueId': '0x3dbe59e15c21e5019937f712cc5b79f6e51d6ae27652e3cbb5e96b0f890e9048:log:117', 'hash': '0x3dbe59e15c21e5019937f712cc5b79f6e51d6ae27652e3cbb5e96b0f890e9048', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'value': 491.646326538971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa6f6a12221117cd2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:10:24.000Z'}}, {'blockNum': '0x81f43d', 'uniqueId': '0xa4a577981c8485c05726ed5c4292dd1dee8207d28cbfc63f8efed724258edc82:log:43', 'hash': '0xa4a577981c8485c05726ed5c4292dd1dee8207d28cbfc63f8efed724258edc82', 'from': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'to': '0x1c453e9a2c542dfb7f604cf943b6450d9647e40c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:10:31.000Z'}}, {'blockNum': '0x81f447', 'uniqueId': '0x3505a8feef0b17e91b7a3c01a62b5cd709256a422485e870b127c9c6fa076fc8:log:21', 'hash': '0x3505a8feef0b17e91b7a3c01a62b5cd709256a422485e870b127c9c6fa076fc8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 380.7682171545839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14a438741b09c623b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:12:13.000Z'}}, {'blockNum': '0x81f447', 'uniqueId': '0x3505a8feef0b17e91b7a3c01a62b5cd709256a422485e870b127c9c6fa076fc8:log:25', 'hash': '0x3505a8feef0b17e91b7a3c01a62b5cd709256a422485e870b127c9c6fa076fc8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 380.7682171545839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14a438741b09c623b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:12:13.000Z'}}, {'blockNum': '0x81f479', 'uniqueId': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa:log:162', 'hash': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa', 'from': '0x1c453e9a2c542dfb7f604cf943b6450d9647e40c', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:21:44.000Z'}}, {'blockNum': '0x81f479', 'uniqueId': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa:log:165', 'hash': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:21:44.000Z'}}, {'blockNum': '0x81f479', 'uniqueId': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa:log:166', 'hash': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:21:44.000Z'}}, {'blockNum': '0x81f47b', 'uniqueId': '0x79a1f2d3c30dc5ff4f65d1f2eb96602ef0612b2c4dc4a9c992e3f79ec8a64fff:log:76', 'hash': '0x79a1f2d3c30dc5ff4f65d1f2eb96602ef0612b2c4dc4a9c992e3f79ec8a64fff', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 7370.567914810686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018f8f2d7393ee81a755', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:19.000Z'}}, {'blockNum': '0x81f47b', 'uniqueId': '0x79a1f2d3c30dc5ff4f65d1f2eb96602ef0612b2c4dc4a9c992e3f79ec8a64fff:log:79', 'hash': '0x79a1f2d3c30dc5ff4f65d1f2eb96602ef0612b2c4dc4a9c992e3f79ec8a64fff', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 7370.567914810686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018f8f2d7393ee81a755', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:19.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x4c63de8ff87ee035f1d0b99cfcf606c265f0aebed34d567244a1bafe01d550b1:log:93', 'hash': '0x4c63de8ff87ee035f1d0b99cfcf606c265f0aebed34d567244a1bafe01d550b1', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 148.17229737617734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08084dbf69c49829e8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x4c63de8ff87ee035f1d0b99cfcf606c265f0aebed34d567244a1bafe01d550b1:log:97', 'hash': '0x4c63de8ff87ee035f1d0b99cfcf606c265f0aebed34d567244a1bafe01d550b1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 148.17229737617734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08084dbf69c49829e8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0xc228b1ffe2eb861593e437fbee95b99568656eb9c24cf68a09f4a9844f412de3:log:138', 'hash': '0xc228b1ffe2eb861593e437fbee95b99568656eb9c24cf68a09f4a9844f412de3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 815.2557278547167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c31f22d12eaec88ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0xc228b1ffe2eb861593e437fbee95b99568656eb9c24cf68a09f4a9844f412de3:log:142', 'hash': '0xc228b1ffe2eb861593e437fbee95b99568656eb9c24cf68a09f4a9844f412de3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 815.2557278547167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c31f22d12eaec88ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x0171698711e2cc6682079488e99ad84321cdba342ecdb58bf5a71f1dd7d77992:log:153', 'hash': '0x0171698711e2cc6682079488e99ad84321cdba342ecdb58bf5a71f1dd7d77992', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6381.53047531673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0159f1869c80c7621f38', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x0171698711e2cc6682079488e99ad84321cdba342ecdb58bf5a71f1dd7d77992:log:157', 'hash': '0x0171698711e2cc6682079488e99ad84321cdba342ecdb58bf5a71f1dd7d77992', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 6381.53047531673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0159f1869c80c7621f38', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x98c2514d01bd631f4804a49efc4aecba8793b31c79232547717e10e6d5ef06ec:log:168', 'hash': '0x98c2514d01bd631f4804a49efc4aecba8793b31c79232547717e10e6d5ef06ec', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 283.3147131609771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f5bc80e8de1b9acfe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x98c2514d01bd631f4804a49efc4aecba8793b31c79232547717e10e6d5ef06ec:log:172', 'hash': '0x98c2514d01bd631f4804a49efc4aecba8793b31c79232547717e10e6d5ef06ec', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 283.3147131609771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f5bc80e8de1b9acfe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47f', 'uniqueId': '0x7c7babcdaf2e16c56b6008373d9436595f0af4a6509e706f54adf327a6b7efc7:log:36', 'hash': '0x7c7babcdaf2e16c56b6008373d9436595f0af4a6509e706f54adf327a6b7efc7', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 909.702190682914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3150a76a9e09c15eca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:54.000Z'}}, {'blockNum': '0x81f47f', 'uniqueId': '0x7c7babcdaf2e16c56b6008373d9436595f0af4a6509e706f54adf327a6b7efc7:log:40', 'hash': '0x7c7babcdaf2e16c56b6008373d9436595f0af4a6509e706f54adf327a6b7efc7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 909.702190682914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3150a76a9e09c15eca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:54.000Z'}}, {'blockNum': '0x81f492', 'uniqueId': '0x0b9a7836411c2d70d2a3345012aad35472c57635d4c682db198a7eddcb25b11a:log:19', 'hash': '0x0b9a7836411c2d70d2a3345012aad35472c57635d4c682db198a7eddcb25b11a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.7506627791152107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x262c5139560d089a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:25:39.000Z'}}, {'blockNum': '0x81f492', 'uniqueId': '0x0b9a7836411c2d70d2a3345012aad35472c57635d4c682db198a7eddcb25b11a:log:23', 'hash': '0x0b9a7836411c2d70d2a3345012aad35472c57635d4c682db198a7eddcb25b11a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 2.7506627791152107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x262c5139560d089a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:25:39.000Z'}}, {'blockNum': '0x81f4ac', 'uniqueId': '0x78572503f963ea8d0d2234fd8404398f15aed42366414a1f07d172b5d2e08771:log:71', 'hash': '0x78572503f963ea8d0d2234fd8404398f15aed42366414a1f07d172b5d2e08771', 'from': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'to': '0x1c453e9a2c542dfb7f604cf943b6450d9647e40c', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:31:20.000Z'}}, {'blockNum': '0x81f4bd', 'uniqueId': '0x32fc0fe05fc023f6c3b7b08b0fae0ddaf40fc2cdd3547ebb61aa89a03ba73bed:log:109', 'hash': '0x32fc0fe05fc023f6c3b7b08b0fae0ddaf40fc2cdd3547ebb61aa89a03ba73bed', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 754.0349395030894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28e0563e6e02cdad27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:34:21.000Z'}}, {'blockNum': '0x81f4bd', 'uniqueId': '0x32fc0fe05fc023f6c3b7b08b0fae0ddaf40fc2cdd3547ebb61aa89a03ba73bed:log:113', 'hash': '0x32fc0fe05fc023f6c3b7b08b0fae0ddaf40fc2cdd3547ebb61aa89a03ba73bed', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 754.0349395030894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28e0563e6e02cdad27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:34:21.000Z'}}, {'blockNum': '0x81f4be', 'uniqueId': '0x2c3d3410284e4ab2b223b02adfb4f91d44fb11c2c142dd1aa76d78c947fa5f5b:log:25', 'hash': '0x2c3d3410284e4ab2b223b02adfb4f91d44fb11c2c142dd1aa76d78c947fa5f5b', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1289.0819236305415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e19afbb177a848fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:34:27.000Z'}}, {'blockNum': '0x81f4be', 'uniqueId': '0x2c3d3410284e4ab2b223b02adfb4f91d44fb11c2c142dd1aa76d78c947fa5f5b:log:29', 'hash': '0x2c3d3410284e4ab2b223b02adfb4f91d44fb11c2c142dd1aa76d78c947fa5f5b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1289.0819236305415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e19afbb177a848fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:34:27.000Z'}}, {'blockNum': '0x81f4bf', 'uniqueId': '0x89d950fba2cb340bad210130a2e9fb6594102fc4b5fad911588c6223aee24401:log:119', 'hash': '0x89d950fba2cb340bad210130a2e9fb6594102fc4b5fad911588c6223aee24401', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xe2859334be46db836da81bda171830a23d408832', 'value': 82.36571786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04770dd0005b58e800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:34:32.000Z'}}, {'blockNum': '0x81f4c5', 'uniqueId': '0x8f0c7718b2941af99b2c7c324edf20db9cf60cc5a5f573057918ba983e147ff6:log:32', 'hash': '0x8f0c7718b2941af99b2c7c324edf20db9cf60cc5a5f573057918ba983e147ff6', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1472.144314534179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fce1b3e5060aaf06a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:36:07.000Z'}}, {'blockNum': '0x81f4c5', 'uniqueId': '0x8f0c7718b2941af99b2c7c324edf20db9cf60cc5a5f573057918ba983e147ff6:log:36', 'hash': '0x8f0c7718b2941af99b2c7c324edf20db9cf60cc5a5f573057918ba983e147ff6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1472.144314534179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fce1b3e5060aaf06a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:36:07.000Z'}}, {'blockNum': '0x81f4c5', 'uniqueId': '0x51063e933e41ee5deac7b18c475888e964fbdab58ede2a00332076fb45ced5c3:log:44', 'hash': '0x51063e933e41ee5deac7b18c475888e964fbdab58ede2a00332076fb45ced5c3', 'from': '0x760f6df021517d001e43469eeaf2cd00c71f8f7a', 'to': '0x5ec72e3aa23d42effc2d88b950ee95b7a752a24d', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:36:07.000Z'}}, {'blockNum': '0x81f4c8', 'uniqueId': '0xeab20301ee1ee3e347ab7c764ca9ab0d43bc9ad452e1e801b112c073c66ff0a3:log:14', 'hash': '0xeab20301ee1ee3e347ab7c764ca9ab0d43bc9ad452e1e801b112c073c66ff0a3', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1430.3752649678686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d8a71c5090b0b4dbf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:36:23.000Z'}}, {'blockNum': '0x81f4c8', 'uniqueId': '0xeab20301ee1ee3e347ab7c764ca9ab0d43bc9ad452e1e801b112c073c66ff0a3:log:18', 'hash': '0xeab20301ee1ee3e347ab7c764ca9ab0d43bc9ad452e1e801b112c073c66ff0a3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1430.3752649678686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d8a71c5090b0b4dbf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:36:23.000Z'}}, {'blockNum': '0x81f4cc', 'uniqueId': '0x7cec109b88e255f2bcd54a0b09e53735d7367054f91da20aa6d536794ed483c9:log:60', 'hash': '0x7cec109b88e255f2bcd54a0b09e53735d7367054f91da20aa6d536794ed483c9', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 678.9611820702938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24ce7aadcd6b2ef988', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:39:06.000Z'}}, {'blockNum': '0x81f4cc', 'uniqueId': '0x7cec109b88e255f2bcd54a0b09e53735d7367054f91da20aa6d536794ed483c9:log:64', 'hash': '0x7cec109b88e255f2bcd54a0b09e53735d7367054f91da20aa6d536794ed483c9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 678.9611820702938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24ce7aadcd6b2ef988', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:39:06.000Z'}}, {'blockNum': '0x81f4ce', 'uniqueId': '0x5d44b0d49ded513d2b781576bc10739e1d7c8118211ddf9258651ac7d5ef5f6c:log:11', 'hash': '0x5d44b0d49ded513d2b781576bc10739e1d7c8118211ddf9258651ac7d5ef5f6c', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 587.4223733207979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fd81f803cf70f0aad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:39:14.000Z'}}, {'blockNum': '0x81f4ce', 'uniqueId': '0x5d44b0d49ded513d2b781576bc10739e1d7c8118211ddf9258651ac7d5ef5f6c:log:16', 'hash': '0x5d44b0d49ded513d2b781576bc10739e1d7c8118211ddf9258651ac7d5ef5f6c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5a9f1cd844ce91aaadaa03059677eebcf3cf00df', 'value': 587.4223733207979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fd81f803cf70f0aad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:39:14.000Z'}}, {'blockNum': '0x81f4e0', 'uniqueId': '0x76b464329daddd27e1e6b4979325018f0ff15b79fb23c49e1cb04a80a8d9fade:log:0', 'hash': '0x76b464329daddd27e1e6b4979325018f0ff15b79fb23c49e1cb04a80a8d9fade', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1423.357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d290be23b3dac8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:42:15.000Z'}}, {'blockNum': '0x81f4e0', 'uniqueId': '0xaaf4cb4ddb3815cf54c9b51aebc1382c5d7639ca78d5acefab861683b2cfbf95:log:45', 'hash': '0xaaf4cb4ddb3815cf54c9b51aebc1382c5d7639ca78d5acefab861683b2cfbf95', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 441.96210106406494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17f574cd4d5ce1f38b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:42:15.000Z'}}, {'blockNum': '0x81f4e0', 'uniqueId': '0xaaf4cb4ddb3815cf54c9b51aebc1382c5d7639ca78d5acefab861683b2cfbf95:log:49', 'hash': '0xaaf4cb4ddb3815cf54c9b51aebc1382c5d7639ca78d5acefab861683b2cfbf95', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 441.96210106406494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17f574cd4d5ce1f38b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:42:15.000Z'}}, {'blockNum': '0x81f4e4', 'uniqueId': '0x8432e68058e22cc1e691bdb6da90532087d0eb6a3536b061fa4feab664a4ee20:log:89', 'hash': '0x8432e68058e22cc1e691bdb6da90532087d0eb6a3536b061fa4feab664a4ee20', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1.0803205217825669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0efe11ca706a1fb0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:43:10.000Z'}}, {'blockNum': '0x81f4e4', 'uniqueId': '0x8432e68058e22cc1e691bdb6da90532087d0eb6a3536b061fa4feab664a4ee20:log:93', 'hash': '0x8432e68058e22cc1e691bdb6da90532087d0eb6a3536b061fa4feab664a4ee20', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x445556b7215349b205997aaaf6c6dfa258eb029d', 'value': 1.0803205217825669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0efe11ca706a1fb0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:43:10.000Z'}}, {'blockNum': '0x81f4ef', 'uniqueId': '0xa93cec692d8e45b26341a1dbd3fb80a79ac171c84b9866f87bf7879bbe7d9d23:log:69', 'hash': '0xa93cec692d8e45b26341a1dbd3fb80a79ac171c84b9866f87bf7879bbe7d9d23', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 0.14731642296911188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x020b5f8194a7b546', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:45:22.000Z'}}, {'blockNum': '0x81f4ef', 'uniqueId': '0xa93cec692d8e45b26341a1dbd3fb80a79ac171c84b9866f87bf7879bbe7d9d23:log:73', 'hash': '0xa93cec692d8e45b26341a1dbd3fb80a79ac171c84b9866f87bf7879bbe7d9d23', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x445556b7215349b205997aaaf6c6dfa258eb029d', 'value': 0.14731642296911188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x020b5f8194a7b546', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:45:22.000Z'}}, {'blockNum': '0x81f4fc', 'uniqueId': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a:log:26', 'hash': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 83.47885010734839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04868073e1fa948dce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:47:48.000Z'}}, {'blockNum': '0x81f4fc', 'uniqueId': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a:log:29', 'hash': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 83.47885010734839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04868073e1fa948dce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:47:48.000Z'}}, {'blockNum': '0x81f4fc', 'uniqueId': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a:log:32', 'hash': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 83.47885010734839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04868073e1fa948dce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:47:48.000Z'}}, {'blockNum': '0x81f500', 'uniqueId': '0xd8f2e2b7901e94f15fd46063a72758820850d0dabe4f3f56ccd9bfcbeb74adce:log:23', 'hash': '0xd8f2e2b7901e94f15fd46063a72758820850d0dabe4f3f56ccd9bfcbeb74adce', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 486.22844295411016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5bc670b7d305949b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:48:15.000Z'}}, {'blockNum': '0x81f500', 'uniqueId': '0xd8f2e2b7901e94f15fd46063a72758820850d0dabe4f3f56ccd9bfcbeb74adce:log:27', 'hash': '0xd8f2e2b7901e94f15fd46063a72758820850d0dabe4f3f56ccd9bfcbeb74adce', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 486.22844295411016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5bc670b7d305949b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:48:15.000Z'}}, {'blockNum': '0x81f507', 'uniqueId': '0x98b311ab4ae367211b8568d942337509fd2cc520d32bb38a673a2e6907678959:log:77', 'hash': '0x98b311ab4ae367211b8568d942337509fd2cc520d32bb38a673a2e6907678959', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1963.8206305196218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6a757c6ab0a1b23012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:50:04.000Z'}}, {'blockNum': '0x81f507', 'uniqueId': '0x98b311ab4ae367211b8568d942337509fd2cc520d32bb38a673a2e6907678959:log:80', 'hash': '0x98b311ab4ae367211b8568d942337509fd2cc520d32bb38a673a2e6907678959', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'value': 1963.8206305196218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6a757c6ab0a1b23012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:50:04.000Z'}}, {'blockNum': '0x81f50b', 'uniqueId': '0x2ed738fb68c209025f634689ae23097ceb40151743111ba9d2dafdbc24327fe5:log:96', 'hash': '0x2ed738fb68c209025f634689ae23097ceb40151743111ba9d2dafdbc24327fe5', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 196.33546144594243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0aa4b3adf489ccb1a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:50:47.000Z'}}, {'blockNum': '0x81f50b', 'uniqueId': '0x2ed738fb68c209025f634689ae23097ceb40151743111ba9d2dafdbc24327fe5:log:101', 'hash': '0x2ed738fb68c209025f634689ae23097ceb40151743111ba9d2dafdbc24327fe5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'value': 196.33546144594243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0aa4b3adf489ccb1a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:50:47.000Z'}}, {'blockNum': '0x81f50e', 'uniqueId': '0x2d3d08b514c665c362459caab3e7e810fc74e9cc68eb63f4c9b8e8cc8a0ab827:log:52', 'hash': '0x2d3d08b514c665c362459caab3e7e810fc74e9cc68eb63f4c9b8e8cc8a0ab827', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 485.58820026019885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a52e3d7614e662150', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:51:14.000Z'}}, {'blockNum': '0x81f50e', 'uniqueId': '0x2d3d08b514c665c362459caab3e7e810fc74e9cc68eb63f4c9b8e8cc8a0ab827:log:56', 'hash': '0x2d3d08b514c665c362459caab3e7e810fc74e9cc68eb63f4c9b8e8cc8a0ab827', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 485.58820026019885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a52e3d7614e662150', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:51:14.000Z'}}, {'blockNum': '0x81f514', 'uniqueId': '0x1265b963b7126e674b1b52ae904845effea19a435a93c5be60c3deb9e45c1cec:log:20', 'hash': '0x1265b963b7126e674b1b52ae904845effea19a435a93c5be60c3deb9e45c1cec', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 485.84857574915895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5680e181fe159521', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:53:13.000Z'}}, {'blockNum': '0x81f514', 'uniqueId': '0x1265b963b7126e674b1b52ae904845effea19a435a93c5be60c3deb9e45c1cec:log:24', 'hash': '0x1265b963b7126e674b1b52ae904845effea19a435a93c5be60c3deb9e45c1cec', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 485.84857574915895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5680e181fe159521', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:53:13.000Z'}}, {'blockNum': '0x81f518', 'uniqueId': '0x9e74dbbe62b2d9cd9d7ee5634f68a220169d59ac7a4445f7d48b20621fcf390f:log:78', 'hash': '0x9e74dbbe62b2d9cd9d7ee5634f68a220169d59ac7a4445f7d48b20621fcf390f', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2714.7183943324785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x932a492c736e317e0c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:54:21.000Z'}}, {'blockNum': '0x81f518', 'uniqueId': '0x9e74dbbe62b2d9cd9d7ee5634f68a220169d59ac7a4445f7d48b20621fcf390f:log:82', 'hash': '0x9e74dbbe62b2d9cd9d7ee5634f68a220169d59ac7a4445f7d48b20621fcf390f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2714.7183943324785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x932a492c736e317e0c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:54:21.000Z'}}, {'blockNum': '0x81f519', 'uniqueId': '0x38947f213480f6dfd4e28c09ca56415977538f2d8dbdb82c2c4d6cac28fc4395:log:19', 'hash': '0x38947f213480f6dfd4e28c09ca56415977538f2d8dbdb82c2c4d6cac28fc4395', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2209.169867385794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x77c26401b42b0fca23', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:54:25.000Z'}}, {'blockNum': '0x81f519', 'uniqueId': '0x38947f213480f6dfd4e28c09ca56415977538f2d8dbdb82c2c4d6cac28fc4395:log:23', 'hash': '0x38947f213480f6dfd4e28c09ca56415977538f2d8dbdb82c2c4d6cac28fc4395', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 2209.169867385794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x77c26401b42b0fca23', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:54:25.000Z'}}, {'blockNum': '0x81f51e', 'uniqueId': '0xecce6b7e4af6c0212ef7669d35c5a9f1402d8f4534f169797f640e0eaec80efd:log:53', 'hash': '0xecce6b7e4af6c0212ef7669d35c5a9f1402d8f4534f169797f640e0eaec80efd', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 543.4505439031907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d75e42e5b0682fcc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:55:02.000Z'}}, {'blockNum': '0x81f51e', 'uniqueId': '0xecce6b7e4af6c0212ef7669d35c5a9f1402d8f4534f169797f640e0eaec80efd:log:57', 'hash': '0xecce6b7e4af6c0212ef7669d35c5a9f1402d8f4534f169797f640e0eaec80efd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 543.4505439031907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d75e42e5b0682fcc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:55:02.000Z'}}, {'blockNum': '0x81f51e', 'uniqueId': '0xbb5ac487eeeed861a7309d5f4f6301d1c29d2858561224d05b86845b557b4745:log:69', 'hash': '0xbb5ac487eeeed861a7309d5f4f6301d1c29d2858561224d05b86845b557b4745', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1267.4310504039197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44b523a13471d8686e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:55:02.000Z'}}, {'blockNum': '0x81f51e', 'uniqueId': '0xbb5ac487eeeed861a7309d5f4f6301d1c29d2858561224d05b86845b557b4745:log:73', 'hash': '0xbb5ac487eeeed861a7309d5f4f6301d1c29d2858561224d05b86845b557b4745', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 1267.4310504039197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44b523a13471d8686e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:55:02.000Z'}}, {'blockNum': '0x81f52a', 'uniqueId': '0x4de9245566b54b927813956594f6640228dafbe4c0b8bd5a73f5a1673f93f495:log:25', 'hash': '0x4de9245566b54b927813956594f6640228dafbe4c0b8bd5a73f5a1673f93f495', 'from': '0xfee4ae2adfc648afde92a4087fd7b7c6980149ba', 'to': '0xfa12612a0c2ef2e88861794422d379f1c92f70b4', 'value': 13503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02dbffc4ce0a339c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:57:22.000Z'}}, {'blockNum': '0x81f52c', 'uniqueId': '0x888bc6814fd5b849872371310d3787d0a5e65a4ed0bf65150f5c5d31239fa362:log:95', 'hash': '0x888bc6814fd5b849872371310d3787d0a5e65a4ed0bf65150f5c5d31239fa362', 'from': '0x1229e2a0711660be162521f5626c68e85ec99c7f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 95.48728243395634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052d26f975db5d42f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:57:45.000Z'}}, {'blockNum': '0x81f52c', 'uniqueId': '0x888bc6814fd5b849872371310d3787d0a5e65a4ed0bf65150f5c5d31239fa362:log:99', 'hash': '0x888bc6814fd5b849872371310d3787d0a5e65a4ed0bf65150f5c5d31239fa362', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 95.48728243395634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052d26f975db5d42f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:57:45.000Z'}}, {'blockNum': '0x81f542', 'uniqueId': '0x2bd4e24c838ac28f7efd6cc3b312c51d92a56f2dcd89d9ad3d332d04e410580b:log:114', 'hash': '0x2bd4e24c838ac28f7efd6cc3b312c51d92a56f2dcd89d9ad3d332d04e410580b', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 985.2259181491161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3568c1989b2223af1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:01:54.000Z'}}, {'blockNum': '0x81f542', 'uniqueId': '0x2bd4e24c838ac28f7efd6cc3b312c51d92a56f2dcd89d9ad3d332d04e410580b:log:118', 'hash': '0x2bd4e24c838ac28f7efd6cc3b312c51d92a56f2dcd89d9ad3d332d04e410580b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 985.2259181491161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3568c1989b2223af1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:01:54.000Z'}}, {'blockNum': '0x81f544', 'uniqueId': '0xd19d9eb3bfe92cec58709d6cd8b347a1a971c0b85f1f19531c5431cd6a976dce:log:30', 'hash': '0xd19d9eb3bfe92cec58709d6cd8b347a1a971c0b85f1f19531c5431cd6a976dce', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 981.7073144728154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3537ed01346adacb70', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:02:23.000Z'}}, {'blockNum': '0x81f544', 'uniqueId': '0xd19d9eb3bfe92cec58709d6cd8b347a1a971c0b85f1f19531c5431cd6a976dce:log:34', 'hash': '0xd19d9eb3bfe92cec58709d6cd8b347a1a971c0b85f1f19531c5431cd6a976dce', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 981.7073144728154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3537ed01346adacb70', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:02:23.000Z'}}, {'blockNum': '0x81f547', 'uniqueId': '0xac2e20af4dc5ce90809d5e2972abf6d10ade578719c3260e9b3b1bcef08fbc32:log:11', 'hash': '0xac2e20af4dc5ce90809d5e2972abf6d10ade578719c3260e9b3b1bcef08fbc32', 'from': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:03:28.000Z'}}, {'blockNum': '0x81f547', 'uniqueId': '0xac2e20af4dc5ce90809d5e2972abf6d10ade578719c3260e9b3b1bcef08fbc32:log:14', 'hash': '0xac2e20af4dc5ce90809d5e2972abf6d10ade578719c3260e9b3b1bcef08fbc32', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:03:28.000Z'}}, {'blockNum': '0x81f54c', 'uniqueId': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c:log:29', 'hash': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c', 'from': '0x1c453e9a2c542dfb7f604cf943b6450d9647e40c', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:04:56.000Z'}}, {'blockNum': '0x81f54c', 'uniqueId': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c:log:32', 'hash': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:04:56.000Z'}}, {'blockNum': '0x81f54c', 'uniqueId': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c:log:33', 'hash': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:04:56.000Z'}}, {'blockNum': '0x81f55a', 'uniqueId': '0xa19b97f718da672470d962af66cc3903bd3d6b123aac9e0189654ad9cd0a3493:log:21', 'hash': '0xa19b97f718da672470d962af66cc3903bd3d6b123aac9e0189654ad9cd0a3493', 'from': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'to': '0x1c453e9a2c542dfb7f604cf943b6450d9647e40c', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:07:25.000Z'}}, {'blockNum': '0x81f55c', 'uniqueId': '0x00554db9a3fd60cada95eb1097bce7f4eda9bedddd37bcec0ab99b1f38fc73da:log:29', 'hash': '0x00554db9a3fd60cada95eb1097bce7f4eda9bedddd37bcec0ab99b1f38fc73da', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 2622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8e238f440c72380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:08:34.000Z'}}, {'blockNum': '0x81f55e', 'uniqueId': '0x8b8079929097424f25f06d2039fe94ed950ecdf5e91a165336760be05500c933:log:30', 'hash': '0x8b8079929097424f25f06d2039fe94ed950ecdf5e91a165336760be05500c933', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8e238f440c72380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:09:03.000Z'}}, {'blockNum': '0x81f55e', 'uniqueId': '0x8b8079929097424f25f06d2039fe94ed950ecdf5e91a165336760be05500c933:log:33', 'hash': '0x8b8079929097424f25f06d2039fe94ed950ecdf5e91a165336760be05500c933', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8e238f440c72380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:09:03.000Z'}}, {'blockNum': '0x81f562', 'uniqueId': '0x8f6fb651c2707e28e8b434b38d5e2287d6b0e5ccb2cf3f15a439fe5675a6e1eb:log:12', 'hash': '0x8f6fb651c2707e28e8b434b38d5e2287d6b0e5ccb2cf3f15a439fe5675a6e1eb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2159.59500639088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x751266b849abdafd26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:09:54.000Z'}}, {'blockNum': '0x81f562', 'uniqueId': '0x8f6fb651c2707e28e8b434b38d5e2287d6b0e5ccb2cf3f15a439fe5675a6e1eb:log:15', 'hash': '0x8f6fb651c2707e28e8b434b38d5e2287d6b0e5ccb2cf3f15a439fe5675a6e1eb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'value': 2159.59500639088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x751266b849abdafd26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:09:54.000Z'}}, {'blockNum': '0x81f563', 'uniqueId': '0x51bfd3e6ec90436dc74474c83a326be89ec87eb0ff99c2b3323c52c2cfea6e30:log:43', 'hash': '0x51bfd3e6ec90436dc74474c83a326be89ec87eb0ff99c2b3323c52c2cfea6e30', 'from': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'to': '0xefa6570c0819de6733599439b45d407a430293cd', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:09:59.000Z'}}, {'blockNum': '0x81f577', 'uniqueId': '0x7c6610aacf62eb1bfe50bba308355616f69608aa2dc7834dd016185eea189417:log:96', 'hash': '0x7c6610aacf62eb1bfe50bba308355616f69608aa2dc7834dd016185eea189417', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 100.70972159949602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0575a0ce363671fe43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:12:35.000Z'}}, {'blockNum': '0x81f577', 'uniqueId': '0x7c6610aacf62eb1bfe50bba308355616f69608aa2dc7834dd016185eea189417:log:98', 'hash': '0x7c6610aacf62eb1bfe50bba308355616f69608aa2dc7834dd016185eea189417', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8bf2d64011443366ec19f04f2c81425559906089', 'value': 100.70972159949602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0575a0ce363671fe43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:12:35.000Z'}}, {'blockNum': '0x81f578', 'uniqueId': '0xec709595aa4422b0e652d7f926c5f725073e62d28f3c64708d2529671bbdcf41:log:40', 'hash': '0xec709595aa4422b0e652d7f926c5f725073e62d28f3c64708d2529671bbdcf41', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 49.074621019912456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a90c13cf22ccc83e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:12:44.000Z'}}, {'blockNum': '0x81f578', 'uniqueId': '0xec709595aa4422b0e652d7f926c5f725073e62d28f3c64708d2529671bbdcf41:log:44', 'hash': '0xec709595aa4422b0e652d7f926c5f725073e62d28f3c64708d2529671bbdcf41', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c73126b85f59d85aa61391579b4c2710dd70f96', 'value': 49.074621019912456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a90c13cf22ccc83e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:12:44.000Z'}}, {'blockNum': '0x81f57c', 'uniqueId': '0xa015058b6b4b4ac3cd803879a5c3b2bd8cefce739395413f4505342d27b95d3f:log:28', 'hash': '0xa015058b6b4b4ac3cd803879a5c3b2bd8cefce739395413f4505342d27b95d3f', 'from': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 78.17658038339017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043ceb01a952be1162', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:13:16.000Z'}}, {'blockNum': '0x81f57c', 'uniqueId': '0xa015058b6b4b4ac3cd803879a5c3b2bd8cefce739395413f4505342d27b95d3f:log:32', 'hash': '0xa015058b6b4b4ac3cd803879a5c3b2bd8cefce739395413f4505342d27b95d3f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 78.17658038339017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043ceb01a952be1162', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:13:16.000Z'}}, {'blockNum': '0x81f587', 'uniqueId': '0x8d37270e1d5a0f8a13e396ccb88c66309b060e183eca3267b6c1e122015230d2:log:7', 'hash': '0x8d37270e1d5a0f8a13e396ccb88c66309b060e183eca3267b6c1e122015230d2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1472.1073240939256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fcd97d3b45d473ead', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:15:00.000Z'}}, {'blockNum': '0x81f587', 'uniqueId': '0x8d37270e1d5a0f8a13e396ccb88c66309b060e183eca3267b6c1e122015230d2:log:11', 'hash': '0x8d37270e1d5a0f8a13e396ccb88c66309b060e183eca3267b6c1e122015230d2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 1472.1073240939256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fcd97d3b45d473ead', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:15:00.000Z'}}, {'blockNum': '0x81f591', 'uniqueId': '0x092c0f8e040644fb2544eb166ad25a143a8d2e78881d17db8a62f8084fccd5bd:log:82', 'hash': '0x092c0f8e040644fb2544eb166ad25a143a8d2e78881d17db8a62f8084fccd5bd', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 269.2365355961362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e986852a5fc832b80', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:16:47.000Z'}}, {'blockNum': '0x81f591', 'uniqueId': '0x092c0f8e040644fb2544eb166ad25a143a8d2e78881d17db8a62f8084fccd5bd:log:87', 'hash': '0x092c0f8e040644fb2544eb166ad25a143a8d2e78881d17db8a62f8084fccd5bd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'value': 269.2365355961362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e986852a5fc832b80', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:16:47.000Z'}}, {'blockNum': '0x81f592', 'uniqueId': '0x1892fbe754ee70c4d4ef5711e66879b7ed3a50e98cd70193174fca1449455991:log:6', 'hash': '0x1892fbe754ee70c4d4ef5711e66879b7ed3a50e98cd70193174fca1449455991', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 682.204773379763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24fb7e3ae9c0a1c262', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:16:54.000Z'}}, {'blockNum': '0x81f592', 'uniqueId': '0x1892fbe754ee70c4d4ef5711e66879b7ed3a50e98cd70193174fca1449455991:log:11', 'hash': '0x1892fbe754ee70c4d4ef5711e66879b7ed3a50e98cd70193174fca1449455991', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 682.204773379763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24fb7e3ae9c0a1c262', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:16:54.000Z'}}, {'blockNum': '0x81f596', 'uniqueId': '0x272f51e36d63826ba92b4cffe8ebfb67c6bd70d676f093f6768f4790e13f8389:log:5', 'hash': '0x272f51e36d63826ba92b4cffe8ebfb67c6bd70d676f093f6768f4790e13f8389', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x957fcf2c4c60e38b53341289e78d18b22b442d0b', 'value': 486.45006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5ed9c83f4374c000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:17:57.000Z'}}, {'blockNum': '0x81f59b', 'uniqueId': '0x6e1e5fa9e48b794640536b2567e8c32cfa9fd9213bd021d7419674b38033f1d3:log:20', 'hash': '0x6e1e5fa9e48b794640536b2567e8c32cfa9fd9213bd021d7419674b38033f1d3', 'from': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'to': '0xefa6570c0819de6733599439b45d407a430293cd', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:19:11.000Z'}}, {'blockNum': '0x81f5a7', 'uniqueId': '0xbedab842ed7123d5a7883b2e86e4c4920b8f3e43cbe14cb3fe1f11c3f58651a0:log:45', 'hash': '0xbedab842ed7123d5a7883b2e86e4c4920b8f3e43cbe14cb3fe1f11c3f58651a0', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1301.308922174307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x468b4a02165e0466b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:21:28.000Z'}}, {'blockNum': '0x81f5a7', 'uniqueId': '0xbedab842ed7123d5a7883b2e86e4c4920b8f3e43cbe14cb3fe1f11c3f58651a0:log:49', 'hash': '0xbedab842ed7123d5a7883b2e86e4c4920b8f3e43cbe14cb3fe1f11c3f58651a0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1301.308922174307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x468b4a02165e0466b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:21:28.000Z'}}, {'blockNum': '0x81f5a8', 'uniqueId': '0x2a8e00bb085f8ceb262b1df8e88e2c885e236c8ac5fba2e5b324f4aca5a35ca5:log:29', 'hash': '0x2a8e00bb085f8ceb262b1df8e88e2c885e236c8ac5fba2e5b324f4aca5a35ca5', 'from': '0xce1e2b5ffe4d441abafd136768f24867101dfa50', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 38.35237974852081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02143f062e8177d68d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:21:34.000Z'}}, {'blockNum': '0x81f5a8', 'uniqueId': '0x2a8e00bb085f8ceb262b1df8e88e2c885e236c8ac5fba2e5b324f4aca5a35ca5:log:33', 'hash': '0x2a8e00bb085f8ceb262b1df8e88e2c885e236c8ac5fba2e5b324f4aca5a35ca5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 38.35237974852081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02143f062e8177d68d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:21:34.000Z'}}, {'blockNum': '0x81f5af', 'uniqueId': '0xdde9b293ca0de017bb28d3563b851bc1aa533bcfa00ca9715ff02e8059d61408:log:31', 'hash': '0xdde9b293ca0de017bb28d3563b851bc1aa533bcfa00ca9715ff02e8059d61408', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 146.8162667010032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f57c28b2da4e8a66', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:22:57.000Z'}}, {'blockNum': '0x81f5af', 'uniqueId': '0xdde9b293ca0de017bb28d3563b851bc1aa533bcfa00ca9715ff02e8059d61408:log:35', 'hash': '0xdde9b293ca0de017bb28d3563b851bc1aa533bcfa00ca9715ff02e8059d61408', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 146.8162667010032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f57c28b2da4e8a66', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:22:57.000Z'}}, {'blockNum': '0x81f5b2', 'uniqueId': '0x85739e635ffdb6fdd1dd0e6ef3d68b776cb26673535907c0c747f5d95d97f935:log:64', 'hash': '0x85739e635ffdb6fdd1dd0e6ef3d68b776cb26673535907c0c747f5d95d97f935', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 157.03857154937705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08835914cc53627399', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:23:40.000Z'}}, {'blockNum': '0x81f5b2', 'uniqueId': '0x85739e635ffdb6fdd1dd0e6ef3d68b776cb26673535907c0c747f5d95d97f935:log:68', 'hash': '0x85739e635ffdb6fdd1dd0e6ef3d68b776cb26673535907c0c747f5d95d97f935', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 157.03857154937705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08835914cc53627399', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:23:40.000Z'}}, {'blockNum': '0x81f5b5', 'uniqueId': '0x41b77d73067d98cfa88da3797c4dfa3c724c1d3a734b9dfe2b189ed1e06f0c86:log:108', 'hash': '0x41b77d73067d98cfa88da3797c4dfa3c724c1d3a734b9dfe2b189ed1e06f0c86', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 149.87586275068438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081ff207186bbe0a6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:24:30.000Z'}}, {'blockNum': '0x81f5b5', 'uniqueId': '0x41b77d73067d98cfa88da3797c4dfa3c724c1d3a734b9dfe2b189ed1e06f0c86:log:112', 'hash': '0x41b77d73067d98cfa88da3797c4dfa3c724c1d3a734b9dfe2b189ed1e06f0c86', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 149.87586275068438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081ff207186bbe0a6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:24:30.000Z'}}, {'blockNum': '0x81f5bf', 'uniqueId': '0xa9f93bce960a41deaacf4c3994e69d502c458ff4fc1f2d286476db5804da0a9d:log:72', 'hash': '0xa9f93bce960a41deaacf4c3994e69d502c458ff4fc1f2d286476db5804da0a9d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.37112191828115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4d35575a4e367638', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:26:54.000Z'}}, {'blockNum': '0x81f5bf', 'uniqueId': '0xa9f93bce960a41deaacf4c3994e69d502c458ff4fc1f2d286476db5804da0a9d:log:76', 'hash': '0xa9f93bce960a41deaacf4c3994e69d502c458ff4fc1f2d286476db5804da0a9d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 245.37112191828115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4d35575a4e367638', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:26:54.000Z'}}, {'blockNum': '0x81f5c1', 'uniqueId': '0xe46ed3daaacfe5b9ac7631b4e6fbb9738e917bc1cd508b1e93434ede2f251a0c:log:67', 'hash': '0xe46ed3daaacfe5b9ac7631b4e6fbb9738e917bc1cd508b1e93434ede2f251a0c', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 146.7158253616876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f41751d52ba2f09f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:27:30.000Z'}}, {'blockNum': '0x81f5c1', 'uniqueId': '0xe46ed3daaacfe5b9ac7631b4e6fbb9738e917bc1cd508b1e93434ede2f251a0c:log:71', 'hash': '0xe46ed3daaacfe5b9ac7631b4e6fbb9738e917bc1cd508b1e93434ede2f251a0c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 146.7158253616876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f41751d52ba2f09f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:27:30.000Z'}}, {'blockNum': '0x81f5c8', 'uniqueId': '0x656c218160bc2ceff99db868b852c52aceb83abb1ebcc07f479b0a03d14e10d5:log:27', 'hash': '0x656c218160bc2ceff99db868b852c52aceb83abb1ebcc07f479b0a03d14e10d5', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 143.65020145679733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07c98c092231b4cb0c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:28:56.000Z'}}, {'blockNum': '0x81f5c8', 'uniqueId': '0x656c218160bc2ceff99db868b852c52aceb83abb1ebcc07f479b0a03d14e10d5:log:31', 'hash': '0x656c218160bc2ceff99db868b852c52aceb83abb1ebcc07f479b0a03d14e10d5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 143.65020145679733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07c98c092231b4cb0c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:28:56.000Z'}}, {'blockNum': '0x81f5ce', 'uniqueId': '0x74ade19d1074318409a1f260ec4f351002b00ab187d95b8e6985023ae83e18de:log:22', 'hash': '0x74ade19d1074318409a1f260ec4f351002b00ab187d95b8e6985023ae83e18de', 'from': '0xefa6570c0819de6733599439b45d407a430293cd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:30:09.000Z'}}, {'blockNum': '0x81f5d2', 'uniqueId': '0x3dea0a50a556eefc31cdc1c56ee76b9132c9b5a16b0383b5fc3ea00565ef48b9:log:31', 'hash': '0x3dea0a50a556eefc31cdc1c56ee76b9132c9b5a16b0383b5fc3ea00565ef48b9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.37256488246973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4d3a77b89618ba15', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:30:38.000Z'}}, {'blockNum': '0x81f5d2', 'uniqueId': '0x3dea0a50a556eefc31cdc1c56ee76b9132c9b5a16b0383b5fc3ea00565ef48b9:log:35', 'hash': '0x3dea0a50a556eefc31cdc1c56ee76b9132c9b5a16b0383b5fc3ea00565ef48b9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 245.37256488246973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4d3a77b89618ba15', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:30:38.000Z'}}, {'blockNum': '0x81f5d8', 'uniqueId': '0x2a1dff2d6d50e89462863b8ddb498fd9b1b0fecedcd2040cf99b8e2d57545d5a:log:107', 'hash': '0x2a1dff2d6d50e89462863b8ddb498fd9b1b0fecedcd2040cf99b8e2d57545d5a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.7215237132955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9a2111dcf967cf41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:31:23.000Z'}}, {'blockNum': '0x81f5d8', 'uniqueId': '0x2a1dff2d6d50e89462863b8ddb498fd9b1b0fecedcd2040cf99b8e2d57545d5a:log:111', 'hash': '0x2a1dff2d6d50e89462863b8ddb498fd9b1b0fecedcd2040cf99b8e2d57545d5a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 490.7215237132955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9a2111dcf967cf41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:31:23.000Z'}}, {'blockNum': '0x81f5d8', 'uniqueId': '0x0f86bc42a13b4c5b2d94a3ea8baf2cde38faac365ac0df5a6a98d590f8152909:log:122', 'hash': '0x0f86bc42a13b4c5b2d94a3ea8baf2cde38faac365ac0df5a6a98d590f8152909', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4905.485024701416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0109ed47bf97a62ca603', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:31:23.000Z'}}, {'blockNum': '0x81f5d8', 'uniqueId': '0x0f86bc42a13b4c5b2d94a3ea8baf2cde38faac365ac0df5a6a98d590f8152909:log:125', 'hash': '0x0f86bc42a13b4c5b2d94a3ea8baf2cde38faac365ac0df5a6a98d590f8152909', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4905.485024701416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0109ed47bf97a62ca603', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:31:23.000Z'}}, {'blockNum': '0x81f5db', 'uniqueId': '0x4254596d92e79e0ea1e469f23d268714f9f1180730492d08f77b5186e119dea4:log:23', 'hash': '0x4254596d92e79e0ea1e469f23d268714f9f1180730492d08f77b5186e119dea4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 480.32227399342474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a09cf83572deddbd4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:32:22.000Z'}}, {'blockNum': '0x81f5db', 'uniqueId': '0x4254596d92e79e0ea1e469f23d268714f9f1180730492d08f77b5186e119dea4:log:27', 'hash': '0x4254596d92e79e0ea1e469f23d268714f9f1180730492d08f77b5186e119dea4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 480.32227399342474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a09cf83572deddbd4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:32:22.000Z'}}, {'blockNum': '0x81f5e1', 'uniqueId': '0xe8cfeb2a35ff5c3d62822588ccdb9c97b6216c0b75060586db73cc0a765afbe0:log:68', 'hash': '0xe8cfeb2a35ff5c3d62822588ccdb9c97b6216c0b75060586db73cc0a765afbe0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 588.4099831069155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe5d4321b254c1d91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:35:17.000Z'}}, {'blockNum': '0x81f5e1', 'uniqueId': '0xe8cfeb2a35ff5c3d62822588ccdb9c97b6216c0b75060586db73cc0a765afbe0:log:72', 'hash': '0xe8cfeb2a35ff5c3d62822588ccdb9c97b6216c0b75060586db73cc0a765afbe0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 588.4099831069155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe5d4321b254c1d91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:35:17.000Z'}}, {'blockNum': '0x81f5f4', 'uniqueId': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78:log:14', 'hash': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78', 'from': '0x7059010320d07a47d2ad54db88bb89ea644c3e6f', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1463.3498288740348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f540ef433857e89cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:39:51.000Z'}}, {'blockNum': '0x81f5f4', 'uniqueId': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78:log:17', 'hash': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1463.3498288740348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f540ef433857e89cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:39:51.000Z'}}, {'blockNum': '0x81f5f4', 'uniqueId': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78:log:18', 'hash': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1463.3498288740348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f540ef433857e89cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:39:51.000Z'}}, {'blockNum': '0x81f5f8', 'uniqueId': '0x635df707358efae36cb005de277c655b673c7bd2072583beda478d37d431da7c:log:44', 'hash': '0x635df707358efae36cb005de277c655b673c7bd2072583beda478d37d431da7c', 'from': '0x7ed1e469fcb3ee19c0366d829e291451be638e59', 'to': '0xe42db7fb76c7bfe974d3d8c2da56755b6255814b', 'value': 15.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xdca825c218b60000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:40:53.000Z'}}, {'blockNum': '0x81f603', 'uniqueId': '0x25fa2dda9e6b91aaf5ede2bcf0845d7bb5646afc40d3d5652ad5b4f2020a3d76:log:51', 'hash': '0x25fa2dda9e6b91aaf5ede2bcf0845d7bb5646afc40d3d5652ad5b4f2020a3d76', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.4008644766204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a95addbfc81703f54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:43:40.000Z'}}, {'blockNum': '0x81f603', 'uniqueId': '0x25fa2dda9e6b91aaf5ede2bcf0845d7bb5646afc40d3d5652ad5b4f2020a3d76:log:55', 'hash': '0x25fa2dda9e6b91aaf5ede2bcf0845d7bb5646afc40d3d5652ad5b4f2020a3d76', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 490.4008644766204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a95addbfc81703f54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:43:40.000Z'}}, {'blockNum': '0x81f603', 'uniqueId': '0x5cf7aee650715c7618ed66c99abf5670e8009e11aec31e1983658777e3fcbd0c:log:75', 'hash': '0x5cf7aee650715c7618ed66c99abf5670e8009e11aec31e1983658777e3fcbd0c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 867.2862544253672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f0403bd520312236e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:43:40.000Z'}}, {'blockNum': '0x81f603', 'uniqueId': '0x5cf7aee650715c7618ed66c99abf5670e8009e11aec31e1983658777e3fcbd0c:log:79', 'hash': '0x5cf7aee650715c7618ed66c99abf5670e8009e11aec31e1983658777e3fcbd0c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 867.2862544253672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f0403bd520312236e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:43:40.000Z'}}, {'blockNum': '0x81f608', 'uniqueId': '0x33953e7f33b3843a8fd2e03d1970a73dce721245628afeaefd15d94284eaa0ab:log:123', 'hash': '0x33953e7f33b3843a8fd2e03d1970a73dce721245628afeaefd15d94284eaa0ab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.16085793564926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a4a555fe461470e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:44:48.000Z'}}, {'blockNum': '0x81f608', 'uniqueId': '0x33953e7f33b3843a8fd2e03d1970a73dce721245628afeaefd15d94284eaa0ab:log:127', 'hash': '0x33953e7f33b3843a8fd2e03d1970a73dce721245628afeaefd15d94284eaa0ab', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 245.16085793564926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a4a555fe461470e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:44:48.000Z'}}, {'blockNum': '0x81f60c', 'uniqueId': '0x733c9d964be5de323355971efbb81458318ac863aa9eab53bbba1dc1ec7f629f:log:1', 'hash': '0x733c9d964be5de323355971efbb81458318ac863aa9eab53bbba1dc1ec7f629f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x513cd4e35338572a1d2785c5e6297996b5c5c2fd', 'value': 29619.348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0645ab06cbf7f4c20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:45:30.000Z'}}, {'blockNum': '0x81f62c', 'uniqueId': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6:log:67', 'hash': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4.903137040678252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x440b71291aafeec0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:53:55.000Z'}}, {'blockNum': '0x81f62c', 'uniqueId': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6:log:70', 'hash': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4.903137040678252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x440b71291aafeec0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:53:55.000Z'}}, {'blockNum': '0x81f62c', 'uniqueId': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6:log:73', 'hash': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 4.903137040678252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x440b71291aafeec0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:53:55.000Z'}}, {'blockNum': '0x81f62e', 'uniqueId': '0x533ed6db1b892554ee90994a62d6bdecfc0d3a84d57a92c597a473e24335203e:log:96', 'hash': '0x533ed6db1b892554ee90994a62d6bdecfc0d3a84d57a92c597a473e24335203e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.297838635337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a943fd687910d9d76', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:54:16.000Z'}}, {'blockNum': '0x81f62e', 'uniqueId': '0x533ed6db1b892554ee90994a62d6bdecfc0d3a84d57a92c597a473e24335203e:log:100', 'hash': '0x533ed6db1b892554ee90994a62d6bdecfc0d3a84d57a92c597a473e24335203e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'value': 490.297838635337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a943fd687910d9d76', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:54:16.000Z'}}, {'blockNum': '0x81f62f', 'uniqueId': '0xaa07c075a823bb137b492e36b62b622214751056a4255b4090d9b7e61db8097a:log:176', 'hash': '0xaa07c075a823bb137b492e36b62b622214751056a4255b4090d9b7e61db8097a', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 167.90793442474907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091a30d0beb4c05ee4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:54:21.000Z'}}, {'blockNum': '0x81f62f', 'uniqueId': '0xaa07c075a823bb137b492e36b62b622214751056a4255b4090d9b7e61db8097a:log:180', 'hash': '0xaa07c075a823bb137b492e36b62b622214751056a4255b4090d9b7e61db8097a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 167.90793442474907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091a30d0beb4c05ee4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:54:21.000Z'}}, {'blockNum': '0x81f634', 'uniqueId': '0xd7cbc5585405d6bbdd71aa10865a19212541ad7ce293c82e4189f1978645ebcd:log:148', 'hash': '0xd7cbc5585405d6bbdd71aa10865a19212541ad7ce293c82e4189f1978645ebcd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 485.50616508884843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a51c064d38ef7a8ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:55:44.000Z'}}, {'blockNum': '0x81f634', 'uniqueId': '0xd7cbc5585405d6bbdd71aa10865a19212541ad7ce293c82e4189f1978645ebcd:log:152', 'hash': '0xd7cbc5585405d6bbdd71aa10865a19212541ad7ce293c82e4189f1978645ebcd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 485.50616508884843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a51c064d38ef7a8ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:55:44.000Z'}}, {'blockNum': '0x81f63d', 'uniqueId': '0xfa6b26e5088cea326c13d6f624c868f65db8482eefde1a66beb367a9c6d45d91:log:175', 'hash': '0xfa6b26e5088cea326c13d6f624c868f65db8482eefde1a66beb367a9c6d45d91', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.12696469971849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49d1eba7f46fed10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:57:38.000Z'}}, {'blockNum': '0x81f63d', 'uniqueId': '0xfa6b26e5088cea326c13d6f624c868f65db8482eefde1a66beb367a9c6d45d91:log:179', 'hash': '0xfa6b26e5088cea326c13d6f624c868f65db8482eefde1a66beb367a9c6d45d91', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 245.12696469971849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49d1eba7f46fed10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:57:38.000Z'}}, {'blockNum': '0x81f64a', 'uniqueId': '0xec68cbabdc90d5cccce74ae9d42752da132f19ee1d5c1b848b4a03beb6dd842f:log:119', 'hash': '0xec68cbabdc90d5cccce74ae9d42752da132f19ee1d5c1b848b4a03beb6dd842f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 882.6291796227117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fd8f0c27f3e2e12bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:01:07.000Z'}}, {'blockNum': '0x81f64a', 'uniqueId': '0xec68cbabdc90d5cccce74ae9d42752da132f19ee1d5c1b848b4a03beb6dd842f:log:123', 'hash': '0xec68cbabdc90d5cccce74ae9d42752da132f19ee1d5c1b848b4a03beb6dd842f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 882.6291796227117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fd8f0c27f3e2e12bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:01:07.000Z'}}, {'blockNum': '0x81f653', 'uniqueId': '0x7f48c6c83212eab3470e22532b4d2e50ca012d6b730e7e8f0d845ded7eba5c55:log:68', 'hash': '0x7f48c6c83212eab3470e22532b4d2e50ca012d6b730e7e8f0d845ded7eba5c55', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1294.1638101713922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4628217893bfe69b7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:03:45.000Z'}}, {'blockNum': '0x81f653', 'uniqueId': '0x7f48c6c83212eab3470e22532b4d2e50ca012d6b730e7e8f0d845ded7eba5c55:log:72', 'hash': '0x7f48c6c83212eab3470e22532b4d2e50ca012d6b730e7e8f0d845ded7eba5c55', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1294.1638101713922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4628217893bfe69b7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:03:45.000Z'}}, {'blockNum': '0x81f659', 'uniqueId': '0x5b63d67f4503b7dabd17049ea7c827abb8efade3c20c91fe69ee15a177f7e76d:log:77', 'hash': '0x5b63d67f4503b7dabd17049ea7c827abb8efade3c20c91fe69ee15a177f7e76d', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 693.185654957691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2593e228876da9a4b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:05:43.000Z'}}, {'blockNum': '0x81f659', 'uniqueId': '0x5b63d67f4503b7dabd17049ea7c827abb8efade3c20c91fe69ee15a177f7e76d:log:82', 'hash': '0x5b63d67f4503b7dabd17049ea7c827abb8efade3c20c91fe69ee15a177f7e76d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 693.185654957691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2593e228876da9a4b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:05:43.000Z'}}, {'blockNum': '0x81f659', 'uniqueId': '0x09e62d08d14306176e6c44b4b1ebb1fb3413bbd06cd236c2a5697ad38959d86e:log:93', 'hash': '0x09e62d08d14306176e6c44b4b1ebb1fb3413bbd06cd236c2a5697ad38959d86e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8.962523104220503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7c6147471e4b5e78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:05:43.000Z'}}, {'blockNum': '0x81f659', 'uniqueId': '0x09e62d08d14306176e6c44b4b1ebb1fb3413bbd06cd236c2a5697ad38959d86e:log:97', 'hash': '0x09e62d08d14306176e6c44b4b1ebb1fb3413bbd06cd236c2a5697ad38959d86e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 8.962523104220503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7c6147471e4b5e78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:05:43.000Z'}}, {'blockNum': '0x81f65e', 'uniqueId': '0xc4766829e58c018c721af78db0cfffa75fc53a2949130179ecf75757cd0a9e55:log:78', 'hash': '0xc4766829e58c018c721af78db0cfffa75fc53a2949130179ecf75757cd0a9e55', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8.963918226949083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7c663c2270f3114b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:06:59.000Z'}}, {'blockNum': '0x81f65e', 'uniqueId': '0xc4766829e58c018c721af78db0cfffa75fc53a2949130179ecf75757cd0a9e55:log:82', 'hash': '0xc4766829e58c018c721af78db0cfffa75fc53a2949130179ecf75757cd0a9e55', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 8.963918226949083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7c663c2270f3114b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:06:59.000Z'}}, {'blockNum': '0x81f661', 'uniqueId': '0x7223e8123767f14f5f6816ca8788aa1f503d526b195bbc7e676c573f0f32bac3:log:73', 'hash': '0x7223e8123767f14f5f6816ca8788aa1f503d526b195bbc7e676c573f0f32bac3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.13172119011747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49e2d1a8ad0be0ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:07:25.000Z'}}, {'blockNum': '0x81f661', 'uniqueId': '0x7223e8123767f14f5f6816ca8788aa1f503d526b195bbc7e676c573f0f32bac3:log:77', 'hash': '0x7223e8123767f14f5f6816ca8788aa1f503d526b195bbc7e676c573f0f32bac3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 245.13172119011747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49e2d1a8ad0be0ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:07:25.000Z'}}, {'blockNum': '0x81f66b', 'uniqueId': '0xaf2c2a806fb94510b524d9a5d5ec1e63ce90e5e9622ea9dc3dc008ad15d58603:log:60', 'hash': '0xaf2c2a806fb94510b524d9a5d5ec1e63ce90e5e9622ea9dc3dc008ad15d58603', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.23988521565616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9371f2338f753dde', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:11:04.000Z'}}, {'blockNum': '0x81f66b', 'uniqueId': '0xaf2c2a806fb94510b524d9a5d5ec1e63ce90e5e9622ea9dc3dc008ad15d58603:log:64', 'hash': '0xaf2c2a806fb94510b524d9a5d5ec1e63ce90e5e9622ea9dc3dc008ad15d58603', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 490.23988521565616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9371f2338f753dde', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:11:04.000Z'}}, {'blockNum': '0x81f66f', 'uniqueId': '0xd2fbf05dab31e87cbf70374ac42a9c8f620ace7dfe5f4a50e93febe7adf4e564:log:6', 'hash': '0xd2fbf05dab31e87cbf70374ac42a9c8f620ace7dfe5f4a50e93febe7adf4e564', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x509659eb38d5b942c1872b691500252e4ca5a679', 'value': 163.4121352671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08dbcc873b1793ff00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:12:32.000Z'}}, {'blockNum': '0x81f672', 'uniqueId': '0x733ab1ab5ca92a367b201ecaf284f2da4a988d74c64d9a75192e51631e1e062b:log:27', 'hash': '0x733ab1ab5ca92a367b201ecaf284f2da4a988d74c64d9a75192e51631e1e062b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 539.2275999559091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d3b494535aa67a833', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:12:53.000Z'}}, {'blockNum': '0x81f672', 'uniqueId': '0x733ab1ab5ca92a367b201ecaf284f2da4a988d74c64d9a75192e51631e1e062b:log:31', 'hash': '0x733ab1ab5ca92a367b201ecaf284f2da4a988d74c64d9a75192e51631e1e062b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 539.2275999559091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d3b494535aa67a833', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:12:53.000Z'}}, {'blockNum': '0x81f677', 'uniqueId': '0xa1d95fce1d44c1c27a448b95b0bf897623a35528ebb7f6c68a500dabd9e6f163:log:11', 'hash': '0xa1d95fce1d44c1c27a448b95b0bf897623a35528ebb7f6c68a500dabd9e6f163', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 648.7417748387787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x232b19c708dddb31ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:23.000Z'}}, {'blockNum': '0x81f677', 'uniqueId': '0xa1d95fce1d44c1c27a448b95b0bf897623a35528ebb7f6c68a500dabd9e6f163:log:15', 'hash': '0xa1d95fce1d44c1c27a448b95b0bf897623a35528ebb7f6c68a500dabd9e6f163', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 648.7417748387787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x232b19c708dddb31ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:23.000Z'}}, {'blockNum': '0x81f677', 'uniqueId': '0x3339a412d109050cbf8115e6673dfb9ef989e4f41895d3dbd6c21a9878dc0613:log:26', 'hash': '0x3339a412d109050cbf8115e6673dfb9ef989e4f41895d3dbd6c21a9878dc0613', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1171.9781626631564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f8876d9892469283c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:23.000Z'}}, {'blockNum': '0x81f677', 'uniqueId': '0x3339a412d109050cbf8115e6673dfb9ef989e4f41895d3dbd6c21a9878dc0613:log:30', 'hash': '0x3339a412d109050cbf8115e6673dfb9ef989e4f41895d3dbd6c21a9878dc0613', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1171.9781626631564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f8876d9892469283c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:23.000Z'}}, {'blockNum': '0x81f678', 'uniqueId': '0xf242ebfa29994226845ea1ff2aa9a6f82d5fb46499c95c5921bbdfa1f5aad82d:log:86', 'hash': '0xf242ebfa29994226845ea1ff2aa9a6f82d5fb46499c95c5921bbdfa1f5aad82d', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2051.244810269985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f32bd7efad1fe5025', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:33.000Z'}}, {'blockNum': '0x81f678', 'uniqueId': '0xf242ebfa29994226845ea1ff2aa9a6f82d5fb46499c95c5921bbdfa1f5aad82d:log:90', 'hash': '0xf242ebfa29994226845ea1ff2aa9a6f82d5fb46499c95c5921bbdfa1f5aad82d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2051.244810269985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f32bd7efad1fe5025', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:33.000Z'}}, {'blockNum': '0x81f67e', 'uniqueId': '0xd632f40670a6cae3ac4a6b96830c826cb04963f75403f854ce571f055fe538af:log:16', 'hash': '0xd632f40670a6cae3ac4a6b96830c826cb04963f75403f854ce571f055fe538af', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.17336636393216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a76c5b94ce186bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:19.000Z'}}, {'blockNum': '0x81f67e', 'uniqueId': '0xd632f40670a6cae3ac4a6b96830c826cb04963f75403f854ce571f055fe538af:log:20', 'hash': '0xd632f40670a6cae3ac4a6b96830c826cb04963f75403f854ce571f055fe538af', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'value': 245.17336636393216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a76c5b94ce186bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:19.000Z'}}, {'blockNum': '0x81f681', 'uniqueId': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691:log:2', 'hash': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691', 'from': '0x509659eb38d5b942c1872b691500252e4ca5a679', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 163.4121352671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08dbcc873b1793ff00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:42.000Z'}}, {'blockNum': '0x81f681', 'uniqueId': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691:log:5', 'hash': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 163.4121352671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08dbcc873b1793ff00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:42.000Z'}}, {'blockNum': '0x81f681', 'uniqueId': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691:log:6', 'hash': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 163.4121352671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08dbcc873b1793ff00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:42.000Z'}}, {'blockNum': '0x81f681', 'uniqueId': '0x9f9625c5fa6834245f7e896b2c378e21500ea8e26ea40e50d3574bacba882468:log:18', 'hash': '0x9f9625c5fa6834245f7e896b2c378e21500ea8e26ea40e50d3574bacba882468', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 980.6358576735024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35290e6cec2fa0fa1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:42.000Z'}}, {'blockNum': '0x81f681', 'uniqueId': '0x9f9625c5fa6834245f7e896b2c378e21500ea8e26ea40e50d3574bacba882468:log:22', 'hash': '0x9f9625c5fa6834245f7e896b2c378e21500ea8e26ea40e50d3574bacba882468', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 980.6358576735024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35290e6cec2fa0fa1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:42.000Z'}}, {'blockNum': '0x81f683', 'uniqueId': '0xca574b926aeaf0f998f1340ff2280cd5a592ed943f7b4efb02e6a23c6ff60802:log:45', 'hash': '0xca574b926aeaf0f998f1340ff2280cd5a592ed943f7b4efb02e6a23c6ff60802', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 19.611435330899685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011029d08711d22787', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:46.000Z'}}, {'blockNum': '0x81f683', 'uniqueId': '0xca574b926aeaf0f998f1340ff2280cd5a592ed943f7b4efb02e6a23c6ff60802:log:49', 'hash': '0xca574b926aeaf0f998f1340ff2280cd5a592ed943f7b4efb02e6a23c6ff60802', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 19.611435330899685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011029d08711d22787', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:46.000Z'}}, {'blockNum': '0x81f691', 'uniqueId': '0xc7f5b8577dff57eff763bd153f6402cf4fd62b13ec731088f75c6c670238bedd:log:57', 'hash': '0xc7f5b8577dff57eff763bd153f6402cf4fd62b13ec731088f75c6c670238bedd', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 430.35413716152607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17545d07a26c7ee952', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:18:17.000Z'}}, {'blockNum': '0x81f691', 'uniqueId': '0xc7f5b8577dff57eff763bd153f6402cf4fd62b13ec731088f75c6c670238bedd:log:62', 'hash': '0xc7f5b8577dff57eff763bd153f6402cf4fd62b13ec731088f75c6c670238bedd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 430.35413716152607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17545d07a26c7ee952', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:18:17.000Z'}}, {'blockNum': '0x81f698', 'uniqueId': '0xc84dc74da3b427966507d497f51a55e3327f2e3fe0abd99601ada64e7c0456db:log:62', 'hash': '0xc84dc74da3b427966507d497f51a55e3327f2e3fe0abd99601ada64e7c0456db', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 360.1869498688647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1386991a8db11c43cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:19:26.000Z'}}, {'blockNum': '0x81f698', 'uniqueId': '0xc84dc74da3b427966507d497f51a55e3327f2e3fe0abd99601ada64e7c0456db:log:66', 'hash': '0xc84dc74da3b427966507d497f51a55e3327f2e3fe0abd99601ada64e7c0456db', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 360.1869498688647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1386991a8db11c43cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:19:26.000Z'}}, {'blockNum': '0x81f699', 'uniqueId': '0x4cbf913ce163c5b61d5c689376abe94076c7457e56374bd4e79e8a6ef8673522:log:46', 'hash': '0x4cbf913ce163c5b61d5c689376abe94076c7457e56374bd4e79e8a6ef8673522', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0x5c57320c7207eb53aa684df67be2742fe8b48b83', 'value': 75.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x041d52f7dd54260000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:19:35.000Z'}}, {'blockNum': '0x81f6a0', 'uniqueId': '0xf5720fef9e8d208e5bad08da0e01b76ad435bc5e408f83e1c1c5d428ee9bf1ac:log:24', 'hash': '0xf5720fef9e8d208e5bad08da0e01b76ad435bc5e408f83e1c1c5d428ee9bf1ac', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0xc69c97fae607cc7f8e319c4928b9e8e0d3983a64', 'value': 56.8928587003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03158c098e7fdf9b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:21:34.000Z'}}, {'blockNum': '0x81f6aa', 'uniqueId': '0x8e3146dc4921a66197e89312bd8e5aaafb5ff7d2c52cf0e3e226d48f1007d2fa:log:25', 'hash': '0x8e3146dc4921a66197e89312bd8e5aaafb5ff7d2c52cf0e3e226d48f1007d2fa', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.15023992116102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a249c58be9672bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:23:41.000Z'}}, {'blockNum': '0x81f6aa', 'uniqueId': '0x8e3146dc4921a66197e89312bd8e5aaafb5ff7d2c52cf0e3e226d48f1007d2fa:log:29', 'hash': '0x8e3146dc4921a66197e89312bd8e5aaafb5ff7d2c52cf0e3e226d48f1007d2fa', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 245.15023992116102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a249c58be9672bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:23:41.000Z'}}, {'blockNum': '0x81f6ab', 'uniqueId': '0xf711a383c7bc8e1432231df79ba268a72948196357cfeff7bd03886fc94f1860:log:108', 'hash': '0xf711a383c7bc8e1432231df79ba268a72948196357cfeff7bd03886fc94f1860', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1279.4126454924112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x455b6ace74e5f2d825', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:24:44.000Z'}}, {'blockNum': '0x81f6ab', 'uniqueId': '0xf711a383c7bc8e1432231df79ba268a72948196357cfeff7bd03886fc94f1860:log:112', 'hash': '0xf711a383c7bc8e1432231df79ba268a72948196357cfeff7bd03886fc94f1860', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1279.4126454924112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x455b6ace74e5f2d825', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:24:44.000Z'}}, {'blockNum': '0x81f6ab', 'uniqueId': '0xc4ce1d5bbd67c05b68566009df557145ec5dcaafa52b19d2d7c74f32ca88c445:log:126', 'hash': '0xc4ce1d5bbd67c05b68566009df557145ec5dcaafa52b19d2d7c74f32ca88c445', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11.10566678774565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9a1f411a656ed629', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:24:44.000Z'}}, {'blockNum': '0x81f6ab', 'uniqueId': '0xc4ce1d5bbd67c05b68566009df557145ec5dcaafa52b19d2d7c74f32ca88c445:log:130', 'hash': '0xc4ce1d5bbd67c05b68566009df557145ec5dcaafa52b19d2d7c74f32ca88c445', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xce1e2b5ffe4d441abafd136768f24867101dfa50', 'value': 11.10566678774565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9a1f411a656ed629', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:24:44.000Z'}}, {'blockNum': '0x81f6b1', 'uniqueId': '0x745e6b5f0623bc78e7f7110aa4c209876dddfe2572fe3ab3bec35fd57ea26bc1:log:26', 'hash': '0x745e6b5f0623bc78e7f7110aa4c209876dddfe2572fe3ab3bec35fd57ea26bc1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 289.3151311133188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0faf0dd2e3eaedafca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:11.000Z'}}, {'blockNum': '0x81f6b1', 'uniqueId': '0x745e6b5f0623bc78e7f7110aa4c209876dddfe2572fe3ab3bec35fd57ea26bc1:log:30', 'hash': '0x745e6b5f0623bc78e7f7110aa4c209876dddfe2572fe3ab3bec35fd57ea26bc1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 289.3151311133188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0faf0dd2e3eaedafca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:11.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8:log:10', 'hash': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8', 'from': '0xc69c97fae607cc7f8e319c4928b9e8e0d3983a64', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 56.8928587003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03158c098e7fdf9b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8:log:13', 'hash': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 56.8928587003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03158c098e7fdf9b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8:log:14', 'hash': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 56.8928587003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03158c098e7fdf9b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x46f3c7246782dd70a4365695e809eb00f30e4804db026e7aa1eb5aebc642dcea:log:24', 'hash': '0x46f3c7246782dd70a4365695e809eb00f30e4804db026e7aa1eb5aebc642dcea', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 146.37931307262977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07ef6bc9b04fca42ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x46f3c7246782dd70a4365695e809eb00f30e4804db026e7aa1eb5aebc642dcea:log:28', 'hash': '0x46f3c7246782dd70a4365695e809eb00f30e4804db026e7aa1eb5aebc642dcea', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 146.37931307262977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07ef6bc9b04fca42ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x48ebb4de0aa7f4bb47998175b00e48bd6894a566a64df32fdca995c3f600f1b0:log:40', 'hash': '0x48ebb4de0aa7f4bb47998175b00e48bd6894a566a64df32fdca995c3f600f1b0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 877.7090686120303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f94a90399c705902f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x48ebb4de0aa7f4bb47998175b00e48bd6894a566a64df32fdca995c3f600f1b0:log:44', 'hash': '0x48ebb4de0aa7f4bb47998175b00e48bd6894a566a64df32fdca995c3f600f1b0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 877.7090686120303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f94a90399c705902f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x50593be5efab97c0d1abe5279ca90940efaa7a3f7aebfac4767ec03d2242879f:log:55', 'hash': '0x50593be5efab97c0d1abe5279ca90940efaa7a3f7aebfac4767ec03d2242879f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1470.7950600113968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fbb61ba7962a4fb91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x50593be5efab97c0d1abe5279ca90940efaa7a3f7aebfac4767ec03d2242879f:log:59', 'hash': '0x50593be5efab97c0d1abe5279ca90940efaa7a3f7aebfac4767ec03d2242879f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 1470.7950600113968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fbb61ba7962a4fb91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x4c1e01061db6cfeabf884d892d867319f5a5fb403f884e7ece47e222b83cd604:log:70', 'hash': '0x4c1e01061db6cfeabf884d892d867319f5a5fb403f884e7ece47e222b83cd604', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 588.2388765678962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe3744d9d884ef893', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x4c1e01061db6cfeabf884d892d867319f5a5fb403f884e7ece47e222b83cd604:log:74', 'hash': '0x4c1e01061db6cfeabf884d892d867319f5a5fb403f884e7ece47e222b83cd604', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 588.2388765678962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe3744d9d884ef893', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b4', 'uniqueId': '0xa6769a8c4647f2b5aee0ed1eef7495855ed2bda307a88328a7292edc6ee88641:log:70', 'hash': '0xa6769a8c4647f2b5aee0ed1eef7495855ed2bda307a88328a7292edc6ee88641', 'from': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 892.9480716098165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x306824d416652d9b2d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:47.000Z'}}, {'blockNum': '0x81f6b4', 'uniqueId': '0xa6769a8c4647f2b5aee0ed1eef7495855ed2bda307a88328a7292edc6ee88641:log:74', 'hash': '0xa6769a8c4647f2b5aee0ed1eef7495855ed2bda307a88328a7292edc6ee88641', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 892.9480716098165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x306824d416652d9b2d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:47.000Z'}}, {'blockNum': '0x81f6bd', 'uniqueId': '0x6b6444511214c583069e77a94d5188172de0423c19932df4cb4141cb6a2f8eb3:log:32', 'hash': '0x6b6444511214c583069e77a94d5188172de0423c19932df4cb4141cb6a2f8eb3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.11478766821523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49a6a8b5df444984', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:29:54.000Z'}}, {'blockNum': '0x81f6bd', 'uniqueId': '0x6b6444511214c583069e77a94d5188172de0423c19932df4cb4141cb6a2f8eb3:log:36', 'hash': '0x6b6444511214c583069e77a94d5188172de0423c19932df4cb4141cb6a2f8eb3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 245.11478766821523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49a6a8b5df444984', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:29:54.000Z'}}, {'blockNum': '0x81f6bd', 'uniqueId': '0xaa136725e3a57021ec153a12c7e456fd95485ed542143151cd85fd49b0b3b22f:log:50', 'hash': '0xaa136725e3a57021ec153a12c7e456fd95485ed542143151cd85fd49b0b3b22f', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1272.4469474364328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44fabfacfb06b7ae88', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:29:54.000Z'}}, {'blockNum': '0x81f6bd', 'uniqueId': '0xaa136725e3a57021ec153a12c7e456fd95485ed542143151cd85fd49b0b3b22f:log:54', 'hash': '0xaa136725e3a57021ec153a12c7e456fd95485ed542143151cd85fd49b0b3b22f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1272.4469474364328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44fabfacfb06b7ae88', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:29:54.000Z'}}, {'blockNum': '0x81f6c4', 'uniqueId': '0x6d1f7ba1a8c14ab0d398f3049e4f7567a5ec78c04aa29bbb1f4c4bf86fef3bb5:log:7', 'hash': '0x6d1f7ba1a8c14ab0d398f3049e4f7567a5ec78c04aa29bbb1f4c4bf86fef3bb5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1470.76839277551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fbb02fcc3b077813a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:31:18.000Z'}}, {'blockNum': '0x81f6c4', 'uniqueId': '0x6d1f7ba1a8c14ab0d398f3049e4f7567a5ec78c04aa29bbb1f4c4bf86fef3bb5:log:11', 'hash': '0x6d1f7ba1a8c14ab0d398f3049e4f7567a5ec78c04aa29bbb1f4c4bf86fef3bb5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 1470.76839277551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fbb02fcc3b077813a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:31:18.000Z'}}, {'blockNum': '0x81f6c6', 'uniqueId': '0x887545c165ecf688f1424dc659b8abe475c7ce32d95c6d52a6f15e68811da4de:log:16', 'hash': '0x887545c165ecf688f1424dc659b8abe475c7ce32d95c6d52a6f15e68811da4de', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 49.02074484193221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a84cabb5f06e9962', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:31:59.000Z'}}, {'blockNum': '0x81f6c6', 'uniqueId': '0x887545c165ecf688f1424dc659b8abe475c7ce32d95c6d52a6f15e68811da4de:log:20', 'hash': '0x887545c165ecf688f1424dc659b8abe475c7ce32d95c6d52a6f15e68811da4de', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x445556b7215349b205997aaaf6c6dfa258eb029d', 'value': 49.02074484193221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a84cabb5f06e9962', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:31:59.000Z'}}, {'blockNum': '0x81f6cc', 'uniqueId': '0x88d1a4ae428aae06ff166c95bd262c2838e81d9e853e390b75ccef85d84599ae:log:37', 'hash': '0x88d1a4ae428aae06ff166c95bd262c2838e81d9e853e390b75ccef85d84599ae', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 146.5701538574771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f211ca5f154586ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:33:25.000Z'}}, {'blockNum': '0x81f6cc', 'uniqueId': '0x88d1a4ae428aae06ff166c95bd262c2838e81d9e853e390b75ccef85d84599ae:log:41', 'hash': '0x88d1a4ae428aae06ff166c95bd262c2838e81d9e853e390b75ccef85d84599ae', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 146.5701538574771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f211ca5f154586ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:33:25.000Z'}}, {'blockNum': '0x81f6e2', 'uniqueId': '0x288af960948e1f53ba143c6c12e1d23e6c9db6af9a51a4b1e70702a409000824:log:7', 'hash': '0x288af960948e1f53ba143c6c12e1d23e6c9db6af9a51a4b1e70702a409000824', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 743.3471502427332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284c0396b94909568b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:38:26.000Z'}}, {'blockNum': '0x81f6e2', 'uniqueId': '0x288af960948e1f53ba143c6c12e1d23e6c9db6af9a51a4b1e70702a409000824:log:11', 'hash': '0x288af960948e1f53ba143c6c12e1d23e6c9db6af9a51a4b1e70702a409000824', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 743.3471502427332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284c0396b94909568b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:38:26.000Z'}}, {'blockNum': '0x81f6e4', 'uniqueId': '0x1c34fe61f82df49e8a2da1de491b660e641434785c3bd56202353451eaaf5f0c:log:29', 'hash': '0x1c34fe61f82df49e8a2da1de491b660e641434785c3bd56202353451eaaf5f0c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 588.2703196510619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe3e402eed30a0972', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:39:06.000Z'}}, {'blockNum': '0x81f6e4', 'uniqueId': '0x1c34fe61f82df49e8a2da1de491b660e641434785c3bd56202353451eaaf5f0c:log:33', 'hash': '0x1c34fe61f82df49e8a2da1de491b660e641434785c3bd56202353451eaaf5f0c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 588.2703196510619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe3e402eed30a0972', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:39:06.000Z'}}, {'blockNum': '0x81f6e6', 'uniqueId': '0xa9d97bad57f671be57dd2e4a8ed9315dd0bbd45730686c10b023529f99771e06:log:68', 'hash': '0xa9d97bad57f671be57dd2e4a8ed9315dd0bbd45730686c10b023529f99771e06', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1470.4779724288667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fb6fb34ff734045d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:39:29.000Z'}}, {'blockNum': '0x81f6e6', 'uniqueId': '0xa9d97bad57f671be57dd2e4a8ed9315dd0bbd45730686c10b023529f99771e06:log:72', 'hash': '0xa9d97bad57f671be57dd2e4a8ed9315dd0bbd45730686c10b023529f99771e06', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 1470.4779724288667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fb6fb34ff734045d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:39:29.000Z'}}, {'blockNum': '0x81f6eb', 'uniqueId': '0x468c3a088dd4ba7ef6657f463e689ba2fbd841d6eeac617dadd2fc45fd031305:log:6', 'hash': '0x468c3a088dd4ba7ef6657f463e689ba2fbd841d6eeac617dadd2fc45fd031305', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1470.1954545593612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fb30f807e0cab4402', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:40:27.000Z'}}, {'blockNum': '0x81f6eb', 'uniqueId': '0x468c3a088dd4ba7ef6657f463e689ba2fbd841d6eeac617dadd2fc45fd031305:log:10', 'hash': '0x468c3a088dd4ba7ef6657f463e689ba2fbd841d6eeac617dadd2fc45fd031305', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 1470.1954545593612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fb30f807e0cab4402', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:40:27.000Z'}}], 'pageKey': 'fb32df60-3c7e-42c9-aead-da2fb2779b6f'}}
Answer is paginated. Downloading more pages...
Number of returned transfers: 1001
Answer is complete
symbol LUN
group CPS
date 2020-03-18
hour 19:00
exchange binance
Name: 413, dtype: object
HERE
Symbol: LUN, Contract: 0xfa05a73ffe78ef8f1a739473e462c54bae6567d9
Datetime timestamps: 2020-03-18 19:00:00 2020-03-18 07:00:00 2020-03-19 07:00:00
Unix timestamps: 1584511200.0 1584597600.0
Hex Block Numbers: 0x93ea92 0x940421
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x93f405', 'uniqueId': '0x3d32cdcdc125d7fcb9d596680c7bf44161854aea7f6ec036e845dd95c3c35ef0:log:10', 'hash': '0x3d32cdcdc125d7fcb9d596680c7bf44161854aea7f6ec036e845dd95c3c35ef0', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x0f0425b0641f340000', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T15:00:40.000Z'}}, {'blockNum': '0x93f428', 'uniqueId': '0xc3a9a25d1bf4d1f40edf53d6fe4c559f76ce3e24d69c99f4b255120cccbcb5c8:log:90', 'hash': '0xc3a9a25d1bf4d1f40edf53d6fe4c559f76ce3e24d69c99f4b255120cccbcb5c8', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x0f0425b0641f340000', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T15:08:51.000Z'}}, {'blockNum': '0x93f48f', 'uniqueId': '0xc8b3692aa928857002912e08f27eb31118e846cb3c1f23fc4b5b40c8a4364552:log:109', 'hash': '0xc8b3692aa928857002912e08f27eb31118e846cb3c1f23fc4b5b40c8a4364552', 'from': '0x07c369a666e5c77cc0c5f290c9e5610305f1980d', 'to': '0xdaa6959ec75daf9a7f91a786e140458683b51e71', 'value': 2.21748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x1ec6124fb0888000', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T15:32:27.000Z'}}, {'blockNum': '0x93f64d', 'uniqueId': '0xb11802c13c8ccacebdd667057a5cf0258ec6eb215affe01eada3e23cc32cfdb4:log:1', 'hash': '0xb11802c13c8ccacebdd667057a5cf0258ec6eb215affe01eada3e23cc32cfdb4', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xd460097db6eaa32df588390bc1caafaef18c45bd', 'value': 0.0031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x0b036efecdc000', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T17:10:34.000Z'}}, {'blockNum': '0x93f854', 'uniqueId': '0x2400c3e25b5a72dda08539aeee9ed7fac2e76defbb884b3f602b730111bff076:log:1', 'hash': '0x2400c3e25b5a72dda08539aeee9ed7fac2e76defbb884b3f602b730111bff076', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T19:01:40.000Z'}}, {'blockNum': '0x93f861', 'uniqueId': '0x00f55215653957dbe2e2755964776719b7b69be1af9ecc2d44de0cec65ed811c:log:0', 'hash': '0x00f55215653957dbe2e2755964776719b7b69be1af9ecc2d44de0cec65ed811c', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 216.0440761, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x0bb636be8ff7f5a800', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T19:06:29.000Z'}}, {'blockNum': '0x93f86b', 'uniqueId': '0xd088e9f66b4f41caa3fe9a7d6f37dbfeaa5e655e70ded4b9c7cd4cd6176814f6:log:20', 'hash': '0xd088e9f66b4f41caa3fe9a7d6f37dbfeaa5e655e70ded4b9c7cd4cd6176814f6', 'from': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T19:09:10.000Z'}}, {'blockNum': '0x93f894', 'uniqueId': '0x4f4215012a1e88fddd7e9bf7bf44e4f362f5c82e759387ba4fb2a9d311e3de36:log:9', 'hash': '0x4f4215012a1e88fddd7e9bf7bf44e4f362f5c82e759387ba4fb2a9d311e3de36', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 216.0440761, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x0bb636be8ff7f5a800', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T19:19:04.000Z'}}]}}
Number of returned transfers: 8
Answer is complete
symbol ARN
group CPS
date 2020-04-07
hour 18:00
exchange binance
Name: 414, dtype: object
HERE
Symbol: ARN, Contract:
Datetime timestamps: 2020-04-07 18:00:00 2020-04-07 06:00:00 2020-04-08 06:00:00
Unix timestamps: 1586232000.0 1586318400.0
Hex Block Numbers: 0x95e1e0 0x95fb66
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol SYS
group CPS
date 2020-07-16
hour 18:00
exchange binance
Name: 419, dtype: object
HERE
{}
No contract for ethereum specified
Symbol: SYS, Contract:
Datetime timestamps: 2020-07-16 18:00:00 2020-07-16 06:00:00 2020-07-17 06:00:00
Unix timestamps: 1594872000.0 1594958400.0
Hex Block Numbers: 0x9fbba3 0x9fd49b
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol VIB
group CPS
date 2020-07-30
hour 18:00
exchange binance
Name: 420, dtype: object
HERE
Symbol: VIB, Contract: 0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724
Datetime timestamps: 2020-07-30 18:00:00 2020-07-30 06:00:00 2020-07-31 06:00:00
Unix timestamps: 1596081600.0 1596168000.0
Hex Block Numbers: 0xa11d05 0xa135c0
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa11e2c', 'uniqueId': '0x556eaafcf0311544435d760c84d5f20fa80e2ab08d9708a26a5dcd96d9db3059:log:16', 'hash': '0x556eaafcf0311544435d760c84d5f20fa80e2ab08d9708a26a5dcd96d9db3059', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 51995.428947153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0b02ad87a7d8ad68aed0', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T05:06:50.000Z'}}, {'blockNum': '0xa11e2c', 'uniqueId': '0x556eaafcf0311544435d760c84d5f20fa80e2ab08d9708a26a5dcd96d9db3059:log:21', 'hash': '0x556eaafcf0311544435d760c84d5f20fa80e2ab08d9708a26a5dcd96d9db3059', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 51995.428947153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0b02ad87a7d8ad68aed0', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T05:06:50.000Z'}}, {'blockNum': '0xa11e2d', 'uniqueId': '0xd7e1367a9459dd35ed079788c1cb1a798357aede0ace035414eb357b8a5fba9f:log:4', 'hash': '0xd7e1367a9459dd35ed079788c1cb1a798357aede0ace035414eb357b8a5fba9f', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 51891.43808925869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0afd0a5de98f07000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T05:06:58.000Z'}}, {'blockNum': '0xa1208f', 'uniqueId': '0x8e4a341baa3aa0380b9925afe29a180ecd31195030e49291876f74e9613866e1:log:14', 'hash': '0x8e4a341baa3aa0380b9925afe29a180ecd31195030e49291876f74e9613866e1', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xeb780701cf8f4878b3bdcaf190d95cd5a1aaafd6', 'value': 874.44060897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2f674d1cdf911b6400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T07:27:22.000Z'}}, {'blockNum': '0xa12098', 'uniqueId': '0x9ed56f9f00fec76fb131b2985c6cffda6f1b197f312a510dd56f5c3f9dfc6cee:log:3', 'hash': '0x9ed56f9f00fec76fb131b2985c6cffda6f1b197f312a510dd56f5c3f9dfc6cee', 'from': '0xeb780701cf8f4878b3bdcaf190d95cd5a1aaafd6', 'to': '0x599b67eb4ca7eda16dd1fbc2d6bf4f06db2a381c', 'value': 1772.74214637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x6019bd45bbab621400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T07:28:12.000Z'}}, {'blockNum': '0xa120c4', 'uniqueId': '0xa1bcbe91f1f030ecd4e03fd5bfd10bb16b3027bbb8b054a7b435b5379c9ca00f:log:36', 'hash': '0xa1bcbe91f1f030ecd4e03fd5bfd10bb16b3027bbb8b054a7b435b5379c9ca00f', 'from': '0x599b67eb4ca7eda16dd1fbc2d6bf4f06db2a381c', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1772.74214637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x6019bd45bbab621400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T07:36:45.000Z'}}, {'blockNum': '0xa123a1', 'uniqueId': '0x73a1b0f2eb717bc20c92ebad242e37fc8028f8bcaba6dd58663691cf25b69da2:log:49', 'hash': '0x73a1b0f2eb717bc20c92ebad242e37fc8028f8bcaba6dd58663691cf25b69da2', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x7383ea966e36b0d58f80e804fde29fffc52507a8', 'value': 1344.1733994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x48de273904b6441000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T10:31:10.000Z'}}, {'blockNum': '0xa12592', 'uniqueId': '0x862695a575f3fbed53d9ce2db5a815226ead289ffcf91420c4abb85f0fb98ac3:log:194', 'hash': '0x862695a575f3fbed53d9ce2db5a815226ead289ffcf91420c4abb85f0fb98ac3', 'from': '0x7383ea966e36b0d58f80e804fde29fffc52507a8', 'to': '0xd3092c77aef5c384686dc0ccc8f3462035d0f6e6', 'value': 3170.3885614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xabddfacf27a0b5b000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T12:27:19.000Z'}}, {'blockNum': '0xa12596', 'uniqueId': '0x59fbfeebc499b5014858cabb7e2a54a604239f9075333ff5c4166ef247e5481a:log:306', 'hash': '0x59fbfeebc499b5014858cabb7e2a54a604239f9075333ff5c4166ef247e5481a', 'from': '0xd3092c77aef5c384686dc0ccc8f3462035d0f6e6', 'to': '0xa305fab8bda7e1638235b054889b3217441dd645', 'value': 3170.3885614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xabddfacf27a0b5b000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T12:28:20.000Z'}}, {'blockNum': '0xa12658', 'uniqueId': '0x95d950cb90d7deaba135ab61f06b8f909e31e059f815f11b267a44621258db03:log:77', 'hash': '0x95d950cb90d7deaba135ab61f06b8f909e31e059f815f11b267a44621258db03', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 47713.714808225144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a1a90cf43fc3b000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T13:09:28.000Z'}}, {'blockNum': '0xa12658', 'uniqueId': '0x95d950cb90d7deaba135ab61f06b8f909e31e059f815f11b267a44621258db03:log:79', 'hash': '0x95d950cb90d7deaba135ab61f06b8f909e31e059f815f11b267a44621258db03', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 47713.714808225144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a1a90cf43fc3b000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T13:09:28.000Z'}}, {'blockNum': '0xa12666', 'uniqueId': '0xaad3fcea904e2c8795e9a1d99f0073a796985b42616c853030cdd210c4764018:log:72', 'hash': '0xaad3fcea904e2c8795e9a1d99f0073a796985b42616c853030cdd210c4764018', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 47850.96175894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a22017e627eb3a99800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T13:12:52.000Z'}}, {'blockNum': '0xa12870', 'uniqueId': '0x268e924c239a7190689b50cc728c5793ffff2873d45debf0ec9e55ea86c30896:log:25', 'hash': '0x268e924c239a7190689b50cc728c5793ffff2873d45debf0ec9e55ea86c30896', 'from': '0x776b38a4b6f92c1b28d465cbc5e248a3efffe87c', 'to': '0x13d25c62d041f62695bee4695d776e387766a726', 'value': 80.893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04629daae917ac8000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T15:09:17.000Z'}}, {'blockNum': '0xa128c6', 'uniqueId': '0xde983a05c4b5512561f84a34b5d394d60da5e4fe3846444d6422add319db8e63:log:40', 'hash': '0xde983a05c4b5512561f84a34b5d394d60da5e4fe3846444d6422add319db8e63', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xb24d403b659274cff5a2c00f4b51f2113d402b80', 'value': 1334.51945224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x48582d8339a6132000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T15:29:21.000Z'}}, {'blockNum': '0xa12929', 'uniqueId': '0x1af98f458a5b7156f6b706f865c929249702e7db09be94f300bbea9e704e0b55:log:180', 'hash': '0x1af98f458a5b7156f6b706f865c929249702e7db09be94f300bbea9e704e0b55', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 47592.325558372766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a13fc32046471000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T15:51:25.000Z'}}, {'blockNum': '0xa12929', 'uniqueId': '0x1af98f458a5b7156f6b706f865c929249702e7db09be94f300bbea9e704e0b55:log:182', 'hash': '0x1af98f458a5b7156f6b706f865c929249702e7db09be94f300bbea9e704e0b55', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 47592.325558372766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a13fc32046471000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T15:51:25.000Z'}}, {'blockNum': '0xa12934', 'uniqueId': '0xd8397914fa5b709ee5e9d1267e6e1073c56fda728ee4b0441ad520fc498202a9:log:7', 'hash': '0xd8397914fa5b709ee5e9d1267e6e1073c56fda728ee4b0441ad520fc498202a9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 47728.96129285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a1b6465a8f8e51f7400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T15:54:13.000Z'}}, {'blockNum': '0xa12b53', 'uniqueId': '0xec056333f5cee5c9c810ccfb8c2042094651a339d36dc404a4ed3160d0a31fa7:log:38', 'hash': '0xec056333f5cee5c9c810ccfb8c2042094651a339d36dc404a4ed3160d0a31fa7', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 101548.37817363147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1580f2d8328d2ed2d4d6', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T17:59:54.000Z'}}, {'blockNum': '0xa12b53', 'uniqueId': '0xec056333f5cee5c9c810ccfb8c2042094651a339d36dc404a4ed3160d0a31fa7:log:43', 'hash': '0xec056333f5cee5c9c810ccfb8c2042094651a339d36dc404a4ed3160d0a31fa7', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 101548.37817363147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1580f2d8328d2ed2d4d6', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T17:59:54.000Z'}}, {'blockNum': '0xa12b54', 'uniqueId': '0x4db8cc6da9690f7a4b8413f7b2aef8d5902246a6e1e0ec3fb2323c47b0bd9708:log:39', 'hash': '0x4db8cc6da9690f7a4b8413f7b2aef8d5902246a6e1e0ec3fb2323c47b0bd9708', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 45806.6257272118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x09b32ea1ccfea0866bef', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:00:12.000Z'}}, {'blockNum': '0xa12b54', 'uniqueId': '0x4db8cc6da9690f7a4b8413f7b2aef8d5902246a6e1e0ec3fb2323c47b0bd9708:log:44', 'hash': '0x4db8cc6da9690f7a4b8413f7b2aef8d5902246a6e1e0ec3fb2323c47b0bd9708', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 45806.6257272118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x09b32ea1ccfea0866bef', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:00:12.000Z'}}, {'blockNum': '0xa12b55', 'uniqueId': '0xda17d27172b3e6ffe2e1bcde23a6c122dda4e4ad6bef19fcb0b716f6a3233be8:log:179', 'hash': '0xda17d27172b3e6ffe2e1bcde23a6c122dda4e4ad6bef19fcb0b716f6a3233be8', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x6029c0470a11fd0a3049f8d453ca477556630afd', 'value': 3059.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xa5db178013039e0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:00:33.000Z'}}, {'blockNum': '0xa12b56', 'uniqueId': '0xa3d6fd35108f89f3f33b1352338f30950ec565141f66d040bc7ba233196355a6:log:268', 'hash': '0xa3d6fd35108f89f3f33b1352338f30950ec565141f66d040bc7ba233196355a6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x268737253715badc5016befa6113ecc68370b780', 'value': 1586.62959709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x5602e8ac3abe99d400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:00:38.000Z'}}, {'blockNum': '0xa12b58', 'uniqueId': '0x74c746f5df1c10aaf0144169b04822a83a4419442e1832f9438e043a8eacccad:log:28', 'hash': '0x74c746f5df1c10aaf0144169b04822a83a4419442e1832f9438e043a8eacccad', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 44732.30676412806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0978f176200e47f6ccf5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:01:14.000Z'}}, {'blockNum': '0xa12b58', 'uniqueId': '0x74c746f5df1c10aaf0144169b04822a83a4419442e1832f9438e043a8eacccad:log:33', 'hash': '0x74c746f5df1c10aaf0144169b04822a83a4419442e1832f9438e043a8eacccad', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 44732.30676412806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0978f176200e47f6ccf5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:01:14.000Z'}}, {'blockNum': '0xa12b58', 'uniqueId': '0x26c353adf1158df0f7993708f40a9ad5b7c367ad164bea46cf5aefbc49a08155:log:179', 'hash': '0x26c353adf1158df0f7993708f40a9ad5b7c367ad164bea46cf5aefbc49a08155', 'from': '0xdc79bb9a038834ee96202e8dd0c4ba6d568dcea5', 'to': '0x49a453ce4dca928c4e92017d17292a209c485a00', 'value': 53900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0b69ecc3498f92b00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:01:14.000Z'}}, {'blockNum': '0xa12b5a', 'uniqueId': '0x65d9258b5dff850faec38318a723f674d3b47d285de6b5e7429d23415d489ac1:log:22', 'hash': '0x65d9258b5dff850faec38318a723f674d3b47d285de6b5e7429d23415d489ac1', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 43695.35603575001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0940bae11698abd893df', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:01:46.000Z'}}, {'blockNum': '0xa12b5a', 'uniqueId': '0x65d9258b5dff850faec38318a723f674d3b47d285de6b5e7429d23415d489ac1:log:27', 'hash': '0x65d9258b5dff850faec38318a723f674d3b47d285de6b5e7429d23415d489ac1', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 43695.35603575001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0940bae11698abd893df', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:01:46.000Z'}}, {'blockNum': '0xa12b5e', 'uniqueId': '0x76afa1ed3719d520826b6c3de6f8333ffa8c072ff0e8551b094ed16951e6f9a8:log:25', 'hash': '0x76afa1ed3719d520826b6c3de6f8333ffa8c072ff0e8551b094ed16951e6f9a8', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 138604.31619654296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1d59c14a179d90004a72', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:02:30.000Z'}}, {'blockNum': '0xa12b5e', 'uniqueId': '0x76afa1ed3719d520826b6c3de6f8333ffa8c072ff0e8551b094ed16951e6f9a8:log:30', 'hash': '0x76afa1ed3719d520826b6c3de6f8333ffa8c072ff0e8551b094ed16951e6f9a8', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xc640caba272414689b21ebcd60d97b912359504d', 'value': 138604.31619654296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1d59c14a179d90004a72', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:02:30.000Z'}}, {'blockNum': '0xa12b5e', 'uniqueId': '0x26a347c420b59d775e0fc3e94aec44864d48422b914b92123322e56870783839:log:118', 'hash': '0x26a347c420b59d775e0fc3e94aec44864d48422b914b92123322e56870783839', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 234935.39244669044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x31bfdf86613564f9b952', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:02:30.000Z'}}, {'blockNum': '0xa12b5e', 'uniqueId': '0x1a9fde0dfb9491583b2e5b73024d36e32c31d3c3cb5ad4d0bf222c603c36c180:log:134', 'hash': '0x1a9fde0dfb9491583b2e5b73024d36e32c31d3c3cb5ad4d0bf222c603c36c180', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 65507.34844835332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ddf2914e4f86be5b6c1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:02:30.000Z'}}, {'blockNum': '0xa12b5e', 'uniqueId': '0x1a9fde0dfb9491583b2e5b73024d36e32c31d3c3cb5ad4d0bf222c603c36c180:log:139', 'hash': '0x1a9fde0dfb9491583b2e5b73024d36e32c31d3c3cb5ad4d0bf222c603c36c180', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xeca0f4bd861713af4f248ced18c15af76440b00a', 'value': 65507.34844835332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ddf2914e4f86be5b6c1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:02:30.000Z'}}, {'blockNum': '0xa12b5f', 'uniqueId': '0x90c164a849cc7752b0c6d6485983299872944a4e73c6d7c4e7764926f5d9e589:log:285', 'hash': '0x90c164a849cc7752b0c6d6485983299872944a4e73c6d7c4e7764926f5d9e589', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 11101.54716981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0259d0ea7c6ca8323400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:03:12.000Z'}}, {'blockNum': '0xa12b62', 'uniqueId': '0xc5e952f1df98ec9428fd5ba88a36d53a4d5a456ee45ef47b3db34a2d94254c83:log:54', 'hash': '0xc5e952f1df98ec9428fd5ba88a36d53a4d5a456ee45ef47b3db34a2d94254c83', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xaec886a56346d6c7b113c91cb6c03adcc29d18d3', 'value': 20950.12195428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x046fb558d6ea13d51000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:03:42.000Z'}}, {'blockNum': '0xa12b69', 'uniqueId': '0xf0bc427f8a929c36a08e5cf222dd5714fead570fc41a9f085f03bbf682a59dbb:log:25', 'hash': '0xf0bc427f8a929c36a08e5cf222dd5714fead570fc41a9f085f03bbf682a59dbb', 'from': '0xc640caba272414689b21ebcd60d97b912359504d', 'to': '0xcdf8b5d9f08ca3d91944911d8f2b1f9b309d87a9', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:04:30.000Z'}}, {'blockNum': '0xa12b69', 'uniqueId': '0x092f7f151d6e99549eb93df3bd1bf6da801bcf8c34bc2cb991154100fc9ae3d4:log:54', 'hash': '0x092f7f151d6e99549eb93df3bd1bf6da801bcf8c34bc2cb991154100fc9ae3d4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 257150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3674212280e893380000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:04:30.000Z'}}, {'blockNum': '0xa12b79', 'uniqueId': '0x39d941c1b58bf3849d85750ff18fafdf6e8bd897462f9e5266fac648e283d4d6:log:279', 'hash': '0x39d941c1b58bf3849d85750ff18fafdf6e8bd897462f9e5266fac648e283d4d6', 'from': '0x43fd7a871b29f32ba8ab905c912c905a139e8c37', 'to': '0x134fa523f1037db8808712f08b874606695873ae', 'value': 583096.173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x7b79b4f5df921e048000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:07:51.000Z'}}, {'blockNum': '0xa12b81', 'uniqueId': '0x874da94263aa40abb6ec5f634edb70a23b24fc7ee6e88b1b99fc8c94b4f7143e:log:33', 'hash': '0x874da94263aa40abb6ec5f634edb70a23b24fc7ee6e88b1b99fc8c94b4f7143e', 'from': '0xeca0f4bd861713af4f248ced18c15af76440b00a', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 65507.34844835332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ddf2914e4f86be5b6c1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:09:12.000Z'}}, {'blockNum': '0xa12b81', 'uniqueId': '0x874da94263aa40abb6ec5f634edb70a23b24fc7ee6e88b1b99fc8c94b4f7143e:log:35', 'hash': '0x874da94263aa40abb6ec5f634edb70a23b24fc7ee6e88b1b99fc8c94b4f7143e', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 65507.34844835332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ddf2914e4f86be5b6c1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:09:12.000Z'}}, {'blockNum': '0xa12b8d', 'uniqueId': '0xd31684165aeaedccd71f6fbbc295a85066947077539f690d2e345b2bc206a6f1:log:12', 'hash': '0xd31684165aeaedccd71f6fbbc295a85066947077539f690d2e345b2bc206a6f1', 'from': '0xc640caba272414689b21ebcd60d97b912359504d', 'to': '0xcdf8b5d9f08ca3d91944911d8f2b1f9b309d87a9', 'value': 138504.31619654296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1d545582b9702cf04a72', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:12:17.000Z'}}, {'blockNum': '0xa12b98', 'uniqueId': '0xcccbe3473a440d2323fab1c81e96ba1b05e5d15d7d3b36f9eaeeb872c270fb12:log:153', 'hash': '0xcccbe3473a440d2323fab1c81e96ba1b05e5d15d7d3b36f9eaeeb872c270fb12', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xfa2eb971f7eeb0addf86dd77f32c224c243a5cc5', 'value': 3411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xb8e9225bbf596c0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:14:58.000Z'}}, {'blockNum': '0xa12b99', 'uniqueId': '0xcb1bd2f62e567fc58551138e959566133196dd0a1a40e46fbf29117c9e6fe709:log:35', 'hash': '0xcb1bd2f62e567fc58551138e959566133196dd0a1a40e46fbf29117c9e6fe709', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 65873.46461966219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0df301f6d3025b2d9ede', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:15:42.000Z'}}, {'blockNum': '0xa12b99', 'uniqueId': '0xcb1bd2f62e567fc58551138e959566133196dd0a1a40e46fbf29117c9e6fe709:log:40', 'hash': '0xcb1bd2f62e567fc58551138e959566133196dd0a1a40e46fbf29117c9e6fe709', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 65873.46461966219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0df301f6d3025b2d9ede', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:15:42.000Z'}}, {'blockNum': '0xa12b9d', 'uniqueId': '0x208ae3fe5095e7ee3590a528168b592391c896b56f1c765168b3b6b6c883b98a:log:15', 'hash': '0x208ae3fe5095e7ee3590a528168b592391c896b56f1c765168b3b6b6c883b98a', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 65873.46461966219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0df301f6d3025b2d9ede', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:16:52.000Z'}}, {'blockNum': '0xa12bad', 'uniqueId': '0x5b3e605d5fcc95f23f6a51ae52e848417834f023cf2f5f267d01c03a0337a5f6:log:25', 'hash': '0x5b3e605d5fcc95f23f6a51ae52e848417834f023cf2f5f267d01c03a0337a5f6', 'from': '0xfa2eb971f7eeb0addf86dd77f32c224c243a5cc5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 3411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xb8e9225bbf596c0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:20:55.000Z'}}, {'blockNum': '0xa12bae', 'uniqueId': '0x2c17b3b67de7cb06017795517c6f779d88184c60f055c0b3e24fff2e25ba2dbf:log:192', 'hash': '0x2c17b3b67de7cb06017795517c6f779d88184c60f055c0b3e24fff2e25ba2dbf', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xec601f7395e98b14cc26a4c0412aabc0c9291ee4', 'value': 291.95686278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0fd3b723d83b5d5800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:21:55.000Z'}}, {'blockNum': '0xa12bb3', 'uniqueId': '0x6086b207187d8bfe2449a8b45b5c23b92e940d5f412d446cb114f6542cb42bc1:log:193', 'hash': '0x6086b207187d8bfe2449a8b45b5c23b92e940d5f412d446cb114f6542cb42bc1', 'from': '0xce1bc88d09d47ba294135ed6d526cfaca21cc76b', 'to': '0x26d84508264b0d266c098ca2350c67f29fad704e', 'value': 56689.182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0c01207054d75c430000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:23:03.000Z'}}, {'blockNum': '0xa12bd4', 'uniqueId': '0x441ee5bd42b7e30d049fccce8610afa3f168407b7126c7b1f1412f9d5dd84c38:log:42', 'hash': '0x441ee5bd42b7e30d049fccce8610afa3f168407b7126c7b1f1412f9d5dd84c38', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 91032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1346dac79bcb0f600000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:30:59.000Z'}}, {'blockNum': '0xa12be5', 'uniqueId': '0xc5aa4e6c8ce2e6c09504ba280f8d4920eea5232b9ccf4021b2cc98b341f59d23:log:10', 'hash': '0xc5aa4e6c8ce2e6c09504ba280f8d4920eea5232b9ccf4021b2cc98b341f59d23', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 71441.07007190151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0f20d402df6208000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:33:51.000Z'}}, {'blockNum': '0xa12be5', 'uniqueId': '0xc5aa4e6c8ce2e6c09504ba280f8d4920eea5232b9ccf4021b2cc98b341f59d23:log:12', 'hash': '0xc5aa4e6c8ce2e6c09504ba280f8d4920eea5232b9ccf4021b2cc98b341f59d23', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 71441.07007190151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0f20d402df6208000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:33:51.000Z'}}, {'blockNum': '0xa12be8', 'uniqueId': '0x583a82b3f7afab030e03149cba2137a0086973ccd13fc377338beacf8094586b:log:80', 'hash': '0x583a82b3f7afab030e03149cba2137a0086973ccd13fc377338beacf8094586b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'value': 3405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xb895de13896d140000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:34:20.000Z'}}, {'blockNum': '0xa12c04', 'uniqueId': '0x863ce71ef168c9211f4883f81833dd3a19f7808fb4b6ed288508e5e6a6b6c71e:log:38', 'hash': '0x863ce71ef168c9211f4883f81833dd3a19f7808fb4b6ed288508e5e6a6b6c71e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x73a379715459e794a1c4372df0f8a1772eb3c80a', 'value': 1194.2292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x40bd426a1a3eed0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:40:38.000Z'}}, {'blockNum': '0xa12c59', 'uniqueId': '0x2ddbf36be32a13c781f516a3009ee23c06a2fbc549283ed9c43642a800b24c1a:log:26', 'hash': '0x2ddbf36be32a13c781f516a3009ee23c06a2fbc549283ed9c43642a800b24c1a', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 21410.233178640345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0488a6ac47b244468193', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:56:31.000Z'}}, {'blockNum': '0xa12c59', 'uniqueId': '0x2ddbf36be32a13c781f516a3009ee23c06a2fbc549283ed9c43642a800b24c1a:log:31', 'hash': '0x2ddbf36be32a13c781f516a3009ee23c06a2fbc549283ed9c43642a800b24c1a', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 21410.233178640345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0488a6ac47b244468193', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:56:31.000Z'}}, {'blockNum': '0xa12c9b', 'uniqueId': '0x781b56c139e282037859dd62eb339ae3a289125f1bc6c828a1748c27d7cc5e56:log:123', 'hash': '0x781b56c139e282037859dd62eb339ae3a289125f1bc6c828a1748c27d7cc5e56', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 41743.34301504236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x08d6e941ba7893800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:09:11.000Z'}}, {'blockNum': '0xa12c9b', 'uniqueId': '0x781b56c139e282037859dd62eb339ae3a289125f1bc6c828a1748c27d7cc5e56:log:125', 'hash': '0x781b56c139e282037859dd62eb339ae3a289125f1bc6c828a1748c27d7cc5e56', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 41743.34301504236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x08d6e941ba7893800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:09:11.000Z'}}, {'blockNum': '0xa12cc3', 'uniqueId': '0xeb39f7b145b0f0588baa44ca4bd1429923e8a7cb5ecae5ddb72721ee1fc3ffbc:log:0', 'hash': '0xeb39f7b145b0f0588baa44ca4bd1429923e8a7cb5ecae5ddb72721ee1fc3ffbc', 'from': '0x4732d5923fc114fa73ed0f96c81502615a918688', 'to': '0x3b45b6faeed933e958655a89b75d7fe7465d8164', 'value': 2773.85874999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x965f05ec951705fc00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:18:23.000Z'}}, {'blockNum': '0xa12ccc', 'uniqueId': '0x32e2d717d97d7f420a11602e44719138c4afa33b05d329bb25f572d2b1e56e21:log:38', 'hash': '0x32e2d717d97d7f420a11602e44719138c4afa33b05d329bb25f572d2b1e56e21', 'from': '0x3b45b6faeed933e958655a89b75d7fe7465d8164', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2773.85874999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x965f05ec951705fc00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:20:45.000Z'}}, {'blockNum': '0xa12ce1', 'uniqueId': '0xf73ed081658026bf5e91d2c4d9e466efd5692b82c559406983203c7fcf6187ef:log:38', 'hash': '0xf73ed081658026bf5e91d2c4d9e466efd5692b82c559406983203c7fcf6187ef', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb63150b1ece82008da567df900c21da3647d9620', 'value': 11371.845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0268780d48e20a008000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:25:24.000Z'}}, {'blockNum': '0xa12ce1', 'uniqueId': '0x0cbc41a174d090b5b1b8decfbabd86005f2bd5ea85c951ad2000a8d3c338f9c4:log:39', 'hash': '0x0cbc41a174d090b5b1b8decfbabd86005f2bd5ea85c951ad2000a8d3c338f9c4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x72962fc4d5d695f6d49bd885e0e635b0524ff554', 'value': 1256.0136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x4416b0b28e03920000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:25:24.000Z'}}, {'blockNum': '0xa12ce5', 'uniqueId': '0xb71b16a3b854dc18c1241868cb83b90f3f27971ed8a671cc566fd8ded54b7d96:log:46', 'hash': '0xb71b16a3b854dc18c1241868cb83b90f3f27971ed8a671cc566fd8ded54b7d96', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x211f540ec883ac0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:26:02.000Z'}}, {'blockNum': '0xa12ceb', 'uniqueId': '0x195b4bd708d0102d6d80cb1e60ef2ee045ec04e3729a1b5c6c501ad835a72d2d:log:125', 'hash': '0x195b4bd708d0102d6d80cb1e60ef2ee045ec04e3729a1b5c6c501ad835a72d2d', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x21db968168db8c071b72d13afa0b4cd89e6b63c9', 'value': 1132.51717735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3d64d5447776d0bc00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:28:01.000Z'}}, {'blockNum': '0xa12cf0', 'uniqueId': '0xdc496852ee18a4fe640303a9fd0d441705c865ddff4d4ba9fd4225e6aab73815:log:182', 'hash': '0xdc496852ee18a4fe640303a9fd0d441705c865ddff4d4ba9fd4225e6aab73815', 'from': '0x19ac1f3c91cfafefa8cf37397120c8633360f42b', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:28:37.000Z'}}, {'blockNum': '0xa12d4d', 'uniqueId': '0xdf0f4e94d373d7d279e5c967c3fe002ca5a51705e6972a5eb7995adacfd0638a:log:24', 'hash': '0xdf0f4e94d373d7d279e5c967c3fe002ca5a51705e6972a5eb7995adacfd0638a', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:49:08.000Z'}}, {'blockNum': '0xa12d4e', 'uniqueId': '0xeed799ffa17813675f16e4a7bbbc157c2ac36403e1b287292bc48ee72210e688:log:62', 'hash': '0xeed799ffa17813675f16e4a7bbbc157c2ac36403e1b287292bc48ee72210e688', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x6029c0470a11fd0a3049f8d453ca477556630afd', 'value': 2984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xa1c3519e1725a00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:49:24.000Z'}}, {'blockNum': '0xa12d9e', 'uniqueId': '0x9f31bf2506d844df7a8373e2b74b323f67c97ec0635a0858a392552d68042714:log:71', 'hash': '0x9f31bf2506d844df7a8373e2b74b323f67c97ec0635a0858a392552d68042714', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0x84afecbe08de370d1687662ceb312c2abed5a593', 'value': 83.00000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x047fdb3c419977e400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T20:08:40.000Z'}}, {'blockNum': '0xa12ddc', 'uniqueId': '0x3727a4a290536a95873dd9dedfb28a5e6cc401898d34105d7b217dd888cdd6d6:log:32', 'hash': '0x3727a4a290536a95873dd9dedfb28a5e6cc401898d34105d7b217dd888cdd6d6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x15d9c7f547c3192ac0502202c175b132459e1fb6', 'value': 4480.375584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xf2e1b39f99cd520000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T20:21:36.000Z'}}, {'blockNum': '0xa12deb', 'uniqueId': '0x2ea285c6c2863391197ecf43ddb73469548a1460460b1a4026752837e06d974f:log:113', 'hash': '0x2ea285c6c2863391197ecf43ddb73469548a1460460b1a4026752837e06d974f', 'from': '0xa07def8a7ccbe1ba41fbf44022f10834d41b5e94', 'to': '0xc4086b1b7f80dcb778cb5e2a6f9f3c55e5088b62', 'value': 3823.217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xcf41cb553a6a9e8000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T20:25:44.000Z'}}, {'blockNum': '0xa12ece', 'uniqueId': '0x6e98336a8c8db1e71cad55576e1e8b7f2531ad1587349b20815fedae7fd2a530:log:17', 'hash': '0x6e98336a8c8db1e71cad55576e1e8b7f2531ad1587349b20815fedae7fd2a530', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xaf1d587a74c39c67554c7b85d638256912e137ad', 'value': 25216.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0556ff6326ef91e18000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T21:16:42.000Z'}}, {'blockNum': '0xa12ee6', 'uniqueId': '0xba8b9fe4da95ab497ce282d162721339aeeda04c6f160e24157991472d58d5ec:log:42', 'hash': '0xba8b9fe4da95ab497ce282d162721339aeeda04c6f160e24157991472d58d5ec', 'from': '0x7728156d25f977a2c76f10628404085b1433cb0e', 'to': '0x0b69adc6abc3ec9531f789cb633f3e224a7ce2d8', 'value': 3633.64095148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc4fae5e98425cd3000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T21:23:11.000Z'}}, {'blockNum': '0xa12ee8', 'uniqueId': '0xa43b11be697609647873767c4545ce5bbf4f3adf3b4b39f24b27a4f8ef62b183:log:16', 'hash': '0xa43b11be697609647873767c4545ce5bbf4f3adf3b4b39f24b27a4f8ef62b183', 'from': '0x0b69adc6abc3ec9531f789cb633f3e224a7ce2d8', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 3633.64095148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc4fae5e98425cd3000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T21:23:20.000Z'}}, {'blockNum': '0xa12f06', 'uniqueId': '0x72cccb75c547d7c07e078180af2c7346b7bd297e24ace7c4f71145721beabfc7:log:24', 'hash': '0x72cccb75c547d7c07e078180af2c7346b7bd297e24ace7c4f71145721beabfc7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 691.61159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x257e09f4ca2d1a6000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T21:31:08.000Z'}}, {'blockNum': '0xa12f08', 'uniqueId': '0xa9cb5107b1baffa971c7186eba96fb2cdfa019af11f1cc53bbacb6e59b100cf5:log:125', 'hash': '0xa9cb5107b1baffa971c7186eba96fb2cdfa019af11f1cc53bbacb6e59b100cf5', 'from': '0x29dc02525e01fc1460d2c2309dc63d716a1cc86f', 'to': '0x791e589ff47c30b30aad340949794aa1d4246448', 'value': 153555.6768904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x20844519bef9774b4000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T21:31:37.000Z'}}, {'blockNum': '0xa12fa1', 'uniqueId': '0xa16c7a30591e3647d6a6f59d9ade952e326379fecc7aac261e6be5d54affd5ad:log:58', 'hash': '0xa16c7a30591e3647d6a6f59d9ade952e326379fecc7aac261e6be5d54affd5ad', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 39630.899742761045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x086465379e8907f299d0', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:08:41.000Z'}}, {'blockNum': '0xa12fa1', 'uniqueId': '0xa16c7a30591e3647d6a6f59d9ade952e326379fecc7aac261e6be5d54affd5ad:log:63', 'hash': '0xa16c7a30591e3647d6a6f59d9ade952e326379fecc7aac261e6be5d54affd5ad', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 39630.899742761045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x086465379e8907f299d0', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:08:41.000Z'}}, {'blockNum': '0xa12fcc', 'uniqueId': '0x51cf53bc7f026b05aa52823c6d1c12c545e191201b3bc3e14fee14b9c96fa1a2:log:78', 'hash': '0x51cf53bc7f026b05aa52823c6d1c12c545e191201b3bc3e14fee14b9c96fa1a2', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 30994.18247776134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x069032b00d4ea936d184', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:16:56.000Z'}}, {'blockNum': '0xa12fcc', 'uniqueId': '0x51cf53bc7f026b05aa52823c6d1c12c545e191201b3bc3e14fee14b9c96fa1a2:log:83', 'hash': '0x51cf53bc7f026b05aa52823c6d1c12c545e191201b3bc3e14fee14b9c96fa1a2', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 30994.18247776134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x069032b00d4ea936d184', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:16:56.000Z'}}, {'blockNum': '0xa12fe8', 'uniqueId': '0xb3d1be0e3c76bdc313e3a0cefc41f319725305da041ee32a4a8dd41fe5df5bbc:log:2', 'hash': '0xb3d1be0e3c76bdc313e3a0cefc41f319725305da041ee32a4a8dd41fe5df5bbc', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 48481.97818242231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a44369b106240000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:22:20.000Z'}}, {'blockNum': '0xa12fe8', 'uniqueId': '0xb3d1be0e3c76bdc313e3a0cefc41f319725305da041ee32a4a8dd41fe5df5bbc:log:4', 'hash': '0xb3d1be0e3c76bdc313e3a0cefc41f319725305da041ee32a4a8dd41fe5df5bbc', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 48481.97818242231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a44369b106240000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:22:20.000Z'}}, {'blockNum': '0xa12fe8', 'uniqueId': '0x9a733b3ea74dcbe9505f0964e4908dba47d3da3e463b62d6fcee6f4f4f9dd140:log:29', 'hash': '0x9a733b3ea74dcbe9505f0964e4908dba47d3da3e463b62d6fcee6f4f4f9dd140', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1235.95664235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x43005811d6a0444c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:22:20.000Z'}}, {'blockNum': '0xa12ff3', 'uniqueId': '0x20305c4b960e6c38eee849018ad787bac876d8e5e1b57d95b266dca778082f07:log:132', 'hash': '0x20305c4b960e6c38eee849018ad787bac876d8e5e1b57d95b266dca778082f07', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 1235.95664235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x43005811d6a0444c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:23:43.000Z'}}, {'blockNum': '0xa12ff9', 'uniqueId': '0x4640b0722ef61f971196b90b7b96295d2e70bfe1d434d1c4a28c8352f1a9db84:log:39', 'hash': '0x4640b0722ef61f971196b90b7b96295d2e70bfe1d434d1c4a28c8352f1a9db84', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 48423.22128010875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a4107309d097a08292c', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:25:19.000Z'}}, {'blockNum': '0xa12ff9', 'uniqueId': '0x4640b0722ef61f971196b90b7b96295d2e70bfe1d434d1c4a28c8352f1a9db84:log:44', 'hash': '0x4640b0722ef61f971196b90b7b96295d2e70bfe1d434d1c4a28c8352f1a9db84', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 48423.22128010875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a4107309d097a08292c', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:25:19.000Z'}}, {'blockNum': '0xa13000', 'uniqueId': '0xba606507b59da5d661b81f1f52352ea0e64a8431d271cd935219d5c8289135b5:log:115', 'hash': '0xba606507b59da5d661b81f1f52352ea0e64a8431d271cd935219d5c8289135b5', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x6029c0470a11fd0a3049f8d453ca477556630afd', 'value': 2921.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x9e5ff5033ac7b60000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:27:08.000Z'}}, {'blockNum': '0xa13001', 'uniqueId': '0xbe3a5f46fe8a46aab4dfcfb0d680a1b3deff19fa3ded99fd300b3254712f4b25:log:89', 'hash': '0xbe3a5f46fe8a46aab4dfcfb0d680a1b3deff19fa3ded99fd300b3254712f4b25', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 51708.31710276712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0af31d0d7a8fa9ba92a4', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:27:35.000Z'}}, {'blockNum': '0xa13001', 'uniqueId': '0xbe3a5f46fe8a46aab4dfcfb0d680a1b3deff19fa3ded99fd300b3254712f4b25:log:94', 'hash': '0xbe3a5f46fe8a46aab4dfcfb0d680a1b3deff19fa3ded99fd300b3254712f4b25', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'value': 51708.31710276712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0af31d0d7a8fa9ba92a4', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:27:35.000Z'}}, {'blockNum': '0xa13006', 'uniqueId': '0xc2f37c362425f3e54c3782f8a305b41a89147f645e463d62fb040425ea6564dd:log:5', 'hash': '0xc2f37c362425f3e54c3782f8a305b41a89147f645e463d62fb040425ea6564dd', 'from': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'to': '0x9cb1f0bc01da8beac4d9cb13933e5b6742dea2dc', 'value': 51708.31710276712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0af31d0d7a8fa9ba92a4', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:28:31.000Z'}}, {'blockNum': '0xa13009', 'uniqueId': '0xe9f024477931cd5030c56b425ca53bd192c65a12ba6b6c00f8fa4f08d7e276c5:log:68', 'hash': '0xe9f024477931cd5030c56b425ca53bd192c65a12ba6b6c00f8fa4f08d7e276c5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1559.51493763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x548a9e0d1c379dac00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:29:02.000Z'}}, {'blockNum': '0xa1300d', 'uniqueId': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0:log:141', 'hash': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 50163.15200512546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a9f59944ce44305bb23', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:29:58.000Z'}}, {'blockNum': '0xa1300d', 'uniqueId': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0:log:146', 'hash': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x5c5b40855fc364b797c1f539f7eb39cdc94a8a91', 'value': 50163.15200512546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a9f59944ce44305bb23', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:29:58.000Z'}}, {'blockNum': '0xa1300d', 'uniqueId': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0:log:147', 'hash': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0', 'from': '0x5c5b40855fc364b797c1f539f7eb39cdc94a8a91', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 50163.15200512546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a9f59944ce44305bb23', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:29:58.000Z'}}, {'blockNum': '0xa1300d', 'uniqueId': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0:log:151', 'hash': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x2bde5d7733a578c3ff1c79c25b990917b316d084', 'value': 50163.15200512546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a9f59944ce44305bb23', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:29:58.000Z'}}, {'blockNum': '0xa1300f', 'uniqueId': '0x22f3aedff19a7626937d6f74aefb5571bc5ecf8480109a64355faa694d0f816f:log:172', 'hash': '0x22f3aedff19a7626937d6f74aefb5571bc5ecf8480109a64355faa694d0f816f', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 1559.51493763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x548a9e0d1c379dac00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:30:40.000Z'}}, {'blockNum': '0xa13017', 'uniqueId': '0x5f47983459a2df3f7924ee8360f3b81cd744353e97530457329165121bd64e3b:log:45', 'hash': '0x5f47983459a2df3f7924ee8360f3b81cd744353e97530457329165121bd64e3b', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xd363b2ce42c2ba4453acb9a7efbe6b7a3bfd7aae', 'value': 6915.40386948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0176e281ebe97d319000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:32:12.000Z'}}, {'blockNum': '0xa13018', 'uniqueId': '0x32498a2febc3e4a50c925132931917dca5d1f051f35863ce93e10feacfc8db2e:log:25', 'hash': '0x32498a2febc3e4a50c925132931917dca5d1f051f35863ce93e10feacfc8db2e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 824.8943411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2cb7b568c0bf683800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:32:33.000Z'}}, {'blockNum': '0xa13018', 'uniqueId': '0xa94223ea81f22c7c50fe4a66d6b9d251dd134532eea835e51dc3e6e40a9a7e99:log:26', 'hash': '0xa94223ea81f22c7c50fe4a66d6b9d251dd134532eea835e51dc3e6e40a9a7e99', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 786.1308698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2a9dc1e4fbb5db9000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:32:33.000Z'}}, {'blockNum': '0xa13027', 'uniqueId': '0x118a64a53b137271d2881d6fba111b892cdec37196767a6f1604d0ed844da9fd:log:6', 'hash': '0x118a64a53b137271d2881d6fba111b892cdec37196767a6f1604d0ed844da9fd', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 40372.12240378733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x088c93bf81929d800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:34:45.000Z'}}, {'blockNum': '0xa13027', 'uniqueId': '0x118a64a53b137271d2881d6fba111b892cdec37196767a6f1604d0ed844da9fd:log:8', 'hash': '0x118a64a53b137271d2881d6fba111b892cdec37196767a6f1604d0ed844da9fd', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 40372.12240378733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x088c93bf81929d800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:34:45.000Z'}}, {'blockNum': '0xa1303d', 'uniqueId': '0x60aba2382c8c424ef7222735edf1b70736fae759214c98ee8464af822eee207b:log:7', 'hash': '0x60aba2382c8c424ef7222735edf1b70736fae759214c98ee8464af822eee207b', 'from': '0x2bde5d7733a578c3ff1c79c25b990917b316d084', 'to': '0xece4870ceb3571bc66720a3283d526fe3871f913', 'value': 50163.15200512546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a9f59944ce44305bb23', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:39:35.000Z'}}, {'blockNum': '0xa1305a', 'uniqueId': '0xf0fb10ad229356782e0bc13b37ac721ba29a1795b8d1f19414bffed745222d9d:log:53', 'hash': '0xf0fb10ad229356782e0bc13b37ac721ba29a1795b8d1f19414bffed745222d9d', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 39968.401179749446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0876b0fd9751254aeae9', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:46:07.000Z'}}, {'blockNum': '0xa1305a', 'uniqueId': '0xf0fb10ad229356782e0bc13b37ac721ba29a1795b8d1f19414bffed745222d9d:log:55', 'hash': '0xf0fb10ad229356782e0bc13b37ac721ba29a1795b8d1f19414bffed745222d9d', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 39968.401179749446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0876b0fd9751254aeae9', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:46:07.000Z'}}, {'blockNum': '0xa1306c', 'uniqueId': '0x627c6661dad47ec62160a0cc5bcfe8820a18e0c1ad4d344442cb01a717aa7768:log:77', 'hash': '0x627c6661dad47ec62160a0cc5bcfe8820a18e0c1ad4d344442cb01a717aa7768', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x47a542c63bd8cebd016aecf4d0a737cfa9067b3c', 'value': 1066.3165667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x39ce1d73d38b9fb800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:50:13.000Z'}}, {'blockNum': '0xa13075', 'uniqueId': '0x424a54c176ec1fd2efe95659896a7a589b4e4e260e72a19a7cf3940b61e88990:log:34', 'hash': '0x424a54c176ec1fd2efe95659896a7a589b4e4e260e72a19a7cf3940b61e88990', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd756f9b34d9a746b9029f06531e5123fe6b2779e', 'value': 5449.09664997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x012765683498a8eaf400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:52:44.000Z'}}, {'blockNum': '0xa130b2', 'uniqueId': '0xe9eb70894018ded72eb5e0de408a6c117f1f673099836e6228f0d630cb7b695b:log:211', 'hash': '0xe9eb70894018ded72eb5e0de408a6c117f1f673099836e6228f0d630cb7b695b', 'from': '0x53f3900b1f9764998f9df9d3c83d7c260f5444ea', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 9479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0201db8cf61b07bc0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:07:59.000Z'}}, {'blockNum': '0xa130b2', 'uniqueId': '0x330539b5d92841b3bedcdb3dd0f18a3a556461b236b3316ba9c96be58ab38482:log:212', 'hash': '0x330539b5d92841b3bedcdb3dd0f18a3a556461b236b3316ba9c96be58ab38482', 'from': '0xe5592ba2dca5ae6793e17d5d190f8cd5c131ec01', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 9724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x020f239bd00a3a700000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:07:59.000Z'}}, {'blockNum': '0xa130b2', 'uniqueId': '0x0ea9e5db4bc06cd16790326865ef96d58bfced460004b4a9e9b70ca8fab0eff1:log:213', 'hash': '0x0ea9e5db4bc06cd16790326865ef96d58bfced460004b4a9e9b70ca8fab0eff1', 'from': '0xb12127552734c9d8ebe649332f98dba800fa2c16', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:07:59.000Z'}}, {'blockNum': '0xa130b2', 'uniqueId': '0xfc01a31d6f5261c209b396b802690aed249afca12388e96821b870c3dd5aa76e:log:214', 'hash': '0xfc01a31d6f5261c209b396b802690aed249afca12388e96821b870c3dd5aa76e', 'from': '0xc7eb2136e8904a94c044a4543b799f413f067754', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01e7e4171bf4d3a00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:07:59.000Z'}}, {'blockNum': '0xa130b8', 'uniqueId': '0x5cc77a189b17a34830bc914961f2a31d96bb2a913e1c914e754120f1b4a27525:log:96', 'hash': '0x5cc77a189b17a34830bc914961f2a31d96bb2a913e1c914e754120f1b4a27525', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 6500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01605d9ee98627100000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:09:09.000Z'}}, {'blockNum': '0xa130b9', 'uniqueId': '0xd533be0207ba5cd174b95ffb891bf594116f8011004d79c4cdb9d1ede05a960e:log:62', 'hash': '0xd533be0207ba5cd174b95ffb891bf594116f8011004d79c4cdb9d1ede05a960e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd756f9b34d9a746b9029f06531e5123fe6b2779e', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:10:00.000Z'}}, {'blockNum': '0xa1314e', 'uniqueId': '0x50e2e9cda852072124b0199507ba1df9a4b604625aa566fb43ebae70ef4febe8:log:128', 'hash': '0x50e2e9cda852072124b0199507ba1df9a4b604625aa566fb43ebae70ef4febe8', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 3732.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xca599e594ecc960000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:43:10.000Z'}}, {'blockNum': '0xa1314f', 'uniqueId': '0x0db7683214b26370aad7cba35c0c41d56512f241a63fb82dc0f70ec88cf8d14d:log:92', 'hash': '0x0db7683214b26370aad7cba35c0c41d56512f241a63fb82dc0f70ec88cf8d14d', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x6029c0470a11fd0a3049f8d453ca477556630afd', 'value': 2871.3805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x9ba868c7862b854000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:43:39.000Z'}}, {'blockNum': '0xa131bf', 'uniqueId': '0x55141b9b9afc35e092b18035c1e419caed9dbcdc177ff507fb7314b75b84225c:log:75', 'hash': '0x55141b9b9afc35e092b18035c1e419caed9dbcdc177ff507fb7314b75b84225c', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x2b8f8806bd55425d25ede208337da00905f8f8ce', 'value': 3018.3657394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xa3a03d3fff4a455000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:04:02.000Z'}}, {'blockNum': '0xa131c8', 'uniqueId': '0x3ecbd7ad182ac115f9e7e4afe07f293d82c7e122761de873e819d208f5dd11ca:log:31', 'hash': '0x3ecbd7ad182ac115f9e7e4afe07f293d82c7e122761de873e819d208f5dd11ca', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 3459.481661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xbb89f3d18f6354d000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:07:03.000Z'}}, {'blockNum': '0xa131ce', 'uniqueId': '0xa79f1fbb8477cfcb69a8da812d621681c39acbaed87b5b5ebb9262a1d531154b:log:29', 'hash': '0xa79f1fbb8477cfcb69a8da812d621681c39acbaed87b5b5ebb9262a1d531154b', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 53554.383763457314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0b57305fc1941c8f0507', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:08:38.000Z'}}, {'blockNum': '0xa131ce', 'uniqueId': '0xa79f1fbb8477cfcb69a8da812d621681c39acbaed87b5b5ebb9262a1d531154b:log:34', 'hash': '0xa79f1fbb8477cfcb69a8da812d621681c39acbaed87b5b5ebb9262a1d531154b', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 53554.383763457314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0b57305fc1941c8f0507', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:08:38.000Z'}}, {'blockNum': '0xa131da', 'uniqueId': '0x6452a82a557989b0e46cbc2e9063c18ccba7afe79c76d7d9d29ec0cc383f3751:log:74', 'hash': '0x6452a82a557989b0e46cbc2e9063c18ccba7afe79c76d7d9d29ec0cc383f3751', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x81d8d46d2e1343960ae282088343a255331743ce', 'value': 1402.2815918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x4c0490fe22c451b000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:11:54.000Z'}}, {'blockNum': '0xa13206', 'uniqueId': '0x517613ce5f2276487af2aead5c552098b0262181c3ef22ba2e7eb8dab30c7112:log:92', 'hash': '0x517613ce5f2276487af2aead5c552098b0262181c3ef22ba2e7eb8dab30c7112', 'from': '0x7728156d25f977a2c76f10628404085b1433cb0e', 'to': '0x668e891ec3340569e7f1d09bb25390c34029fd74', 'value': 3633.64095148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc4fae5e98425cd3000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:22:41.000Z'}}, {'blockNum': '0xa13207', 'uniqueId': '0xc98eb80e1d5ab09cf8e2c377fa982a89907a8b1be73458a1941ef9458d3afc0f:log:56', 'hash': '0xc98eb80e1d5ab09cf8e2c377fa982a89907a8b1be73458a1941ef9458d3afc0f', 'from': '0x668e891ec3340569e7f1d09bb25390c34029fd74', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 3633.64095148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc4fae5e98425cd3000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:23:09.000Z'}}, {'blockNum': '0xa13216', 'uniqueId': '0x6867503b14a2a18572dacb69d1eaab4b899f4a55db2fb38bf634a2de9052b442:log:55', 'hash': '0x6867503b14a2a18572dacb69d1eaab4b899f4a55db2fb38bf634a2de9052b442', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:27:02.000Z'}}, {'blockNum': '0xa1321f', 'uniqueId': '0xb61138ce92cd45b29dd6be4c494151603af02bd82c3850eee9d207198ef82a71:log:259', 'hash': '0xb61138ce92cd45b29dd6be4c494151603af02bd82c3850eee9d207198ef82a71', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x5fba47b0855d9863162aafbbafd08c1e770edb42', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:28:44.000Z'}}, {'blockNum': '0xa13257', 'uniqueId': '0x960827a11ca7563b36c49e84fbb8230320a48a4e854065ec17e440ca206ec0ff:log:29', 'hash': '0x960827a11ca7563b36c49e84fbb8230320a48a4e854065ec17e440ca206ec0ff', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:45:19.000Z'}}, {'blockNum': '0xa1325e', 'uniqueId': '0x0f77ae3763676c69a5b676bb8228bcf27cd30bde3569e66d04bc2668fe0ce84b:log:74', 'hash': '0x0f77ae3763676c69a5b676bb8228bcf27cd30bde3569e66d04bc2668fe0ce84b', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xf057964df79946e3f65d054f1e1700d7085be1fe', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:46:55.000Z'}}, {'blockNum': '0xa13263', 'uniqueId': '0xf121e6c54bb331e2753403c7e30246312142ddee4f2e02bb5eafffed89f42203:log:79', 'hash': '0xf121e6c54bb331e2753403c7e30246312142ddee4f2e02bb5eafffed89f42203', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 3768.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xcc4d380a9256a60000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:47:37.000Z'}}, {'blockNum': '0xa13266', 'uniqueId': '0x39cd1efbd508df857d701eac80dbe54e7ba6edf8ca52dfece9b083798ddba65f:log:226', 'hash': '0x39cd1efbd508df857d701eac80dbe54e7ba6edf8ca52dfece9b083798ddba65f', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x6029c0470a11fd0a3049f8d453ca477556630afd', 'value': 2899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x9d27b4f470916c0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:48:03.000Z'}}, {'blockNum': '0xa1326b', 'uniqueId': '0x51fc9a296270b6fe1cbf943b64c3a9f935012940f4a8044423972b0b5d133e25:log:30', 'hash': '0x51fc9a296270b6fe1cbf943b64c3a9f935012940f4a8044423972b0b5d133e25', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x17c980113aeda8034d1ba0df506a12cd9e0b6334', 'value': 3898.4993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xd3568bca3729024000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:49:47.000Z'}}, {'blockNum': '0xa13271', 'uniqueId': '0x7ee5a8f989186ad9d4a91e65a5a98cead999faf4aa8e0cd52eb6c0d5715f5ede:log:40', 'hash': '0x7ee5a8f989186ad9d4a91e65a5a98cead999faf4aa8e0cd52eb6c0d5715f5ede', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 206081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2ba3ac63a4111b640000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:50:54.000Z'}}, {'blockNum': '0xa1327e', 'uniqueId': '0x913746da96bb663a455fe33861acdf53d3123c90822339187c45dce021ada1a2:log:32', 'hash': '0x913746da96bb663a455fe33861acdf53d3123c90822339187c45dce021ada1a2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 3648.82167634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc5cd92ae586f0b0800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:53:13.000Z'}}, {'blockNum': '0xa13284', 'uniqueId': '0xdbe8f1cd5ace5bcf275e0704d380db58fc536258a35112df352167dfa1e77435:log:26', 'hash': '0xdbe8f1cd5ace5bcf275e0704d380db58fc536258a35112df352167dfa1e77435', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 37676.45088886445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x07fa71ca7107b7c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:54:34.000Z'}}, {'blockNum': '0xa13284', 'uniqueId': '0xdbe8f1cd5ace5bcf275e0704d380db58fc536258a35112df352167dfa1e77435:log:28', 'hash': '0xdbe8f1cd5ace5bcf275e0704d380db58fc536258a35112df352167dfa1e77435', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 37676.45088886445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x07fa71ca7107b7c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:54:34.000Z'}}, {'blockNum': '0xa13286', 'uniqueId': '0x01fa97fe8f03e54d74dea8eb41e8900dfe14071b082f2501f002b8a4222af0d3:log:44', 'hash': '0x01fa97fe8f03e54d74dea8eb41e8900dfe14071b082f2501f002b8a4222af0d3', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x8fab7e51fd5b566450e725766fd1a3ad1fc97115', 'value': 3648.82167634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc5cd92ae586f0b0800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:54:51.000Z'}}, {'blockNum': '0xa13293', 'uniqueId': '0xaf7b70a36a56f48cb3c71e36cae55af517b39d5387e7fc19da7586f7b90a88e4:log:144', 'hash': '0xaf7b70a36a56f48cb3c71e36cae55af517b39d5387e7fc19da7586f7b90a88e4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 14403.55374821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x030cd1766cb2d73af400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:57:39.000Z'}}, {'blockNum': '0xa1329c', 'uniqueId': '0xab75642d0aa15bcfc1ee34df14d70c21ee3a18c217b2dd5a6e3e30d9644910b1:log:105', 'hash': '0xab75642d0aa15bcfc1ee34df14d70c21ee3a18c217b2dd5a6e3e30d9644910b1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 804.70195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2b9f7ba0080625e000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:00:21.000Z'}}, {'blockNum': '0xa1329c', 'uniqueId': '0x71c0357c64c6662622bd20377072cb294820b90ff05760faae686e783bb2c328:log:202', 'hash': '0x71c0357c64c6662622bd20377072cb294820b90ff05760faae686e783bb2c328', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x17c980113aeda8034d1ba0df506a12cd9e0b6334', 'value': 14403.55374821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x030cd1766cb2d73af400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:00:21.000Z'}}, {'blockNum': '0xa132ab', 'uniqueId': '0xc3d9e23d5748e29d301e738fcf45313615209a8985992437d0d6ed5416c3b423:log:35', 'hash': '0xc3d9e23d5748e29d301e738fcf45313615209a8985992437d0d6ed5416c3b423', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x47a542c63bd8cebd016aecf4d0a737cfa9067b3c', 'value': 979.5358988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3519ca9627acfae000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:04:17.000Z'}}, {'blockNum': '0xa132b2', 'uniqueId': '0x43641558161f1fb2991c5ea8670a1e0ac6bde37f5235ccf4f7c2d5521e7b8770:log:114', 'hash': '0x43641558161f1fb2991c5ea8670a1e0ac6bde37f5235ccf4f7c2d5521e7b8770', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 2160.581057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x752015e017ab011000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:06:09.000Z'}}, {'blockNum': '0xa132b4', 'uniqueId': '0xf5be2e139f19e9b5d62e500cd98e5c855ccb206f3d886915e05c018cdcf61acc:log:100', 'hash': '0xf5be2e139f19e9b5d62e500cd98e5c855ccb206f3d886915e05c018cdcf61acc', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 37174.24832288791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x07df3854840ec686deb3', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:06:43.000Z'}}, {'blockNum': '0xa132b4', 'uniqueId': '0xf5be2e139f19e9b5d62e500cd98e5c855ccb206f3d886915e05c018cdcf61acc:log:105', 'hash': '0xf5be2e139f19e9b5d62e500cd98e5c855ccb206f3d886915e05c018cdcf61acc', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 37174.24832288791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x07df3854840ec686deb3', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:06:43.000Z'}}, {'blockNum': '0xa132d7', 'uniqueId': '0xfe764b2d47cd4841db203fe821ac410daabd6a36ea71405566cd73838759d291:log:31', 'hash': '0xfe764b2d47cd4841db203fe821ac410daabd6a36ea71405566cd73838759d291', 'from': '0x1c8ff99d90eda11f7d88d4ff247c89edfb74f8a1', 'to': '0x8003740dd12b7d1eb0e531606ba04f2b0cfabcd5', 'value': 194915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x29465d02b411ffac0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:16:26.000Z'}}, {'blockNum': '0xa132df', 'uniqueId': '0x43382de31abfa353d6eb7ddcac2f67e001aec906902a59902e4259a0e5f5c3e4:log:120', 'hash': '0x43382de31abfa353d6eb7ddcac2f67e001aec906902a59902e4259a0e5f5c3e4', 'from': '0x8003740dd12b7d1eb0e531606ba04f2b0cfabcd5', 'to': '0xa305fab8bda7e1638235b054889b3217441dd645', 'value': 194915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x29465d02b411ffac0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:17:45.000Z'}}, {'blockNum': '0xa132e4', 'uniqueId': '0xe3fabb3a1a111e86e5f40fe502dc2c0fa92a9be56e95175c343faf202950bb6b:log:35', 'hash': '0xe3fabb3a1a111e86e5f40fe502dc2c0fa92a9be56e95175c343faf202950bb6b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 615.78223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2161b1f3a183e36000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:18:50.000Z'}}, {'blockNum': '0xa132e6', 'uniqueId': '0xe86387786fa0f74200fcd9b608902e90bdce95aa019e7a5b4c1634d1427bf657:log:23', 'hash': '0xe86387786fa0f74200fcd9b608902e90bdce95aa019e7a5b4c1634d1427bf657', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x47a542c63bd8cebd016aecf4d0a737cfa9067b3c', 'value': 1026.186774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x37a133c9fb820f6000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:19:27.000Z'}}, {'blockNum': '0xa132f3', 'uniqueId': '0x1a730d2fe8c901e725e9aa5784538ed951df17b0c2223106d20386434f2ef44d:log:49', 'hash': '0x1a730d2fe8c901e725e9aa5784538ed951df17b0c2223106d20386434f2ef44d', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xcad2ce7031d6c4cf127b5266fbeda7d29ee7d037', 'value': 10705.11866091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0244535d7ff2b9ea4c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:22:13.000Z'}}, {'blockNum': '0xa132f6', 'uniqueId': '0xb837934f67b1b368f928732072065b5f867c2efcd2c5a46d52dba9a93b52ae85:log:62', 'hash': '0xb837934f67b1b368f928732072065b5f867c2efcd2c5a46d52dba9a93b52ae85', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 601.59785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x209cd8e92c48bba000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:22:53.000Z'}}, {'blockNum': '0xa132f9', 'uniqueId': '0x5707624294965c4cb6310ff6aee311accf2ea0153a8c7ad475f86902ab8609a9:log:32', 'hash': '0x5707624294965c4cb6310ff6aee311accf2ea0153a8c7ad475f86902ab8609a9', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 45320.95881191826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0998daa64eb571800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:23:43.000Z'}}, {'blockNum': '0xa132f9', 'uniqueId': '0x5707624294965c4cb6310ff6aee311accf2ea0153a8c7ad475f86902ab8609a9:log:34', 'hash': '0x5707624294965c4cb6310ff6aee311accf2ea0153a8c7ad475f86902ab8609a9', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 45320.95881191826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0998daa64eb571800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:23:43.000Z'}}, {'blockNum': '0xa13308', 'uniqueId': '0x92c3b91cbab7e0a35d02c1aaae4c8f56787ffe8de37a9bb710b9d72014f10092:log:2', 'hash': '0x92c3b91cbab7e0a35d02c1aaae4c8f56787ffe8de37a9bb710b9d72014f10092', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0x4c0c9ae0f86e213aec513187011a3573eeafa01c', 'value': 6401.52770884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x015b070b0e714c6c9000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:26:24.000Z'}}, {'blockNum': '0xa1330e', 'uniqueId': '0x27d39e9e7bb172b0da4c388ad1bbd75a024a2bfa889fc5ccff82eff902d71d40:log:118', 'hash': '0x27d39e9e7bb172b0da4c388ad1bbd75a024a2bfa889fc5ccff82eff902d71d40', 'from': '0xcad2ce7031d6c4cf127b5266fbeda7d29ee7d037', 'to': '0xc94eb594e8c11c65b3f81bfdf61a5682084cb06a', 'value': 10705.11866091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0244535d7ff2b9ea4c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:28:40.000Z'}}, {'blockNum': '0xa1332c', 'uniqueId': '0x49ce84b0d0aef44eb46aeb7418d9e6762157772afe3e21c01df1b2632d0bbce1:log:59', 'hash': '0x49ce84b0d0aef44eb46aeb7418d9e6762157772afe3e21c01df1b2632d0bbce1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 79925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x10ecbe30c73387b40000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:34:19.000Z'}}, {'blockNum': '0xa133b6', 'uniqueId': '0xe4d0fd0cf5429df7e450dba64a72797e89a46dc5467000f52e92fcc04feb274e:log:52', 'hash': '0xe4d0fd0cf5429df7e450dba64a72797e89a46dc5467000f52e92fcc04feb274e', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 7731.222385562515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01a31c4385e5b9d5e3ba', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:06:54.000Z'}}, {'blockNum': '0xa133b6', 'uniqueId': '0xe4d0fd0cf5429df7e450dba64a72797e89a46dc5467000f52e92fcc04feb274e:log:54', 'hash': '0xe4d0fd0cf5429df7e450dba64a72797e89a46dc5467000f52e92fcc04feb274e', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 7731.222385562515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01a31c4385e5b9d5e3ba', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:06:54.000Z'}}, {'blockNum': '0xa13401', 'uniqueId': '0x5d22a24f5fe057e5080a0737936cebdd5ecb10e956260468533848f0695405b4:log:199', 'hash': '0x5d22a24f5fe057e5080a0737936cebdd5ecb10e956260468533848f0695405b4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 16276.01157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03725308f0e8eddd2000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:22:17.000Z'}}, {'blockNum': '0xa13402', 'uniqueId': '0xb195051e06f123fe76f6ccbfa3a51f58a368b6b5099f29f02115620604a41234:log:24', 'hash': '0xb195051e06f123fe76f6ccbfa3a51f58a368b6b5099f29f02115620604a41234', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xa51eea2f9ba9be60c960170012c8632ce7a76e62', 'value': 14578.4132661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03164c2039c62cbe0800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:23:12.000Z'}}, {'blockNum': '0xa13435', 'uniqueId': '0x3f993ed75c817deef4fcd95fed50ec07ecfbf4aa565e449c9b766ec6a59a284d:log:253', 'hash': '0x3f993ed75c817deef4fcd95fed50ec07ecfbf4aa565e449c9b766ec6a59a284d', 'from': '0x2b8f8806bd55425d25ede208337da00905f8f8ce', 'to': '0xbd2c32cf60da2ec939ea674b80dc5cdd21852a2b', 'value': 3018.3657394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xa3a03d3fff4a455000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:34:05.000Z'}}, {'blockNum': '0xa1343b', 'uniqueId': '0xa0aa0e956a43ff65267df8723c0d15d88dfbfc4dd4fc867ed2aefb0d74f12e04:log:42', 'hash': '0xa0aa0e956a43ff65267df8723c0d15d88dfbfc4dd4fc867ed2aefb0d74f12e04', 'from': '0xbd2c32cf60da2ec939ea674b80dc5cdd21852a2b', 'to': '0xa305fab8bda7e1638235b054889b3217441dd645', 'value': 3018.3657394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xa3a03d3fff4a455000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:35:34.000Z'}}, {'blockNum': '0xa13470', 'uniqueId': '0x0b6a00588c32f8557c147cebd3af188d625ce3c405ffa7c946ecaf84107ce950:log:12', 'hash': '0x0b6a00588c32f8557c147cebd3af188d625ce3c405ffa7c946ecaf84107ce950', 'from': '0x17c980113aeda8034d1ba0df506a12cd9e0b6334', 'to': '0x5821c4892521530d6d6f49c9fb5214ecd813aae6', 'value': 15002.053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x032d434ee73777408000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:45:53.000Z'}}, {'blockNum': '0xa13471', 'uniqueId': '0x4871f1c6b9b0f8574973bbad78911b7c219dd530fcd3e87a1e284a3e5a791f89:log:80', 'hash': '0x4871f1c6b9b0f8574973bbad78911b7c219dd530fcd3e87a1e284a3e5a791f89', 'from': '0x5821c4892521530d6d6f49c9fb5214ecd813aae6', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 15002.053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x032d434ee73777408000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:45:59.000Z'}}, {'blockNum': '0xa13471', 'uniqueId': '0xb7d33fd416a1b061977a2e5daf9ab2365f75181207d1ae8a44fa0278b6aaaa0d:log:189', 'hash': '0xb7d33fd416a1b061977a2e5daf9ab2365f75181207d1ae8a44fa0278b6aaaa0d', 'from': '0x17c980113aeda8034d1ba0df506a12cd9e0b6334', 'to': '0x415ad5489d25d61a7fad58406036951f6d929991', 'value': 3300.00004821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xb2e4b34fb288fcb400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:45:59.000Z'}}, {'blockNum': '0xa13473', 'uniqueId': '0x0e8a27eb65392f4442d25f656969d7c6b9768623190757cb148ebd3603913ca8:log:7', 'hash': '0x0e8a27eb65392f4442d25f656969d7c6b9768623190757cb148ebd3603913ca8', 'from': '0x415ad5489d25d61a7fad58406036951f6d929991', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 3300.00004821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xb2e4b34fb288fcb400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:46:58.000Z'}}, {'blockNum': '0xa134b8', 'uniqueId': '0x43f8dd66276b49a979258a3ea776e25c9c2458daed1605aeba3eac88e6fd3d65:log:4', 'hash': '0x43f8dd66276b49a979258a3ea776e25c9c2458daed1605aeba3eac88e6fd3d65', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1fc534bd170174ef9e00dd790df8c99ee3c541c0', 'value': 639.08075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x22a506ec214c38e000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T03:02:50.000Z'}}, {'blockNum': '0xa134c6', 'uniqueId': '0x6bb2a1805238085a09282c8e944a7a95519c0bc614b647a3ffc0ed8c9dc9b038:log:33', 'hash': '0x6bb2a1805238085a09282c8e944a7a95519c0bc614b647a3ffc0ed8c9dc9b038', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 98160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x14c943a6b607d7c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T03:06:11.000Z'}}, {'blockNum': '0xa13551', 'uniqueId': '0xf0993ece0171051b0c4db06d97280b5e3baa279c1e7d9f320d3d35146f3b4767:log:124', 'hash': '0xf0993ece0171051b0c4db06d97280b5e3baa279c1e7d9f320d3d35146f3b4767', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1143.90905225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3e02ed5654db010400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T03:36:34.000Z'}}, {'blockNum': '0xa13557', 'uniqueId': '0xb1e6414f98e614fa49adf16f8a08a01f22fa99bd4aee718a85f840d565d7ad7a:log:57', 'hash': '0xb1e6414f98e614fa49adf16f8a08a01f22fa99bd4aee718a85f840d565d7ad7a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xbdb090818dc1e8b77c8b7fe31e7343abc5db2d03', 'value': 1143.90905225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3e02ed5654db010400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T03:38:24.000Z'}}, {'blockNum': '0xa1357f', 'uniqueId': '0x7388220577bd5a18365b9da74146c090c315b924ce1e61a3149208cde9fc14d5:log:12', 'hash': '0x7388220577bd5a18365b9da74146c090c315b924ce1e61a3149208cde9fc14d5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1192.51155671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x40a56c1ea177a47c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T03:48:47.000Z'}}]}}
Number of returned transfers: 164
Answer is complete
symbol PPT
group CPS
date 2020-08-04
hour 18:00
exchange binance
Name: 421, dtype: object
HERE
{'binance-smart-chain': '0xdf061250302e5ccae091b18ca2b45914d785f214'}
No contract for ethereum specified
Symbol: PPT, Contract: 0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a
Datetime timestamps: 2020-08-04 18:00:00 2020-08-04 06:00:00 2020-08-05 06:00:00
Unix timestamps: 1596513600.0 1596600000.0
Hex Block Numbers: 0xa19b32 0xa1b459
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa19b3b', 'uniqueId': '0x9632547eb752e61fd2845023430266e3d2fd4251041f716a6d906fe60c4ccf3c:log:113', 'hash': '0x9632547eb752e61fd2845023430266e3d2fd4251041f716a6d906fe60c4ccf3c', 'from': '0xb97adeeef9cb162436f98ceedf81d25e0cd4afbc', 'to': '0xcf30e8ffbfb50cf340f29af334a74eee9a878b83', 'value': 140.8040339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x034741e7be', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T04:02:09.000Z'}}, {'blockNum': '0xa19b3c', 'uniqueId': '0x25ceb90ebafe0389f1485228ef4018b53ad65fc94a67548a238c22ea90499223:log:146', 'hash': '0x25ceb90ebafe0389f1485228ef4018b53ad65fc94a67548a238c22ea90499223', 'from': '0xb97adeeef9cb162436f98ceedf81d25e0cd4afbc', 'to': '0xb9c26242912d05773b100dd54dc035239e2eb79d', 'value': 1054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x188a545e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T04:02:17.000Z'}}, {'blockNum': '0xa19b42', 'uniqueId': '0xb2881bc599f74625d7a8653d7648a265dd444dbd32161ec9efc3e0180fb61656:log:37', 'hash': '0xb2881bc599f74625d7a8653d7648a265dd444dbd32161ec9efc3e0180fb61656', 'from': '0xb9c26242912d05773b100dd54dc035239e2eb79d', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 1054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x188a545e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T04:03:31.000Z'}}, {'blockNum': '0xa19b43', 'uniqueId': '0x37bff7dd08cc4b1e122b9542642d08d220be486edb020570293f083c540d47ae:log:29', 'hash': '0x37bff7dd08cc4b1e122b9542642d08d220be486edb020570293f083c540d47ae', 'from': '0xcf30e8ffbfb50cf340f29af334a74eee9a878b83', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 140.8040339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x034741e7be', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T04:03:37.000Z'}}, {'blockNum': '0xa19c49', 'uniqueId': '0xe9fc8a8ac9981b446e1ffb8d363087d6f76593a1af6a8f5102d4b33fa0ebe533:log:9', 'hash': '0xe9fc8a8ac9981b446e1ffb8d363087d6f76593a1af6a8f5102d4b33fa0ebe533', 'from': '0x7e0d57959c438b7ca4f697f9719c32edbac57ee1', 'to': '0x1b4808b4ece681f043c74d41c32c32a3e0b7c060', 'value': 14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x53724e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T05:05:57.000Z'}}, {'blockNum': '0xa19cad', 'uniqueId': '0x865ee03a269de534a5aec5835ea82be67cd924f0a96ce4ab87e35cc8429aa384:log:82', 'hash': '0x865ee03a269de534a5aec5835ea82be67cd924f0a96ce4ab87e35cc8429aa384', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 2504.636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a50cb3d80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T05:26:25.000Z'}}, {'blockNum': '0xa19d17', 'uniqueId': '0x637f0fb01ea2aa53726947e09beae4e57a8d1414633134945bf5f69b40cc543d:log:205', 'hash': '0x637f0fb01ea2aa53726947e09beae4e57a8d1414633134945bf5f69b40cc543d', 'from': '0x6ba29682abdf39ad6cf291e547cb59e82b0bbdc6', 'to': '0x91ed9ed1137951be5fc49fcb52639149ea528542', 'value': 33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc4b20100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T05:51:44.000Z'}}, {'blockNum': '0xa19de0', 'uniqueId': '0x9c145838a0facf085b57864b5180e831b56f5fab032777d1fa52c42764c541a3:log:149', 'hash': '0x9c145838a0facf085b57864b5180e831b56f5fab032777d1fa52c42764c541a3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x59c3106583946e7424c20598f169f6a9969db0bd', 'value': 208.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04d8d97880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T06:35:25.000Z'}}, {'blockNum': '0xa19e0d', 'uniqueId': '0xc8ce5e6a0ace8d741ff8efe7dc75a3d960ff52d7c0e3080ef457bfe6033677fb:log:94', 'hash': '0xc8ce5e6a0ace8d741ff8efe7dc75a3d960ff52d7c0e3080ef457bfe6033677fb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xab33ab33fbf77da6555d05c7d0f0874c7cb835ca', 'value': 5101.77316868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x76c8f01004', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T06:47:38.000Z'}}, {'blockNum': '0xa19e78', 'uniqueId': '0x8430d7145033be43aa155d7ff997f30f4a4a512226c78c00db29f07063fb0f80:log:52', 'hash': '0x8430d7145033be43aa155d7ff997f30f4a4a512226c78c00db29f07063fb0f80', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x1f1d77efdbbbc586174d8d9032d2b83c1ac192c6', 'value': 249.90766037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05d190d3d5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T07:14:48.000Z'}}, {'blockNum': '0xa19fb0', 'uniqueId': '0x8efdf13f08fa0b00f6bf56014742cf7e6fc4adcb3cc74c86043a1cd8f21a7ec8:log:74', 'hash': '0x8efdf13f08fa0b00f6bf56014742cf7e6fc4adcb3cc74c86043a1cd8f21a7ec8', 'from': '0xfa839459188b6eeb856765e8f091f9c4dae843f8', 'to': '0x59f6c2698e7cb4dca3236a65d95f6a51c79b0e34', 'value': 5502.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x801ec46000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T08:27:34.000Z'}}, {'blockNum': '0xa19fb8', 'uniqueId': '0xb243e1cef7be7dc8465ec07dbd9d96e86609d96ddd55c98927a6905e62724cf4:log:83', 'hash': '0xb243e1cef7be7dc8465ec07dbd9d96e86609d96ddd55c98927a6905e62724cf4', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb445ad9c7d2343acb6209a4997cdce4ad05933bc', 'value': 368.53461538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0894a33222', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T08:29:00.000Z'}}, {'blockNum': '0xa19ff5', 'uniqueId': '0xe4648b4f3445dd69d2a963696f4974c6a1821f1c23c99a6a73b0de2235c13b8b:log:59', 'hash': '0xe4648b4f3445dd69d2a963696f4974c6a1821f1c23c99a6a73b0de2235c13b8b', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 2312.791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x35d94f0060', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T08:40:40.000Z'}}, {'blockNum': '0xa19ffb', 'uniqueId': '0x4f6795376859cf0a4dd16c1c9db1dd38252572384a3961971506ca34bbd62d53:log:82', 'hash': '0x4f6795376859cf0a4dd16c1c9db1dd38252572384a3961971506ca34bbd62d53', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 1328.565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1eeedd4f20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T08:42:00.000Z'}}, {'blockNum': '0xa1a011', 'uniqueId': '0xb2d3bf56347a92daf081b96a17370cee0b98bfe7eac717f720cb4761eec19252:log:76', 'hash': '0xb2d3bf56347a92daf081b96a17370cee0b98bfe7eac717f720cb4761eec19252', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3928.795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5b79716ae0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T08:48:03.000Z'}}, {'blockNum': '0xa1a05a', 'uniqueId': '0xb395aa88f2515531e29d3e304c1245fd0e0062e5440ec8b4321636a345ad9165:log:38', 'hash': '0xb395aa88f2515531e29d3e304c1245fd0e0062e5440ec8b4321636a345ad9165', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 116.79014201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b81f9d39', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:06:57.000Z'}}, {'blockNum': '0xa1a071', 'uniqueId': '0x2e0dabf648385dea43b347881d5c915ce715f42aa063b011e374ef86985ecd1c:log:105', 'hash': '0x2e0dabf648385dea43b347881d5c915ce715f42aa063b011e374ef86985ecd1c', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x6a4583839ea1e750407bb37e33ba276b3786ab2c', 'value': 116.79014201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b81f9d39', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:12:55.000Z'}}, {'blockNum': '0xa1a0a8', 'uniqueId': '0x2805a88a4c067e6c1385ce3550375c8f80bca04877303275a36b01d7029f56f4:log:21', 'hash': '0x2805a88a4c067e6c1385ce3550375c8f80bca04877303275a36b01d7029f56f4', 'from': '0xd7a99b3d848be7ccb0ef3f97428b94556aa670bd', 'to': '0xf3874a84d9e45d8e0168d2e0d80e18719bf0f07f', 'value': 100.81065516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0258e0da2c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:25:17.000Z'}}, {'blockNum': '0xa1a0ab', 'uniqueId': '0xc7ab64fe79a41efc7e0bb1b4956c431ae9b609ad5814f5fba51d0d37a9220545:log:52', 'hash': '0xc7ab64fe79a41efc7e0bb1b4956c431ae9b609ad5814f5fba51d0d37a9220545', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 106.20211471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x027903910f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:25:49.000Z'}}, {'blockNum': '0xa1a0ac', 'uniqueId': '0x3d0983530ca36145261a6124c64d74720451d3b967a096f156caa8ec0a01871e:log:28', 'hash': '0x3d0983530ca36145261a6124c64d74720451d3b967a096f156caa8ec0a01871e', 'from': '0xf3874a84d9e45d8e0168d2e0d80e18719bf0f07f', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 100.81065516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0258e0da2c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:25:54.000Z'}}, {'blockNum': '0xa1a0b2', 'uniqueId': '0xcfa6839010cfaa70faa8a2c49e550e46a22f326b4533f5291c6ef6610f9191a8:log:88', 'hash': '0xcfa6839010cfaa70faa8a2c49e550e46a22f326b4533f5291c6ef6610f9191a8', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xd010f5b0994119425652c224b81d4cc17971c835', 'value': 106.20211471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x027903910f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:27:17.000Z'}}, {'blockNum': '0xa1a16e', 'uniqueId': '0x27341f7d18c76e20f72ff2ccbcacbd144d33dfa9d5b3b13030e23eb55234552a:log:174', 'hash': '0x27341f7d18c76e20f72ff2ccbcacbd144d33dfa9d5b3b13030e23eb55234552a', 'from': '0x9586dfb843b02de79dcffb5b4e7738eba721827a', 'to': '0xf849a4874d529166da7515e22efbf2f1a8bf116c', 'value': 0.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T10:07:22.000Z'}}, {'blockNum': '0xa1a1c7', 'uniqueId': '0x4a346cc1d441c4facd5587f9648c52e7f26767e520562962be87c761199aa82d:log:37', 'hash': '0x4a346cc1d441c4facd5587f9648c52e7f26767e520562962be87c761199aa82d', 'from': '0x9586dfb843b02de79dcffb5b4e7738eba721827a', 'to': '0xf849a4874d529166da7515e22efbf2f1a8bf116c', 'value': 7.05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2a057240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T10:27:01.000Z'}}, {'blockNum': '0xa1a1f1', 'uniqueId': '0xebd18e07d07dd491ef695a8201dfbfb9cda1a2b84b30ad4304ca886613b64ea8:log:46', 'hash': '0xebd18e07d07dd491ef695a8201dfbfb9cda1a2b84b30ad4304ca886613b64ea8', 'from': '0x59f6c2698e7cb4dca3236a65d95f6a51c79b0e34', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 5502.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x801ec46000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T10:37:33.000Z'}}, {'blockNum': '0xa1a238', 'uniqueId': '0x486f523b5253dfe210b5aa78a07dfb1693ca13b3f1536aa556e2b5694bf55725:log:104', 'hash': '0x486f523b5253dfe210b5aa78a07dfb1693ca13b3f1536aa556e2b5694bf55725', 'from': '0x1b6c1a0e20af81b922cb454c3e52408496ee7201', 'to': '0x4eebe2a7a91fe38fcd22c8fb17e605243a26fc58', 'value': 69.43564357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x019dde6245', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T10:52:49.000Z'}}, {'blockNum': '0xa1a2c8', 'uniqueId': '0xecee9d6ee332adae214b8533b3c86eb6e88d3848b2944993cd793f85aecd4c1b:log:41', 'hash': '0xecee9d6ee332adae214b8533b3c86eb6e88d3848b2944993cd793f85aecd4c1b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1355911d3327533471548423898ec3e05fdd7e2e', 'value': 1833.337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2aaf8a41a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T11:25:34.000Z'}}, {'blockNum': '0xa1a2f1', 'uniqueId': '0x80cc03f5ee335771afa2fe37de2ce8dc80ae315739332fb991702b4a980bf70c:log:92', 'hash': '0x80cc03f5ee335771afa2fe37de2ce8dc80ae315739332fb991702b4a980bf70c', 'from': '0x1355911d3327533471548423898ec3e05fdd7e2e', 'to': '0x3a6c03a03fee972766742eb7f891ff755f6335d1', 'value': 1833.337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2aaf8a41a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T11:32:37.000Z'}}, {'blockNum': '0xa1a357', 'uniqueId': '0x68c6d5f1433db0d116a5e7ea9b3a8006bb29eb9efdafea3a32d4294b0d4551fe:log:6', 'hash': '0x68c6d5f1433db0d116a5e7ea9b3a8006bb29eb9efdafea3a32d4294b0d4551fe', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0xc19a2756366d18187ea039642f09bb7515253f45', 'value': 142.31753973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03504754f5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T11:57:47.000Z'}}, {'blockNum': '0xa1a36a', 'uniqueId': '0x5882cbc9fdc87e934038a92ba862ce78cb1a2920a1a30a484e5f80e685a27d85:log:27', 'hash': '0x5882cbc9fdc87e934038a92ba862ce78cb1a2920a1a30a484e5f80e685a27d85', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 142.317539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03504754ac', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T12:02:17.000Z'}}, {'blockNum': '0xa1a3a5', 'uniqueId': '0x77ee8b3ab7059baad555211b0b2d5a783b8344fd254d3eb12c010b46801e3179:log:227', 'hash': '0x77ee8b3ab7059baad555211b0b2d5a783b8344fd254d3eb12c010b46801e3179', 'from': '0x2cd197c63040796000a6ae0b66ec65b94cea4d84', 'to': '0x4246af949ef88ebd605751fc0ffeaa2bebdcb60d', 'value': 37.27231999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xde290bff', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T12:16:27.000Z'}}, {'blockNum': '0xa1a543', 'uniqueId': '0xf32c7864872f5a17266ec044f9683433efa5890de6442382a4b544a547ca8981:log:172', 'hash': '0xf32c7864872f5a17266ec044f9683433efa5890de6442382a4b544a547ca8981', 'from': '0x4eebe2a7a91fe38fcd22c8fb17e605243a26fc58', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 69.43564357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x019dde6245', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T13:36:34.000Z'}}, {'blockNum': '0xa1a5d9', 'uniqueId': '0xc8f2e997b86d3913fbe82250ec3bf359403143e5a6d441c6e151028873c3a821:log:110', 'hash': '0xc8f2e997b86d3913fbe82250ec3bf359403143e5a6d441c6e151028873c3a821', 'from': '0xb97adeeef9cb162436f98ceedf81d25e0cd4afbc', 'to': '0x4e90d437329eea593529f84c3600cac76ccb3256', 'value': 948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1612853400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T14:05:55.000Z'}}, {'blockNum': '0xa1a5e5', 'uniqueId': '0x52c7d04c1705145b858ad2385d24aee8dbaacb2e3fd07aad060bcfd617583958:log:6', 'hash': '0x52c7d04c1705145b858ad2385d24aee8dbaacb2e3fd07aad060bcfd617583958', 'from': '0x4e90d437329eea593529f84c3600cac76ccb3256', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1612853400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T14:08:13.000Z'}}, {'blockNum': '0xa1a7ec', 'uniqueId': '0xf358f57dd362938b7d05bc7edb357539bc39cac92d82fad3cbc0c34775586f61:log:7', 'hash': '0xf358f57dd362938b7d05bc7edb357539bc39cac92d82fad3cbc0c34775586f61', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9a8b70704ab430f93272813a9fc3075af36b2de8', 'value': 3545.623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x528d8f5860', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:03:13.000Z'}}, {'blockNum': '0xa1a7f1', 'uniqueId': '0xc31c9903a68dc2706e8168c5c0408e1bcaededa00f99ccbe0c23381e56f382ab:log:127', 'hash': '0xc31c9903a68dc2706e8168c5c0408e1bcaededa00f99ccbe0c23381e56f382ab', 'from': '0x9a8b70704ab430f93272813a9fc3075af36b2de8', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 3545.623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x528d8f5860', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:04:13.000Z'}}, {'blockNum': '0xa1a81e', 'uniqueId': '0xdc7d6d878b7e1dfdc936152c912402734d24fd47b4e5ace6992ca7429806862b:log:55', 'hash': '0xdc7d6d878b7e1dfdc936152c912402734d24fd47b4e5ace6992ca7429806862b', 'from': '0x8da4a02499a4abd011a5b61af52150d99e92c068', 'to': '0x668e891ec3340569e7f1d09bb25390c34029fd74', 'value': 200.75900756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04ac9def54', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:15:01.000Z'}}, {'blockNum': '0xa1a81f', 'uniqueId': '0xd758f8d1346c9c813a7950b6f2cf5a4e2c2f45b9a6877ff49d7be094d6174e5c:log:95', 'hash': '0xd758f8d1346c9c813a7950b6f2cf5a4e2c2f45b9a6877ff49d7be094d6174e5c', 'from': '0x668e891ec3340569e7f1d09bb25390c34029fd74', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 200.75900756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04ac9def54', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:15:28.000Z'}}, {'blockNum': '0xa1a82e', 'uniqueId': '0xffb940effa905ba6f8791c4f97e4d6238af68bb44f87e996ae69d49e6625bee3:log:5', 'hash': '0xffb940effa905ba6f8791c4f97e4d6238af68bb44f87e996ae69d49e6625bee3', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x3f83fbff779590d8475e7ddf11c1af11731abbcf', 'value': 3546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x528fce9a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:19:06.000Z'}}, {'blockNum': '0xa1a877', 'uniqueId': '0xe79596be32ec0d9919c60ee316524d11d606fe9831555ef14001e4c9a6bdebe9:log:157', 'hash': '0xe79596be32ec0d9919c60ee316524d11d606fe9831555ef14001e4c9a6bdebe9', 'from': '0x3f83fbff779590d8475e7ddf11c1af11731abbcf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x528fce9a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:36:05.000Z'}}, {'blockNum': '0xa1a8c4', 'uniqueId': '0x37d6b17169589a0b44bda4f01dfa0815ea677118513e1b394fce5e8237e9b108:log:27', 'hash': '0x37d6b17169589a0b44bda4f01dfa0815ea677118513e1b394fce5e8237e9b108', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x641704311dd7e7b6ff340e2fc2a98f2002bb8e6f', 'value': 4992.198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x743bd19fc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:54:02.000Z'}}, {'blockNum': '0xa1a8eb', 'uniqueId': '0xd28d7ae9780a56c346b01f58aefe3176fca6ccb4c18e4f2035d28976b895c64e:log:101', 'hash': '0xd28d7ae9780a56c346b01f58aefe3176fca6ccb4c18e4f2035d28976b895c64e', 'from': '0xee155572635ae7d1f4e30ec3179ce65b5342cb17', 'to': '0x1ac963003b29fcdca2d5f509e46063eb88b55a27', 'value': 204447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12982714bf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T17:00:34.000Z'}}, {'blockNum': '0xa1a95a', 'uniqueId': '0x8510a4ffb0774ea094cc24c62fdf8bd73141cf49c20c9d1b82dea002a8fbf81e:log:2', 'hash': '0x8510a4ffb0774ea094cc24c62fdf8bd73141cf49c20c9d1b82dea002a8fbf81e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9db81f3235c5e3823547178165a24f1d81fa5cb3', 'value': 797.374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1290b82ac0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T17:24:20.000Z'}}, {'blockNum': '0xa1a974', 'uniqueId': '0xbbf8223f803bf8a9af948f11a6dbcddd150162359613a0bf11fe2b4488a19388:log:273', 'hash': '0xbbf8223f803bf8a9af948f11a6dbcddd150162359613a0bf11fe2b4488a19388', 'from': '0x1ac963003b29fcdca2d5f509e46063eb88b55a27', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 204447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12982714bf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T17:30:54.000Z'}}, {'blockNum': '0xa1a9f0', 'uniqueId': '0xab8de5f3f2dc0b8abd0ab993587a814945a5fb881df4b3c0d2bcf1f151a43645:log:119', 'hash': '0xab8de5f3f2dc0b8abd0ab993587a814945a5fb881df4b3c0d2bcf1f151a43645', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x268737253715badc5016befa6113ecc68370b780', 'value': 308.451, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x072e82dfe0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:00:23.000Z'}}, {'blockNum': '0xa1a9f4', 'uniqueId': '0x2d6c032630f5edaef16095f4c410c42e4b44009dbefd0a434e9a27b5b05636e7:log:101', 'hash': '0x2d6c032630f5edaef16095f4c410c42e4b44009dbefd0a434e9a27b5b05636e7', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f0a75c600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:00:56.000Z'}}, {'blockNum': '0xa1a9f8', 'uniqueId': '0x01a9fdf504af5f2a79d1b059870339cfd183e04ca83d8ac3249374ed5c746a2c:log:123', 'hash': '0x01a9fdf504af5f2a79d1b059870339cfd183e04ca83d8ac3249374ed5c746a2c', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1042.60071783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1846627167', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:01:27.000Z'}}, {'blockNum': '0xa1a9fa', 'uniqueId': '0xee6f3be3f7f97429287219201b4486e72f68562c82181fcd2ef16b5fb0f9680d:log:8', 'hash': '0xee6f3be3f7f97429287219201b4486e72f68562c82181fcd2ef16b5fb0f9680d', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 1831.382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2aa3e329c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:02:10.000Z'}}, {'blockNum': '0xa1a9fb', 'uniqueId': '0x457c42bca555ff764e6e4fc3750791775c509e8a29a85c628ec637f74967155d:log:42', 'hash': '0x457c42bca555ff764e6e4fc3750791775c509e8a29a85c628ec637f74967155d', 'from': '0xfc970f9ecf6e46bf7b1529cf57c35d038974b90f', 'to': '0xa45303a33b168550fc830fc3fef72a24e589d7a8', 'value': 15.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5a4d10c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:02:26.000Z'}}, {'blockNum': '0xa1aa01', 'uniqueId': '0x16df7e25844cabe32e4a02a85b503dee3f227d5b5c75241f02bee845bd351258:log:82', 'hash': '0x16df7e25844cabe32e4a02a85b503dee3f227d5b5c75241f02bee845bd351258', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 558.40524141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0d005ac76d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:03:56.000Z'}}, {'blockNum': '0xa1aa08', 'uniqueId': '0x51cc8a17c9d5bc30bb38e436d44d1fefb444c3e70d3ccc8835a1096a9ae4e765:log:15', 'hash': '0x51cc8a17c9d5bc30bb38e436d44d1fefb444c3e70d3ccc8835a1096a9ae4e765', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x40e5ebf13a622db7f0f3a00737906c39decaab04', 'value': 7569.883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb04004cae0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:05:48.000Z'}}, {'blockNum': '0xa1aa08', 'uniqueId': '0x72f9660a01661d724cd154dd7cf271bb666d5de4d0c473f1c6056894ea931916:log:16', 'hash': '0x72f9660a01661d724cd154dd7cf271bb666d5de4d0c473f1c6056894ea931916', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 2529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3ae203c100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:05:48.000Z'}}, {'blockNum': '0xa1aa16', 'uniqueId': '0x7799d24ab671b0bf6c96a3b99a592f2586f8ff337146c4c343f30661f0c57ff5:log:12', 'hash': '0x7799d24ab671b0bf6c96a3b99a592f2586f8ff337146c4c343f30661f0c57ff5', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 1787.48203421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x299e39219d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:09:35.000Z'}}, {'blockNum': '0xa1aa28', 'uniqueId': '0x01c979045c770eccb6f59627bc468d9be98d680acec107f657c1e31f08e7cace:log:2', 'hash': '0x01c979045c770eccb6f59627bc468d9be98d680acec107f657c1e31f08e7cace', 'from': '0xfc970f9ecf6e46bf7b1529cf57c35d038974b90f', 'to': '0xa45303a33b168550fc830fc3fef72a24e589d7a8', 'value': 42.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xfb3bcbc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:13:41.000Z'}}, {'blockNum': '0xa1aa3a', 'uniqueId': '0x267ebb576f7d40e5c28675bf7e8b61cb2abca4ab71ed5fd42a12566f55372561:log:6', 'hash': '0x267ebb576f7d40e5c28675bf7e8b61cb2abca4ab71ed5fd42a12566f55372561', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 16559.999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018191492960', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:17:55.000Z'}}, {'blockNum': '0xa1aa3b', 'uniqueId': '0x35829d3bb1efdd81bfe0f8d04e47e58992e1ad474abbb156623f54fd0264c765:log:87', 'hash': '0x35829d3bb1efdd81bfe0f8d04e47e58992e1ad474abbb156623f54fd0264c765', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 616.506789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e5aaab474', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:17:59.000Z'}}, {'blockNum': '0xa1aa6f', 'uniqueId': '0x7948853b3d0a86ce0f1256831bc871abba4c9d089599cd2a807dab46a94bbf4b:log:183', 'hash': '0x7948853b3d0a86ce0f1256831bc871abba4c9d089599cd2a807dab46a94bbf4b', 'from': '0x31ab026b0d7cbe541bfe92f418636a7d69357aa7', 'to': '0xee458347b8bcb1335bd1cfc950a52f404c45b354', 'value': 203.717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04be3f7920', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:27:53.000Z'}}, {'blockNum': '0xa1aa76', 'uniqueId': '0xe40f21a3c2bcc2c8a18d1ae6adae583cc1a7fd49c8763ca121ca973dbc8466a5:log:68', 'hash': '0xe40f21a3c2bcc2c8a18d1ae6adae583cc1a7fd49c8763ca121ca973dbc8466a5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xeb780701cf8f4878b3bdcaf190d95cd5a1aaafd6', 'value': 344.97699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0808391cb8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:29:35.000Z'}}, {'blockNum': '0xa1aa77', 'uniqueId': '0x923bc4b7dff2f3ad26a49371bc1a503c358760ba93e0418b3be4ab3ee475dc15:log:174', 'hash': '0x923bc4b7dff2f3ad26a49371bc1a503c358760ba93e0418b3be4ab3ee475dc15', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 17384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0194c0b6e800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:30:14.000Z'}}, {'blockNum': '0xa1aa7e', 'uniqueId': '0xb1bf89c4506fe4a2eabca94cb2b0ae4129d05f0a504ce2981037205b3177cd90:log:15', 'hash': '0xb1bf89c4506fe4a2eabca94cb2b0ae4129d05f0a504ce2981037205b3177cd90', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 37607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x036b9b300700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:31:49.000Z'}}, {'blockNum': '0xa1aa7f', 'uniqueId': '0xe2bf42d3a9c0e30cb5aa88c8faa1065c447b9c65f7874b8f367992c9908e8a05:log:210', 'hash': '0xe2bf42d3a9c0e30cb5aa88c8faa1065c447b9c65f7874b8f367992c9908e8a05', 'from': '0x40e5ebf13a622db7f0f3a00737906c39decaab04', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7569.883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb04004cae0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:32:11.000Z'}}, {'blockNum': '0xa1aaa0', 'uniqueId': '0xaabb8d67c7f0021ab933aaa810ae160265820391fe6b26376e64f057cdad6cee:log:88', 'hash': '0xaabb8d67c7f0021ab933aaa810ae160265820391fe6b26376e64f057cdad6cee', 'from': '0x06450acadae3710f5d6d49993af84cda952ec72e', 'to': '0x399427f9bfe909a2602db7274e936bfeedb03c40', 'value': 999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1742810700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:40:35.000Z'}}, {'blockNum': '0xa1aaa4', 'uniqueId': '0x2273a872e2f755da3b619b66d8f883fa74453ae9193ca29be784b60c8fb51884:log:153', 'hash': '0x2273a872e2f755da3b619b66d8f883fa74453ae9193ca29be784b60c8fb51884', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0x3e5f35f16b4c7e19e69a070fda32ecd405d495bf', 'value': 1398.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x20903efac0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:41:47.000Z'}}, {'blockNum': '0xa1aaa5', 'uniqueId': '0x4bd8921cc8eb780905cf6fbfa61a376c8b512dd888c1310b3ce3f469aafa7765:log:64', 'hash': '0x4bd8921cc8eb780905cf6fbfa61a376c8b512dd888c1310b3ce3f469aafa7765', 'from': '0x1446378b0e6de34eab5f7cb0203cef1365acb9ba', 'to': '0x962da0bab76747ba9927a08165e13f1e16da9fd6', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:41:58.000Z'}}, {'blockNum': '0xa1aaa7', 'uniqueId': '0x409f0d503113ef66f0a02ed0b3efd2a03be710b27da0a39a05affbd8f38f5ca0:log:20', 'hash': '0x409f0d503113ef66f0a02ed0b3efd2a03be710b27da0a39a05affbd8f38f5ca0', 'from': '0xbab72d80f70061fa92972d434bbb0aabb6a957de', 'to': '0x5b444b835243d4a2dc7793e3f78f93ae7004646c', 'value': 843.2508205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x13a22aa3c2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:42:46.000Z'}}, {'blockNum': '0xa1aaa8', 'uniqueId': '0x15b66ddfd795275b375e4f605221087f6b4add7a3b66ee8520030ef33fc3c589:log:36', 'hash': '0x15b66ddfd795275b375e4f605221087f6b4add7a3b66ee8520030ef33fc3c589', 'from': '0x5b444b835243d4a2dc7793e3f78f93ae7004646c', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 843.2508205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x13a22aa3c2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:43:00.000Z'}}, {'blockNum': '0xa1aab4', 'uniqueId': '0x9c037230c4c980c162431bb71e717b4ad3e2e1de9f97dbdf27e69e3a4c66bdc2:log:16', 'hash': '0x9c037230c4c980c162431bb71e717b4ad3e2e1de9f97dbdf27e69e3a4c66bdc2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5321bd1db60c1f705c2e5bb5d667df0b1ee90ff3', 'value': 667.504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f8aa24600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:45:40.000Z'}}, {'blockNum': '0xa1aad0', 'uniqueId': '0xb455f9c4e2def29e86b178804d15673bd234461275547713d00f30dcc7e3fe16:log:122', 'hash': '0xb455f9c4e2def29e86b178804d15673bd234461275547713d00f30dcc7e3fe16', 'from': '0x3b63cc5790c8b06787c55aa2aaaa7a0af14ed7ac', 'to': '0x71025d59ab9def0146e8b4861ba594cad7d4ee1e', 'value': 1000.084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1748f71480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:53:23.000Z'}}, {'blockNum': '0xa1aad3', 'uniqueId': '0x1a0d8dc1cbfbb936ffd1b442a012639b855d5401d69e57ab4b3f1357e38f4193:log:153', 'hash': '0x1a0d8dc1cbfbb936ffd1b442a012639b855d5401d69e57ab4b3f1357e38f4193', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xe992fe5238f6f57686c22a0628db5c793414aa68', 'value': 999.27334816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1744221fa0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:54:32.000Z'}}, {'blockNum': '0xa1aad7', 'uniqueId': '0x7dc6f7d4367375dc3738eac24d814e4b3516ab5e7e0f10e88b63a95e25ace9f8:log:219', 'hash': '0x7dc6f7d4367375dc3738eac24d814e4b3516ab5e7e0f10e88b63a95e25ace9f8', 'from': '0xe992fe5238f6f57686c22a0628db5c793414aa68', 'to': '0x1cf1420df55d748f4ce161ee795f2c837dcf5819', 'value': 999.27334816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1744221fa0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:55:08.000Z'}}, {'blockNum': '0xa1aae8', 'uniqueId': '0x1b71017bb127d0f06737d875427d3b1dfc75a3c82279ddaa9966c0b7e67170a2:log:163', 'hash': '0x1b71017bb127d0f06737d875427d3b1dfc75a3c82279ddaa9966c0b7e67170a2', 'from': '0x453cf3463ffae86f22d2cdfc2c5cf2fb858885f7', 'to': '0x63c29c12b5561a695f56eb2b22c24c7de6a28cd6', 'value': 990.7171763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17112270fe', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:59:00.000Z'}}, {'blockNum': '0xa1aaf5', 'uniqueId': '0x45cad63c6bce1496a13da52cfefd7954707e73201f1d1c04ca69ba97770a6486:log:1', 'hash': '0x45cad63c6bce1496a13da52cfefd7954707e73201f1d1c04ca69ba97770a6486', 'from': '0x63c29c12b5561a695f56eb2b22c24c7de6a28cd6', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 990.7171763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17112270fe', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:00:37.000Z'}}, {'blockNum': '0xa1aaf5', 'uniqueId': '0x69d2945cc81a5d21883103b839fb0f042b29abe424295618fd7b8e00c9aa898e:log:46', 'hash': '0x69d2945cc81a5d21883103b839fb0f042b29abe424295618fd7b8e00c9aa898e', 'from': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2506.68284172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a5cfe790c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:00:37.000Z'}}, {'blockNum': '0xa1aaf7', 'uniqueId': '0xb40693d6ee132a01c7a6db079e396113c0669dd6fdfa51a5778d629225ab99f1:log:101', 'hash': '0xb40693d6ee132a01c7a6db079e396113c0669dd6fdfa51a5778d629225ab99f1', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x57f9cb5d7f7813c3f96c0757147154850059b733', 'value': 189.7213706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x046ad3d664', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:01:05.000Z'}}, {'blockNum': '0xa1aaf7', 'uniqueId': '0x5b8524d0821991249ba17c99bbe3984ab15b49558b95575e131b7b01ddcca534:log:218', 'hash': '0x5b8524d0821991249ba17c99bbe3984ab15b49558b95575e131b7b01ddcca534', 'from': '0x3d83b7d658457b4e7cd59e116c42fc97b79d5a0e', 'to': '0x9c833b63a894529df923314c2ecb1e884f67f685', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:01:05.000Z'}}, {'blockNum': '0xa1aaf8', 'uniqueId': '0x4293608abba6e2198f22d40794b974c71e2dba06c2bb631adb5c72422399b4f9:log:44', 'hash': '0x4293608abba6e2198f22d40794b974c71e2dba06c2bb631adb5c72422399b4f9', 'from': '0x8e9269041d059d1651c99ecfb5c49dd1a62ba7d9', 'to': '0xef677ac98187c38a1c5295254d504c2509a17f06', 'value': 2511.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a7b7ea300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:01:38.000Z'}}, {'blockNum': '0xa1ab05', 'uniqueId': '0x398ad8982236c2c4c9d043b63bb3ce7ab443b8b2f3ac49e3605fcf8718e29ff5:log:33', 'hash': '0x398ad8982236c2c4c9d043b63bb3ce7ab443b8b2f3ac49e3605fcf8718e29ff5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x147523af2347f6e60b18ed985243bcec6e57d6fa', 'value': 2012.73480912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2edcd596d0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:04:23.000Z'}}, {'blockNum': '0xa1ab13', 'uniqueId': '0xacf1ea97a558efe2c2af05ff8a58e63104d1a3d37ef98e6547841a404ec74a9b:log:49', 'hash': '0xacf1ea97a558efe2c2af05ff8a58e63104d1a3d37ef98e6547841a404ec74a9b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbf097fe8ae6d6b2af43a065c04d65505066d6e26', 'value': 759.41561207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11ae784377', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:08:05.000Z'}}, {'blockNum': '0xa1ab1d', 'uniqueId': '0xaf9679cd66fd48eb0299dc2ec9413ee6f6100fa1fb16cc6daae664f68a467be7:log:40', 'hash': '0xaf9679cd66fd48eb0299dc2ec9413ee6f6100fa1fb16cc6daae664f68a467be7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 1112.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x19e51c0080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:10:59.000Z'}}, {'blockNum': '0xa1ab24', 'uniqueId': '0x711dd23b7e1343baa58a6b574436b9fd93852e5127ef4d7d46c40704a90a53e7:log:18', 'hash': '0x711dd23b7e1343baa58a6b574436b9fd93852e5127ef4d7d46c40704a90a53e7', 'from': '0x8e9269041d059d1651c99ecfb5c49dd1a62ba7d9', 'to': '0x415ad5489d25d61a7fad58406036951f6d929991', 'value': 93.58571818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x022dd0792a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:11:54.000Z'}}, {'blockNum': '0xa1ab27', 'uniqueId': '0x8063c721ff98cb9647a92eae71b52de155980e201f364d3097c48d9bbaed8e3e:log:68', 'hash': '0x8063c721ff98cb9647a92eae71b52de155980e201f364d3097c48d9bbaed8e3e', 'from': '0x962da0bab76747ba9927a08165e13f1e16da9fd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:12:07.000Z'}}, {'blockNum': '0xa1ab29', 'uniqueId': '0xed77e7852b81c7ec6363563004010b9a62c4f80d4debd05a457e4e71ed0efa93:log:62', 'hash': '0xed77e7852b81c7ec6363563004010b9a62c4f80d4debd05a457e4e71ed0efa93', 'from': '0x415ad5489d25d61a7fad58406036951f6d929991', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 93.58571818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x022dd0792a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:12:17.000Z'}}, {'blockNum': '0xa1ab2c', 'uniqueId': '0x7776eee081179e8179d1fc48fce623b93d7aebe83c295b9df6942f3e5e3f3308:log:10', 'hash': '0x7776eee081179e8179d1fc48fce623b93d7aebe83c295b9df6942f3e5e3f3308', 'from': '0xbf097fe8ae6d6b2af43a065c04d65505066d6e26', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 759.41561206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11ae784376', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:13:14.000Z'}}, {'blockNum': '0xa1ab2c', 'uniqueId': '0xd2fd586b44b2f3dd367d1d6a6cf8480db59383b1d8d0468d0bcf30db625d9b1f:log:17', 'hash': '0xd2fd586b44b2f3dd367d1d6a6cf8480db59383b1d8d0468d0bcf30db625d9b1f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x15a5e61bbc3aa98c9d3bf7932855bfcec74bd6bb', 'value': 685.63676202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ff6b6ac2a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:13:14.000Z'}}, {'blockNum': '0xa1ab40', 'uniqueId': '0xae11e1f95d2ab2c463f5a1091bd193dd129b005f792b4bef00f097fa781f9ec7:log:35', 'hash': '0xae11e1f95d2ab2c463f5a1091bd193dd129b005f792b4bef00f097fa781f9ec7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'value': 16552.17993658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018162ae37ba', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:17:10.000Z'}}, {'blockNum': '0xa1ab5d', 'uniqueId': '0xfbe3598c1d32d6d3da78fc4da38318ac8581e2c121f954ab4e08b984980d1c60:log:17', 'hash': '0xfbe3598c1d32d6d3da78fc4da38318ac8581e2c121f954ab4e08b984980d1c60', 'from': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 16552.17993658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018162ae37ba', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:24:48.000Z'}}, {'blockNum': '0xa1ab93', 'uniqueId': '0x868bdd448fdad9ad069bf8f793afc5f3c231b2a9cbe503c180b73f744713612b:log:47', 'hash': '0x868bdd448fdad9ad069bf8f793afc5f3c231b2a9cbe503c180b73f744713612b', 'from': '0x8222c672525c00b41bba09cf4dd274e3cc1a3d3d', 'to': '0xc00eede43acce3bf33316e3b16c1887fc4cd2249', 'value': 250.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05d6a56500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:35:43.000Z'}}, {'blockNum': '0xa1aba4', 'uniqueId': '0xee3fa180075d429ad20ee2890d79fc6a602be2eef4263ec706f3919257a2b923:log:143', 'hash': '0xee3fa180075d429ad20ee2890d79fc6a602be2eef4263ec706f3919257a2b923', 'from': '0x9c833b63a894529df923314c2ecb1e884f67f685', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:40:22.000Z'}}, {'blockNum': '0xa1abab', 'uniqueId': '0x64197711b2326bb25133a95fab9591246b4569b9bef13be4fa311a1d24a027f9:log:67', 'hash': '0x64197711b2326bb25133a95fab9591246b4569b9bef13be4fa311a1d24a027f9', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 1108.99276747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x19d21cabcb', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:42:22.000Z'}}, {'blockNum': '0xa1abb7', 'uniqueId': '0xa6a77e2b281bacbdecc664e1156b1b188b4ce7960da9fb5d636d4603f59de07d:log:26', 'hash': '0xa6a77e2b281bacbdecc664e1156b1b188b4ce7960da9fb5d636d4603f59de07d', 'from': '0x15a5e61bbc3aa98c9d3bf7932855bfcec74bd6bb', 'to': '0x20c8d3e224375d2061a9969e790e8fad4fa32af1', 'value': 685.63676202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ff6b6ac2a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:45:34.000Z'}}, {'blockNum': '0xa1abd2', 'uniqueId': '0xc6bf715dbb485490b088dccad66335bd18937b85cea2c599543dfddd545e4dd6:log:44', 'hash': '0xc6bf715dbb485490b088dccad66335bd18937b85cea2c599543dfddd545e4dd6', 'from': '0xbeaa2b0d51398ef7191253710b4c80db8c4236c2', 'to': '0x28581879cad8c188f7687fadc1d35c10d9146e21', 'value': 170.27313444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03f6e82f24', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:50:00.000Z'}}, {'blockNum': '0xa1abe1', 'uniqueId': '0xc4be7f5ac018aa3da8a9891f9ead26ea8725eb8b74a787fe148eb1f90dab14c9:log:124', 'hash': '0xc4be7f5ac018aa3da8a9891f9ead26ea8725eb8b74a787fe148eb1f90dab14c9', 'from': '0x28581879cad8c188f7687fadc1d35c10d9146e21', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 170.27313444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03f6e82f24', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:52:49.000Z'}}, {'blockNum': '0xa1abed', 'uniqueId': '0xf13442df7876272bb35e24331bd2da3732f0a43e86ab9a0c55dd57d903656d39:log:13', 'hash': '0xf13442df7876272bb35e24331bd2da3732f0a43e86ab9a0c55dd57d903656d39', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9b37ff7ea63b8f58dc345c8bd9dd8cb20edb4f01', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:55:36.000Z'}}, {'blockNum': '0xa1ac00', 'uniqueId': '0xdbe8de02a8ca474fb4a1c8d6b3884c1092cacec2c14f12729eae8689ff37197b:log:72', 'hash': '0xdbe8de02a8ca474fb4a1c8d6b3884c1092cacec2c14f12729eae8689ff37197b', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 2064.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x300e755240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:00:31.000Z'}}, {'blockNum': '0xa1ac05', 'uniqueId': '0xc6586f21365eef81be1d98391c74b139e1333d0cfbb8bedad6be36ded3143b9e:log:33', 'hash': '0xc6586f21365eef81be1d98391c74b139e1333d0cfbb8bedad6be36ded3143b9e', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 16559.999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018191492960', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:03:19.000Z'}}, {'blockNum': '0xa1ac05', 'uniqueId': '0x2359b90df14b0096ceee134ccf16ea4701d1c7d1bcc1fbea92ea93ad18729e01:log:92', 'hash': '0x2359b90df14b0096ceee134ccf16ea4701d1c7d1bcc1fbea92ea93ad18729e01', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 458.22961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0aab42e568', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:03:19.000Z'}}, {'blockNum': '0xa1ac2d', 'uniqueId': '0x3779524b9bdd761a48e43ea8d3469fb2a74223dbe28545ff8e3fe4a4388ec602:log:69', 'hash': '0x3779524b9bdd761a48e43ea8d3469fb2a74223dbe28545ff8e3fe4a4388ec602', 'from': '0x0c86b0b5e07259f8ff70f03cb39c758ee03f0645', 'to': '0x87eb0d4a2e07e0685a8eb5ccd3610fc10d32c527', 'value': 9.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3af2f140', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:13:52.000Z'}}, {'blockNum': '0xa1ac3a', 'uniqueId': '0xfd3ead419a2c255ac916d486a3d736790842246b3e8373c4d60dafdbce3d31a9:log:172', 'hash': '0xfd3ead419a2c255ac916d486a3d736790842246b3e8373c4d60dafdbce3d31a9', 'from': '0x5d51295e28773c997d0472c6f8273d22c5e84c82', 'to': '0x146bc877c1b80ee73d8c5a06e982ac26762b1c00', 'value': 150.8584643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03832fbf9e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:16:40.000Z'}}, {'blockNum': '0xa1ac41', 'uniqueId': '0xd525d35c634cb92a7dd7e27859b21bca647505cc47355fe72797eceed9b571e5:log:0', 'hash': '0xd525d35c634cb92a7dd7e27859b21bca647505cc47355fe72797eceed9b571e5', 'from': '0x146bc877c1b80ee73d8c5a06e982ac26762b1c00', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 150.8584643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03832fbf9e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:17:48.000Z'}}, {'blockNum': '0xa1ac56', 'uniqueId': '0x3e61f04b8c31e5da816e6c7b54513bd45024391d00f3660b2a6cba5debedee94:log:119', 'hash': '0x3e61f04b8c31e5da816e6c7b54513bd45024391d00f3660b2a6cba5debedee94', 'from': '0x175e485af54c94ae8369528eec5e460cee661aa1', 'to': '0x136147be70d81e41b7c0fa59bc0e38d7cb0b1a1d', 'value': 1271.29584701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d9983843d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:21:33.000Z'}}, {'blockNum': '0xa1ac62', 'uniqueId': '0x5a200083f030cb35dbf83b79faa92030283e74d216cd303ad5f25afb162df712:log:99', 'hash': '0x5a200083f030cb35dbf83b79faa92030283e74d216cd303ad5f25afb162df712', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 826.016786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x133b719708', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:23:42.000Z'}}, {'blockNum': '0xa1ac6f', 'uniqueId': '0xb2b4de64e958b7b2d1eeeb0f496f99eccd7b5aa67ff99e5b32dffa5778c2e4fa:log:191', 'hash': '0xb2b4de64e958b7b2d1eeeb0f496f99eccd7b5aa67ff99e5b32dffa5778c2e4fa', 'from': '0x8cb7c49f98ae135fd403983ef791e41850d05b0e', 'to': '0x1c1f255543b2107b2d124a6ee12c77f86f2a9a85', 'value': 213.99692437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04fb856495', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:27:02.000Z'}}, {'blockNum': '0xa1ac70', 'uniqueId': '0x2a6c7a4fa422617d0bcf17f8c5063d8bcafa927d54502b8964ab1219b036467b:log:38', 'hash': '0x2a6c7a4fa422617d0bcf17f8c5063d8bcafa927d54502b8964ab1219b036467b', 'from': '0x1c1f255543b2107b2d124a6ee12c77f86f2a9a85', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 213.99692437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04fb856495', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:28:11.000Z'}}, {'blockNum': '0xa1ac70', 'uniqueId': '0x274ba6701eaac258652352dc7cad25e016b9d696ae709c1470f9f87fae189e21:log:48', 'hash': '0x274ba6701eaac258652352dc7cad25e016b9d696ae709c1470f9f87fae189e21', 'from': '0xea93536da264470ef8f8a66c055d9ac0508e7af6', 'to': '0x1b7a57b4784412a7bbb9b42f356cd86b48c43ea8', 'value': 615.77341991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e564bac27', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:28:11.000Z'}}, {'blockNum': '0xa1ac72', 'uniqueId': '0x348c63686131cb8b759d8eb80171812cc2da9a8b1319049bc703ffa75058288e:log:138', 'hash': '0x348c63686131cb8b759d8eb80171812cc2da9a8b1319049bc703ffa75058288e', 'from': '0xea93536da264470ef8f8a66c055d9ac0508e7af6', 'to': '0xac8054e60353cc79cbc87d602abcb7ba80a780a7', 'value': 2083.13107896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x30806dc5b8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:30:08.000Z'}}, {'blockNum': '0xa1ac76', 'uniqueId': '0x90a86d0fba5e03c1e932cf10c88e89095b35005b80ccb8ce589eb58f88a3e6d3:log:3', 'hash': '0x90a86d0fba5e03c1e932cf10c88e89095b35005b80ccb8ce589eb58f88a3e6d3', 'from': '0xea93536da264470ef8f8a66c055d9ac0508e7af6', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 2083.13107896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x30806dc5b8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:31:05.000Z'}}, {'blockNum': '0xa1ac79', 'uniqueId': '0x61011111efb9e3c7df68d891aeecae393436f885862217059abf22cd4b546faa:log:223', 'hash': '0x61011111efb9e3c7df68d891aeecae393436f885862217059abf22cd4b546faa', 'from': '0xac8054e60353cc79cbc87d602abcb7ba80a780a7', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2083.13107896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x30806dc5b8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:31:15.000Z'}}, {'blockNum': '0xa1ac8b', 'uniqueId': '0x5208b0bbe023497db0035c659f2fe3960c86cdf2acae4541a225c5a667caf8a8:log:128', 'hash': '0x5208b0bbe023497db0035c659f2fe3960c86cdf2acae4541a225c5a667caf8a8', 'from': '0xafe9b0061fd857b05425e98d89672acf60461d63', 'to': '0x8951d793d9866c5f100998da96dfaba2926ee492', 'value': 639.76468014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ee54b6e2e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:34:05.000Z'}}, {'blockNum': '0xa1ac91', 'uniqueId': '0x7410edb552f76858c7d3b23d68c75804e1a894d380a27225589120a523b810ee:log:259', 'hash': '0x7410edb552f76858c7d3b23d68c75804e1a894d380a27225589120a523b810ee', 'from': '0x8951d793d9866c5f100998da96dfaba2926ee492', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 639.76468014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ee54b6e2e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:35:34.000Z'}}, {'blockNum': '0xa1acb4', 'uniqueId': '0xcf51e9f8c35fea27f5f3e05f570b7a7471ed7211832049b24cc08339605d37b2:log:64', 'hash': '0xcf51e9f8c35fea27f5f3e05f570b7a7471ed7211832049b24cc08339605d37b2', 'from': '0x1583963e9060e93fe9076068e13c9d57a36a3a08', 'to': '0xcf0827f3ecd7855eb0cef14b17f1a5332f7dff6e', 'value': 198.65261596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a00fd61c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:42:18.000Z'}}, {'blockNum': '0xa1acb8', 'uniqueId': '0xf045cd66303f239cb8300cc2bf2f390ea4a3ada8fd3ad2e92ed838aa75f3699c:log:68', 'hash': '0xf045cd66303f239cb8300cc2bf2f390ea4a3ada8fd3ad2e92ed838aa75f3699c', 'from': '0xcf0827f3ecd7855eb0cef14b17f1a5332f7dff6e', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 198.65261596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a00fd61c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:43:35.000Z'}}, {'blockNum': '0xa1ad07', 'uniqueId': '0xac80a0c1c23d00d7b1b50717da37b225b0b2b1a8f966f6a2dcc92c4c7324a0da:log:149', 'hash': '0xac80a0c1c23d00d7b1b50717da37b225b0b2b1a8f966f6a2dcc92c4c7324a0da', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3564.07509263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x52fb8b010f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:00:44.000Z'}}, {'blockNum': '0xa1ad0f', 'uniqueId': '0xb84fb8c03c1269d015e1b1baede332b22e775bddbed8f5334d7e41c756aabf21:log:35', 'hash': '0xb84fb8c03c1269d015e1b1baede332b22e775bddbed8f5334d7e41c756aabf21', 'from': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2083.13107896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x30806dc5b8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:02:40.000Z'}}, {'blockNum': '0xa1ad26', 'uniqueId': '0x6dd1f2dfb556dd92fd639abe1bbfe9ae403c7e1033b5c37de33c7efe44978b03:log:8', 'hash': '0x6dd1f2dfb556dd92fd639abe1bbfe9ae403c7e1033b5c37de33c7efe44978b03', 'from': '0x7e0d57959c438b7ca4f697f9719c32edbac57ee1', 'to': '0x357e29eac34fd2893b5df6c8cde3272fa7022d42', 'value': 6734.4223219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9ccc48f77e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:06:47.000Z'}}, {'blockNum': '0xa1ad2c', 'uniqueId': '0x5ca1cfd2f79bb8fe4121cc9129bba98dac3fa568c235431b6df1126f9454e1f9:log:28', 'hash': '0x5ca1cfd2f79bb8fe4121cc9129bba98dac3fa568c235431b6df1126f9454e1f9', 'from': '0x5321bd1db60c1f705c2e5bb5d667df0b1ee90ff3', 'to': '0xa89a1278ac85367f38bdf6746658ce2b9875526e', 'value': 667.504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f8aa24600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:07:30.000Z'}}, {'blockNum': '0xa1ad30', 'uniqueId': '0xe9c1f1f6cc33112e677720b75770695a6c89cec5aceea4f2d5d5ba0dd15b8fd1:log:15', 'hash': '0xe9c1f1f6cc33112e677720b75770695a6c89cec5aceea4f2d5d5ba0dd15b8fd1', 'from': '0x80b5b304c0eac3041b4507bb1c879d8e5745dcac', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 1664.24094282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x26bfa6264a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:09:23.000Z'}}, {'blockNum': '0xa1ad43', 'uniqueId': '0x835717ab14db11c636a1931f32c7306fba14d7297b17df15f5971f4e596ab991:log:52', 'hash': '0x835717ab14db11c636a1931f32c7306fba14d7297b17df15f5971f4e596ab991', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 1092.261049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x196e621844', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:14:14.000Z'}}, {'blockNum': '0xa1ad48', 'uniqueId': '0xca553f3099c7b796923597e03ddf2be59d9ae59b827c4c8976d4b67fd8cf51a3:log:56', 'hash': '0xca553f3099c7b796923597e03ddf2be59d9ae59b827c4c8976d4b67fd8cf51a3', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 1927.812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2ce2a7aa80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:15:22.000Z'}}, {'blockNum': '0xa1ad54', 'uniqueId': '0xf2d92219ae0cb8c67ad168684857acee59a699ba2c083fccb10afd6a32317d58:log:17', 'hash': '0xf2d92219ae0cb8c67ad168684857acee59a699ba2c083fccb10afd6a32317d58', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 1477.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2265fd7f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:18:53.000Z'}}, {'blockNum': '0xa1ad64', 'uniqueId': '0xfaf1acbb3e9130678a97c7ac95b4c1add0b2b4259eb20d777edeadcd91b64908:log:66', 'hash': '0xfaf1acbb3e9130678a97c7ac95b4c1add0b2b4259eb20d777edeadcd91b64908', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xfe22dc8a10cd4055239d4c314df55278142a5471', 'value': 1262.207289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d63577a44', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:21:14.000Z'}}, {'blockNum': '0xa1ad6e', 'uniqueId': '0xcfa986da1224978ad87387e01d821530930791fa5d5f20be0dd8ea883ed566a5:log:5', 'hash': '0xcfa986da1224978ad87387e01d821530930791fa5d5f20be0dd8ea883ed566a5', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1477.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2265fd7f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:23:34.000Z'}}, {'blockNum': '0xa1ad8f', 'uniqueId': '0xbe12e0699809272b8f2d27655b2df7e5d982da1a9ff9e17a39952917437a7bbe:log:166', 'hash': '0xbe12e0699809272b8f2d27655b2df7e5d982da1a9ff9e17a39952917437a7bbe', 'from': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4801.22798668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6fc98c824c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:30:52.000Z'}}, {'blockNum': '0xa1adaa', 'uniqueId': '0xaebb8bba471f8588265cd973b7776a55b4998aae1aa4016474f6115331a91189:log:35', 'hash': '0xaebb8bba471f8588265cd973b7776a55b4998aae1aa4016474f6115331a91189', 'from': '0xeb780701cf8f4878b3bdcaf190d95cd5a1aaafd6', 'to': '0x1e5eb041caccb99a9891cd27d5cb39bea1cdf027', 'value': 220.63488862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0523161f5e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:34:03.000Z'}}, {'blockNum': '0xa1adb6', 'uniqueId': '0xdd93777d8c13275e67183590cc6afb72d8c8543c6207cd7cc0c1f9512e3aa3cb:log:36', 'hash': '0xdd93777d8c13275e67183590cc6afb72d8c8543c6207cd7cc0c1f9512e3aa3cb', 'from': '0xb27334f24f94ff7bcedfd90e6bd14ba95b71f4e4', 'to': '0xf1b7e886ce565dabf18aebd90e0706e03605617f', 'value': 9437.969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xdbbeadd0a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:37:47.000Z'}}, {'blockNum': '0xa1add6', 'uniqueId': '0xcb44533eb4f4f84318deda0c4f0c392c4682f14ea541b8cfbfff8f21dce9b5df:log:50', 'hash': '0xcb44533eb4f4f84318deda0c4f0c392c4682f14ea541b8cfbfff8f21dce9b5df', 'from': '0x1203de80e5eef81899a99ec3fe9e7e5630ba9cc8', 'to': '0xb39c99249de77392aade86dd589223bd5d5cc09c', 'value': 789.63309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12629479c8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:45:37.000Z'}}, {'blockNum': '0xa1ae01', 'uniqueId': '0x620741bc9aecd4f7fd9f88bb36b235fd9b5eb25e76ba7b003e4f3742fd034c49:log:75', 'hash': '0x620741bc9aecd4f7fd9f88bb36b235fd9b5eb25e76ba7b003e4f3742fd034c49', 'from': '0x27f7a9a19b02a1b2db366d465a2966f925c53be5', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 1848.20614296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2b082ac498', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:54:21.000Z'}}, {'blockNum': '0xa1ae4c', 'uniqueId': '0x7f2999fc41eb0c0ec1f484ec5970d8111d3b94cf298809a6ba74cd847ed0b86b:log:4', 'hash': '0x7f2999fc41eb0c0ec1f484ec5970d8111d3b94cf298809a6ba74cd847ed0b86b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 767.74488414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11e01db95e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:13:28.000Z'}}, {'blockNum': '0xa1ae56', 'uniqueId': '0xcce2fa7681d059a9372666b3ba746e8a4f5cd54298708db1b86e925f4d236867:log:91', 'hash': '0xcce2fa7681d059a9372666b3ba746e8a4f5cd54298708db1b86e925f4d236867', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xaae374c03680420ccfec622ee6a8e0ecc5cce28d', 'value': 28.7940905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xaba04b9a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:15:07.000Z'}}, {'blockNum': '0xa1ae56', 'uniqueId': '0x23076c1fa64dfd133df1104471ad72bedaf0e3e367dfbd50c944203b3b48e8b6:log:166', 'hash': '0x23076c1fa64dfd133df1104471ad72bedaf0e3e367dfbd50c944203b3b48e8b6', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x34d52438bf89a0fa3cda628be00cb48cbca139d5', 'value': 767.74488414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11e01db95e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:15:07.000Z'}}, {'blockNum': '0xa1ae57', 'uniqueId': '0xdc6be451a8729f48f5480b3d5ce8a2e29da5acc4b9ba662b3d786f4b438cd963:log:118', 'hash': '0xdc6be451a8729f48f5480b3d5ce8a2e29da5acc4b9ba662b3d786f4b438cd963', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 2352.21750592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x36c44f1340', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:15:36.000Z'}}, {'blockNum': '0xa1ae5e', 'uniqueId': '0x00ce56d6bb357c0104d906df475ff3d2a816fa572115866e9365b3c6c5da9a7e:log:48', 'hash': '0x00ce56d6bb357c0104d906df475ff3d2a816fa572115866e9365b3c6c5da9a7e', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xd236d0493e20407d6b9a4d8fc64cebf772d5cdb4', 'value': 20.6459829, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7b0f4512', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:17:25.000Z'}}, {'blockNum': '0xa1ae62', 'uniqueId': '0xbf832a20e020a9a11aa6c25ff2a8167944d745e4c7f4bf9f56860dbdcc774340:log:47', 'hash': '0xbf832a20e020a9a11aa6c25ff2a8167944d745e4c7f4bf9f56860dbdcc774340', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 958.312363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x164ffc9ecc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:18:41.000Z'}}, {'blockNum': '0xa1ae70', 'uniqueId': '0x9df4504b9b0586db08b4870a9e1ac19068fcac0eab4a36ce667b03e35c43aaf9:log:1', 'hash': '0x9df4504b9b0586db08b4870a9e1ac19068fcac0eab4a36ce667b03e35c43aaf9', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 2121.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x31666fcb00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:22:20.000Z'}}, {'blockNum': '0xa1ae8d', 'uniqueId': '0x6e586eb055b805b53b161c1e44db61b8d78c5223bf850ee79756378bd81ab333:log:82', 'hash': '0x6e586eb055b805b53b161c1e44db61b8d78c5223bf850ee79756378bd81ab333', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 16815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01878135cf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:30:02.000Z'}}, {'blockNum': '0xa1ae9a', 'uniqueId': '0xdbbaa7c46eae7edcb0823fd42a7b4b1bec5c3cf34e9e9ff043908fc3a9761550:log:39', 'hash': '0xdbbaa7c46eae7edcb0823fd42a7b4b1bec5c3cf34e9e9ff043908fc3a9761550', 'from': '0xf779f407e59bd00799e690cf73ebd8753bc91307', 'to': '0xa19b86b565edfb7476dbc604004514c616ee3f03', 'value': 1430, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x214b76d600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:33:56.000Z'}}, {'blockNum': '0xa1ae9c', 'uniqueId': '0x2fa85ee43a1f867836df9a7a42b708daaded98ac2b44e781a32c06a96eb1accb:log:11', 'hash': '0x2fa85ee43a1f867836df9a7a42b708daaded98ac2b44e781a32c06a96eb1accb', 'from': '0x2cd0cd7fac0c41f919e8337c35282a5eb671fa90', 'to': '0xaf5d8a6adb591d492aaa2a06d2632e635eff6801', 'value': 331.53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07b812a240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:34:45.000Z'}}, {'blockNum': '0xa1ae9d', 'uniqueId': '0xa9ae44344e13d0628abb2156aae89b53ae0c4eacf910b6e3baa856436d3ef4a5:log:117', 'hash': '0xa9ae44344e13d0628abb2156aae89b53ae0c4eacf910b6e3baa856436d3ef4a5', 'from': '0x357e29eac34fd2893b5df6c8cde3272fa7022d42', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 6734.4223219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9ccc48f77e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:34:58.000Z'}}, {'blockNum': '0xa1ae9d', 'uniqueId': '0xaaef74d03123c6faa7644d26e1dc6446fcaf9b2a3b46ef21b5772b99a78fe129:log:123', 'hash': '0xaaef74d03123c6faa7644d26e1dc6446fcaf9b2a3b46ef21b5772b99a78fe129', 'from': '0xf1b7e886ce565dabf18aebd90e0706e03605617f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9437.969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xdbbeadd0a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:34:58.000Z'}}, {'blockNum': '0xa1ae9e', 'uniqueId': '0x9ec916648fe56bdc49a0cca83657aa2d420210ffc158e76973f8570ea8fcbc4b:log:87', 'hash': '0x9ec916648fe56bdc49a0cca83657aa2d420210ffc158e76973f8570ea8fcbc4b', 'from': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2352.21750592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x36c44f1340', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:35:08.000Z'}}, {'blockNum': '0xa1aea3', 'uniqueId': '0xb0391ba87a6040ca310138199e950e0285cbfe245af681034eff53b607272395:log:57', 'hash': '0xb0391ba87a6040ca310138199e950e0285cbfe245af681034eff53b607272395', 'from': '0xaf5d8a6adb591d492aaa2a06d2632e635eff6801', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 331.53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07b812a240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:35:57.000Z'}}, {'blockNum': '0xa1aed0', 'uniqueId': '0xee81568bf866932651d8eb5d427bb25a9aa0197b81effa88aed5d2cbba049ae3:log:10', 'hash': '0xee81568bf866932651d8eb5d427bb25a9aa0197b81effa88aed5d2cbba049ae3', 'from': '0x161da8b1cba591ebf11edd0aaa65e4568df395b4', 'to': '0xb406d97c3bc7dc2e9b1c0755ad1f110f0d43fff3', 'value': 423.02299999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x09d969df5f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:46:38.000Z'}}, {'blockNum': '0xa1aee4', 'uniqueId': '0x8fc93953e8b5997daefff49349e7d901fa57ee3ef9c69443c40a90800c9b9a75:log:3', 'hash': '0x8fc93953e8b5997daefff49349e7d901fa57ee3ef9c69443c40a90800c9b9a75', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 16559.999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018191492960', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:51:11.000Z'}}, {'blockNum': '0xa1af1c', 'uniqueId': '0x9630e0182963395f5b238c062eb49ca28dfc41e92e6eb7fd6ede01199080a61c:log:25', 'hash': '0x9630e0182963395f5b238c062eb49ca28dfc41e92e6eb7fd6ede01199080a61c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 136.15535641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x032b8c9619', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:04:10.000Z'}}, {'blockNum': '0xa1af27', 'uniqueId': '0xe5237059ad9af74445343f3ef358ed778c370759601928fbe1ba6c399b8606f8:log:29', 'hash': '0xe5237059ad9af74445343f3ef358ed778c370759601928fbe1ba6c399b8606f8', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x857059f0371b79d51bb22c5376af84358bc8ec0d', 'value': 136.15535641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x032b8c9619', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:05:40.000Z'}}, {'blockNum': '0xa1af4c', 'uniqueId': '0xaf5e9212f73b8ccd8d0c1243bcc63cf2fdd97931712d6f00094454976c716244:log:16', 'hash': '0xaf5e9212f73b8ccd8d0c1243bcc63cf2fdd97931712d6f00094454976c716244', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'value': 19617.404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01c8c0d6f580', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:11:30.000Z'}}, {'blockNum': '0xa1af4c', 'uniqueId': '0x8e422438f51affc2f69b03f06a5bb7d2c73ab6c2586f34980ae6ddebf00451ce:log:17', 'hash': '0x8e422438f51affc2f69b03f06a5bb7d2c73ab6c2586f34980ae6ddebf00451ce', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 2519.141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3aa7401d20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:11:30.000Z'}}, {'blockNum': '0xa1afa2', 'uniqueId': '0xceac27066b9e2b8229183b4e0ef6926bad15ecb437cadee82803a2fb16968813:log:209', 'hash': '0xceac27066b9e2b8229183b4e0ef6926bad15ecb437cadee82803a2fb16968813', 'from': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19617.404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01c8c0d6f580', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:32:17.000Z'}}, {'blockNum': '0xa1afc8', 'uniqueId': '0xbb5082095328f57994397ccd6ad5ee243cdc0d08aa38ad31363bdfe7c3043d3e:log:12', 'hash': '0xbb5082095328f57994397ccd6ad5ee243cdc0d08aa38ad31363bdfe7c3043d3e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 2507.431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a61741260', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:40:16.000Z'}}, {'blockNum': '0xa1afc8', 'uniqueId': '0xc72615f0b2bcc5cf04a202d3c241626392ba66705067671164bf9be8a3d4b316:log:15', 'hash': '0xc72615f0b2bcc5cf04a202d3c241626392ba66705067671164bf9be8a3d4b316', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'value': 16552.1799155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018162ae2f7e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:40:16.000Z'}}, {'blockNum': '0xa1afd5', 'uniqueId': '0x7f0d41b61348b0894ab8fd4bd9e04ef7a6222d7db424a0a5726a1902655db7e2:log:14', 'hash': '0x7f0d41b61348b0894ab8fd4bd9e04ef7a6222d7db424a0a5726a1902655db7e2', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd44f8a53c9650d3be610372b3df8243075735cdd', 'value': 145.66153577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x036435dd69', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:42:29.000Z'}}, {'blockNum': '0xa1afd6', 'uniqueId': '0xb2026cecc4cf3d1fa9c4e34bfc03ed6fccf5d40875eb7287d225f09ad9335312:log:29', 'hash': '0xb2026cecc4cf3d1fa9c4e34bfc03ed6fccf5d40875eb7287d225f09ad9335312', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf7ac96136b029096ed1dc48d060b59053135ee6d', 'value': 15329.8758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0164ed2e1e60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:42:36.000Z'}}, {'blockNum': '0xa1afda', 'uniqueId': '0x0cbebb2024857b25842edc9c81db0aacb516676a041ac3160688df6c1d6162bb:log:1', 'hash': '0x0cbebb2024857b25842edc9c81db0aacb516676a041ac3160688df6c1d6162bb', 'from': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 16552.1799155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018162ae2f7e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:43:21.000Z'}}, {'blockNum': '0xa1afda', 'uniqueId': '0x12facbfa25bef0a494dbc4c9751908a9b3d76b461ca8383f6c580a063fa27de8:log:2', 'hash': '0x12facbfa25bef0a494dbc4c9751908a9b3d76b461ca8383f6c580a063fa27de8', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2507.431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a61741260', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:43:21.000Z'}}, {'blockNum': '0xa1afdf', 'uniqueId': '0xcc4393188ae325c70e62f8cb1ac7d96e4b4fe68c4b5ae28e9b7be2dd2a351101:log:3', 'hash': '0xcc4393188ae325c70e62f8cb1ac7d96e4b4fe68c4b5ae28e9b7be2dd2a351101', 'from': '0xf7ac96136b029096ed1dc48d060b59053135ee6d', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 15329.8758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0164ed2e1e60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:45:48.000Z'}}, {'blockNum': '0xa1b001', 'uniqueId': '0x21d5cd7f3f560cb00c845eedf91131d4811f264cf1da9155923c61d36bfa6406:log:30', 'hash': '0x21d5cd7f3f560cb00c845eedf91131d4811f264cf1da9155923c61d36bfa6406', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xf18f81517755f3a386cbee515dc0c198483146c0', 'value': 3130.936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x48e5d53300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:54:40.000Z'}}, {'blockNum': '0xa1b015', 'uniqueId': '0x8433666200ee7263b56d7af58f9eca2737bf25ffc140c7ccb3b2cacb37e0ab29:log:105', 'hash': '0x8433666200ee7263b56d7af58f9eca2737bf25ffc140c7ccb3b2cacb37e0ab29', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbf767800b7c5659cfe5f4c4eb79cdc62740da3cf', 'value': 1010.91125548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x178980292c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:01:32.000Z'}}, {'blockNum': '0xa1b028', 'uniqueId': '0xe4c38d332d60e5ad09375ed80c7cc508e4d6716a6ae410577ebee3e5684ff064:log:46', 'hash': '0xe4c38d332d60e5ad09375ed80c7cc508e4d6716a6ae410577ebee3e5684ff064', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 2503.932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a4c990580', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:08:17.000Z'}}, {'blockNum': '0xa1b030', 'uniqueId': '0xf81d819075101edf73d224813b858eedde0cd29a455fc6a938ace88edd2cf22d:log:133', 'hash': '0xf81d819075101edf73d224813b858eedde0cd29a455fc6a938ace88edd2cf22d', 'from': '0xf18f81517755f3a386cbee515dc0c198483146c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3130.936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x48e5d53300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:10:41.000Z'}}, {'blockNum': '0xa1b094', 'uniqueId': '0xb8a1b00e95a81e69baae7196801956c46e8e42b64900dad433bf51b32a3387e7:log:18', 'hash': '0xb8a1b00e95a81e69baae7196801956c46e8e42b64900dad433bf51b32a3387e7', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x3645250b59efbdd11561bfe25a8d2833b9a58868', 'value': 109.58522944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x028d2dca40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:30:38.000Z'}}, {'blockNum': '0xa1b095', 'uniqueId': '0xc43ddc36a41e16dae82346f7aadfc09d7f4255d8071a2ac1f2bc9bf4706d658f:log:242', 'hash': '0xc43ddc36a41e16dae82346f7aadfc09d7f4255d8071a2ac1f2bc9bf4706d658f', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29958.782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b9884182c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:30:47.000Z'}}, {'blockNum': '0xa1b097', 'uniqueId': '0x31169283bd1cf62cf7e4ce8704604a2e44130a669867da6d72c8658d2979a498:log:192', 'hash': '0x31169283bd1cf62cf7e4ce8704604a2e44130a669867da6d72c8658d2979a498', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49679.997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0484b3db7c20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:31:00.000Z'}}, {'blockNum': '0xa1b0a3', 'uniqueId': '0x9bc6b2b547b17c20c980d2c23a616386a8e51e0ca5a562f4a204aba3640a1b60:log:60', 'hash': '0x9bc6b2b547b17c20c980d2c23a616386a8e51e0ca5a562f4a204aba3640a1b60', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4c09984091d0dc4b86502d03727059528bdb4141', 'value': 986.18500001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x16f61ee3a1', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:33:41.000Z'}}, {'blockNum': '0xa1b0d9', 'uniqueId': '0xd9ccdd7401dad344f6014f840791feb653282af6400b8dcf8be7d084ea15c9c6:log:22', 'hash': '0xd9ccdd7401dad344f6014f840791feb653282af6400b8dcf8be7d084ea15c9c6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd0072ee2bed1b15cc7c6e01efc7a9e40dad66d1c', 'value': 571.59282869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0d4ef570b5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:44:35.000Z'}}, {'blockNum': '0xa1b15c', 'uniqueId': '0x4551901515939df6edede3b133c5aa3aeb429ec14f432f52763180aa5627dfe7:log:93', 'hash': '0x4551901515939df6edede3b133c5aa3aeb429ec14f432f52763180aa5627dfe7', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2050.573412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2fbe5eb710', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:09:45.000Z'}}, {'blockNum': '0xa1b194', 'uniqueId': '0x20532199e5407def7145d89e731f3b7ad9a4db1b3fd847434a50c52d4f82fd1b:log:44', 'hash': '0x20532199e5407def7145d89e731f3b7ad9a4db1b3fd847434a50c52d4f82fd1b', 'from': '0xa96b536eef496e21f5432fd258b6f78cf3673f74', 'to': '0x8b453d020ecec6433beb4a09589a3c90033b9104', 'value': 82.93640992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01ee56eb20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:22:33.000Z'}}, {'blockNum': '0xa1b1b0', 'uniqueId': '0xb4b39d0172ff347701a60df1df049f7e47ecee702132d08c8e1918af2386f7f2:log:5', 'hash': '0xb4b39d0172ff347701a60df1df049f7e47ecee702132d08c8e1918af2386f7f2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8b453d020ecec6433beb4a09589a3c90033b9104', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:26:36.000Z'}}, {'blockNum': '0xa1b1b0', 'uniqueId': '0x8174bf1936ae8746801997a8a13b548224a244e5c818156e7a6aa00a11f41d44:log:8', 'hash': '0x8174bf1936ae8746801997a8a13b548224a244e5c818156e7a6aa00a11f41d44', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe23937a89f8d9f0a50bc655cee409258d632b3de', 'value': 193.78164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0483075120', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:26:36.000Z'}}, {'blockNum': '0xa1b21e', 'uniqueId': '0x20ada5c551fddb64342e44dbcb9deb3a76af47a00bc0e11872a77520c5af74b2:log:60', 'hash': '0x20ada5c551fddb64342e44dbcb9deb3a76af47a00bc0e11872a77520c5af74b2', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0x04d5e5aa341773695ecab47bbd68175732766884', 'value': 319.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0771803a40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:53:08.000Z'}}, {'blockNum': '0xa1b221', 'uniqueId': '0xb78e623a511273c0e077345d0c5a4c684c9310f6c4dd1e28920ef48a3e77ccc0:log:48', 'hash': '0xb78e623a511273c0e077345d0c5a4c684c9310f6c4dd1e28920ef48a3e77ccc0', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x818fc66be24f3221fb13bae9109bfc05c7b9ddb4', 'value': 0.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0493e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:54:25.000Z'}}, {'blockNum': '0xa1b226', 'uniqueId': '0x69c6582f04c89b40d7d0e198242f3dd8196ea22cea2a8c907e11d35e72762169:log:101', 'hash': '0x69c6582f04c89b40d7d0e198242f3dd8196ea22cea2a8c907e11d35e72762169', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x992a93edfa32a04f838d6cd5b3287c7b947cccae', 'value': 58.372926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x015bee0438', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:56:27.000Z'}}, {'blockNum': '0xa1b244', 'uniqueId': '0x3bfbabeea1c3f5a9a8a3edb0eed34ffdff8b69e4f32c27cb60cdf8473069bedf:log:168', 'hash': '0x3bfbabeea1c3f5a9a8a3edb0eed34ffdff8b69e4f32c27cb60cdf8473069bedf', 'from': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3512.44708578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x51c7d0eae2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:01:59.000Z'}}, {'blockNum': '0xa1b264', 'uniqueId': '0xc811cb3f77e6d838e4bc49360292b370b53c50c407ec1a7f78fd28c94f04f6c7:log:17', 'hash': '0xc811cb3f77e6d838e4bc49360292b370b53c50c407ec1a7f78fd28c94f04f6c7', 'from': '0x818fc66be24f3221fb13bae9109bfc05c7b9ddb4', 'to': '0xeb1584075e174c9998bd9cd672f812c05945089b', 'value': 188.447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04633b4d60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:09:19.000Z'}}, {'blockNum': '0xa1b2bc', 'uniqueId': '0xf11f959ce02d20fe90691f0fc79516724d4bb53a667c7f70c7bf198f2253c9eb:log:95', 'hash': '0xf11f959ce02d20fe90691f0fc79516724d4bb53a667c7f70c7bf198f2253c9eb', 'from': '0x18b2e69083d6f20337c62667998045252565af56', 'to': '0x5355be56a8b2b4d82894d0ecd48b3e22a6aa35b9', 'value': 510.08, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0be0505000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:29:57.000Z'}}, {'blockNum': '0xa1b2ea', 'uniqueId': '0x75ba2e34146d8eaaef7205e21858a571eb0176643dfb736d798c28c849044266:log:47', 'hash': '0x75ba2e34146d8eaaef7205e21858a571eb0176643dfb736d798c28c849044266', 'from': '0x38b706fc6b521996fdbd57d5808f9a8d6f2906e5', 'to': '0x845eb3acc1f315392ff405da89bad19c701e12db', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:40:14.000Z'}}, {'blockNum': '0xa1b2f2', 'uniqueId': '0x21c7428990bb06b64b060fad5fe71639f6a7e4ace04c998bb2511c9044b42696:log:17', 'hash': '0x21c7428990bb06b64b060fad5fe71639f6a7e4ace04c998bb2511c9044b42696', 'from': '0xbf767800b7c5659cfe5f4c4eb79cdc62740da3cf', 'to': '0xbd1b449e02510600095b7219c685cf9d42084d4a', 'value': 1010.91125548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x178980292c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:41:38.000Z'}}, {'blockNum': '0xa1b2fc', 'uniqueId': '0xef8c2fc1e3e85249bf770834b1392041794d875c0aa0395a396f370b38cf5068:log:75', 'hash': '0xef8c2fc1e3e85249bf770834b1392041794d875c0aa0395a396f370b38cf5068', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xfe2065d6cece3157c9f100dce3568bffc1c05a16', 'value': 42.896386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xffaeb0c8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:43:02.000Z'}}, {'blockNum': '0xa1b2fd', 'uniqueId': '0x7d8715a06cee0db9d3b5b623b88b59e0bc6bf8808bad47d01133015d40cc6289:log:45', 'hash': '0x7d8715a06cee0db9d3b5b623b88b59e0bc6bf8808bad47d01133015d40cc6289', 'from': '0xbd1b449e02510600095b7219c685cf9d42084d4a', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1010.91125548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x178980292c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:43:35.000Z'}}, {'blockNum': '0xa1b30b', 'uniqueId': '0x31f89b25dd3781ce81c8631a6bf63e7c54ab5c6d70e1123ae809985c222b5fdc:log:33', 'hash': '0x31f89b25dd3781ce81c8631a6bf63e7c54ab5c6d70e1123ae809985c222b5fdc', 'from': '0x38b706fc6b521996fdbd57d5808f9a8d6f2906e5', 'to': '0x845eb3acc1f315392ff405da89bad19c701e12db', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:46:36.000Z'}}, {'blockNum': '0xa1b313', 'uniqueId': '0xa1dc078dcda7074111fbaebfc96bfb8a1a7106df15eecb5e67d343e059580e70:log:22', 'hash': '0xa1dc078dcda7074111fbaebfc96bfb8a1a7106df15eecb5e67d343e059580e70', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 16559.999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018191492960', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:47:28.000Z'}}, {'blockNum': '0xa1b394', 'uniqueId': '0xe517080822db4631689e7ce1fc649445502cca7f4e5c9c3069ad96e8c9438b0e:log:164', 'hash': '0xe517080822db4631689e7ce1fc649445502cca7f4e5c9c3069ad96e8c9438b0e', 'from': '0xaae374c03680420ccfec622ee6a8e0ecc5cce28d', 'to': '0x7d9927449f7db9a8c107959300acc75ae6e14419', 'value': 28.7940905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xaba04b9a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:13:52.000Z'}}, {'blockNum': '0xa1b3d0', 'uniqueId': '0xc415b22abd15929b1d55d2f6215421de7f4606b9128c7de253f3c39276494ff3:log:130', 'hash': '0xc415b22abd15929b1d55d2f6215421de7f4606b9128c7de253f3c39276494ff3', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0x0706ba9e814171830e0cd30b64bbaad0ebd5b0f4', 'value': 16.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6516e800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:26:34.000Z'}}, {'blockNum': '0xa1b3d9', 'uniqueId': '0x28018df0700a55c73ea4b6a0e4fceb3f2938953a3ef06df64afca59a088d6b3d:log:118', 'hash': '0x28018df0700a55c73ea4b6a0e4fceb3f2938953a3ef06df64afca59a088d6b3d', 'from': '0x6f4f230d0d3be76929a9068163ac2f07e1ab419e', 'to': '0xc922a08d7caac245e2d5dc81671b7aa91cbdb30a', 'value': 16172.27386313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01788a438dc9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:29:13.000Z'}}, {'blockNum': '0xa1b3dd', 'uniqueId': '0x0eb7da6b7c63b1136b4806d728a56f2d9ef0f05aba87e2b54187642133a4f8e3:log:50', 'hash': '0x0eb7da6b7c63b1136b4806d728a56f2d9ef0f05aba87e2b54187642133a4f8e3', 'from': '0xc922a08d7caac245e2d5dc81671b7aa91cbdb30a', 'to': '0xa305fab8bda7e1638235b054889b3217441dd645', 'value': 16172.2738631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01788a438dc6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:29:59.000Z'}}, {'blockNum': '0xa1b3e2', 'uniqueId': '0x126e4c79d7b592bd8b4aa0a1a15801d072d96d877f29bf6514864ef7edc3afec:log:189', 'hash': '0x126e4c79d7b592bd8b4aa0a1a15801d072d96d877f29bf6514864ef7edc3afec', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3ae203c100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:30:35.000Z'}}, {'blockNum': '0xa1b3ef', 'uniqueId': '0x67aa59e96606072f6cbf58d0245f615595d55ccfee858259a06ae15438ce61e4:log:12', 'hash': '0x67aa59e96606072f6cbf58d0245f615595d55ccfee858259a06ae15438ce61e4', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0x0706ba9e814171830e0cd30b64bbaad0ebd5b0f4', 'value': 3045.51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x46e8a777c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:32:59.000Z'}}]}}
Number of returned transfers: 184
Answer is complete
symbol RDN
group CPS
date 2020-08-25
hour 18:00
exchange binance
Name: 422, dtype: object
HERE
Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps: 2020-08-25 18:00:00 2020-08-25 06:00:00 2020-08-26 06:00:00
Unix timestamps: 1598328000.0 1598414400.0
Hex Block Numbers: 0xa3af89 0xa3c8c1
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa3af92', 'uniqueId': '0x5b5f1766a2b18b3a6d710a79e614b187fe7e2a5768e0df12367630b6e5e29ba5:log:141', 'hash': '0x5b5f1766a2b18b3a6d710a79e614b187fe7e2a5768e0df12367630b6e5e29ba5', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12606.78, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02ab6a37c06abb060000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:02:18.000Z'}}, {'blockNum': '0xa3afb9', 'uniqueId': '0xa198d77ba72da8ee014c6b81591a71907d2afe0dfcfcdf750b87c060ca995d87:log:77', 'hash': '0xa198d77ba72da8ee014c6b81591a71907d2afe0dfcfcdf750b87c060ca995d87', 'from': '0xde056f077b0568cbc995dd44e2360b2d9bfd43bc', 'to': '0xccb1d9e0564cf24c8295d12a47445835561df253', 'value': 380.319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x149dfc837bcbc98000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:10:28.000Z'}}, {'blockNum': '0xa3afc2', 'uniqueId': '0x806f79a7be4cb76ed6578988925cca3a8c54fe75bc4de8ae42c26a2c3ad96797:log:69', 'hash': '0x806f79a7be4cb76ed6578988925cca3a8c54fe75bc4de8ae42c26a2c3ad96797', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 6278.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01545a2a08aa04bf0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:12:34.000Z'}}, {'blockNum': '0xa3afe0', 'uniqueId': '0x08c50a20c1b324ee0901b92dd5f0763c5fae8646a0df8612089dbfc0a8513ae6:log:232', 'hash': '0x08c50a20c1b324ee0901b92dd5f0763c5fae8646a0df8612089dbfc0a8513ae6', 'from': '0x7ef08b22f03f0686ce8f38f0c56f2e6e9eefb1fb', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1841.5291041194982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x63d459a35b7a05fa0b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:16:48.000Z'}}, {'blockNum': '0xa3afe0', 'uniqueId': '0x67f7a89a971943fb365898430d37a066f6622d85c27ab5a0d99e204461571a8b:log:241', 'hash': '0x67f7a89a971943fb365898430d37a066f6622d85c27ab5a0d99e204461571a8b', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8', 'value': 750.1416094495095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x28aa4e5b5fadd1e174', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:16:48.000Z'}}, {'blockNum': '0xa3afe0', 'uniqueId': '0x67f7a89a971943fb365898430d37a066f6622d85c27ab5a0d99e204461571a8b:log:247', 'hash': '0x67f7a89a971943fb365898430d37a066f6622d85c27ab5a0d99e204461571a8b', 'from': '0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 750.1416094495095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x28aa4e5b5fadd1e174', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:16:48.000Z'}}, {'blockNum': '0xa3afe3', 'uniqueId': '0xeae232ab680d756b2c5677218f305fa9832788d2a18cec3678342df42e712354:log:112', 'hash': '0xeae232ab680d756b2c5677218f305fa9832788d2a18cec3678342df42e712354', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0xa085e5bf56ef8babd4bec8173dc07b144724023a', 'value': 1954.94495572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x69fa4faf7c2c5ad000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:16:54.000Z'}}, {'blockNum': '0xa3aff1', 'uniqueId': '0xeaae50060d7c2d1d0f837966f529eb3bf4db1209aa5238acef3a1b02acebd665:log:151', 'hash': '0xeaae50060d7c2d1d0f837966f529eb3bf4db1209aa5238acef3a1b02acebd665', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 1186.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x404df87e30a81d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:20:39.000Z'}}, {'blockNum': '0xa3aff2', 'uniqueId': '0x3ca0bf4bbca895beea7aa84475bef8a8cf47d72e2a7574157e933d7bddcbf8b9:log:117', 'hash': '0x3ca0bf4bbca895beea7aa84475bef8a8cf47d72e2a7574157e933d7bddcbf8b9', 'from': '0x0f29ea2b1103ff6c491d0e262f54aaa0e810dd06', 'to': '0xf07e40317c1b6a0a668809805f1d6046a13f7517', 'value': 350.84769418999997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1304fd66febbd408b0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:20:50.000Z'}}, {'blockNum': '0xa3b024', 'uniqueId': '0xf0dc24f2530ae990667aebad615b8831ef732f2ca659a7b87a590f28e898695b:log:58', 'hash': '0xf0dc24f2530ae990667aebad615b8831ef732f2ca659a7b87a590f28e898695b', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6278.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01545a2a08aa04bf0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:32:35.000Z'}}, {'blockNum': '0xa3b038', 'uniqueId': '0xa070576e527ce7c4a9c84e0292da48a2eacff267dfde1c5754daaac79169eb10:log:48', 'hash': '0xa070576e527ce7c4a9c84e0292da48a2eacff267dfde1c5754daaac79169eb10', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 1210.177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x419a9461b51be68000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:37:10.000Z'}}, {'blockNum': '0xa3b04e', 'uniqueId': '0x569b45fdbdf0f8ee32ffa38284a7d1b4d015a489b2f84e6a96f4ee8d4ce0287a:log:227', 'hash': '0x569b45fdbdf0f8ee32ffa38284a7d1b4d015a489b2f84e6a96f4ee8d4ce0287a', 'from': '0x73e909dd03cc8119a193dae6175a09dea040f719', 'to': '0x81d252fc425340da5e3293e0c4f35de9673062ff', 'value': 2296.295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7c7b7ea835299d8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:44:20.000Z'}}, {'blockNum': '0xa3b1cf', 'uniqueId': '0x8c594c7ea7fed2ebc4c397683d714bcaa26e957aa75493507c7561eb79bf1ee7:log:193', 'hash': '0x8c594c7ea7fed2ebc4c397683d714bcaa26e957aa75493507c7561eb79bf1ee7', 'from': '0xcfb7e61debdcbb20e45661ee6de51f4852978625', 'to': '0x11d2ddb2fe0cb09cd0430032bfeee28100739fe5', 'value': 270.69793740414815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0eacb043d9952d71b3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T06:09:19.000Z'}}, {'blockNum': '0xa3b1d3', 'uniqueId': '0x2b7290204b8fb8862371b01652a200d76afc60550065640913b9ca2896adad0a:log:224', 'hash': '0x2b7290204b8fb8862371b01652a200d76afc60550065640913b9ca2896adad0a', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xaa656d7e71434ef36e49ed935619414e8a95ac39', 'value': 19.435649755889123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010db94c7a7eadc0be', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T06:10:07.000Z'}}, {'blockNum': '0xa3b231', 'uniqueId': '0x488495722ecd93dee4967843a6cfd20db936e100ba6d8c15f56f009e1edec71c:log:83', 'hash': '0x488495722ecd93dee4967843a6cfd20db936e100ba6d8c15f56f009e1edec71c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 6426.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x015c6013a886ca8f0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T06:35:51.000Z'}}, {'blockNum': '0xa3b243', 'uniqueId': '0x1458c8cc83ba6ddee54df59dde0b842b7412ab2fc0e3742f6a4e04270f57114c:log:50', 'hash': '0x1458c8cc83ba6ddee54df59dde0b842b7412ab2fc0e3742f6a4e04270f57114c', 'from': '0xc1e42f862d202b4a0ed552c1145735ee088f6ccf', 'to': '0xce10c4d313052a9b85790ea129bd8604854fb637', 'value': 44085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0955da4687a8d7b40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T06:39:39.000Z'}}, {'blockNum': '0xa3b243', 'uniqueId': '0x1458c8cc83ba6ddee54df59dde0b842b7412ab2fc0e3742f6a4e04270f57114c:log:54', 'hash': '0x1458c8cc83ba6ddee54df59dde0b842b7412ab2fc0e3742f6a4e04270f57114c', 'from': '0xce10c4d313052a9b85790ea129bd8604854fb637', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 44085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0955da4687a8d7b40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T06:39:39.000Z'}}, {'blockNum': '0xa3b2f0', 'uniqueId': '0xc17e1904cae8f891a3119b8b7f3c125458b73d230858f88dafe57603b3552617:log:177', 'hash': '0xc17e1904cae8f891a3119b8b7f3c125458b73d230858f88dafe57603b3552617', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6426.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x015c6013a886ca8f0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T07:16:42.000Z'}}, {'blockNum': '0xa3b2fa', 'uniqueId': '0xad5c4dc6d7f5f4320cd244ecbce1db119aca70660a4364f2b8561c0aad0c62fd:log:113', 'hash': '0xad5c4dc6d7f5f4320cd244ecbce1db119aca70660a4364f2b8561c0aad0c62fd', 'from': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6192.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x014fb8b93b3d1ae10000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T07:18:06.000Z'}}, {'blockNum': '0xa3b3b3', 'uniqueId': '0xa5f258f1751d0612dfab68a710f781d623f04af299c81412dbab4d15fa01bde9:log:144', 'hash': '0xa5f258f1751d0612dfab68a710f781d623f04af299c81412dbab4d15fa01bde9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 13389.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02d5d71d00f8af7b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:00:20.000Z'}}, {'blockNum': '0xa3b3d9', 'uniqueId': '0x2a91a7d17c34b9e536fb8b19b4367de15f51a12f8d9d19213dcc06884dddae41:log:3', 'hash': '0x2a91a7d17c34b9e536fb8b19b4367de15f51a12f8d9d19213dcc06884dddae41', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 5590.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x012f0e3f05d827ff0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:10:49.000Z'}}, {'blockNum': '0xa3b400', 'uniqueId': '0x1c28888abc4831abc11ed39167cb16c273762ad798786579394befd52ed53d61:log:214', 'hash': '0x1c28888abc4831abc11ed39167cb16c273762ad798786579394befd52ed53d61', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 5590.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x012f0e3f05d827ff0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:16:49.000Z'}}, {'blockNum': '0xa3b486', 'uniqueId': '0x8890dbd509f2d84c40f437977767db6f1b35bb8e7ceed73028bb1abc63645bdc:log:28', 'hash': '0x8890dbd509f2d84c40f437977767db6f1b35bb8e7ceed73028bb1abc63645bdc', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x745daa146934b27e3f0b6bff1a6e36b9b90fb131', 'value': 320, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1158e460913d000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:44:30.000Z'}}, {'blockNum': '0xa3b486', 'uniqueId': '0x8890dbd509f2d84c40f437977767db6f1b35bb8e7ceed73028bb1abc63645bdc:log:31', 'hash': '0x8890dbd509f2d84c40f437977767db6f1b35bb8e7ceed73028bb1abc63645bdc', 'from': '0x745daa146934b27e3f0b6bff1a6e36b9b90fb131', 'to': '0x36712581d522f1c820e6fdafe1bbe2acf44f43cb', 'value': 320, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1158e460913d000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:44:30.000Z'}}, {'blockNum': '0xa3b491', 'uniqueId': '0xace984b18c69f19a47e7536f8dd60a2865d9d03a82ab2f12d221e43d30c4408b:log:110', 'hash': '0xace984b18c69f19a47e7536f8dd60a2865d9d03a82ab2f12d221e43d30c4408b', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 13389.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02d5d71d00f8af7b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:47:19.000Z'}}, {'blockNum': '0xa3b5d5', 'uniqueId': '0x41b2df04ff05310e101ab2055991a94d0687e3b29814ff607738f300bcd22332:log:212', 'hash': '0x41b2df04ff05310e101ab2055991a94d0687e3b29814ff607738f300bcd22332', 'from': '0x9f479998c09f80346412894e7cdd46dec1c36a6e', 'to': '0x1c62ff66af8aad410065e02338f5bfbbe23e1f10', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T09:57:46.000Z'}}, {'blockNum': '0xa3b62b', 'uniqueId': '0xaeff2294ce962bbf8882c9701401455fb9b0c5a2180a28fc6e61db966edf2378:log:89', 'hash': '0xaeff2294ce962bbf8882c9701401455fb9b0c5a2180a28fc6e61db966edf2378', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x36712581d522f1c820e6fdafe1bbe2acf44f43cb', 'value': 727.1390274133923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x276b14c4e282477210', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:18:46.000Z'}}, {'blockNum': '0xa3b62b', 'uniqueId': '0x8bbccd87b93a85c0ffda9262820bafd17892ee67ba8307bd12cbd6f10a2e3e00:log:93', 'hash': '0x8bbccd87b93a85c0ffda9262820bafd17892ee67ba8307bd12cbd6f10a2e3e00', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 680.0358673752519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x24dd64ba64b28a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:18:46.000Z'}}, {'blockNum': '0xa3b62d', 'uniqueId': '0x9940ef50c997e0dcf2e99227cc955c43e8213dac1a82aec97b2d5b29afa6bd5b:log:184', 'hash': '0x9940ef50c997e0dcf2e99227cc955c43e8213dac1a82aec97b2d5b29afa6bd5b', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x4900d62465100ec25e7480ca31da2f3f634ba58d', 'value': 519.2758435283765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c266664729e350d97', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:18:53.000Z'}}, {'blockNum': '0xa3b68b', 'uniqueId': '0xe4229f056c8fdc2a368682dbe56d80d1c58cbdaf21218a55bdcdfb72853f7d45:log:15', 'hash': '0xe4229f056c8fdc2a368682dbe56d80d1c58cbdaf21218a55bdcdfb72853f7d45', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 6009.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0145c50a0de320ab0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:41:20.000Z'}}, {'blockNum': '0xa3b695', 'uniqueId': '0x30b5a10719e850bb04d64760450f2135b59d424e4bb021b67f8066036a54a858:log:18', 'hash': '0x30b5a10719e850bb04d64760450f2135b59d424e4bb021b67f8066036a54a858', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 105317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x164d3efa829e96740000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:43:37.000Z'}}, {'blockNum': '0xa3b69a', 'uniqueId': '0x300542852e618b17f644199a323465e5af178ec5c009def9c781d76d55a1b994:log:106', 'hash': '0x300542852e618b17f644199a323465e5af178ec5c009def9c781d76d55a1b994', 'from': '0x36712581d522f1c820e6fdafe1bbe2acf44f43cb', 'to': '0xd29a5c212723b0a51ded27623f48ce56ca2770f5', 'value': 1047.1390274133923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x38c3f92573bf477210', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:44:10.000Z'}}, {'blockNum': '0xa3b6a7', 'uniqueId': '0x627ade68b7f174feb2ddc5814bfbf6a4d0a1a88bedb70e8c96c0300bec12747f:log:72', 'hash': '0x627ade68b7f174feb2ddc5814bfbf6a4d0a1a88bedb70e8c96c0300bec12747f', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6009.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0145c50a0de320ab0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:46:41.000Z'}}, {'blockNum': '0xa3b6df', 'uniqueId': '0xa7ba1b3bea2231c4020ee8215574c4d29d9a4f9b7175dde022c3907a2cc9817d:log:1', 'hash': '0xa7ba1b3bea2231c4020ee8215574c4d29d9a4f9b7175dde022c3907a2cc9817d', 'from': '0x67d484739466bca5e3d0d5eddb957746a5750561', 'to': '0x3ce4285cb7aa1617af7535f7a32ad7b2970c9b27', 'value': 22000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04a89f54ef0121c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:57:44.000Z'}}, {'blockNum': '0xa3b76e', 'uniqueId': '0x540c6da8b5954d0377b4797f2bac7274b2d2234021cf5931ad39c79d84be532f:log:80', 'hash': '0x540c6da8b5954d0377b4797f2bac7274b2d2234021cf5931ad39c79d84be532f', 'from': '0x3ce4285cb7aa1617af7535f7a32ad7b2970c9b27', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04a89f54ef0121c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T11:30:00.000Z'}}, {'blockNum': '0xa3b777', 'uniqueId': '0x854422f17e2657ad7f039e36bf383dda6acf123c8560a7cd7af26c361606461b:log:90', 'hash': '0x854422f17e2657ad7f039e36bf383dda6acf123c8560a7cd7af26c361606461b', 'from': '0x00c4e9a1a6fcf839f1f5c45c6bfbd96cf0d873b2', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 699.7577643709647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x25ef16fb3848d8064f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T11:32:26.000Z'}}, {'blockNum': '0xa3b7e5', 'uniqueId': '0xeacd83159851d2c46a7ddd2812cbe56fca0db923e5aac1e2d92ab350a64eea45:log:84', 'hash': '0xeacd83159851d2c46a7ddd2812cbe56fca0db923e5aac1e2d92ab350a64eea45', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 3017.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa39b065b00f1270000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T11:57:14.000Z'}}, {'blockNum': '0xa3b837', 'uniqueId': '0xe03a5e0eb26350ee6fcccd0c0b888691010cca7819141529762b1420227729cc:log:162', 'hash': '0xe03a5e0eb26350ee6fcccd0c0b888691010cca7819141529762b1420227729cc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 11298.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02647ca8b39071af0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T12:16:54.000Z'}}, {'blockNum': '0xa3b84e', 'uniqueId': '0xd9c346a5fc92602f6bcc3aa8f34fc0320df11760174d1fd5b464870ff3e9c3a7:log:3', 'hash': '0xd9c346a5fc92602f6bcc3aa8f34fc0320df11760174d1fd5b464870ff3e9c3a7', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 945.6509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x33438ae346dc714000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T12:22:47.000Z'}}, {'blockNum': '0xa3b871', 'uniqueId': '0xda8693738124b7e753e517ea74623f5cd0045c3b6703f5f70ccada7c98ee8f1b:log:260', 'hash': '0xda8693738124b7e753e517ea74623f5cd0045c3b6703f5f70ccada7c98ee8f1b', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 11298.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02647ca8b39071af0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T12:32:36.000Z'}}, {'blockNum': '0xa3b8eb', 'uniqueId': '0x97cf923152e32d8352e9a9c45b145f95fb46347f61abaad2ee8a6792988a8b0d:log:263', 'hash': '0x97cf923152e32d8352e9a9c45b145f95fb46347f61abaad2ee8a6792988a8b0d', 'from': '0x00c4e9a1a6fcf839f1f5c45c6bfbd96cf0d873b2', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T13:01:55.000Z'}}, {'blockNum': '0xa3b8ec', 'uniqueId': '0x5cb357feb055d79ffcd6ae54ef370cbdb496e9c82615bd4ef01af7ed9e46f5ff:log:57', 'hash': '0x5cb357feb055d79ffcd6ae54ef370cbdb496e9c82615bd4ef01af7ed9e46f5ff', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 848.4132190741533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2dfe193fa97c921edc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T13:02:18.000Z'}}, {'blockNum': '0xa3b9ae', 'uniqueId': '0x18fa6f62fa0ed357a803a9cbd36ffa70774801af9612ebe01b32f7c8d0e5e335:log:119', 'hash': '0x18fa6f62fa0ed357a803a9cbd36ffa70774801af9612ebe01b32f7c8d0e5e335', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 7374.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x018fc43839cea8df0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T13:41:47.000Z'}}, {'blockNum': '0xa3b9d0', 'uniqueId': '0x77b662ffa32e8990dcd3e4d013911286fd68fdbda703a24b9af2fa73b5d0aed5:log:79', 'hash': '0x77b662ffa32e8990dcd3e4d013911286fd68fdbda703a24b9af2fa73b5d0aed5', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 7374.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x018fc43839cea8df0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T13:47:30.000Z'}}, {'blockNum': '0xa3b9d0', 'uniqueId': '0x767e3ba402f007d447d1284197d93f17575591a85e028625e297d7c842551dc7:log:80', 'hash': '0x767e3ba402f007d447d1284197d93f17575591a85e028625e297d7c842551dc7', 'from': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 945.6509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x33438ae346dc714000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T13:47:30.000Z'}}, {'blockNum': '0xa3ba3f', 'uniqueId': '0x959e8e30d138ae04b6f002f09498fd4ecce7a07fd24611e0c60ea79571f656e4:log:62', 'hash': '0x959e8e30d138ae04b6f002f09498fd4ecce7a07fd24611e0c60ea79571f656e4', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 1862.8129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x64fbb8def1bb424000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T14:12:00.000Z'}}, {'blockNum': '0xa3ba94', 'uniqueId': '0xf18e4d82e2f8e58696d1a3cb82802ebcfd7ff3539212c722d8ae9dbadccfe64e:log:41', 'hash': '0xf18e4d82e2f8e58696d1a3cb82802ebcfd7ff3539212c722d8ae9dbadccfe64e', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 449.6449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x186013963aae0a4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T14:30:37.000Z'}}, {'blockNum': '0xa3bac5', 'uniqueId': '0x8a5694fca74970f43fe9457dfefd8540870f6bc4c5ad53b0bfef832708fd2c5b:log:40', 'hash': '0x8a5694fca74970f43fe9457dfefd8540870f6bc4c5ad53b0bfef832708fd2c5b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5778e79e8c30c1407cbd0332c8877c5258a21067', 'value': 3512.867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xbe6ed2a48870238000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T14:42:29.000Z'}}, {'blockNum': '0xa3bad9', 'uniqueId': '0x4c8a5688b37a299d57a971e5f0af7a05ab8f9580d9fbcca7b46c573e0333d353:log:123', 'hash': '0x4c8a5688b37a299d57a971e5f0af7a05ab8f9580d9fbcca7b46c573e0333d353', 'from': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 2312.4578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7d5bcc752c694c8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T14:47:01.000Z'}}, {'blockNum': '0xa3bb27', 'uniqueId': '0xdf2238e899623ddc089fb08d58bd25309bf639a1da8ab7761c413920549dc35a:log:10', 'hash': '0xdf2238e899623ddc089fb08d58bd25309bf639a1da8ab7761c413920549dc35a', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 322.8989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x11811f56c220614000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:04:29.000Z'}}, {'blockNum': '0xa3bb58', 'uniqueId': '0x701a626aac5acd8d1a1ff8ad09460114c592b3be5171c7324f87a75dcae281e8:log:74', 'hash': '0x701a626aac5acd8d1a1ff8ad09460114c592b3be5171c7324f87a75dcae281e8', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 1214.1129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x41d13381e7775c4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:14:11.000Z'}}, {'blockNum': '0xa3bbb7', 'uniqueId': '0xa1efb0a9e863d04d4c3e5272be457f86e1937813406be399ab48d1cccaf0aa62:log:130', 'hash': '0xa1efb0a9e863d04d4c3e5272be457f86e1937813406be399ab48d1cccaf0aa62', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 15548.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x034ae141d61963d70000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:34:48.000Z'}}, {'blockNum': '0xa3bbe0', 'uniqueId': '0xb066b46d5423ec5ecc990f95dd654900192279155a7b11f049f1a6d6720debec:log:222', 'hash': '0xb066b46d5423ec5ecc990f95dd654900192279155a7b11f049f1a6d6720debec', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15548.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x034ae141d61963d70000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:47:08.000Z'}}, {'blockNum': '0xa3bbf1', 'uniqueId': '0xdddcb19f76835fb4c7ad650d7bb62ee9dbde49533cf7b635229ce8d03e83738f:log:272', 'hash': '0xdddcb19f76835fb4c7ad650d7bb62ee9dbde49533cf7b635229ce8d03e83738f', 'from': '0x808df01373f8629a87d07d778aa8c1dd1c6e46a1', 'to': '0xa82e07c32d1538e11a3002ab5a2c869202983020', 'value': 141.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07aa2e2fe2387b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:49:36.000Z'}}, {'blockNum': '0xa3bc0e', 'uniqueId': '0xcc60b80c4f583064790982964b3aa467d1c86a92ac03041265125f0d4a5cc687:log:217', 'hash': '0xcc60b80c4f583064790982964b3aa467d1c86a92ac03041265125f0d4a5cc687', 'from': '0xdedd6d6eb6056470d687c832c477b8770ac20ed5', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1273.9444928689836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x450f88069dfcec49de', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:58:53.000Z'}}, {'blockNum': '0xa3bc0e', 'uniqueId': '0x711fee7aba97238077b45efbffdde7c6079b1d909676a45e8c0be1a0033350f6:log:225', 'hash': '0x711fee7aba97238077b45efbffdde7c6079b1d909676a45e8c0be1a0033350f6', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 778.871482903924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2a39035f102a1ea7a2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:58:53.000Z'}}, {'blockNum': '0xa3bc0f', 'uniqueId': '0xb6664b6f45f3f2c96bc89a9445ec5177e82fe1fb053b24e7ba7fb348a5b5f730:log:4', 'hash': '0xb6664b6f45f3f2c96bc89a9445ec5177e82fe1fb053b24e7ba7fb348a5b5f730', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xc5be1a730bb2ecf6e567ba2c4e4fdf4f95f4e17c', 'value': 460.1355907640875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18f1aa01e5a7f2cca0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:59:14.000Z'}}, {'blockNum': '0xa3bcef', 'uniqueId': '0x27ee417f5648ea2270dfcc3977cf34825d8d7a825c6a6a167df71d43cef397f9:log:149', 'hash': '0x27ee417f5648ea2270dfcc3977cf34825d8d7a825c6a6a167df71d43cef397f9', 'from': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1537.0118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x535252d8a997bd8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T16:46:44.000Z'}}, {'blockNum': '0xa3bcfa', 'uniqueId': '0x49c0b0bc16a5c3e625207741099c6cba330d9339c17a6b948e7008cbd2aeeeaf:log:48', 'hash': '0x49c0b0bc16a5c3e625207741099c6cba330d9339c17a6b948e7008cbd2aeeeaf', 'from': '0x4a4f1c998b89c0dc000983ffd997420dad282ca1', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T16:48:47.000Z'}}, {'blockNum': '0xa3bd15', 'uniqueId': '0x186ddd9025f8511685a3abeae95b15785359982a1b93b5147b8cfd6fc5758544:log:128', 'hash': '0x186ddd9025f8511685a3abeae95b15785359982a1b93b5147b8cfd6fc5758544', 'from': '0x1d5b6d9658d958037672f3c0914b784426ac40c1', 'to': '0x3021026e4ff227571a5a563ad19ea657c7027e59', 'value': 27.829513029183406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0182364aa72894ff19', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T16:54:15.000Z'}}, {'blockNum': '0xa3bd44', 'uniqueId': '0x69ce99ec44d041350e752266543287e1f063fe785ddd60307959fff9f6bea9e9:log:166', 'hash': '0x69ce99ec44d041350e752266543287e1f063fe785ddd60307959fff9f6bea9e9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 12279.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0299aac4d200e3e30000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:03:08.000Z'}}, {'blockNum': '0xa3bd80', 'uniqueId': '0x86226588d38a8337a2f29a64a7bbe9a7d912ba134084a620ed1e0531a95fed6d:log:25', 'hash': '0x86226588d38a8337a2f29a64a7bbe9a7d912ba134084a620ed1e0531a95fed6d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 1997.743355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c4c4224dfe416b000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:14:17.000Z'}}, {'blockNum': '0xa3bd95', 'uniqueId': '0xe3ac98e430783fb3c31ddffed201567b9259608d1534b676c3e53c407d6948e0:log:152', 'hash': '0xe3ac98e430783fb3c31ddffed201567b9259608d1534b676c3e53c407d6948e0', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x5f5ca0899ea0e4ffd3277c922f5d88bf548e7e33', 'value': 1999.0919649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c5ef95e6ef229e800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:17:30.000Z'}}, {'blockNum': '0xa3bd9d', 'uniqueId': '0xfff5e03ae970714f85d9e2662d827bb7d8b4c5309e5c507918328dc733a54c75:log:149', 'hash': '0xfff5e03ae970714f85d9e2662d827bb7d8b4c5309e5c507918328dc733a54c75', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12279.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0299aac4d200e3e30000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:19:45.000Z'}}, {'blockNum': '0xa3be50', 'uniqueId': '0x80178ffce3ff91ac15732a2eafee1728aa43696b38161ee71f598869a1fb7339:log:4', 'hash': '0x80178ffce3ff91ac15732a2eafee1728aa43696b38161ee71f598869a1fb7339', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x329ba208bb709e3ef0425df176dbbff513b67da1', 'value': 4341.597023541895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xeb5bc32224fbf1ee8d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:59:53.000Z'}}, {'blockNum': '0xa3be50', 'uniqueId': '0x9ac09ed29f383fa5174bb4a85d390dad11dcfac83230ef56990b193ba6d82cb0:log:15', 'hash': '0x9ac09ed29f383fa5174bb4a85d390dad11dcfac83230ef56990b193ba6d82cb0', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0xf443253607dbde5bda77c358c9b9f244d819e25c', 'value': 1590.4497191036116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5637ec78f6029193e3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:59:53.000Z'}}, {'blockNum': '0xa3be50', 'uniqueId': '0x9ac09ed29f383fa5174bb4a85d390dad11dcfac83230ef56990b193ba6d82cb0:log:16', 'hash': '0x9ac09ed29f383fa5174bb4a85d390dad11dcfac83230ef56990b193ba6d82cb0', 'from': '0xf443253607dbde5bda77c358c9b9f244d819e25c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1590.4497191036116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5637ec78f6029193e3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:59:53.000Z'}}, {'blockNum': '0xa3be50', 'uniqueId': '0xdef57fc4b9b68b8c1eb31b065aaca2d6e08a22c168ff09b41a32e95ceffa789b:log:28', 'hash': '0xdef57fc4b9b68b8c1eb31b065aaca2d6e08a22c168ff09b41a32e95ceffa789b', 'from': '0xc5be1a730bb2ecf6e567ba2c4e4fdf4f95f4e17c', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 769.9791610885267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x29bd9b7f7c4ee91350', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:59:53.000Z'}}, {'blockNum': '0xa3be50', 'uniqueId': '0xdef57fc4b9b68b8c1eb31b065aaca2d6e08a22c168ff09b41a32e95ceffa789b:log:31', 'hash': '0xdef57fc4b9b68b8c1eb31b065aaca2d6e08a22c168ff09b41a32e95ceffa789b', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 769.9791610885267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x29bd9b7f7c4ee91350', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:59:53.000Z'}}, {'blockNum': '0xa3be51', 'uniqueId': '0xec006ec654178bc863ea67b59e1b2845577fa141b229b0868dc9ba558f11cbb1:log:5', 'hash': '0xec006ec654178bc863ea67b59e1b2845577fa141b229b0868dc9ba558f11cbb1', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1174.457902785993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3faae0a80a095e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:00:25.000Z'}}, {'blockNum': '0xa3be51', 'uniqueId': '0xed08be20aee8a2a361d4ba49ea809895e99fa5ee917995fb75b3cf0a6525ffe4:log:95', 'hash': '0xed08be20aee8a2a361d4ba49ea809895e99fa5ee917995fb75b3cf0a6525ffe4', 'from': '0x329ba208bb709e3ef0425df176dbbff513b67da1', 'to': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'value': 4341.597023541895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xeb5bc32224fbf1ee8d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:00:25.000Z'}}, {'blockNum': '0xa3be52', 'uniqueId': '0x19577533e5d6d3b41d1a47218caa1c45d7a8a7a58d8a87f50a322232f36ea386:log:2', 'hash': '0x19577533e5d6d3b41d1a47218caa1c45d7a8a7a58d8a87f50a322232f36ea386', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x329ba208bb709e3ef0425df176dbbff513b67da1', 'value': 3192.7976726639913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad14f7f71eef1deb19', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:00:46.000Z'}}, {'blockNum': '0xa3be52', 'uniqueId': '0xcc885f88c6ccd8efa286c988e890ce51aff3d5872081aa2fbe7c2351ee232afe:log:12', 'hash': '0xcc885f88c6ccd8efa286c988e890ce51aff3d5872081aa2fbe7c2351ee232afe', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8', 'value': 1167.5473956730366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3f4af99a6ef3c93dc3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:00:46.000Z'}}, {'blockNum': '0xa3be52', 'uniqueId': '0xcc885f88c6ccd8efa286c988e890ce51aff3d5872081aa2fbe7c2351ee232afe:log:13', 'hash': '0xcc885f88c6ccd8efa286c988e890ce51aff3d5872081aa2fbe7c2351ee232afe', 'from': '0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1167.5473956730366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3f4af99a6ef3c93dc3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:00:46.000Z'}}, {'blockNum': '0xa3be53', 'uniqueId': '0x132b1d35ebeb25c030e06e79c777cd0da320074b576dc8c4770701b664652b18:log:155', 'hash': '0x132b1d35ebeb25c030e06e79c777cd0da320074b576dc8c4770701b664652b18', 'from': '0x329ba208bb709e3ef0425df176dbbff513b67da1', 'to': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'value': 3192.7976726639913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad14f7f71eef1deb19', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:01:24.000Z'}}, {'blockNum': '0xa3be54', 'uniqueId': '0x0b256fba0b2e453c780f5cc39ba0fdc14754c280b09d1f466fdc627578e9d815:log:61', 'hash': '0x0b256fba0b2e453c780f5cc39ba0fdc14754c280b09d1f466fdc627578e9d815', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1236.8283391281877, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x430c70f57090000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:01:44.000Z'}}, {'blockNum': '0xa3be54', 'uniqueId': '0x3958bcc9554fe99428b042b8af5243fd884ecabf5c6a53dc4430c1eb4d944b72:log:111', 'hash': '0x3958bcc9554fe99428b042b8af5243fd884ecabf5c6a53dc4430c1eb4d944b72', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 342.10713515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x128bb0b2db8e4d4c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:01:44.000Z'}}, {'blockNum': '0xa3be54', 'uniqueId': '0xa94813c4e2f56aceacae972a79d30f1cc8e451a0dd574ad4e4c6ba5f46eebbde:log:112', 'hash': '0xa94813c4e2f56aceacae972a79d30f1cc8e451a0dd574ad4e4c6ba5f46eebbde', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 302.5086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x10662670f0d4bb8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:01:44.000Z'}}, {'blockNum': '0xa3be55', 'uniqueId': '0x6de6467183a651c80a57f7ebe15a0d6b62f045b51542a2f813e63925f91d2121:log:112', 'hash': '0x6de6467183a651c80a57f7ebe15a0d6b62f045b51542a2f813e63925f91d2121', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 6293.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01552a54bd30d39b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:03:03.000Z'}}, {'blockNum': '0xa3be5d', 'uniqueId': '0x6d2747c39d8b6be1f462cd504c93c65cdf8cb3b03c93cd2b1f551f98494a095a:log:28', 'hash': '0x6d2747c39d8b6be1f462cd504c93c65cdf8cb3b03c93cd2b1f551f98494a095a', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:04:14.000Z'}}, {'blockNum': '0xa3be5d', 'uniqueId': '0xcc5aaa2c1bbd96406c5054eec33f7623d44430756ec641995a56a617ef780233:log:161', 'hash': '0xcc5aaa2c1bbd96406c5054eec33f7623d44430756ec641995a56a617ef780233', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6c14f95f0ca1afa9c0d525c4506f2ac5faadaf1f', 'value': 1056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x393ef1a5127c800000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:04:14.000Z'}}, {'blockNum': '0xa3be6d', 'uniqueId': '0xa0d800a0c76998def6c8f0d6fc5319fd3ed51eca8c5b061abe2f81b926112705:log:171', 'hash': '0xa0d800a0c76998def6c8f0d6fc5319fd3ed51eca8c5b061abe2f81b926112705', 'from': '0x20aaad6c45ea50f5c1a690fb8a32a2e244abf371', 'to': '0xc5be1a730bb2ecf6e567ba2c4e4fdf4f95f4e17c', 'value': 510.6943105412933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1baf4ea9a9b2d07606', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:09:09.000Z'}}, {'blockNum': '0xa3be8d', 'uniqueId': '0x17af0a080840168f8abbd0358af4361a8ff987f89111ae70751748abed4ebb74:log:29', 'hash': '0x17af0a080840168f8abbd0358af4361a8ff987f89111ae70751748abed4ebb74', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 756.518590743924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2902cdf21306b61198', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:15:56.000Z'}}, {'blockNum': '0xa3be90', 'uniqueId': '0xe5595f08890dde17f7ec8d64ae79f53f00c33ed330ef2e2d01f2528b599b09ac:log:223', 'hash': '0xe5595f08890dde17f7ec8d64ae79f53f00c33ed330ef2e2d01f2528b599b09ac', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'value': 693.9065243018865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x259de33360d3e81b32', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:16:33.000Z'}}, {'blockNum': '0xa3be90', 'uniqueId': '0xe5595f08890dde17f7ec8d64ae79f53f00c33ed330ef2e2d01f2528b599b09ac:log:228', 'hash': '0xe5595f08890dde17f7ec8d64ae79f53f00c33ed330ef2e2d01f2528b599b09ac', 'from': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 693.9062911053323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x259de25f4986220000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:16:33.000Z'}}, {'blockNum': '0xa3bea8', 'uniqueId': '0x17859523f7c491e61af445091e959eac7f620dfbfb040c9cff26c4dd35bab9d4:log:177', 'hash': '0x17859523f7c491e61af445091e959eac7f620dfbfb040c9cff26c4dd35bab9d4', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 15804.30218338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0358c0c08d009f5d4800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:20:30.000Z'}}, {'blockNum': '0xa3bea8', 'uniqueId': '0x0cdfda221e1120c2b720ab6524d19a3079aab5af014228b55347d9fe7e808523:log:178', 'hash': '0x0cdfda221e1120c2b720ab6524d19a3079aab5af014228b55347d9fe7e808523', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 9766.95868271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x021177c7b65c1eb3dc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:20:30.000Z'}}, {'blockNum': '0xa3bea9', 'uniqueId': '0x128707f98d508f527cebf4d40177717cb5115936d4fa7c260221e0787207e4d2:log:17', 'hash': '0x128707f98d508f527cebf4d40177717cb5115936d4fa7c260221e0787207e4d2', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 1930.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x68a44b36d510860000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:20:40.000Z'}}, {'blockNum': '0xa3beba', 'uniqueId': '0xb8f82894ab4f05b55019507c4c93363cb239e4b90f2059319260bfae53353102:log:101', 'hash': '0xb8f82894ab4f05b55019507c4c93363cb239e4b90f2059319260bfae53353102', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xfb2de6b9eba1c83cd249bad8fcc70a9d97592e04', 'value': 1643.2106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x591420c698dc7e8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:25:07.000Z'}}, {'blockNum': '0xa3bed9', 'uniqueId': '0xfb55d191bd7b0db389b92cd9031f39c7cd0bc47087f2f26062ef637b9020634d:log:48', 'hash': '0xfb55d191bd7b0db389b92cd9031f39c7cd0bc47087f2f26062ef637b9020634d', 'from': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26341.1005180309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0593f434200469d24b85', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:30:18.000Z'}}, {'blockNum': '0xa3bf1a', 'uniqueId': '0x3898aebaaf5409778660edf4b6533d62dfa517a429aaf59e51702e486123ca66:log:145', 'hash': '0x3898aebaaf5409778660edf4b6533d62dfa517a429aaf59e51702e486123ca66', 'from': '0x63c410a066d5d12217b713ccac5f600a06ba45e6', 'to': '0xad13e2628410e99b87fc838a83e520a369cf8ed0', 'value': 4215.410378417814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xe484921cf838cfdd78', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:45:09.000Z'}}, {'blockNum': '0xa3bf45', 'uniqueId': '0xb3de2d3d0b518a8d677b20bd276462f12997dc62cc81931d6dee9efcf0f5dab6:log:17', 'hash': '0xb3de2d3d0b518a8d677b20bd276462f12997dc62cc81931d6dee9efcf0f5dab6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6e83e4954e0617647137b7d3c85671bbbf7f331d', 'value': 2567.813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8b33905ea4c6208000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:53:05.000Z'}}, {'blockNum': '0xa3bf46', 'uniqueId': '0x3cf29f6c4b9692ae76430bf186354b77bdd1ecf9166e1593762cf40e742010ad:log:90', 'hash': '0x3cf29f6c4b9692ae76430bf186354b77bdd1ecf9166e1593762cf40e742010ad', 'from': '0x7ee13b84900a0f0706fa639da8a14daf79ae12d1', 'to': '0x0257b51a38a9a58fab2b3878ca590eeb4529ad7b', 'value': 297.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1020a451c706b60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:53:31.000Z'}}, {'blockNum': '0xa3bf5b', 'uniqueId': '0xbeb2a1e38e5ac2b28856fe3ddf2939d3f7f167f09e2e0becb2a532dbb34b10e4:log:180', 'hash': '0xbeb2a1e38e5ac2b28856fe3ddf2939d3f7f167f09e2e0becb2a532dbb34b10e4', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'value': 396.14235619932043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1579945e1c72c1f3c7', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:58:08.000Z'}}, {'blockNum': '0xa3bf5b', 'uniqueId': '0xbeb2a1e38e5ac2b28856fe3ddf2939d3f7f167f09e2e0becb2a532dbb34b10e4:log:186', 'hash': '0xbeb2a1e38e5ac2b28856fe3ddf2939d3f7f167f09e2e0becb2a532dbb34b10e4', 'from': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 396.14227755477896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x157994169596cc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:58:08.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:103', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x6e83e4954e0617647137b7d3c85671bbbf7f331d', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 2567.813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8b33905ea4c6208000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:104', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x1f8a6d8185b76f5ac08f335610a2390dab3225a8', 'value': 2567.813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8b33905ea4c6208000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:105', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x1f8a6d8185b76f5ac08f335610a2390dab3225a8', 'to': '0x6cb2291a3c3794fca0f5b6e34a8e6ea7933ca667', 'value': 1155.51585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3ea400f763bf8ea000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:107', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x6cb2291a3c3794fca0f5b6e34a8e6ea7933ca667', 'to': '0x480ea104ff7063ed0af41c98d8ef2457afe2a41c', 'value': 1155.51585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3ea400f763bf8ea000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:108', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x480ea104ff7063ed0af41c98d8ef2457afe2a41c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1155.51585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3ea400f763bf8ea000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:116', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x1f8a6d8185b76f5ac08f335610a2390dab3225a8', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 833.3366928430046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2d2cdeaaef0618596b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:120', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x1f8a6d8185b76f5ac08f335610a2390dab3225a8', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 578.9604571569954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1f62b0bc5200798695', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf69', 'uniqueId': '0xb8a5dfd1bf04c35fcfa39a5a366d968fb4d45d700d9ba554c6d7464611eb7f13:log:295', 'hash': '0xb8a5dfd1bf04c35fcfa39a5a366d968fb4d45d700d9ba554c6d7464611eb7f13', 'from': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:46.000Z'}}, {'blockNum': '0xa3bf8c', 'uniqueId': '0x6cfe3d131ca655572ef089d60a4b8db0172dfd5b08767cb025dff1bf1208e824:log:170', 'hash': '0x6cfe3d131ca655572ef089d60a4b8db0172dfd5b08767cb025dff1bf1208e824', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x38d8a38ef107861320a4e04d5c892c3a559e4bbc', 'value': 24.823626215241642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01587f3c85848d749a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:08:29.000Z'}}, {'blockNum': '0xa3bfb3', 'uniqueId': '0x245214c0dbd06dcaac70f79436c0ed147999f7c84af123d345bcb6808ca0eff2:log:210', 'hash': '0x245214c0dbd06dcaac70f79436c0ed147999f7c84af123d345bcb6808ca0eff2', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6293.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01552a54bd30d39b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:16:34.000Z'}}, {'blockNum': '0xa3c024', 'uniqueId': '0x2cb6f14c9474a6cebe3aa167c75176f1c98bf48db6e34e2d93912ba3e15411ea:log:81', 'hash': '0x2cb6f14c9474a6cebe3aa167c75176f1c98bf48db6e34e2d93912ba3e15411ea', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x31e3d3084dba7065e1a873c7f01768801d3e19b3', 'value': 411.0120713126595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1647f035393c96ca43', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:39:53.000Z'}}, {'blockNum': '0xa3c029', 'uniqueId': '0xa11ac4fc1cb0fdb842150048295e3a5647de6a9c99982d74d055e34d4446344d:log:45', 'hash': '0xa11ac4fc1cb0fdb842150048295e3a5647de6a9c99982d74d055e34d4446344d', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0xccc9bde7524b71e93af6572559452f5dc69fe85a', 'value': 146.593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07f262f4d126d631e0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:41:32.000Z'}}, {'blockNum': '0xa3c2fd', 'uniqueId': '0x1afec71a73aa9b2f802855cbe902e640e06c6609ad8a6afd52065af34f73b399:log:234', 'hash': '0x1afec71a73aa9b2f802855cbe902e640e06c6609ad8a6afd52065af34f73b399', 'from': '0x02ec30889bd132f7cff78833cc6bad389646bb99', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x25f273933db5700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T22:23:28.000Z'}}, {'blockNum': '0xa3c3ad', 'uniqueId': '0xed84e2cd8a1f474587426c67f96fca527a0eebdcf8cbccb30a52796deef28c21:log:69', 'hash': '0xed84e2cd8a1f474587426c67f96fca527a0eebdcf8cbccb30a52796deef28c21', 'from': '0xdac6008346a4718b59b1abdf6d7511395bdd1f56', 'to': '0xd9a0691574dc09d6cec1b1134524385d2ca63b4a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T23:04:49.000Z'}}, {'blockNum': '0xa3c3b6', 'uniqueId': '0x5b36e9fe4a981acee49a1fcf245736becce167cfbb8739b4c716e2cb190a5647:log:240', 'hash': '0x5b36e9fe4a981acee49a1fcf245736becce167cfbb8739b4c716e2cb190a5647', 'from': '0xd9a0691574dc09d6cec1b1134524385d2ca63b4a', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T23:06:32.000Z'}}, {'blockNum': '0xa3c4f7', 'uniqueId': '0x1595998200632dd841fe6ac5aea6800a21c02730e02bc700092cabd43dd7cf93:log:6', 'hash': '0x1595998200632dd841fe6ac5aea6800a21c02730e02bc700092cabd43dd7cf93', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0x22a70b1619668d5fe45192b70aa2a89291166058', 'value': 1533.0077574300003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x531ac1a128cd5c2940', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T00:20:08.000Z'}}, {'blockNum': '0xa3c53f', 'uniqueId': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9:log:204', 'hash': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xba30a255a23fc6e864f1195eaccedf1eeac9a64c', 'value': 213.34338032704113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b90bbf210d659094d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T00:36:33.000Z'}}, {'blockNum': '0xa3c53f', 'uniqueId': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9:log:207', 'hash': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9', 'from': '0xba30a255a23fc6e864f1195eaccedf1eeac9a64c', 'to': '0x4b30796bf2cc2092ae7341e2999ad73d7d456013', 'value': 4.266867606540822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3b36f57b377ca924', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T00:36:33.000Z'}}, {'blockNum': '0xa3c53f', 'uniqueId': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9:log:208', 'hash': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9', 'from': '0xba30a255a23fc6e864f1195eaccedf1eeac9a64c', 'to': '0xe3f5ea1e1212e02039ec2df87e567ba1c79f3a03', 'value': 1.0667169016352056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ecdbd5ecddf2a4a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T00:36:33.000Z'}}, {'blockNum': '0xa3c53f', 'uniqueId': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9:log:209', 'hash': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9', 'from': '0xba30a255a23fc6e864f1195eaccedf1eeac9a64c', 'to': '0xf4f5a319fca9ca06c918b28b43f92e347fd8c091', 'value': 208.00979581886511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b46b73f36d0fd35df', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T00:36:33.000Z'}}, {'blockNum': '0xa3c5b1', 'uniqueId': '0xc068762faaebe54f6b80952585382bc466db8319f8c789a50114c816e9c52f50:log:200', 'hash': '0xc068762faaebe54f6b80952585382bc466db8319f8c789a50114c816e9c52f50', 'from': '0x7532001d3e8c79f64ca8725eb959dfeb88b57c90', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 548.0877969503358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1db63f036ec7304803', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T01:06:58.000Z'}}, {'blockNum': '0xa3c608', 'uniqueId': '0x94650cc837745dd8b63ec24b3ab659e70170a98848dbc0c7c45f5108ea293057:log:39', 'hash': '0x94650cc837745dd8b63ec24b3ab659e70170a98848dbc0c7c45f5108ea293057', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0x79338fa41fce2ea394c5f273f4bcaf4936010b20', 'value': 737.77922115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x27febe54b6ce1cac00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T01:25:52.000Z'}}, {'blockNum': '0xa3c6fd', 'uniqueId': '0x558a5e3dcff00ba08c0a7ccb4bf5e94b446c1a79027046cbfde6d18f8564a732:log:97', 'hash': '0x558a5e3dcff00ba08c0a7ccb4bf5e94b446c1a79027046cbfde6d18f8564a732', 'from': '0x5e1102507c1f9e1e2e7218f791a5ded8ab93ee90', 'to': '0x7909021779e05396aabf314fbb3639a44142147c', 'value': 145.78, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07e71a999fdc720000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T02:16:44.000Z'}}]}}
Number of returned transfers: 118
Answer is complete
symbol QSP
group CPS
date 2020-09-10
hour 18:00
exchange binance
Name: 423, dtype: object
HERE
Symbol: QSP, Contract: 0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d
Datetime timestamps: 2020-09-10 18:00:00 2020-09-10 06:00:00 2020-09-11 06:00:00
Unix timestamps: 1599710400.0 1599796800.0
Hex Block Numbers: 0xa54764 0xa56107
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa548ca', 'uniqueId': '0x7bf7adbf52072a133c6cc2f08fdb16bb48e4c110fa0b48839fbe77bc310e8677:log:79', 'hash': '0x7bf7adbf52072a133c6cc2f08fdb16bb48e4c110fa0b48839fbe77bc310e8677', 'from': '0x5e667d65d45cd511e7cdfbbc592196631c86c773', 'to': '0xea33e88bc886d9709a895f512781cdf0ff12efc5', 'value': 3074.98999864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa6b20f07c49019e000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T05:19:26.000Z'}}, {'blockNum': '0xa54958', 'uniqueId': '0xc35a81542f0ec1974305f50d0f78bcd14e4f037bf627c622929479eb0a5dac2d:log:248', 'hash': '0xc35a81542f0ec1974305f50d0f78bcd14e4f037bf627c622929479eb0a5dac2d', 'from': '0x10bd28a045defee8e75f03a9f5d014dd6b0313fa', 'to': '0xdf10158541bb7b0ebbec23c424f5024e497dbc6a', 'value': 497.0330700640846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1af1b82fd4479a8465', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T05:49:04.000Z'}}, {'blockNum': '0xa54a16', 'uniqueId': '0x672dabb3e35a3f0b669421d3fabe9e92bb0c74bd13ae914b22b853756c07f3d3:log:168', 'hash': '0x672dabb3e35a3f0b669421d3fabe9e92bb0c74bd13ae914b22b853756c07f3d3', 'from': '0xf5490f4e055aacad9f0d51a16838788078686082', 'to': '0xd3a08888778ad7d5e61aaefaa0b91f84ecefafc1', 'value': 2600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x8cf23f909c0fa00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T06:33:05.000Z'}}, {'blockNum': '0xa54a88', 'uniqueId': '0xbf66dc4e56424830ce129087f4a1c8fbc5ad1eaebd99ab32e0d299e9579fa4c3:log:4', 'hash': '0xbf66dc4e56424830ce129087f4a1c8fbc5ad1eaebd99ab32e0d299e9579fa4c3', 'from': '0xbc9dd9a2f7f48f4e895f5527a1e3880400faa2e3', 'to': '0xa90e24f3d4acc3fe642ae2e8fde06be03923dc4a', 'value': 750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x28a857425466f80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T07:03:46.000Z'}}, {'blockNum': '0xa54bff', 'uniqueId': '0xdf4589ab31376a50c6a6f9c54d37914cdefa133778246d76488d3bbb8ad333d5:log:339', 'hash': '0xdf4589ab31376a50c6a6f9c54d37914cdefa133778246d76488d3bbb8ad333d5', 'from': '0xa163e2cef5095a49d9174b6c36a2ac9790def114', 'to': '0xa7792a7fe379c0603ddc7e2ac3cc3a479995fd29', 'value': 1692.973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x5bc6b855be9f648000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T08:26:09.000Z'}}, {'blockNum': '0xa54cad', 'uniqueId': '0xcf7e3c6461f22b96218f2916c397c13a104469735278d4a5a1d1d5c2358db40d:log:52', 'hash': '0xcf7e3c6461f22b96218f2916c397c13a104469735278d4a5a1d1d5c2358db40d', 'from': '0x46e56e4c807257caa443895aa43113beb96f7c80', 'to': '0xfbd2b1430831265168761393f5ef652a3b3a467c', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T09:08:49.000Z'}}, {'blockNum': '0xa54caf', 'uniqueId': '0xb2b99afbdf33b6bb7d1d5714b66410aea6233cabaf8041b4e75401cbff39b660:log:69', 'hash': '0xb2b99afbdf33b6bb7d1d5714b66410aea6233cabaf8041b4e75401cbff39b660', 'from': '0xfbd2b1430831265168761393f5ef652a3b3a467c', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T09:09:46.000Z'}}, {'blockNum': '0xa54fcb', 'uniqueId': '0x63fb4129255985df8cd96aa96cb5c1a8f2fdd828b9df7b4f58e8d6462c610fdd:log:17', 'hash': '0x63fb4129255985df8cd96aa96cb5c1a8f2fdd828b9df7b4f58e8d6462c610fdd', 'from': '0xb809a8bb26205d0175159aa279100d73ccf88019', 'to': '0xf88db2e3c660a1c81ad2c931fab6018a2ef85d6e', 'value': 655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2381f375a948dc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T12:02:58.000Z'}}, {'blockNum': '0xa550d9', 'uniqueId': '0x68d8d17dc539936f58d947630f99789395422c1103de517e166b38924462992d:log:70', 'hash': '0x68d8d17dc539936f58d947630f99789395422c1103de517e166b38924462992d', 'from': '0x4aef5b44b4c2375c6fd9ef7fe93659be99855d15', 'to': '0x85bf95ed670ec5e28e05c4ce32a8e40e953d32eb', 'value': 291.55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0fce11ac4d49230000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T12:58:31.000Z'}}, {'blockNum': '0xa551e2', 'uniqueId': '0x11f090bec9086f83b2d9b95af80e074f81dceffd44cb8ae53d86f8fa04aded6d:log:179', 'hash': '0x11f090bec9086f83b2d9b95af80e074f81dceffd44cb8ae53d86f8fa04aded6d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8ba514533859993267bd02246b7151af5c5d4627', 'value': 67996.50864537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0e66191e6005686f4400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T13:59:05.000Z'}}, {'blockNum': '0xa551fa', 'uniqueId': '0x85a1dbb2d3c72d2d5f9a93145871ff5aff317eef1b3cf83cde8b105dda412b14:log:222', 'hash': '0x85a1dbb2d3c72d2d5f9a93145871ff5aff317eef1b3cf83cde8b105dda412b14', 'from': '0x916ed5586bb328e0ec1a428af060dc3d10919d84', 'to': '0x965e69ea946bb17754896aece59776567ba083f5', 'value': 1400.00004522, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x4be4e74f9c04e96800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T14:03:14.000Z'}}, {'blockNum': '0xa55256', 'uniqueId': '0x35d8d404f42b97d30f16bfaf477b1b6b8f5cebfb0efaad985dc79c6bb68fd979:log:326', 'hash': '0x35d8d404f42b97d30f16bfaf477b1b6b8f5cebfb0efaad985dc79c6bb68fd979', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0xce081e75e5026d012d744921fbdf419badfc1514', 'value': 19516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0421f6e827cceb700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T14:25:23.000Z'}}, {'blockNum': '0xa552a2', 'uniqueId': '0x017d223844b7b5394161faede3c9be2f3f01aff14d161d5cef1256eb7c3842e5:log:300', 'hash': '0x017d223844b7b5394161faede3c9be2f3f01aff14d161d5cef1256eb7c3842e5', 'from': '0xce081e75e5026d012d744921fbdf419badfc1514', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 19516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0421f6e827cceb700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T14:41:00.000Z'}}, {'blockNum': '0xa552e1', 'uniqueId': '0xa7fcf2c997aa9e1d8b72d282c2201a1bd4a045be21ba65f8145ad7c86b09d20c:log:117', 'hash': '0xa7fcf2c997aa9e1d8b72d282c2201a1bd4a045be21ba65f8145ad7c86b09d20c', 'from': '0x43238608111fe51641ad1aa6a29d5f19a74037e7', 'to': '0x52ca04c6d2b22028b10e1c9e3c50e66fbc4ff3ce', 'value': 1132.140284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3d5f9a45f631dbc000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T14:56:41.000Z'}}, {'blockNum': '0xa553a4', 'uniqueId': '0x9f0eced6b699d4967a61dcc77a23053c6e212608b570cf169d58d01d673f11ed:log:95', 'hash': '0x9f0eced6b699d4967a61dcc77a23053c6e212608b570cf169d58d01d673f11ed', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe2a90a2cdb4895f2b636c9554999c6f048104a76', 'value': 761.98016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x294e99566047500000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T15:34:01.000Z'}}, {'blockNum': '0xa5543c', 'uniqueId': '0xe70ac19bbd08d0cff397b777a3a1f4aad99c531af052953b0de5b9a8ae9760a0:log:155', 'hash': '0xe70ac19bbd08d0cff397b777a3a1f4aad99c531af052953b0de5b9a8ae9760a0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xc767a51199c410028ca360313fb419b9f1755381', 'value': 63042.997167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0d5991566345b085f000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T16:09:16.000Z'}}, {'blockNum': '0xa55476', 'uniqueId': '0xafe438ef7a0dead99046639e145fd8155418fba7ec1a157f837e8c3ff6a80e88:log:113', 'hash': '0xafe438ef7a0dead99046639e145fd8155418fba7ec1a157f837e8c3ff6a80e88', 'from': '0xc767a51199c410028ca360313fb419b9f1755381', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 63042.997167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0d5991566345b085f000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T16:22:55.000Z'}}, {'blockNum': '0xa554b9', 'uniqueId': '0x2ee017b7f3af2cff24b3f5e76fcef52ec0309d12bd70c8335738d27250e7d01b:log:25', 'hash': '0x2ee017b7f3af2cff24b3f5e76fcef52ec0309d12bd70c8335738d27250e7d01b', 'from': '0x80b5b304c0eac3041b4507bb1c879d8e5745dcac', 'to': '0xab3f245f647844882f3734c5f18a56deb3ea5bf2', 'value': 8477.05308691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01cb8abe75314719ec00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T16:37:44.000Z'}}, {'blockNum': '0xa554bf', 'uniqueId': '0x886fb25b8c70e1c57630413dcf1cc5a8e5cd39e4a05ada7bf266aef76049d610:log:13', 'hash': '0x886fb25b8c70e1c57630413dcf1cc5a8e5cd39e4a05ada7bf266aef76049d610', 'from': '0xab3f245f647844882f3734c5f18a56deb3ea5bf2', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 8477.05308691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01cb8abe75314719ec00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T16:39:03.000Z'}}, {'blockNum': '0xa554ec', 'uniqueId': '0x36295705d97cd3220ce798b8a6377143533c39f69bce69bc0c526657f1eb1e2e:log:226', 'hash': '0x36295705d97cd3220ce798b8a6377143533c39f69bce69bc0c526657f1eb1e2e', 'from': '0xbdde2c395cf206f061dfa9e0574dc2c535bdc866', 'to': '0xcf9d83b04f61e15f3d173a5bd857b25c49ed991b', 'value': 5129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01160b2c7564b2840000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T16:47:45.000Z'}}, {'blockNum': '0xa5554f', 'uniqueId': '0x581f7973256fc2a603932cccae4cd6d09f11bda8a43e30d10164b00c901347a4:log:86', 'hash': '0x581f7973256fc2a603932cccae4cd6d09f11bda8a43e30d10164b00c901347a4', 'from': '0x901b68e2099f83dcd6e443c86146969ef837ed37', 'to': '0xff152f5a5031f04879b1677dd0adac7100fd397c', 'value': 6977.432264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x017a3f530c1665948000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T17:04:52.000Z'}}, {'blockNum': '0xa55567', 'uniqueId': '0xeb8a08261d1009f39cacded2d08247afd348adff068ff7cbf6b8f2a0991c94bc:log:11', 'hash': '0xeb8a08261d1009f39cacded2d08247afd348adff068ff7cbf6b8f2a0991c94bc', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x615dc707447425d413ae52d88361fca08fcc4d8f', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3782dace9d900000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T17:10:32.000Z'}}, {'blockNum': '0xa55729', 'uniqueId': '0xb63230b1c754e2d798fc278e33ba3ed207a2efe8004ab081f1aa1dcb1a9c07cb:log:321', 'hash': '0xb63230b1c754e2d798fc278e33ba3ed207a2efe8004ab081f1aa1dcb1a9c07cb', 'from': '0x42f8ceaa89716aa27641b3c7ac6ebbed438dc4d2', 'to': '0xf85ecef24e975f4ccb2d565e1c2c7217c09a9dce', 'value': 108624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x170084d2a561ef400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T18:48:14.000Z'}}, {'blockNum': '0xa557a5', 'uniqueId': '0xa3c9321bd75857077ab663065fea52bfd8d5eaae81b16ad0e071c361206e44db:log:178', 'hash': '0xa3c9321bd75857077ab663065fea52bfd8d5eaae81b16ad0e071c361206e44db', 'from': '0x51519e8e257bb13da00d049f5e83fb5c5f1e90a5', 'to': '0x1e2fe4656a727e378ab943d2f78d0f7de4a9a5e2', 'value': 19885.021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0435f81a1c24b6dc8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T19:12:04.000Z'}}, {'blockNum': '0xa558cb', 'uniqueId': '0x53b59dbb3c20fef18ea44ce1c11d53193e4eeb2e82f933bffb18c6f9f0b0b3a5:log:16', 'hash': '0x53b59dbb3c20fef18ea44ce1c11d53193e4eeb2e82f933bffb18c6f9f0b0b3a5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 4849.60825431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0106e5d594f81dca7c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T20:15:12.000Z'}}, {'blockNum': '0xa558d3', 'uniqueId': '0xa6fcc062cddec883747dabe33348d828036d29a9fae4c20adab290900f4d4b5d:log:235', 'hash': '0xa6fcc062cddec883747dabe33348d828036d29a9fae4c20adab290900f4d4b5d', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x1b56397606cf6c002f7448c0cdbcf0ff6a66caaa', 'value': 4801.10825431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010444c2f7eee7587c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T20:17:27.000Z'}}, {'blockNum': '0xa5592d', 'uniqueId': '0xd48a44f27db2dae4f47e5725e02299bfc48086888f365c7e182f1f772003d159:log:90', 'hash': '0xd48a44f27db2dae4f47e5725e02299bfc48086888f365c7e182f1f772003d159', 'from': '0x8a5c8e3c71dc4c17a8baecec1a964ee117626e7c', 'to': '0xe6d40c83026565bfe4cf8556ffd91adffc29ebf4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T20:36:36.000Z'}}, {'blockNum': '0xa55949', 'uniqueId': '0xcaf09be6608f5dcacf5a0bda799b1c5f68e703793f02f4625db189485dccde5f:log:96', 'hash': '0xcaf09be6608f5dcacf5a0bda799b1c5f68e703793f02f4625db189485dccde5f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5398e5e01484b1eb6c9c1af59eb2c58b640c4199', 'value': 4231.667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xe5662d3c2ad6eb8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T20:44:59.000Z'}}, {'blockNum': '0xa55be1', 'uniqueId': '0x36f41a7e2be66246375879edd8466674cbf2cb967eddb1a493c8fafe3ada4aab:log:26', 'hash': '0x36f41a7e2be66246375879edd8466674cbf2cb967eddb1a493c8fafe3ada4aab', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xac254864d699b72bedb911ab3629b25beb31b693', 'value': 5494.403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0129da28b1e7c0938000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T23:18:19.000Z'}}, {'blockNum': '0xa55d1d', 'uniqueId': '0xbb739e9ed3f9e3f09f30403767e008c437c6c307133ad8b2d1449fbe7b0327ec:log:260', 'hash': '0xbb739e9ed3f9e3f09f30403767e008c437c6c307133ad8b2d1449fbe7b0327ec', 'from': '0x7fe3239b89a39212ca944118c2f2e3d8b513d369', 'to': '0x5ead215dac720e5127bd314374b68a4b6f38d0d9', 'value': 1345.44958279334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x48efdd230d9a8c881e', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T00:21:42.000Z'}}, {'blockNum': '0xa55e40', 'uniqueId': '0x4f541ecd74b6fc7087a348250ccadd115d3753be4ca9905c316a49af1f4ee52b:log:46', 'hash': '0x4f541ecd74b6fc7087a348250ccadd115d3753be4ca9905c316a49af1f4ee52b', 'from': '0x97ab7b00c9b1ddf0d8e11dafe81acb5bc06f909a', 'to': '0x769c8be7616097e7314899700ac85d60976f427c', 'value': 3589.319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xc293ceb579104d8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T01:27:41.000Z'}}, {'blockNum': '0xa55efa', 'uniqueId': '0xa2e7257c3b3b7d7c9953446014ea47d721c6b11f4f3b15f6185d4a3b774f3e31:log:183', 'hash': '0xa2e7257c3b3b7d7c9953446014ea47d721c6b11f4f3b15f6185d4a3b774f3e31', 'from': '0x916ed5586bb328e0ec1a428af060dc3d10919d84', 'to': '0xed9510f826a20b07e427472c9faef10a8e19de6c', 'value': 20024.2791545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x043d84b275d6ffd3a800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:07:27.000Z'}}, {'blockNum': '0xa55f14', 'uniqueId': '0x578ba75a79ed4ff60cdc3d0ca53e42a004eebc0f7b8621dd5232338f9d83bfa5:log:85', 'hash': '0x578ba75a79ed4ff60cdc3d0ca53e42a004eebc0f7b8621dd5232338f9d83bfa5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xecc9b11609852d42f89ee2b0c9bc11af9c806bfe', 'value': 32481.398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x06e0d1f2fb2d837f0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:13:00.000Z'}}, {'blockNum': '0xa55f16', 'uniqueId': '0xe6475e46bd3ceef5d644c37c2ee0c8bed60ed7b4c5acaca97b0e6f78c87e79a5:log:0', 'hash': '0xe6475e46bd3ceef5d644c37c2ee0c8bed60ed7b4c5acaca97b0e6f78c87e79a5', 'from': '0x016d574d8f9728f3b0073e37c3972e32683b31f1', 'to': '0x6dd4b492f020c6afb31e06c8564a7527aac8e8ed', 'value': 3957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xd6826806ea5cb40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:13:42.000Z'}}, {'blockNum': '0xa55f1e', 'uniqueId': '0x0a82ad46b41fd55f0a136307ed64ab3c28f5d95953bc3c6ff34d7b0327d44180:log:136', 'hash': '0x0a82ad46b41fd55f0a136307ed64ab3c28f5d95953bc3c6ff34d7b0327d44180', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe9a340d72007fe5a8076db602687fbed636363dd', 'value': 1914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x67c215fb3181a80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:14:59.000Z'}}, {'blockNum': '0xa55f88', 'uniqueId': '0x7e7d3e51a79453a118312bef5db6ff100ed949e01ae2b45c4ab68a40b4e87243:log:13', 'hash': '0x7e7d3e51a79453a118312bef5db6ff100ed949e01ae2b45c4ab68a40b4e87243', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5fafae3633d0d7e7a006629e16414b2985a904c8', 'value': 95405.413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1433f013cbf542d08000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:40:11.000Z'}}, {'blockNum': '0xa55fe8', 'uniqueId': '0x32df0a1f1819a005746c3d71d022efd95eaf8b35351d78eff88fa81f31ed3646:log:55', 'hash': '0x32df0a1f1819a005746c3d71d022efd95eaf8b35351d78eff88fa81f31ed3646', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5fafae3633d0d7e7a006629e16414b2985a904c8', 'value': 154914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x20cde79ed6738f480000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:58:50.000Z'}}, {'blockNum': '0xa56047', 'uniqueId': '0xe03beee665f9fc5dc12aa98adf74105f52a5d80213631ea4dae5924b61e036a4:log:147', 'hash': '0xe03beee665f9fc5dc12aa98adf74105f52a5d80213631ea4dae5924b61e036a4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x86925ddeea557ee955aafc75e08450ab5d90229c', 'value': 3461.988266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xbbacbd1186ec8ca000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:18:41.000Z'}}, {'blockNum': '0xa56074', 'uniqueId': '0x76ef80f69084c87f7a1bbda1d589a15736dc0079cc4d3969c33227dc1a8b802d:log:115', 'hash': '0x76ef80f69084c87f7a1bbda1d589a15736dc0079cc4d3969c33227dc1a8b802d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xecc9b11609852d42f89ee2b0c9bc11af9c806bfe', 'value': 23241.649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04ebeeac51f750be8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:28:43.000Z'}}, {'blockNum': '0xa5609b', 'uniqueId': '0x47cc831f0c8460624b2564ce68c5bcfd69539a6f960b41a01300a2db4f3decc2:log:55', 'hash': '0x47cc831f0c8460624b2564ce68c5bcfd69539a6f960b41a01300a2db4f3decc2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2057.89244169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6f8efea0891db70400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:36:34.000Z'}}, {'blockNum': '0xa560a1', 'uniqueId': '0x4b6caed6747fbe878d2706055270ebe5a375a0eeefafe6045aeed42668a47fc4:log:145', 'hash': '0x4b6caed6747fbe878d2706055270ebe5a375a0eeefafe6045aeed42668a47fc4', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4fcdcdc5ad5d26568de9cea8d8b566600695024a', 'value': 2014.89244169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6d3a3ff05bffeb0400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:38:40.000Z'}}, {'blockNum': '0xa560d8', 'uniqueId': '0xd841874260ee89d273de410d99906976a6331ef375ea4a83fb48e1730f1d02ff:log:108', 'hash': '0xd841874260ee89d273de410d99906976a6331ef375ea4a83fb48e1730f1d02ff', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xecc9b11609852d42f89ee2b0c9bc11af9c806bfe', 'value': 22891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04d8ec70d248bacc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:50:46.000Z'}}, {'blockNum': '0xa560e2', 'uniqueId': '0x5faaea6d5c51c0f7e0687b0ad6df5a9dd9c89e5c2d71caa6a8ceab40812820d0:log:151', 'hash': '0x5faaea6d5c51c0f7e0687b0ad6df5a9dd9c89e5c2d71caa6a8ceab40812820d0', 'from': '0xe28a24ce2f3bbbd0020cfcfbc1e011dd025d5d25', 'to': '0x0a05e2e9d6333387d4f634b08fff5210292f5561', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5de9ffb72', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:52:43.000Z'}}, {'blockNum': '0xa560e4', 'uniqueId': '0x08ece819af067efa0a3adf1a8ae8a828d3cbf5f0db44a57343da402fa38d87b8:log:145', 'hash': '0x08ece819af067efa0a3adf1a8ae8a828d3cbf5f0db44a57343da402fa38d87b8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6f9b3fcf1f2c006d2cb7594dc95ecf094f87111a', 'value': 16897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0393fcfb07db6f640000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:52:59.000Z'}}]}}
Number of returned transfers: 44
Answer is complete
symbol GVT
group CPS
date 2020-09-17
hour 18:00
exchange binance
Name: 424, dtype: object
HERE
Symbol: GVT, Contract:
Datetime timestamps: 2020-09-17 18:00:00 2020-09-17 06:00:00 2020-09-18 06:00:00
Unix timestamps: 1600315200.0 1600401600.0
Hex Block Numbers: 0xa5f9af 0xa61337
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol RDN
group CPS
date 2020-10-17
hour 16:00
exchange binance
Name: 425, dtype: object
HERE
Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps: 2020-10-17 16:00:00 2020-10-17 04:00:00 2020-10-18 04:00:00
Unix timestamps: 1602900000.0 1602986400.0
Hex Block Numbers: 0xa8ec89 0xa905eb
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa8ecb4', 'uniqueId': '0xe8082dd66e7c6f37a2f35da2e1fd6ef737b5efd8b308ba280276738d023dd755:log:224', 'hash': '0xe8082dd66e7c6f37a2f35da2e1fd6ef737b5efd8b308ba280276738d023dd755', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x4149b799341ffd4ba835bdc9907409ff0467fe18', 'value': 378.9106340749989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x148a70fe22fa55128d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T02:08:16.000Z'}}, {'blockNum': '0xa8f093', 'uniqueId': '0x2d9a57bbb297ff9d4de64b96465f06ec4ddaa465ca3b15ff0f6c973c6496bac4:log:185', 'hash': '0x2d9a57bbb297ff9d4de64b96465f06ec4ddaa465ca3b15ff0f6c973c6496bac4', 'from': '0x4149b799341ffd4ba835bdc9907409ff0467fe18', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 378.9106340749989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x148a70fe22fa55128d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T05:43:33.000Z'}}, {'blockNum': '0xa8f1fe', 'uniqueId': '0x4a8f073530e732824bd8a0b77d34eac100bb80d70e5a13bb7c705b55cd3efa56:log:4', 'hash': '0x4a8f073530e732824bd8a0b77d34eac100bb80d70e5a13bb7c705b55cd3efa56', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1920.9350643831335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x68225447819cca98f3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:06:47.000Z'}}, {'blockNum': '0xa8f201', 'uniqueId': '0xc22ed976ed4b7c3c95c8c88c5a423f7fb17e934ea9abbb45f369ebf98e8ceb3f:log:56', 'hash': '0xc22ed976ed4b7c3c95c8c88c5a423f7fb17e934ea9abbb45f369ebf98e8ceb3f', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x2d8e85b308d9cbe0cdd2a9af8a07be39dda22b25', 'value': 7727.203219645622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01a2e47c93ca580e214b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:07:16.000Z'}}, {'blockNum': '0xa8f202', 'uniqueId': '0xd42d647dd604e7e3b02da3921995482b380cfbd41a05fae4b616e8644a47640b:log:151', 'hash': '0xd42d647dd604e7e3b02da3921995482b380cfbd41a05fae4b616e8644a47640b', 'from': '0x2d8e85b308d9cbe0cdd2a9af8a07be39dda22b25', 'to': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'value': 7727.203219645622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01a2e47c93ca580e214b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:07:54.000Z'}}, {'blockNum': '0xa8f245', 'uniqueId': '0xabeefdee2a8cd88adc05b4a325c2cc23597ea0a935e3cd74b62285795f3e6187:log:214', 'hash': '0xabeefdee2a8cd88adc05b4a325c2cc23597ea0a935e3cd74b62285795f3e6187', 'from': '0x6d377c45cf8c9d19bb6cfdb0c93ccf979026d3f8', 'to': '0xf8622783483722aa2b8d3f689a18d3a79466cb8e', 'value': 1534.9389518395485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x53358e9c3e32b613c3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:23:04.000Z'}}, {'blockNum': '0xa8f2e1', 'uniqueId': '0x5cb8ba5a6258788f1f19113e41aa8565e91669dcf8f3134c0994550e4b137bfb:log:181', 'hash': '0x5cb8ba5a6258788f1f19113e41aa8565e91669dcf8f3134c0994550e4b137bfb', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0xc96cb511b6fa594cc4d2d8542f7f56de1a25f69c', 'value': 637.3648315440512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x228d36c162bdda9819', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:57:46.000Z'}}, {'blockNum': '0xa8f2e1', 'uniqueId': '0x5cb8ba5a6258788f1f19113e41aa8565e91669dcf8f3134c0994550e4b137bfb:log:182', 'hash': '0x5cb8ba5a6258788f1f19113e41aa8565e91669dcf8f3134c0994550e4b137bfb', 'from': '0xc96cb511b6fa594cc4d2d8542f7f56de1a25f69c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 637.3648315440512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x228d36c162bdda9819', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:57:46.000Z'}}, {'blockNum': '0xa8f449', 'uniqueId': '0x487e1635b3292742ee4f76a255c547167aa5439e9eae29174302ca914d44c998:log:14', 'hash': '0x487e1635b3292742ee4f76a255c547167aa5439e9eae29174302ca914d44c998', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 3751.993885394774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xcb655fffd9d93247fd', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T09:20:35.000Z'}}, {'blockNum': '0xa8f44b', 'uniqueId': '0x0d35b122b432ca33f9d45f14ef7bc9e077f9c4c22bb53b202916a4444e9dcc75:log:169', 'hash': '0x0d35b122b432ca33f9d45f14ef7bc9e077f9c4c22bb53b202916a4444e9dcc75', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 3744.4898976239847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xcafd3c7abb34680000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T09:21:04.000Z'}}, {'blockNum': '0xa8f458', 'uniqueId': '0x866518435c01fbba032a1b8236c61291750bec16140827b51aa422785e247a69:log:18', 'hash': '0x866518435c01fbba032a1b8236c61291750bec16140827b51aa422785e247a69', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'value': 45927.87198725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x09b9c1430c1bf2277400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T09:24:29.000Z'}}, {'blockNum': '0xa8f46d', 'uniqueId': '0x27e4a4777f76010f0fc0a801c6c07e60dfb761da76e02056939c52d2e04f65e3:log:45', 'hash': '0x27e4a4777f76010f0fc0a801c6c07e60dfb761da76e02056939c52d2e04f65e3', 'from': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 45927.87198725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x09b9c1430c1bf2277400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T09:30:03.000Z'}}, {'blockNum': '0xa8f595', 'uniqueId': '0x615d429159f8fc8840ea8fd760fd65be181995197dc64a81a3a5d3a12f1424a9:log:32', 'hash': '0x615d429159f8fc8840ea8fd760fd65be181995197dc64a81a3a5d3a12f1424a9', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 17678.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03be5a78c54aef2a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T10:34:47.000Z'}}, {'blockNum': '0xa8f5cc', 'uniqueId': '0x705224a1aeee78ecda5cb683c76bba6ac1b8917fbbf56b8443d00c7936722a1e:log:137', 'hash': '0x705224a1aeee78ecda5cb683c76bba6ac1b8917fbbf56b8443d00c7936722a1e', 'from': '0x4569cd9d62f1db5b59fd504e7e80777274299329', 'to': '0x88793a5eaf644825d78f5730c2f482437e3aeb4d', 'value': 53187.0905255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b4347280ba8cbc95800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T10:46:15.000Z'}}, {'blockNum': '0xa8f60b', 'uniqueId': '0x1877f5a2980635df9a1603c7a984cb15d8dd7aeaca326fec23f5d6c51eb6906d:log:139', 'hash': '0x1877f5a2980635df9a1603c7a984cb15d8dd7aeaca326fec23f5d6c51eb6906d', 'from': '0x2cedc44ec7fc775caa42acbfb3deae7ed4af24fa', 'to': '0x3449169725726193a91f9a918c28d6848226ec3a', 'value': 1136.6581757388358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d9e4d0c8fb4d537a3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T10:59:37.000Z'}}, {'blockNum': '0xa8f60e', 'uniqueId': '0x35b114fad95ba6701b2c3eacb0a18a5097c11b1925b687860e180191aa9aa460:log:60', 'hash': '0x35b114fad95ba6701b2c3eacb0a18a5097c11b1925b687860e180191aa9aa460', 'from': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20115.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0442727a311a51800000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:00:16.000Z'}}, {'blockNum': '0xa8f63e', 'uniqueId': '0x9fadee663201300fe23c783d6f2b33f94148a85f7917f52fab1a630226a1f548:log:11', 'hash': '0x9fadee663201300fe23c783d6f2b33f94148a85f7917f52fab1a630226a1f548', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 3671.6538336414615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc70a6ecc70f081bc09', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:08:59.000Z'}}, {'blockNum': '0xa8f63f', 'uniqueId': '0xa9d97286b8a7814bc88214c74dfb286e02b206ae578c9e379f6d560a9596bfed:log:46', 'hash': '0xa9d97286b8a7814bc88214c74dfb286e02b206ae578c9e379f6d560a9596bfed', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 915.2487882567699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x319da0e3b93f7af2d3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:10.000Z'}}, {'blockNum': '0xa8f63f', 'uniqueId': '0xa9d97286b8a7814bc88214c74dfb286e02b206ae578c9e379f6d560a9596bfed:log:47', 'hash': '0xa9d97286b8a7814bc88214c74dfb286e02b206ae578c9e379f6d560a9596bfed', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 915.2486178129188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x319da048b4b2480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:10.000Z'}}, {'blockNum': '0xa8f640', 'uniqueId': '0x6dd382d416747cbddaee2ae36794edb0fd1b51ca1d9b8c5f162bef50b0639a60:log:96', 'hash': '0x6dd382d416747cbddaee2ae36794edb0fd1b51ca1d9b8c5f162bef50b0639a60', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 802.7683055095091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b84a5f09cb48c2e26', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:17.000Z'}}, {'blockNum': '0xa8f640', 'uniqueId': '0x6dd382d416747cbddaee2ae36794edb0fd1b51ca1d9b8c5f162bef50b0639a60:log:97', 'hash': '0x6dd382d416747cbddaee2ae36794edb0fd1b51ca1d9b8c5f162bef50b0639a60', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 802.7681757273997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b84a57a9374040000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:17.000Z'}}, {'blockNum': '0xa8f644', 'uniqueId': '0x2dd57df0f28dc7612784fb59316b29f0ed38019c336646972095cd4ddb537120:log:240', 'hash': '0x2dd57df0f28dc7612784fb59316b29f0ed38019c336646972095cd4ddb537120', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 3664.3105259741783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc6a486210637b00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:43.000Z'}}, {'blockNum': '0xa8f68c', 'uniqueId': '0x851bb01f1d7d5156d111e4a670c281927c07e935198c3725d5cde54617afbb23:log:305', 'hash': '0x851bb01f1d7d5156d111e4a670c281927c07e935198c3725d5cde54617afbb23', 'from': '0x21821de67396f6811e02350e8cdab0805e7dceee', 'to': '0xd44efb5e3e0056de640240943e0c65c9e8865c9f', 'value': 102.9988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0595653ee393810000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:30:23.000Z'}}, {'blockNum': '0xa8f68d', 'uniqueId': '0x900c49d689dbe46c09621b6ff6d08dc8896ba63d4de144916cf247b09efd26ea:log:44', 'hash': '0x900c49d689dbe46c09621b6ff6d08dc8896ba63d4de144916cf247b09efd26ea', 'from': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19127.96132155865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x040cedc9d5acd2e00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:30:25.000Z'}}, {'blockNum': '0xa8f6f6', 'uniqueId': '0x4eca9feba3f15f02989a7b3874c6b53521b500d82088ea53179bf6793cc1a7b4:log:208', 'hash': '0x4eca9feba3f15f02989a7b3874c6b53521b500d82088ea53179bf6793cc1a7b4', 'from': '0xafd3e0b651e9379971aaf34683553c7553a06e60', 'to': '0x3449169725726193a91f9a918c28d6848226ec3a', 'value': 1136.6581757388358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d9e4d0c8fb4d537a3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:52:18.000Z'}}, {'blockNum': '0xa8f761', 'uniqueId': '0xb3cf998b0b0ddf18733c5bc34c35c71f638b3a37096335e8f07663754e3ae95f:log:77', 'hash': '0xb3cf998b0b0ddf18733c5bc34c35c71f638b3a37096335e8f07663754e3ae95f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2bec9497ff7851c94e105143865da680feb91d09', 'value': 3731.0985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xca4364ad8afccc4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T12:13:15.000Z'}}, {'blockNum': '0xa8f7f9', 'uniqueId': '0x31be1e268c3bcf158204e4ca1786e03cf2b10dba08b4446db7aac69cd30b48b1:log:325', 'hash': '0x31be1e268c3bcf158204e4ca1786e03cf2b10dba08b4446db7aac69cd30b48b1', 'from': '0xe0782ace187e676f08a32e96b32d77712ef0b073', 'to': '0x0b24106386f6bf7664b1c45ba0a03e7a1be5416b', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T12:43:05.000Z'}}, {'blockNum': '0xa8f81c', 'uniqueId': '0xe7eac1720ec703de33f544f845c7b152255f33a3a0750445be6d156525232920:log:220', 'hash': '0xe7eac1720ec703de33f544f845c7b152255f33a3a0750445be6d156525232920', 'from': '0x0b24106386f6bf7664b1c45ba0a03e7a1be5416b', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T12:50:42.000Z'}}, {'blockNum': '0xa8f8eb', 'uniqueId': '0x520d7e669a09c883791b5836f6fcf056bd5b62d80b97ea1483b53ee2c789baea:log:51', 'hash': '0x520d7e669a09c883791b5836f6fcf056bd5b62d80b97ea1483b53ee2c789baea', 'from': '0x7946632863fbb0a914b3c0e5f74e1c3c98ca64df', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1bdd2ed4b616c80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T13:34:04.000Z'}}, {'blockNum': '0xa8f908', 'uniqueId': '0xa74d743257e4708c49f790cb6a4a2ad5eb6d26b2cf336ac38bd37c2988543487:log:46', 'hash': '0xa74d743257e4708c49f790cb6a4a2ad5eb6d26b2cf336ac38bd37c2988543487', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 9221.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01f3e8cbbb56e3ba0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T13:41:42.000Z'}}, {'blockNum': '0xa8f978', 'uniqueId': '0xec8f9855a9fefaeebd6f5fa8c4bfeed7c43dd5cdcdb0d8b38546a3c671081313:log:280', 'hash': '0xec8f9855a9fefaeebd6f5fa8c4bfeed7c43dd5cdcdb0d8b38546a3c671081313', 'from': '0x20990b7688861fd6d8f45efc1ffb051bb030532c', 'to': '0xca499253c4928a5bd1ee59df395e8a5a59a2e78d', 'value': 1436.496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4ddf62fd1e35880000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:05:42.000Z'}}, {'blockNum': '0xa8f980', 'uniqueId': '0xe6f4e6598f8e3cdb29d82106feec50e4249ab5e1f1c03a174a31f8f90cc5db21:log:33', 'hash': '0xe6f4e6598f8e3cdb29d82106feec50e4249ab5e1f1c03a174a31f8f90cc5db21', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 3651.4953322428287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc5f2ad6a3932c78e67', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:07:44.000Z'}}, {'blockNum': '0xa8f987', 'uniqueId': '0xa0268c41b561b16204c023de6e26f8fea6c48e1dda734845c6d019bd438be4b8:log:10', 'hash': '0xa0268c41b561b16204c023de6e26f8fea6c48e1dda734845c6d019bd438be4b8', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0xdbcdc48dafe87472a2091d083146c815aa171d3f', 'value': 3651.4953322428287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc5f2ad6a3932c78e67', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:08:59.000Z'}}, {'blockNum': '0xa8fa2f', 'uniqueId': '0x87c2bebfdd8234f1c1cda65485951ef72f10a266a62ca857a952b6a61b1686e0:log:63', 'hash': '0x87c2bebfdd8234f1c1cda65485951ef72f10a266a62ca857a952b6a61b1686e0', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 8210.20036828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01bd136b2771deaff000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:51:54.000Z'}}, {'blockNum': '0xa8fa3e', 'uniqueId': '0x1000005fa17087f675860e21571acd1beadfb31169c61957b061611e7f0cec01:log:97', 'hash': '0x1000005fa17087f675860e21571acd1beadfb31169c61957b061611e7f0cec01', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 8425.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c8bde9d451502c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:55:16.000Z'}}, {'blockNum': '0xa8fa42', 'uniqueId': '0x6d0d4fa004d3065ef14b818f181ad0521fa1c4a0a045f5c1718e5f79217d9b14:log:55', 'hash': '0x6d0d4fa004d3065ef14b818f181ad0521fa1c4a0a045f5c1718e5f79217d9b14', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 2687.8488746452704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x91b56576a7fcc638f2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:57:20.000Z'}}, {'blockNum': '0xa8fa45', 'uniqueId': '0xfc7cb632436e79f58cc9196cc162876388c1102d16175ffc8b6bde192d58c558:log:80', 'hash': '0xfc7cb632436e79f58cc9196cc162876388c1102d16175ffc8b6bde192d58c558', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 2682.4731768959796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x916acb2608ee700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:58:00.000Z'}}, {'blockNum': '0xa8fa51', 'uniqueId': '0x650c7d7da29fdfd0148ab7982117a3eaf712bf9fb28e6cbf6656ad50f40ca728:log:244', 'hash': '0x650c7d7da29fdfd0148ab7982117a3eaf712bf9fb28e6cbf6656ad50f40ca728', 'from': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17647.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03bca6b58fa833e60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:00:21.000Z'}}, {'blockNum': '0xa8fa95', 'uniqueId': '0x733d4bdf5cabf57241febeb457305b4e785070045c9fb72938a7c16154ec234e:log:35', 'hash': '0x733d4bdf5cabf57241febeb457305b4e785070045c9fb72938a7c16154ec234e', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 9347.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01fac02c32b402060000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:12:35.000Z'}}, {'blockNum': '0xa8faca', 'uniqueId': '0xeca9738034419b4932b28814243b8b784b6c6d41e69cc15e0745bf75bd8f1bf7:log:240', 'hash': '0xeca9738034419b4932b28814243b8b784b6c6d41e69cc15e0745bf75bd8f1bf7', 'from': '0x365cc1f75cf0b70fe780880941d50d29913c0bd9', 'to': '0xf73c3c65bde10bf26c2e1763104e609a41702efe', 'value': 460.3016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18f3f7ca6ae7f20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:25:24.000Z'}}, {'blockNum': '0xa8fad9', 'uniqueId': '0xbbb9affe554bf56b29cdb212e8413001c4870f795de1d49fe0e6929b72a2e048:log:8', 'hash': '0xbbb9affe554bf56b29cdb212e8413001c4870f795de1d49fe0e6929b72a2e048', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 7894.37634788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01abf47ad632c8f71000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:28:16.000Z'}}, {'blockNum': '0xa8fae1', 'uniqueId': '0x962e94a187477118b62e9787d3ff70ab1cceb8786b65b1de3fcd770a2ca3b9dd:log:190', 'hash': '0x962e94a187477118b62e9787d3ff70ab1cceb8786b65b1de3fcd770a2ca3b9dd', 'from': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16104.57671616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x036907e5fda4a7a70000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:30:12.000Z'}}, {'blockNum': '0xa8fae2', 'uniqueId': '0x7531f5a3ac803f140faf81fbfc26ec57c8ea551569eb61ba5b3d70298797d437:log:191', 'hash': '0x7531f5a3ac803f140faf81fbfc26ec57c8ea551569eb61ba5b3d70298797d437', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 2645.4825284988124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8f6971f74d71e909dc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:30:36.000Z'}}, {'blockNum': '0xa8fae3', 'uniqueId': '0x7e1c3c5d642942fc3d4982d1a4aa3f2ee96cbdfddd14962a198854f6a6f843fc:log:25', 'hash': '0x7e1c3c5d642942fc3d4982d1a4aa3f2ee96cbdfddd14962a198854f6a6f843fc', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 6379.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0159dae5ffd752a60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:31:33.000Z'}}, {'blockNum': '0xa8fae6', 'uniqueId': '0x8aa19b073e54b67801a6697cd0a2769dc1764528acca70d4d2907dbef5afea7f:log:116', 'hash': '0x8aa19b073e54b67801a6697cd0a2769dc1764528acca70d4d2907dbef5afea7f', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 2640.1915634418147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8f2004ae9dac900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:32:33.000Z'}}, {'blockNum': '0xa8faed', 'uniqueId': '0x26c2e2bb52993dd437646e78f1ff40e34ced84f980eebe5c790c469f0cf79dcd:log:270', 'hash': '0x26c2e2bb52993dd437646e78f1ff40e34ced84f980eebe5c790c469f0cf79dcd', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 887.1690587715337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3017f1a68792eb236a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:34:42.000Z'}}, {'blockNum': '0xa8faed', 'uniqueId': '0x26c2e2bb52993dd437646e78f1ff40e34ced84f980eebe5c790c469f0cf79dcd:log:271', 'hash': '0x26c2e2bb52993dd437646e78f1ff40e34ced84f980eebe5c790c469f0cf79dcd', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 887.1688955867392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3017f1121d27340000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:34:42.000Z'}}, {'blockNum': '0xa8faf0', 'uniqueId': '0x4d6c91eaceeb9bf2f624520d0da49a9f8bd6d94cfdd4f23c2e09f0729cb2c03f:log:211', 'hash': '0x4d6c91eaceeb9bf2f624520d0da49a9f8bd6d94cfdd4f23c2e09f0729cb2c03f', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 887.6411287288056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x301e7ec7a7933d7b15', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:35:11.000Z'}}, {'blockNum': '0xa8faf0', 'uniqueId': '0x4d6c91eaceeb9bf2f624520d0da49a9f8bd6d94cfdd4f23c2e09f0729cb2c03f:log:212', 'hash': '0x4d6c91eaceeb9bf2f624520d0da49a9f8bd6d94cfdd4f23c2e09f0729cb2c03f', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 887.640969434666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x301e7e36c704a20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:35:11.000Z'}}, {'blockNum': '0xa8fb53', 'uniqueId': '0x439cb9efba2c93ac8f8d4ad0538c273632710951308cc0e0b7fcb24c36337b88:log:2', 'hash': '0x439cb9efba2c93ac8f8d4ad0538c273632710951308cc0e0b7fcb24c36337b88', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 2631.747487065685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8eaad54be3f51a7746', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:58:56.000Z'}}, {'blockNum': '0xa8fb56', 'uniqueId': '0xd0c92276d0b602a46966f9febfdd5d1211af0faa5237072434be3e4449992a85:log:86', 'hash': '0xd0c92276d0b602a46966f9febfdd5d1211af0faa5237072434be3e4449992a85', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 2626.483992091554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8e61c99b1942f00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:59:40.000Z'}}, {'blockNum': '0xa8fb58', 'uniqueId': '0xc27ca48e80d374f8f7b30b9288bd7ae81c4ef5ff3d2d50b3dd67c5c1c04d6c27:log:10', 'hash': '0xc27ca48e80d374f8f7b30b9288bd7ae81c4ef5ff3d2d50b3dd67c5c1c04d6c27', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 4789.840710473679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0103a8649c83184dfaf0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:02.000Z'}}, {'blockNum': '0xa8fb59', 'uniqueId': '0x711b185dc9598ba2335b231c15582a3418e92729043b2269fe3d9087ff4f87ac:log:6', 'hash': '0x711b185dc9598ba2335b231c15582a3418e92729043b2269fe3d9087ff4f87ac', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x2d8e85b308d9cbe0cdd2a9af8a07be39dda22b25', 'value': 13022.056485624647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02c1ed5633dd08c29b37', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:09.000Z'}}, {'blockNum': '0xa8fb5a', 'uniqueId': '0x441b2e719993c312d36ed5036af88c5d369da3f4386daa8c24035ec539ea5f20:log:54', 'hash': '0x441b2e719993c312d36ed5036af88c5d369da3f4386daa8c24035ec539ea5f20', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 3201.3953312184785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad8c48fc0617700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:50.000Z'}}, {'blockNum': '0xa8fb5a', 'uniqueId': '0x201feda1ad00eb8204a773751a1b11a245ded67a9a3d1f96b64386c453fbeb37:log:140', 'hash': '0x201feda1ad00eb8204a773751a1b11a245ded67a9a3d1f96b64386c453fbeb37', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 939.6958340005638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x32f0e63e4d360a9081', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:50.000Z'}}, {'blockNum': '0xa8fb5a', 'uniqueId': '0x201feda1ad00eb8204a773751a1b11a245ded67a9a3d1f96b64386c453fbeb37:log:141', 'hash': '0x201feda1ad00eb8204a773751a1b11a245ded67a9a3d1f96b64386c453fbeb37', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 939.6956546240192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x32f0e59b28dad20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:50.000Z'}}, {'blockNum': '0xa8fb5a', 'uniqueId': '0x4a2a6e7ee8a38d39cf9d16b8a1b92917fae6edb33df0a2732ff79a865aa9996d:log:234', 'hash': '0x4a2a6e7ee8a38d39cf9d16b8a1b92917fae6edb33df0a2732ff79a865aa9996d', 'from': '0x2d8e85b308d9cbe0cdd2a9af8a07be39dda22b25', 'to': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'value': 13022.056485624647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02c1ed5633dd08c29b37', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:50.000Z'}}, {'blockNum': '0xa8fb5b', 'uniqueId': '0xb9e130590f0b1d963cf7315e7c8ba165984ecb61082df6ac6340186f5d03645e:log:12', 'hash': '0xb9e130590f0b1d963cf7315e7c8ba165984ecb61082df6ac6340186f5d03645e', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 8354.3388098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c4e3bdc4543cb3d000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:43.000Z'}}, {'blockNum': '0xa8fb5c', 'uniqueId': '0x6659730374313e3a0f77fe660cefc169ce538277422cd9f4da65c319e8f914b6:log:27', 'hash': '0x6659730374313e3a0f77fe660cefc169ce538277422cd9f4da65c319e8f914b6', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0x0000000094acb89a43eac2fbb3a07973efc2435c', 'value': 2176.7299740636113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7600325a99e6cf247a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:47.000Z'}}, {'blockNum': '0xa8fb5c', 'uniqueId': '0x6659730374313e3a0f77fe660cefc169ce538277422cd9f4da65c319e8f914b6:log:28', 'hash': '0x6659730374313e3a0f77fe660cefc169ce538277422cd9f4da65c319e8f914b6', 'from': '0x0000000094acb89a43eac2fbb3a07973efc2435c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 2176.7299740636113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7600325a99e6cf247a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:47.000Z'}}, {'blockNum': '0xa8fb5c', 'uniqueId': '0xb61563ee41ed0096c9bc6fc17a1bac4c8dee52c3ac6bd3786e5d972b40c43962:log:229', 'hash': '0xb61563ee41ed0096c9bc6fc17a1bac4c8dee52c3ac6bd3786e5d972b40c43962', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1613.9706008140015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x577e576e41f256d734', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:47.000Z'}}, {'blockNum': '0xa8fb5d', 'uniqueId': '0xdc9b8a62a3d4b6f3da0c7b7e53b728a604d6a301c1aae51170ba937784fcdd4d:log:84', 'hash': '0xdc9b8a62a3d4b6f3da0c7b7e53b728a604d6a301c1aae51170ba937784fcdd4d', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0x000000000025d4386f7fb58984cbe110aee3a4c4', 'value': 1193.3146092875588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40b09122b1fcfeeded', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:54.000Z'}}, {'blockNum': '0xa8fb5d', 'uniqueId': '0xdc9b8a62a3d4b6f3da0c7b7e53b728a604d6a301c1aae51170ba937784fcdd4d:log:85', 'hash': '0xdc9b8a62a3d4b6f3da0c7b7e53b728a604d6a301c1aae51170ba937784fcdd4d', 'from': '0x000000000025d4386f7fb58984cbe110aee3a4c4', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1193.3146092875588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40b09122b1fcfeeded', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:54.000Z'}}, {'blockNum': '0xa8fb5f', 'uniqueId': '0xe4d451fab7a2874bba0c55c57f1a9001eafacd4e1ce92075ec3f2d81b55774db:log:27', 'hash': '0xe4d451fab7a2874bba0c55c57f1a9001eafacd4e1ce92075ec3f2d81b55774db', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 3693.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc83dc5c968a9e40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:02:06.000Z'}}, {'blockNum': '0xa8fb65', 'uniqueId': '0x03dcaf2fef2d5d362ba589ec766f16fec8fb20953237bf24bcdd777de76d5d6a:log:141', 'hash': '0x03dcaf2fef2d5d362ba589ec766f16fec8fb20953237bf24bcdd777de76d5d6a', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0xdbcdc48dafe87472a2091d083146c815aa171d3f', 'value': 1613.9706008140015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x577e576e41f256d734', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:02:58.000Z'}}, {'blockNum': '0xa8fb6e', 'uniqueId': '0x9785d55c36ef02722fbb158a56a934d6e401684e877d57e2b4ef3eabb77cc310:log:155', 'hash': '0x9785d55c36ef02722fbb158a56a934d6e401684e877d57e2b4ef3eabb77cc310', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 3509.380443638334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xbe3e6fe7fe9da893e3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:04:54.000Z'}}, {'blockNum': '0xa8fb79', 'uniqueId': '0x8d78ded9ae219cb2a7786cc7e201cb02f55004d765b3696d7cd5840fbf6ca02f:log:110', 'hash': '0x8d78ded9ae219cb2a7786cc7e201cb02f55004d765b3696d7cd5840fbf6ca02f', 'from': '0xa9fb5d1dcba90428088c8c543ebabad4726d9c1f', 'to': '0x73a323c8d4062f019efb726b9df8db706788e90a', 'value': 12386.95019156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x029f7f77625956a7d000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:06:51.000Z'}}, {'blockNum': '0xa8fb7b', 'uniqueId': '0x8d5219d41225409bda52f24fec23d4b803b99f3b8e8ea86cbfdcfb4a147aabda:log:57', 'hash': '0x8d5219d41225409bda52f24fec23d4b803b99f3b8e8ea86cbfdcfb4a147aabda', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 1993.8410352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c161a51b11d1d8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:07:23.000Z'}}, {'blockNum': '0xa8fb7c', 'uniqueId': '0xe9cd3a578ee1a3bf26d6129056cb655ad739a8f180121a63ba05db9816814907:log:37', 'hash': '0xe9cd3a578ee1a3bf26d6129056cb655ad739a8f180121a63ba05db9816814907', 'from': '0x73a323c8d4062f019efb726b9df8db706788e90a', 'to': '0x32e9dc9968fab4c4528165cd37b613dd5d229650', 'value': 12386.95019156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x029f7f77625956a7d000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:07:31.000Z'}}, {'blockNum': '0xa8fbb9', 'uniqueId': '0x9e5543387b5f95f5ab3a6f2dee6bb975229f6635941eeadbc7ccf90c457b7c4b:log:80', 'hash': '0x9e5543387b5f95f5ab3a6f2dee6bb975229f6635941eeadbc7ccf90c457b7c4b', 'from': '0xd11c25af01d25e5ff28a6a5760db795dafbb3d9d', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 11568.613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x027322c1a65c86108000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:09.000Z'}}, {'blockNum': '0xa8fbb9', 'uniqueId': '0x6ae1877b6b02129f85f00275affab801d3e2b6cdeea5f4bf533ead06f8a5f9fe:log:89', 'hash': '0x6ae1877b6b02129f85f00275affab801d3e2b6cdeea5f4bf533ead06f8a5f9fe', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'value': 1763.5988000946252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5f9ad994bd39459aa6', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:09.000Z'}}, {'blockNum': '0xa8fbb9', 'uniqueId': '0x6ae1877b6b02129f85f00275affab801d3e2b6cdeea5f4bf533ead06f8a5f9fe:log:95', 'hash': '0x6ae1877b6b02129f85f00275affab801d3e2b6cdeea5f4bf533ead06f8a5f9fe', 'from': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 1763.5988000946252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5f9ad994bd39459aa6', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:09.000Z'}}, {'blockNum': '0xa8fbbb', 'uniqueId': '0x51509b657b4a12cb01e592983c6a73fcfef0b3c00d9322af0760bbee950b2168:log:259', 'hash': '0x51509b657b4a12cb01e592983c6a73fcfef0b3c00d9322af0760bbee950b2168', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 974.7458636748125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x34d750f6965a899802', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:38.000Z'}}, {'blockNum': '0xa8fbbb', 'uniqueId': '0x51509b657b4a12cb01e592983c6a73fcfef0b3c00d9322af0760bbee950b2168:log:264', 'hash': '0x51509b657b4a12cb01e592983c6a73fcfef0b3c00d9322af0760bbee950b2168', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 974.7458352341208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x34d750dcb87d360000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:38.000Z'}}, {'blockNum': '0xa8fbe3', 'uniqueId': '0x95a30ccd49dc10d742c4518de8983d6301702e7d9ed28a449ee9cd4c8ede82bd:log:157', 'hash': '0x95a30ccd49dc10d742c4518de8983d6301702e7d9ed28a449ee9cd4c8ede82bd', 'from': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20749.25970527027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0464d1d2c7a760d0bc82', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:30:12.000Z'}}, {'blockNum': '0xa8fbe4', 'uniqueId': '0xcb8cc12c582d404f79cb789c0cd3ab62895facce460a6db4eadb431db699bfac:log:57', 'hash': '0xcb8cc12c582d404f79cb789c0cd3ab62895facce460a6db4eadb431db699bfac', 'from': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19421.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x041cd8d7fbf3fe900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:30:25.000Z'}}, {'blockNum': '0xa8fd1a', 'uniqueId': '0xbc0ae2576af43938bee82c793904d20f078f417874d70bfda61d00a225dbb900:log:69', 'hash': '0xbc0ae2576af43938bee82c793904d20f078f417874d70bfda61d00a225dbb900', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1599.46593305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x56b50c7fc677f94400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T17:38:01.000Z'}}, {'blockNum': '0xa8fd23', 'uniqueId': '0xe116739550bbdb050227e84610dbba8b83320012d436c0ff134c211c03af3f5f:log:168', 'hash': '0xe116739550bbdb050227e84610dbba8b83320012d436c0ff134c211c03af3f5f', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1599.46593305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x56b50c7fc677f94400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T17:41:08.000Z'}}, {'blockNum': '0xa8fd71', 'uniqueId': '0xb260332d40bc2f292604854fd97203ad2d094b2a6582651890db3f561f5578ab:log:64', 'hash': '0xb260332d40bc2f292604854fd97203ad2d094b2a6582651890db3f561f5578ab', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa9fb5d1dcba90428088c8c543ebabad4726d9c1f', 'value': 12386.9501916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x029f7f776262a6d76000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T17:54:38.000Z'}}, {'blockNum': '0xa8fd9a', 'uniqueId': '0x18432c7966c37a0ecf8d32b6df9c771c2d6849e59a97125e64f89098da5d1c87:log:42', 'hash': '0x18432c7966c37a0ecf8d32b6df9c771c2d6849e59a97125e64f89098da5d1c87', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1837.14599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x639785b95fcdbd1c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:03:43.000Z'}}, {'blockNum': '0xa8fd9e', 'uniqueId': '0x06ebf5101bd777ed0be77d643bdc736f6554afef4e4621587e5060f34aad4744:log:118', 'hash': '0x06ebf5101bd777ed0be77d643bdc736f6554afef4e4621587e5060f34aad4744', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1837.14599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x639785b95fcdbd1c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:05:01.000Z'}}, {'blockNum': '0xa8fdd7', 'uniqueId': '0x3eff27499b6e764df7f4d23310188a711591afc91c18127872ef481a9399e901:log:72', 'hash': '0x3eff27499b6e764df7f4d23310188a711591afc91c18127872ef481a9399e901', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 11686.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0279813752637c620000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:18:22.000Z'}}, {'blockNum': '0xa8fddb', 'uniqueId': '0x9873639deddc080652f16c655ac15e3007e09044dc2a5f8780cf70c9720415d2:log:50', 'hash': '0x9873639deddc080652f16c655ac15e3007e09044dc2a5f8780cf70c9720415d2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1879.104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65ddce7c148fa00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:19:33.000Z'}}, {'blockNum': '0xa8fde5', 'uniqueId': '0xe4d55183ef1ad3d4c54ee20698de9fbe7bce3432b4da9ea323b029271e535cc5:log:191', 'hash': '0xe4d55183ef1ad3d4c54ee20698de9fbe7bce3432b4da9ea323b029271e535cc5', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1879.104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65ddce7c148fa00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:21:35.000Z'}}, {'blockNum': '0xa8fdf0', 'uniqueId': '0x7ba9271bd4936b369c3b67c3cc1127cacde4377e4523430fb94a8d9e1bd262e7:log:118', 'hash': '0x7ba9271bd4936b369c3b67c3cc1127cacde4377e4523430fb94a8d9e1bd262e7', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x175789024955c56b06a618806fc13df71d08a377', 'value': 677.5348879279103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x24baaf76d635314d39', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:24:27.000Z'}}, {'blockNum': '0xa8fdf0', 'uniqueId': '0x7ba9271bd4936b369c3b67c3cc1127cacde4377e4523430fb94a8d9e1bd262e7:log:124', 'hash': '0x7ba9271bd4936b369c3b67c3cc1127cacde4377e4523430fb94a8d9e1bd262e7', 'from': '0x175789024955c56b06a618806fc13df71d08a377', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 677.5348879279103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x24baaf76d635314d39', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:24:27.000Z'}}, {'blockNum': '0xa8fdfe', 'uniqueId': '0x505df4aba9a6508935f26c5a5b3fca5d98f4a5fbb565fbe9558c26e0bb6473ed:log:33', 'hash': '0x505df4aba9a6508935f26c5a5b3fca5d98f4a5fbb565fbe9558c26e0bb6473ed', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1880.10300001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65ebaba54be6496400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:28:22.000Z'}}, {'blockNum': '0xa8fe07', 'uniqueId': '0x408e26c0149f32636a4cbf114bfaa56b80f3be4d4ab9675c16e9d6b80f1aa112:log:61', 'hash': '0x408e26c0149f32636a4cbf114bfaa56b80f3be4d4ab9675c16e9d6b80f1aa112', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1880.10300001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65ebaba54be6496400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:30:17.000Z'}}, {'blockNum': '0xa8fe2e', 'uniqueId': '0x204e520d00f891098d4949f426a864a20ffbf033a5975180a4bfb0d8c48393c9:log:24', 'hash': '0x204e520d00f891098d4949f426a864a20ffbf033a5975180a4bfb0d8c48393c9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1881.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65f988ce7e94db0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:40:49.000Z'}}, {'blockNum': '0xa8fe35', 'uniqueId': '0xd6ded337a1cbdecf30cc7b3f1b6db7d6825edb06b048bd5a967112a2ab2050d1:log:260', 'hash': '0xd6ded337a1cbdecf30cc7b3f1b6db7d6825edb06b048bd5a967112a2ab2050d1', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1881.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65f988ce7e94db0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:43:34.000Z'}}, {'blockNum': '0xa8fe38', 'uniqueId': '0x5a59e24340af8e9ad47df0dc0c4dd54e2b12c7dcf174748e64f4816966f33ad6:log:105', 'hash': '0x5a59e24340af8e9ad47df0dc0c4dd54e2b12c7dcf174748e64f4816966f33ad6', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xc96cb511b6fa594cc4d2d8542f7f56de1a25f69c', 'value': 713.1737971905725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26a9464dfcf48c7f2d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:45:19.000Z'}}, {'blockNum': '0xa8fe38', 'uniqueId': '0x5a59e24340af8e9ad47df0dc0c4dd54e2b12c7dcf174748e64f4816966f33ad6:log:110', 'hash': '0x5a59e24340af8e9ad47df0dc0c4dd54e2b12c7dcf174748e64f4816966f33ad6', 'from': '0xc96cb511b6fa594cc4d2d8542f7f56de1a25f69c', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 713.1737971905725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26a9464dfcf48c7f2d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:45:19.000Z'}}, {'blockNum': '0xa8fe68', 'uniqueId': '0x7e77db2e2530933c46d1c555415d5cfdcfe0398a37e50f8a5aafac3a2bb03b14:log:5', 'hash': '0x7e77db2e2530933c46d1c555415d5cfdcfe0398a37e50f8a5aafac3a2bb03b14', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1899.08399999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x66f315b4366fe21c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:55:04.000Z'}}, {'blockNum': '0xa8fe6f', 'uniqueId': '0xa89977bfb87e7701dc1cb10fa04bd2c4f361a468a625e4c00d1f31e488d51e9b:log:209', 'hash': '0xa89977bfb87e7701dc1cb10fa04bd2c4f361a468a625e4c00d1f31e488d51e9b', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1899.08399999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x66f315b4366fe21c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:56:04.000Z'}}, {'blockNum': '0xa8fe96', 'uniqueId': '0xf86cd30b887f11f80661f9232223c3af8e521947b1cd44d9175c17d823ee8dbf:log:34', 'hash': '0xf86cd30b887f11f80661f9232223c3af8e521947b1cd44d9175c17d823ee8dbf', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1883.10000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x66154320eaee21e400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T19:04:02.000Z'}}, {'blockNum': '0xa8feba', 'uniqueId': '0xa61015ee1c8683e6a5b6da02bf157ef8bfe77ed94a101ab18674492dac83424c:log:355', 'hash': '0xa61015ee1c8683e6a5b6da02bf157ef8bfe77ed94a101ab18674492dac83424c', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 1881.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65f988ce7e94db0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T19:11:49.000Z'}}, {'blockNum': '0xa8feba', 'uniqueId': '0xa61015ee1c8683e6a5b6da02bf157ef8bfe77ed94a101ab18674492dac83424c:log:359', 'hash': '0xa61015ee1c8683e6a5b6da02bf157ef8bfe77ed94a101ab18674492dac83424c', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 1881.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65f988ce7e94db0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T19:11:49.000Z'}}, {'blockNum': '0xa900ab', 'uniqueId': '0x442158d91715599e2fe8e22565cabbe58cce847174adc7f38775aca5ee624ef0:log:269', 'hash': '0x442158d91715599e2fe8e22565cabbe58cce847174adc7f38775aca5ee624ef0', 'from': '0x6a12a09de38346d13f55879e31476b0c53cd2f08', 'to': '0xa33a8b1171941b4eb04a57605dccdeffd4860eb8', 'value': 49.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02b1b9dead98ea0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T21:07:05.000Z'}}, {'blockNum': '0xa901ad', 'uniqueId': '0x4e8bc891652ab5f9f2057ab776d5174a0a7037a79d937472af19be8c4786bc68:log:35', 'hash': '0x4e8bc891652ab5f9f2057ab776d5174a0a7037a79d937472af19be8c4786bc68', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5fc7467f7b58fba859231c0df65c78d17271931f', 'value': 5790.189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0139e303a9c38e448000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:02:46.000Z'}}, {'blockNum': '0xa901b1', 'uniqueId': '0x5339298a5dc9d51c7f1973a36da2da52588bb25c8d3b2e00fcb45cc0b001157f:log:45', 'hash': '0x5339298a5dc9d51c7f1973a36da2da52588bb25c8d3b2e00fcb45cc0b001157f', 'from': '0x5fc7467f7b58fba859231c0df65c78d17271931f', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 5790.189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0139e303a9c38e448000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:03:26.000Z'}}, {'blockNum': '0xa901b1', 'uniqueId': '0x1eea785f1dc112a0a54d976989290e5cd5dcbccf88177fdec84828dac31a120c:log:60', 'hash': '0x1eea785f1dc112a0a54d976989290e5cd5dcbccf88177fdec84828dac31a120c', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 941.1110033730682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x330489ef59172daa71', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:03:26.000Z'}}, {'blockNum': '0xa901b1', 'uniqueId': '0x1eea785f1dc112a0a54d976989290e5cd5dcbccf88177fdec84828dac31a120c:log:65', 'hash': '0x1eea785f1dc112a0a54d976989290e5cd5dcbccf88177fdec84828dac31a120c', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 941.1109779568085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x330489d83b680c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:03:26.000Z'}}, {'blockNum': '0xa901ba', 'uniqueId': '0xf53913775fc7871ed7ed3d7b4c820a31177d891e95cceb531f8a3c659227d4f5:log:0', 'hash': '0xf53913775fc7871ed7ed3d7b4c820a31177d891e95cceb531f8a3c659227d4f5', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0xbd0e6a324df058e2581506101a50a7596fe623ed', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:04:38.000Z'}}, {'blockNum': '0xa901c3', 'uniqueId': '0xb0c1629f181e1e41b74546289ecf862fda95b53fb7bbc4f80fcd6cfacc70584c:log:130', 'hash': '0xb0c1629f181e1e41b74546289ecf862fda95b53fb7bbc4f80fcd6cfacc70584c', 'from': '0xa33a8b1171941b4eb04a57605dccdeffd4860eb8', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 49.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02b1b9dead98ea0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:06:40.000Z'}}, {'blockNum': '0xa904bd', 'uniqueId': '0xe296d2949528668e27219e9fb31e762337b52fa95b7d182bedb2393e4292cf54:log:264', 'hash': '0xe296d2949528668e27219e9fb31e762337b52fa95b7d182bedb2393e4292cf54', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0x9198b2637af936766e85a888d6097492a50bf3e8', 'value': 267.26938943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e7d1b9da1f6b11c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T00:46:56.000Z'}}]}}
Number of returned transfers: 105
Answer is complete
symbol OAX
group CPS
date 2020-10-18
hour 18:00
exchange binance
Name: 426, dtype: object
HERE
Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps: 2020-10-18 18:00:00 2020-10-18 06:00:00 2020-10-19 06:00:00
Unix timestamps: 1602993600.0 1603080000.0
Hex Block Numbers: 0xa907f1 0xa92179
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa908ed', 'uniqueId': '0x23938febf4113b193224996e6db40316427467d4dfaca508db97bf55cdc3d48c:log:88', 'hash': '0x23938febf4113b193224996e6db40316427467d4dfaca508db97bf55cdc3d48c', 'from': '0x8c4c8f72d73430e2ef0d5afd90265751b84d0b25', 'to': '0x0e9980103475065b8b850866d7aa9dfed6ffcca3', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T04:56:29.000Z'}}, {'blockNum': '0xa909a8', 'uniqueId': '0x1b1bb38971c8ddeef1761bcaf21008303a0df420e539e311b7a64fb851de157d:log:0', 'hash': '0x1b1bb38971c8ddeef1761bcaf21008303a0df420e539e311b7a64fb851de157d', 'from': '0x0e9980103475065b8b850866d7aa9dfed6ffcca3', 'to': '0x8c4c8f72d73430e2ef0d5afd90265751b84d0b25', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T05:33:11.000Z'}}, {'blockNum': '0xa90b9a', 'uniqueId': '0x8f656315f34b7e18267fdd9c6542ae2b9496a021a9a64b0871dcaa9c93c5f60b:log:16', 'hash': '0x8f656315f34b7e18267fdd9c6542ae2b9496a021a9a64b0871dcaa9c93c5f60b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa91ac30cb51dd424346889b558faf56f32de2004', 'value': 2650.3261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x8faca9c9eba6694000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T07:25:36.000Z'}}, {'blockNum': '0xa90bbd', 'uniqueId': '0xce66762e73e860990551c69d13b523a1f8cb8ddddfdd575e8a96b9b5072d910e:log:16', 'hash': '0xce66762e73e860990551c69d13b523a1f8cb8ddddfdd575e8a96b9b5072d910e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 189569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x28248e5b606469640000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T07:35:12.000Z'}}, {'blockNum': '0xa916d6', 'uniqueId': '0x71bea97e3657e91b92021f857a4542b4e8ef78049dee457e942d5513515df4bd:log:2', 'hash': '0x71bea97e3657e91b92021f857a4542b4e8ef78049dee457e942d5513515df4bd', 'from': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'to': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'value': 19298.212457410198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0416287f5fb3f109354b', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T18:02:03.000Z'}}, {'blockNum': '0xa916d9', 'uniqueId': '0xd23334b937f4ff10b5a4feccf3993f008fe66a5b443923b5723c60314221d384:log:0', 'hash': '0xd23334b937f4ff10b5a4feccf3993f008fe66a5b443923b5723c60314221d384', 'from': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'to': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'value': 19298.212457410198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0416287f5fb3f109354b', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T18:02:56.000Z'}}, {'blockNum': '0xa917f0', 'uniqueId': '0xfe59f5d852b5756e7de5698b463464d45fb060ba6959b15335f54560a2e916bb:log:59', 'hash': '0xfe59f5d852b5756e7de5698b463464d45fb060ba6959b15335f54560a2e916bb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1550318d0bc8938b3ad0a2b000e00e14747742c0', 'value': 5036.14829448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01110298ef2c1dbd2000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:01:22.000Z'}}, {'blockNum': '0xa917f5', 'uniqueId': '0xc8a3ab3132b5039dcda3d79aaf5e4f61bb5594bc4577b6158029885b84ab8ec9:log:6', 'hash': '0xc8a3ab3132b5039dcda3d79aaf5e4f61bb5594bc4577b6158029885b84ab8ec9', 'from': '0x1550318d0bc8938b3ad0a2b000e00e14747742c0', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 5036.14829448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01110298ef2c1dbd2000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:02:47.000Z'}}, {'blockNum': '0xa91807', 'uniqueId': '0xd08ecb3f367c7845cdecea21313836052e3567787d353f811288788aaded25a4:log:32', 'hash': '0xd08ecb3f367c7845cdecea21313836052e3567787d353f811288788aaded25a4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 10302.643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x022e81e4b6c208cb8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:06:07.000Z'}}, {'blockNum': '0xa9180f', 'uniqueId': '0xecddf61377379f0e6a3fa839ad5dba2d2d4e47bdca50c030d2bf3a2e2538620a:log:16', 'hash': '0xecddf61377379f0e6a3fa839ad5dba2d2d4e47bdca50c030d2bf3a2e2538620a', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 10302.643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x022e81e4b6c208cb8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:08:50.000Z'}}, {'blockNum': '0xa9182b', 'uniqueId': '0xcf149337445237ce6a91852c4ec87001b1777bce7fff35e9cf448e1da13cba7c:log:23', 'hash': '0xcf149337445237ce6a91852c4ec87001b1777bce7fff35e9cf448e1da13cba7c', 'from': '0x1b6c1a0e20af81b922cb454c3e52408496ee7201', 'to': '0xee61f5fb0db81d3a09392375ee96f723c0620e07', 'value': 6237.16825793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01521e18fca7539ee400', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:16:33.000Z'}}, {'blockNum': '0xa91bd7', 'uniqueId': '0xcc6e5ee8a2e052e9a39ff7fc4a6a6bb1c91dd0ebd360fbc62acf47ca1dda9084:log:134', 'hash': '0xcc6e5ee8a2e052e9a39ff7fc4a6a6bb1c91dd0ebd360fbc62acf47ca1dda9084', 'from': '0x8c4c8f72d73430e2ef0d5afd90265751b84d0b25', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T22:47:53.000Z'}}, {'blockNum': '0xa91c37', 'uniqueId': '0x0e2bb80d72f1c2882936c80e271d7cb1942dbcedaa15fc9a87ebe2b34c894532:log:248', 'hash': '0x0e2bb80d72f1c2882936c80e271d7cb1942dbcedaa15fc9a87ebe2b34c894532', 'from': '0x8c4c8f72d73430e2ef0d5afd90265751b84d0b25', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 1109.7472995507262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x3c28d6693f8a0c9a5a', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T23:10:16.000Z'}}]}}
Number of returned transfers: 13
Answer is complete
symbol PPT
group CPS
date 2020-10-21
hour 18:00
exchange binance
Name: 427, dtype: object
HERE
{'binance-smart-chain': '0xdf061250302e5ccae091b18ca2b45914d785f214'}
No contract for ethereum specified
Symbol: PPT, Contract: 0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a
Datetime timestamps: 2020-10-21 18:00:00 2020-10-21 06:00:00 2020-10-22 06:00:00
Unix timestamps: 1603252800.0 1603339200.0
Hex Block Numbers: 0xa9547d 0xa96de5
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa954fb', 'uniqueId': '0xf733f06449a7a4ddfa98ab56c953d355dce3e17ec33712a89e911d9292322c52:log:221', 'hash': '0xf733f06449a7a4ddfa98ab56c953d355dce3e17ec33712a89e911d9292322c52', 'from': '0x8e482bf2b636a34fe9626f82e88d409df362ec97', 'to': '0xc50efa7c786d83d6f010c802bf513d1183eb90aa', 'value': 642.444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ef543bf80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T04:29:41.000Z'}}, {'blockNum': '0xa95783', 'uniqueId': '0x66909a438c4cafd96e4f8140bf527bc617b72264f91422975dcddaf591b45e00:log:14', 'hash': '0x66909a438c4cafd96e4f8140bf527bc617b72264f91422975dcddaf591b45e00', 'from': '0xd6c57c37e56aa4816d9cc1927a34bc1c771f8f59', 'to': '0xabce47738cbf51f78b517ddc7fe6b96534fc243c', 'value': 10006.772051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe8fd02646c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T06:50:43.000Z'}}, {'blockNum': '0xa95915', 'uniqueId': '0xffed573350dbba26494b13f431b00092ef0709be6e0ac3a651fbe93c851000a3:log:51', 'hash': '0xffed573350dbba26494b13f431b00092ef0709be6e0ac3a651fbe93c851000a3', 'from': '0x45cc4b3bbf7ad6e45aba730538ca4eacf180aef1', 'to': '0x0a1f9fe037dd61c687a68821d0c2843d1a17c105', 'value': 1776.4500043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x295c7796ee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T08:19:05.000Z'}}, {'blockNum': '0xa95c75', 'uniqueId': '0x27fe2f8578660f3f5c18e705dff57e89ea007d2b1a10a6d6a062078ca4ea432f:log:20', 'hash': '0x27fe2f8578660f3f5c18e705dff57e89ea007d2b1a10a6d6a062078ca4ea432f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2217bf2502f2482b2ce1e39f9eebf4e649d46803', 'value': 96.03505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x023c69db68', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T11:34:20.000Z'}}, {'blockNum': '0xa95c8e', 'uniqueId': '0x506da9d5ffded5a70f386eae807782dc6611297458d6a6e5b3946d54f51416a3:log:238', 'hash': '0x506da9d5ffded5a70f386eae807782dc6611297458d6a6e5b3946d54f51416a3', 'from': '0xc8c09eaa6d46fbd4277106a8c14178d45e90dbba', 'to': '0x65fc1551d002fb5b219d5374252d6642642040fa', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T11:40:25.000Z'}}, {'blockNum': '0xa95ca0', 'uniqueId': '0xa92518e2d547a8d1b26f45cdfe3204f904639855bfd12d5200c9005cd481d6f3:log:209', 'hash': '0xa92518e2d547a8d1b26f45cdfe3204f904639855bfd12d5200c9005cd481d6f3', 'from': '0x65fc1551d002fb5b219d5374252d6642642040fa', 'to': '0x24ba1542f8a0a20e8251d096213384cfb0ee3dbc', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T11:43:31.000Z'}}, {'blockNum': '0xa95cf8', 'uniqueId': '0x53d0425688cffaf05a7af60f2263961d25c45a7a2aa7fc7d17ac2078322afafa:log:52', 'hash': '0x53d0425688cffaf05a7af60f2263961d25c45a7a2aa7fc7d17ac2078322afafa', 'from': '0xabce47738cbf51f78b517ddc7fe6b96534fc243c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10006.772051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe8fd02646c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T12:00:18.000Z'}}, {'blockNum': '0xa95d3b', 'uniqueId': '0x1a809e49d4dcfe1e8baed3dec04b4ece3948c90e45c1f4dbdf5d7f4181a7f0f8:log:104', 'hash': '0x1a809e49d4dcfe1e8baed3dec04b4ece3948c90e45c1f4dbdf5d7f4181a7f0f8', 'from': '0xafe9b0061fd857b05425e98d89672acf60461d63', 'to': '0x4490365c6750515b502850dfd30c58dcd5d807c9', 'value': 1604.66397831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x255c8aea87', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T12:13:21.000Z'}}, {'blockNum': '0xa95d46', 'uniqueId': '0xf53c80b13937a701f55e3253eaee29299ceeedef3c727e2cbac2b69d90a7169d:log:42', 'hash': '0xf53c80b13937a701f55e3253eaee29299ceeedef3c727e2cbac2b69d90a7169d', 'from': '0xafe9b0061fd857b05425e98d89672acf60461d63', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 534.88799277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0c742e4e2d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T12:15:07.000Z'}}, {'blockNum': '0xa95d4d', 'uniqueId': '0xf2c8798a8d7cb1cecade89145b9197e76afd57512d37e5e58a8cc45e8fa09734:log:123', 'hash': '0xf2c8798a8d7cb1cecade89145b9197e76afd57512d37e5e58a8cc45e8fa09734', 'from': '0x4490365c6750515b502850dfd30c58dcd5d807c9', 'to': '0x777634c1f8cb1a39c351ba19a3dd3643929ba5e4', 'value': 1604.66397831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x255c8aea87', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T12:16:32.000Z'}}, {'blockNum': '0xa95de2', 'uniqueId': '0x77f64369137098be2140aa4c8ab50a25cfeec117b584b41319907cca0b41715d:log:206', 'hash': '0x77f64369137098be2140aa4c8ab50a25cfeec117b584b41319907cca0b41715d', 'from': '0x4e6e194f41bf8b462105065cd5a99751392c3008', 'to': '0xa89a1278ac85367f38bdf6746658ce2b9875526e', 'value': 150.23865491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x037f7dfe93', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T12:48:20.000Z'}}, {'blockNum': '0xa95f3e', 'uniqueId': '0x4e92c0355d18f88127ee6bca5fbd0de22014c3a73041246b5f5c06158ffc39d7:log:251', 'hash': '0x4e92c0355d18f88127ee6bca5fbd0de22014c3a73041246b5f5c06158ffc39d7', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xfbc2a1da2a8d36004bfe4105245eca89e656be75', 'value': 186.7403365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04590f23f2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T14:06:46.000Z'}}, {'blockNum': '0xa95fdd', 'uniqueId': '0x3fd06730d027a03d37cbccde5a42efaf8087ab76b6b70d385e6cc4f3347ca631:log:52', 'hash': '0x3fd06730d027a03d37cbccde5a42efaf8087ab76b6b70d385e6cc4f3347ca631', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4d3b19858b9b70d5c67a84e23589a3a9e2077765', 'value': 136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x032a9f8800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T14:43:11.000Z'}}, {'blockNum': '0xa96046', 'uniqueId': '0x8a60a9f284235def94f7685927c8da6ab3834e691aeac1e2ba25b0b98e6bc429:log:201', 'hash': '0x8a60a9f284235def94f7685927c8da6ab3834e691aeac1e2ba25b0b98e6bc429', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4d3b19858b9b70d5c67a84e23589a3a9e2077765', 'value': 78510.14986835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0723f4f59c53', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T15:08:21.000Z'}}, {'blockNum': '0xa96111', 'uniqueId': '0x694249c72ffdc7f6d9e2513e338fc93391ccb1766ea061e00e4fa676fc388804:log:277', 'hash': '0x694249c72ffdc7f6d9e2513e338fc93391ccb1766ea061e00e4fa676fc388804', 'from': '0xf68ab127080d0784c25f4cbfe01d7c4ed64eaf68', 'to': '0x84ed30994c919cc35652e46b1278709347dcbd99', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T15:50:14.000Z'}}, {'blockNum': '0xa9622e', 'uniqueId': '0x129674a5f1282e3c67ac94ac59b5e6d7afd49d4205677d25294e90f0d01d1261:log:265', 'hash': '0x129674a5f1282e3c67ac94ac59b5e6d7afd49d4205677d25294e90f0d01d1261', 'from': '0x75fd9c718302bf04e70db74d68fb43fe97854fc2', 'to': '0xb3612d04f0f3f25685dc0ffed3095e920f7fb350', 'value': 781.91464038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1234930e66', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T16:52:22.000Z'}}, {'blockNum': '0xa9623d', 'uniqueId': '0xc3fc737dcc9e99b6ff67a9d8b127dc19b10b9894987a89e4cbf9fc9dd5723b06:log:360', 'hash': '0xc3fc737dcc9e99b6ff67a9d8b127dc19b10b9894987a89e4cbf9fc9dd5723b06', 'from': '0xb3612d04f0f3f25685dc0ffed3095e920f7fb350', 'to': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'value': 781.91464038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1234930e66', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T16:57:20.000Z'}}, {'blockNum': '0xa9631a', 'uniqueId': '0x3b67d4e3139c32e4f06bead1a749fbf656375f5bba812c54ed86243dceff2512:log:157', 'hash': '0x3b67d4e3139c32e4f06bead1a749fbf656375f5bba812c54ed86243dceff2512', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xeed6d8684f0199cc447fefcdb343d85a05d24d32', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T17:45:08.000Z'}}, {'blockNum': '0xa96346', 'uniqueId': '0x316fad5dd9c77529c7121f17f78e7ca44da2ef6ec85d3c19adafaf51aee77081:log:35', 'hash': '0x316fad5dd9c77529c7121f17f78e7ca44da2ef6ec85d3c19adafaf51aee77081', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x1448be8f5fef7448ade238d5e0e6337e374b1a68', 'value': 58.244115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x015b29776c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T17:56:20.000Z'}}, {'blockNum': '0xa96391', 'uniqueId': '0x3f2625fecbbd9dc84274ec22da6ff9c9cd03c9a8c85f8a20f8fcaf017478a5ca:log:174', 'hash': '0x3f2625fecbbd9dc84274ec22da6ff9c9cd03c9a8c85f8a20f8fcaf017478a5ca', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x2d0cb18f6c438ccce7debfdedb9018b2d08e5425', 'value': 772.2410591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11faea57b6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:13:20.000Z'}}, {'blockNum': '0xa963dc', 'uniqueId': '0x12ffc236a2ca8f9de597e732bdd45904d714be4a7f2c9240169df65a4d5eb6b4:log:190', 'hash': '0x12ffc236a2ca8f9de597e732bdd45904d714be4a7f2c9240169df65a4d5eb6b4', 'from': '0x84ed30994c919cc35652e46b1278709347dcbd99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:30:20.000Z'}}, {'blockNum': '0xa963e8', 'uniqueId': '0x19aa7811e4a516a5e45e858e12bb78ef7674ecaf4cbd896bb52409e2ce7252cb:log:307', 'hash': '0x19aa7811e4a516a5e45e858e12bb78ef7674ecaf4cbd896bb52409e2ce7252cb', 'from': '0x2d0cb18f6c438ccce7debfdedb9018b2d08e5425', 'to': '0x1eb0fd75d347a4faaaeed9653c3d148738b8ea50', 'value': 372.2410591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08aabac7b6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:32:45.000Z'}}, {'blockNum': '0xa963f5', 'uniqueId': '0x919349ded6718e4f3f72f2f649128664f23cc847a93044a1ce7b39a0504bb435:log:247', 'hash': '0x919349ded6718e4f3f72f2f649128664f23cc847a93044a1ce7b39a0504bb435', 'from': '0x1eb0fd75d347a4faaaeed9653c3d148738b8ea50', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 372.2410591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08aabac7b6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:35:39.000Z'}}, {'blockNum': '0xa963fe', 'uniqueId': '0xbd9e17d20d8e59e9b7f56aa1c07141746f11462e89ae2ee6ac0d6ce4ca17656a:log:277', 'hash': '0xbd9e17d20d8e59e9b7f56aa1c07141746f11462e89ae2ee6ac0d6ce4ca17656a', 'from': '0xc53fddeb3f7780e1249f13baf021cc18d3812f83', 'to': '0x16df71dd45af233d2265e57002908b8fcf5b13b3', 'value': 704.5168583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10673f69c6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:38:51.000Z'}}, {'blockNum': '0xa96406', 'uniqueId': '0x517102ef8edb6647c12ef3c2a7ffc4c85124e3c72cd61f6ead5267e844c23d0c:log:212', 'hash': '0x517102ef8edb6647c12ef3c2a7ffc4c85124e3c72cd61f6ead5267e844c23d0c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 1528.456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x23964ec500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:40:32.000Z'}}, {'blockNum': '0xa96459', 'uniqueId': '0x0ce64017f435b0f9d97068a9d1dc4c425778ea654c6c1d5a8192736e1571b83e:log:55', 'hash': '0x0ce64017f435b0f9d97068a9d1dc4c425778ea654c6c1d5a8192736e1571b83e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xc53fddeb3f7780e1249f13baf021cc18d3812f83', 'value': 666.1368583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f827c2e46', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T19:00:24.000Z'}}, {'blockNum': '0xa9650e', 'uniqueId': '0xbdce316c5ba13c0567ddc55250cfc841988f37a4932674e5e56409b00ccfd246:log:70', 'hash': '0xbdce316c5ba13c0567ddc55250cfc841988f37a4932674e5e56409b00ccfd246', 'from': '0x694bf88ebe333ec2f783fa02eb2674d132d603e5', 'to': '0xc397ffa9377a94a784795e1c5b9575cba2fd9b0f', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T19:44:28.000Z'}}, {'blockNum': '0xa96525', 'uniqueId': '0x955b8c6380ea2c84eb72535666f9bc92a5a4245d91524604607c15fb2a3a699c:log:207', 'hash': '0x955b8c6380ea2c84eb72535666f9bc92a5a4245d91524604607c15fb2a3a699c', 'from': '0x694bf88ebe333ec2f783fa02eb2674d132d603e5', 'to': '0xc397ffa9377a94a784795e1c5b9575cba2fd9b0f', 'value': 2845.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x423ee470c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T19:50:14.000Z'}}, {'blockNum': '0xa965c1', 'uniqueId': '0x3d0d2171cdbc1f5edc5de8cb8711bf9702434bc309109387b4282e0b91fdb0d9:log:319', 'hash': '0x3d0d2171cdbc1f5edc5de8cb8711bf9702434bc309109387b4282e0b91fdb0d9', 'from': '0x56aa3bb0668d3c0c54ccf108775eeda4399828d7', 'to': '0xf88e50fee72d1036306f6b6f09a8e74164c3a4d7', 'value': 83.17194501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01efbe5105', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T20:23:29.000Z'}}, {'blockNum': '0xa965d1', 'uniqueId': '0x4af6805da6b7a7e22d4913cad52669b70e97efc759cbc89f7df6cae64ef44705:log:84', 'hash': '0x4af6805da6b7a7e22d4913cad52669b70e97efc759cbc89f7df6cae64ef44705', 'from': '0xf88e50fee72d1036306f6b6f09a8e74164c3a4d7', 'to': '0x24ba1542f8a0a20e8251d096213384cfb0ee3dbc', 'value': 83.17194501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01efbe5105', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T20:26:24.000Z'}}, {'blockNum': '0xa96616', 'uniqueId': '0xfd139fe2710cc81371acd5bd023a42ca6ced4f4dc2868868aba2f4af20bff8b8:log:35', 'hash': '0xfd139fe2710cc81371acd5bd023a42ca6ced4f4dc2868868aba2f4af20bff8b8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7df0fb47bd6123a5106c915e512e857e15fd7b42', 'value': 107.0361, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x027dfc2090', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T20:40:52.000Z'}}, {'blockNum': '0xa966ab', 'uniqueId': '0xe54499f3db1b80187b3961693b4a8efd9722e24f260f6c0eeeffc586ab52827e:log:63', 'hash': '0xe54499f3db1b80187b3961693b4a8efd9722e24f260f6c0eeeffc586ab52827e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x96b70ed819ed2854c47878e4e5532e98ca8af7d5', 'value': 124.51311213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02e627ee6d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:15:41.000Z'}}, {'blockNum': '0xa96708', 'uniqueId': '0x590c114e5a286588616754be2fbea84f1a57049e0fdbe7f5b558ff1a8b63b43e:log:171', 'hash': '0x590c114e5a286588616754be2fbea84f1a57049e0fdbe7f5b558ff1a8b63b43e', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:35:28.000Z'}}, {'blockNum': '0xa96715', 'uniqueId': '0x12628af6d79560c024e57d05746885706188a12d275d3e5f1b119a31345f4e2d:log:32', 'hash': '0x12628af6d79560c024e57d05746885706188a12d275d3e5f1b119a31345f4e2d', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:38:42.000Z'}}, {'blockNum': '0xa96719', 'uniqueId': '0x975e5c0753470fde6135f7b9654959d798538609ae68c1dbb8bfc8b11ab8d7fc:log:84', 'hash': '0x975e5c0753470fde6135f7b9654959d798538609ae68c1dbb8bfc8b11ab8d7fc', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:39:18.000Z'}}, {'blockNum': '0xa9671b', 'uniqueId': '0xb74d1ee03871eeaa91a90bc56e9b78a5fb562abf4cdddcff684948614e557cc2:log:46', 'hash': '0xb74d1ee03871eeaa91a90bc56e9b78a5fb562abf4cdddcff684948614e557cc2', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:40:13.000Z'}}, {'blockNum': '0xa9671e', 'uniqueId': '0x3342f0bdaf45ea258e60ac632d18b9ff41821f0bd43aae429ae5fd23740225aa:log:60', 'hash': '0x3342f0bdaf45ea258e60ac632d18b9ff41821f0bd43aae429ae5fd23740225aa', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:41:28.000Z'}}, {'blockNum': '0xa96724', 'uniqueId': '0x174cae26f7600caab1dff91cb56cb23fad2f5cdbbd5375b80777530b441cc751:log:34', 'hash': '0x174cae26f7600caab1dff91cb56cb23fad2f5cdbbd5375b80777530b441cc751', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:42:50.000Z'}}, {'blockNum': '0xa96782', 'uniqueId': '0x81691373004f862b0bc28260f6e6376ccbba811932f490e622fa81f17bb1f1d5:log:64', 'hash': '0x81691373004f862b0bc28260f6e6376ccbba811932f490e622fa81f17bb1f1d5', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:01:49.000Z'}}, {'blockNum': '0xa96782', 'uniqueId': '0x152a82a1cf6137dd93c8b6e6630bd201a66d681cd885d2f3170276f5c9dd7c1e:log:67', 'hash': '0x152a82a1cf6137dd93c8b6e6630bd201a66d681cd885d2f3170276f5c9dd7c1e', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:01:49.000Z'}}, {'blockNum': '0xa96786', 'uniqueId': '0x315c2b40be3f1e9de185187cb80608886b7ada576e47fd9cf2c8e6d9df3ba9a7:log:10', 'hash': '0x315c2b40be3f1e9de185187cb80608886b7ada576e47fd9cf2c8e6d9df3ba9a7', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:03:08.000Z'}}, {'blockNum': '0xa96786', 'uniqueId': '0x8b1f947409dec8d869b46409866bc47e4d211a4503f98949107f110cb2e4a991:log:11', 'hash': '0x8b1f947409dec8d869b46409866bc47e4d211a4503f98949107f110cb2e4a991', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:03:08.000Z'}}, {'blockNum': '0xa96789', 'uniqueId': '0xd4c74d18aa02c825e349a15a4725b260509cde0da8e081c3e1f46962ec1f9b4e:log:20', 'hash': '0xd4c74d18aa02c825e349a15a4725b260509cde0da8e081c3e1f46962ec1f9b4e', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:03:40.000Z'}}, {'blockNum': '0xa96789', 'uniqueId': '0x8c2a17cab487474d14583c654bbd5c3372967b50a288f77868cd66ff25470f87:log:21', 'hash': '0x8c2a17cab487474d14583c654bbd5c3372967b50a288f77868cd66ff25470f87', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:03:40.000Z'}}, {'blockNum': '0xa96789', 'uniqueId': '0xd6af298920ea4cae22c5ca80bd20117cb37d8b98743c94fa9900919834db5bff:log:22', 'hash': '0xd6af298920ea4cae22c5ca80bd20117cb37d8b98743c94fa9900919834db5bff', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:03:40.000Z'}}, {'blockNum': '0xa9678e', 'uniqueId': '0x90d4d72a13fd862cdc9a5486424ea3dd1e72de1d93f51873cda38fd6d6e83bb3:log:133', 'hash': '0x90d4d72a13fd862cdc9a5486424ea3dd1e72de1d93f51873cda38fd6d6e83bb3', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:04:30.000Z'}}, {'blockNum': '0xa96805', 'uniqueId': '0x978df893658e0656ab9ae54474847682bd4b70a4325d7ffc24d2af896a3681a3:log:33', 'hash': '0x978df893658e0656ab9ae54474847682bd4b70a4325d7ffc24d2af896a3681a3', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:31:24.000Z'}}, {'blockNum': '0xa9680d', 'uniqueId': '0x968953caef00a9d38cc023242bdb04f23be52cf3960f3d72084c408572cced6f:log:38', 'hash': '0x968953caef00a9d38cc023242bdb04f23be52cf3960f3d72084c408572cced6f', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:32:39.000Z'}}, {'blockNum': '0xa9682c', 'uniqueId': '0x2963a91ccb1fab54a846739f3b7088625b3eec6b5068f31615ec29aa853cce03:log:20', 'hash': '0x2963a91ccb1fab54a846739f3b7088625b3eec6b5068f31615ec29aa853cce03', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6fc7d7a73e712c234221e4b9e8aac42a65fefcfb', 'value': 958.69491675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x16524459db', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:39:00.000Z'}}, {'blockNum': '0xa96831', 'uniqueId': '0xc667f819810b17d52c8bff0f9f157ff78cb9451b3eebbb59565dce620b8880f9:log:66', 'hash': '0xc667f819810b17d52c8bff0f9f157ff78cb9451b3eebbb59565dce620b8880f9', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:40:13.000Z'}}, {'blockNum': '0xa96831', 'uniqueId': '0xbed009e199152531209dedc112d687d8c757f7c70784d87a44a6b85b34db1289:log:67', 'hash': '0xbed009e199152531209dedc112d687d8c757f7c70784d87a44a6b85b34db1289', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:40:13.000Z'}}, {'blockNum': '0xa96831', 'uniqueId': '0x66f9b208c8255bf81d6cc7a14ec685f6b1373f74fa351d654c44c202cc70cf92:log:68', 'hash': '0x66f9b208c8255bf81d6cc7a14ec685f6b1373f74fa351d654c44c202cc70cf92', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:40:13.000Z'}}, {'blockNum': '0xa96831', 'uniqueId': '0x202ed608005d2f929644271e80d524093fec3941097bfec2d155032f99489833:log:69', 'hash': '0x202ed608005d2f929644271e80d524093fec3941097bfec2d155032f99489833', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:40:13.000Z'}}, {'blockNum': '0xa96831', 'uniqueId': '0xc9270d9e4404c91070c6a2fab459efe4ff4aa32b2dc9c91723dc89ccc4fd7926:log:70', 'hash': '0xc9270d9e4404c91070c6a2fab459efe4ff4aa32b2dc9c91723dc89ccc4fd7926', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:40:13.000Z'}}, {'blockNum': '0xa96858', 'uniqueId': '0x49f5a9edd4cc328e59592792d98bef8b51d09e2f396a61626d9eaa7df5c523f3:log:20', 'hash': '0x49f5a9edd4cc328e59592792d98bef8b51d09e2f396a61626d9eaa7df5c523f3', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:46:09.000Z'}}, {'blockNum': '0xa96858', 'uniqueId': '0x357849f43109af4b77766023b931aecf368ec7aee27f41112156f54971698464:log:21', 'hash': '0x357849f43109af4b77766023b931aecf368ec7aee27f41112156f54971698464', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:46:09.000Z'}}, {'blockNum': '0xa96858', 'uniqueId': '0xdd2f82ef5c0deb5463d1cc34a99894c2bd8f3059b5e54a7657b60b29aba2580e:log:22', 'hash': '0xdd2f82ef5c0deb5463d1cc34a99894c2bd8f3059b5e54a7657b60b29aba2580e', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:46:09.000Z'}}, {'blockNum': '0xa96858', 'uniqueId': '0x2b7951f49c491534e935e407c650a7b48fc6cc85d29de9ff345855b51d579d30:log:23', 'hash': '0x2b7951f49c491534e935e407c650a7b48fc6cc85d29de9ff345855b51d579d30', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:46:09.000Z'}}, {'blockNum': '0xa96858', 'uniqueId': '0x7bafb54c03fc4e057413b8a31c790a64412de912feafb95772bb193513d663dc:log:24', 'hash': '0x7bafb54c03fc4e057413b8a31c790a64412de912feafb95772bb193513d663dc', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:46:09.000Z'}}, {'blockNum': '0xa9688e', 'uniqueId': '0x43cd171b85a18953b49e560a25feb433d98f609aae42aa1e7e5c99a39ef9bad1:log:251', 'hash': '0x43cd171b85a18953b49e560a25feb433d98f609aae42aa1e7e5c99a39ef9bad1', 'from': '0xbc9990df22f469960b52dadfcfdac1ce13778d52', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 815.23529991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12fb2e5907', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:57:57.000Z'}}, {'blockNum': '0xa96936', 'uniqueId': '0x966c57e95fcda75d0a064ecefc8e49ad5f8aeca0a2ce9737c7ee04a702b944b1:log:96', 'hash': '0x966c57e95fcda75d0a064ecefc8e49ad5f8aeca0a2ce9737c7ee04a702b944b1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xee2f4168e281c039ba09222438b2f05c2c2ddcc4', 'value': 125.48958189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02ebf9e7ed', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T23:33:56.000Z'}}, {'blockNum': '0xa969c9', 'uniqueId': '0xeaefab198c413b17ec2e55467335690a83182b3d534f498c59bf93cdfcc5a7be:log:79', 'hash': '0xeaefab198c413b17ec2e55467335690a83182b3d534f498c59bf93cdfcc5a7be', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9d69b7378c222f3aaa5b86202ab3d151a9a8b54a', 'value': 3258.724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4bdf823680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T00:04:56.000Z'}}, {'blockNum': '0xa96a12', 'uniqueId': '0x81e2868c42859c7c8db08414bb3be99a044acd7dcbadbb85bc04a25bb6994fc3:log:283', 'hash': '0x81e2868c42859c7c8db08414bb3be99a044acd7dcbadbb85bc04a25bb6994fc3', 'from': '0x6588be445e0e36a02f1ebaeca5219c5fc1a00e2c', 'to': '0xc5ab4a0b9fe13cfd09a043a30eb2be37bb4beed9', 'value': 203.809136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04becc0fc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T00:21:47.000Z'}}, {'blockNum': '0xa96ad5', 'uniqueId': '0x595619ba7f9ba6f9ae91d2d9a47dc895bd44d322a7c003ec2a8eef4bc91a9639:log:359', 'hash': '0x595619ba7f9ba6f9ae91d2d9a47dc895bd44d322a7c003ec2a8eef4bc91a9639', 'from': '0xe86e8f4134b158b4b14888d8660a013d6b93de58', 'to': '0xc151e91622711375eaeff148f2c13d88d377d7f7', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T01:05:11.000Z'}}, {'blockNum': '0xa96bb6', 'uniqueId': '0xda9297ca1d24f2be4a66611b0ae32aee3763a3a12eb437c1bd926dc8d06478b7:log:94', 'hash': '0xda9297ca1d24f2be4a66611b0ae32aee3763a3a12eb437c1bd926dc8d06478b7', 'from': '0x51cf7fdee1d03182679ea129cd0d5c2a5228bd5d', 'to': '0xbb5261898924a9890402e5d5b99c8b75b45a9e4a', 'value': 3553.9692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x52bf4ea2c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T01:55:15.000Z'}}, {'blockNum': '0xa96c73', 'uniqueId': '0x61e5eb953dfaf9b31d3d197c1993d5130bf192b6bf6f6ae33526ca0eafb5caa7:log:206', 'hash': '0x61e5eb953dfaf9b31d3d197c1993d5130bf192b6bf6f6ae33526ca0eafb5caa7', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x8c633b628d1eb7e3c87c36614dbacf6f193bb3af', 'value': 1662.4396782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x26b4e9a34c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T02:38:41.000Z'}}, {'blockNum': '0xa96c77', 'uniqueId': '0xe7d4a86b01d8bbea04f8da8d853ef0492a4cd98d1afc44af1e7bb067391d7428:log:154', 'hash': '0xe7d4a86b01d8bbea04f8da8d853ef0492a4cd98d1afc44af1e7bb067391d7428', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x8c633b628d1eb7e3c87c36614dbacf6f193bb3af', 'value': 2086.2140991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3092ce1676', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T02:39:22.000Z'}}, {'blockNum': '0xa96c90', 'uniqueId': '0x2973682215d3b661a4d0e420dca40038860f2fe44da51465876baab68230af4e:log:94', 'hash': '0x2973682215d3b661a4d0e420dca40038860f2fe44da51465876baab68230af4e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 5841.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x87ff9c0540', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T02:45:44.000Z'}}, {'blockNum': '0xa96cab', 'uniqueId': '0x1cdaa42e188fc62e0b633d8fe3a2c442f188bdbdbfb780c65fa121364960eb4f:log:148', 'hash': '0x1cdaa42e188fc62e0b633d8fe3a2c442f188bdbdbfb780c65fa121364960eb4f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 40077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03a51d88ed00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T02:51:13.000Z'}}]}}
Number of returned transfers: 69
Answer is complete
symbol YOYOW
group CPS
date 2020-11-01
hour 18:00
exchange binance
Name: 428, dtype: object
HERE
Symbol: YOYOW, Contract:
Datetime timestamps: 2020-11-01 18:00:00 2020-11-01 06:00:00 2020-11-02 06:00:00
Unix timestamps: 1604206800.0 1604293200.0
Hex Block Numbers: 0xaa6d88 0xaa86bb
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol APPC
group CPS
date 2020-11-04
hour 17:00
exchange binance
Name: 429, dtype: object
HERE
Symbol: APPC, Contract: 0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db
Datetime timestamps: 2020-11-04 17:00:00 2020-11-04 05:00:00 2020-11-05 05:00:00
Unix timestamps: 1604462400.0 1604548800.0
Hex Block Numbers: 0xaab8ab 0xaad22a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xaab95d', 'uniqueId': '0x5647de08bdf81d0cfc73b0d687940b163b5561ef9173c54118878d3885aeebec:log:133', 'hash': '0x5647de08bdf81d0cfc73b0d687940b163b5561ef9173c54118878d3885aeebec', 'from': '0x330a72b49e06256bfe20a765f77d816a422b00a7', 'to': '0x47fef156fa29ae4ecb47e0c675eb4f9c55055d6a', 'value': 2758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x9582f0537d5f580000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T04:37:47.000Z'}}, {'blockNum': '0xaaba2a', 'uniqueId': '0xf782ec159f1ad7c3144976c0778df4c42ec501cdf44afe8309264dab5d0aa7c0:log:20', 'hash': '0xf782ec159f1ad7c3144976c0778df4c42ec501cdf44afe8309264dab5d0aa7c0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1375.65880376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x4a9319d9778d99e000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:19:59.000Z'}}, {'blockNum': '0xaaba31', 'uniqueId': '0xb9e97ee9b3e865443d21ab790ac592d0a6a2c5fdb22aaea360cf461acb86d4cc:log:90', 'hash': '0xb9e97ee9b3e865443d21ab790ac592d0a6a2c5fdb22aaea360cf461acb86d4cc', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x40abb42d126d918f6aa47e473fb8521d675529ca', 'value': 1329.15880376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x480dc8a9d5a5efe000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:21:25.000Z'}}, {'blockNum': '0xaaba87', 'uniqueId': '0x5d95dd8fafed1b7c35d4b70ba3f1d2c677f3630f5e46f59d308336a8d6644653:log:3', 'hash': '0x5d95dd8fafed1b7c35d4b70ba3f1d2c677f3630f5e46f59d308336a8d6644653', 'from': '0xae5f5e76a6f539d69c1a3a8657b0d294fa59a883', 'to': '0x7cd17e40f33f673a40cce4b96f70bafe31713bd6', 'value': 2570.8705192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x8b5dfedc2818104000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:38:41.000Z'}}, {'blockNum': '0xaaba8c', 'uniqueId': '0xdb4fa2d81dc85f9213fa91c33181a61ab16dac7578a7601f09cb4005468142e3:log:133', 'hash': '0xdb4fa2d81dc85f9213fa91c33181a61ab16dac7578a7601f09cb4005468142e3', 'from': '0x7cd17e40f33f673a40cce4b96f70bafe31713bd6', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2570.8705192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x8b5dfedc2818104000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:40:40.000Z'}}, {'blockNum': '0xaabb63', 'uniqueId': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1:log:98', 'hash': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 128.9440879163896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x06fd756cc8ef244638', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T06:33:18.000Z'}}, {'blockNum': '0xaabb63', 'uniqueId': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1:log:99', 'hash': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 15.169892696045837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0xd2864908949adb15', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T06:33:18.000Z'}}, {'blockNum': '0xaabb63', 'uniqueId': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1:log:100', 'hash': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 7.5849463480229184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x694324844a4d6d8a', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T06:33:18.000Z'}}, {'blockNum': '0xaabc4d', 'uniqueId': '0xa0ed508cd90120f6109627d4ff9d4b5fbd0455b70a35651ca2634c53db8dceda:log:17', 'hash': '0xa0ed508cd90120f6109627d4ff9d4b5fbd0455b70a35651ca2634c53db8dceda', 'from': '0xbb9fb488edef50ec8ecc82b191703b5fb32393e2', 'to': '0x9553c0540ac0f923522849d6c603029b3d4e3cae', 'value': 640.58597771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x22b9ea90c1dcd8cc00', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T07:28:10.000Z'}}, {'blockNum': '0xaac444', 'uniqueId': '0x6fe6f9fb5dc11dc4a329e1813074ca910bdd4cda6a12186cfc2d9ec933d6cfa0:log:37', 'hash': '0x6fe6f9fb5dc11dc4a329e1813074ca910bdd4cda6a12186cfc2d9ec933d6cfa0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x71baf697df4a100db0b7617e5c02fcfcd47bd6e3', 'value': 907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x312b274e820f4c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T15:02:30.000Z'}}, {'blockNum': '0xaac463', 'uniqueId': '0x1c134a013d7a4fa8942ab85a2e5a03ec84cc7eadb020b524d0f7b312e8b0faf8:log:18', 'hash': '0x1c134a013d7a4fa8942ab85a2e5a03ec84cc7eadb020b524d0f7b312e8b0faf8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x71baf697df4a100db0b7617e5c02fcfcd47bd6e3', 'value': 58885.554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0c7831392df6b2850000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T15:11:40.000Z'}}, {'blockNum': '0xaac49d', 'uniqueId': '0x57b938dbe7f90100b65eaa48e23cba08ad266d0cb1b1b5c330ab47d6fcc4fb39:log:84', 'hash': '0x57b938dbe7f90100b65eaa48e23cba08ad266d0cb1b1b5c330ab47d6fcc4fb39', 'from': '0x71baf697df4a100db0b7617e5c02fcfcd47bd6e3', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 59792.554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0ca95c607c78c1d10000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T15:24:24.000Z'}}, {'blockNum': '0xaac66c', 'uniqueId': '0xa068e619a3e7a1a806959963ce959df8da92ef5f448a95eaf7aef467981880a4:log:28', 'hash': '0xa068e619a3e7a1a806959963ce959df8da92ef5f448a95eaf7aef467981880a4', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x652807251031638120c9498a38c8773ee87bdf9b', 'value': 127318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1af5ec3028535f980000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:01:47.000Z'}}, {'blockNum': '0xaac6ac', 'uniqueId': '0x47d2a69d7be6226bb4c11122ce8bfbfd7d9a81c548f7eb921e406ff0b800e35a:log:47', 'hash': '0x47d2a69d7be6226bb4c11122ce8bfbfd7d9a81c548f7eb921e406ff0b800e35a', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 10442.71900933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x023619d6ab16cdbf7400', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:13:22.000Z'}}, {'blockNum': '0xaac6d0', 'uniqueId': '0x70277eb77ebe9dceef7c75caaec55ab40d88df3a7964909bafd6a9cf91c633e6:log:44', 'hash': '0x70277eb77ebe9dceef7c75caaec55ab40d88df3a7964909bafd6a9cf91c633e6', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xb20242b3fdf78a64eb7eaa50e2d5649ffaed365c', 'value': 34655.58244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0756aed1c808f1168000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:21:45.000Z'}}, {'blockNum': '0xaac6d3', 'uniqueId': '0x16032ae99fb39c539aa246a47f2e5d0e7f1a6b0941de906b3f4a790e4c8dba4d:log:184', 'hash': '0x16032ae99fb39c539aa246a47f2e5d0e7f1a6b0941de906b3f4a790e4c8dba4d', 'from': '0x843b555835c7962d5a07e6ebdf527ed94693bbda', 'to': '0x861d77d18b2a096866e326fc528b9f0b5f211096', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:22:49.000Z'}}, {'blockNum': '0xaac6ee', 'uniqueId': '0xb8ec943a3153538a8fc2d5bc46533a7e1305f0ff03c9ac006e57f468bf551b20:log:44', 'hash': '0xb8ec943a3153538a8fc2d5bc46533a7e1305f0ff03c9ac006e57f468bf551b20', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 127116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1aeaf8dffe914ab00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:27:33.000Z'}}, {'blockNum': '0xaac6ef', 'uniqueId': '0xbd3c0976886c86a91589728c1bb7dbd221eabf91d3110026e62f46a234f11378:log:151', 'hash': '0xbd3c0976886c86a91589728c1bb7dbd221eabf91d3110026e62f46a234f11378', 'from': '0x843b555835c7962d5a07e6ebdf527ed94693bbda', 'to': '0x861d77d18b2a096866e326fc528b9f0b5f211096', 'value': 349455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x49fffe56a00f02dc0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:27:35.000Z'}}, {'blockNum': '0xaac70b', 'uniqueId': '0xcb7ed1f744ae2e33dedabea8c2970f7b634fbcc3bd7692a5da6c9e9b27133330:log:22', 'hash': '0xcb7ed1f744ae2e33dedabea8c2970f7b634fbcc3bd7692a5da6c9e9b27133330', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x652807251031638120c9498a38c8773ee87bdf9b', 'value': 124764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1a6b78516bff63f00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:34:24.000Z'}}, {'blockNum': '0xaac713', 'uniqueId': '0x914e2ff6c21f94f88add11a8354f7854048b0cc055092e13d15b40a04b3e1d1a:log:106', 'hash': '0x914e2ff6c21f94f88add11a8354f7854048b0cc055092e13d15b40a04b3e1d1a', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 127116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1aeaf8dffe914ab00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:35:51.000Z'}}, {'blockNum': '0xaac734', 'uniqueId': '0x3e05646cf443a77ca5630a55133eb910bf4aff8f4e26a34f4301e213fcfc537c:log:105', 'hash': '0x3e05646cf443a77ca5630a55133eb910bf4aff8f4e26a34f4301e213fcfc537c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 126923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1ae082764120184c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:42:34.000Z'}}, {'blockNum': '0xaac757', 'uniqueId': '0x120b2cb181665fb270eccfb2fa115404004117fd97c8592cbaec33514ce883d4:log:297', 'hash': '0x120b2cb181665fb270eccfb2fa115404004117fd97c8592cbaec33514ce883d4', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 126923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1ae082764120184c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:50:27.000Z'}}, {'blockNum': '0xaac764', 'uniqueId': '0xafb362a6f4d86e7e210e2019fb4b3ef5ebdf296c4d7ce7f684e275b42ff56ccc:log:65', 'hash': '0xafb362a6f4d86e7e210e2019fb4b3ef5ebdf296c4d7ce7f684e275b42ff56ccc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 298607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x3f3b84957c4f0c5c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:53:15.000Z'}}, {'blockNum': '0xaac78f', 'uniqueId': '0x9edfe1cfc35c96cd1a977269d46a0a75c212a93efc5b2d065ef63ab3c477f1bd:log:125', 'hash': '0x9edfe1cfc35c96cd1a977269d46a0a75c212a93efc5b2d065ef63ab3c477f1bd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 93356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x13c4d6c232b6a7300000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:05:17.000Z'}}, {'blockNum': '0xaac7b3', 'uniqueId': '0xa531253c30cc99ad0683ae46ecc598ac215ae38b0972a22aaf88f4bd9eb96e03:log:133', 'hash': '0xa531253c30cc99ad0683ae46ecc598ac215ae38b0972a22aaf88f4bd9eb96e03', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 93356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x13c4d6c232b6a7300000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:13:18.000Z'}}, {'blockNum': '0xaac7d5', 'uniqueId': '0x79dea086c656822567427e43c79646a3d6ce07c0fb56608e087cee6b30256d80:log:98', 'hash': '0x79dea086c656822567427e43c79646a3d6ce07c0fb56608e087cee6b30256d80', 'from': '0x62d5f2ec17bd962f6c1a7939a672b69460c320f4', 'to': '0x3eab04cb1eedb641875e60c7f151c4188bbcf72e', 'value': 126.362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x06d9a0018163e90000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:19:24.000Z'}}, {'blockNum': '0xaac7f7', 'uniqueId': '0x8e549f316de4d674d71349e10e5d9dd98ef19b18d402eeebe7fa6ad062434f50:log:22', 'hash': '0x8e549f316de4d674d71349e10e5d9dd98ef19b18d402eeebe7fa6ad062434f50', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 97920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x14bc40fb6d9aea000000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:26:37.000Z'}}, {'blockNum': '0xaac81b', 'uniqueId': '0x45884010f2961460f3990ac6c9c6a5821aaffefa7ab83c72abbf58acfa83261d:log:71', 'hash': '0x45884010f2961460f3990ac6c9c6a5821aaffefa7ab83c72abbf58acfa83261d', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 97920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x14bc40fb6d9aea000000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:34:25.000Z'}}, {'blockNum': '0xaac86a', 'uniqueId': '0x64576e3da9cec360633e500fda31dcbc0583c159280be6334bbc5aaa0c56e9f6:log:242', 'hash': '0x64576e3da9cec360633e500fda31dcbc0583c159280be6334bbc5aaa0c56e9f6', 'from': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 15903.8301648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x035e25faf8c836248000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:54:17.000Z'}}, {'blockNum': '0xaac86a', 'uniqueId': '0x5fba5be068123be63499a2de7f8df515c04401d442050143dabd2bde9a363d3c:log:243', 'hash': '0x5fba5be068123be63499a2de7f8df515c04401d442050143dabd2bde9a363d3c', 'from': '0x1df69368c49492c7aa0da26e14d95154f9998da6', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 37725.9786619995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x07fd212070497e84aa89', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:54:17.000Z'}}, {'blockNum': '0xaac885', 'uniqueId': '0x375144290a9f207c990a0b183d8e7f1b44ed4b5e9369aff89f9b9d67fc307ce7:log:72', 'hash': '0x375144290a9f207c990a0b183d8e7f1b44ed4b5e9369aff89f9b9d67fc307ce7', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 54279.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0b7e7c9b95f17c5a0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:58:29.000Z'}}, {'blockNum': '0xaac887', 'uniqueId': '0xe8d408c48e0ca978580abf027ad2cb006cb7cb7d353a512397bd99a5d6477bec:log:97', 'hash': '0xe8d408c48e0ca978580abf027ad2cb006cb7cb7d353a512397bd99a5d6477bec', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 25033.519009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x054d11dd696ad9bf1000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:59:34.000Z'}}, {'blockNum': '0xaac887', 'uniqueId': '0xefed68928ea246e05ea9db1d9ffcf86175b1aee00e54837984f200821dc566e1:log:111', 'hash': '0xefed68928ea246e05ea9db1d9ffcf86175b1aee00e54837984f200821dc566e1', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 27552.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x05d5a3e9730256d00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:59:34.000Z'}}, {'blockNum': '0xaac8b4', 'uniqueId': '0x4fd896932dc9c82c4f6563e469d18859bb7cf4360ffce9bdfc78b435c199f85d:log:35', 'hash': '0x4fd896932dc9c82c4f6563e469d18859bb7cf4360ffce9bdfc78b435c199f85d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 117603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x18e7457ac49a07ac0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:08:37.000Z'}}, {'blockNum': '0xaac8c2', 'uniqueId': '0xd86c243091fb287e122f9c4bfd0eb36cd1f32f9572b28b523d8f68bb4b9f89ec:log:221', 'hash': '0xd86c243091fb287e122f9c4bfd0eb36cd1f32f9572b28b523d8f68bb4b9f89ec', 'from': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 52586.319009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0b22b5c6dc6d308f1000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:12:08.000Z'}}, {'blockNum': '0xaac8d7', 'uniqueId': '0xe235340b271d5770578062032d757efb7a6b786733b4349f64e16f35023d9d15:log:201', 'hash': '0xe235340b271d5770578062032d757efb7a6b786733b4349f64e16f35023d9d15', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 117603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x18e7457ac49a07ac0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:18:03.000Z'}}, {'blockNum': '0xaac91c', 'uniqueId': '0x5e0dc513f8a62a7607a5352e285a7abfda98f03810e719a28fda6aa350962a82:log:6', 'hash': '0x5e0dc513f8a62a7607a5352e285a7abfda98f03810e719a28fda6aa350962a82', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2046.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x6ef0e48b2da4ea0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:34:47.000Z'}}, {'blockNum': '0xaac996', 'uniqueId': '0xd0f644922754f60d5d1516a0b8e837f3e32f5657bd16553c0f08c579cc7a7269:log:148', 'hash': '0xd0f644922754f60d5d1516a0b8e837f3e32f5657bd16553c0f08c579cc7a7269', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xf9f7b61ac292e4899a3fae2164133fb02e82471e', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:00:15.000Z'}}, {'blockNum': '0xaac99d', 'uniqueId': '0xc9ee980bfde7e6c7a754a4c837d62f7d044aebd68ef67e57a850267c6416a1ff:log:34', 'hash': '0xc9ee980bfde7e6c7a754a4c837d62f7d044aebd68ef67e57a850267c6416a1ff', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 52468.707209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0b1c5595cf75e6459000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:01:25.000Z'}}, {'blockNum': '0xaaca31', 'uniqueId': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94:log:180', 'hash': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 274.9723240669447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0ee801efdf81d53788', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:34:25.000Z'}}, {'blockNum': '0xaaca31', 'uniqueId': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94:log:181', 'hash': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 32.349685184346434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x01c0f12b4778afac2d', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:34:25.000Z'}}, {'blockNum': '0xaaca31', 'uniqueId': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94:log:182', 'hash': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 16.174842592173217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0xe07895a3bc57d616', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:34:25.000Z'}}, {'blockNum': '0xaaca6d', 'uniqueId': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0:log:51', 'hash': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 274.9723240669447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0ee801efdf81d53788', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:46:06.000Z'}}, {'blockNum': '0xaaca6d', 'uniqueId': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0:log:52', 'hash': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 32.349685184346434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x01c0f12b4778afac2d', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:46:06.000Z'}}, {'blockNum': '0xaaca6d', 'uniqueId': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0:log:53', 'hash': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 16.174842592173217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0xe07895a3bc57d616', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:46:06.000Z'}}, {'blockNum': '0xaacae3', 'uniqueId': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff:log:163', 'hash': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 315.4518130996248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1119c5f8adc40d3f1b', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:09:38.000Z'}}, {'blockNum': '0xaacae3', 'uniqueId': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff:log:164', 'hash': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 37.111978011720566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0203083b5fbcb643a8', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:09:38.000Z'}}, {'blockNum': '0xaacae3', 'uniqueId': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff:log:165', 'hash': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 18.555989005860283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0101841dafde5b21d4', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:09:38.000Z'}}, {'blockNum': '0xaacba3', 'uniqueId': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5:log:171', 'hash': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 315.4518130996248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1119c5f8adc40d3f1b', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:50:07.000Z'}}, {'blockNum': '0xaacba3', 'uniqueId': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5:log:172', 'hash': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 37.111978011720566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0203083b5fbcb643a8', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:50:07.000Z'}}, {'blockNum': '0xaacba3', 'uniqueId': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5:log:173', 'hash': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 18.555989005860283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0101841dafde5b21d4', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:50:07.000Z'}}, {'blockNum': '0xaace35', 'uniqueId': '0x6e8f020e9f26fca00e6203ae0b4277e8a59a20b21c9f66859f9ad329804889a4:log:46', 'hash': '0x6e8f020e9f26fca00e6203ae0b4277e8a59a20b21c9f66859f9ad329804889a4', 'from': '0x87565ed1ed5620b48ed8f231a5ff1d5e672a3257', 'to': '0x0000000000000000000000000000000000000000', 'value': 2511.9109267687422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x882bc44f38c1200000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T00:17:01.000Z'}}, {'blockNum': '0xaad192', 'uniqueId': '0xfee5d81b08d93a18fff39e3e096827f42733c6b88cd7e3d88396a6c0b97cc7bf:log:117', 'hash': '0xfee5d81b08d93a18fff39e3e096827f42733c6b88cd7e3d88396a6c0b97cc7bf', 'from': '0x652807251031638120c9498a38c8773ee87bdf9b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 252082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x356164819452c3880000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T03:29:51.000Z'}}, {'blockNum': '0xaad192', 'uniqueId': '0x843edf8c9e090ecd80f3c70200f9fa2ac700e1ef950152514e438c2c155a95a0:log:166', 'hash': '0x843edf8c9e090ecd80f3c70200f9fa2ac700e1ef950152514e438c2c155a95a0', 'from': '0x861d77d18b2a096866e326fc528b9f0b5f211096', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 349456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x4a000c3756c2aa400000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T03:29:51.000Z'}}]}}
Number of returned transfers: 54
Answer is complete
symbol OAX
group CPS
date 2020-11-05
hour 16:00
exchange binance
Name: 430, dtype: object
HERE
Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps: 2020-11-05 16:00:00 2020-11-05 04:00:00 2020-11-06 04:00:00
Unix timestamps: 1604545200.0 1604631600.0
Hex Block Numbers: 0xaad105 0xaaeaa5
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xaad3ae', 'uniqueId': '0xb35afbd7401147f5fbf8c40124299df23680421681248c9b6ebb6950bbee60da:log:266', 'hash': '0xb35afbd7401147f5fbf8c40124299df23680421681248c9b6ebb6950bbee60da', 'from': '0xf41301e41b133caa67377ac9aa8fef864575ecfa', 'to': '0xa454f742c357bdf5ccb2ea70b1fc0b9c533cb4b5', 'value': 862.67688216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x2ec40bf5aaa0516000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T05:29:52.000Z'}}, {'blockNum': '0xaad663', 'uniqueId': '0x15b8e3aedfd8aeca20f64c252ac75c500f590bcbafc9bc36d3ee052c485a7b98:log:8', 'hash': '0x15b8e3aedfd8aeca20f64c252ac75c500f590bcbafc9bc36d3ee052c485a7b98', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa91ac30cb51dd424346889b558faf56f32de2004', 'value': 3927.8403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xd4edbbf6429bbec000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T08:11:04.000Z'}}, {'blockNum': '0xaade29', 'uniqueId': '0xf16460425c7dbbc9b2edcd0ce35f5d2c3082bb73e70ddec9985ea31649b2858a:log:167', 'hash': '0xf16460425c7dbbc9b2edcd0ce35f5d2c3082bb73e70ddec9985ea31649b2858a', 'from': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 8591.006725976658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01d1b82b1c2bde598ef0', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T15:22:58.000Z'}}, {'blockNum': '0xaaded6', 'uniqueId': '0x0c69f95a48e3c26b886f7c445a016afba96edd0e8d0821f3fe55a875ef9a9c3c:log:56', 'hash': '0x0c69f95a48e3c26b886f7c445a016afba96edd0e8d0821f3fe55a875ef9a9c3c', 'from': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 13030.11651969649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x02c25d313225da6f9dd4', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:00:03.000Z'}}, {'blockNum': '0xaadedf', 'uniqueId': '0x79b643352dfe5d63e002ee75f2ee9ffcdb6eb902f7116e94eba5e040e1c36ce7:log:287', 'hash': '0x79b643352dfe5d63e002ee75f2ee9ffcdb6eb902f7116e94eba5e040e1c36ce7', 'from': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'to': '0x30ff6cedaff3e06a6649ea89147ab8eea2b4ad9d', 'value': 3040.8085791886388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xa4d7b23be0b3171d02', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:02:35.000Z'}}, {'blockNum': '0xaadf35', 'uniqueId': '0x40e9143b342d4637a44f40ef44a529e741ea7181c79c42ced3a454f7ca60278c:log:34', 'hash': '0x40e9143b342d4637a44f40ef44a529e741ea7181c79c42ced3a454f7ca60278c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 602.25525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x20a5f876fd6c132000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:21:07.000Z'}}, {'blockNum': '0xaadf36', 'uniqueId': '0x75f83694b3bd625f4724065b0c146faf37339cec393be3b3c0eb47901e0180dd:log:166', 'hash': '0x75f83694b3bd625f4724065b0c146faf37339cec393be3b3c0eb47901e0180dd', 'from': '0x30ff6cedaff3e06a6649ea89147ab8eea2b4ad9d', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 3040.8085791886388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xa4d7b23be0b3171d02', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:21:25.000Z'}}, {'blockNum': '0xaadf40', 'uniqueId': '0xa19f722dddb2709ae192df4cacbda497108dd2d23c1c83dfbc1e4f5cdb468805:log:140', 'hash': '0xa19f722dddb2709ae192df4cacbda497108dd2d23c1c83dfbc1e4f5cdb468805', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xb5b39ec5146317c0c45d39aadb06b8dfc2cb15df', 'value': 572.75525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1f0c936949a20d2000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:22:55.000Z'}}, {'blockNum': '0xaadf44', 'uniqueId': '0x779a82ba3e71c6fcccb4879c9eb649e81b5cba916db21503fddd2b17f45d3bae:log:206', 'hash': '0x779a82ba3e71c6fcccb4879c9eb649e81b5cba916db21503fddd2b17f45d3bae', 'from': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'to': '0xe95e8ce71b549d1e2c576b54ea9a099510e4afb1', 'value': 3339.030394106752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xb5025af47fb57e2d56', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:24:04.000Z'}}, {'blockNum': '0xaae0ac', 'uniqueId': '0x2bd7320082436f72421d061d0ba2037da8cb5a0bfd9b89104918cef164cd692f:log:199', 'hash': '0x2bd7320082436f72421d061d0ba2037da8cb5a0bfd9b89104918cef164cd692f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf5b9707e7c487853d8ba152665ea49a9e0c6c01d', 'value': 9968.962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x021c6b23a92cf7ad0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T17:45:35.000Z'}}, {'blockNum': '0xaae0b1', 'uniqueId': '0x8050f09442fb38c06704e7bf9bdcf9652b05141426db16c797958cecad0ec079:log:44', 'hash': '0x8050f09442fb38c06704e7bf9bdcf9652b05141426db16c797958cecad0ec079', 'from': '0xf5b9707e7c487853d8ba152665ea49a9e0c6c01d', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 9968.962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x021c6b23a92cf7ad0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T17:46:30.000Z'}}, {'blockNum': '0xaae2d9', 'uniqueId': '0x4826d1a8cb0783368930dc2802f12de8931068fc2ed3a0646bccc7823f9e3e7b:log:145', 'hash': '0x4826d1a8cb0783368930dc2802f12de8931068fc2ed3a0646bccc7823f9e3e7b', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 7167.493591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01848cf4860183f07000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T19:45:17.000Z'}}, {'blockNum': '0xaae3dd', 'uniqueId': '0x3cb71f88e6072ff097ca2ece7cc13d40a7a00db1e7c4e16268e16366d0de07d9:log:43', 'hash': '0x3cb71f88e6072ff097ca2ece7cc13d40a7a00db1e7c4e16268e16366d0de07d9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 7337.60272597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x018dc5b192fbfbc4b400', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T20:41:18.000Z'}}, {'blockNum': '0xaae3e0', 'uniqueId': '0xeccf03f1e17ffedc70f691b541b49d19c25f9e1acc1b77f028af3c9b873c1dff:log:10', 'hash': '0xeccf03f1e17ffedc70f691b541b49d19c25f9e1acc1b77f028af3c9b873c1dff', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 7337.60272597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x018dc5b192fbfbc4b400', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T20:42:06.000Z'}}, {'blockNum': '0xaae510', 'uniqueId': '0x4dbda37ee872f0dd76ceb0cf63219350c5c7fe43f69d8b71ba7830e4da0ae54e:log:261', 'hash': '0x4dbda37ee872f0dd76ceb0cf63219350c5c7fe43f69d8b71ba7830e4da0ae54e', 'from': '0x03737b6a1fb7f5e4ceb19e3023a7f06ea75220b7', 'to': '0x8b08db00c4899b68f65fe0bd54759e5fa636727b', 'value': 698.39161807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x25dc217465b4a15c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T21:46:28.000Z'}}]}}
Number of returned transfers: 15
Answer is complete
symbol NXS
group CPS
date 2020-11-06
hour 20:00
exchange binance
Name: 431, dtype: object
HERE
{}
No contract for ethereum specified
Symbol: NXS, Contract:
Datetime timestamps: 2020-11-06 20:00:00 2020-11-06 08:00:00 2020-11-07 08:00:00
Unix timestamps: 1604646000.0 1604732400.0
Hex Block Numbers: 0xaaeeef 0xab0872
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol SNGLS
group FCS
date 2018-03-26
hour 18:03
exchange binance
Name: 439, dtype: object
HERE
Symbol: SNGLS, Contract: 0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009
Datetime timestamps: 2018-03-26 18:03:00 2018-03-26 06:03:00 2018-03-27 06:03:00
Unix timestamps: 1522036980.0 1522123380.0
Hex Block Numbers: 0x51394a 0x5150a4
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x513aab', 'uniqueId': '0xc1351ae11104b2b0c0133a3a9a13189f72cdb3f4b8386b53d145db8943f6d111:log:68', 'hash': '0xc1351ae11104b2b0c0133a3a9a13189f72cdb3f4b8386b53d145db8943f6d111', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'value': 39960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x9c18', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T05:23:49.000Z'}}, {'blockNum': '0x513ab5', 'uniqueId': '0x471c07483d3712da5d53dfdd6b63c8fd39b597c580fd6ac2a2c9b688a0f21d8c:log:1', 'hash': '0x471c07483d3712da5d53dfdd6b63c8fd39b597c580fd6ac2a2c9b688a0f21d8c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x04af601a41fee16130b1016ae02794cee75bcbcd', 'value': 46, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T05:26:06.000Z'}}, {'blockNum': '0x513ac3', 'uniqueId': '0x7aba628d843220c3680ad7273bd6d77f32442754eeb9c463c77438ee51d68a5c:log:6', 'hash': '0x7aba628d843220c3680ad7273bd6d77f32442754eeb9c463c77438ee51d68a5c', 'from': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 39960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x9c18', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T05:29:06.000Z'}}, {'blockNum': '0x513ac5', 'uniqueId': '0xce92d936fb35b3486baaf21128235d0cea486d3fa2e6865b575296359ddac52c:log:3', 'hash': '0xce92d936fb35b3486baaf21128235d0cea486d3fa2e6865b575296359ddac52c', 'from': '0xf4a14010acbe82428516415a117b157b59cc6bb3', 'to': '0x98aa60f08f8f2f9c30fddb73499f44a11f37e0dc', 'value': 16836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x41c4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T05:29:25.000Z'}}, {'blockNum': '0x513ad1', 'uniqueId': '0x8756d247df01cfbb6e78dd4bb76c9792783c35c7fbb5fc7cb297c42551610338:log:2', 'hash': '0x8756d247df01cfbb6e78dd4bb76c9792783c35c7fbb5fc7cb297c42551610338', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x04af601a41fee16130b1016ae02794cee75bcbcd', 'value': 8012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1f4c', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T05:32:13.000Z'}}, {'blockNum': '0x513af7', 'uniqueId': '0xd92130798168df681fd4df4b6ed1d6280be495ed397641045933667a157b7c82:log:34', 'hash': '0xd92130798168df681fd4df4b6ed1d6280be495ed397641045933667a157b7c82', 'from': '0x98aa60f08f8f2f9c30fddb73499f44a11f37e0dc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x41c4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T05:39:12.000Z'}}, {'blockNum': '0x513b24', 'uniqueId': '0xd0040abf317724356191e6ccd390dc7f82f7626e8efcea854c45a9a0a5fe883a:log:26', 'hash': '0xd0040abf317724356191e6ccd390dc7f82f7626e8efcea854c45a9a0a5fe883a', 'from': '0x04af601a41fee16130b1016ae02794cee75bcbcd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1f7a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T05:49:06.000Z'}}, {'blockNum': '0x513c5f', 'uniqueId': '0x79c83e0bd35eaf14d07588297e29be9b91764f64f1ee61e5629bcd9ee37224ad:log:3', 'hash': '0x79c83e0bd35eaf14d07588297e29be9b91764f64f1ee61e5629bcd9ee37224ad', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0xc18118a2976a9e362a0f8d15ca10761593242a85', 'value': 13328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x3410', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T07:08:14.000Z'}}, {'blockNum': '0x513c8d', 'uniqueId': '0x215b79e6af880c4ba802e200d12060a15a5031579c94ccd92810084ee4c3e4a7:log:28', 'hash': '0x215b79e6af880c4ba802e200d12060a15a5031579c94ccd92810084ee4c3e4a7', 'from': '0xc18118a2976a9e362a0f8d15ca10761593242a85', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x3410', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T07:19:38.000Z'}}, {'blockNum': '0x513cad', 'uniqueId': '0xc1b26e1bac4531215824efb4d0d3ee52408e42be8b1b9d3ce6d703c6cfda5af7:log:13', 'hash': '0xc1b26e1bac4531215824efb4d0d3ee52408e42be8b1b9d3ce6d703c6cfda5af7', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xcb49c1ead14734eea096fdff618a1665d1ec25e0', 'value': 9063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2367', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T07:27:18.000Z'}}, {'blockNum': '0x513d26', 'uniqueId': '0x51c295b857ebc2ba7725941ceedd5a2724c4844ce852ed4beb60856a098e577a:log:1', 'hash': '0x51c295b857ebc2ba7725941ceedd5a2724c4844ce852ed4beb60856a098e577a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc1538905ac271cb2eaf711fd89570d57c9e85fad', 'value': 2802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0af2', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T07:55:24.000Z'}}, {'blockNum': '0x513e7f', 'uniqueId': '0x0b4e105167dc998e0afd56954ca61be84e4df680378ebb72fedc9cb48edde21f:log:49', 'hash': '0x0b4e105167dc998e0afd56954ca61be84e4df680378ebb72fedc9cb48edde21f', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'value': 14091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x370b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T09:22:42.000Z'}}, {'blockNum': '0x513e9d', 'uniqueId': '0xf700c472eb5812bb5c2b73b48a3995e82aeac30d94c23d83f49baaf065231a86:log:40', 'hash': '0xf700c472eb5812bb5c2b73b48a3995e82aeac30d94c23d83f49baaf065231a86', 'from': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x370b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T09:29:02.000Z'}}, {'blockNum': '0x513f4c', 'uniqueId': '0xd371cefbc02d31d586f973ebda297493c834b59e527509c590e42d209f2d6d4d:log:20', 'hash': '0xd371cefbc02d31d586f973ebda297493c834b59e527509c590e42d209f2d6d4d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x24323539d064ef3d61c23a7ed092f03666af7ad3', 'value': 5639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1607', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T10:06:44.000Z'}}, {'blockNum': '0x513f7a', 'uniqueId': '0x1d15ff9c3fba0623d854ae3f861476047593deca029cd33f0c4e33de2c8268e1:log:37', 'hash': '0x1d15ff9c3fba0623d854ae3f861476047593deca029cd33f0c4e33de2c8268e1', 'from': '0x24323539d064ef3d61c23a7ed092f03666af7ad3', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 5639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1607', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T10:20:12.000Z'}}, {'blockNum': '0x514043', 'uniqueId': '0x7ebddea38dffb4bd8c1c87de70e0eec00b569080fa953c90bfc89714e5c2353a:log:19', 'hash': '0x7ebddea38dffb4bd8c1c87de70e0eec00b569080fa953c90bfc89714e5c2353a', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'value': 5339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x14db', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T11:07:46.000Z'}}, {'blockNum': '0x51404b', 'uniqueId': '0x872a420eb4b2160c923fb0ae644a644a76cf1506471246ff8e5451995d372108:log:11', 'hash': '0x872a420eb4b2160c923fb0ae644a644a76cf1506471246ff8e5451995d372108', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0218df84edc8aba574321636b0f7bdd5bec6c937', 'value': 216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xd8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T11:09:36.000Z'}}, {'blockNum': '0x51406f', 'uniqueId': '0x708d73fc09ff21bc36d25e8b85095d196854f4aa193f083fbe7702f227c090ae:log:32', 'hash': '0x708d73fc09ff21bc36d25e8b85095d196854f4aa193f083fbe7702f227c090ae', 'from': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x14db', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T11:19:59.000Z'}}, {'blockNum': '0x514101', 'uniqueId': '0x6221f870fcb240454bf8e040b0a7a49e556993800b1d7cea8e127ee214e69657:log:3', 'hash': '0x6221f870fcb240454bf8e040b0a7a49e556993800b1d7cea8e127ee214e69657', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6e378d40913326a9e5be781f7548f14ac4a348ea', 'value': 81227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x013d4b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T11:52:59.000Z'}}, {'blockNum': '0x514260', 'uniqueId': '0x958528b2a59ad15768d26bcfcf6d5f348e095ec425c0129b5205914a48e42a77:log:20', 'hash': '0x958528b2a59ad15768d26bcfcf6d5f348e095ec425c0129b5205914a48e42a77', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x732ef496fc9dc77d6f6439947205cc1c9f484e3a', 'value': 49514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xc16a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T13:19:04.000Z'}}, {'blockNum': '0x51428e', 'uniqueId': '0xad0aa157628e31ecceb2e5b306e0c6fad5c9f4449c2969d4b7007e462da733c5:log:25', 'hash': '0xad0aa157628e31ecceb2e5b306e0c6fad5c9f4449c2969d4b7007e462da733c5', 'from': '0x732ef496fc9dc77d6f6439947205cc1c9f484e3a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xc16a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T13:29:04.000Z'}}, {'blockNum': '0x51441e', 'uniqueId': '0xcbd0e09a164ef53ba9a185503980cd7d2bc78c46647a027418228083c840811a:log:2', 'hash': '0xcbd0e09a164ef53ba9a185503980cd7d2bc78c46647a027418228083c840811a', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0xd2c2862109d07bf0f875087cc9b4eb047da59ec9', 'value': 190, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xbe', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T15:00:05.000Z'}}, {'blockNum': '0x51443a', 'uniqueId': '0x4847844c648ac32476520c850ab9e9f938cd547cbac0ec74959e1a11d3d0eb16:log:14', 'hash': '0x4847844c648ac32476520c850ab9e9f938cd547cbac0ec74959e1a11d3d0eb16', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9069391ba93f844e2d3fc42888c1581b965b851b', 'value': 56957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xde7d', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T15:07:42.000Z'}}, {'blockNum': '0x514446', 'uniqueId': '0x6199f7609f33b4947ff2ff0857fc7749500007099d006cb6b82e497ef61a81c8:log:0', 'hash': '0x6199f7609f33b4947ff2ff0857fc7749500007099d006cb6b82e497ef61a81c8', 'from': '0x9069391ba93f844e2d3fc42888c1581b965b851b', 'to': '0x930aa9a843266bdb02847168d571e7913907dd84', 'value': 56957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xde7d', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T15:10:49.000Z'}}, {'blockNum': '0x514458', 'uniqueId': '0x76ca15aa572ac429df357c0073170c7e5455c0dde4984411070e2cfb953dac1e:log:13', 'hash': '0x76ca15aa572ac429df357c0073170c7e5455c0dde4984411070e2cfb953dac1e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2291aa64b071b93cf8d81d86ad0b35e6739398f3', 'value': 18299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x477b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T15:17:06.000Z'}}, {'blockNum': '0x514461', 'uniqueId': '0x134930656e139aff97e597e54770521d9464bdb1168154d2beba0d2f8e8ceae3:log:1', 'hash': '0x134930656e139aff97e597e54770521d9464bdb1168154d2beba0d2f8e8ceae3', 'from': '0x2291aa64b071b93cf8d81d86ad0b35e6739398f3', 'to': '0x930aa9a843266bdb02847168d571e7913907dd84', 'value': 18299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x477b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T15:19:53.000Z'}}, {'blockNum': '0x514464', 'uniqueId': '0xb3a5ad1ccd9beb48d0db3ff011e902627b98e6eadbc2590ee66baa50246f35d3:log:16', 'hash': '0xb3a5ad1ccd9beb48d0db3ff011e902627b98e6eadbc2590ee66baa50246f35d3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x25ddb28a9bd7eac3a3817e36b04746975f549ad1', 'value': 23108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x5a44', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T15:21:00.000Z'}}, {'blockNum': '0x51446a', 'uniqueId': '0xb0a5a5820d4862b6a2a97b5798e076312f24e5e0d627a9d1d6ef6c8fa4402ebb:log:0', 'hash': '0xb0a5a5820d4862b6a2a97b5798e076312f24e5e0d627a9d1d6ef6c8fa4402ebb', 'from': '0x25ddb28a9bd7eac3a3817e36b04746975f549ad1', 'to': '0x930aa9a843266bdb02847168d571e7913907dd84', 'value': 23108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x5a44', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T15:22:41.000Z'}}, {'blockNum': '0x5144ef', 'uniqueId': '0x21d4dcc7f667c88a52d9897b7e3777d40919340aa7b61a64682a0d2d18cc63e7:log:4', 'hash': '0x21d4dcc7f667c88a52d9897b7e3777d40919340aa7b61a64682a0d2d18cc63e7', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x6243cdbd7bd96613a209ad15264eae1c4602f5df', 'value': 23105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x5a41', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T15:55:52.000Z'}}, {'blockNum': '0x5144fa', 'uniqueId': '0x5ded0886ed42a725af53fedecdb676058b4d6298c738e5a40e129316c9f3a2bf:log:12', 'hash': '0x5ded0886ed42a725af53fedecdb676058b4d6298c738e5a40e129316c9f3a2bf', 'from': '0x6243cdbd7bd96613a209ad15264eae1c4602f5df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x5a41', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T15:59:09.000Z'}}, {'blockNum': '0x514503', 'uniqueId': '0xba234f770bf0b71c4b4603c89cfe4bdb35428f86fcbc92acea951189ea76927c:log:22', 'hash': '0xba234f770bf0b71c4b4603c89cfe4bdb35428f86fcbc92acea951189ea76927c', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'value': 17191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4327', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T16:01:26.000Z'}}, {'blockNum': '0x514527', 'uniqueId': '0x969bd6b1b329551c0e3d1c4f5f70e3dd16c9b7711cc07a75842ff2d1ae5fd9fa:log:43', 'hash': '0x969bd6b1b329551c0e3d1c4f5f70e3dd16c9b7711cc07a75842ff2d1ae5fd9fa', 'from': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4327', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T16:09:26.000Z'}}, {'blockNum': '0x514563', 'uniqueId': '0xbe8dc8ee1c6b7ad8721892ca15826ebb3d011bdd8a40e93fc39eb25221b4a3d6:log:24', 'hash': '0xbe8dc8ee1c6b7ad8721892ca15826ebb3d011bdd8a40e93fc39eb25221b4a3d6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9069391ba93f844e2d3fc42888c1581b965b851b', 'value': 44957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xaf9d', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T16:24:04.000Z'}}, {'blockNum': '0x51456e', 'uniqueId': '0xe04edcb3e9af0695fb6154c1f6f1a8c174fe0faf4875f0ddfd40b03edc5dec2d:log:4', 'hash': '0xe04edcb3e9af0695fb6154c1f6f1a8c174fe0faf4875f0ddfd40b03edc5dec2d', 'from': '0x9069391ba93f844e2d3fc42888c1581b965b851b', 'to': '0x930aa9a843266bdb02847168d571e7913907dd84', 'value': 44957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xaf9d', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T16:27:13.000Z'}}, {'blockNum': '0x51456f', 'uniqueId': '0x2d0d75cb2ae6c9df3777f8291233e3cf148e72656fad84b483ae691d7a30e06b:log:133', 'hash': '0x2d0d75cb2ae6c9df3777f8291233e3cf148e72656fad84b483ae691d7a30e06b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2291aa64b071b93cf8d81d86ad0b35e6739398f3', 'value': 16971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x424b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T16:27:44.000Z'}}, {'blockNum': '0x514574', 'uniqueId': '0x0a33a54feaa16422dc3219fdaccc56555972ba620a57a02112bbb6f00e69c160:log:7', 'hash': '0x0a33a54feaa16422dc3219fdaccc56555972ba620a57a02112bbb6f00e69c160', 'from': '0x2291aa64b071b93cf8d81d86ad0b35e6739398f3', 'to': '0x930aa9a843266bdb02847168d571e7913907dd84', 'value': 16971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x424b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T16:30:15.000Z'}}, {'blockNum': '0x514574', 'uniqueId': '0x7e0711b29f923e20aaa9ebad04e09a853b548b9bb6d6ef2de89a369e47801aa8:log:16', 'hash': '0x7e0711b29f923e20aaa9ebad04e09a853b548b9bb6d6ef2de89a369e47801aa8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe1a91789e241d1e33f0693c978222897ce3977b9', 'value': 33448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x82a8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T16:30:15.000Z'}}, {'blockNum': '0x51457d', 'uniqueId': '0x73e6d94d354f7e970445e378043a77a90233e3a1bf6bbbe641e2622fd05b64b3:log:4', 'hash': '0x73e6d94d354f7e970445e378043a77a90233e3a1bf6bbbe641e2622fd05b64b3', 'from': '0xe1a91789e241d1e33f0693c978222897ce3977b9', 'to': '0x930aa9a843266bdb02847168d571e7913907dd84', 'value': 33448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x82a8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T16:32:45.000Z'}}, {'blockNum': '0x5145a3', 'uniqueId': '0x27d31b946cb8facfed893d46eb3e96977dcd58a5ae945d67975eb5650897b367:log:0', 'hash': '0x27d31b946cb8facfed893d46eb3e96977dcd58a5ae945d67975eb5650897b367', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'value': 16969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4249', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T16:41:59.000Z'}}, {'blockNum': '0x5145c6', 'uniqueId': '0x5a5db34bf4d0df264918363eeaaada44d8cc5ddde40aa30674a908f410eeb072:log:75', 'hash': '0x5a5db34bf4d0df264918363eeaaada44d8cc5ddde40aa30674a908f410eeb072', 'from': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4249', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T16:49:08.000Z'}}, {'blockNum': '0x514627', 'uniqueId': '0x18e05dd292269abe78b541ed4401804bfda11918a934eb911b8176dc7da73ddb:log:51', 'hash': '0x18e05dd292269abe78b541ed4401804bfda11918a934eb911b8176dc7da73ddb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x453a7bf516c9a02cacc5e934fbe435ca3170188d', 'value': 232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xe8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T17:14:04.000Z'}}, {'blockNum': '0x51469e', 'uniqueId': '0x124745c62b1e2d908f94fda492d2d8bb6a09d7b22f2c6f592e81921de53f6780:log:0', 'hash': '0x124745c62b1e2d908f94fda492d2d8bb6a09d7b22f2c6f592e81921de53f6780', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd51a175a461d494476415d54fe244b03d98e8f8e', 'value': 16, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x10', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T17:38:08.000Z'}}, {'blockNum': '0x5146a0', 'uniqueId': '0xc2855f26929b33788f3a5f4a00650320d16a5b8bc98a6824b0d83d301ea9e99e:log:6', 'hash': '0xc2855f26929b33788f3a5f4a00650320d16a5b8bc98a6824b0d83d301ea9e99e', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x7033fdb2b2ec741b21397dfc533c0f66b773072c', 'value': 26954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x694a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T17:38:38.000Z'}}, {'blockNum': '0x5146d1', 'uniqueId': '0xd353a7f2e8f3d5a7cbb4e0d67126adca2cb226f97897bb01c77716adee38a865:log:7', 'hash': '0xd353a7f2e8f3d5a7cbb4e0d67126adca2cb226f97897bb01c77716adee38a865', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc8d5bd5814abd850fb84a2f2c44171ff11f458ed', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x64', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T17:50:27.000Z'}}, {'blockNum': '0x5146d1', 'uniqueId': '0xa015cea18c35dc63e5902e87a8ddf3e36c6a6f693f0abbe08cf3161a01739329:log:8', 'hash': '0xa015cea18c35dc63e5902e87a8ddf3e36c6a6f693f0abbe08cf3161a01739329', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd51a175a461d494476415d54fe244b03d98e8f8e', 'value': 6776, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1a78', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T17:50:27.000Z'}}, {'blockNum': '0x5146f6', 'uniqueId': '0x03e03f719a409a5d9c324bedc5d7e13dbea02f229366ea4bfbc03184d552ccf4:log:35', 'hash': '0x03e03f719a409a5d9c324bedc5d7e13dbea02f229366ea4bfbc03184d552ccf4', 'from': '0xd51a175a461d494476415d54fe244b03d98e8f8e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1a88', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T17:59:55.000Z'}}, {'blockNum': '0x5146f7', 'uniqueId': '0x4c9bf2f5d8010d7659094cab9042e4897b0eadb6beb7bd1a44b5756ea0b093d5:log:24', 'hash': '0x4c9bf2f5d8010d7659094cab9042e4897b0eadb6beb7bd1a44b5756ea0b093d5', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 4045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0fcd', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T18:00:04.000Z'}}, {'blockNum': '0x5146ff', 'uniqueId': '0xeae89a8f65c713ab073fc970d22e6897208cd054244b401e87673eef144539e7:log:0', 'hash': '0xeae89a8f65c713ab073fc970d22e6897208cd054244b401e87673eef144539e7', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0xdc1b614270a72b6f858cb2c10e0e4e7e8f8b4f2b', 'value': 26022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x65a6', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T18:01:44.000Z'}}, {'blockNum': '0x514709', 'uniqueId': '0x27ffebdb45b6fabd6eac7b8e8aa5eb7a13cda30ef7c6bd0718c414119f346cde:log:87', 'hash': '0x27ffebdb45b6fabd6eac7b8e8aa5eb7a13cda30ef7c6bd0718c414119f346cde', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 4915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1333', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T18:04:56.000Z'}}, {'blockNum': '0x514718', 'uniqueId': '0xf9be527d96e5cea92bbcd2ac28650a0028a6763dde6e4c9a4cc910126a0b6d53:log:28', 'hash': '0xf9be527d96e5cea92bbcd2ac28650a0028a6763dde6e4c9a4cc910126a0b6d53', 'from': '0xdc1b614270a72b6f858cb2c10e0e4e7e8f8b4f2b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x65a6', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T18:09:03.000Z'}}, {'blockNum': '0x514718', 'uniqueId': '0x0216b3923bd1f1f5e181c1008744a1ada7bdf3452dccf8cf915c518bcd0955db:log:31', 'hash': '0x0216b3923bd1f1f5e181c1008744a1ada7bdf3452dccf8cf915c518bcd0955db', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2300', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T18:09:03.000Z'}}, {'blockNum': '0x51479b', 'uniqueId': '0xe7c1494ecb461cd48398a2b429c0cd656b8fccfe9dae338041070656cf91e8e5:log:45', 'hash': '0xe7c1494ecb461cd48398a2b429c0cd656b8fccfe9dae338041070656cf91e8e5', 'from': '0x7838c6463ab5d131317e13d6c8007dad6b3763c8', 'to': '0x34b77b420ffc7979b3e67b01f43cdcba712425d7', 'value': 278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0116', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T18:42:13.000Z'}}, {'blockNum': '0x5147c7', 'uniqueId': '0x4e5f3cd3b07541b79a0ed6297eb9b3d6d49efe0fd58c1bd76a20beaae22079bb:log:18', 'hash': '0x4e5f3cd3b07541b79a0ed6297eb9b3d6d49efe0fd58c1bd76a20beaae22079bb', 'from': '0xc180714cab9b65dbf1e6baaf7471b39679fdca14', 'to': '0xec5f2854cd6272f821fa3024a40bb0f479e483e7', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x61a8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T18:52:25.000Z'}}, {'blockNum': '0x5147ea', 'uniqueId': '0x64a2ecc5c71f9c3ab603b73745ddea135bb70eaefa57ddf2f5dd75a24cf95d4e:log:3', 'hash': '0x64a2ecc5c71f9c3ab603b73745ddea135bb70eaefa57ddf2f5dd75a24cf95d4e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x41473de0db4efa74e85842aec8f9e530b2d18564', 'value': 12706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x31a2', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T18:58:47.000Z'}}, {'blockNum': '0x5147eb', 'uniqueId': '0x09b370b5bbb141dab0ec51c3e1cc099aefd5602f78d1cb78aea752e02989a302:log:41', 'hash': '0x09b370b5bbb141dab0ec51c3e1cc099aefd5602f78d1cb78aea752e02989a302', 'from': '0xec5f2854cd6272f821fa3024a40bb0f479e483e7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x61a8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T18:59:19.000Z'}}, {'blockNum': '0x514847', 'uniqueId': '0xa3578505148004099b2273875c097e4105bb9e07bcc3aa750b3ff4a53f03d748:log:14', 'hash': '0xa3578505148004099b2273875c097e4105bb9e07bcc3aa750b3ff4a53f03d748', 'from': '0xc180714cab9b65dbf1e6baaf7471b39679fdca14', 'to': '0xec5f2854cd6272f821fa3024a40bb0f479e483e7', 'value': 24771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x60c3', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T19:22:08.000Z'}}, {'blockNum': '0x514862', 'uniqueId': '0xbab42899bf998707e374747cf7f1600c2606208cc1f707fb5db2701e3a3bd1b8:log:43', 'hash': '0xbab42899bf998707e374747cf7f1600c2606208cc1f707fb5db2701e3a3bd1b8', 'from': '0xec5f2854cd6272f821fa3024a40bb0f479e483e7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x60c3', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T19:29:06.000Z'}}, {'blockNum': '0x51488b', 'uniqueId': '0xf13c51b460dc85e17cf0d7c7302666c4ae92f2b056c7c866053776924c5122b2:log:23', 'hash': '0xf13c51b460dc85e17cf0d7c7302666c4ae92f2b056c7c866053776924c5122b2', 'from': '0xc5054fb28cb3ba351c6ad702bb0d014b81adfc58', 'to': '0xbd1b4257ea720d6b6ae8bf036eb829394b832d69', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x96', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T19:38:27.000Z'}}, {'blockNum': '0x51495a', 'uniqueId': '0x508c6dbeefdc26eddfced2009cc91be0405eaa95cc24318adc99a2efdbcb2f9b:log:38', 'hash': '0x508c6dbeefdc26eddfced2009cc91be0405eaa95cc24318adc99a2efdbcb2f9b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x994e18be43ac487dfc33fc5eed8d6b278bc239c1', 'value': 546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0222', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T20:29:23.000Z'}}, {'blockNum': '0x514a4c', 'uniqueId': '0x7c0ca6dbe5769ae816d9cff353765e9acaa40833bb756b697594c819330cc229:log:1', 'hash': '0x7c0ca6dbe5769ae816d9cff353765e9acaa40833bb756b697594c819330cc229', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbe5d26c75fdaa25694bdc532f071d6b2d58ed15f', 'value': 96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x60', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T21:28:03.000Z'}}, {'blockNum': '0x514ab9', 'uniqueId': '0x751aa8f35ee04f423dd5251a6f443e841ed1a238d9da038f18877a6aabad0f32:log:61', 'hash': '0x751aa8f35ee04f423dd5251a6f443e841ed1a238d9da038f18877a6aabad0f32', 'from': '0x0d347fe2942e4de0ef789d970660b4d982b8153f', 'to': '0x149f1a3d22715754baabba4b8ef9c7cddc2ca973', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4e20', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T21:57:15.000Z'}}, {'blockNum': '0x514af0', 'uniqueId': '0x6c8aacae2df9b485d95e719e1835df0a2748e79b49fd5f280dc262450512d59b:log:11', 'hash': '0x6c8aacae2df9b485d95e719e1835df0a2748e79b49fd5f280dc262450512d59b', 'from': '0x149f1a3d22715754baabba4b8ef9c7cddc2ca973', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x61a8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T22:09:03.000Z'}}, {'blockNum': '0x514b0d', 'uniqueId': '0xbc0475c0434bcd5b9675a3d9220f12b64d23f9a34b563dc6bb80568a8722a430:log:60', 'hash': '0xbc0475c0434bcd5b9675a3d9220f12b64d23f9a34b563dc6bb80568a8722a430', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe1ea8d35a121bc1da06054c72fa93ec0337cef22', 'value': 1046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0416', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T22:18:01.000Z'}}, {'blockNum': '0x514b0d', 'uniqueId': '0xc61b58b672f97ed138d1e955939739df7ed3bb835dcaaeec93811954279fbc84:log:63', 'hash': '0xc61b58b672f97ed138d1e955939739df7ed3bb835dcaaeec93811954279fbc84', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9198b31696ae620fb766977581c9c829b03921da', 'value': 8583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2187', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T22:18:01.000Z'}}, {'blockNum': '0x514d62', 'uniqueId': '0xaad050340d28ba60226a04473a73bcdf5b3ff7d021bbf64e3695bcd938510a0e:log:1', 'hash': '0xaad050340d28ba60226a04473a73bcdf5b3ff7d021bbf64e3695bcd938510a0e', 'from': '0x84980120fdfbef03b0b47e6b41671aadb263e80f', 'to': '0x1ef4fd208e0d38b927d0e2f786fbea298ca442f7', 'value': 450, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x01c2', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-27T00:38:10.000Z'}}, {'blockNum': '0x514da6', 'uniqueId': '0x3430ca4cfc36d6d08ac030e3f6012e08183aafb17e0df775eb1bbd296eeb1e69:log:6', 'hash': '0x3430ca4cfc36d6d08ac030e3f6012e08183aafb17e0df775eb1bbd296eeb1e69', 'from': '0xfb3cdee1cbbf3526476b1d5958ff451e40cba9a7', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 12347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x303b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-27T00:57:00.000Z'}}, {'blockNum': '0x514db0', 'uniqueId': '0x4146a9d7ea47dbb5f4f56b6ce02519b17706142a6fb924c36895724e5f34a764:log:3', 'hash': '0x4146a9d7ea47dbb5f4f56b6ce02519b17706142a6fb924c36895724e5f34a764', 'from': '0x1ef4fd208e0d38b927d0e2f786fbea298ca442f7', 'to': '0x7ed1e469fcb3ee19c0366d829e291451be638e59', 'value': 450, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x01c2', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-27T00:58:57.000Z'}}, {'blockNum': '0x514dd0', 'uniqueId': '0x88dda8ff32a8487890b4ddd8a67fc0a61c2d09590e7eb1e58452e67952561279:log:10', 'hash': '0x88dda8ff32a8487890b4ddd8a67fc0a61c2d09590e7eb1e58452e67952561279', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0xbd1b4257ea720d6b6ae8bf036eb829394b832d69', 'value': 191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xbf', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-27T01:07:06.000Z'}}, {'blockNum': '0x514e65', 'uniqueId': '0x5f46f59d0544de332eca987de8bc98ce6482ef4a8b4eeb0e4dca3c3e7cb9e6d7:log:2', 'hash': '0x5f46f59d0544de332eca987de8bc98ce6482ef4a8b4eeb0e4dca3c3e7cb9e6d7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x086b284824cfbad8b8ddb736e03b453a50ed9bfe', 'value': 1189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x04a5', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-27T01:46:16.000Z'}}, {'blockNum': '0x514ee9', 'uniqueId': '0x63979d4b273ce061fbfa0f3fb0a5b847c768a2994f37423cd3729a78c046c3f2:log:10', 'hash': '0x63979d4b273ce061fbfa0f3fb0a5b847c768a2994f37423cd3729a78c046c3f2', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0xd1a0bdc4a12480d66da6e2e5581f9588988298e6', 'value': 133000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x020788', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-27T02:16:45.000Z'}}, {'blockNum': '0x514ef1', 'uniqueId': '0x5ca6122367e6181804da09a254a36a43dc16761815788981d2ae1afee3d48b43:log:15', 'hash': '0x5ca6122367e6181804da09a254a36a43dc16761815788981d2ae1afee3d48b43', 'from': '0xd1a0bdc4a12480d66da6e2e5581f9588988298e6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 133000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x020788', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-27T02:19:09.000Z'}}, {'blockNum': '0x515047', 'uniqueId': '0x28d5f49283dea5de8dc4151dab7b95463f9f6ec38aa6da4cd478688ff390ca4b:log:3', 'hash': '0x28d5f49283dea5de8dc4151dab7b95463f9f6ec38aa6da4cd478688ff390ca4b', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x084f76593ec6ce077108b90297512f30c7a6f831', 'value': 4074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0fea', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-27T03:39:32.000Z'}}, {'blockNum': '0x515071', 'uniqueId': '0xf81461c87058bf7cf910d7b0672a21f832b4f8bdd1981f11fddebaa6e0715333:log:36', 'hash': '0xf81461c87058bf7cf910d7b0672a21f832b4f8bdd1981f11fddebaa6e0715333', 'from': '0x084f76593ec6ce077108b90297512f30c7a6f831', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0fea', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-27T03:49:26.000Z'}}]}}
Number of returned transfers: 73
Answer is complete
symbol MTH
group FCS
date 2018-03-30
hour 18:00
exchange binance
Name: 441, dtype: object
HERE
Symbol: MTH, Contract: 0xaf4dce16da2877f8c9e00544c93b62ac40631f16
Datetime timestamps: 2018-03-30 18:00:00 2018-03-30 06:00:00 2018-03-31 06:00:00
Unix timestamps: 1522382400.0 1522468800.0
Hex Block Numbers: 0x519613 0x51ace3
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x51980c', 'uniqueId': '0x769cc9d52e482a136ec78a30ce37c1032aab38144fbb91e24be5c455275a45c3:log:0', 'hash': '0x769cc9d52e482a136ec78a30ce37c1032aab38144fbb91e24be5c455275a45c3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc332fda4ecbb165aaad56520e8fe1393f422c84a', 'value': 951, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x05ab1c60', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T06:10:47.000Z'}}, {'blockNum': '0x519a52', 'uniqueId': '0x7597232a216f5125dcf6afe4deaa495a2fd6964f81207747f8a19064b9a1068d:log:4', 'hash': '0x7597232a216f5125dcf6afe4deaa495a2fd6964f81207747f8a19064b9a1068d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf223c63277c24d611d6c624dc009b8c9ee0e8f37', 'value': 13500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x50775d80', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T08:35:08.000Z'}}, {'blockNum': '0x519a88', 'uniqueId': '0x97373c0612ec1a369853c8f927efdbc612b15ab994566c73df94fb39d6a78374:log:17', 'hash': '0x97373c0612ec1a369853c8f927efdbc612b15ab994566c73df94fb39d6a78374', 'from': '0xf223c63277c24d611d6c624dc009b8c9ee0e8f37', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x50775d80', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T08:50:23.000Z'}}, {'blockNum': '0x519e1d', 'uniqueId': '0xea17ac9832c093b92cb902fd5c482e76b303cf32b86988cfff0de8d1bbb25fdf:log:55', 'hash': '0xea17ac9832c093b92cb902fd5c482e76b303cf32b86988cfff0de8d1bbb25fdf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x118d4031a818306fb053afb38490a497f06ce7c5', 'value': 476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x02d65180', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T12:32:33.000Z'}}, {'blockNum': '0x519e9c', 'uniqueId': '0xe6e5a275e89e73479e7df9e7ffa2e68aee3e835d70e1aa5bf686c76a1070950c:log:0', 'hash': '0xe6e5a275e89e73479e7df9e7ffa2e68aee3e835d70e1aa5bf686c76a1070950c', 'from': '0x59d4d5933d3c546b659443176e3349657c05dbe6', 'to': '0x938ad3ffbb08a7fc46f8e86a100f0508acd551f8', 'value': 26626.8159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x9eb54bf6', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T13:02:30.000Z'}}, {'blockNum': '0x519ecc', 'uniqueId': '0x89d40d8c889ff1780d2fd98d4a7bd001e671c5c859712ad344c3917df2048498:log:48', 'hash': '0x89d40d8c889ff1780d2fd98d4a7bd001e671c5c859712ad344c3917df2048498', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8227b780493a86c35a1ca35c5bdc83d64e51deaa', 'value': 1741.233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x0a60e924', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T13:13:20.000Z'}}, {'blockNum': '0x519f24', 'uniqueId': '0x8a70c7a556545a5d623792d59815fd24e869c2db4b563ec45751c3c3e0869834:log:2', 'hash': '0x8a70c7a556545a5d623792d59815fd24e869c2db4b563ec45751c3c3e0869834', 'from': '0x8227b780493a86c35a1ca35c5bdc83d64e51deaa', 'to': '0x4b01721f0244e7c5b5f63c20942850e447f5a5ee', 'value': 1741.233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x0a60e924', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T13:36:10.000Z'}}, {'blockNum': '0x519f67', 'uniqueId': '0x95efde022ead5868698aa9ef422756381903ddc0ec85a4ef45fc13624378bc75:log:14', 'hash': '0x95efde022ead5868698aa9ef422756381903ddc0ec85a4ef45fc13624378bc75', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb76861514af690d3a75fcf4318d1c699f94756a8', 'value': 1134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x06c258c0', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T13:52:46.000Z'}}, {'blockNum': '0x51a022', 'uniqueId': '0x829220251832cf09d3f0733b6460f4a278c721c6bec38343b4e346793872452f:log:31', 'hash': '0x829220251832cf09d3f0733b6460f4a278c721c6bec38343b4e346793872452f', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x53c809cd373968cf1337d24179262934ab1050e1', 'value': 397.7551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x025eed16', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T14:41:14.000Z'}}, {'blockNum': '0x51a02c', 'uniqueId': '0x3dbddcd1f6454d87eb1a3eded425397bdd09c714ab8bf9aedea18829d398835d:log:16', 'hash': '0x3dbddcd1f6454d87eb1a3eded425397bdd09c714ab8bf9aedea18829d398835d', 'from': '0x179cd40b311b52a6a04f175bb3b7a43992777b6a', 'to': '0x45cf44d26a7ec415981a3e9362ac875c10842786', 'value': 2544.427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x0f2a7ccc', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T14:45:15.000Z'}}, {'blockNum': '0x51a0d8', 'uniqueId': '0x1e6810a930853db22288f42d4e74f45afeb45ba2a2e28f2362824992e117d337:log:2', 'hash': '0x1e6810a930853db22288f42d4e74f45afeb45ba2a2e28f2362824992e117d337', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa6a53c3f278d94fe7c0a47c8cfcbafd0e083bf4f', 'value': 17983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x6b2fe160', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T15:23:02.000Z'}}, {'blockNum': '0x51a110', 'uniqueId': '0xc30b3c1fd111138553e4b9017a519239ddc49d2cc2342693ffeb3829472d8423:log:4', 'hash': '0xc30b3c1fd111138553e4b9017a519239ddc49d2cc2342693ffeb3829472d8423', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb76861514af690d3a75fcf4318d1c699f94756a8', 'value': 1509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x08fe8d20', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T15:38:04.000Z'}}, {'blockNum': '0x51a1ae', 'uniqueId': '0x71bffa7bb8582bf827f38dac06366a3de89f853be1634354023310ce05053207:log:6', 'hash': '0x71bffa7bb8582bf827f38dac06366a3de89f853be1634354023310ce05053207', 'from': '0xf2767913abfa2efb9f02e0c87b11e0b03d6e5d64', 'to': '0x021869428a1350e6d0529b1294c96a9e613462fa', 'value': 10080.5704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x3c15bad0', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T16:10:15.000Z'}}, {'blockNum': '0x51a26c', 'uniqueId': '0x46d197e9b242522afed44a4feffb7d0057e04b61cb881e5e1ab44d5adbc90b00:log:120', 'hash': '0x46d197e9b242522afed44a4feffb7d0057e04b61cb881e5e1ab44d5adbc90b00', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x844eb88ab8f9971f654e9f4b145ced4f02802057', 'value': 973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x05ccae20', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T16:54:36.000Z'}}, {'blockNum': '0x51a28d', 'uniqueId': '0xc87a41dd12047467be235fa0a70fcf672e822a122ebeacca4838b51c80050cc7:log:19', 'hash': '0xc87a41dd12047467be235fa0a70fcf672e822a122ebeacca4838b51c80050cc7', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xf3559da87141c2ea75e05220e61924c97ae1d257', 'value': 3777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x16833ea0', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T17:02:11.000Z'}}, {'blockNum': '0x51a2a8', 'uniqueId': '0x037b3a8629807619ffa601364f4bf7e7908042c8c8e052b49c796e9fd167ecf6:log:127', 'hash': '0x037b3a8629807619ffa601364f4bf7e7908042c8c8e052b49c796e9fd167ecf6', 'from': '0x9bdef5572593a3dca3771b1d2a1f25f677a67851', 'to': '0xf92e5dba58e6aa251fc028b03db3c41ce5738147', 'value': 9978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x3b793840', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T17:08:59.000Z'}}, {'blockNum': '0x51a2af', 'uniqueId': '0x5ddf6f3922c292f9c03387411721991ef989e7c3bbd1159e28c43d823856d95d:log:5', 'hash': '0x5ddf6f3922c292f9c03387411721991ef989e7c3bbd1159e28c43d823856d95d', 'from': '0x844eb88ab8f9971f654e9f4b145ced4f02802057', 'to': '0x4b01721f0244e7c5b5f63c20942850e447f5a5ee', 'value': 973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x05ccae20', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T17:11:04.000Z'}}, {'blockNum': '0x51a2d7', 'uniqueId': '0xa54dc686d83d4ccaff52eb2b7e5f0c7fecae273983aadaaf749dd5f05e42aa7e:log:33', 'hash': '0xa54dc686d83d4ccaff52eb2b7e5f0c7fecae273983aadaaf749dd5f05e42aa7e', 'from': '0xf92e5dba58e6aa251fc028b03db3c41ce5738147', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x3b793840', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T17:20:03.000Z'}}, {'blockNum': '0x51a356', 'uniqueId': '0x43d7d3c1877721ed54daf3515a35c7173178f957892eba960402e4d94cd13620:log:1', 'hash': '0x43d7d3c1877721ed54daf3515a35c7173178f957892eba960402e4d94cd13620', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x89afafe7cf4b1d29c63562c1befe6c298aad6c09', 'value': 4083.443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x1856d6ec', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T17:54:22.000Z'}}, {'blockNum': '0x51a371', 'uniqueId': '0xbd6e63bba3f03ca6b3fd9f70227b1eea762f2fd8ca0214ed1e5757290b730bb0:log:17', 'hash': '0xbd6e63bba3f03ca6b3fd9f70227b1eea762f2fd8ca0214ed1e5757290b730bb0', 'from': '0x89afafe7cf4b1d29c63562c1befe6c298aad6c09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4083.443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x1856d6ec', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T18:00:06.000Z'}}, {'blockNum': '0x51a422', 'uniqueId': '0x7146fb9611739058f56b08c7c16f0d5a1ffe45931cff4a27eaf2688a50d74a4b:log:33', 'hash': '0x7146fb9611739058f56b08c7c16f0d5a1ffe45931cff4a27eaf2688a50d74a4b', 'from': '0x4b01721f0244e7c5b5f63c20942850e447f5a5ee', 'to': '0xfc23aa54b7928bb61e8fed9128845805334b9e8f', 'value': 1750.85023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x0a6f95df', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T18:43:20.000Z'}}, {'blockNum': '0x51a53a', 'uniqueId': '0x242740c0ac74a54ee39c533885ac4fcfeddb56d483635795919b2339827771db:log:2', 'hash': '0x242740c0ac74a54ee39c533885ac4fcfeddb56d483635795919b2339827771db', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x95f90a80c98672a8529018753c0d1bbc0166c1a5', 'value': 6734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x282344c0', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T19:49:08.000Z'}}, {'blockNum': '0x51a5d2', 'uniqueId': '0xcaa229f06b18c91cb9819a169b0b3b464889f2548e6b02b1f0a50f2df287ee4f:log:71', 'hash': '0xcaa229f06b18c91cb9819a169b0b3b464889f2548e6b02b1f0a50f2df287ee4f', 'from': '0x805ec0cfea0f8a86256dceedff36dc7c85012d01', 'to': '0x9539c69d11f66a3acb6a79774e030c408e9d4f60', 'value': 1704.2872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x0a288930', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T20:31:26.000Z'}}, {'blockNum': '0x51a65f', 'uniqueId': '0xfda2c509e377782794e5cb8f4f5d68e68061581e4e1a8f362b1f1b1a9c22e484:log:4', 'hash': '0xfda2c509e377782794e5cb8f4f5d68e68061581e4e1a8f362b1f1b1a9c22e484', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb1c74167e9df09e7ac1e3db70973a42f2a4608c9', 'value': 3043.635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x122437ec', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T21:06:40.000Z'}}, {'blockNum': '0x51a719', 'uniqueId': '0xb7c9f6a98261fb51189d20849ffafe6835f4633f26929d88175753e6d4f58b53:log:56', 'hash': '0xb7c9f6a98261fb51189d20849ffafe6835f4633f26929d88175753e6d4f58b53', 'from': '0xb1c74167e9df09e7ac1e3db70973a42f2a4608c9', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 3043.635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x122437ec', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T21:49:16.000Z'}}, {'blockNum': '0x51a73c', 'uniqueId': '0x3636460e92bb66e5771d3c1f0fff33a42d9dcc5e8948c7e14887e4b75efbda7d:log:2', 'hash': '0x3636460e92bb66e5771d3c1f0fff33a42d9dcc5e8948c7e14887e4b75efbda7d', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x11da677aaae9d50b1bc23bddd89dd9542c8ec5d9', 'value': 756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x04819080', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T21:57:04.000Z'}}, {'blockNum': '0x51a73c', 'uniqueId': '0x9b3574edac567cf231f2fa51ae2b00be061227c425348092da8e40d7bdeb859f:log:111', 'hash': '0x9b3574edac567cf231f2fa51ae2b00be061227c425348092da8e40d7bdeb859f', 'from': '0xed300406de9c8e9ab09c12a8c39e4899be88c5b7', 'to': '0x725589bf5d87b1b15081fa4745db3dcc74d7e7ed', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T21:57:04.000Z'}}, {'blockNum': '0x51a74e', 'uniqueId': '0x4e4fe6f99f172f472f8dbcd902c96af19fcbf03aa295ac7d67e0bec9e780b0f1:log:3', 'hash': '0x4e4fe6f99f172f472f8dbcd902c96af19fcbf03aa295ac7d67e0bec9e780b0f1', 'from': '0xed300406de9c8e9ab09c12a8c39e4899be88c5b7', 'to': '0x037015d0f52b4a001f90220f9a362d0889b94cac', 'value': 500.70255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x02fc02ef', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T22:02:43.000Z'}}, {'blockNum': '0x51a752', 'uniqueId': '0x81eb4d3697c577d115a2d317feb6e73db0b037c74992dfb5a01677162a66eaa5:log:23', 'hash': '0x81eb4d3697c577d115a2d317feb6e73db0b037c74992dfb5a01677162a66eaa5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x28e3278d3a3cee67f69fbd163e9bacd7f779ebde', 'value': 111.864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0xaab0e0', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T22:03:45.000Z'}}, {'blockNum': '0x51a794', 'uniqueId': '0xa8b7f53988352ae081304ce1bfb1205109de369fd7df9b12030116e822c75f65:log:2', 'hash': '0xa8b7f53988352ae081304ce1bfb1205109de369fd7df9b12030116e822c75f65', 'from': '0xb76861514af690d3a75fcf4318d1c699f94756a8', 'to': '0x7392ad419290804db10766c5b79e65c699d2431c', 'value': 2643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x0fc0e5e0', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T22:20:48.000Z'}}, {'blockNum': '0x51a9f1', 'uniqueId': '0x211384ca7da72fd633d581236ebcc0c2a291989bcb50c2a59791b4bff48a3371:log:111', 'hash': '0x211384ca7da72fd633d581236ebcc0c2a291989bcb50c2a59791b4bff48a3371', 'from': '0xd8a467fdcdcd8e27391b8ad2ecb3b4a345b42610', 'to': '0x2fe458ac181a6db3c0670c5c3c5b84e7beb4aea5', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-31T00:46:04.000Z'}}, {'blockNum': '0x51aa01', 'uniqueId': '0xfc63c9f2f57e9e6be089dcd66e6360c00d9b57c32b189c94c0eb8f462b7bcf98:log:21', 'hash': '0xfc63c9f2f57e9e6be089dcd66e6360c00d9b57c32b189c94c0eb8f462b7bcf98', 'from': '0x2fe458ac181a6db3c0670c5c3c5b84e7beb4aea5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-31T00:50:17.000Z'}}, {'blockNum': '0x51aa85', 'uniqueId': '0xbc0de2933caa7a350083a77c65c2d55c901f6f8378c6880bc342d7fc0d9531b3:log:51', 'hash': '0xbc0de2933caa7a350083a77c65c2d55c901f6f8378c6880bc342d7fc0d9531b3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9b58528caa0f37e465220d0d57e88c92a6b00b5d', 'value': 774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x049d07c0', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-31T01:24:39.000Z'}}, {'blockNum': '0x51aa8e', 'uniqueId': '0x98bf5cf2c79c00c5a442f4b67a7e6ba50728a0abc11e97be1f0b2b728d437d53:log:4', 'hash': '0x98bf5cf2c79c00c5a442f4b67a7e6ba50728a0abc11e97be1f0b2b728d437d53', 'from': '0x9b58528caa0f37e465220d0d57e88c92a6b00b5d', 'to': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'value': 774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x049d07c0', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-31T01:27:15.000Z'}}, {'blockNum': '0x51ab82', 'uniqueId': '0xe2d52c166cd0d6e7f4cb2c1540e93da5a6a8f42c3eddf8713edeaa8141152ee5:log:10', 'hash': '0xe2d52c166cd0d6e7f4cb2c1540e93da5a6a8f42c3eddf8713edeaa8141152ee5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8227b780493a86c35a1ca35c5bdc83d64e51deaa', 'value': 2876.094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x11249238', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-31T02:30:10.000Z'}}, {'blockNum': '0x51abb1', 'uniqueId': '0xd3be4db2d6df0af5b542038b1452fe9d5f7bebfb62b1679f0780b16a91a8e32b:log:69', 'hash': '0xd3be4db2d6df0af5b542038b1452fe9d5f7bebfb62b1679f0780b16a91a8e32b', 'from': '0xecd3f4884fc7cc5d1a7eb0b3a73c172545725086', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x042c1d80', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-31T02:43:25.000Z'}}, {'blockNum': '0x51abc5', 'uniqueId': '0xd89e2e928a3ef5676c7f15b8313dba7927e89dfceaa70663e6bf83398d2f0586:log:17', 'hash': '0xd89e2e928a3ef5676c7f15b8313dba7927e89dfceaa70663e6bf83398d2f0586', 'from': '0x8227b780493a86c35a1ca35c5bdc83d64e51deaa', 'to': '0x4b01721f0244e7c5b5f63c20942850e447f5a5ee', 'value': 2876.094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x11249238', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-31T02:51:15.000Z'}}, {'blockNum': '0x51ac8b', 'uniqueId': '0x9a2b488a458224271bff44950ca687cb122ca7449e1ba7ea16d0ece2584ed386:log:7', 'hash': '0x9a2b488a458224271bff44950ca687cb122ca7449e1ba7ea16d0ece2584ed386', 'from': '0x7a165983aae7e0f421d902e8879762fd5d02a267', 'to': '0xc42c7dcfb8208a3d46cd72cfab64c66b26773f1b', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-31T03:37:05.000Z'}}]}}
Number of returned transfers: 38
Answer is complete
symbol MDA
group FCS
date 2018-03-31
hour 16:59
exchange binance
Name: 442, dtype: object
HERE
Symbol: MDA, Contract: 0x51db5ad35c671a87207d88fc11d593ac0c8415bd
Datetime timestamps: 2018-03-31 16:59:00 2018-03-31 04:59:00 2018-04-01 04:59:00
Unix timestamps: 1522465140.0 1522551540.0
Hex Block Numbers: 0x51abe3 0x51c3d4
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x51adae', 'uniqueId': '0xb16c7e43d5bd434f519607d80552e8b9c9c15ed606830222e4ea4d9be8008ef1:log:10', 'hash': '0xb16c7e43d5bd434f519607d80552e8b9c9c15ed606830222e4ea4d9be8008ef1', 'from': '0x9539e0b14021a43cde41d9d45dc34969be9c7cb0', 'to': '0x2d939b793102685ec6a99e64c0c5a3e8f5623df7', 'value': 624.29, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x21d7c39f5eac9d0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T04:43:46.000Z'}}, {'blockNum': '0x51adb1', 'uniqueId': '0x3dbfd8407af35d30deaf5c898e47b273a2b7eeae6394f1accaa64c038a193cbd:log:29', 'hash': '0x3dbfd8407af35d30deaf5c898e47b273a2b7eeae6394f1accaa64c038a193cbd', 'from': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 4780.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01032aed8e3c6b800000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T04:44:11.000Z'}}, {'blockNum': '0x51adb4', 'uniqueId': '0x0c9b0ed718b9dbe10b8ef69b67a8f047d50b0158dfeaca0ef4c4ceba4b217bfd:log:33', 'hash': '0x0c9b0ed718b9dbe10b8ef69b67a8f047d50b0158dfeaca0ef4c4ceba4b217bfd', 'from': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 4775.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0102e589fcba268c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T04:44:27.000Z'}}, {'blockNum': '0x51aef2', 'uniqueId': '0x9fe1626acb467c95c446195070bbeb97c03069ff74c7025b103597d034fb6c5e:log:1', 'hash': '0x9fe1626acb467c95c446195070bbeb97c03069ff74c7025b103597d034fb6c5e', 'from': '0xfa84c343306643948d295f3d4853e8adc713a57d', 'to': '0x3aef392fa182b36cfdeab11ca6f7dab3a930cc9f', 'value': 1590.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x563a0260a3d8540000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T06:00:01.000Z'}}, {'blockNum': '0x51afe3', 'uniqueId': '0x2b3033c87f244216a996a1a835027dc8c6420ea51ed73738625b6aa1815a3c21:log:50', 'hash': '0x2b3033c87f244216a996a1a835027dc8c6420ea51ed73738625b6aa1815a3c21', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc6c3633a71d6039468bfbf742d15bc5b9ca19dc0', 'value': 1625.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x58211ea0ac188a0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T06:57:29.000Z'}}, {'blockNum': '0x51b0e3', 'uniqueId': '0xb657109d5c2cd093a2cdd08822fce417b2f7e201d1327c22a1b1a04700210e79:log:1', 'hash': '0xb657109d5c2cd093a2cdd08822fce417b2f7e201d1327c22a1b1a04700210e79', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4773.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0102c86549da7a3a0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T07:57:05.000Z'}}, {'blockNum': '0x51b293', 'uniqueId': '0x859a45bf01a64a95d9ff47d3ad72c3adf2ae987d44fad5302f107dcf0c17a5e3:log:14', 'hash': '0x859a45bf01a64a95d9ff47d3ad72c3adf2ae987d44fad5302f107dcf0c17a5e3', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 4751.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0101944f0b795c8e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T09:44:53.000Z'}}, {'blockNum': '0x51b29f', 'uniqueId': '0x42c663b60cb6a5d564755934627756b43a4614ef08b73201cf740311247bffa8:log:18', 'hash': '0x42c663b60cb6a5d564755934627756b43a4614ef08b73201cf740311247bffa8', 'from': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4751.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0101944f0b795c8e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T09:48:13.000Z'}}, {'blockNum': '0x51b2c2', 'uniqueId': '0x189529fdbf7345d1f65d58dee982ea6611e724448d62e09b7a8863a29514b044:log:59', 'hash': '0x189529fdbf7345d1f65d58dee982ea6611e724448d62e09b7a8863a29514b044', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb1b47c45f4d9ce2be5896df490099c444da50fba', 'value': 4996.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x010edf2470594a560000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T09:56:17.000Z'}}, {'blockNum': '0x51b614', 'uniqueId': '0x63b8a2d5198d9f15a1b25c25b4c07e6be95d8e59137c90c958bf8d93266529a7:log:18', 'hash': '0x63b8a2d5198d9f15a1b25c25b4c07e6be95d8e59137c90c958bf8d93266529a7', 'from': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 4773.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0102c86549da7a3a0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T13:17:02.000Z'}}, {'blockNum': '0x51b65a', 'uniqueId': '0x18773f4e8bf64af1cffb835c6874dbc8ad8b3fb47cac5cc762f06c85828e0f1a:log:40', 'hash': '0x18773f4e8bf64af1cffb835c6874dbc8ad8b3fb47cac5cc762f06c85828e0f1a', 'from': '0xb8e083a4cb41ad764bd0c717f9b16b4765d0e00a', 'to': '0xfe555e7bfe886c3f19df6fb7e155b222b30ac53e', 'value': 20574.996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x045b5f6dbaffcb020000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T13:31:40.000Z'}}, {'blockNum': '0x51b67c', 'uniqueId': '0x373f51a0b3defa423730c8ef0c07d0a3a55b9bd95f1066ed35b52933eb5ff5ea:log:6', 'hash': '0x373f51a0b3defa423730c8ef0c07d0a3a55b9bd95f1066ed35b52933eb5ff5ea', 'from': '0xfe555e7bfe886c3f19df6fb7e155b222b30ac53e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20574.996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x045b5f6dbaffcb020000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T13:38:06.000Z'}}, {'blockNum': '0x51b839', 'uniqueId': '0x1d01849648791851c6e4525f251022b7e3c8a4ce2e7d573959ae5e350391525d:log:3', 'hash': '0x1d01849648791851c6e4525f251022b7e3c8a4ce2e7d573959ae5e350391525d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4756.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0101dc7927ec5c960000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T15:15:54.000Z'}}, {'blockNum': '0x51b9a7', 'uniqueId': '0x9673b62c982f763b4772433f3bc8a78daa89bed987c12b14da6f2a662307095d:log:4', 'hash': '0x9673b62c982f763b4772433f3bc8a78daa89bed987c12b14da6f2a662307095d', 'from': '0x9539e0b14021a43cde41d9d45dc34969be9c7cb0', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 2956.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xa0446e3f44bc990000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T16:43:51.000Z'}}, {'blockNum': '0x51b9bf', 'uniqueId': '0xfb0ceea0c7224d8bc505697757fcec261da8e8804abf7eab680290769dc2b4d9:log:50', 'hash': '0xfb0ceea0c7224d8bc505697757fcec261da8e8804abf7eab680290769dc2b4d9', 'from': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2956.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xa0446e3f44bc990000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T16:48:29.000Z'}}, {'blockNum': '0x51b9c6', 'uniqueId': '0xd7a8824df8270be3f4acec79db1ace87ddbc82e11dc56e9c4888b9b14077eb25:log:21', 'hash': '0xd7a8824df8270be3f4acec79db1ace87ddbc82e11dc56e9c4888b9b14077eb25', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 4748.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01016aace75e66620000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T16:50:34.000Z'}}, {'blockNum': '0x51b9e4', 'uniqueId': '0x03223e8246309e2bbf18702031560458b80c1aa8cc094b70a07f3ab20bad20ea:log:37', 'hash': '0x03223e8246309e2bbf18702031560458b80c1aa8cc094b70a07f3ab20bad20ea', 'from': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4748.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01016aace75e66620000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T16:58:41.000Z'}}, {'blockNum': '0x51b9e7', 'uniqueId': '0xca7aeea7777e8e72659b3c48dfe8ec589831c1b6934f3d259a14eb734986c870:log:54', 'hash': '0xca7aeea7777e8e72659b3c48dfe8ec589831c1b6934f3d259a14eb734986c870', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x703793b99b17d85cbcdc59ec14cb19b07285c24f', 'value': 335.7109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x1232ecb4e09eaf4000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T16:59:20.000Z'}}, {'blockNum': '0x51b9e9', 'uniqueId': '0xf6797cfe597fbf721a4ef358328b5d509a1a15c9f0dd9e952fe6af701188f0b5:log:29', 'hash': '0xf6797cfe597fbf721a4ef358328b5d509a1a15c9f0dd9e952fe6af701188f0b5', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x703793b99b17d85cbcdc59ec14cb19b07285c24f', 'value': 200.1783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0ada082f428993c000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T16:59:55.000Z'}}, {'blockNum': '0x51b9f1', 'uniqueId': '0xc45898e6e1cb3dcc93734c992715e2b3878f021b7a99b524a3801e7a62ac8069:log:6', 'hash': '0xc45898e6e1cb3dcc93734c992715e2b3878f021b7a99b524a3801e7a62ac8069', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 1626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x582548711531280000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:01:03.000Z'}}, {'blockNum': '0x51b9f3', 'uniqueId': '0x17ada67df5669c4084bab9112c9c77cf34e58f253453cc1d1b8c46936834d596:log:70', 'hash': '0x17ada67df5669c4084bab9112c9c77cf34e58f253453cc1d1b8c46936834d596', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xd12a65a346063d7cb051fb06adc4e9a16b49bdcf', 'value': 1197.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x40eaa6a15f82460000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:01:35.000Z'}}, {'blockNum': '0x51b9f6', 'uniqueId': '0x1f5517683cac4c317d7f18b75c699977c8e3b972749b366909c21fe081b8b51b:log:44', 'hash': '0x1f5517683cac4c317d7f18b75c699977c8e3b972749b366909c21fe081b8b51b', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x6e07bf1e7725e322b691247cedf48e1589e886eb', 'value': 999.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x362ed9526c0aee0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:02:07.000Z'}}, {'blockNum': '0x51b9fd', 'uniqueId': '0x87417c2f390debe9a4026d0d3e993e5d20dbc07c1a71bcff511cfd2c4f4b4193:log:12', 'hash': '0x87417c2f390debe9a4026d0d3e993e5d20dbc07c1a71bcff511cfd2c4f4b4193', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 217.9858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0bd129222967588000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:03:22.000Z'}}, {'blockNum': '0x51ba01', 'uniqueId': '0xab7f3783d6f4d2d4ab52efb86f6a6c67f94eb3c73e39923ddc2be2bcb1716e4e:log:7', 'hash': '0xab7f3783d6f4d2d4ab52efb86f6a6c67f94eb3c73e39923ddc2be2bcb1716e4e', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 2991.805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xa22fa28c3cdd8c8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:04:27.000Z'}}, {'blockNum': '0x51ba05', 'uniqueId': '0x4eeba6dbb6e80d78d6438352bfe3117373351d4c243c67bae6b3aba6055fc109:log:3', 'hash': '0x4eeba6dbb6e80d78d6438352bfe3117373351d4c243c67bae6b3aba6055fc109', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 744.017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x28554f5f876bce8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:05:07.000Z'}}, {'blockNum': '0x51ba0b', 'uniqueId': '0x3e0cc0a6470a10bc601dfc7fa5223a0404380715fc812194d2e8cd7d094d5c6e:log:0', 'hash': '0x3e0cc0a6470a10bc601dfc7fa5223a0404380715fc812194d2e8cd7d094d5c6e', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0xf8cb4b002d49c1150e9cc8c2c141d7759c0ac42e', 'value': 1180.357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x3ffcbe75b359c08000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:06:23.000Z'}}, {'blockNum': '0x51ba12', 'uniqueId': '0x260b81af3f2aa5988d7822b9b7b7448df3846202c7484776e4be6e33099c050a:log:1', 'hash': '0x260b81af3f2aa5988d7822b9b7b7448df3846202c7484776e4be6e33099c050a', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 4345.075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xeb8c07634e566b8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:07:49.000Z'}}, {'blockNum': '0x51ba15', 'uniqueId': '0xf999dfaf7b7f95dd01fb4ad3ac431d20fd46547fbdc6118a9aa047cc03d3a49a:log:2', 'hash': '0xf999dfaf7b7f95dd01fb4ad3ac431d20fd46547fbdc6118a9aa047cc03d3a49a', 'from': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 962.0028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x34267881b0d3270000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:08:10.000Z'}}, {'blockNum': '0x51ba15', 'uniqueId': '0xe42ce616bd1875bcfbb25fcacefc9991111d3230d9476ae46b0d9dc98c4d8d1a:log:3', 'hash': '0xe42ce616bd1875bcfbb25fcacefc9991111d3230d9476ae46b0d9dc98c4d8d1a', 'from': '0x6e07bf1e7725e322b691247cedf48e1589e886eb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 999.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x362ed9526c0aee0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:08:10.000Z'}}, {'blockNum': '0x51ba15', 'uniqueId': '0x0c15850ceb991b7224118b85fa2b48f394b81a7963f43874294a3029798a17af:log:5', 'hash': '0x0c15850ceb991b7224118b85fa2b48f394b81a7963f43874294a3029798a17af', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x582548711531280000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:08:10.000Z'}}, {'blockNum': '0x51ba21', 'uniqueId': '0x46e6fe96a8e6b1ea2ae634efbcf05b7d922731f9f2f9ad6426d340d21477c02b:log:1', 'hash': '0x46e6fe96a8e6b1ea2ae634efbcf05b7d922731f9f2f9ad6426d340d21477c02b', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 164.161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x08e63107bcdce68000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:10:20.000Z'}}, {'blockNum': '0x51ba47', 'uniqueId': '0x60a3553756f40da242b4b7603aeff8016830006ca94b73314ee32f5996e81e37:log:29', 'hash': '0x60a3553756f40da242b4b7603aeff8016830006ca94b73314ee32f5996e81e37', 'from': '0xf8cb4b002d49c1150e9cc8c2c141d7759c0ac42e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1180.357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x3ffcbe75b359c08000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:18:52.000Z'}}, {'blockNum': '0x51ba77', 'uniqueId': '0x13ec3a14795523f1805a8dc9343d7193b7fc24a52f5473925736a4b78f7f1018:log:35', 'hash': '0x13ec3a14795523f1805a8dc9343d7193b7fc24a52f5473925736a4b78f7f1018', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4345.075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xeb8c07634e566b8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:28:31.000Z'}}, {'blockNum': '0x51ba78', 'uniqueId': '0x505e8d3c55b57ddadc610c2f14b9fa507ab2e241035115aeb302c96e8142219e:log:9', 'hash': '0x505e8d3c55b57ddadc610c2f14b9fa507ab2e241035115aeb302c96e8142219e', 'from': '0x9539e0b14021a43cde41d9d45dc34969be9c7cb0', 'to': '0xc1520ec922a53464eaa0682b510ead8ed0ed9e52', 'value': 1717.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x5d20834d3a8bcd0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:29:01.000Z'}}, {'blockNum': '0x51ba97', 'uniqueId': '0xdd6af6423f34f81cc54a208b6455775018e4d848fda5b1b92dac0f4d45e84012:log:6', 'hash': '0xdd6af6423f34f81cc54a208b6455775018e4d848fda5b1b92dac0f4d45e84012', 'from': '0xc1520ec922a53464eaa0682b510ead8ed0ed9e52', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1717.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x5d20834d3a8bcd0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:38:04.000Z'}}, {'blockNum': '0x51bc0b', 'uniqueId': '0xd3cbf9d7b3241f061e125d7cf0959ce9fe2ea630aee07bcb07e0585e62e6e2b3:log:30', 'hash': '0xd3cbf9d7b3241f061e125d7cf0959ce9fe2ea630aee07bcb07e0585e62e6e2b3', 'from': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 4756.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0101dc7927ec5c960000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T19:08:16.000Z'}}, {'blockNum': '0x51bc7e', 'uniqueId': '0x1c7bee6f6d8c152b877ff51aa0c5750b1fc0da33993b1a9af34a2233089abf4b:log:20', 'hash': '0x1c7bee6f6d8c152b877ff51aa0c5750b1fc0da33993b1a9af34a2233089abf4b', 'from': '0xae413bd3b3338000b1e801cc0129432a07f17197', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2743.736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x94bcfc6b104b2c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T19:38:16.000Z'}}, {'blockNum': '0x51bdd2', 'uniqueId': '0x8a17e266545d0b10bcb0db943ee74afcc1d48b85df3cd62c407273d870ebd668:log:0', 'hash': '0x8a17e266545d0b10bcb0db943ee74afcc1d48b85df3cd62c407273d870ebd668', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4766.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x010267404af0e67e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T20:58:53.000Z'}}, {'blockNum': '0x51bdec', 'uniqueId': '0x88037f4f0127b25eb74faab1a7d23d1740df14a1dce28362f573b0cb7973bf65:log:23', 'hash': '0x88037f4f0127b25eb74faab1a7d23d1740df14a1dce28362f573b0cb7973bf65', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4756.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0101dc7927ec5c960000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T21:05:36.000Z'}}, {'blockNum': '0x51be10', 'uniqueId': '0x8e1dfab3d27f0319243a54632ce5e439b15d7cc0c9094007d5c050c24f017b4e:log:0', 'hash': '0x8e1dfab3d27f0319243a54632ce5e439b15d7cc0c9094007d5c050c24f017b4e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4757.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0101ea59dea003fa0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T21:14:05.000Z'}}, {'blockNum': '0x51be1f', 'uniqueId': '0x12b77ca856db4dfa0350c787e7f6fd778b591b3a7a349914c3e8504ac6ca0b96:log:18', 'hash': '0x12b77ca856db4dfa0350c787e7f6fd778b591b3a7a349914c3e8504ac6ca0b96', 'from': '0xd07a289f5b1258114c000bc2135db3019f3b666f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1994.799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x6c2365b19a18718000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T21:18:22.000Z'}}, {'blockNum': '0x51be1f', 'uniqueId': '0xf14be20d964b03b2a435ff6cb48686e7309e0f1655df800a9d64100be142ec40:log:19', 'hash': '0xf14be20d964b03b2a435ff6cb48686e7309e0f1655df800a9d64100be142ec40', 'from': '0x5a5d9c95a3f328e903f3b4d47aa5556e1f286b27', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1294.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x462ccbdb71ef2a0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T21:18:22.000Z'}}, {'blockNum': '0x51be1f', 'uniqueId': '0x2f34098129b41a6d09a0f1995572b661cc4aed94126fc0af61daad1cf4447ccc:log:26', 'hash': '0x2f34098129b41a6d09a0f1995572b661cc4aed94126fc0af61daad1cf4447ccc', 'from': '0x2b2666b9d328620e2fac5f8260cfd162b4046b49', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x2227019e1df0180000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T21:18:22.000Z'}}, {'blockNum': '0x51bf1f', 'uniqueId': '0x6b5ca9cde920a69b67a0129551ce6a610fcc4c50cb2b1a2f1e0f0176b0c22b4c:log:126', 'hash': '0x6b5ca9cde920a69b67a0129551ce6a610fcc4c50cb2b1a2f1e0f0176b0c22b4c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4753.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0101b2d703d1666a0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T22:16:36.000Z'}}, {'blockNum': '0x51bf73', 'uniqueId': '0x4460a6cd3524400f202dff58d2faf7f5a8ca85cdee2b5aa8853896f391017e82:log:11', 'hash': '0x4460a6cd3524400f202dff58d2faf7f5a8ca85cdee2b5aa8853896f391017e82', 'from': '0xdcedef9d19a36b81151a65802f7301aaf4731469', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5415.663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0125956c051672518000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T22:38:16.000Z'}}, {'blockNum': '0x51bf73', 'uniqueId': '0x70976bac94895aa1083bd8723d47cdf751ef7cde293255f3ab1d051abd7f399f:log:15', 'hash': '0x70976bac94895aa1083bd8723d47cdf751ef7cde293255f3ab1d051abd7f399f', 'from': '0x3aef392fa182b36cfdeab11ca6f7dab3a930cc9f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1601.1915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x56ccfef1c61ae0c000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T22:38:16.000Z'}}, {'blockNum': '0x51bf75', 'uniqueId': '0x630eaa0b3ee1bb87e1dc181f9c04a560b52e0864678c8c87cd38d358fb71875e:log:9', 'hash': '0x630eaa0b3ee1bb87e1dc181f9c04a560b52e0864678c8c87cd38d358fb71875e', 'from': '0x6871822e5d98e39fc7651d269ce0a893be27a54c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 562.149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x1e7962711b61108000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T22:38:40.000Z'}}, {'blockNum': '0x51bfb4', 'uniqueId': '0xc03a110f50f8834cba62224c1636321a86402dc3915823fc61badc11a80bea1b:log:20', 'hash': '0xc03a110f50f8834cba62224c1636321a86402dc3915823fc61badc11a80bea1b', 'from': '0x560db0c0543cc1ff72b574ee81efd16da1d28718', 'to': '0x4c6e60221ed09543e9d7dff33d664c6ac46df449', 'value': 54979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0ba46ae558c6192c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T22:56:00.000Z'}}, {'blockNum': '0x51c028', 'uniqueId': '0x53501956c9e4076ed2c87ce4977756ab3374c3adfd94b5980ac883c30818a65c:log:1', 'hash': '0x53501956c9e4076ed2c87ce4977756ab3374c3adfd94b5980ac883c30818a65c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc6c3633a71d6039468bfbf742d15bc5b9ca19dc0', 'value': 1622.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x57f77c7c91225e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T23:20:55.000Z'}}, {'blockNum': '0x51c0a1', 'uniqueId': '0xe595db3956c6e8007c19dc5546e342b4de6a8aaa4ee8a65ff8f7e9abf0847282:log:25', 'hash': '0xe595db3956c6e8007c19dc5546e342b4de6a8aaa4ee8a65ff8f7e9abf0847282', 'from': '0x28bc3360d1dd9a84dde69c8142d620dcc1cf7b65', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x878678326eac900000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T23:48:43.000Z'}}, {'blockNum': '0x51c3b0', 'uniqueId': '0x5e9c4f255f450ca4e209c618e533e9e44a09ea5f3888ff3cb58e1b2e3e7689d3:log:5', 'hash': '0x5e9c4f255f450ca4e209c618e533e9e44a09ea5f3888ff3cb58e1b2e3e7689d3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4747.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01015f92bb9b7a120000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-01T02:49:34.000Z'}}]}}
Number of returned transfers: 51
Answer is complete
symbol EVX
group FCS
date 2018-04-02
hour 16:30
exchange binance
Name: 445, dtype: object
HERE
Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps: 2018-04-02 16:30:00 2018-04-02 04:30:00 2018-04-03 04:30:00
Unix timestamps: 1522636200.0 1522722600.0
Hex Block Numbers: 0x51db00 0x51f2a5
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x51db31', 'uniqueId': '0xeb305a0c6b4f48ad29bfae5cefe3c17259fac14396d785b87b2ac76524786d3d:log:1', 'hash': '0xeb305a0c6b4f48ad29bfae5cefe3c17259fac14396d785b87b2ac76524786d3d', 'from': '0x6caacb276bdfc51e7d9a0e2e42e713fd381e5080', 'to': '0xb38d3d1268b4e5365b887926ae1709b2748b0624', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0186a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T02:41:18.000Z'}}, {'blockNum': '0x51db36', 'uniqueId': '0x5d1d88c0c4e3a0c61923eebce73f43df28edf84e93db9aa301058d11d4ebc9b6:log:8', 'hash': '0x5d1d88c0c4e3a0c61923eebce73f43df28edf84e93db9aa301058d11d4ebc9b6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x48fd571537fa96664e73f4a1234a6f0f195340e2', 'value': 1728.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0107c758', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T02:42:48.000Z'}}, {'blockNum': '0x51dbcc', 'uniqueId': '0x1e94f6e37dfb154b9d8b66b34112809b83829b5179c1a4c44625a140a5d05041:log:6', 'hash': '0x1e94f6e37dfb154b9d8b66b34112809b83829b5179c1a4c44625a140a5d05041', 'from': '0x6caacb276bdfc51e7d9a0e2e42e713fd381e5080', 'to': '0xb38d3d1268b4e5365b887926ae1709b2748b0624', 'value': 3487.889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x021435aa', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T03:19:07.000Z'}}, {'blockNum': '0x51dbd4', 'uniqueId': '0x046cd550a7482ed4e42ae1d78a9fe34eebecd753e7c932d1f19d578af265154b:log:133', 'hash': '0x046cd550a7482ed4e42ae1d78a9fe34eebecd753e7c932d1f19d578af265154b', 'from': '0xb38d3d1268b4e5365b887926ae1709b2748b0624', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3497.889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0215bc4a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T03:21:25.000Z'}}, {'blockNum': '0x51dc0f', 'uniqueId': '0x612e76d263872f3739a9ce00be1c2c9b734a3efd14be2185176eeaee8790c361:log:4', 'hash': '0x612e76d263872f3739a9ce00be1c2c9b734a3efd14be2185176eeaee8790c361', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xd6b6b1b3ce1e7a5aea59292375c3dec5b829fc70', 'value': 19.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02f9b8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T03:35:21.000Z'}}, {'blockNum': '0x51dccb', 'uniqueId': '0xae6bcc85132ff99c2f0233290b89475f2058963a6902fd649b02a06d7f891d1f:log:2', 'hash': '0xae6bcc85132ff99c2f0233290b89475f2058963a6902fd649b02a06d7f891d1f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7d4e669f156adfa39a5857033c0b0a422df5ce07', 'value': 58.596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08f0e8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T04:18:02.000Z'}}, {'blockNum': '0x51dce2', 'uniqueId': '0x095225e7d5a1bd07ac5f75c22030ab797fcfc7d8705afdfc7752df22198b5181:log:80', 'hash': '0x095225e7d5a1bd07ac5f75c22030ab797fcfc7d8705afdfc7752df22198b5181', 'from': '0x7d4e669f156adfa39a5857033c0b0a422df5ce07', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 58.596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08f0e8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T04:24:30.000Z'}}, {'blockNum': '0x51dcfb', 'uniqueId': '0xd851d81bbb4ad4da6d4ba18231eddb8132099c4dc03dac920ecb432e7eca0c1d:log:7', 'hash': '0xd851d81bbb4ad4da6d4ba18231eddb8132099c4dc03dac920ecb432e7eca0c1d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x9303463689045d5d68bd8e4712c02b0ea172d422', 'value': 182.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1bc5c4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T04:30:44.000Z'}}, {'blockNum': '0x51dd42', 'uniqueId': '0x4d1969da5379ca39d6f6912d54e4edaf5b68987acc688add250ec355eb81079c:log:2', 'hash': '0x4d1969da5379ca39d6f6912d54e4edaf5b68987acc688add250ec355eb81079c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe8b09c2c217bc2408207455afb89cb1079b58617', 'value': 92.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0e2518', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T04:47:19.000Z'}}, {'blockNum': '0x51dd5d', 'uniqueId': '0x65b37f31f63949d2fbffaa7a4983f3920697096aac4a7734225f878ad0fa4df3:log:9', 'hash': '0x65b37f31f63949d2fbffaa7a4983f3920697096aac4a7734225f878ad0fa4df3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 3488.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02145558', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T04:53:39.000Z'}}, {'blockNum': '0x51dd6d', 'uniqueId': '0x1bc8669172f324db5eef2339436e7d2e641d7842e4c8062333973903ae11beff:log:0', 'hash': '0x1bc8669172f324db5eef2339436e7d2e641d7842e4c8062333973903ae11beff', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 4602.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02be50f8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T04:57:59.000Z'}}, {'blockNum': '0x51dda0', 'uniqueId': '0x0c932e1bad0d5faed288da48cd5f62382879898f4a8d5da1234ddda2aed6429a:log:10', 'hash': '0x0c932e1bad0d5faed288da48cd5f62382879898f4a8d5da1234ddda2aed6429a', 'from': '0x0d4bfbe9cb9ed107ba782af436f651d06bc6e7c8', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 110.6869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x10e3b5', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T05:11:01.000Z'}}, {'blockNum': '0x51dda0', 'uniqueId': '0xaa6ca3eef65bf6826cf070e3d7f765a6e47024db30fdd9092be3fd4948f4d765:log:11', 'hash': '0xaa6ca3eef65bf6826cf070e3d7f765a6e47024db30fdd9092be3fd4948f4d765', 'from': '0x999723cd29ae2880a524e5aa640899e4c938b44f', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 916.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x8bd8c8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T05:11:01.000Z'}}, {'blockNum': '0x51dda3', 'uniqueId': '0xea61be47b88536f4de6306dea9cd160af9f0283127bd88db0c235f46a0b97966:log:213', 'hash': '0xea61be47b88536f4de6306dea9cd160af9f0283127bd88db0c235f46a0b97966', 'from': '0xc6c3633a71d6039468bfbf742d15bc5b9ca19dc0', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2018.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0133fbc0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T05:12:01.000Z'}}, {'blockNum': '0x51de59', 'uniqueId': '0xd882570964dd94bb9c529716a9cc66b37f3e09d7fe3a3116d50f6b8052fd5729:log:11', 'hash': '0xd882570964dd94bb9c529716a9cc66b37f3e09d7fe3a3116d50f6b8052fd5729', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xea23643d7b31408dba174e94c1dfbaccee4fb62c', 'value': 231.6647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x235967', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T05:53:55.000Z'}}, {'blockNum': '0x51ded7', 'uniqueId': '0xcebafdc657caeaac63207b8b8105b425d4de4527cb96da60639092e19d56e92a:log:5', 'hash': '0xcebafdc657caeaac63207b8b8105b425d4de4527cb96da60639092e19d56e92a', 'from': '0xe5d51bdf3c537d625a56c4c3737b30bd30bd312d', 'to': '0x5f122bef1ab6cb9883c1132b2bc9372f07163f90', 'value': 41.5801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x065839', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T06:19:13.000Z'}}, {'blockNum': '0x51df5b', 'uniqueId': '0xe1a29aa06d0df83c05540a2cb8d71f0e1875a4ef6963efb3dd427880dcb8d5ec:log:85', 'hash': '0xe1a29aa06d0df83c05540a2cb8d71f0e1875a4ef6963efb3dd427880dcb8d5ec', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa39dad2a6e57bd164450fff5f89e5e6756668d97', 'value': 710.9859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6c7ce3', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T06:50:13.000Z'}}, {'blockNum': '0x51dfd1', 'uniqueId': '0xc1ff0ec084c3bb15695e8346274dede8d4d3bc2d49aa5d6566d71226a6e19f53:log:7', 'hash': '0xc1ff0ec084c3bb15695e8346274dede8d4d3bc2d49aa5d6566d71226a6e19f53', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xbbcbc8b95e3e009f6a42244a665ea327add06dee', 'value': 127.6214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x137936', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T07:19:42.000Z'}}, {'blockNum': '0x51e07c', 'uniqueId': '0x87d1188102542ad91842b858f7831ab0e5fe90747c0deccb745efc013ca61c2c:log:3', 'hash': '0x87d1188102542ad91842b858f7831ab0e5fe90747c0deccb745efc013ca61c2c', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0xf8ad26776a394ef4ca4e8b74dc5bf6224b8b774c', 'value': 47.424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x073c80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T08:00:36.000Z'}}, {'blockNum': '0x51e0b1', 'uniqueId': '0xdec545955fb2159af6de033a488400434ada43b7e0a6e5fdc16b5f6dbde30079:log:1', 'hash': '0xdec545955fb2159af6de033a488400434ada43b7e0a6e5fdc16b5f6dbde30079', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6e290376424bdfc7377a4240c39ccda614597d95', 'value': 56.3214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08980e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T08:11:27.000Z'}}, {'blockNum': '0x51e1e9', 'uniqueId': '0xb6d7ac71825a56367ecbc7d4eb553963285bc03c79aef96d25963f41487df13b:log:41', 'hash': '0xb6d7ac71825a56367ecbc7d4eb553963285bc03c79aef96d25963f41487df13b', 'from': '0xe5d51bdf3c537d625a56c4c3737b30bd30bd312d', 'to': '0x1f75f9499103aafb0478fb1071f18531d2edfed3', 'value': 529.0492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x50b9fc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T09:29:01.000Z'}}, {'blockNum': '0x51e208', 'uniqueId': '0x05c3bf1c3621c98beed855957fec14387b6aadb218f203073c9e089bfb8d266e:log:54', 'hash': '0x05c3bf1c3621c98beed855957fec14387b6aadb218f203073c9e089bfb8d266e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 4229.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x028566a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T09:36:52.000Z'}}, {'blockNum': '0x51e245', 'uniqueId': '0xddfed5f5eae43a5fb9c4cc9a535ad39096ebdb1e0efb34225b6c9107b42b12fe:log:53', 'hash': '0xddfed5f5eae43a5fb9c4cc9a535ad39096ebdb1e0efb34225b6c9107b42b12fe', 'from': '0x2d939b793102685ec6a99e64c0c5a3e8f5623df7', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 108.3817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1089a9', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T09:50:17.000Z'}}, {'blockNum': '0x51e30b', 'uniqueId': '0x3ef6eb1cd28bda4a557d37f0172c378e2a400051b71383dc209097d498f83953:log:21', 'hash': '0x3ef6eb1cd28bda4a557d37f0172c378e2a400051b71383dc209097d498f83953', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xf02ed6d88a9219022312c12e4c27d3cdcc1d6e17', 'value': 189.12, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1cdb80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T10:36:21.000Z'}}, {'blockNum': '0x51e442', 'uniqueId': '0xdd8eff01c12bc07cbe86b636dabeadc95313baa678a1f68e37fb6bbb1d181dd4:log:13', 'hash': '0xdd8eff01c12bc07cbe86b636dabeadc95313baa678a1f68e37fb6bbb1d181dd4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 4314.408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02925390', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T11:48:59.000Z'}}, {'blockNum': '0x51e620', 'uniqueId': '0x59a9468a29f9cff1ed3780a90d4bad30a58753b3befa437ae64e436f1f4f040f:log:12', 'hash': '0x59a9468a29f9cff1ed3780a90d4bad30a58753b3befa437ae64e436f1f4f040f', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xb6f1ba4c76bca2e5f11999626761c96fe4bd2b27', 'value': 99.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0f2eb8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T13:47:39.000Z'}}, {'blockNum': '0x51e75b', 'uniqueId': '0x5cd81b279e989d8ac91deb0be29a5315315a1141074214efb98e1f1dcf471f97:log:5', 'hash': '0x5cd81b279e989d8ac91deb0be29a5315315a1141074214efb98e1f1dcf471f97', 'from': '0x611f32d256597ee12c2ec2870da6db0b461e6f55', 'to': '0x6ebb901a89d91c1a3d7d25c86f22ad4d2cbde117', 'value': 72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0afc80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T15:04:01.000Z'}}, {'blockNum': '0x51e7a2', 'uniqueId': '0xbfd8f0c724e2a45930d7599a2fdd629d27db97bdadf1482109ff1e4e12cfea47:log:4', 'hash': '0xbfd8f0c724e2a45930d7599a2fdd629d27db97bdadf1482109ff1e4e12cfea47', 'from': '0x0a5dc26b0b7eef902f9c8ee1b7ed39a21707369e', 'to': '0xc368f7b232c9dc5e0ec2eae62dbdd2836d1c0d65', 'value': 29.468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x047f18', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T15:20:54.000Z'}}, {'blockNum': '0x51e7ce', 'uniqueId': '0x72656a555acbc0e14dc85c72b1ad72edd84e5de92f3efeb170a9835ad161909f:log:8', 'hash': '0x72656a555acbc0e14dc85c72b1ad72edd84e5de92f3efeb170a9835ad161909f', 'from': '0xe5d51bdf3c537d625a56c4c3737b30bd30bd312d', 'to': '0xbef63da5b5771593935a4f97165273fc239aa94c', 'value': 32.1774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04e8ee', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T15:31:18.000Z'}}, {'blockNum': '0x51e896', 'uniqueId': '0x95a96d5033a4e828586a700142791cf8bad07f441a4a5398f8f29efd4cd8e2f3:log:41', 'hash': '0x95a96d5033a4e828586a700142791cf8bad07f441a4a5398f8f29efd4cd8e2f3', 'from': '0x23f4a952f5281233840c13cfe6fa4677fc5fac03', 'to': '0x786ed59d1cdb6244720aaf7017013a91d536de86', 'value': 127.4641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x137311', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T16:19:08.000Z'}}, {'blockNum': '0x51e91b', 'uniqueId': '0x0e7957192c10ba9ec462e18b245d77c36547b9ef4bb80d0950c54df6e498b3e9:log:1', 'hash': '0x0e7957192c10ba9ec462e18b245d77c36547b9ef4bb80d0950c54df6e498b3e9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 4362.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0299b1f8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T16:53:02.000Z'}}, {'blockNum': '0x51e949', 'uniqueId': '0x92046bd52766a10afb466b9626caa23cbb7d76e15837a87cafb9696f24b0025a:log:13', 'hash': '0x92046bd52766a10afb466b9626caa23cbb7d76e15837a87cafb9696f24b0025a', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x7b4c410e92946073af39e73d5cbe8f8ebb36027b', 'value': 33.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x051c98', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T17:04:30.000Z'}}, {'blockNum': '0x51e96c', 'uniqueId': '0x6c6fdbc0e2ae614e7425a0fec618ac3d9de339faa830eb0f65f0d96d8dd8631b:log:8', 'hash': '0x6c6fdbc0e2ae614e7425a0fec618ac3d9de339faa830eb0f65f0d96d8dd8631b', 'from': '0xf741ceab9a16c9eec83a6cf00884f279dc512668', 'to': '0x592db3614695308692ff91d71f8dcf3e9df2ad45', 'value': 246.752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x25a6c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T17:12:44.000Z'}}, {'blockNum': '0x51e9b8', 'uniqueId': '0xb5ade578d14030c2b09f37ec6c61a9a5210074a5f4e32d5c1a9360bc22b6879f:log:17', 'hash': '0xb5ade578d14030c2b09f37ec6c61a9a5210074a5f4e32d5c1a9360bc22b6879f', 'from': '0x592db3614695308692ff91d71f8dcf3e9df2ad45', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 246.752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x25a6c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T17:32:16.000Z'}}, {'blockNum': '0x51ea19', 'uniqueId': '0x2d6d06a37291063f9743a93e973e02d315712dc15bdfacebb663ffeb2d5e08f4:log:7', 'hash': '0x2d6d06a37291063f9743a93e973e02d315712dc15bdfacebb663ffeb2d5e08f4', 'from': '0xe5d51bdf3c537d625a56c4c3737b30bd30bd312d', 'to': '0x88a3ed45b66992fd901461d20aa440a7bf70cce6', 'value': 867.3988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x845ac4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T17:53:46.000Z'}}, {'blockNum': '0x51ea9c', 'uniqueId': '0x2a6e0bfd05e47d4c019b4999f680cd54878a87512f165da653b7a4a09d50a295:log:30', 'hash': '0x2a6e0bfd05e47d4c019b4999f680cd54878a87512f165da653b7a4a09d50a295', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x86a27046bfcf9b85799ae68ad2d856b09a8e9cc1', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T18:28:35.000Z'}}, {'blockNum': '0x51eab4', 'uniqueId': '0x061a4d090f039260601ac240b5cda50777b0df2bcd0a528e2f2e1c6ee1b4b4f4:log:21', 'hash': '0x061a4d090f039260601ac240b5cda50777b0df2bcd0a528e2f2e1c6ee1b4b4f4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe5d51bdf3c537d625a56c4c3737b30bd30bd312d', 'value': 9924.691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05ea633e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T18:33:49.000Z'}}, {'blockNum': '0x51eab5', 'uniqueId': '0x04e9f7b9af9e3bfd8ee28c65b2ecd942e524b85c11ab7fa4340606c6932ca8bb:log:32', 'hash': '0x04e9f7b9af9e3bfd8ee28c65b2ecd942e524b85c11ab7fa4340606c6932ca8bb', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x86a27046bfcf9b85799ae68ad2d856b09a8e9cc1', 'value': 463.2214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x46ae96', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T18:33:53.000Z'}}, {'blockNum': '0x51eeac', 'uniqueId': '0x40a0b02113f74d47db2a1ecd0fe70955e78357ad19032fad6a8dd86679add5f3:log:2', 'hash': '0x40a0b02113f74d47db2a1ecd0fe70955e78357ad19032fad6a8dd86679add5f3', 'from': '0x4e2bfa454bb605212096ad4d109bd810190eb3a4', 'to': '0x578e79f22eb014a561ad252a13a8ff48272644e1', 'value': 1250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xbebc20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T22:28:36.000Z'}}, {'blockNum': '0x51eeb7', 'uniqueId': '0xbfe535241430617f40864357207b0d45c211ac5179eeb7a3e16b7c2133062574:log:20', 'hash': '0xbfe535241430617f40864357207b0d45c211ac5179eeb7a3e16b7c2133062574', 'from': '0x578e79f22eb014a561ad252a13a8ff48272644e1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xbebc20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T22:30:59.000Z'}}, {'blockNum': '0x51eeba', 'uniqueId': '0x9ac0de6b331d2c9212b1e433739836abeba281c8fca7cbd26cd5b15ef4c68194:log:12', 'hash': '0x9ac0de6b331d2c9212b1e433739836abeba281c8fca7cbd26cd5b15ef4c68194', 'from': '0x36990bac9098069894bd9d2188f492904fd45d4c', 'to': '0x7ae3348b8b5200219f22a5b64f28f5a7d37033a8', 'value': 1684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0100f540', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T22:31:44.000Z'}}, {'blockNum': '0x51f085', 'uniqueId': '0x8bb4b8c0d80be917dd2011da0eb54d0d4179e75e9dfca0e7a9132089a57f6f19:log:57', 'hash': '0x8bb4b8c0d80be917dd2011da0eb54d0d4179e75e9dfca0e7a9132089a57f6f19', 'from': '0x238d8fad50ee443f87a411295ed082d1e6220869', 'to': '0x0ddc0a6e9188b6cffd5eef36d6f9b8fd4a0d79d8', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0186a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-03T00:17:18.000Z'}}, {'blockNum': '0x51f0bb', 'uniqueId': '0x7a0acbdec4f71aa2c1ba4d6af03d3a02c71afa1428ec853639cc74b5991e7455:log:6', 'hash': '0x7a0acbdec4f71aa2c1ba4d6af03d3a02c71afa1428ec853639cc74b5991e7455', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x3afd2c1a8140f4fc1a2eed7e39e5abf578ac2971', 'value': 15.484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x025cd8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-03T00:28:42.000Z'}}, {'blockNum': '0x51f0c9', 'uniqueId': '0x461192f7eb2207d807475e67c70dedc79b2f7569a5a767f44c471426a09ae917:log:7', 'hash': '0x461192f7eb2207d807475e67c70dedc79b2f7569a5a767f44c471426a09ae917', 'from': '0x0ddc0a6e9188b6cffd5eef36d6f9b8fd4a0d79d8', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0186a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-03T00:32:40.000Z'}}, {'blockNum': '0x51f19e', 'uniqueId': '0x048e1bd46af9063499c208cad8a6071b2a6c46ceb11b554834eaac4be5e129ae:log:3', 'hash': '0x048e1bd46af9063499c208cad8a6071b2a6c46ceb11b554834eaac4be5e129ae', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 4382.976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x029cca00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-03T01:24:14.000Z'}}, {'blockNum': '0x51f25d', 'uniqueId': '0xe01239a13f4b9f29df15823cbd61dbb58d276085ef3650e7ea5e922472a53116:log:76', 'hash': '0xe01239a13f4b9f29df15823cbd61dbb58d276085ef3650e7ea5e922472a53116', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xab33f16b1067c758b8e18aa4430235372c03f569', 'value': 1264.432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xc0efe0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-03T02:15:20.000Z'}}]}}
Number of returned transfers: 46
Answer is complete
symbol ICN
group FCS
date 2018-04-02
hour 16:00
exchange binance
Name: 446, dtype: object
HERE
Symbol: ICN, Contract:
Datetime timestamps: 2018-04-02 16:00:00 2018-04-02 04:00:00 2018-04-03 04:00:00
Unix timestamps: 1522634400.0 1522720800.0
Hex Block Numbers: 0x51da81 0x51f227
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol CHAT
group FCS
date 2018-04-03
hour 16:00
exchange binance
Name: 447, dtype: object
HERE
Symbol: CHAT, Contract: 0x442bc47357919446eabc18c7211e57a13d983469
Datetime timestamps: 2018-04-03 16:00:00 2018-04-03 04:00:00 2018-04-04 04:00:00
Unix timestamps: 1522720800.0 1522807200.0
Hex Block Numbers: 0x51f227 0x52099d
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x51f237', 'uniqueId': '0x48bca3f33ad0de9e8f64d01a9a83f15094d46ec97aeffb68908a0422ab8ad224:log:13', 'hash': '0x48bca3f33ad0de9e8f64d01a9a83f15094d46ec97aeffb68908a0422ab8ad224', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4acc8bf06a098465ca90974eaab656dab0868f96', 'value': 5143.022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0116cdc49c1a030b0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T02:04:59.000Z'}}, {'blockNum': '0x51f250', 'uniqueId': '0x6a8f4adead991142d2d079e850ea7c4509d1b2cb7c79be873bc0b7ceac4ae755:log:16', 'hash': '0x6a8f4adead991142d2d079e850ea7c4509d1b2cb7c79be873bc0b7ceac4ae755', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbbf003a9470defa253485c4de2b0ffc642ce9682', 'value': 25126.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x055218126fafdbec0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T02:10:38.000Z'}}, {'blockNum': '0x51f278', 'uniqueId': '0xf244eb49c9e9fd669e5518b937608d2aa1a565ac18aee26239ee647a6aa3c2ec:log:60', 'hash': '0xf244eb49c9e9fd669e5518b937608d2aa1a565ac18aee26239ee647a6aa3c2ec', 'from': '0x9aba62ea165bdb354cb8e5a622bfd55a852294e7', 'to': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'value': 5000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0422ca8b0a00a425000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T02:22:25.000Z'}}, {'blockNum': '0x51f2d3', 'uniqueId': '0xadc327c21664ba4bf526b0f61aec39a633c72e6eb5884cadf293ad81cbaaca4b:log:0', 'hash': '0xadc327c21664ba4bf526b0f61aec39a633c72e6eb5884cadf293ad81cbaaca4b', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x1aedbab0cdd00f7544aad6ddeed94139228eaef7', 'value': 1990.012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x6be0f6da76eca60000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T02:41:09.000Z'}}, {'blockNum': '0x51f331', 'uniqueId': '0xe9497a04b2ffaa06c8ca91cd74d855f1f4818ae4a94b1c50be6029630d171904:log:2', 'hash': '0xe9497a04b2ffaa06c8ca91cd74d855f1f4818ae4a94b1c50be6029630d171904', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xdbe5b6bb03bfbad48d69e60e6a0bdf3e046f9d1d', 'value': 4612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xfa045b7c93a5900000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T03:03:44.000Z'}}, {'blockNum': '0x51f408', 'uniqueId': '0x767e0d730c5c435430b7c5a926193f1d43f2605ddd971f9008733f75774c5696:log:5', 'hash': '0x767e0d730c5c435430b7c5a926193f1d43f2605ddd971f9008733f75774c5696', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0c77fdb7b851099f006bf77933dee283680c3b4a', 'value': 39520.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x085e64f32101a8940000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T03:51:33.000Z'}}, {'blockNum': '0x51f421', 'uniqueId': '0x7dc31bb67c4326cce358ed02b42a463b218f2f0488418a7db949b5d926c93abe:log:1', 'hash': '0x7dc31bb67c4326cce358ed02b42a463b218f2f0488418a7db949b5d926c93abe', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x87f6d25d1ae03d6ce8f31889e44be3ec5922b4da', 'value': 1966.885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x6aa0033e7f24308000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T03:59:20.000Z'}}, {'blockNum': '0x51f424', 'uniqueId': '0xc079dfc6f20e0f66efa5bc53cc75ad868abdd88ef567651f1c76d198e4d9af3d:log:0', 'hash': '0xc079dfc6f20e0f66efa5bc53cc75ad868abdd88ef567651f1c76d198e4d9af3d', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xa3de8621312f63d2617a40787d97c401d392307f', 'value': 1374.7929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x4a87158a95c5204000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T04:00:00.000Z'}}, {'blockNum': '0x51f46b', 'uniqueId': '0x21ee8899484debb3880f932c0758cfc232b686fa6396304b5e8550762cbf6336:log:105', 'hash': '0x21ee8899484debb3880f932c0758cfc232b686fa6396304b5e8550762cbf6336', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0c77fdb7b851099f006bf77933dee283680c3b4a', 'value': 39650.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0865710fe83ca95c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T04:16:39.000Z'}}, {'blockNum': '0x51f61d', 'uniqueId': '0x90df443979ddf88e650d3e8962b8185a885b8d8e3f4c0a88b9f3d7afd1f9ba63:log:39', 'hash': '0x90df443979ddf88e650d3e8962b8185a885b8d8e3f4c0a88b9f3d7afd1f9ba63', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'value': 44970.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0985d6e4adab3f7c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T05:59:11.000Z'}}, {'blockNum': '0x51f667', 'uniqueId': '0x9011e0b5a731ff5dc5a27f3a7ec3e840b42cc437c52c1535e7e3ebbe7ab86764:log:17', 'hash': '0x9011e0b5a731ff5dc5a27f3a7ec3e840b42cc437c52c1535e7e3ebbe7ab86764', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x55df6e2378028cb6bb4984375ab21836f7774960', 'value': 69970.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ed11796a5fdfd1c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T06:17:27.000Z'}}, {'blockNum': '0x51f8d0', 'uniqueId': '0xa0a4591a44c0b7a61f18d09b0fbf5f0bb9eaa0f86ae909ce42f07cd87813ea74:log:5', 'hash': '0xa0a4591a44c0b7a61f18d09b0fbf5f0bb9eaa0f86ae909ce42f07cd87813ea74', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x8699965c593315d06fd9dc54358687432a8a0ef7', 'value': 14998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x032d0b0fc130bc980000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T08:51:32.000Z'}}, {'blockNum': '0x51f8d2', 'uniqueId': '0xeb8b51ebef0b46c5ffb27e2afddd03472a7e917bb05f233c78e4f7bd8379e218:log:22', 'hash': '0xeb8b51ebef0b46c5ffb27e2afddd03472a7e917bb05f233c78e4f7bd8379e218', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x3b776e78df24df2f4124bef9cfa9fb29f710ed09', 'value': 6970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0179d82e575b78a80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T08:52:19.000Z'}}, {'blockNum': '0x51f8ef', 'uniqueId': '0x5bf300d16e527c228c6353f32797b0b2c34a0d5d4d1edb9f5536c87d8e49bfe9:log:20', 'hash': '0x5bf300d16e527c228c6353f32797b0b2c34a0d5d4d1edb9f5536c87d8e49bfe9', 'from': '0x3b776e78df24df2f4124bef9cfa9fb29f710ed09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x018ced298e61a2280000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T08:58:04.000Z'}}, {'blockNum': '0x51f8ef', 'uniqueId': '0x3b4c97b0c364c9a0b04919c72a57cc74429a52c193edd5bbb78fc716bf1bf6c0:log:22', 'hash': '0x3b4c97b0c364c9a0b04919c72a57cc74429a52c193edd5bbb78fc716bf1bf6c0', 'from': '0x8699965c593315d06fd9dc54358687432a8a0ef7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x032d0b0fc130bc980000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T08:58:04.000Z'}}, {'blockNum': '0x51f8f5', 'uniqueId': '0x133319f73bc36e219cc9ebf90755c4073b9754ab4035884a44a6af53f4ac2c91:log:111', 'hash': '0x133319f73bc36e219cc9ebf90755c4073b9754ab4035884a44a6af53f4ac2c91', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x3f16c9bf6e41b6d4910fa65387139d2d70309e62', 'value': 495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1ad5814560aa5c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T08:59:27.000Z'}}, {'blockNum': '0x51f943', 'uniqueId': '0xf91dc112ecc2d6f6be29074c13d037de7f3707bb566a5671f55effadfd0945eb:log:46', 'hash': '0xf91dc112ecc2d6f6be29074c13d037de7f3707bb566a5671f55effadfd0945eb', 'from': '0x3f16c9bf6e41b6d4910fa65387139d2d70309e62', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3676.878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xc752eec410c0bb0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T09:18:07.000Z'}}, {'blockNum': '0x51f991', 'uniqueId': '0x1e4ad78923b2fe032eb0f7d59c49ea7a720413f680c924b3fdc6969f99e33f28:log:13', 'hash': '0x1e4ad78923b2fe032eb0f7d59c49ea7a720413f680c924b3fdc6969f99e33f28', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x35b0352c6b8891c9a4475a7d3900d01e011262ab', 'value': 2963.73852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xa0aa2261615df18000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T09:36:44.000Z'}}, {'blockNum': '0x51f9b5', 'uniqueId': '0xa5665905aa3696f6b3c74264e0ff59367601d467e6954a0d8039f221a61e1637:log:63', 'hash': '0xa5665905aa3696f6b3c74264e0ff59367601d467e6954a0d8039f221a61e1637', 'from': '0x4558faa601ab08a3dc733b39a4c755a101a19218', 'to': '0x86904e32b0d7a8e1ab4dc4a02bae7ff93e9a2d33', 'value': 3000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x027b46536c66c8e3000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T09:45:02.000Z'}}, {'blockNum': '0x51fa53', 'uniqueId': '0xa4fc94934951315caf440cf9d03183939df4d488b701d916db9209412c78fa79:log:71', 'hash': '0xa4fc94934951315caf440cf9d03183939df4d488b701d916db9209412c78fa79', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0760f72dd5fc12611043b1e1c8ce2ef970ac4d64', 'value': 20134.043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x044377f9f9c4b02f8000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:21:48.000Z'}}, {'blockNum': '0x51fac5', 'uniqueId': '0xda991297bbb163c93bcb3d0043273cb549793344e8c24abcf558dc898391e6ba:log:0', 'hash': '0xda991297bbb163c93bcb3d0043273cb549793344e8c24abcf558dc898391e6ba', 'from': '0xb287a379e6caca6732e50b88d23c290aa990a892', 'to': '0xda315dbcc6f6f07d2dc77de974b9d14ef61b2bfd', 'value': 816.2123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x2c3f389a5f3490c000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:47:59.000Z'}}, {'blockNum': '0x51fac6', 'uniqueId': '0x9218788c0ffa3c77f8c67270bb59e79a8dc9b3f3d44723be1357be05907ffc15:log:14', 'hash': '0x9218788c0ffa3c77f8c67270bb59e79a8dc9b3f3d44723be1357be05907ffc15', 'from': '0x089ce6ca335031fd914f74bb0db6d2f26e31f6bb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 250.37424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0d92a3fcbd8c660000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:48:11.000Z'}}, {'blockNum': '0x51fac6', 'uniqueId': '0x99da65c8ab10754190416a3e837d763f8dc858d4cea65691d4e25a1ede26910b:log:15', 'hash': '0x99da65c8ab10754190416a3e837d763f8dc858d4cea65691d4e25a1ede26910b', 'from': '0x684f7f7286425ff9bd04f50d67062ee45d4a28b5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 259.47, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0e10de9e44de9b0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:48:11.000Z'}}, {'blockNum': '0x51fac6', 'uniqueId': '0xd7577b7cedb03b563aaf57fd36517183cb42d6580416640a0003da24e3d91f36:log:16', 'hash': '0xd7577b7cedb03b563aaf57fd36517183cb42d6580416640a0003da24e3d91f36', 'from': '0xa42d8e521702827a74b91fce309c847d010d3253', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 276.1044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ef7b7e0efaa5d0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:48:11.000Z'}}, {'blockNum': '0x51fac6', 'uniqueId': '0x4db6f94f0fb9ac8b060ea07139ae1e07aee968593d974b945687e2fa01c6191f:log:17', 'hash': '0x4db6f94f0fb9ac8b060ea07139ae1e07aee968593d974b945687e2fa01c6191f', 'from': '0xda555e2e8c07cacdb6e0947164da442ffc7bc90c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 254.4453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0dcb234c3db3b34000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:48:11.000Z'}}, {'blockNum': '0x51fac6', 'uniqueId': '0xd0ef67d17158b0ad5d1be5b30efd7d63c75ca3c20dd666d919ee1c5e19ac1f08:log:18', 'hash': '0xd0ef67d17158b0ad5d1be5b30efd7d63c75ca3c20dd666d919ee1c5e19ac1f08', 'from': '0x06fa368e7fcc4dc5fef2160f821b0b6324d0a3c7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 270.28098337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ea6e6f25d701c6400', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:48:11.000Z'}}, {'blockNum': '0x51fac6', 'uniqueId': '0xa34f6384470c1166b0e23a159aace836f55c7e718371556b3fd58c84500526b4:log:19', 'hash': '0xa34f6384470c1166b0e23a159aace836f55c7e718371556b3fd58c84500526b4', 'from': '0x5e9dc0597865b58947fb3f7e60632032505b6469', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 253.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0dbe9306b0008a0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:48:11.000Z'}}, {'blockNum': '0x51fac6', 'uniqueId': '0xac6b31abf21192a390ee7d55133363e69fb57add647bb7b5bad15de2339688e2:log:22', 'hash': '0xac6b31abf21192a390ee7d55133363e69fb57add647bb7b5bad15de2339688e2', 'from': '0xb864f826adac7aa5da962af744e73da7e92ccb84', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 254.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0dcf3a485463020000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:48:11.000Z'}}, {'blockNum': '0x51fac8', 'uniqueId': '0xcaf7086e403b585907b100d4e986feedfe0872cbbadc451985fec33f8ae51a45:log:63', 'hash': '0xcaf7086e403b585907b100d4e986feedfe0872cbbadc451985fec33f8ae51a45', 'from': '0x55df6e2378028cb6bb4984375ab21836f7774960', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 69970.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ed11796a5fdfd1c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:49:00.000Z'}}, {'blockNum': '0x51fac8', 'uniqueId': '0x6f82f212de1f46a365f28aa3dca937e6ed0b9658f268b559d2f978c1dda912a1:log:66', 'hash': '0x6f82f212de1f46a365f28aa3dca937e6ed0b9658f268b559d2f978c1dda912a1', 'from': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 44970.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0985d6e4adab3f7c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:49:00.000Z'}}, {'blockNum': '0x51fac9', 'uniqueId': '0x96377ad0e86fc18f09a1fdc30ecc75e6edf01ffd51d3288a739199f6c741512d:log:32', 'hash': '0x96377ad0e86fc18f09a1fdc30ecc75e6edf01ffd51d3288a739199f6c741512d', 'from': '0xd28254478bc90f4f802d793e88a1db9e70a5e25d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 260.3382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0e1ceb1591b0998000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:49:15.000Z'}}, {'blockNum': '0x51fac9', 'uniqueId': '0x8b34bd9fd496c2e0d2636c9be53923781cb6c893ae5868e2fcd39eee1a060c18:log:34', 'hash': '0x8b34bd9fd496c2e0d2636c9be53923781cb6c893ae5868e2fcd39eee1a060c18', 'from': '0x331059d32e36357ebfb2c89078f254fffe0d3a64', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 262.697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0e3da739abf0ca8000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:49:15.000Z'}}, {'blockNum': '0x51fad8', 'uniqueId': '0x13dd5e83261435f98292ad988c3217fe323c0c488bcd945864015a50b264ee67:log:226', 'hash': '0x13dd5e83261435f98292ad988c3217fe323c0c488bcd945864015a50b264ee67', 'from': '0x6eb445ddb88064df503700147d1ebfcac67f4f83', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 2538.1932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x899881b379e0030000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:54:50.000Z'}}, {'blockNum': '0x51fae2', 'uniqueId': '0xa39ac077eb8ea1a9551586ae052ed799d467cf9e9ae6cbd6b17c9a658988dc19:log:66', 'hash': '0xa39ac077eb8ea1a9551586ae052ed799d467cf9e9ae6cbd6b17c9a658988dc19', 'from': '0x51b0ef88c02fe244f21b2a1f252859e9b1cf616e', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 2201.796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x775c0ec46283f9ffff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:57:28.000Z'}}, {'blockNum': '0x51fae4', 'uniqueId': '0x390685dff7f408fc0a0951f9e75f62fd96dde5b6e9535063398d7f060abcc59b:log:36', 'hash': '0x390685dff7f408fc0a0951f9e75f62fd96dde5b6e9535063398d7f060abcc59b', 'from': '0xe98b5f9308c1fcc616da79ebb20565b5b13432a2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 284.73538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0f6f7f47846ddd4000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:58:23.000Z'}}, {'blockNum': '0x51fae4', 'uniqueId': '0x69ff05559a6642dcbb026befe0331a60beb63646d574bbde4f2970dc45db5246:log:37', 'hash': '0x69ff05559a6642dcbb026befe0331a60beb63646d574bbde4f2970dc45db5246', 'from': '0x87e84156ba06a5161ce7876caa2a37f164377e95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 258.9408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0e098685ac3f780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:58:23.000Z'}}, {'blockNum': '0x51fae4', 'uniqueId': '0x2f784e5c41c7df210a617fae5d7e0e4c77ac7a2a12dd7da94758d1a5d8af7eb9:log:40', 'hash': '0x2f784e5c41c7df210a617fae5d7e0e4c77ac7a2a12dd7da94758d1a5d8af7eb9', 'from': '0x1d51101099b9b53944cda862510e5dea91b61c2b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 276.7398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0f008945dea4a58000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:58:23.000Z'}}, {'blockNum': '0x51fbf7', 'uniqueId': '0xbb42f45d29dc4c37323c21ed71396159f952f6c349663dffbd4cd5db3772307e:log:2', 'hash': '0xbb42f45d29dc4c37323c21ed71396159f952f6c349663dffbd4cd5db3772307e', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x7534cc7de3cbd0aaf17bfc827954f7c495ed568b', 'value': 49980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a956bd5aa9c67700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T11:58:30.000Z'}}, {'blockNum': '0x51fc11', 'uniqueId': '0x8797f1a0a22d2fe864b901053a9fe2f4683daeb1d89e46165619fd04c05cbded:log:6', 'hash': '0x8797f1a0a22d2fe864b901053a9fe2f4683daeb1d89e46165619fd04c05cbded', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x7534cc7de3cbd0aaf17bfc827954f7c495ed568b', 'value': 49980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a956bd5aa9c67700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T12:03:41.000Z'}}, {'blockNum': '0x51fc11', 'uniqueId': '0x7e0839c8b6b9114f489cdf5d0c070ed248ec359eceec20bea450dc26bfbde05b:log:31', 'hash': '0x7e0839c8b6b9114f489cdf5d0c070ed248ec359eceec20bea450dc26bfbde05b', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x7534cc7de3cbd0aaf17bfc827954f7c495ed568b', 'value': 49980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a956bd5aa9c67700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T12:03:41.000Z'}}, {'blockNum': '0x51fc11', 'uniqueId': '0x99ad8a12c2f010d2164c7edfc83a757cb7da5bd3a77a85a0b77eaa95aba5fa92:log:35', 'hash': '0x99ad8a12c2f010d2164c7edfc83a757cb7da5bd3a77a85a0b77eaa95aba5fa92', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x7534cc7de3cbd0aaf17bfc827954f7c495ed568b', 'value': 49980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a956bd5aa9c67700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T12:03:41.000Z'}}, {'blockNum': '0x51fc11', 'uniqueId': '0x20b275b119f1d1832bc5d6b198aed06fee1b94bd685a9c60b195e4ce6bb1bb40:log:38', 'hash': '0x20b275b119f1d1832bc5d6b198aed06fee1b94bd685a9c60b195e4ce6bb1bb40', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x7534cc7de3cbd0aaf17bfc827954f7c495ed568b', 'value': 49980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a956bd5aa9c67700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T12:03:41.000Z'}}, {'blockNum': '0x51fc11', 'uniqueId': '0x7a4989b792baeba3f4613c35ce3b0ad5bcb920b5c6c0c73517005b65dce6095c:log:41', 'hash': '0x7a4989b792baeba3f4613c35ce3b0ad5bcb920b5c6c0c73517005b65dce6095c', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x7534cc7de3cbd0aaf17bfc827954f7c495ed568b', 'value': 49980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a956bd5aa9c67700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T12:03:41.000Z'}}, {'blockNum': '0x51fc28', 'uniqueId': '0x49223c359c360b593d1a2c67bde3df0e77c58097271d2bca6907ffcdfac8a68e:log:50', 'hash': '0x49223c359c360b593d1a2c67bde3df0e77c58097271d2bca6907ffcdfac8a68e', 'from': '0x7534cc7de3cbd0aaf17bfc827954f7c495ed568b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 299880, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x3f808701ffaa6ca00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T12:08:33.000Z'}}, {'blockNum': '0x51fca0', 'uniqueId': '0x030b39aa6b2d6883dbfa328fa79d5985aea998682e8ab4cc30756e9eee2ced36:log:10', 'hash': '0x030b39aa6b2d6883dbfa328fa79d5985aea998682e8ab4cc30756e9eee2ced36', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x13e7ff7b91bb720f1da60955524fe9de8fb90264', 'value': 15900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x035df0d37e3086f00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T12:38:36.000Z'}}, {'blockNum': '0x51fcc7', 'uniqueId': '0xc22a99afe35877dc772538a0d412fd9151b1ef4bdc4e2886027d965723f96995:log:18', 'hash': '0xc22a99afe35877dc772538a0d412fd9151b1ef4bdc4e2886027d965723f96995', 'from': '0x13e7ff7b91bb720f1da60955524fe9de8fb90264', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x035df0d37e3086f00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T12:48:08.000Z'}}, {'blockNum': '0x51fcee', 'uniqueId': '0x4c1cf3cdb9b937bf608c9037e1760dc7891ca7045fca5dfe76bd16ce3cb60921:log:59', 'hash': '0x4c1cf3cdb9b937bf608c9037e1760dc7891ca7045fca5dfe76bd16ce3cb60921', 'from': '0xb287a379e6caca6732e50b88d23c290aa990a892', 'to': '0xda315dbcc6f6f07d2dc77de974b9d14ef61b2bfd', 'value': 3581.6569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xc22979761e52c84000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T12:57:47.000Z'}}, {'blockNum': '0x51fcee', 'uniqueId': '0x36139bd247c7bf59a05f3a2ef2d95ae8cf02a5cf7795d85216e548e99487dad6:log:129', 'hash': '0x36139bd247c7bf59a05f3a2ef2d95ae8cf02a5cf7795d85216e548e99487dad6', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x02d04a2aa674f73c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T12:57:47.000Z'}}, {'blockNum': '0x51fd0b', 'uniqueId': '0x7b693168947ec6632fe235b0b266ccf6aa6645efaedce4255e289956ab143279:log:23', 'hash': '0x7b693168947ec6632fe235b0b266ccf6aa6645efaedce4255e289956ab143279', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x305ee474226c52306cc97e26c8cd2e6ebcfbac39', 'value': 37000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x07d5c6261d992d200000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:04:12.000Z'}}, {'blockNum': '0x51fd11', 'uniqueId': '0x49db7e73cd6322c079dbe4c02862eb5e7b9bfa3f19e08ac57f9bda28b0e6d7f0:log:8', 'hash': '0x49db7e73cd6322c079dbe4c02862eb5e7b9bfa3f19e08ac57f9bda28b0e6d7f0', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xcde34e809e983e4813a060bec0c43c2112959db3', 'value': 20119.6523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0442b043f05d0ef8c000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:06:12.000Z'}}, {'blockNum': '0x51fd15', 'uniqueId': '0x18deb132294ef2796ccd2b2b15efa108a8ff65902c28a50bfdf5e40369386693:log:0', 'hash': '0x18deb132294ef2796ccd2b2b15efa108a8ff65902c28a50bfdf5e40369386693', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 3569.26, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xc17d6ed34002be0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:06:54.000Z'}}, {'blockNum': '0x51fd16', 'uniqueId': '0xfd768cc80dfaebcf6c0c065d1f23d60cb94412b9e8992cde0abe50f212d3f485:log:5', 'hash': '0xfd768cc80dfaebcf6c0c065d1f23d60cb94412b9e8992cde0abe50f212d3f485', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 2602.015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8d0e36486f06098000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:07:30.000Z'}}, {'blockNum': '0x51fd1b', 'uniqueId': '0x84ec8cee2216018be8778933613c9f74e7562649b74fe5115a0fae953fb4cdc0:log:33', 'hash': '0x84ec8cee2216018be8778933613c9f74e7562649b74fe5115a0fae953fb4cdc0', 'from': '0x305ee474226c52306cc97e26c8cd2e6ebcfbac39', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x07d5c6261d992d200000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:08:29.000Z'}}, {'blockNum': '0x51fd1c', 'uniqueId': '0x302d22866cf867c2f8413c3f05ef5f9ac4dc45674ea13dda95036a183dedb550:log:9', 'hash': '0x302d22866cf867c2f8413c3f05ef5f9ac4dc45674ea13dda95036a183dedb550', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x13e7ff7b91bb720f1da60955524fe9de8fb90264', 'value': 3389.7867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xb7c2bd93ca53a0c000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:08:58.000Z'}}, {'blockNum': '0x51fd41', 'uniqueId': '0xf01b4ca37e8fa1bc731c7f7aff8851394b9df317d61cf8f21755a6189611df85:log:39', 'hash': '0xf01b4ca37e8fa1bc731c7f7aff8851394b9df317d61cf8f21755a6189611df85', 'from': '0x13e7ff7b91bb720f1da60955524fe9de8fb90264', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3389.7867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xb7c2bd93ca53a0c000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:18:05.000Z'}}, {'blockNum': '0x51fd41', 'uniqueId': '0x774b284af6e0ff6c8dfb0c1fa830af80aa13705f4f33eb293a0c64815283c774:log:54', 'hash': '0x774b284af6e0ff6c8dfb0c1fa830af80aa13705f4f33eb293a0c64815283c774', 'from': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2602.015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8d0e36486f06098000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:18:05.000Z'}}, {'blockNum': '0x51fd4c', 'uniqueId': '0x4b24fd8db14fca9125801396a388524ae6ddb68a8052d2cdc67505e87889326e:log:3', 'hash': '0x4b24fd8db14fca9125801396a388524ae6ddb68a8052d2cdc67505e87889326e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x237f549f9db2df3fe5c2ccee3650d1c19d749423', 'value': 161.009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x08ba72e07010de8000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:22:05.000Z'}}, {'blockNum': '0x51fd7b', 'uniqueId': '0x5240ba0641154812291a7c2f44cc9c9e293595eb00d596625cbc19efc339eb70:log:2', 'hash': '0x5240ba0641154812291a7c2f44cc9c9e293595eb00d596625cbc19efc339eb70', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x60ac44b0a5e6f016fef8a9c142d49d1623f5b885', 'value': 980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x35203b67bccad00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:33:42.000Z'}}, {'blockNum': '0x51fd89', 'uniqueId': '0x0c491055c2f18f471c32d1f6c0ff96bb56ca971c973fff8ea7e5ea50f033b03d:log:0', 'hash': '0x0c491055c2f18f471c32d1f6c0ff96bb56ca971c973fff8ea7e5ea50f033b03d', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x81ac104abc9d06043dd338b9cc6dcbd48caef1bf', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:36:10.000Z'}}, {'blockNum': '0x51fdd3', 'uniqueId': '0xcb00053ef08b738ea56aa2b37881606919dea85dbb242dd45a87b2be879fd0b2:log:42', 'hash': '0xcb00053ef08b738ea56aa2b37881606919dea85dbb242dd45a87b2be879fd0b2', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x23b36f6961f7d0d031cf92c957d2500226e8561d', 'value': 4389.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xedeeff9b8d32fe0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:56:31.000Z'}}, {'blockNum': '0x51fdf3', 'uniqueId': '0x6535d68b37f201a718fade86804ffb8214d5885a637325d43a6dbc61cb988f39:log:40', 'hash': '0x6535d68b37f201a718fade86804ffb8214d5885a637325d43a6dbc61cb988f39', 'from': '0x23b36f6961f7d0d031cf92c957d2500226e8561d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4389.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xedeeff9b8d32fe0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T14:07:49.000Z'}}, {'blockNum': '0x51fe1b', 'uniqueId': '0xdbbf6e31e3e8c9e352d568264c92fa397f3f7fb97b1e1441415b565f66f15aaa:log:30', 'hash': '0xdbbf6e31e3e8c9e352d568264c92fa397f3f7fb97b1e1441415b565f66f15aaa', 'from': '0xcfe0909dc95c2b22510ea81f648efb4b63c8021a', 'to': '0x7b2d7224bcd47a27b7f7485a2c8e9a0938b9330e', 'value': 2424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8367c1f518fae00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T14:18:02.000Z'}}, {'blockNum': '0x51fe49', 'uniqueId': '0xffc20c1799b4237b628700ae926256d5d65e9228d43868d9d3717b732bde94fc:log:6', 'hash': '0xffc20c1799b4237b628700ae926256d5d65e9228d43868d9d3717b732bde94fc', 'from': '0x7b2d7224bcd47a27b7f7485a2c8e9a0938b9330e', 'to': '0x60ac44b0a5e6f016fef8a9c142d49d1623f5b885', 'value': 2424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8367c1f518fae00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T14:29:36.000Z'}}, {'blockNum': '0x51fe81', 'uniqueId': '0x6d4111cc52aae08974d2da5fe7c243f58828a682791b09f17d19a5909b54db82:log:30', 'hash': '0x6d4111cc52aae08974d2da5fe7c243f58828a682791b09f17d19a5909b54db82', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xd20278bd5298fda34bb4af829151b3f8fdb1d62d', 'value': 45000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x098774738bc822200000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T14:42:56.000Z'}}, {'blockNum': '0x51fe9d', 'uniqueId': '0xc6c45fe6975c697906d49f2f63abfdc0e03760c4b510d5a38edc1f40d2cf2958:log:8', 'hash': '0xc6c45fe6975c697906d49f2f63abfdc0e03760c4b510d5a38edc1f40d2cf2958', 'from': '0xd20278bd5298fda34bb4af829151b3f8fdb1d62d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 45000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x098774738bc822200000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T14:48:05.000Z'}}, {'blockNum': '0x51fed5', 'uniqueId': '0x6d2c5e8b5dec5a3c5a96e736747f0a6d599b9495647b252358b9b95e9a0a424d:log:0', 'hash': '0x6d2c5e8b5dec5a3c5a96e736747f0a6d599b9495647b252358b9b95e9a0a424d', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xd20278bd5298fda34bb4af829151b3f8fdb1d62d', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:03:33.000Z'}}, {'blockNum': '0x51fed8', 'uniqueId': '0x67487ea16570a82b17d90e239a372213969f4f7aa3f46f8dedc1328709a798c6:log:0', 'hash': '0x67487ea16570a82b17d90e239a372213969f4f7aa3f46f8dedc1328709a798c6', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x305ee474226c52306cc97e26c8cd2e6ebcfbac39', 'value': 62641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0d43c6818dc20c240000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:04:26.000Z'}}, {'blockNum': '0x51feea', 'uniqueId': '0x07d577b78c6c6d044aad96372da7751a1f48413f60a577ba2f956202582026a4:log:13', 'hash': '0x07d577b78c6c6d044aad96372da7751a1f48413f60a577ba2f956202582026a4', 'from': '0x7d10bc73cc7bc1f67ff97280ee644b384ae92078', 'to': '0x15edbd168ddf304f0eef684f96ae85b0d9b03598', 'value': 23304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x04ef4ff7921dc7200000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:08:30.000Z'}}, {'blockNum': '0x51feea', 'uniqueId': '0xbc4d7e38b04cb9000896e71a111f31b84ba89dead3a4aaa81841366189f9db7e:log:72', 'hash': '0xbc4d7e38b04cb9000896e71a111f31b84ba89dead3a4aaa81841366189f9db7e', 'from': '0x305ee474226c52306cc97e26c8cd2e6ebcfbac39', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 62641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0d43c6818dc20c240000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:08:30.000Z'}}, {'blockNum': '0x51feea', 'uniqueId': '0xfcf39693499faa61759f1fe32c1663da263efd635008e9a6552d1c02ef8303af:log:73', 'hash': '0xfcf39693499faa61759f1fe32c1663da263efd635008e9a6552d1c02ef8303af', 'from': '0xd20278bd5298fda34bb4af829151b3f8fdb1d62d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:08:30.000Z'}}, {'blockNum': '0x51fef3', 'uniqueId': '0xd5ca85ed1a5d6d027c5ddacd4356b07574fc47f52c46b8ccded57d9b57a0ea9e:log:1', 'hash': '0xd5ca85ed1a5d6d027c5ddacd4356b07574fc47f52c46b8ccded57d9b57a0ea9e', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xbcafad91cc7fc97b4f2611fb57c66a1e0897dfa0', 'value': 6460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x015e32825d73ff700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:11:45.000Z'}}, {'blockNum': '0x51fefe', 'uniqueId': '0xee2ff1080a9fb854c42a1cc852c4ee47ffad7af3e822a2142406db447dbfad47:log:0', 'hash': '0xee2ff1080a9fb854c42a1cc852c4ee47ffad7af3e822a2142406db447dbfad47', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x46f8016eeee6d7a7a6896be67d48d78a765f6af3', 'value': 119.64, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x067c56aa1ebfbc0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:14:41.000Z'}}, {'blockNum': '0x51fefe', 'uniqueId': '0xe275e1715fdcec832f6e60cac4ff162ada1e27446d906e7888edc27b3c5f21f2:log:15', 'hash': '0xe275e1715fdcec832f6e60cac4ff162ada1e27446d906e7888edc27b3c5f21f2', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x3b7fe2aa641b3011d684376486cc6279f9f6556c', 'value': 10537.34906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x023b3b1824cd4c504000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:14:41.000Z'}}, {'blockNum': '0x51ff0d', 'uniqueId': '0xdc74e056aa1da4ce16a6dff5d0499b1319f65ea595318426f5825ed725174299:log:6', 'hash': '0xdc74e056aa1da4ce16a6dff5d0499b1319f65ea595318426f5825ed725174299', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3b61dac91de481624818dbb5993184d2733084fe', 'value': 9969.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x021c6bb552755b778000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:17:21.000Z'}}, {'blockNum': '0x51ff11', 'uniqueId': '0xbdbc22e5bbdada1ccad6369904e987c7ccfac3904f0b87987f2947ae3d1ae7e0:log:13', 'hash': '0xbdbc22e5bbdada1ccad6369904e987c7ccfac3904f0b87987f2947ae3d1ae7e0', 'from': '0xbcafad91cc7fc97b4f2611fb57c66a1e0897dfa0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x015e32825d73ff700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:18:02.000Z'}}, {'blockNum': '0x51ff11', 'uniqueId': '0x379e0c0377348f9edeac1a7d99ff0223ba9c58f0fc2e59264a312ea3fd94e027:log:14', 'hash': '0x379e0c0377348f9edeac1a7d99ff0223ba9c58f0fc2e59264a312ea3fd94e027', 'from': '0x3b7fe2aa641b3011d684376486cc6279f9f6556c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10537.34906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x023b3b1824cd4c504000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:18:02.000Z'}}, {'blockNum': '0x51ff12', 'uniqueId': '0x46b3f886e207cc24046ac583e1731197a3bcbf19bd1d52fbab4845e8614201be:log:46', 'hash': '0x46b3f886e207cc24046ac583e1731197a3bcbf19bd1d52fbab4845e8614201be', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xd20278bd5298fda34bb4af829151b3f8fdb1d62d', 'value': 57000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0c11f9e7b10e91a00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:18:14.000Z'}}, {'blockNum': '0x51ff15', 'uniqueId': '0x2567a2f40f887d615c48d9b33d626186be59c4b30e99107373f5a818860ab204:log:0', 'hash': '0x2567a2f40f887d615c48d9b33d626186be59c4b30e99107373f5a818860ab204', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3b61dac91de481624818dbb5993184d2733084fe', 'value': 9950.06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x021b64d244529f3e0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:18:37.000Z'}}, {'blockNum': '0x51ff1b', 'uniqueId': '0x50392b2894828b18bb6b96fbd385399e4280096cb484948dba1d7db21b49aff0:log:0', 'hash': '0x50392b2894828b18bb6b96fbd385399e4280096cb484948dba1d7db21b49aff0', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3b61dac91de481624818dbb5993184d2733084fe', 'value': 9960.03, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x021bef2ed27fd9e30000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:19:50.000Z'}}, {'blockNum': '0x51ff23', 'uniqueId': '0xb23cd1b4ecc5269efd9dd1c74a2a3ce83e86ba0188185228a7a3c0ecf9b2a899:log:2', 'hash': '0xb23cd1b4ecc5269efd9dd1c74a2a3ce83e86ba0188185228a7a3c0ecf9b2a899', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3b61dac91de481624818dbb5993184d2733084fe', 'value': 1357.0518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x4990e07e21a4718000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:21:07.000Z'}}, {'blockNum': '0x51ff48', 'uniqueId': '0x45edf0a22336d23986f02d12d80a5a7de8eae8ebab95fba9aaa620922c696d5b:log:13', 'hash': '0x45edf0a22336d23986f02d12d80a5a7de8eae8ebab95fba9aaa620922c696d5b', 'from': '0xd20278bd5298fda34bb4af829151b3f8fdb1d62d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 57000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0c11f9e7b10e91a00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:28:06.000Z'}}, {'blockNum': '0x51ff48', 'uniqueId': '0x5b376167e99cc3a6c0284e24574c6337c947ba4fca0920b16c6a2eac5fcffc6b:log:14', 'hash': '0x5b376167e99cc3a6c0284e24574c6337c947ba4fca0920b16c6a2eac5fcffc6b', 'from': '0x3b61dac91de481624818dbb5993184d2733084fe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31236.1448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x069d5096e769790a0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:28:06.000Z'}}, {'blockNum': '0x51ff4c', 'uniqueId': '0x856066126729281bcf827f1861c5b2465ff7f9ed58c050a5341a1a60b3e83155:log:8', 'hash': '0x856066126729281bcf827f1861c5b2465ff7f9ed58c050a5341a1a60b3e83155', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x305ee474226c52306cc97e26c8cd2e6ebcfbac39', 'value': 5415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01258c389219b43c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:29:18.000Z'}}, {'blockNum': '0x51ff52', 'uniqueId': '0x7bd690eca92c0d20608172ad383e4129136c0748e017fd46867c7f2ebdfb33c3:log:0', 'hash': '0x7bd690eca92c0d20608172ad383e4129136c0748e017fd46867c7f2ebdfb33c3', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x305ee474226c52306cc97e26c8cd2e6ebcfbac39', 'value': 48701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a501624df0b1ad40000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:30:09.000Z'}}, {'blockNum': '0x51ff56', 'uniqueId': '0xf62d22f83904d1e46d3894aba3b1462fb7b76a18342ace4afe90909558d1f76b:log:42', 'hash': '0xf62d22f83904d1e46d3894aba3b1462fb7b76a18342ace4afe90909558d1f76b', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xd20278bd5298fda34bb4af829151b3f8fdb1d62d', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:31:41.000Z'}}, {'blockNum': '0x51ff56', 'uniqueId': '0xe96d16c339c04f4c41125d77e922e02cc5051a391d38ba3ee5fdd485e8e3c4fc:log:52', 'hash': '0xe96d16c339c04f4c41125d77e922e02cc5051a391d38ba3ee5fdd485e8e3c4fc', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x7a6169f118f3f0fc9231cff169f00939a10d5cbb', 'value': 48177.29686582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a33b24d95346d321800', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:31:41.000Z'}}, {'blockNum': '0x51ff6f', 'uniqueId': '0x3868af629a594cfb8ed03c33513f8aba603e05fce233ceeefd0372dba80dc650:log:46', 'hash': '0x3868af629a594cfb8ed03c33513f8aba603e05fce233ceeefd0372dba80dc650', 'from': '0x305ee474226c52306cc97e26c8cd2e6ebcfbac39', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 54116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0b75a25d7124cf100000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:38:04.000Z'}}, {'blockNum': '0x51ff6f', 'uniqueId': '0x3c6b713890624b2cb4fccce1f6660710b13a255bc982e193f5c80ea18d835713:log:48', 'hash': '0x3c6b713890624b2cb4fccce1f6660710b13a255bc982e193f5c80ea18d835713', 'from': '0x7a6169f118f3f0fc9231cff169f00939a10d5cbb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 48177.29686582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a33b24d95346d321800', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:38:04.000Z'}}, {'blockNum': '0x51ff6f', 'uniqueId': '0xdc22de12a7f904a6230f86d1a940aa4535425776286729b3f4276ad746026f67:log:49', 'hash': '0xdc22de12a7f904a6230f86d1a940aa4535425776286729b3f4276ad746026f67', 'from': '0xd20278bd5298fda34bb4af829151b3f8fdb1d62d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:38:04.000Z'}}, {'blockNum': '0x51ff90', 'uniqueId': '0x2378cf230a02d43008053d5b72d46d3bda9a013b33140aded807000805adacca:log:56', 'hash': '0x2378cf230a02d43008053d5b72d46d3bda9a013b33140aded807000805adacca', 'from': '0x4558faa601ab08a3dc733b39a4c755a101a19218', 'to': '0x86904e32b0d7a8e1ab4dc4a02bae7ff93e9a2d33', 'value': 312700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x4237803f5c6508700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:46:47.000Z'}}, {'blockNum': '0x51ffa8', 'uniqueId': '0xb74e719fca2e2bd40fbcadb32576f0db884770dc9054058ff05430f7ecb378a1:log:13', 'hash': '0xb74e719fca2e2bd40fbcadb32576f0db884770dc9054058ff05430f7ecb378a1', 'from': '0x46499f2dff9f551bc71646a0448396b1c4702343', 'to': '0x8694da2db5fa2193d9d0d4e462e8d03ba13b28c0', 'value': 29993.432800000002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0659f27efb9516000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:52:08.000Z'}}, {'blockNum': '0x51ffbf', 'uniqueId': '0x605a4a5707695a990a85e28bbe3a5d0017b10d06d80ddc17938128b3dbcbaa61:log:8', 'hash': '0x605a4a5707695a990a85e28bbe3a5d0017b10d06d80ddc17938128b3dbcbaa61', 'from': '0x4558faa601ab08a3dc733b39a4c755a101a19218', 'to': '0x86904e32b0d7a8e1ab4dc4a02bae7ff93e9a2d33', 'value': 2814300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0253f3823a3f8d4bf00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:56:33.000Z'}}, {'blockNum': '0x51ffda', 'uniqueId': '0xf4f6d0516d661402feff21bf27c1434cdd48a349e8baf5e85632cf43e41d9263:log:65', 'hash': '0xf4f6d0516d661402feff21bf27c1434cdd48a349e8baf5e85632cf43e41d9263', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xd20278bd5298fda34bb4af829151b3f8fdb1d62d', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:04:18.000Z'}}, {'blockNum': '0x51ffec', 'uniqueId': '0x5ba3e7b8d192e1b635bdbf92c3e12fb45c5a60432318cdb2613447a1c13df2f2:log:47', 'hash': '0x5ba3e7b8d192e1b635bdbf92c3e12fb45c5a60432318cdb2613447a1c13df2f2', 'from': '0xd20278bd5298fda34bb4af829151b3f8fdb1d62d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:08:37.000Z'}}, {'blockNum': '0x51fff8', 'uniqueId': '0x4fc864180c556ce92513e94dccafdfcfadaf1faf5f446a185c580b4e5d8dc323:log:57', 'hash': '0x4fc864180c556ce92513e94dccafdfcfadaf1faf5f446a185c580b4e5d8dc323', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf745e1c9e313ad4c37c8bf10be4533014aa77c00', 'value': 60558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0cd2db12f5f709780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:12:35.000Z'}}, {'blockNum': '0x52000d', 'uniqueId': '0x1d8170e60951867f21043df2fb12127a085a3080b3da40a8551267b5725335ad:log:27', 'hash': '0x1d8170e60951867f21043df2fb12127a085a3080b3da40a8551267b5725335ad', 'from': '0xf745e1c9e313ad4c37c8bf10be4533014aa77c00', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0cd2db12f5f709780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:18:16.000Z'}}, {'blockNum': '0x520010', 'uniqueId': '0xa0083034826ea707ed3d5ebb662386659f07aa94019100f815112489bd9b95e8:log:0', 'hash': '0xa0083034826ea707ed3d5ebb662386659f07aa94019100f815112489bd9b95e8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'value': 29970.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0658b0137f13341c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:18:24.000Z'}}, {'blockNum': '0x52001e', 'uniqueId': '0x873f89a154243abcdc2d63dc328cdb0a7d157b1a5448facd3f038db0eed941db:log:2', 'hash': '0x873f89a154243abcdc2d63dc328cdb0a7d157b1a5448facd3f038db0eed941db', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x353f370c7658334db13539117638a90dea955b88', 'value': 18642.29, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x03f299beafea18e50000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:20:36.000Z'}}, {'blockNum': '0x520026', 'uniqueId': '0x70a5a1e002016adcc16917408138f362d6affb72125ff8d6ffa26e6237a77cd1:log:26', 'hash': '0x70a5a1e002016adcc16917408138f362d6affb72125ff8d6ffa26e6237a77cd1', 'from': '0xb7e285d4cb46050ad8ba957af9b6a6f6e28d540d', 'to': '0xd3d3b4e4e9a4c8d803bf23ad6740e596497a98e2', 'value': 186.7615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a1fd622bec31dc000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:24:04.000Z'}}, {'blockNum': '0x520048', 'uniqueId': '0x4bf67e1c9fe13203af34231e070e93dca08a8ef0c64d654ec5d662006efb5d3f:log:2', 'hash': '0x4bf67e1c9fe13203af34231e070e93dca08a8ef0c64d654ec5d662006efb5d3f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb378781eca3fc6c307bfa6b53ec022f9ccef3e81', 'value': 64049.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0d901d34f4cb6d380000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:30:17.000Z'}}, {'blockNum': '0x520067', 'uniqueId': '0xab6fff6a596b904963ce2335225c423e41500d3920532775a8866f3019bf5278:log:48', 'hash': '0xab6fff6a596b904963ce2335225c423e41500d3920532775a8866f3019bf5278', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'value': 39970.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0876c9f448cde65c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:38:04.000Z'}}, {'blockNum': '0x520078', 'uniqueId': '0xfb3c38c74ca880ae1a4ed066f2d89a1448ae9cbcf2bf72bd85d5c1cccf5f7f29:log:6', 'hash': '0xfb3c38c74ca880ae1a4ed066f2d89a1448ae9cbcf2bf72bd85d5c1cccf5f7f29', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xb424c7e42ba869b1f1a5c3eb92b90aff8532c560', 'value': 1076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x3a547feb1b90500000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:42:27.000Z'}}, {'blockNum': '0x520082', 'uniqueId': '0x96f080c1073163daec61336bbec19a89aed46a1e743e0d8c272ed5afacbe952d:log:129', 'hash': '0x96f080c1073163daec61336bbec19a89aed46a1e743e0d8c272ed5afacbe952d', 'from': '0xb424c7e42ba869b1f1a5c3eb92b90aff8532c560', 'to': '0x9aa4b42c26f19244d4682684d3ab73a6d7f4d69a', 'value': 1076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x3a547feb1b90500000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:44:16.000Z'}}, {'blockNum': '0x520089', 'uniqueId': '0x73fabc99983503acec3c898311ab24b4bbcde686f110cf6aedd08081c53a29c8:log:9', 'hash': '0x73fabc99983503acec3c898311ab24b4bbcde686f110cf6aedd08081c53a29c8', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:47:59.000Z'}}, {'blockNum': '0x5200a3', 'uniqueId': '0xe09ea043f4a30c0ad6c3d0699675a9e828d6ce26c0586e4cc5b1919c30e09a27:log:159', 'hash': '0xe09ea043f4a30c0ad6c3d0699675a9e828d6ce26c0586e4cc5b1919c30e09a27', 'from': '0xb378781eca3fc6c307bfa6b53ec022f9ccef3e81', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 64049.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0d901d34f4cb6d380000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:54:16.000Z'}}, {'blockNum': '0x5200e1', 'uniqueId': '0xd4a0da0407927a5885cf95ada0f22da2c79d90036119268a5047936cfae91357:log:7', 'hash': '0xd4a0da0407927a5885cf95ada0f22da2c79d90036119268a5047936cfae91357', 'from': '0xb287a379e6caca6732e50b88d23c290aa990a892', 'to': '0xa7f3d3acf448f7d21ce9706224c4b8b6f48635a5', 'value': 5509.7105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x012aae97dc0d7bde4000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T17:12:20.000Z'}}, {'blockNum': '0x5200fd', 'uniqueId': '0xa11d2478d7799c9f6f24b02248d514f21c6c4d1c22bfc2e92303d22137cf2f43:log:21', 'hash': '0xa11d2478d7799c9f6f24b02248d514f21c6c4d1c22bfc2e92303d22137cf2f43', 'from': '0xa7f3d3acf448f7d21ce9706224c4b8b6f48635a5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5509.7105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x012aae97dc0d7bde4000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T17:18:08.000Z'}}, {'blockNum': '0x520124', 'uniqueId': '0x03889eaa0496e3d8b4458922fed25fa60c859a5e145e5d6f7032cbcb89d89b45:log:44', 'hash': '0x03889eaa0496e3d8b4458922fed25fa60c859a5e145e5d6f7032cbcb89d89b45', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x31eed4a9d7e884f1d1a3713edf57cd5ea86d7a7a', 'value': 94957.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x141baa651db3bf170000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T17:29:13.000Z'}}, {'blockNum': '0x52012e', 'uniqueId': '0xad93ffaeaca637cab33f98e183ac07e18c2933185c10a946e46629e91848b122:log:0', 'hash': '0xad93ffaeaca637cab33f98e183ac07e18c2933185c10a946e46629e91848b122', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb98232c3e43aa16a9d28350ac279eed519aae213', 'value': 672826.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8e79ff427b79e0990000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T17:31:15.000Z'}}, {'blockNum': '0x520142', 'uniqueId': '0xa56cad132d5b5765884cd33b09b6fba15b2b92b01f4da77606f959e201c3852e:log:6', 'hash': '0xa56cad132d5b5765884cd33b09b6fba15b2b92b01f4da77606f959e201c3852e', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6a2a0727b30610a8ef1d63aafb9159c91a0f5e60', 'value': 1765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x5fae4ba4a114740000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T17:35:30.000Z'}}, {'blockNum': '0x52014c', 'uniqueId': '0xe3081c7ca0574c6b6da4ac99851c5ce4e691b1d863ff8e4f1c9d38a5a96b2d03:log:1', 'hash': '0xe3081c7ca0574c6b6da4ac99851c5ce4e691b1d863ff8e4f1c9d38a5a96b2d03', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 849574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xb3e77fb2f408a2d80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T17:38:10.000Z'}}, {'blockNum': '0x52015f', 'uniqueId': '0x9302c0e0354323f551f6055367493d2c4c64e9f400a66d4d0c76e2b90f5eb7a7:log:2', 'hash': '0x9302c0e0354323f551f6055367493d2c4c64e9f400a66d4d0c76e2b90f5eb7a7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x31eed4a9d7e884f1d1a3713edf57cd5ea86d7a7a', 'value': 104618.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x16275d2e3105437c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T17:42:14.000Z'}}, {'blockNum': '0x52015f', 'uniqueId': '0xfb4d627fea079749a8ad6b9ca72f79a4dd47b9c41ab75bd926aaf65402ac3fe2:log:125', 'hash': '0xfb4d627fea079749a8ad6b9ca72f79a4dd47b9c41ab75bd926aaf65402ac3fe2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3423940069110f235a4c3e1112abe0246170903b', 'value': 24216.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0520c348fd12d6740000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T17:42:14.000Z'}}, {'blockNum': '0x520190', 'uniqueId': '0xe647428baeab6781938e170058ec111cfb239c7d02ed2414a62e44f2cd51dcc0:log:2', 'hash': '0xe647428baeab6781938e170058ec111cfb239c7d02ed2414a62e44f2cd51dcc0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd1f2f4baa2710e73016468840b83793eb2f7b6b1', 'value': 28813.49608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0619fb95a850a6410000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T17:53:10.000Z'}}, {'blockNum': '0x5201a4', 'uniqueId': '0xf0d05ad90dcc1e2b9d43548ec576f6d708588bb5172df72576dbefb204a51bd9:log:1', 'hash': '0xf0d05ad90dcc1e2b9d43548ec576f6d708588bb5172df72576dbefb204a51bd9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x31eed4a9d7e884f1d1a3713edf57cd5ea86d7a7a', 'value': 59473.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0c980c73297b51b80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T17:57:35.000Z'}}, {'blockNum': '0x5201dd', 'uniqueId': '0x1825e35519e7416de21160e1b48e4884f0613c5c9a25c664fc178f328348777f:log:3', 'hash': '0x1825e35519e7416de21160e1b48e4884f0613c5c9a25c664fc178f328348777f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 59970.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0cb2fdb5dc434adc0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T18:08:56.000Z'}}, {'blockNum': '0x5201f2', 'uniqueId': '0x7727d13d12a0760804dd6baa7257708855b24f89e41243e6eec8e785a8256cff:log:0', 'hash': '0x7727d13d12a0760804dd6baa7257708855b24f89e41243e6eec8e785a8256cff', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0c77fdb7b851099f006bf77933dee283680c3b4a', 'value': 39648.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0865554e7ad55a940000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T18:13:44.000Z'}}, {'blockNum': '0x52028f', 'uniqueId': '0x07dcd3e1261111753db2c052274d591fb8056d8da7091579bc0325cedb0bdd80:log:59', 'hash': '0x07dcd3e1261111753db2c052274d591fb8056d8da7091579bc0325cedb0bdd80', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0c77fdb7b851099f006bf77933dee283680c3b4a', 'value': 39450.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x085a99812be1e33c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T18:54:23.000Z'}}, {'blockNum': '0x520311', 'uniqueId': '0x18df5f1303c0849054aa9dfa91574f9df865007c867d8217246e67b0101c1e8d:log:0', 'hash': '0x18df5f1303c0849054aa9dfa91574f9df865007c867d8217246e67b0101c1e8d', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x1d1a440ed1dcb583f7c24372bcd01169ca06d595', 'value': 2445.35548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x84901fdd02ead58000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T19:25:24.000Z'}}, {'blockNum': '0x52031f', 'uniqueId': '0x2ccddd5ee204deb76a2a4a4179873c501afb16f4c26be699d13da35ff82586d3:log:11', 'hash': '0x2ccddd5ee204deb76a2a4a4179873c501afb16f4c26be699d13da35ff82586d3', 'from': '0x1d1a440ed1dcb583f7c24372bcd01169ca06d595', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2445.35548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x84901fdd02ead58000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T19:28:02.000Z'}}, {'blockNum': '0x52049d', 'uniqueId': '0xb497c45c71053002f39d5cecc328105d7de6d2bbce7bfd353033a9c3cd0878bc:log:84', 'hash': '0xb497c45c71053002f39d5cecc328105d7de6d2bbce7bfd353033a9c3cd0878bc', 'from': '0x0760f72dd5fc12611043b1e1c8ce2ef970ac4d64', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 20134.043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x044377f9f9c4b02f7fff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T21:00:57.000Z'}}, {'blockNum': '0x5204c4', 'uniqueId': '0xee4fb7dbf255cc56caf3aeff9d76cbceae765af3a8e5319484d6d763bb685491:log:14', 'hash': '0xee4fb7dbf255cc56caf3aeff9d76cbceae765af3a8e5319484d6d763bb685491', 'from': '0x1aedbab0cdd00f7544aad6ddeed94139228eaef7', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 2965.078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xa0bcb92b57edaeffff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T21:08:56.000Z'}}, {'blockNum': '0x5205b1', 'uniqueId': '0xf4b51487c25f57c019ec4c8962716388c43dee8fd751d6688e9c35a8ad439fd3:log:0', 'hash': '0xf4b51487c25f57c019ec4c8962716388c43dee8fd751d6688e9c35a8ad439fd3', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0xb8b521343347018673c1678e44e970c16dcbfa42', 'value': 53243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0b464f0e667efb0c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T22:02:41.000Z'}}, {'blockNum': '0x520674', 'uniqueId': '0xc84c6b63d89ea42ce2de2afc65e1e9dcb5b956d365b3f4fcbeb1941bd45fe38e:log:4', 'hash': '0xc84c6b63d89ea42ce2de2afc65e1e9dcb5b956d365b3f4fcbeb1941bd45fe38e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'value': 54970.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ba3f0c57765f1bc0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T22:48:42.000Z'}}, {'blockNum': '0x52068a', 'uniqueId': '0x67961243333d75e98805c9b9ac6213170473a8475d1aefc96740c20ffc243960:log:45', 'hash': '0x67961243333d75e98805c9b9ac6213170473a8475d1aefc96740c20ffc243960', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x12d0a03c68241bef8e7c989ccb012bc757977f63', 'value': 3052.115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xa5749ab5b3a15b8000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T22:52:36.000Z'}}, {'blockNum': '0x52068a', 'uniqueId': '0xdb767b36049f4e012ecf040846d3c459c921d6e542a04fd748a56584a6ba2ab5:log:46', 'hash': '0xdb767b36049f4e012ecf040846d3c459c921d6e542a04fd748a56584a6ba2ab5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb8b521343347018673c1678e44e970c16dcbfa42', 'value': 23850.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x050cec03c839857c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T22:52:36.000Z'}}, {'blockNum': '0x52069a', 'uniqueId': '0x00cbb76028f26412869f8d92f653c5fd5c312197f8881a6dbadb042aaaa49257:log:56', 'hash': '0x00cbb76028f26412869f8d92f653c5fd5c312197f8881a6dbadb042aaaa49257', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x81b915cdf8b27c8b63f5dd3a541f42f17e896915', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T22:56:34.000Z'}}, {'blockNum': '0x52069c', 'uniqueId': '0x589da99309a4f6544db9d260475abce571b1f0d9f3a1134bc9a2dedb0a071849:log:103', 'hash': '0x589da99309a4f6544db9d260475abce571b1f0d9f3a1134bc9a2dedb0a071849', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x81b915cdf8b27c8b63f5dd3a541f42f17e896915', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T22:57:56.000Z'}}, {'blockNum': '0x5206a5', 'uniqueId': '0x161ad714a15427ef050f90c2b00b0e590ba2b6f93da51b80f7abf041fd2386ea:log:17', 'hash': '0x161ad714a15427ef050f90c2b00b0e590ba2b6f93da51b80f7abf041fd2386ea', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x718678b3e8ba739fbb59f01bdb8e8d228cf208c3', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T22:59:15.000Z'}}, {'blockNum': '0x5206a7', 'uniqueId': '0x7fac8d273c7a85b8efd9f35bd56732ac33fa9831e7326cbd344bac03c53fe60c:log:68', 'hash': '0x7fac8d273c7a85b8efd9f35bd56732ac33fa9831e7326cbd344bac03c53fe60c', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x7358fe41236bfa7ae6295f2b0df0566e653c5fb1', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:00:25.000Z'}}, {'blockNum': '0x5206aa', 'uniqueId': '0xcd1e934b7d38407b74d18bf0042e00e0c856d7e67d607a5947e1b33ba2c3b2f9:log:72', 'hash': '0xcd1e934b7d38407b74d18bf0042e00e0c856d7e67d607a5947e1b33ba2c3b2f9', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x2b29b22c2948c24fd2d17485eee23cc8c732aaa5', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:01:04.000Z'}}, {'blockNum': '0x5206ac', 'uniqueId': '0x083d4381159ec8752a015c7a03cd53588f89bd36f9e0e095a0b40fb9dbacb9d8:log:54', 'hash': '0x083d4381159ec8752a015c7a03cd53588f89bd36f9e0e095a0b40fb9dbacb9d8', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x5c641239a61480fe6a1d897ad56c8c9b6cc7add8', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:01:19.000Z'}}, {'blockNum': '0x5206af', 'uniqueId': '0xd9944c5252c01fec63b8359fa1ad4fdc6c0da1f4db44dd5b75623861f37a4488:log:2', 'hash': '0xd9944c5252c01fec63b8359fa1ad4fdc6c0da1f4db44dd5b75623861f37a4488', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'value': 39970.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0876c9f448cde65c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:01:48.000Z'}}, {'blockNum': '0x5206b6', 'uniqueId': '0x91bc8011f2b667a961008b4e67923fc5600899ce4aaab7f3dad05c496baafddd:log:20', 'hash': '0x91bc8011f2b667a961008b4e67923fc5600899ce4aaab7f3dad05c496baafddd', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xb067855c4b668bb5cdd9bef26eac8f30f1fa4c46', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:03:18.000Z'}}, {'blockNum': '0x5206b8', 'uniqueId': '0xceb4de7b72e16024e71bfda77d7aaf7cd8113a9f6f2cb2c6f15b6822e3188b5e:log:25', 'hash': '0xceb4de7b72e16024e71bfda77d7aaf7cd8113a9f6f2cb2c6f15b6822e3188b5e', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xecb5ac987aa52b5564c32f6554cb639e0e5cfc02', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:04:08.000Z'}}, {'blockNum': '0x5206cb', 'uniqueId': '0xd3b6f4a9914d6c6235d710042b49aa3011ea568ff644438929e17027af16c613:log:73', 'hash': '0xd3b6f4a9914d6c6235d710042b49aa3011ea568ff644438929e17027af16c613', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x05dac7bcb6245207ecaea89e9f89ee3300a06c40', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:07:50.000Z'}}, {'blockNum': '0x5206ce', 'uniqueId': '0xcb76771d908b7fa74509d26331354c180d9ba431a568a4120a7a40c327b7528e:log:40', 'hash': '0xcb76771d908b7fa74509d26331354c180d9ba431a568a4120a7a40c327b7528e', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xb050fc4e80622541586d6339489cae899ae9a62c', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:08:43.000Z'}}, {'blockNum': '0x5206d1', 'uniqueId': '0x318ea8850d2e68a5d2397d2ee6b87b37d587b87bff655712391e976780f25fa0:log:6', 'hash': '0x318ea8850d2e68a5d2397d2ee6b87b37d587b87bff655712391e976780f25fa0', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xa4b38dbf01806fc0e5480eeb95d3e2bebc838767', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:09:13.000Z'}}, {'blockNum': '0x5206d4', 'uniqueId': '0x516fe107095ec4186c1cbfc62db2e7d2c97757153d0f9ecf75e418169f86e16e:log:61', 'hash': '0x516fe107095ec4186c1cbfc62db2e7d2c97757153d0f9ecf75e418169f86e16e', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x1c02708b6d1fd696a4a43faac9cb06de6ebe1a31', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:09:56.000Z'}}, {'blockNum': '0x5206d7', 'uniqueId': '0xab67d0e3bcd499227814aac241862cc4e088b1998367e98e69e427101b4ceea9:log:37', 'hash': '0xab67d0e3bcd499227814aac241862cc4e088b1998367e98e69e427101b4ceea9', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xbe4776508b7cff338881ea6eb3f2b1d68c3e396d', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:11:05.000Z'}}, {'blockNum': '0x5206e6', 'uniqueId': '0x91c8a0580fa09b7c3eb3749f3275c31fbb85e109fb0414932aa498f636b4c183:log:11', 'hash': '0x91c8a0580fa09b7c3eb3749f3275c31fbb85e109fb0414932aa498f636b4c183', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x04dbd398690c2d308511084af5378bbc910ac2b8', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:15:53.000Z'}}, {'blockNum': '0x5206e9', 'uniqueId': '0x8732cbf6d376437ea8acf66ab754314213e5a79436bc83efb18eaf1b117ec037:log:63', 'hash': '0x8732cbf6d376437ea8acf66ab754314213e5a79436bc83efb18eaf1b117ec037', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x7a726440b67dc65293129648858cec5b6a32cd81', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:16:49.000Z'}}, {'blockNum': '0x5206ed', 'uniqueId': '0x2a48265855661f42898ed390490796e1e01ff5ef63f5123d65acdf6c910553b8:log:42', 'hash': '0x2a48265855661f42898ed390490796e1e01ff5ef63f5123d65acdf6c910553b8', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x0e90774e65822878233e0823f90237815b370893', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:17:52.000Z'}}, {'blockNum': '0x5206ef', 'uniqueId': '0xf74e0408e91ede82748c4f372c441afd26de047264189a1885c44bf848cf56b4:log:15', 'hash': '0xf74e0408e91ede82748c4f372c441afd26de047264189a1885c44bf848cf56b4', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xdcfb8af3d43f124505dee5c539babac03dd390f1', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:18:17.000Z'}}, {'blockNum': '0x5206f3', 'uniqueId': '0xc40e83cec9cc396df13ab023bbcc872fb6b9d9d21ecca99c6e13022790a36d65:log:17', 'hash': '0xc40e83cec9cc396df13ab023bbcc872fb6b9d9d21ecca99c6e13022790a36d65', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x5cd4b8b25a52bc9e5df38afc14e23d3c14555910', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:18:45.000Z'}}, {'blockNum': '0x5206f6', 'uniqueId': '0x0aa327d70f1c9e3cb7e7d8212da71b8bec13d152e3f2b98fbb3d676706afa008:log:35', 'hash': '0x0aa327d70f1c9e3cb7e7d8212da71b8bec13d152e3f2b98fbb3d676706afa008', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x428602cc8fcc426879e6cc68c5027e11baeb8eb9', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:19:22.000Z'}}, {'blockNum': '0x5206ff', 'uniqueId': '0x27ad0267805121bfe92739d10c6479673d9351ae71276dcd62df805e8f757ee3:log:28', 'hash': '0x27ad0267805121bfe92739d10c6479673d9351ae71276dcd62df805e8f757ee3', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x414d8cf37a94ac02a79539e7ca3a2a066dd38a50', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:22:09.000Z'}}, {'blockNum': '0x520702', 'uniqueId': '0x0028fc49a3a62d00f997774fa475f61be19d8f31d4c8568ee9b7238951db534c:log:15', 'hash': '0x0028fc49a3a62d00f997774fa475f61be19d8f31d4c8568ee9b7238951db534c', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xde772aad3b5079d98e41dcd309ff1c1c3a992539', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:22:43.000Z'}}, {'blockNum': '0x520705', 'uniqueId': '0x5104ebb79e98627feadf37c4dc0cd956adb8a5a046acb379f42d88db6d83fcb1:log:17', 'hash': '0x5104ebb79e98627feadf37c4dc0cd956adb8a5a046acb379f42d88db6d83fcb1', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x81b915cdf8b27c8b63f5dd3a541f42f17e896915', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:23:23.000Z'}}, {'blockNum': '0x520706', 'uniqueId': '0xc61231c5de4d2feaeba1f0f2f61b545fff5ed1f1e7e77c445e005e9179b3f712:log:54', 'hash': '0xc61231c5de4d2feaeba1f0f2f61b545fff5ed1f1e7e77c445e005e9179b3f712', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x0ceb35f7cf6a0c939bac47fab2f2c311157f14b1', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:23:55.000Z'}}, {'blockNum': '0x520712', 'uniqueId': '0x48896256e7109531029d89b99328737356bae8aa1855c3f797a7b9b160a4409d:log:80', 'hash': '0x48896256e7109531029d89b99328737356bae8aa1855c3f797a7b9b160a4409d', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x0b2670fb6f30a9867fa1fea5c8cdd46131f0588c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:26:19.000Z'}}, {'blockNum': '0x520716', 'uniqueId': '0xb7f4702dbd54a54edbf05943d42153532cab6030d1cd6452c9bb44f64ac05036:log:43', 'hash': '0xb7f4702dbd54a54edbf05943d42153532cab6030d1cd6452c9bb44f64ac05036', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x9c5977a63afaec1b7b0d2578acca340421755923', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:27:27.000Z'}}, {'blockNum': '0x520733', 'uniqueId': '0x5737d7a147ef0e23c6f09a244ca8bb96d335f0170a082a0f7aa52aeb22e84291:log:37', 'hash': '0x5737d7a147ef0e23c6f09a244ca8bb96d335f0170a082a0f7aa52aeb22e84291', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x32834b25ffbbd8cadade041be310f549438a477a', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:34:14.000Z'}}, {'blockNum': '0x520736', 'uniqueId': '0x28c19419aa30da4d2dc401872fad0deae6ee970ef73b978a58452f43b77c3260:log:31', 'hash': '0x28c19419aa30da4d2dc401872fad0deae6ee970ef73b978a58452f43b77c3260', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xb66c67810d8b3bd07ef2f41b30e2463b3cc816af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:35:28.000Z'}}, {'blockNum': '0x520738', 'uniqueId': '0x5e85d0ab1bc4d4595c1eb4c3b9ab74a8877264a6a86453d21b26b5f770d04c6b:log:22', 'hash': '0x5e85d0ab1bc4d4595c1eb4c3b9ab74a8877264a6a86453d21b26b5f770d04c6b', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xa88521f04e4a11b73f9d3001b868b916bd7573a2', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:36:39.000Z'}}, {'blockNum': '0x52073c', 'uniqueId': '0x26600f1ab6dd58dcaab390ff4f424d8071405f24a0a018213aaa15029e899cb9:log:18', 'hash': '0x26600f1ab6dd58dcaab390ff4f424d8071405f24a0a018213aaa15029e899cb9', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x5c81fddeca05c488157d9a83b8227cb826b08bc5', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:37:27.000Z'}}, {'blockNum': '0x52073f', 'uniqueId': '0x72a9c27751f5b9b45494b0b9bdb09ffda26e3de8ec01ba2bf5e1d830394eaefb:log:7', 'hash': '0x72a9c27751f5b9b45494b0b9bdb09ffda26e3de8ec01ba2bf5e1d830394eaefb', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xc05632482805dc8ace8f6362729aae7d7a5711a9', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:38:13.000Z'}}, {'blockNum': '0x520742', 'uniqueId': '0x3dedb1ac7a55da654dde81fe1613b25270018b6c93e6347d648f6d8c4edb67f9:log:18', 'hash': '0x3dedb1ac7a55da654dde81fe1613b25270018b6c93e6347d648f6d8c4edb67f9', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x80e5cb64cfb086dbe710b48be122b79baa13c0e9', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:38:57.000Z'}}, {'blockNum': '0x520744', 'uniqueId': '0x4994527fa5ebf5b9353d4809ba022fc4df04b06727fefd6afef1416aedbecd83:log:28', 'hash': '0x4994527fa5ebf5b9353d4809ba022fc4df04b06727fefd6afef1416aedbecd83', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xc2ba7d26d85314fb2692120a6ffbf76469243074', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:39:41.000Z'}}, {'blockNum': '0x520746', 'uniqueId': '0x79d04fb9206346624cd07a052f384eff94ab05a3595ac04c98f02a10fa911e0e:log:100', 'hash': '0x79d04fb9206346624cd07a052f384eff94ab05a3595ac04c98f02a10fa911e0e', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x66c3f2f38d0daae37898d2ed3ba92f9980c42403', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:40:33.000Z'}}, {'blockNum': '0x52074a', 'uniqueId': '0xdb7edd6b54dca368015917765a6fc49448a65fac98603a2c7951a0adbf55b390:log:24', 'hash': '0xdb7edd6b54dca368015917765a6fc49448a65fac98603a2c7951a0adbf55b390', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xa8483d06444c57ed90a1b4f8215a426e7fe04b3c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:41:18.000Z'}}, {'blockNum': '0x52074d', 'uniqueId': '0x5d372a8a0bab64b377b895b77c17e85ecb70d47705a45110a1c1b7a6c01f1b87:log:12', 'hash': '0x5d372a8a0bab64b377b895b77c17e85ecb70d47705a45110a1c1b7a6c01f1b87', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x28dd7a594fe4ae1bffd5dc4e1c144a61bf938944', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:42:09.000Z'}}, {'blockNum': '0x52074f', 'uniqueId': '0xe8729be4660c03405534fda649c0296751ce630a3a42a5a8c16436c20c0fdc05:log:11', 'hash': '0xe8729be4660c03405534fda649c0296751ce630a3a42a5a8c16436c20c0fdc05', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xc85e47b55e94e0aaa6b7b560bf497d8caa9a17da', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:42:25.000Z'}}, {'blockNum': '0x520751', 'uniqueId': '0xe84ed906f8063691dc94a66e49c926074411c4b7571ee68770be5e19b19ee8be:log:85', 'hash': '0xe84ed906f8063691dc94a66e49c926074411c4b7571ee68770be5e19b19ee8be', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x05dac7bcb6245207ecaea89e9f89ee3300a06c40', 'value': 40, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x022b1c8c1227a00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:42:57.000Z'}}, {'blockNum': '0x520757', 'uniqueId': '0x830e4f89dc1f26f0be1f1e9cdef3d02f165ff811e15de4d4fa983af23c241f5c:log:7', 'hash': '0x830e4f89dc1f26f0be1f1e9cdef3d02f165ff811e15de4d4fa983af23c241f5c', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x0a2659eb6e07db4175ecebc26b6d5ad28100bcd1', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:43:36.000Z'}}, {'blockNum': '0x52075a', 'uniqueId': '0xb0fc88e8c8639312fbdae0646a943f3b74f9367650e0dbcdb636d61a5b702d7a:log:40', 'hash': '0xb0fc88e8c8639312fbdae0646a943f3b74f9367650e0dbcdb636d61a5b702d7a', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xcbfa8af7f71b15005137130ffdf6073a9a680c7d', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:44:14.000Z'}}, {'blockNum': '0x520761', 'uniqueId': '0x765cbd38acfc3bc0df95cc14709d527b4f96703bef0dbbf3d5856aa034b56b56:log:12', 'hash': '0x765cbd38acfc3bc0df95cc14709d527b4f96703bef0dbbf3d5856aa034b56b56', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xeb494f974a5b0ae22b5eb1691942d47b200ea805', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:45:52.000Z'}}, {'blockNum': '0x520764', 'uniqueId': '0x566c523985851820dc0a74961692af57d747f190e672ee93bf38eb0aa09b1fb7:log:18', 'hash': '0x566c523985851820dc0a74961692af57d747f190e672ee93bf38eb0aa09b1fb7', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x2894c0c7792646f948b56ed1208f2c0a2ef29552', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:46:15.000Z'}}, {'blockNum': '0x520766', 'uniqueId': '0x255a0f7008d314619b689e96daadfa8f4a4a35b586fcc813bdc73439b8659561:log:15', 'hash': '0x255a0f7008d314619b689e96daadfa8f4a4a35b586fcc813bdc73439b8659561', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x5999927be9b35f9723b13f04161776680d242e2d', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:46:43.000Z'}}, {'blockNum': '0x520769', 'uniqueId': '0x21629073a46a82de3d6623938a20226b866bf32b56c9daafbc70c98fa7954a43:log:19', 'hash': '0x21629073a46a82de3d6623938a20226b866bf32b56c9daafbc70c98fa7954a43', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x3052936eaab7c5587503a9ec56a694149115706a', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:47:17.000Z'}}, {'blockNum': '0x52076e', 'uniqueId': '0xd27a1290d5cb7f033be3aedb582cb8ded617b6c4d8f8f850328a5f79ae35109d:log:21', 'hash': '0xd27a1290d5cb7f033be3aedb582cb8ded617b6c4d8f8f850328a5f79ae35109d', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x085de2082a48adabd96ca9373dbc9aba1c1807ce', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:48:22.000Z'}}, {'blockNum': '0x520773', 'uniqueId': '0x529f720783ad48064e920f90511119260311d8f2b67387d226ac04d12e7917fc:log:22', 'hash': '0x529f720783ad48064e920f90511119260311d8f2b67387d226ac04d12e7917fc', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xa488e0b0724deb8a2422bafe43e3a62e1d02f6d5', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:49:25.000Z'}}, {'blockNum': '0x520776', 'uniqueId': '0x0ca948fdd2a7eff689cd8e8d98213925231b69232527899f73a8ef6461405ef5:log:15', 'hash': '0x0ca948fdd2a7eff689cd8e8d98213925231b69232527899f73a8ef6461405ef5', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xba9a4ad690f339680c3ea510d175e6088174500e', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:50:02.000Z'}}, {'blockNum': '0x52077b', 'uniqueId': '0xc870d0bbde2ebba313b9e8b052b9d51fc9a659de427451ea9d9c1678499ce41f:log:67', 'hash': '0xc870d0bbde2ebba313b9e8b052b9d51fc9a659de427451ea9d9c1678499ce41f', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xea398a14db6eb8a160b5b373e43aa29dd1d17796', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:50:38.000Z'}}, {'blockNum': '0x52077e', 'uniqueId': '0x5b0ef7f4fd30cb0de938f74acda7b474315db40d47543d7834e91dbbccfe69e1:log:12', 'hash': '0x5b0ef7f4fd30cb0de938f74acda7b474315db40d47543d7834e91dbbccfe69e1', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x460bf65eb2a6d5760f8062215297da4ab5000494', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:51:11.000Z'}}, {'blockNum': '0x520780', 'uniqueId': '0x771895ee0c4ad9e95f0eb5e3bd184ebe4000436d85f8c5262383c0634e603318:log:56', 'hash': '0x771895ee0c4ad9e95f0eb5e3bd184ebe4000436d85f8c5262383c0634e603318', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x0b9a2b9925b2a27968b80ec42bca9a86b89c09b7', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:52:04.000Z'}}, {'blockNum': '0x520782', 'uniqueId': '0x2a6084aee858737c7889b8bf2389e912ac9dbb9b5521984bc76084a817f86d59:log:41', 'hash': '0x2a6084aee858737c7889b8bf2389e912ac9dbb9b5521984bc76084a817f86d59', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x6ad50559b1b08f7a9af7e28924dd939396764cb7', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:53:10.000Z'}}, {'blockNum': '0x520785', 'uniqueId': '0x9080179c1f60b651c1e1e31159437f1eff2326fbd1ca8ce26f64eae71acd0575:log:62', 'hash': '0x9080179c1f60b651c1e1e31159437f1eff2326fbd1ca8ce26f64eae71acd0575', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x27504b14acfc15de75de0e078a22882212b87d3b', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:54:00.000Z'}}, {'blockNum': '0x520787', 'uniqueId': '0x31bb6ffd3f6276ba8f076434d47081eed67543e5efd82ea5737608f4741a2274:log:16', 'hash': '0x31bb6ffd3f6276ba8f076434d47081eed67543e5efd82ea5737608f4741a2274', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xba9a4ad690f339680c3ea510d175e6088174500e', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:54:20.000Z'}}, {'blockNum': '0x52078a', 'uniqueId': '0x73d50d8ba97aa24f88d547dc6cb8de44b5bff9088b78df9ff1f1bf3b45893e75:log:64', 'hash': '0x73d50d8ba97aa24f88d547dc6cb8de44b5bff9088b78df9ff1f1bf3b45893e75', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xbd1a4e78d036c276463696be378e009f6f1d2508', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:54:44.000Z'}}, {'blockNum': '0x5207a4', 'uniqueId': '0x7a261d4b0c7f74868bf23421a230a945cbe11b18ac9652cab03c4f6e18d5976f:log:14', 'hash': '0x7a261d4b0c7f74868bf23421a230a945cbe11b18ac9652cab03c4f6e18d5976f', 'from': '0xfe9e8709d3215310075d67e3ed32a380ccf451c8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0422faae83bfd0c7e00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:01:57.000Z'}}, {'blockNum': '0x5207ac', 'uniqueId': '0x223f438cef0e64dbf96a54abda3b124ab0bc90ee017804495e4596f07692b0ea:log:30', 'hash': '0x223f438cef0e64dbf96a54abda3b124ab0bc90ee017804495e4596f07692b0ea', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xb0dba3cc6c6a331621a812ca4c256e092693beaa', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:03:39.000Z'}}, {'blockNum': '0x5207b1', 'uniqueId': '0x196c5fcf6277f49b44dc60e46faa4706239022a748697e28ade7f7753d4428c8:log:27', 'hash': '0x196c5fcf6277f49b44dc60e46faa4706239022a748697e28ade7f7753d4428c8', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x27504b14acfc15de75de0e078a22882212b87d3b', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:04:32.000Z'}}, {'blockNum': '0x5207b4', 'uniqueId': '0x36cca608498186d6e950788d57317b2c064ab243036d2aa7a69fa5774e9865a2:log:52', 'hash': '0x36cca608498186d6e950788d57317b2c064ab243036d2aa7a69fa5774e9865a2', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xfc8a48a262beb3fd6eeaf9efba5cc39c89d49507', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:05:05.000Z'}}, {'blockNum': '0x5207b5', 'uniqueId': '0x5b23c5f31e293c7aaa9c6040a50e3627272f31cf5dd86c3ac4eccfd087d46662:log:30', 'hash': '0x5b23c5f31e293c7aaa9c6040a50e3627272f31cf5dd86c3ac4eccfd087d46662', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x295de491eab941cbda82b77ddd654a3ef7019a7c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:05:11.000Z'}}, {'blockNum': '0x5207ba', 'uniqueId': '0xe293698974f6bc53acee658e24e2f57ab0c19e3057833eb4cf29137973dd840d:log:52', 'hash': '0xe293698974f6bc53acee658e24e2f57ab0c19e3057833eb4cf29137973dd840d', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x01d9e8decd38b2d252333240b868752c72127700', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:06:12.000Z'}}, {'blockNum': '0x5207bf', 'uniqueId': '0x6b6869b313a4abc2a8736c95ccf9cb1b5955471266a8660aed0c404738230d40:log:70', 'hash': '0x6b6869b313a4abc2a8736c95ccf9cb1b5955471266a8660aed0c404738230d40', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x6ad50559b1b08f7a9af7e28924dd939396764cb7', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:06:57.000Z'}}, {'blockNum': '0x5207c2', 'uniqueId': '0xacc0c527491b267fd3adf7e1441172b42321df30ab28eb2a491b5391bb56ed79:log:28', 'hash': '0xacc0c527491b267fd3adf7e1441172b42321df30ab28eb2a491b5391bb56ed79', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x56f33c69182f85effa0b2a5cb5b584d04b5b716e', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:07:49.000Z'}}, {'blockNum': '0x5207ca', 'uniqueId': '0xa5a3e387af7181c407d72993125b2d5a1e43bac334f7d3ecba280a09818bfd6a:log:30', 'hash': '0xa5a3e387af7181c407d72993125b2d5a1e43bac334f7d3ecba280a09818bfd6a', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xcc6ad7496b569ef189758a25b986f3bc4d52ff5b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:09:40.000Z'}}, {'blockNum': '0x5207cd', 'uniqueId': '0x709e2085789409019dd8e202196aea1783d501718c1077d685ee31b7e6cf6a5d:log:15', 'hash': '0x709e2085789409019dd8e202196aea1783d501718c1077d685ee31b7e6cf6a5d', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x2d320c5a543ba0f0ad507121932e5e59fc4a1daa', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:10:07.000Z'}}, {'blockNum': '0x5207d1', 'uniqueId': '0x66000118634f260478f38c85a70ae91494e8e3e7fa4784827ab3f98c965cebd6:log:7', 'hash': '0x66000118634f260478f38c85a70ae91494e8e3e7fa4784827ab3f98c965cebd6', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xe2a222618f30f908f639a743b0033024ab0c90cf', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:10:43.000Z'}}, {'blockNum': '0x5207d2', 'uniqueId': '0x683b1ef33cd6275d4ce235ffa556784f3bed7a7cf8be8ddf7c0652cb742e0f5c:log:0', 'hash': '0x683b1ef33cd6275d4ce235ffa556784f3bed7a7cf8be8ddf7c0652cb742e0f5c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x25bafce12fe8e9cbafd42a5dbe1821285664e54f', 'value': 32758.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x06efd61fc68eec400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:11:12.000Z'}}, {'blockNum': '0x5207d7', 'uniqueId': '0xc41ce2516bf34cc0fd421709f9a4951cbf9f92e711697455ac5f3e418b271daf:log:12', 'hash': '0xc41ce2516bf34cc0fd421709f9a4951cbf9f92e711697455ac5f3e418b271daf', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x27504b14acfc15de75de0e078a22882212b87d3b', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:12:21.000Z'}}, {'blockNum': '0x5207d9', 'uniqueId': '0xf329c917f59f99472ab3a41071b591eabcf0d339767183cfef257bf06a1fcc2b:log:3', 'hash': '0xf329c917f59f99472ab3a41071b591eabcf0d339767183cfef257bf06a1fcc2b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x55df6e2378028cb6bb4984375ab21836f7774960', 'value': 69968.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ed0fe9bc38769680000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:13:01.000Z'}}, {'blockNum': '0x5207d9', 'uniqueId': '0x959357c25925b81d3423bbfa89938a5afd4cbfa0bce25973bd2370586e2cb19d:log:36', 'hash': '0x959357c25925b81d3423bbfa89938a5afd4cbfa0bce25973bd2370586e2cb19d', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x2d925173b9d18fa37e8a2410211433e29cf9964b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:13:01.000Z'}}, {'blockNum': '0x5207dd', 'uniqueId': '0xc5e69bae48ed8703e7b1da29075ada676a67639a87413bdab5e25d69d37cbaf8:log:28', 'hash': '0xc5e69bae48ed8703e7b1da29075ada676a67639a87413bdab5e25d69d37cbaf8', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xfbd8fc8a7ec232a5ddd5524d482f546ce4690f1b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:13:50.000Z'}}, {'blockNum': '0x5207e0', 'uniqueId': '0xd02f633890f234e1cd44a6414e6c83b25356d63e23858e7786a8114d976335fb:log:18', 'hash': '0xd02f633890f234e1cd44a6414e6c83b25356d63e23858e7786a8114d976335fb', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x68d149a8d96032f61e9f107f9e5267500d9a0422', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:14:31.000Z'}}, {'blockNum': '0x5207e3', 'uniqueId': '0xa2283e3d7d6673424e614a130c38b5aa1e78d715b706ca26c7da12075914236e:log:25', 'hash': '0xa2283e3d7d6673424e614a130c38b5aa1e78d715b706ca26c7da12075914236e', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xfbd8fc8a7ec232a5ddd5524d482f546ce4690f1b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:14:59.000Z'}}, {'blockNum': '0x5207e7', 'uniqueId': '0x04d27291d0c16b7a0c37cebc3a40e58f54f33ba648212e9975f99c845aa67339:log:0', 'hash': '0x04d27291d0c16b7a0c37cebc3a40e58f54f33ba648212e9975f99c845aa67339', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xd2bb5e929634e135ce8690308f3f17903c92c7ee', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:15:27.000Z'}}, {'blockNum': '0x5207eb', 'uniqueId': '0xff1964d9edb7805a755af132d5c4a7ce98e35c8dd53de4d00c0413e1fbead413:log:0', 'hash': '0xff1964d9edb7805a755af132d5c4a7ce98e35c8dd53de4d00c0413e1fbead413', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xc1e45262022d78e8fd16793b8ecdc64e9e0c6947', 'value': 2217.6033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x78376d93fbf2024000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:16:40.000Z'}}, {'blockNum': '0x52081d', 'uniqueId': '0x4498e7fabc44ab2b4f4b37c20182482f4a6527563c639c307e90755cbbd0ddb9:log:10', 'hash': '0x4498e7fabc44ab2b4f4b37c20182482f4a6527563c639c307e90755cbbd0ddb9', 'from': '0x25bafce12fe8e9cbafd42a5dbe1821285664e54f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32758.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x06efd61fc68eec400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:28:16.000Z'}}, {'blockNum': '0x52081d', 'uniqueId': '0xc92d8f6352e5c803a51b794ef59642fe4aea0b8baa23b6a892f45120e019074d:log:11', 'hash': '0xc92d8f6352e5c803a51b794ef59642fe4aea0b8baa23b6a892f45120e019074d', 'from': '0xc1e45262022d78e8fd16793b8ecdc64e9e0c6947', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2217.6033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x78376d93fbf2024000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:28:16.000Z'}}, {'blockNum': '0x5208c1', 'uniqueId': '0x106c38bc1a1b4919b9914ae2837471a2e57cd986e3a875578dccb1d4288e0cb2:log:6', 'hash': '0x106c38bc1a1b4919b9914ae2837471a2e57cd986e3a875578dccb1d4288e0cb2', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xd845a1ad59e8fd7bd358123ccd9eb4c464d0557d', 'value': 5850.53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x013d2869f590461d0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T01:06:23.000Z'}}, {'blockNum': '0x520943', 'uniqueId': '0xc3a0d7eff1988a09d3e4d29ba696ef56d886ddb65a02ea5954ffe21144c7f00e:log:6', 'hash': '0xc3a0d7eff1988a09d3e4d29ba696ef56d886ddb65a02ea5954ffe21144c7f00e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'value': 49968.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a94cada301204e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T01:39:49.000Z'}}, {'blockNum': '0x520995', 'uniqueId': '0xd90ed504ded631617bb60abaf7f6b5236aa9e03743a3f5aff0d394e3d2ff2a9f:log:31', 'hash': '0xd90ed504ded631617bb60abaf7f6b5236aa9e03743a3f5aff0d394e3d2ff2a9f', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xd2bb5e929634e135ce8690308f3f17903c92c7ee', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T01:58:25.000Z'}}, {'blockNum': '0x520998', 'uniqueId': '0x0bffb8f03d037811c4ea8159f170c1df9adf03ecd8c4da2dbf1bc5dfa4f19465:log:25', 'hash': '0x0bffb8f03d037811c4ea8159f170c1df9adf03ecd8c4da2dbf1bc5dfa4f19465', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x8cc7906c6a25f45a17c252e6f5b9c7e0a9495c4c', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T01:58:41.000Z'}}, {'blockNum': '0x52099a', 'uniqueId': '0xa4c1eff2a05574b793448eaa8464bc5af3f14db2939ad9fd6f7b17aa2a88d890:log:11', 'hash': '0xa4c1eff2a05574b793448eaa8464bc5af3f14db2939ad9fd6f7b17aa2a88d890', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x97bdd1b2d205d6a7a1ec916a1c61318a4c61a7fd', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T01:59:41.000Z'}}]}}
Number of returned transfers: 207
Answer is complete
symbol NAV
group FCS
date 2018-04-09
hour 17:00
exchange binance
Name: 452, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
Symbol: NAV, Contract:
Datetime timestamps: 2018-04-09 17:00:00 2018-04-09 05:00:00 2018-04-10 05:00:00
Unix timestamps: 1523242800.0 1523329200.0
Hex Block Numbers: 0x52806d 0x529803
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol RLC
group FCS
date 2018-04-09
hour 15:00
exchange binance
Name: 453, dtype: object
HERE
Symbol: RLC, Contract: 0x607f4c5bb672230e8672085532f7e901544a7375
Datetime timestamps: 2018-04-09 15:00:00 2018-04-09 03:00:00 2018-04-10 03:00:00
Unix timestamps: 1523235600.0 1523322000.0
Hex Block Numbers: 0x527e8e 0x529610
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x527ea7', 'uniqueId': '0xcd8c90aed1f7ed74d278e5e1548b0d500a2fbf1558c79a3e49fce1512242bafd:log:5', 'hash': '0xcd8c90aed1f7ed74d278e5e1548b0d500a2fbf1558c79a3e49fce1512242bafd', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x9cec5c02a0991c41bed035c0f43efbf767ddad5d', 'value': 74.77743375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1169151696', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:06:29.000Z'}}, {'blockNum': '0x527eb3', 'uniqueId': '0xef08306926e9f2382be90a1582cf94cedc234903189a1fe8d8c43131d7a3453c:log:2', 'hash': '0xef08306926e9f2382be90a1582cf94cedc234903189a1fe8d8c43131d7a3453c', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0xebe860f99bbaf5254f60c39077c543662ba4b779', 'value': 18.92269746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0467e172f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:08:25.000Z'}}, {'blockNum': '0x527f3e', 'uniqueId': '0x6ad02ca37567b7afe2766920f4364b32a3fa25ff279d985a5b4292c8ac0bbc21:log:43', 'hash': '0x6ad02ca37567b7afe2766920f4364b32a3fa25ff279d985a5b4292c8ac0bbc21', 'from': '0x78bdb3419fedee4378a0ed9dc9fa6cf4b79aae3e', 'to': '0x158f81ba7f9a4524f7f641fcc622000ade72c859', 'value': 210.58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x31078bcd00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:38:24.000Z'}}, {'blockNum': '0x527f3f', 'uniqueId': '0xa0c3b066c3c94161458c0809c8a28c572c7dbc98573bad3b09fbc19551317710:log:42', 'hash': '0xa0c3b066c3c94161458c0809c8a28c572c7dbc98573bad3b09fbc19551317710', 'from': '0x4da9b0345d3ce291b43733fca01ef5d4e14baede', 'to': '0x5089c0744987b6af803a7f9b24fed99f3b0f626e', 'value': 1005.923905492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xea35bcafd4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:39:02.000Z'}}, {'blockNum': '0x527f4d', 'uniqueId': '0xb9ca2ed0eb6623e032adfab6d646b64cccbe929f064818dd95b7ad284fa0e17f:log:6', 'hash': '0xb9ca2ed0eb6623e032adfab6d646b64cccbe929f064818dd95b7ad284fa0e17f', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0xd17f8fed964c95349ff05ee5f956c32b8b61e3c7', 'value': 582.18723789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x878d104202', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:43:51.000Z'}}, {'blockNum': '0x527f64', 'uniqueId': '0xb948f8a8728fcda881d53a1aa47e9a4831574355441f594123f575e6a612e608:log:52', 'hash': '0xb948f8a8728fcda881d53a1aa47e9a4831574355441f594123f575e6a612e608', 'from': '0x158f81ba7f9a4524f7f641fcc622000ade72c859', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 210.58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x31078bcd00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:49:24.000Z'}}, {'blockNum': '0x527fe8', 'uniqueId': '0x695699d0a62cfa2a9aed6a308a18d8c3b4413eeeebc91065b9946a8441d666eb:log:70', 'hash': '0x695699d0a62cfa2a9aed6a308a18d8c3b4413eeeebc91065b9946a8441d666eb', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.7063e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xb7d7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T02:25:10.000Z'}}, {'blockNum': '0x527fe8', 'uniqueId': '0x695699d0a62cfa2a9aed6a308a18d8c3b4413eeeebc91065b9946a8441d666eb:log:72', 'hash': '0x695699d0a62cfa2a9aed6a308a18d8c3b4413eeeebc91065b9946a8441d666eb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 4.7063e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xb7d7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T02:25:10.000Z'}}, {'blockNum': '0x528009', 'uniqueId': '0x6679ebf5b15315075bc74b42587d60fc1913d2ef405ecacff624cdf1b5ee2860:log:18', 'hash': '0x6679ebf5b15315075bc74b42587d60fc1913d2ef405ecacff624cdf1b5ee2860', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T02:33:15.000Z'}}, {'blockNum': '0x528009', 'uniqueId': '0x6679ebf5b15315075bc74b42587d60fc1913d2ef405ecacff624cdf1b5ee2860:log:20', 'hash': '0x6679ebf5b15315075bc74b42587d60fc1913d2ef405ecacff624cdf1b5ee2860', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 1e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T02:33:15.000Z'}}, {'blockNum': '0x528035', 'uniqueId': '0x4ccc0fbdd3ac2367c1fcf115188bc0d522e75430099957e44739d4ee1e0417ed:log:1', 'hash': '0x4ccc0fbdd3ac2367c1fcf115188bc0d522e75430099957e44739d4ee1e0417ed', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa63db76400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T02:44:22.000Z'}}, {'blockNum': '0x528082', 'uniqueId': '0xe9c692ecd3a5422739fd6ed0be1777d30dd6dcf9c80effe28902cc27f843008c:log:64', 'hash': '0xe9c692ecd3a5422739fd6ed0be1777d30dd6dcf9c80effe28902cc27f843008c', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 376.076589163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x578fe9586b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:05:54.000Z'}}, {'blockNum': '0x528082', 'uniqueId': '0xe9c692ecd3a5422739fd6ed0be1777d30dd6dcf9c80effe28902cc27f843008c:log:66', 'hash': '0xe9c692ecd3a5422739fd6ed0be1777d30dd6dcf9c80effe28902cc27f843008c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 376.076589163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x578fe9586b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:05:54.000Z'}}, {'blockNum': '0x528085', 'uniqueId': '0x210128e28d9538032c38fade2baa32119de1c43169361e0badcaf6d2e7a2885f:log:26', 'hash': '0x210128e28d9538032c38fade2baa32119de1c43169361e0badcaf6d2e7a2885f', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 372.238359927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x56ab229d77', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:07:16.000Z'}}, {'blockNum': '0x528085', 'uniqueId': '0x210128e28d9538032c38fade2baa32119de1c43169361e0badcaf6d2e7a2885f:log:28', 'hash': '0x210128e28d9538032c38fade2baa32119de1c43169361e0badcaf6d2e7a2885f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 372.238359927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x56ab229d77', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:07:16.000Z'}}, {'blockNum': '0x52808e', 'uniqueId': '0xab596f1fd41ecd02095f1429364187b238aa8d931c77eea2e388de91a381ff38:log:28', 'hash': '0xab596f1fd41ecd02095f1429364187b238aa8d931c77eea2e388de91a381ff38', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0x059a62926ab1df24a6ffff082ccef1d5c6a3bc7e', 'value': 745.913446459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xadabe7f03b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:08:19.000Z'}}, {'blockNum': '0x52808e', 'uniqueId': '0x49d226a403b390f43a3570a378d889e146efc20c2a6a82cf6b0752613eda91e3:log:47', 'hash': '0x49d226a403b390f43a3570a378d889e146efc20c2a6a82cf6b0752613eda91e3', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 695.66674086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa1f8f80e7c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:08:19.000Z'}}, {'blockNum': '0x52808e', 'uniqueId': '0x49d226a403b390f43a3570a378d889e146efc20c2a6a82cf6b0752613eda91e3:log:49', 'hash': '0x49d226a403b390f43a3570a378d889e146efc20c2a6a82cf6b0752613eda91e3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 695.66674086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa1f8f80e7c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:08:19.000Z'}}, {'blockNum': '0x528090', 'uniqueId': '0x35cc65f1d7870c3fe4082ede8007d48235657063cd1254ad75364fa832a757d2:log:6', 'hash': '0x35cc65f1d7870c3fe4082ede8007d48235657063cd1254ad75364fa832a757d2', 'from': '0x059a62926ab1df24a6ffff082ccef1d5c6a3bc7e', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 745.913446459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xadabe7f03b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:08:30.000Z'}}, {'blockNum': '0x528095', 'uniqueId': '0x5d17c4f80f47d36a2bdb3e0db59eea96b6f2e0d8eebfe4d10a6daaebd64317dc:log:69', 'hash': '0x5d17c4f80f47d36a2bdb3e0db59eea96b6f2e0d8eebfe4d10a6daaebd64317dc', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 678.982095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9e167c9098', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:09:41.000Z'}}, {'blockNum': '0x528099', 'uniqueId': '0xf12ba1bc2a47c0249e39ccfe35269e2aa521636e2847dde25ba93e4e627a4a14:log:2', 'hash': '0xf12ba1bc2a47c0249e39ccfe35269e2aa521636e2847dde25ba93e4e627a4a14', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'value': 19336.79816813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x119632fc6442', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:11:20.000Z'}}, {'blockNum': '0x52809a', 'uniqueId': '0xfec1ae0aed92c731f581011967ea709c0b3460e7abcaaeb8870ae955f405fc3c:log:8', 'hash': '0xfec1ae0aed92c731f581011967ea709c0b3460e7abcaaeb8870ae955f405fc3c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'value': 6497.96947226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05e8ed298304', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:11:23.000Z'}}, {'blockNum': '0x5280a1', 'uniqueId': '0x8abcd234a2bf857f814e8867c64cc53ff4aa9f10dcb14e4221addc9d86d99d70:log:121', 'hash': '0x8abcd234a2bf857f814e8867c64cc53ff4aa9f10dcb14e4221addc9d86d99d70', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'value': 17900.20191412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1047b72d2f08', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:12:26.000Z'}}, {'blockNum': '0x5280a3', 'uniqueId': '0xaad95295d07ea45085fd39cbe3d9a8cc7c927c2178c19f687527f94999af4a6c:log:36', 'hash': '0xaad95295d07ea45085fd39cbe3d9a8cc7c927c2178c19f687527f94999af4a6c', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 447.208042601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x681fad3069', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:13:17.000Z'}}, {'blockNum': '0x5280a3', 'uniqueId': '0xaad95295d07ea45085fd39cbe3d9a8cc7c927c2178c19f687527f94999af4a6c:log:38', 'hash': '0xaad95295d07ea45085fd39cbe3d9a8cc7c927c2178c19f687527f94999af4a6c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 447.208042601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x681fad3069', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:13:17.000Z'}}, {'blockNum': '0x5280a5', 'uniqueId': '0x1463ec32fca6c1235652df89b0dc106cdc6945c14478f26407e8066736b1c75d:log:8', 'hash': '0x1463ec32fca6c1235652df89b0dc106cdc6945c14478f26407e8066736b1c75d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0f155f84f44e5fd47b53f74f31256a2d8f955591', 'value': 28047.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x19823f649800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:13:32.000Z'}}, {'blockNum': '0x5280ae', 'uniqueId': '0xeffecae583941f7471cfa1bf11dc053f588ec98730d698123c999bb0d9733a92:log:6', 'hash': '0xeffecae583941f7471cfa1bf11dc053f588ec98730d698123c999bb0d9733a92', 'from': '0xf946001634c5a8f864812b1887a64566d79e1306', 'to': '0x237cd16ad77ed39e18dd2a958be24ef238750e6c', 'value': 1588.658466501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0171e36c6ec5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:14:41.000Z'}}, {'blockNum': '0x5280bf', 'uniqueId': '0x12d2641a26e8dcfc0eadc79ff37cbbb9c895db8c1fae01524b5b247e5378f587:log:14', 'hash': '0x12d2641a26e8dcfc0eadc79ff37cbbb9c895db8c1fae01524b5b247e5378f587', 'from': '0x237cd16ad77ed39e18dd2a958be24ef238750e6c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1588.658466501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0171e36c6ec5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:19:04.000Z'}}, {'blockNum': '0x5280c0', 'uniqueId': '0x30f6d7097f70c392e092f0fd439294af40ccecd0546485351e2e980ba8f8e8bf:log:20', 'hash': '0x30f6d7097f70c392e092f0fd439294af40ccecd0546485351e2e980ba8f8e8bf', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 678.982095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9e167c9098', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:19:19.000Z'}}, {'blockNum': '0x5280c1', 'uniqueId': '0xfd86b02d192a2e76fded7570b1970b3a202199af9b94879c4a3ba187420baa32:log:2', 'hash': '0xfd86b02d192a2e76fded7570b1970b3a202199af9b94879c4a3ba187420baa32', 'from': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 37237.00008225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x21ddea29934a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:19:35.000Z'}}, {'blockNum': '0x5280c1', 'uniqueId': '0x9c201ae23b18bfc07d6d636dcabacaff8c643fdd4da137641c380a4cf0673914:log:57', 'hash': '0x9c201ae23b18bfc07d6d636dcabacaff8c643fdd4da137641c380a4cf0673914', 'from': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 6497.96947226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05e8ed298304', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:19:35.000Z'}}, {'blockNum': '0x5280c6', 'uniqueId': '0x084f92094b90e783656b99677b39c4d10a558094773dce4c07220b5eaacecb00:log:2', 'hash': '0x084f92094b90e783656b99677b39c4d10a558094773dce4c07220b5eaacecb00', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 60617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37217ec09a00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:20:34.000Z'}}, {'blockNum': '0x5280ce', 'uniqueId': '0x06ad4220e6f362755b8946f7388e1bb1610c4da1880ad355cf536f1a97fbe8aa:log:42', 'hash': '0x06ad4220e6f362755b8946f7388e1bb1610c4da1880ad355cf536f1a97fbe8aa', 'from': '0x9cec5c02a0991c41bed035c0f43efbf767ddad5d', 'to': '0x69514f8df84c97fabff2d7807974341d4f41044d', 'value': 74.77743375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1169151696', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:22:39.000Z'}}, {'blockNum': '0x5280ce', 'uniqueId': '0xfcbca400e4e171d634a3c16627e0d10e41832c36c2aac392fd1b7fa683db3d9d:log:76', 'hash': '0xfcbca400e4e171d634a3c16627e0d10e41832c36c2aac392fd1b7fa683db3d9d', 'from': '0x0f155f84f44e5fd47b53f74f31256a2d8f955591', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 28047.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x19823f649800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:22:39.000Z'}}, {'blockNum': '0x5280de', 'uniqueId': '0xefabfaa15756dff404a2d3432ce07043e89dc3ee8d710ed37f04a68b0a2d1013:log:6', 'hash': '0xefabfaa15756dff404a2d3432ce07043e89dc3ee8d710ed37f04a68b0a2d1013', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 559.2070341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8233562cf4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:25:49.000Z'}}, {'blockNum': '0x5280de', 'uniqueId': '0xefabfaa15756dff404a2d3432ce07043e89dc3ee8d710ed37f04a68b0a2d1013:log:8', 'hash': '0xefabfaa15756dff404a2d3432ce07043e89dc3ee8d710ed37f04a68b0a2d1013', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 559.2070341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8233562cf4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:25:49.000Z'}}, {'blockNum': '0x5280ec', 'uniqueId': '0x63c50a704f9f427247d7d6f9f6ad5425b455d4042361a71ea917032980ecc2f8:log:4', 'hash': '0x63c50a704f9f427247d7d6f9f6ad5425b455d4042361a71ea917032980ecc2f8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 542.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7e4f851100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:28:48.000Z'}}, {'blockNum': '0x5280ec', 'uniqueId': '0xd9768d037d5c1b3c50cb81527daf0796105aa4c38ca039a45b2d09edf078d4d2:log:5', 'hash': '0xd9768d037d5c1b3c50cb81527daf0796105aa4c38ca039a45b2d09edf078d4d2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x02f2753aa71db52d79f37229fcbad241c5aec57e', 'value': 848.0482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc5739c9940', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:28:48.000Z'}}, {'blockNum': '0x5280ee', 'uniqueId': '0xe55f4e410017aab5e8ea9341238b078aace94fbc0bc4b8777b17f5a86fa8921b:log:24', 'hash': '0xe55f4e410017aab5e8ea9341238b078aace94fbc0bc4b8777b17f5a86fa8921b', 'from': '0x02f2753aa71db52d79f37229fcbad241c5aec57e', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 848.0482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc5739c9940', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:28:58.000Z'}}, {'blockNum': '0x5280ee', 'uniqueId': '0xe55f4e410017aab5e8ea9341238b078aace94fbc0bc4b8777b17f5a86fa8921b:log:26', 'hash': '0xe55f4e410017aab5e8ea9341238b078aace94fbc0bc4b8777b17f5a86fa8921b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 848.0482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc5739c9940', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:28:58.000Z'}}, {'blockNum': '0x52810d', 'uniqueId': '0x7afcd44f10f877b9a122836c0162af04bc5efa1e262c5ca757034781169e4780:log:53', 'hash': '0x7afcd44f10f877b9a122836c0162af04bc5efa1e262c5ca757034781169e4780', 'from': '0x69514f8df84c97fabff2d7807974341d4f41044d', 'to': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'value': 74.77743375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1169151696', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:35:54.000Z'}}, {'blockNum': '0x52816b', 'uniqueId': '0x4ab401d9d2348940bb51e3b77299664665a8cb8dd200641ed1dad62a3b53db74:log:19', 'hash': '0x4ab401d9d2348940bb51e3b77299664665a8cb8dd200641ed1dad62a3b53db74', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5869f882338ece01929e4b9581e01447a5bed343', 'value': 46.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0ad39db100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T04:01:52.000Z'}}, {'blockNum': '0x528185', 'uniqueId': '0xf09dc3c3f21be63e167d2e77331ae35262c40e04f183715f144713bb964ef2d8:log:1', 'hash': '0xf09dc3c3f21be63e167d2e77331ae35262c40e04f183715f144713bb964ef2d8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'value': 4804.7169356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x045eaf7239b0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T04:10:00.000Z'}}, {'blockNum': '0x5281b7', 'uniqueId': '0x45368e0904dbb152ada961a59c7601b32b0788bc41201f15a900fb8f4d240454:log:132', 'hash': '0x45368e0904dbb152ada961a59c7601b32b0788bc41201f15a900fb8f4d240454', 'from': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4804.7169356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x045eaf7239b0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T04:18:59.000Z'}}, {'blockNum': '0x5282f9', 'uniqueId': '0x48c4adb63b309046e1143d86f7b5aa7dd290b6e5afe146928a84b42dcd18b931:log:4', 'hash': '0x48c4adb63b309046e1143d86f7b5aa7dd290b6e5afe146928a84b42dcd18b931', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 1740.4276165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01953991e0f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T05:30:54.000Z'}}, {'blockNum': '0x5282fe', 'uniqueId': '0xb7a36109696c11cb5ddb7bb54dd67f40719ed2bdd4c22d4b9e80423d01971fbe:log:105', 'hash': '0xb7a36109696c11cb5ddb7bb54dd67f40719ed2bdd4c22d4b9e80423d01971fbe', 'from': '0xf946001634c5a8f864812b1887a64566d79e1306', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 374.124401098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x571b8d51ca', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T05:32:55.000Z'}}, {'blockNum': '0x5282fe', 'uniqueId': '0xb7a36109696c11cb5ddb7bb54dd67f40719ed2bdd4c22d4b9e80423d01971fbe:log:107', 'hash': '0xb7a36109696c11cb5ddb7bb54dd67f40719ed2bdd4c22d4b9e80423d01971fbe', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 374.124401098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x571b8d51ca', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T05:32:55.000Z'}}, {'blockNum': '0x52840e', 'uniqueId': '0xd05fe83dfc19e8bfbf5cd4379c4b3e59e71c2162888db9245dee10aec94c53f4:log:55', 'hash': '0xd05fe83dfc19e8bfbf5cd4379c4b3e59e71c2162888db9245dee10aec94c53f4', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0xa06f8516027b85e62d7720606f939b9a36b994d2', 'value': 21.19027454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04ef09edec', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T06:35:01.000Z'}}, {'blockNum': '0x5284c2', 'uniqueId': '0x96d60f043956d33635cdaa1f5779a664e32c51c4d9e7a4f046b4b5a3d4e6a5ce:log:7', 'hash': '0x96d60f043956d33635cdaa1f5779a664e32c51c4d9e7a4f046b4b5a3d4e6a5ce', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0xec81aa3dc98acaf4e246bbe29e2ac4e6a07de799', 'value': 170, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2794ca2400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T07:21:17.000Z'}}, {'blockNum': '0x5285b6', 'uniqueId': '0x0607411bb624cacd10414f9ad5d03a32fc272c3026bd79048d0d27353ba34fb8:log:51', 'hash': '0x0607411bb624cacd10414f9ad5d03a32fc272c3026bd79048d0d27353ba34fb8', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x03a7d1cb0db35e65ce4d5449cac2b3aa3ea18913', 'value': 119.15860008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1bbe67f190', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:18:23.000Z'}}, {'blockNum': '0x5285d5', 'uniqueId': '0xc7ff91d4d28d4b7cf3a0326063df84bfa7e0083d10ff8fdb8a1f842d90a4c7d7:log:60', 'hash': '0xc7ff91d4d28d4b7cf3a0326063df84bfa7e0083d10ff8fdb8a1f842d90a4c7d7', 'from': '0x78a933f3cba15914beb4d5f902a7a6e2fd93879d', 'to': '0x877ae32b0ff7afa778adadabe441f3fe05fabbdf', 'value': 2563.89857368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0254f4438370', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:24:44.000Z'}}, {'blockNum': '0x528600', 'uniqueId': '0xc1827bfffdc2156c72ee45593e69b412bea730df045dc4e8badf1f301b6cf2e3:log:26', 'hash': '0xc1827bfffdc2156c72ee45593e69b412bea730df045dc4e8badf1f301b6cf2e3', 'from': '0xf946001634c5a8f864812b1887a64566d79e1306', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 480.76923076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6ff01447a8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:39:32.000Z'}}, {'blockNum': '0x528600', 'uniqueId': '0xc1827bfffdc2156c72ee45593e69b412bea730df045dc4e8badf1f301b6cf2e3:log:28', 'hash': '0xc1827bfffdc2156c72ee45593e69b412bea730df045dc4e8badf1f301b6cf2e3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 480.76923076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6ff01447a8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:39:32.000Z'}}, {'blockNum': '0x528602', 'uniqueId': '0xb675d605d7faebd1db494e9559f50cc615455eb0514a03809e8565bba555dd74:log:0', 'hash': '0xb675d605d7faebd1db494e9559f50cc615455eb0514a03809e8565bba555dd74', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9a78ecd77595ea305c6e5a0daed3669b17801d09', 'value': 48000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2ba7def30000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:40:01.000Z'}}, {'blockNum': '0x528613', 'uniqueId': '0xe0a2adac4113963478d05eb0e0dbd8589abef30dbe2f0e7e130b4cad164ce801:log:28', 'hash': '0xe0a2adac4113963478d05eb0e0dbd8589abef30dbe2f0e7e130b4cad164ce801', 'from': '0x877ae32b0ff7afa778adadabe441f3fe05fabbdf', 'to': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'value': 2563.89857368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0254f4438370', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:45:05.000Z'}}, {'blockNum': '0x528695', 'uniqueId': '0x924a61d82e412728d3919103aa771eeda43d4ffe0b078582f1c0fdc02892c0a7:log:84', 'hash': '0x924a61d82e412728d3919103aa771eeda43d4ffe0b078582f1c0fdc02892c0a7', 'from': '0x9a78ecd77595ea305c6e5a0daed3669b17801d09', 'to': '0x1828559f010b86640cf3cdd7003e982cbeffa9d6', 'value': 30215.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1b7b2a068e00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T09:17:50.000Z'}}, {'blockNum': '0x528730', 'uniqueId': '0xc7b0fc915c96f3a0f4decf2cfda6d4e38b3040baa0f36e894965c18b9aea5214:log:6', 'hash': '0xc7b0fc915c96f3a0f4decf2cfda6d4e38b3040baa0f36e894965c18b9aea5214', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7e53be9f58d575d3dd00d2bf6638f0373d27904c', 'value': 532.69387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7c070765b0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T09:55:46.000Z'}}, {'blockNum': '0x5287a1', 'uniqueId': '0xe950e2f397042cc82042e50db5ced6470df8a9b454e3e720d9e7defb8153ffda:log:21', 'hash': '0xe950e2f397042cc82042e50db5ced6470df8a9b454e3e720d9e7defb8153ffda', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 699.698095847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e941a6e7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:21:30.000Z'}}, {'blockNum': '0x5287a1', 'uniqueId': '0xe950e2f397042cc82042e50db5ced6470df8a9b454e3e720d9e7defb8153ffda:log:23', 'hash': '0xe950e2f397042cc82042e50db5ced6470df8a9b454e3e720d9e7defb8153ffda', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 699.698095847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e941a6e7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:21:30.000Z'}}, {'blockNum': '0x5287af', 'uniqueId': '0x2a0a55f85ee3cc3abd54476ca2313d771a5b546c2b82c46ae6f808e972fce0e1:log:85', 'hash': '0x2a0a55f85ee3cc3abd54476ca2313d771a5b546c2b82c46ae6f808e972fce0e1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 699.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e95eb500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:25:08.000Z'}}, {'blockNum': '0x5287c3', 'uniqueId': '0x284d53a1c39d0c4df8434babc1d5643f53902b894ad9833b02a313fa7738f644:log:26', 'hash': '0x284d53a1c39d0c4df8434babc1d5643f53902b894ad9833b02a313fa7738f644', 'from': '0xbd7041d30ca198e9ccf96646e2d78d835803af94', 'to': '0xaa46d43a2119b1dbf5b97f82a06092947bbef9fe', 'value': 296.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4508c6f500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:30:06.000Z'}}, {'blockNum': '0x5287e0', 'uniqueId': '0x181fac8515a92b19192ac859abe7db60027a12309b7066e5bdf47e2e87042b3d:log:52', 'hash': '0x181fac8515a92b19192ac859abe7db60027a12309b7066e5bdf47e2e87042b3d', 'from': '0xaa46d43a2119b1dbf5b97f82a06092947bbef9fe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 296.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4508c6f500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:39:04.000Z'}}, {'blockNum': '0x528833', 'uniqueId': '0x31e9500b8ff99e1277842111c939dd3b16ef4d63dba753a3480967531bcf89b8:log:0', 'hash': '0x31e9500b8ff99e1277842111c939dd3b16ef4d63dba753a3480967531bcf89b8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9effe2d8016600c8e70d8d5abbb88ffa72dbe981', 'value': 4100.42352629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03bab449a792', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:57:10.000Z'}}, {'blockNum': '0x528850', 'uniqueId': '0xbb821ba3341e5928857be8a0ac0fbef69683cf63889ac04f1aa347869d2d8f11:log:13', 'hash': '0xbb821ba3341e5928857be8a0ac0fbef69683cf63889ac04f1aa347869d2d8f11', 'from': '0x9effe2d8016600c8e70d8d5abbb88ffa72dbe981', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 4100.42352629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03bab449a792', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T11:03:44.000Z'}}, {'blockNum': '0x52887d', 'uniqueId': '0x4918eed66244adc3d7e4a0cb2dc52b934e3525241c37f23fe6ae2f3918fcbbc3:log:8', 'hash': '0x4918eed66244adc3d7e4a0cb2dc52b934e3525241c37f23fe6ae2f3918fcbbc3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'value': 3904.71826095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x038d23584ad6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T11:13:31.000Z'}}, {'blockNum': '0x52889a', 'uniqueId': '0x5dd22ea15bf5710c5a4d395577b2e9aee297549fdf174430275812e04d97eb35:log:32', 'hash': '0x5dd22ea15bf5710c5a4d395577b2e9aee297549fdf174430275812e04d97eb35', 'from': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3904.71826095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x038d23584ad6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T11:19:13.000Z'}}, {'blockNum': '0x528973', 'uniqueId': '0xb4a984f8531876c11f4d5c3ca851f36394f21e530f0724860ce26cb9d11cdc3f:log:14', 'hash': '0xb4a984f8531876c11f4d5c3ca851f36394f21e530f0724860ce26cb9d11cdc3f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6b09ce711aa0031a11186ee72b0c33ef605dbbd3', 'value': 30.119818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x070347f310', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T12:09:12.000Z'}}, {'blockNum': '0x5289dc', 'uniqueId': '0x5085667d54993d39c5d480e43b97370cda9ea8583675da519a2240871d582aa1:log:126', 'hash': '0x5085667d54993d39c5d480e43b97370cda9ea8583675da519a2240871d582aa1', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 390.220050648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5adaed70d8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T12:33:11.000Z'}}, {'blockNum': '0x5289dc', 'uniqueId': '0x5085667d54993d39c5d480e43b97370cda9ea8583675da519a2240871d582aa1:log:128', 'hash': '0x5085667d54993d39c5d480e43b97370cda9ea8583675da519a2240871d582aa1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 390.220050648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5adaed70d8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T12:33:11.000Z'}}, {'blockNum': '0x5289f7', 'uniqueId': '0x2f89bfbe89b5a59da4fa678a23a1f86dcab08aeb851b0549b8902537bb53bc17:log:3', 'hash': '0x2f89bfbe89b5a59da4fa678a23a1f86dcab08aeb851b0549b8902537bb53bc17', 'from': '0x1828559f010b86640cf3cdd7003e982cbeffa9d6', 'to': '0x409fe261895aa4ba51bb9a6c6eb85882395df91b', 'value': 30215.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1b7b2a068e00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T12:40:34.000Z'}}, {'blockNum': '0x528a3b', 'uniqueId': '0x77b85c000811755f7666628d94987c09751c78a8a25d98bb8fc5cacbd0d3e32a:log:17', 'hash': '0x77b85c000811755f7666628d94987c09751c78a8a25d98bb8fc5cacbd0d3e32a', 'from': '0x409fe261895aa4ba51bb9a6c6eb85882395df91b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30215.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1b7b2a068e00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T12:59:07.000Z'}}, {'blockNum': '0x528a59', 'uniqueId': '0x414f4e46f3fc152c7a49e9242b1dfff3702c1561b6e3cf56ff6ad5717fc239ec:log:101', 'hash': '0x414f4e46f3fc152c7a49e9242b1dfff3702c1561b6e3cf56ff6ad5717fc239ec', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 12365.18856995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0b3efeac1b5e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:07:26.000Z'}}, {'blockNum': '0x528a62', 'uniqueId': '0x2bded4f5c7be99646482ac3c6ff93788fd67c25f6ff384b1b09f51f89eae8c93:log:30', 'hash': '0x2bded4f5c7be99646482ac3c6ff93788fd67c25f6ff384b1b09f51f89eae8c93', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12365.18856995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0b3efeac1b5e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:09:12.000Z'}}, {'blockNum': '0x528a72', 'uniqueId': '0x2349322da7859f9556787b9e6f8917bc149c4363c8ebbafe62b9bc109b26614a:log:65', 'hash': '0x2349322da7859f9556787b9e6f8917bc149c4363c8ebbafe62b9bc109b26614a', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 479.515825908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6fa55ed6f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:15:13.000Z'}}, {'blockNum': '0x528a72', 'uniqueId': '0x2349322da7859f9556787b9e6f8917bc149c4363c8ebbafe62b9bc109b26614a:log:67', 'hash': '0x2349322da7859f9556787b9e6f8917bc149c4363c8ebbafe62b9bc109b26614a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 479.515825908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6fa55ed6f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:15:13.000Z'}}, {'blockNum': '0x528a98', 'uniqueId': '0x08a9266a803b3c4c426581e3f90215d141deb8fc5be75e4245e7d60181d83010:log:10', 'hash': '0x08a9266a803b3c4c426581e3f90215d141deb8fc5be75e4245e7d60181d83010', 'from': '0xf946001634c5a8f864812b1887a64566d79e1306', 'to': '0x237cd16ad77ed39e18dd2a958be24ef238750e6c', 'value': 1755.269861198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0198ae3c8f4e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:23:03.000Z'}}, {'blockNum': '0x528a9e', 'uniqueId': '0xa6a0a8e7890a58dae422064739c0d56164968102fdfb8864d1f14bc1ad5d7ed8:log:92', 'hash': '0xa6a0a8e7890a58dae422064739c0d56164968102fdfb8864d1f14bc1ad5d7ed8', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 495.750096277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x736d022595', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:25:01.000Z'}}, {'blockNum': '0x528a9e', 'uniqueId': '0xa6a0a8e7890a58dae422064739c0d56164968102fdfb8864d1f14bc1ad5d7ed8:log:94', 'hash': '0xa6a0a8e7890a58dae422064739c0d56164968102fdfb8864d1f14bc1ad5d7ed8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 495.750096277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x736d022595', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:25:01.000Z'}}, {'blockNum': '0x528aa9', 'uniqueId': '0x9e79608bd24dbb6453bf80c8290926f199f7b41a23da904e985fc5f1a95b7d28:log:48', 'hash': '0x9e79608bd24dbb6453bf80c8290926f199f7b41a23da904e985fc5f1a95b7d28', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 480.019898209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6fc36a5f61', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:27:14.000Z'}}, {'blockNum': '0x528ab0', 'uniqueId': '0x68959d5985fb5a373a96b0e752cc3dfc97ba48ae27e19a1a6e49fa611c7f40c1:log:57', 'hash': '0x68959d5985fb5a373a96b0e752cc3dfc97ba48ae27e19a1a6e49fa611c7f40c1', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 480.019898209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6fc36a5f61', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:29:06.000Z'}}, {'blockNum': '0x528ab0', 'uniqueId': '0xc275d90f45275f7f1536309d2674714ddc6fe3c45f9503f77825dddfc513628f:log:63', 'hash': '0xc275d90f45275f7f1536309d2674714ddc6fe3c45f9503f77825dddfc513628f', 'from': '0x237cd16ad77ed39e18dd2a958be24ef238750e6c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1755.269861198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0198ae3c8f4e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:29:06.000Z'}}, {'blockNum': '0x528ac0', 'uniqueId': '0x9080094101032beee99fcce8003f8c98514000282c104542c0cb5bc756ffbd9c:log:41', 'hash': '0x9080094101032beee99fcce8003f8c98514000282c104542c0cb5bc756ffbd9c', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 465.745723305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6c709bbfa9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:33:59.000Z'}}, {'blockNum': '0x528ac0', 'uniqueId': '0x9080094101032beee99fcce8003f8c98514000282c104542c0cb5bc756ffbd9c:log:43', 'hash': '0x9080094101032beee99fcce8003f8c98514000282c104542c0cb5bc756ffbd9c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 465.745723305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6c709bbfa9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:33:59.000Z'}}, {'blockNum': '0x528adb', 'uniqueId': '0x204986360a07a0d59c37b7586c6a33ceb25b043c72b066a823524c5b6433d2d6:log:37', 'hash': '0x204986360a07a0d59c37b7586c6a33ceb25b043c72b066a823524c5b6433d2d6', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 367.822877341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x55a3f3b29d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:40:58.000Z'}}, {'blockNum': '0x528adb', 'uniqueId': '0x204986360a07a0d59c37b7586c6a33ceb25b043c72b066a823524c5b6433d2d6:log:39', 'hash': '0x204986360a07a0d59c37b7586c6a33ceb25b043c72b066a823524c5b6433d2d6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 367.822877341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x55a3f3b29d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:40:58.000Z'}}, {'blockNum': '0x528b00', 'uniqueId': '0x6de1f93a8d1e82c2d276e5fffa078b6fc9e1d05c82e485051ec9c11b6532620a:log:0', 'hash': '0x6de1f93a8d1e82c2d276e5fffa078b6fc9e1d05c82e485051ec9c11b6532620a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 1496.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015c6dc13e80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:49:08.000Z'}}, {'blockNum': '0x528b1e', 'uniqueId': '0x25f0b473bb9be1e76e0201b367249395bac5b17ea1e35f78012c1d1e9a1f77b2:log:2', 'hash': '0x25f0b473bb9be1e76e0201b367249395bac5b17ea1e35f78012c1d1e9a1f77b2', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1496.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015c6dc13e80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:59:02.000Z'}}, {'blockNum': '0x528b29', 'uniqueId': '0x62b50999f1c948f27b116e2a1b14a60ab8d0ae2dc1a654827bfcbcff951a756f:log:74', 'hash': '0x62b50999f1c948f27b116e2a1b14a60ab8d0ae2dc1a654827bfcbcff951a756f', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 363.695653567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x54adf342bf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:02:38.000Z'}}, {'blockNum': '0x528b29', 'uniqueId': '0x62b50999f1c948f27b116e2a1b14a60ab8d0ae2dc1a654827bfcbcff951a756f:log:76', 'hash': '0x62b50999f1c948f27b116e2a1b14a60ab8d0ae2dc1a654827bfcbcff951a756f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 363.695653567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x54adf342bf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:02:38.000Z'}}, {'blockNum': '0x528b3d', 'uniqueId': '0xcc065ad597f97ca3e369c1bfbf78a8e714991de6d6fda56bca7ba03fa0e8c9aa:log:1', 'hash': '0xcc065ad597f97ca3e369c1bfbf78a8e714991de6d6fda56bca7ba03fa0e8c9aa', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 16051.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0e993c08e100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:07:23.000Z'}}, {'blockNum': '0x528b45', 'uniqueId': '0x57016ba558bc3908165bcff95077301aecf1e7607ae210e6725d1246c20a78b5:log:5', 'hash': '0x57016ba558bc3908165bcff95077301aecf1e7607ae210e6725d1246c20a78b5', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16051.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0e993c08e100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:09:06.000Z'}}, {'blockNum': '0x528b6f', 'uniqueId': '0xdc47c490ff46d0e5b0b6ace0ec9742cb89778f5e5fef3c4b864bcf015a7b9d93:log:28', 'hash': '0xdc47c490ff46d0e5b0b6ace0ec9742cb89778f5e5fef3c4b864bcf015a7b9d93', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 15074.4325038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0db5ca31cff8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:21:10.000Z'}}, {'blockNum': '0x528b7d', 'uniqueId': '0x3e91229555b63750959d2688a766846c804e189693519c4af5377457191693b1:log:13', 'hash': '0x3e91229555b63750959d2688a766846c804e189693519c4af5377457191693b1', 'from': '0xfcc69c067347d980282ce56696bf2f055babb8bd', 'to': '0x7a66a95994c988c3daaceb6d52fbe3e0924c71c0', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:24:41.000Z'}}, {'blockNum': '0x528b88', 'uniqueId': '0x4dd1d770a249adf66872100bc1fb9ac7daaf9408a6311bf50b9efaa40b37cbd8:log:22', 'hash': '0x4dd1d770a249adf66872100bc1fb9ac7daaf9408a6311bf50b9efaa40b37cbd8', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 700.674479468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa32374156c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:27:10.000Z'}}, {'blockNum': '0x528b88', 'uniqueId': '0x4dd1d770a249adf66872100bc1fb9ac7daaf9408a6311bf50b9efaa40b37cbd8:log:24', 'hash': '0x4dd1d770a249adf66872100bc1fb9ac7daaf9408a6311bf50b9efaa40b37cbd8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 700.674479468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa32374156c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:27:10.000Z'}}, {'blockNum': '0x528b8d', 'uniqueId': '0x909e4f4f9a399f006e52781ef1da311f358b6c39be858521e7ff83ebae35be9f:log:40', 'hash': '0x909e4f4f9a399f006e52781ef1da311f358b6c39be858521e7ff83ebae35be9f', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 697.978201999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa282be278f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:28:29.000Z'}}, {'blockNum': '0x528b90', 'uniqueId': '0x64bfc943bae68623ddcd00f1d9477b0a5ebcff6afdb620c97bb75485372644e8:log:54', 'hash': '0x64bfc943bae68623ddcd00f1d9477b0a5ebcff6afdb620c97bb75485372644e8', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15074.4325038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0db5ca31cff8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:29:05.000Z'}}, {'blockNum': '0x528b90', 'uniqueId': '0xdb94d2ba07a5a8b508e44899f7802dcc3d993fd9c6bc11e21ad9a6d84ec5812b:log:55', 'hash': '0xdb94d2ba07a5a8b508e44899f7802dcc3d993fd9c6bc11e21ad9a6d84ec5812b', 'from': '0x7a66a95994c988c3daaceb6d52fbe3e0924c71c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:29:05.000Z'}}, {'blockNum': '0x528bb2', 'uniqueId': '0x040c013a9cc685d00a780aa3b998042eb1a4516aa3bcae52550291c464094b1e:log:104', 'hash': '0x040c013a9cc685d00a780aa3b998042eb1a4516aa3bcae52550291c464094b1e', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x66ec6342f9d91676fcfc189fd769ae05fc6c579d', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:37:58.000Z'}}, {'blockNum': '0x528bb9', 'uniqueId': '0x2adb7c7675a5cbb4a499b188f16c35267e35311afb080023eec03568246770c5:log:19', 'hash': '0x2adb7c7675a5cbb4a499b188f16c35267e35311afb080023eec03568246770c5', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 697.978201999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa282be278f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:39:35.000Z'}}, {'blockNum': '0x528bd7', 'uniqueId': '0x0b0515a9580ad0bcff8436237a27ab4b2879379e4d8ff87a93e21dfb3edf6d70:log:59', 'hash': '0x0b0515a9580ad0bcff8436237a27ab4b2879379e4d8ff87a93e21dfb3edf6d70', 'from': '0x003c6df13f3c95f12e0f3e2c82e3980d9732558b', 'to': '0x53076af5ed9bd6a622f56d644fdfb4d619ac8148', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:45:54.000Z'}}, {'blockNum': '0x528bfe', 'uniqueId': '0x3264af94629855eadc7ba28217889f956a03dfeaee2482a53f2d04f8c43582d2:log:2', 'hash': '0x3264af94629855eadc7ba28217889f956a03dfeaee2482a53f2d04f8c43582d2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'value': 3904.09897038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x038cfe6eab0c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:57:22.000Z'}}, {'blockNum': '0x528c0a', 'uniqueId': '0xd3d642a7a429c15651e18fad17da8a0a29294e8052cec8d5c1984f4b95b7e3e3:log:16', 'hash': '0xd3d642a7a429c15651e18fad17da8a0a29294e8052cec8d5c1984f4b95b7e3e3', 'from': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3904.09897038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x038cfe6eab0c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:59:11.000Z'}}, {'blockNum': '0x528c14', 'uniqueId': '0x7a640a84575bec4b54ad63cfaebddc8aab4f273c090118c419a53680a3832340:log:74', 'hash': '0x7a640a84575bec4b54ad63cfaebddc8aab4f273c090118c419a53680a3832340', 'from': '0xe9a8f8d1609fbb852c057523c66ff58a50e0d2a8', 'to': '0x2cd48733cc05c9cb029ceaf4b11d62a93f881b59', 'value': 52.72022865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0c465ed92a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:00:55.000Z'}}, {'blockNum': '0x528c18', 'uniqueId': '0xfa3aed186add900333328aef089e8d221aeca016ae37f5cf8160aa4cb2c15f09:log:23', 'hash': '0xfa3aed186add900333328aef089e8d221aeca016ae37f5cf8160aa4cb2c15f09', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 702.591591286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa395b8e376', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:02:01.000Z'}}, {'blockNum': '0x528c18', 'uniqueId': '0xfa3aed186add900333328aef089e8d221aeca016ae37f5cf8160aa4cb2c15f09:log:25', 'hash': '0xfa3aed186add900333328aef089e8d221aeca016ae37f5cf8160aa4cb2c15f09', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 702.591591286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa395b8e376', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:02:01.000Z'}}, {'blockNum': '0x528c18', 'uniqueId': '0xbd124ec01587afd4f047c801a300231dc666fb57b6d027c48512993d3f70a314:log:89', 'hash': '0xbd124ec01587afd4f047c801a300231dc666fb57b6d027c48512993d3f70a314', 'from': '0x48f9ab8906bf0fb691033ce315c1da800044237c', 'to': '0x363f6b08c2b5ac0a9a020c9d6b8aeddc1bb2b022', 'value': 52.84054609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0c4d8abf2a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:02:01.000Z'}}, {'blockNum': '0x528c27', 'uniqueId': '0x0f9abf3f16d50a9cc7985e52901bd7a3c826327e32984a5ee36b4ff900a4d81b:log:29', 'hash': '0x0f9abf3f16d50a9cc7985e52901bd7a3c826327e32984a5ee36b4ff900a4d81b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 684.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9f4d7f7a00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:06:33.000Z'}}, {'blockNum': '0x528c55', 'uniqueId': '0xe7c07a8492d341c75f8aa99aaaec9a1bb36a85eaf4a8df65f9384d61bb10b7d8:log:21', 'hash': '0xe7c07a8492d341c75f8aa99aaaec9a1bb36a85eaf4a8df65f9384d61bb10b7d8', 'from': '0x2cd48733cc05c9cb029ceaf4b11d62a93f881b59', 'to': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'value': 52.72022865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0c465ed92a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:17:49.000Z'}}, {'blockNum': '0x528c55', 'uniqueId': '0x8cd1df55eeb9ee1c8b35619149aa91870b7ce06626850b33669ffc7b5fcc0d60:log:22', 'hash': '0x8cd1df55eeb9ee1c8b35619149aa91870b7ce06626850b33669ffc7b5fcc0d60', 'from': '0x363f6b08c2b5ac0a9a020c9d6b8aeddc1bb2b022', 'to': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'value': 52.84054609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0c4d8abf2a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:17:49.000Z'}}, {'blockNum': '0x528c6e', 'uniqueId': '0xb5ab04361bc88357c6928311689e970da412b74089cc765ef81da20fd446756c:log:2', 'hash': '0xb5ab04361bc88357c6928311689e970da412b74089cc765ef81da20fd446756c', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x441ebc643caf97cdcfa0ad2610f69275e255a4c5', 'value': 11.34861261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02a46e1602', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:22:51.000Z'}}, {'blockNum': '0x528c8c', 'uniqueId': '0xbaf6d10817fd402a92634bd392a56a6772d24202c798305d1b53dffc4a690ae9:log:99', 'hash': '0xbaf6d10817fd402a92634bd392a56a6772d24202c798305d1b53dffc4a690ae9', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 556.931261037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x81abb0a26d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:28:15.000Z'}}, {'blockNum': '0x528c8c', 'uniqueId': '0xbaf6d10817fd402a92634bd392a56a6772d24202c798305d1b53dffc4a690ae9:log:101', 'hash': '0xbaf6d10817fd402a92634bd392a56a6772d24202c798305d1b53dffc4a690ae9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 556.931261037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x81abb0a26d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:28:15.000Z'}}, {'blockNum': '0x528ca4', 'uniqueId': '0x82f93273d9b9943c91c0b14165a559a7a8a77cbe1ea9900abb93553468c50f9b:log:87', 'hash': '0x82f93273d9b9943c91c0b14165a559a7a8a77cbe1ea9900abb93553468c50f9b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 556.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x81a9d3a100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:32:23.000Z'}}, {'blockNum': '0x528cd7', 'uniqueId': '0x14de7f6c0fcc1c6c3438d44abe995a7891266b87c7aa2b274f2b2bfdfafef6ca:log:20', 'hash': '0x14de7f6c0fcc1c6c3438d44abe995a7891266b87c7aa2b274f2b2bfdfafef6ca', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0xaf9a2b5df6560588e8b1f11638e3f1e00a4a281a', 'value': 276.14047986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x404b415574', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:45:22.000Z'}}, {'blockNum': '0x528d1f', 'uniqueId': '0xe9ee9091d158f472f8da74fa6920ee286b65df1fecfb72ab97fad9441eec8444:log:14', 'hash': '0xe9ee9091d158f472f8da74fa6920ee286b65df1fecfb72ab97fad9441eec8444', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 699.703512666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e9944e5a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:06:56.000Z'}}, {'blockNum': '0x528d1f', 'uniqueId': '0xe9ee9091d158f472f8da74fa6920ee286b65df1fecfb72ab97fad9441eec8444:log:16', 'hash': '0xe9ee9091d158f472f8da74fa6920ee286b65df1fecfb72ab97fad9441eec8444', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 699.703512666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e9944e5a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:06:56.000Z'}}, {'blockNum': '0x528d35', 'uniqueId': '0xd1bf99e13a8b06a352e189afa9c3a7121a7d15368b6f8114c44f8127444469fd:log:3', 'hash': '0xd1bf99e13a8b06a352e189afa9c3a7121a7d15368b6f8114c44f8127444469fd', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 699.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e95eb500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:11:42.000Z'}}, {'blockNum': '0x528d49', 'uniqueId': '0x6906a4d5109e0219d64c6341994fab7c54e3520cee5dc38545cb98fe93b5d2f1:log:7', 'hash': '0x6906a4d5109e0219d64c6341994fab7c54e3520cee5dc38545cb98fe93b5d2f1', 'from': '0xf0453fd8b04f0ce7a47770a962e9e1094f2dfd5b', 'to': '0x47be17067acaee8e70c04647e451c9b8ed251b03', 'value': 686.98709261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9ff39f2282', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:17:02.000Z'}}, {'blockNum': '0x528d7b', 'uniqueId': '0xce77c901edde52710ba2678505064df6a8c0df8b8372d945d6cbea64c8943f6c:log:130', 'hash': '0xce77c901edde52710ba2678505064df6a8c0df8b8372d945d6cbea64c8943f6c', 'from': '0x47be17067acaee8e70c04647e451c9b8ed251b03', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 686.98709261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9ff39f2282', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:28:12.000Z'}}, {'blockNum': '0x528daf', 'uniqueId': '0xa71cca8a3e7b2d14220021eb464e3e394647f6e2ab91cf3820bd708883ad42f7:log:86', 'hash': '0xa71cca8a3e7b2d14220021eb464e3e394647f6e2ab91cf3820bd708883ad42f7', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x678e56d45b6d7504fb67ae7c4093e8e366bb70f5', 'value': 19.08217521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x047162e2ea', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:41:55.000Z'}}, {'blockNum': '0x528ecb', 'uniqueId': '0x46fa3fa4fee325c6071caf3718d0b9e7e58809afb631981498474c11cbbbbe84:log:6', 'hash': '0x46fa3fa4fee325c6071caf3718d0b9e7e58809afb631981498474c11cbbbbe84', 'from': '0xac0c019e626cd28ecbffb160d184c47b2ffe82eb', 'to': '0xd0079694883541f7be13a049f48ee6b4ef43fcd2', 'value': 57.891487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0d7a99fd18', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T17:41:15.000Z'}}, {'blockNum': '0x528edd', 'uniqueId': '0x7116d0cd0c01e31ed8aade41b74e7bdf7e9bae7a062fb3032a830ac6497a8f37:log:15', 'hash': '0x7116d0cd0c01e31ed8aade41b74e7bdf7e9bae7a062fb3032a830ac6497a8f37', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x483350219364edfb27433641e1876e0907f91d6d', 'value': 25.46879475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05ee0ef77e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T17:44:25.000Z'}}, {'blockNum': '0x528ede', 'uniqueId': '0x4b13d4e3e2551d0d92be9c1f9743a3f8f0f40a7c9028ac2eade75030fbd78719:log:0', 'hash': '0x4b13d4e3e2551d0d92be9c1f9743a3f8f0f40a7c9028ac2eade75030fbd78719', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbf81c4babc8a4116c742d25be2657f986767080c', 'value': 290.18507256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x439060cfb0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T17:44:28.000Z'}}, {'blockNum': '0x528fa5', 'uniqueId': '0xa3a213b0a7709695eaa63f886e7173452dfd564d9d0be913a720cf7853d171de:log:65', 'hash': '0xa3a213b0a7709695eaa63f886e7173452dfd564d9d0be913a720cf7853d171de', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x4c3e7832d861efb866d10405ab531f04aba40ebb', 'value': 1124.342868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0105c80ea820', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T18:32:35.000Z'}}, {'blockNum': '0x52908d', 'uniqueId': '0xc12b66ad27eb3677005a398eb795d22c0ecbfb8c479e10b2f3110a9bd2ef9bae:log:27', 'hash': '0xc12b66ad27eb3677005a398eb795d22c0ecbfb8c479e10b2f3110a9bd2ef9bae', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xcb343d2dc05b9de33f89100f6dfae41ab77e8154', 'value': 104.83783783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1868d27406', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T19:26:34.000Z'}}, {'blockNum': '0x529098', 'uniqueId': '0x84298351ae5d2cddfa447454cac6982ac499baf913fcf803fedd6c7b20207284:log:38', 'hash': '0x84298351ae5d2cddfa447454cac6982ac499baf913fcf803fedd6c7b20207284', 'from': '0xcb343d2dc05b9de33f89100f6dfae41ab77e8154', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 104.83783783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1868d27406', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T19:29:03.000Z'}}, {'blockNum': '0x5291a0', 'uniqueId': '0x9c5a6bd3d0f91335ea62942c112d697a244623d8bb6462948cd682fced479289:log:50', 'hash': '0x9c5a6bd3d0f91335ea62942c112d697a244623d8bb6462948cd682fced479289', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.029621345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x012bc9ee61', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T20:35:22.000Z'}}, {'blockNum': '0x5291a0', 'uniqueId': '0x9c5a6bd3d0f91335ea62942c112d697a244623d8bb6462948cd682fced479289:log:52', 'hash': '0x9c5a6bd3d0f91335ea62942c112d697a244623d8bb6462948cd682fced479289', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x8dc1cf14273acc17fe3ba8f5bdba16764167ba83', 'value': 5.029621345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x012bc9ee61', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T20:35:22.000Z'}}, {'blockNum': '0x52920b', 'uniqueId': '0xd7ca1e7e5af891f1ebf0b602720c6538b59c3d94aabc1ba6df349c95f4743f2f:log:12', 'hash': '0xd7ca1e7e5af891f1ebf0b602720c6538b59c3d94aabc1ba6df349c95f4743f2f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'value': 3158.45372138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02df62831924', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T20:59:14.000Z'}}, {'blockNum': '0x529230', 'uniqueId': '0x8cbf3ed86b6871960d7eae2ecd2659d7e50cd8d8ee02117238b581aa9b3beb83:log:6', 'hash': '0x8cbf3ed86b6871960d7eae2ecd2659d7e50cd8d8ee02117238b581aa9b3beb83', 'from': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 3158.45372138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02df62831924', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T21:09:28.000Z'}}, {'blockNum': '0x5292bd', 'uniqueId': '0x8fa75d0eb8c6aa7b8d12702bf8cd52f79944d39df7f0911518b2c00618930ac5:log:9', 'hash': '0x8fa75d0eb8c6aa7b8d12702bf8cd52f79944d39df7f0911518b2c00618930ac5', 'from': '0x615b4d528b866fc4d3d9e6d82867b72a25c31a15', 'to': '0x9f708f66eb965d48d8596474406bf1d94ea61fe3', 'value': 199.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90553980', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T21:41:28.000Z'}}, {'blockNum': '0x5292db', 'uniqueId': '0x8b4d66260d07e37fae1710d048689ae229a2e20dc3d5e62a2dcf1abb1a7562a0:log:17', 'hash': '0x8b4d66260d07e37fae1710d048689ae229a2e20dc3d5e62a2dcf1abb1a7562a0', 'from': '0x9f708f66eb965d48d8596474406bf1d94ea61fe3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 199.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90553980', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T21:47:46.000Z'}}, {'blockNum': '0x529379', 'uniqueId': '0xc501cdc33e1c7e68a109c3e6580169209224d4ebf5cae56a9c6c3aeccf4c76f0:log:0', 'hash': '0xc501cdc33e1c7e68a109c3e6580169209224d4ebf5cae56a9c6c3aeccf4c76f0', 'from': '0x95a7414d0666a083039dc56695189dd1ad4d62a1', 'to': '0x6409f54b9c53825029ae57908c47f310ec6aaaf8', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T22:21:08.000Z'}}, {'blockNum': '0x529401', 'uniqueId': '0x52e0c934d72a2d1284324b2c41eeecc5309ec047ced804f61ffa1e3dee7e917c:log:2', 'hash': '0x52e0c934d72a2d1284324b2c41eeecc5309ec047ced804f61ffa1e3dee7e917c', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x63c3305e1b88ec935750b67bbf8b385a4df5439e', 'value': 182.48486805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2a7cf21bd2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T22:56:15.000Z'}}, {'blockNum': '0x529417', 'uniqueId': '0xa44b725480faf4756046ce79b2f48bf52f4e615d28181f5feb9676b9b3019f3a:log:1', 'hash': '0xa44b725480faf4756046ce79b2f48bf52f4e615d28181f5feb9676b9b3019f3a', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x3c737c87ce731d935eb1f52e9a01dc325c9fe9c1', 'value': 1489.74503725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015adbb947c2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T23:01:24.000Z'}}, {'blockNum': '0x529513', 'uniqueId': '0x8eed54d249912b3cb447aa66a93391636065cdf695a6996e1cd4717d3d0bb592:log:4', 'hash': '0x8eed54d249912b3cb447aa66a93391636065cdf695a6996e1cd4717d3d0bb592', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x008758bef331f49bd327ef2a499ca749740eb16c', 'value': 16097.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0ea3e5ed6b00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:00:25.000Z'}}, {'blockNum': '0x52952d', 'uniqueId': '0x7b86ca5374c1890bc7b381839e2e78afeede4d0ed575689803e7b3f41a722ff0:log:25', 'hash': '0x7b86ca5374c1890bc7b381839e2e78afeede4d0ed575689803e7b3f41a722ff0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 66385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3c607657ea00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:07:23.000Z'}}, {'blockNum': '0x529569', 'uniqueId': '0x3c62930baa3814e5a187a981f7eb049a85ff87473e28827c6f3465b31adbec87:log:10', 'hash': '0x3c62930baa3814e5a187a981f7eb049a85ff87473e28827c6f3465b31adbec87', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x289c88338243ac66306c2a46e57ba24794202426', 'value': 44.06800006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0a42a8513c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:19:11.000Z'}}, {'blockNum': '0x529569', 'uniqueId': '0x772117e18edee5e7564fd2d1ec5f1b6a5d6bae161816fea7dc9bfe2cb3833721:log:91', 'hash': '0x772117e18edee5e7564fd2d1ec5f1b6a5d6bae161816fea7dc9bfe2cb3833721', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x68d26a9153031cfb4486838a2d8f1562aecbb948', 'value': 7.67322446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01c95c1d0c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:19:11.000Z'}}, {'blockNum': '0x52958b', 'uniqueId': '0x84b2cbe61234bf44135d975fad010671d3fa7e7f10317096620479cfd84208f2:log:3', 'hash': '0x84b2cbe61234bf44135d975fad010671d3fa7e7f10317096620479cfd84208f2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8bbb73bcb5d553b5a556358d27625323fd781d37', 'value': 8209.06437431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0777525db026', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:26:17.000Z'}}, {'blockNum': '0x529590', 'uniqueId': '0xf0c83e456da41a82bcf2ae9562d6bddec3e9ce3ec05769dbaa17be356b98c7a9:log:2', 'hash': '0xf0c83e456da41a82bcf2ae9562d6bddec3e9ce3ec05769dbaa17be356b98c7a9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 55477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3274bee0d200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:27:53.000Z'}}, {'blockNum': '0x5295b2', 'uniqueId': '0x8489f5bd4993b52d89b956b123e86c05e081958bb435fee1cd088c7be85d9032:log:4', 'hash': '0x8489f5bd4993b52d89b956b123e86c05e081958bb435fee1cd088c7be85d9032', 'from': '0x8bbb73bcb5d553b5a556358d27625323fd781d37', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 8209.06437431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0777525db026', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:35:35.000Z'}}, {'blockNum': '0x5295ce', 'uniqueId': '0xe35c2de21834b3806ebd7def512a62008b41180ebd78cb4109f255f42e0bc641:log:1', 'hash': '0xe35c2de21834b3806ebd7def512a62008b41180ebd78cb4109f255f42e0bc641', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'value': 4013.92510858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03a690948b64', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:41:44.000Z'}}, {'blockNum': '0x5295ed', 'uniqueId': '0x05aa7a5165f2cb4fddfd0d504f255556699437bbd94a4df4bdf5a6bf893feba4:log:72', 'hash': '0x05aa7a5165f2cb4fddfd0d504f255556699437bbd94a4df4bdf5a6bf893feba4', 'from': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 4013.92510858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03a690948b64', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:50:59.000Z'}}]}}
Number of returned transfers: 145
Answer is complete
symbol ARN
group FCS
date 2018-04-10
hour 16:30
exchange binance
Name: 454, dtype: object
HERE
Symbol: ARN, Contract:
Datetime timestamps: 2018-04-10 16:30:00 2018-04-10 04:30:00 2018-04-11 04:30:00
Unix timestamps: 1523327400.0 1523413800.0
Hex Block Numbers: 0x529786 0x52af54
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol MDA
group FCS
date 2018-04-17
hour 16:30
exchange binance
Name: 455, dtype: object
HERE
Symbol: MDA, Contract: 0x51db5ad35c671a87207d88fc11d593ac0c8415bd
Datetime timestamps: 2018-04-17 16:30:00 2018-04-17 04:30:00 2018-04-18 04:30:00
Unix timestamps: 1523932200.0 1524018600.0
Hex Block Numbers: 0x533a1e 0x5350fe
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x533bb4', 'uniqueId': '0x8c3bf2a76bc879e7f69a2369eff83affa522e06c92da39952e1b24bf8f5329db:log:11', 'hash': '0x8c3bf2a76bc879e7f69a2369eff83affa522e06c92da39952e1b24bf8f5329db', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x55fd7da565807b21f81b617b4e28f0a7cb48712f', 'value': 4514.2973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xf4b875c493ed014000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T04:05:45.000Z'}}, {'blockNum': '0x533be2', 'uniqueId': '0x453870714943c5acc5e12ece311a5fd9af0676d1dce191727bc941d87130e506:log:28', 'hash': '0x453870714943c5acc5e12ece311a5fd9af0676d1dce191727bc941d87130e506', 'from': '0x55fd7da565807b21f81b617b4e28f0a7cb48712f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4514.2973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xf4b875c493ed014000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T04:18:22.000Z'}}, {'blockNum': '0x533c2a', 'uniqueId': '0xceecd691d1366223abf705297f9c9a2eb3a9d28b6768f37ebfc80cd6e19e488b:log:21', 'hash': '0xceecd691d1366223abf705297f9c9a2eb3a9d28b6768f37ebfc80cd6e19e488b', 'from': '0x192ca4b1e94f7bd1ccb5d6d1ebc38ad320f9853b', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 296.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x10158a26041a65ffff', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T04:35:29.000Z'}}, {'blockNum': '0x533e60', 'uniqueId': '0xe3e459ff899db8fc0d06ac8d1b866ff924927c1d76ea2461a46d3edf17d0636f:log:64', 'hash': '0xe3e459ff899db8fc0d06ac8d1b866ff924927c1d76ea2461a46d3edf17d0636f', 'from': '0x60a716b46564cb5c41548226b50eb542c838ad32', 'to': '0xe883bbb78d5cb167ecb610fbbdeef817a7ecdf11', 'value': 10864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x024cf049680fa3c00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T06:52:25.000Z'}}, {'blockNum': '0x533e79', 'uniqueId': '0xb157f6ed6ce2ee586c73bcbe6b1b122ca31b06f72cec417508bbb6efc534497b:log:64', 'hash': '0xb157f6ed6ce2ee586c73bcbe6b1b122ca31b06f72cec417508bbb6efc534497b', 'from': '0x51c0be102eb8096f8c05e14619728def2fb1c996', 'to': '0x4023c2e123c0d9ede6dc9786200012c66fd0fb31', 'value': 125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x06c6b935b8bbd40000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T06:58:02.000Z'}}, {'blockNum': '0x533ea5', 'uniqueId': '0xffc6533b65d0409e8421fbaff3bf5bddcfca0c9de54c9d2c1da022ade7bd9a06:log:50', 'hash': '0xffc6533b65d0409e8421fbaff3bf5bddcfca0c9de54c9d2c1da022ade7bd9a06', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 4478.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xf2c7ac35e3daea0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T07:11:24.000Z'}}, {'blockNum': '0x533ebc', 'uniqueId': '0x917f07bd745e59f5fa81df273ca0fa0316e081d2bca4cd1b59469676df9476c3:log:79', 'hash': '0x917f07bd745e59f5fa81df273ca0fa0316e081d2bca4cd1b59469676df9476c3', 'from': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4478.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xf2c7ac35e3daea0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T07:18:26.000Z'}}, {'blockNum': '0x533f16', 'uniqueId': '0x90f3555c425d3666e117655a5a4ee68a9801aeafd3ac869ac27a53218c790f99:log:65', 'hash': '0x90f3555c425d3666e117655a5a4ee68a9801aeafd3ac869ac27a53218c790f99', 'from': '0xb7317d390cfd775a1592f05e13da8100a87d17c5', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 1501.4999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x51657f969f008f1800', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T07:39:37.000Z'}}, {'blockNum': '0x53421e', 'uniqueId': '0xb2bbc1e1a0ac2e3de80c20aaa88a4d40a56ba2f8fb8cf5ed967c6bedc679baa0:log:47', 'hash': '0xb2bbc1e1a0ac2e3de80c20aaa88a4d40a56ba2f8fb8cf5ed967c6bedc679baa0', 'from': '0x8d99e55d61f47602bfb9548e9669419091049119', 'to': '0x59cc99e36ded749a1d8bb75e08f89cff36d81a2a', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T10:55:53.000Z'}}, {'blockNum': '0x534381', 'uniqueId': '0xfef9c73266ab671648c81fd8cb8dfe265e481f4c4843624e0c077b97823edd8e:log:5', 'hash': '0xfef9c73266ab671648c81fd8cb8dfe265e481f4c4843624e0c077b97823edd8e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4469.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xf24d8c5483b37a0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T12:32:16.000Z'}}, {'blockNum': '0x534391', 'uniqueId': '0xaee718a952305fa56556edb1626d28467ee5f1131a07fc4cb73eed3b4e44998a:log:1', 'hash': '0xaee718a952305fa56556edb1626d28467ee5f1131a07fc4cb73eed3b4e44998a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7a855c1afb66df4f4dcba89bc4e64ac3b8a490f1', 'value': 8348.487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01c49287f651f68d8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T12:36:46.000Z'}}, {'blockNum': '0x5343a1', 'uniqueId': '0xb43010eaa5a050f33a92020248015e73d511805ee58f7fb50e39692c4dfff54f:log:1', 'hash': '0xb43010eaa5a050f33a92020248015e73d511805ee58f7fb50e39692c4dfff54f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0574f22b83b87ea19e200613e82fa9b0a5ae018b', 'value': 1222.811, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x4249e95dc5082f8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T12:41:06.000Z'}}, {'blockNum': '0x53446e', 'uniqueId': '0xfe5224075bfd6628c28880a66611bedd8c62524cf9a8efa619b8849053c7c0e7:log:90', 'hash': '0xfe5224075bfd6628c28880a66611bedd8c62524cf9a8efa619b8849053c7c0e7', 'from': '0x0574f22b83b87ea19e200613e82fa9b0a5ae018b', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 2445.611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x8493aba718fbd78000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T13:32:41.000Z'}}, {'blockNum': '0x53446e', 'uniqueId': '0x70885b0a52cae83178e0a3d1340d4c66e94ae22351a29f62d69a3b6c0e153c05:log:91', 'hash': '0x70885b0a52cae83178e0a3d1340d4c66e94ae22351a29f62d69a3b6c0e153c05', 'from': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 8942.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01e4c4bacd225d200000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T13:32:41.000Z'}}, {'blockNum': '0x534735', 'uniqueId': '0x9e6d8293feabceaec550feb217b7400f7d73e9cf1decdf9df63da6f7b89374c1:log:45', 'hash': '0x9e6d8293feabceaec550feb217b7400f7d73e9cf1decdf9df63da6f7b89374c1', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 2640.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x8f244c78080af20000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:30:20.000Z'}}, {'blockNum': '0x534742', 'uniqueId': '0xb95b5de9b78c69e96c8be1b1c598b2e4d636f0533659efcfa92fb0f75fb9a6ec:log:17', 'hash': '0xb95b5de9b78c69e96c8be1b1c598b2e4d636f0533659efcfa92fb0f75fb9a6ec', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 1847.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x6427368586862e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:32:49.000Z'}}, {'blockNum': '0x534743', 'uniqueId': '0xb8ddc195e88eba2e850dada33379003e92f8d1c24e8d979780089241b43c6b3b:log:4', 'hash': '0xb8ddc195e88eba2e850dada33379003e92f8d1c24e8d979780089241b43c6b3b', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 1660, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x59fd20b4f16c700000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:33:02.000Z'}}, {'blockNum': '0x53474c', 'uniqueId': '0xc71d7ac812e44f7ebe62b96c9b8000829b53637539eedc637e254eaff4683be4:log:80', 'hash': '0xc71d7ac812e44f7ebe62b96c9b8000829b53637539eedc637e254eaff4683be4', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xeec3e3ab52572a51d93572e54fbb63824d1756bd', 'value': 2735.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x944ab044b3290e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:35:08.000Z'}}, {'blockNum': '0x53474f', 'uniqueId': '0x8bf14369a1d8893d0ef200319bccd6a33afa400652fdb9010cc24e7b242293db:log:9', 'hash': '0x8bf14369a1d8893d0ef200319bccd6a33afa400652fdb9010cc24e7b242293db', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 2719.207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x936893e7861b9d8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:36:04.000Z'}}, {'blockNum': '0x53474f', 'uniqueId': '0xfed07befa9befe6e6f8fd6821010327dad27d2254a97a91c3599e7d920e75f51:log:41', 'hash': '0xfed07befa9befe6e6f8fd6821010327dad27d2254a97a91c3599e7d920e75f51', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 20.977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01231d465bed5e8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:36:04.000Z'}}, {'blockNum': '0x53475a', 'uniqueId': '0xb40e22acdabe0661da3ffef9a2aa9a8c60aedd3c56528017a82b33029cb162bf:log:35', 'hash': '0xb40e22acdabe0661da3ffef9a2aa9a8c60aedd3c56528017a82b33029cb162bf', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2719.207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x936893e7861b9d8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:38:51.000Z'}}, {'blockNum': '0x53475a', 'uniqueId': '0x4b5551358f7b821bd994e8366561769c6ac34cd5f74f92ef15dc9527fd55f0e6:log:36', 'hash': '0x4b5551358f7b821bd994e8366561769c6ac34cd5f74f92ef15dc9527fd55f0e6', 'from': '0xeec3e3ab52572a51d93572e54fbb63824d1756bd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2735.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x944ab044b3290e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:38:51.000Z'}}, {'blockNum': '0x53475a', 'uniqueId': '0x9b358ef6a0b8bb520f861714be2c87a59f627f17fd78ca7ec38ff84346d68120:log:39', 'hash': '0x9b358ef6a0b8bb520f861714be2c87a59f627f17fd78ca7ec38ff84346d68120', 'from': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xf34b82fd8e91200000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:38:51.000Z'}}, {'blockNum': '0x53475a', 'uniqueId': '0xf2aefd50c0d7f2cb7e7e6d88181238dbb4eca365b28d52e1ac56ddb700969079:log:40', 'hash': '0xf2aefd50c0d7f2cb7e7e6d88181238dbb4eca365b28d52e1ac56ddb700969079', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1660, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x59fd20b4f16c700000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:38:51.000Z'}}, {'blockNum': '0x534766', 'uniqueId': '0xd3978985d54d269cd42518e0c90836297cbbbd820df87f9bfcd6ee0742c4d5d8:log:5', 'hash': '0xd3978985d54d269cd42518e0c90836297cbbbd820df87f9bfcd6ee0742c4d5d8', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1379.763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x4acc0ee233cb4b8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:40:47.000Z'}}, {'blockNum': '0x534767', 'uniqueId': '0xcb47b3c9097d0ea4292aabb2ff85dc5ccc36f27e2a443e50c68324ab609eb3fe:log:23', 'hash': '0xcb47b3c9097d0ea4292aabb2ff85dc5ccc36f27e2a443e50c68324ab609eb3fe', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 699.52, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x25ebca45c8c1400000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:40:57.000Z'}}, {'blockNum': '0x534773', 'uniqueId': '0xf2a0cd2503ab7a431722d5aff1d71193d5dc835b21ef4559e34119547fa26454:log:19', 'hash': '0xf2a0cd2503ab7a431722d5aff1d71193d5dc835b21ef4559e34119547fa26454', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 250.032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0d8de41b4610780000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:44:16.000Z'}}, {'blockNum': '0x534784', 'uniqueId': '0xb2f0e26b5280fc6aa30194c7dc5ee3e36be2265b114fc3dbdc67844457ba6383:log:49', 'hash': '0xb2f0e26b5280fc6aa30194c7dc5ee3e36be2265b114fc3dbdc67844457ba6383', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2632.60763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x8eb6c52354fcfee000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:48:40.000Z'}}, {'blockNum': '0x534913', 'uniqueId': '0x209f8133fcd4190cb1f3eaa27c4d143f03dda229fa6e7939159882f6c17f96f6:log:21', 'hash': '0x209f8133fcd4190cb1f3eaa27c4d143f03dda229fa6e7939159882f6c17f96f6', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T18:26:45.000Z'}}, {'blockNum': '0x534c22', 'uniqueId': '0x284743d88c329d62c0a64060e4ae0b06bea1b011f8d5755ef3790b5f6e53bfd3:log:17', 'hash': '0x284743d88c329d62c0a64060e4ae0b06bea1b011f8d5755ef3790b5f6e53bfd3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x192ca4b1e94f7bd1ccb5d6d1ebc38ad320f9853b', 'value': 496.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x1aed18e25ee0860000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T21:28:23.000Z'}}, {'blockNum': '0x534d8a', 'uniqueId': '0x50f797c95d5371aa1ccdb7b934dec772f6bbf863e02311ef6a3e72f7339ec15b:log:13', 'hash': '0x50f797c95d5371aa1ccdb7b934dec772f6bbf863e02311ef6a3e72f7339ec15b', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 1606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x570fba2b0c1d580000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T22:58:20.000Z'}}, {'blockNum': '0x534dbc', 'uniqueId': '0x56b2c6d828a848b8c0d3072fb4790e8082ce1a162c05d9c800042b35509b410f:log:25', 'hash': '0x56b2c6d828a848b8c0d3072fb4790e8082ce1a162c05d9c800042b35509b410f', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x570fba2b0c1d580000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T23:08:21.000Z'}}, {'blockNum': '0x534ded', 'uniqueId': '0x529656412645d72e8ac61ffb589fa00c03367909c57dd814dfc050387cf99b54:log:72', 'hash': '0x529656412645d72e8ac61ffb589fa00c03367909c57dd814dfc050387cf99b54', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 2712.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x930b7fda8f1f120000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T23:20:26.000Z'}}, {'blockNum': '0x534ded', 'uniqueId': '0xcda8395ed706338fa4ce0a86f3a57908f15ed5e387f561a04b4bf6880bd1c6a2:log:73', 'hash': '0xcda8395ed706338fa4ce0a86f3a57908f15ed5e387f561a04b4bf6880bd1c6a2', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 1773.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x602441b59823460000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T23:20:26.000Z'}}, {'blockNum': '0x534ded', 'uniqueId': '0xa1966c1a06d8c9c6b2cee5083d9d69cb52857db3e54680419545214ef616c513:log:74', 'hash': '0xa1966c1a06d8c9c6b2cee5083d9d69cb52857db3e54680419545214ef616c513', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xbaee053cefa62e332c1fc1235005b8bcc9d09a7c', 'value': 2558.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x8ab251f27c6cea0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T23:20:26.000Z'}}, {'blockNum': '0x534ded', 'uniqueId': '0x091798c3544dcbf72bea20bd72aa84f3f820b4ffc2a54279b95a8da1ed9a9dc1:log:80', 'hash': '0x091798c3544dcbf72bea20bd72aa84f3f820b4ffc2a54279b95a8da1ed9a9dc1', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xb317b47a500189a7fa8e424da937706ef1832465', 'value': 1293.5466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x461f90b332464e8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T23:20:26.000Z'}}, {'blockNum': '0x534e0d', 'uniqueId': '0x4344f8166edda108c724f30bde585eb2fbfcb0355807e52a8da07f479a4a2dab:log:4', 'hash': '0x4344f8166edda108c724f30bde585eb2fbfcb0355807e52a8da07f479a4a2dab', 'from': '0xbaee053cefa62e332c1fc1235005b8bcc9d09a7c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2558.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x8ab251f27c6cea0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T23:28:02.000Z'}}, {'blockNum': '0x534e0f', 'uniqueId': '0xd0c0858c5970efd30e22619c9a0153b4d412e5962483aec30ce5e20852047473:log:75', 'hash': '0xd0c0858c5970efd30e22619c9a0153b4d412e5962483aec30ce5e20852047473', 'from': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xf32fc1902742580000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T23:28:39.000Z'}}, {'blockNum': '0x534ff9', 'uniqueId': '0x8982979575c6d7a1b368cfb77f55d2fa0881843d2ca7efbfdd39aad55f61a9d0:log:4', 'hash': '0x8982979575c6d7a1b368cfb77f55d2fa0881843d2ca7efbfdd39aad55f61a9d0', 'from': '0x9539e0b14021a43cde41d9d45dc34969be9c7cb0', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 971.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x34a5d47877c3de0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-18T01:28:44.000Z'}}, {'blockNum': '0x535024', 'uniqueId': '0x3b0572c174fc3c88877c5299a65875fa4a9527a5ab7d125dc2d9c41b86b9e776:log:56', 'hash': '0x3b0572c174fc3c88877c5299a65875fa4a9527a5ab7d125dc2d9c41b86b9e776', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 971.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x34a5d47877c3de0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-18T01:38:21.000Z'}}, {'blockNum': '0x535084', 'uniqueId': '0xda6d72aba35bb9724bef9e6c01bd1b266789c2306c27084b1d735733ec677556:log:0', 'hash': '0xda6d72aba35bb9724bef9e6c01bd1b266789c2306c27084b1d735733ec677556', 'from': '0x9539e0b14021a43cde41d9d45dc34969be9c7cb0', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 764.79, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x297597e4f80aff0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-18T01:58:51.000Z'}}, {'blockNum': '0x5350a2', 'uniqueId': '0xa6ca5c90cb4804424482476fd0536240e9becfe3989a5bb75d4b3970092a4ce7:log:15', 'hash': '0xa6ca5c90cb4804424482476fd0536240e9becfe3989a5bb75d4b3970092a4ce7', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 764.79, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x297597e4f80aff0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-18T02:08:09.000Z'}}]}}
Number of returned transfers: 42
Answer is complete
symbol MOD
group FCS
date 2018-05-18
hour 15:00
exchange binance
Name: 460, dtype: object
HERE
{'arbitrum-one': '0x244ae62439c1ef3187f244d8604ac2c391ef2b53'}
No contract for ethereum specified
{'aptos': '0x6f986d146e4a90b828d8c12c14b6f4e003fdff11a8eecceceb63744363eaac01::mod_coin::MOD'}
No contract for ethereum specified
Symbol: MOD, Contract: 0xea1ea0972fa092dd463f2968f9bb51cc4c981d71
Datetime timestamps: 2018-05-18 15:00:00 2018-05-18 03:00:00 2018-05-19 03:00:00
Unix timestamps: 1526605200.0 1526691600.0
Hex Block Numbers: 0x55f0d5 0x5606da
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers: 0
Answer is complete
symbol DLT
group FCS
date 2018-06-06
hour 13:00
exchange binance
Name: 462, dtype: object
HERE
Symbol: DLT, Contract: 0x07e3c70653548b04f0a75970c1f81b4cbbfb606f
Datetime timestamps: 2018-06-06 13:00:00 2018-06-06 01:00:00 2018-06-07 01:00:00
Unix timestamps: 1528239600.0 1528326000.0
Hex Block Numbers: 0x579168 0x57a77d
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x579297', 'uniqueId': '0x58bf991836634b73e5bb7a7d3bb97def1221cdd744ad8fdd34f96d5684a5c9bf:log:1', 'hash': '0x58bf991836634b73e5bb7a7d3bb97def1221cdd744ad8fdd34f96d5684a5c9bf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe1b3a2adb7c27ab022b314735c28b3610f54e763', 'value': 6139.875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x014cd7e1e60c4d838000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T00:16:45.000Z'}}, {'blockNum': '0x579969', 'uniqueId': '0x965b63ff9e8d24498379cfdc55bc8f4b5edfaef526323cfffcb432d91f7d5c0f:log:4', 'hash': '0x965b63ff9e8d24498379cfdc55bc8f4b5edfaef526323cfffcb432d91f7d5c0f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6ca8edb6ccbdbdb8b3d739feb96cfc06d633097c', 'value': 979.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x35194b0c62f71e0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T07:35:00.000Z'}}, {'blockNum': '0x57996f', 'uniqueId': '0x5b80b5861ea666d82301d762790055cd170ba254da7a3dc69e72b040d14c1ae5:log:19', 'hash': '0x5b80b5861ea666d82301d762790055cd170ba254da7a3dc69e72b040d14c1ae5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x220f628e708927c097e774f0e5ae33790a691afc', 'value': 479.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x19fe66358007ce0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T07:37:21.000Z'}}, {'blockNum': '0x579a4e', 'uniqueId': '0x419936553781c261c88057903efb772ba92750e60b93d8790cfc2ceff4f51bb2:log:3', 'hash': '0x419936553781c261c88057903efb772ba92750e60b93d8790cfc2ceff4f51bb2', 'from': '0xd2454ea208bda1aae77b5610c63cf1eabb98e352', 'to': '0x0201e9281a0f78a57feeb0d5abd995d808ee0add', 'value': 2478.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x866042aac136480000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T08:37:27.000Z'}}, {'blockNum': '0x579ac9', 'uniqueId': '0xd73a7fb1a15e6c694af2a13d16c1e83cfcf6af5fbd5127e2605af43ecb7edcd2:log:5', 'hash': '0xd73a7fb1a15e6c694af2a13d16c1e83cfcf6af5fbd5127e2605af43ecb7edcd2', 'from': '0xa1ff9c3273f89ae97ef4343b36eca9c64f0012b6', 'to': '0x18a9db8ced6c6cb8a8b03e4414f4b7f9dfd12eda', 'value': 541.15407692308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1d56057dcdea98c200', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T09:08:01.000Z'}}, {'blockNum': '0x579cc2', 'uniqueId': '0x6f191d3a806e5dd4949186ac37b59ebc68442625924d799c2f10c7127e327a49:log:30', 'hash': '0x6f191d3a806e5dd4949186ac37b59ebc68442625924d799c2f10c7127e327a49', 'from': '0x6c58dde6896c3c51462d8dda881c40372d07eed3', 'to': '0x222c92d48467e771878c1aa902cbb420fc388116', 'value': 27772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x05e185ec49a344700000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T11:16:18.000Z'}}, {'blockNum': '0x579cec', 'uniqueId': '0xb0da20f5d3fc917a8766f35a58a975f321718ce33123d5def31d45fbe6e37cb7:log:15', 'hash': '0xb0da20f5d3fc917a8766f35a58a975f321718ce33123d5def31d45fbe6e37cb7', 'from': '0x222c92d48467e771878c1aa902cbb420fc388116', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x05e185ec49a344700000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T11:23:11.000Z'}}, {'blockNum': '0x579dc4', 'uniqueId': '0x33baf564b11b8a7aa455388739a7fba1a513e602774f1cf1187feaab72ab8c42:log:37', 'hash': '0x33baf564b11b8a7aa455388739a7fba1a513e602774f1cf1187feaab72ab8c42', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x73b6e91d4d2d743ef43f2089a4ee5bfdc402bd7e', 'value': 1611.944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x5762377f8dfe440000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T12:16:17.000Z'}}, {'blockNum': '0x579dfc', 'uniqueId': '0x3958a8e47b772f5b8806f58a0d36d62319b333678a20082ca196a285e706a2e3:log:21', 'hash': '0x3958a8e47b772f5b8806f58a0d36d62319b333678a20082ca196a285e706a2e3', 'from': '0xfb846568dde09cd34d24a5475945a241bdcdccc4', 'to': '0xdd43c23a826b1d1f34ef0c6ca1d878cf92b2b8cd', 'value': 1650, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x59725991ece2880000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T12:30:26.000Z'}}, {'blockNum': '0x579e3d', 'uniqueId': '0x1b32b6f5fd4eb87c0bc7d7242d1e195ea71fc024ed54ae5be42e7ea8bcb5a5e4:log:34', 'hash': '0x1b32b6f5fd4eb87c0bc7d7242d1e195ea71fc024ed54ae5be42e7ea8bcb5a5e4', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x727904d80c5bdd4a7d7341e22e4b756a81f8eb52', 'value': 588.9337903243025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1fed1921feb870405e', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T12:49:34.000Z'}}, {'blockNum': '0x579f0c', 'uniqueId': '0x40abc501f0c5a1c0c2c562808b70711c1bd1a5f115f24b03a48c45ea1e6c833f:log:30', 'hash': '0x40abc501f0c5a1c0c2c562808b70711c1bd1a5f115f24b03a48c45ea1e6c833f', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T13:42:01.000Z'}}, {'blockNum': '0x579f29', 'uniqueId': '0x427b7e9c9a0eedb7341a49fe02e3962fa0ccc361697030205aa823932d92ffb9:log:38', 'hash': '0x427b7e9c9a0eedb7341a49fe02e3962fa0ccc361697030205aa823932d92ffb9', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'value': 1157.496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x3ebf7bdf52c78c0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T13:50:27.000Z'}}, {'blockNum': '0x579f7a', 'uniqueId': '0xe5c094ac1c14e9a8008a0c907296c8e3883dae30e8f5fa47b065914e27e2ceb9:log:157', 'hash': '0xe5c094ac1c14e9a8008a0c907296c8e3883dae30e8f5fa47b065914e27e2ceb9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x30dfa271dafe619131c481d0f9265457ecc55649', 'value': 9643.826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x020acaf88bd1ec450000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T14:12:46.000Z'}}, {'blockNum': '0x579f9e', 'uniqueId': '0x6ab08cbddba9e7bfac635406cece28d9e7a7fa167f584b76a406137a8475ec82:log:10', 'hash': '0x6ab08cbddba9e7bfac635406cece28d9e7a7fa167f584b76a406137a8475ec82', 'from': '0x30dfa271dafe619131c481d0f9265457ecc55649', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9643.826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x020acaf88bd1ec450000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T14:23:02.000Z'}}, {'blockNum': '0x57a033', 'uniqueId': '0x296f520c50168da050659423c0c13ef6aa0a725e8bb621302ade9dedd8be6625:log:43', 'hash': '0x296f520c50168da050659423c0c13ef6aa0a725e8bb621302ade9dedd8be6625', 'from': '0xbb49ebe9ede41096d2df352d95253f083c7a0b93', 'to': '0x2636cc7b852cb8a16209ba9484279b61035b349a', 'value': 205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0b1cf24ddd0b140000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T15:01:46.000Z'}}, {'blockNum': '0x57a055', 'uniqueId': '0x8e12966f93431c3bf7170faf3719bbaa3288b7b5152b4eed7c1ae65817f9222e:log:0', 'hash': '0x8e12966f93431c3bf7170faf3719bbaa3288b7b5152b4eed7c1ae65817f9222e', 'from': '0x885859b341c57df0df87db7f70b17fe214250914', 'to': '0xd1ebc4b35a9315a99003433ac78ecf6b62dcb18d', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T15:09:46.000Z'}}, {'blockNum': '0x57a063', 'uniqueId': '0x73d907a23a59756936ac28f4fe862387f2d8ec3342f991aa7828497b60d8946a:log:23', 'hash': '0x73d907a23a59756936ac28f4fe862387f2d8ec3342f991aa7828497b60d8946a', 'from': '0xd1ebc4b35a9315a99003433ac78ecf6b62dcb18d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T15:13:24.000Z'}}, {'blockNum': '0x57a113', 'uniqueId': '0xc3df48a8c14c744acbb6a777e06be28c52a3571df2ced56cbf4ae4010c0872d1:log:7', 'hash': '0xc3df48a8c14c744acbb6a777e06be28c52a3571df2ced56cbf4ae4010c0872d1', 'from': '0x4dfb8bdea56250a0ed403fff7b20284a90f65554', 'to': '0xffadd98d55234c1e99daaa9b6491cc403a021905', 'value': 846.15384615385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x2ddebe57f632c21280', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T15:57:08.000Z'}}, {'blockNum': '0x57a177', 'uniqueId': '0xea3de4f985574a7d0c9aa98e34e2fee47c1983902f8a97dccd58c89f5d72def6:log:25', 'hash': '0xea3de4f985574a7d0c9aa98e34e2fee47c1983902f8a97dccd58c89f5d72def6', 'from': '0xe5b4cc423df8aeca47d250c7c5e1f015cf2d7e7b', 'to': '0x5bb60fd2de295b052c2e546743efd0d6a77870d6', 'value': 4823.529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01057be975591b2a8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T16:23:12.000Z'}}, {'blockNum': '0x57a521', 'uniqueId': '0x3711f9bb3d73ea0e5ded523d6a4e320a1823703cdc1819fdda2007e638db4a8a:log:49', 'hash': '0x3711f9bb3d73ea0e5ded523d6a4e320a1823703cdc1819fdda2007e638db4a8a', 'from': '0x530535c99bcdb480e3c53eeaf483c465269e1532', 'to': '0x78edda143e76cfcde95dadca71f402085b2a549c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T20:27:45.000Z'}}, {'blockNum': '0x57a611', 'uniqueId': '0xb615dd469660dbffe92baa3f193db2f6806ec0b3332a1c8fa2ba79498df9bd61:log:2', 'hash': '0xb615dd469660dbffe92baa3f193db2f6806ec0b3332a1c8fa2ba79498df9bd61', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4cbf35cc3ff8c8a04f5b6b1aa654d7deda0816bd', 'value': 1008.47, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x36ab5529e59e2f0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T21:29:25.000Z'}}, {'blockNum': '0x57a72d', 'uniqueId': '0x47daad377599a0dd095e9ef69274c9902b0e126f5149a85e4fce0727b4329c58:log:81', 'hash': '0x47daad377599a0dd095e9ef69274c9902b0e126f5149a85e4fce0727b4329c58', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x57988a29d9a5e74ef0eddf766387ae4207a6d509', 'value': 304.68079999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x10844ba552a5ca1c00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T22:42:02.000Z'}}]}}
Number of returned transfers: 22
Answer is complete
symbol AST
group FCS
date 2018-06-21
hour 14:30
exchange binance
Name: 463, dtype: object
HERE
{'binance-smart-chain': '0x7ed86d2769fe9a2cad7bac4ceac45e40c82295d6'}
No contract for ethereum specified
{'okex-chain': '0x493d8cbd9533e57d4befb17cc2ec1db76828261d'}
No contract for ethereum specified
{'optimistic-ethereum': '0xb532178708814f0c174b29b991d2b355106afbc3', 'binance-smart-chain': '0xae10e5980f05a80ae09fd0e5bcda3dacd49aaec1'}
No contract for ethereum specified
Symbol: AST, Contract: 0x27054b13b1b798b345b591a4d22e6562d47ea75a
Datetime timestamps: 2018-06-21 14:30:00 2018-06-21 02:30:00 2018-06-22 02:30:00
Unix timestamps: 1529541000.0 1529627400.0
Hex Block Numbers: 0x58e3b2 0x58faa4
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x58e425', 'uniqueId': '0xb720b4089e7e318c85b7dfb55fc834adeb21534891d19d1a6e384c6115a8448c:log:14', 'hash': '0xb720b4089e7e318c85b7dfb55fc834adeb21534891d19d1a6e384c6115a8448c', 'from': '0x1967b199a80e44e4040ae16ff7c18ee68b70c6e6', 'to': '0xede4a45cb8a222c7d0f989fa12b4bfe17f34bcb4', 'value': 5022.625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02fe644a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T00:57:29.000Z'}}, {'blockNum': '0x58e43d', 'uniqueId': '0xf07a6b5b716ef7ded093e3d6fb2cad05e4f22a9436e700ed053a55f862fecc0e:log:116', 'hash': '0xf07a6b5b716ef7ded093e3d6fb2cad05e4f22a9436e700ed053a55f862fecc0e', 'from': '0x188e70665ae83d305578467c8470dd2e5dfa3d51', 'to': '0x94689dfed4e4dcaaeb0175b55c4d8bdb4c46fa51', 'value': 3187.976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01e67250', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T01:02:25.000Z'}}, {'blockNum': '0x58e445', 'uniqueId': '0x1fe06ea45ded096c588cc4b9ba07ca7963d4ef0a76e06f1fa6f36cca4653cef6:log:13', 'hash': '0x1fe06ea45ded096c588cc4b9ba07ca7963d4ef0a76e06f1fa6f36cca4653cef6', 'from': '0xede4a45cb8a222c7d0f989fa12b4bfe17f34bcb4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5022.625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02fe644a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T01:05:11.000Z'}}, {'blockNum': '0x58e44a', 'uniqueId': '0x9758a0eafc461d550c22651bbbf907c169b78d488a49e66ef1f439224fac6fab:log:113', 'hash': '0x9758a0eafc461d550c22651bbbf907c169b78d488a49e66ef1f439224fac6fab', 'from': '0xb57f9609b90e86d46092d583ed40ccde1cb8a2c5', 'to': '0x034a211eafc44846c9f0148ef36dc8a4e2ab6ece', 'value': 403.986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3da4b4', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T01:06:16.000Z'}}, {'blockNum': '0x58e46b', 'uniqueId': '0x67b7aa9527b99b779916fc92cfa7eaba013fa6a5e9aa2b485a278a6131ddc6c7:log:3', 'hash': '0x67b7aa9527b99b779916fc92cfa7eaba013fa6a5e9aa2b485a278a6131ddc6c7', 'from': '0x94689dfed4e4dcaaeb0175b55c4d8bdb4c46fa51', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3187.976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01e67250', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T01:15:09.000Z'}}, {'blockNum': '0x58e476', 'uniqueId': '0xf123977eefe1c86b489b8243751b46a71a209eb7c7bb971f6a789681164aea61:log:33', 'hash': '0xf123977eefe1c86b489b8243751b46a71a209eb7c7bb971f6a789681164aea61', 'from': '0x7ec542e0a758dbe15f6294b3793dd5590d591ce2', 'to': '0x5d0415fedfff6da94acbc18e2333ba673d942bde', 'value': 1236.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xbcb880', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T01:17:41.000Z'}}, {'blockNum': '0x58e479', 'uniqueId': '0xa6a43c4614adc0d23ebe540785e1b111a3181203098f28d4698295dc02d3c1a0:log:34', 'hash': '0xa6a43c4614adc0d23ebe540785e1b111a3181203098f28d4698295dc02d3c1a0', 'from': '0x76e6a066190219dd929d7d5d7031fc90c4516b65', 'to': '0xf904c33423cfd645a62ed4a332eaa669e26c61d3', 'value': 497.02, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4bd6d8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T01:18:20.000Z'}}, {'blockNum': '0x58e493', 'uniqueId': '0x16d30d5b25c54c8c4c2f7d7f06625c8c14bd94249a9188b531759c1adf6b263e:log:3', 'hash': '0x16d30d5b25c54c8c4c2f7d7f06625c8c14bd94249a9188b531759c1adf6b263e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xeeb9233628f87d3ca253c174a62285363819cfe3', 'value': 8008.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04c60bc0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T01:25:21.000Z'}}, {'blockNum': '0x58e4a7', 'uniqueId': '0xcf33ced666974bdf86f123ceaeffdfbd5996299c5ca743f1dd22dd4a43183245:log:49', 'hash': '0xcf33ced666974bdf86f123ceaeffdfbd5996299c5ca743f1dd22dd4a43183245', 'from': '0xeeb9233628f87d3ca253c174a62285363819cfe3', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 8008.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04c60bc0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T01:31:18.000Z'}}, {'blockNum': '0x58e53a', 'uniqueId': '0x14c78978df89f28fa8c4a4df20ba61714dbcc377af5c8d872037bc33c42df10f:log:91', 'hash': '0x14c78978df89f28fa8c4a4df20ba61714dbcc377af5c8d872037bc33c42df10f', 'from': '0xfa4be64c1901d2a75f8af0e22a1adb8faf6414ff', 'to': '0x5d3ed56d2038c51317d8a86ac18d85440471cfbb', 'value': 2755.825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01a4816a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T02:02:34.000Z'}}, {'blockNum': '0x58e56e', 'uniqueId': '0xe8ad5618a0f48d993cdf0ca276103cd88c98ce8bbff5b18b86a839fa06049c88:log:14', 'hash': '0xe8ad5618a0f48d993cdf0ca276103cd88c98ce8bbff5b18b86a839fa06049c88', 'from': '0x5d3ed56d2038c51317d8a86ac18d85440471cfbb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2755.825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01a4816a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T02:15:09.000Z'}}, {'blockNum': '0x58e582', 'uniqueId': '0x620dd4f155403c4920c8b1e1795f8cda476bd169f3ce5a14aec2a69ee5f2f802:log:3', 'hash': '0x620dd4f155403c4920c8b1e1795f8cda476bd169f3ce5a14aec2a69ee5f2f802', 'from': '0xdc9ad45b5e89a8fe0c35ca7310cd77dbe72a9671', 'to': '0x12cf944236b330cb438814b8961d0a1c352698d2', 'value': 18829.518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0b39280c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T02:18:35.000Z'}}, {'blockNum': '0x58e5ce', 'uniqueId': '0x4d30b4d6640c0ede2a2bbd4116a12c2046caf34863fe377e2cc411c25ff7b7df:log:5', 'hash': '0x4d30b4d6640c0ede2a2bbd4116a12c2046caf34863fe377e2cc411c25ff7b7df', 'from': '0x9486d9b0d673d6a32d5cb33a257ec3e0d05eb661', 'to': '0xfab28ec415fb7ea57134f2e739a5aa0dc3ffdb4a', 'value': 661.328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x64e920', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T02:33:20.000Z'}}, {'blockNum': '0x58e5e0', 'uniqueId': '0xa2db121ae5ed68fa62557ff14d727aa28e7d807e8d97437032de76f130835965:log:117', 'hash': '0xa2db121ae5ed68fa62557ff14d727aa28e7d807e8d97437032de76f130835965', 'from': '0x130a017eeeaa1572d27a563aef4d369abeafb25e', 'to': '0x7970067cf83426450dd1c7e2b414c41dd07895fc', 'value': 4838.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02e24be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T02:39:16.000Z'}}, {'blockNum': '0x58e5ed', 'uniqueId': '0xc6fd0a126e45be996c19a514f64b341a82037d90e79d6de2809bd9c73492c645:log:2', 'hash': '0xc6fd0a126e45be996c19a514f64b341a82037d90e79d6de2809bd9c73492c645', 'from': '0x2cb4bce44b957c80bcf568c947012fbd325910d0', 'to': '0x5d44284e65c34de937f494d816d34f2b0c4d372d', 'value': 1294.6173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc58afd', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T02:43:07.000Z'}}, {'blockNum': '0x58e5f6', 'uniqueId': '0xd12a1e113d22cf24dcbb52b8a67505e0f0615700217ab84951a395e00dc89738:log:0', 'hash': '0xd12a1e113d22cf24dcbb52b8a67505e0f0615700217ab84951a395e00dc89738', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x13c05020a096ea0e32c685601f162d9c6f7399d1', 'value': 228.554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x22dfe4', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T02:45:33.000Z'}}, {'blockNum': '0x58e611', 'uniqueId': '0xe2fb9250a4ce8e7af6a226153c1b410567c57e60dc4f60b8215cc87b87aa8b05:log:6', 'hash': '0xe2fb9250a4ce8e7af6a226153c1b410567c57e60dc4f60b8215cc87b87aa8b05', 'from': '0x6d5e23afe7c80c2a37fc1f281305687c39a24c6c', 'to': '0x8efa329f926971d035c2e4c8f67dbaed368eb683', 'value': 1089.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xa63e98', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T02:52:47.000Z'}}, {'blockNum': '0x58e631', 'uniqueId': '0xba412eb6ee41bbb1e8a602b39421d65bd0d95a75b9f692b01abfa4e00b6e77a6:log:25', 'hash': '0xba412eb6ee41bbb1e8a602b39421d65bd0d95a75b9f692b01abfa4e00b6e77a6', 'from': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'to': '0x0cfd800dda45deab1e7a03f5b8b4c9e0c1b659bb', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01c9c380', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T02:59:30.000Z'}}, {'blockNum': '0x58e642', 'uniqueId': '0x3f859a430ee2942075c68d1fa5a2d84c4bb07cc543b5030ce4594a1c8cf6dde2:log:0', 'hash': '0x3f859a430ee2942075c68d1fa5a2d84c4bb07cc543b5030ce4594a1c8cf6dde2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x378c078dfb01845556b7fd65a685b93b4e41e820', 'value': 1980.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x012e3f00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:03:06.000Z'}}, {'blockNum': '0x58e64d', 'uniqueId': '0x7ae9de1916c0f62595bc6401b1caafd4017c6ccd03d3c1c2c85cd9bbc41f6abf:log:3', 'hash': '0x7ae9de1916c0f62595bc6401b1caafd4017c6ccd03d3c1c2c85cd9bbc41f6abf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x699a2d50bfbc950ac016d424a9245bb80ad9d82b', 'value': 2857.922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01b41594', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:05:29.000Z'}}, {'blockNum': '0x58e650', 'uniqueId': '0x3356fb95c5c2098f7ef2ec4fa93ff5af50091f3518deb0f24bf8360c584049fb:log:5', 'hash': '0x3356fb95c5c2098f7ef2ec4fa93ff5af50091f3518deb0f24bf8360c584049fb', 'from': '0x17b3522b9f2e27b54450ddf215b2ad73caff36d0', 'to': '0x92fecfceba400c5737a6bdbf4f220058cb104b03', 'value': 667036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x018d959dc0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:06:59.000Z'}}, {'blockNum': '0x58e650', 'uniqueId': '0xd41fbd36c3298881dd8272904bbb5e99907f2024998231526d8150bb4b591c39:log:38', 'hash': '0xd41fbd36c3298881dd8272904bbb5e99907f2024998231526d8150bb4b591c39', 'from': '0x699a2d50bfbc950ac016d424a9245bb80ad9d82b', 'to': '0x1d8515e9787406c5bcd521249f8a5df78801f294', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4c4b40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:06:59.000Z'}}, {'blockNum': '0x58e653', 'uniqueId': '0xacbd4c58a57b1d4556bae47ddb3a19d3e32ea83ee2471b083ae3f215331f77dd:log:10', 'hash': '0xacbd4c58a57b1d4556bae47ddb3a19d3e32ea83ee2471b083ae3f215331f77dd', 'from': '0x699a2d50bfbc950ac016d424a9245bb80ad9d82b', 'to': '0x1d8515e9787406c5bcd521249f8a5df78801f294', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4c4b40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:07:42.000Z'}}, {'blockNum': '0x58e657', 'uniqueId': '0xf5a04da735cb00e31e562fdfcb44fc414572ef0fc8429bdec1f983401bed72f5:log:37', 'hash': '0xf5a04da735cb00e31e562fdfcb44fc414572ef0fc8429bdec1f983401bed72f5', 'from': '0x699a2d50bfbc950ac016d424a9245bb80ad9d82b', 'to': '0xfe5d0e7ead95e98fc8d8aff6654eea88c493b787', 'value': 1857.922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x011b7f14', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:08:40.000Z'}}, {'blockNum': '0x58e673', 'uniqueId': '0xe2fac53c8be9aa789052f3edcef05f8c0ede4b0733b17561bb3d5c5666deb38f:log:12', 'hash': '0xe2fac53c8be9aa789052f3edcef05f8c0ede4b0733b17561bb3d5c5666deb38f', 'from': '0x92fecfceba400c5737a6bdbf4f220058cb104b03', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 667036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x018d959dc0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:15:03.000Z'}}, {'blockNum': '0x58e6b9', 'uniqueId': '0xbf09117ce590aaaf9d3a05c1309289f7a39322807d3f1273cd4c33f066faad41:log:6', 'hash': '0xbf09117ce590aaaf9d3a05c1309289f7a39322807d3f1273cd4c33f066faad41', 'from': '0xff5cfae443032255e510360773673ecbf8133d2b', 'to': '0xf86a8f87fa4ff11ffb94b05ca91d65d51722bb65', 'value': 2734.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01a14838', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:32:45.000Z'}}, {'blockNum': '0x58e6c3', 'uniqueId': '0x42ca47fdf0f912d924be9f3253e3d39ea69ee01f8b553b0a20e4dfbd6673ebf8:log:14', 'hash': '0x42ca47fdf0f912d924be9f3253e3d39ea69ee01f8b553b0a20e4dfbd6673ebf8', 'from': '0xf86a8f87fa4ff11ffb94b05ca91d65d51722bb65', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2734.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01a14838', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:35:10.000Z'}}, {'blockNum': '0x58e6cd', 'uniqueId': '0x59c368b0fb364a808c87cacc0653a192142f61e4ccb92aa1872f8e5ed5b83bec:log:8', 'hash': '0x59c368b0fb364a808c87cacc0653a192142f61e4ccb92aa1872f8e5ed5b83bec', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7b8a337d9e9ec1577641f1b7444fa79f042e8c7a', 'value': 1482.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xe241e0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:38:16.000Z'}}, {'blockNum': '0x58e6d0', 'uniqueId': '0x4bc62411ddcb9828b63ed743a1df39b92e7ebb9685a44c4dad29fdf0ed04bf52:log:53', 'hash': '0x4bc62411ddcb9828b63ed743a1df39b92e7ebb9685a44c4dad29fdf0ed04bf52', 'from': '0x81f77df9a898ae1b4e0fb1729ec4ac5a4cf959a2', 'to': '0xbd73d4881bf6ad7b423a50dfb8ecec40ce1823d7', 'value': 584.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x592068', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:39:10.000Z'}}, {'blockNum': '0x58e6e1', 'uniqueId': '0xbc4f3015e1b5ebf71f0c6d505b716664c3d04bd62308ebe755d53198e87f3d94:log:85', 'hash': '0xbc4f3015e1b5ebf71f0c6d505b716664c3d04bd62308ebe755d53198e87f3d94', 'from': '0xf710217fde88378f77aa4e56004648272ab761dd', 'to': '0xabddbb375aeb2c141a866d45bfceb480e272c757', 'value': 1486.4776, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xe2d188', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:44:28.000Z'}}, {'blockNum': '0x58e702', 'uniqueId': '0x31a3fe865c7d7b7731be9db579f0cd24b6aca3652a9b06455f361354a32c3143:log:8', 'hash': '0x31a3fe865c7d7b7731be9db579f0cd24b6aca3652a9b06455f361354a32c3143', 'from': '0xabddbb375aeb2c141a866d45bfceb480e272c757', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 1486.4776, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xe2d188', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:50:52.000Z'}}, {'blockNum': '0x58e705', 'uniqueId': '0x90e9b0f2107ba54ab71d57f5142032ee5d6cb8d5f8b7656277b45791c01fe26c:log:137', 'hash': '0x90e9b0f2107ba54ab71d57f5142032ee5d6cb8d5f8b7656277b45791c01fe26c', 'from': '0x1795a0362e538aff15d13fafe52f44f89d1839fb', 'to': '0xc266638bc5c202aaa38e7dcea2cf2f3ef8f936fc', 'value': 15770.104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x096653b0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:51:29.000Z'}}, {'blockNum': '0x58e715', 'uniqueId': '0xec498888a9a2235ec234c4c0e73fcb15debca9d7a4e2fe4b5fad1b39fad1c765:log:26', 'hash': '0xec498888a9a2235ec234c4c0e73fcb15debca9d7a4e2fe4b5fad1b39fad1c765', 'from': '0xc266638bc5c202aaa38e7dcea2cf2f3ef8f936fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15770.104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x096653b0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:55:20.000Z'}}, {'blockNum': '0x58e74c', 'uniqueId': '0xb9bc41d6a1bc34e5a3f4704d123cfcfd86e4f47b5ea4e8ae91c1f081e64c0828:log:48', 'hash': '0xb9bc41d6a1bc34e5a3f4704d123cfcfd86e4f47b5ea4e8ae91c1f081e64c0828', 'from': '0x0e92fc391a6a0c3e38a0555c40ad3af796cde44c', 'to': '0x5d68c58a08e01d577a8ccb3abd4dacadb6713552', 'value': 0.0075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T04:09:27.000Z'}}, {'blockNum': '0x58e787', 'uniqueId': '0x8b4c2f28bf93c082c6652ef86a0df845255051450d225946d7991b6298e1b751:log:75', 'hash': '0x8b4c2f28bf93c082c6652ef86a0df845255051450d225946d7991b6298e1b751', 'from': '0x0e92fc391a6a0c3e38a0555c40ad3af796cde44c', 'to': '0x5d68c58a08e01d577a8ccb3abd4dacadb6713552', 'value': 5082.8675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03079583', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T04:23:27.000Z'}}, {'blockNum': '0x58e7b8', 'uniqueId': '0x98ea99e5fb906484526a1b5a19b7d829bf3bfcd8fc654ae5ade9123cebe644ab:log:28', 'hash': '0x98ea99e5fb906484526a1b5a19b7d829bf3bfcd8fc654ae5ade9123cebe644ab', 'from': '0x272d767ac1c35361dd67b126fcc4631d630a217b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4147.3189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0278d4a5', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T04:35:06.000Z'}}, {'blockNum': '0x58e7b8', 'uniqueId': '0x8b46ec4d257d13d34af4e43faafc50be92a131f985b4a45d30a313b0f798b58e:log:29', 'hash': '0x8b46ec4d257d13d34af4e43faafc50be92a131f985b4a45d30a313b0f798b58e', 'from': '0x5d68c58a08e01d577a8ccb3abd4dacadb6713552', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5082.875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x030795ce', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T04:35:06.000Z'}}, {'blockNum': '0x58e7b8', 'uniqueId': '0xbddf8c31ee851c69d794989fdb13a13549c64fd4fe62fff346bb2ec92480a8a4:log:31', 'hash': '0xbddf8c31ee851c69d794989fdb13a13549c64fd4fe62fff346bb2ec92480a8a4', 'from': '0xc4ff84f6a973475ae8b8c02c62c4c3e2cb227c98', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2818.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01ae1978', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T04:35:06.000Z'}}, {'blockNum': '0x58e7be', 'uniqueId': '0x15652b324e9010a9c557cfd7601507cd9d29c42aea4b5054ebc477caabfcf363:log:10', 'hash': '0x15652b324e9010a9c557cfd7601507cd9d29c42aea4b5054ebc477caabfcf363', 'from': '0x11447d4ef9ef7163afa71d0f15c054f1f217a186', 'to': '0x17b3522b9f2e27b54450ddf215b2ad73caff36d0', 'value': 299631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xb2980ff0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T04:37:19.000Z'}}, {'blockNum': '0x58e800', 'uniqueId': '0xe60d6f6b0650b54c65367fc2403482952eeb3f638f6e29b1002f4e6caecc6c5a:log:11', 'hash': '0xe60d6f6b0650b54c65367fc2403482952eeb3f638f6e29b1002f4e6caecc6c5a', 'from': '0xb8cdf550387ad124532386960c40c3bd0ba5871b', 'to': '0x7e1ccfd322501116336f7195c2c3d6505be32fbc', 'value': 298.394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2d8804', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T04:51:52.000Z'}}, {'blockNum': '0x58e817', 'uniqueId': '0xc757c16e6cbd16cd526ba2111cbf783159b041671bd1c6a57115311814279b3c:log:26', 'hash': '0xc757c16e6cbd16cd526ba2111cbf783159b041671bd1c6a57115311814279b3c', 'from': '0x111ac1e3025a817752ba02829fede782cb0e90cf', 'to': '0x5d8b950dbd59380a380befd56aa691e42b99adfe', 'value': 44683.125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1aa21a92', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T04:57:58.000Z'}}, {'blockNum': '0x58e857', 'uniqueId': '0x95d1e280ad58ffe41906562e61f2dc0667d75008c2423892175b3d435b16542d:log:11', 'hash': '0x95d1e280ad58ffe41906562e61f2dc0667d75008c2423892175b3d435b16542d', 'from': '0x5d8b950dbd59380a380befd56aa691e42b99adfe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 44683.125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1aa21a92', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T05:15:03.000Z'}}, {'blockNum': '0x58e85f', 'uniqueId': '0xd065840bd79644d4845337440166070a3dcd1fab640c2dbe922c88426d44c899:log:5', 'hash': '0xd065840bd79644d4845337440166070a3dcd1fab640c2dbe922c88426d44c899', 'from': '0xfbdc01b30b5918d336242ea464f36fe28e270bf4', 'to': '0x964f35fae36d75b1e72770e244f6595b68508cf5', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T05:17:34.000Z'}}, {'blockNum': '0x58e85f', 'uniqueId': '0xd065840bd79644d4845337440166070a3dcd1fab640c2dbe922c88426d44c899:log:6', 'hash': '0xd065840bd79644d4845337440166070a3dcd1fab640c2dbe922c88426d44c899', 'from': '0x964f35fae36d75b1e72770e244f6595b68508cf5', 'to': '0x2aab2b157a03915c8a73adae735d0cf51c872f31', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T05:17:34.000Z'}}, {'blockNum': '0x58e885', 'uniqueId': '0xbd2c3dbea29347ab41d029ff67db2c7b31edde7477ef7c5389038c7521f42648:log:32', 'hash': '0xbd2c3dbea29347ab41d029ff67db2c7b31edde7477ef7c5389038c7521f42648', 'from': '0x3fd6ead2f166fdf27fc31263bb07c20833d7136f', 'to': '0x5d68c58a08e01d577a8ccb3abd4dacadb6713552', 'value': 12565.957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x077d69b2', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T05:28:18.000Z'}}, {'blockNum': '0x58e8a3', 'uniqueId': '0xa491b1a29f9e1a80675a13c6d0674ea9104a2b98bb4ba5705678c678417b0abd:log:3', 'hash': '0xa491b1a29f9e1a80675a13c6d0674ea9104a2b98bb4ba5705678c678417b0abd', 'from': '0x5d68c58a08e01d577a8ccb3abd4dacadb6713552', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12565.957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x077d69b2', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T05:35:06.000Z'}}, {'blockNum': '0x58e94c', 'uniqueId': '0x916b1220c614926d142bde4beea019c638d196a377404b29b8e9961288b2d0ae:log:19', 'hash': '0x916b1220c614926d142bde4beea019c638d196a377404b29b8e9961288b2d0ae', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 1802498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04325f5e20', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T06:15:38.000Z'}}, {'blockNum': '0x58e979', 'uniqueId': '0x3096f7fa4cfa511855a7f6811a8c977e2b2eec9d85c38b6eac9f2379c22acac2:log:7', 'hash': '0x3096f7fa4cfa511855a7f6811a8c977e2b2eec9d85c38b6eac9f2379c22acac2', 'from': '0x953cfed17808f64d7233333145839e2f63eede03', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4217.612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02838e78', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T06:25:09.000Z'}}, {'blockNum': '0x58e979', 'uniqueId': '0x171df9f300766ed4e984a63af8c294ab6e5ce07e6b6e523711903b3bbddc79b0:log:17', 'hash': '0x171df9f300766ed4e984a63af8c294ab6e5ce07e6b6e523711903b3bbddc79b0', 'from': '0xa5fc61458397af2215e521126fd10d2bbe60261c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2759.2291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01a50663', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T06:25:09.000Z'}}, {'blockNum': '0x58e98d', 'uniqueId': '0xbac1ffcf1bc3229bf37d6521fd1ae3494dd259a5098abaea31564370d7d4b091:log:124', 'hash': '0xbac1ffcf1bc3229bf37d6521fd1ae3494dd259a5098abaea31564370d7d4b091', 'from': '0x0f4b501d6518e687484bb35e2e67e64cd761fbe1', 'to': '0xa3866bfec8b4a464bd602a9ec4c9fd762fc49fb3', 'value': 680.4198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x67d2e6', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T06:30:16.000Z'}}, {'blockNum': '0x58e98d', 'uniqueId': '0xf838fa24c35da499b6fb48cbdca9074eca19bd9690a0154bd641d4cebe5ca305:log:125', 'hash': '0xf838fa24c35da499b6fb48cbdca9074eca19bd9690a0154bd641d4cebe5ca305', 'from': '0xca086ef9a1f70bf1988ae8c53c235b284d588133', 'to': '0xba6a2128160b0a46b986cdcb304c9b19309a1239', 'value': 522.1953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4fae41', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T06:30:16.000Z'}}, {'blockNum': '0x58e9a7', 'uniqueId': '0x8078c5e31c4c95195c9871770644850de035992cc30e8abd268a4b344f024474:log:8', 'hash': '0x8078c5e31c4c95195c9871770644850de035992cc30e8abd268a4b344f024474', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x35ffb91d808e4005cd4e9d6b0328eea94949e120', 'value': 15697.78, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x095b4a88', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T06:37:49.000Z'}}, {'blockNum': '0x58e9ae', 'uniqueId': '0xa2744148700de01e84b8a76d8e5872c7b7bafbbcf7f744baf5e33c15750a57cb:log:24', 'hash': '0xa2744148700de01e84b8a76d8e5872c7b7bafbbcf7f744baf5e33c15750a57cb', 'from': '0xe646e1c79c52bb1edbfd37762ca65bbc830846d8', 'to': '0x55f415aa29dd130f5bf5bc5ff71e0f2c5c124f12', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4c4b40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T06:40:01.000Z'}}, {'blockNum': '0x58e9bf', 'uniqueId': '0x45cb78e9a049229fa056fd147236e2ba7800b3456936107dfb2f4b6567ea9e36:log:65', 'hash': '0x45cb78e9a049229fa056fd147236e2ba7800b3456936107dfb2f4b6567ea9e36', 'from': '0x35ffb91d808e4005cd4e9d6b0328eea94949e120', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 15697.78, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x095b4a88', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T06:44:38.000Z'}}, {'blockNum': '0x58e9c7', 'uniqueId': '0x531196eac02c909e92b3b54b854bf7630ccac0bd9b3822958534a4a6fb2a617c:log:23', 'hash': '0x531196eac02c909e92b3b54b854bf7630ccac0bd9b3822958534a4a6fb2a617c', 'from': '0xaed223ae548ab6485f38a5634f55d34f8fdf9461', 'to': '0x5d8a85c5a3769c74df8380013173fc15552a9ac7', 'value': 2527.752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0181b450', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T06:46:39.000Z'}}, {'blockNum': '0x58ea06', 'uniqueId': '0x224dffacf7f9438f36f628cd7b72b2220e9bef4866226506276bca932f2aa06b:log:20', 'hash': '0x224dffacf7f9438f36f628cd7b72b2220e9bef4866226506276bca932f2aa06b', 'from': '0x5d8a85c5a3769c74df8380013173fc15552a9ac7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2527.752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0181b450', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T07:05:03.000Z'}}, {'blockNum': '0x58ea31', 'uniqueId': '0xcb601abcd542c1c8159a11731d72dcd10e2b1381f3587e23e0c6e1a1606560a9:log:6', 'hash': '0xcb601abcd542c1c8159a11731d72dcd10e2b1381f3587e23e0c6e1a1606560a9', 'from': '0xa69591974f94c65ef5f91b95c43e92d74f4b5429', 'to': '0x5c976d840e399e642b68f48d3c062f9f77b53fe8', 'value': 330.316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3266f8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T07:15:26.000Z'}}, {'blockNum': '0x58ea4f', 'uniqueId': '0x51beed1d3a0cb3a35406301b4da0479a1e0cd58ea289daf2aaaca51e377a1f6f:log:59', 'hash': '0x51beed1d3a0cb3a35406301b4da0479a1e0cd58ea289daf2aaaca51e377a1f6f', 'from': '0x35dcfafb4e2b0901b8788f3b0751eca218de4e02', 'to': '0x5da82f331c7d6afe6fbc0c67deb254622460acc1', 'value': 1473.913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xe0e6ba', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T07:23:29.000Z'}}, {'blockNum': '0x58ead8', 'uniqueId': '0x78b9a993d2f8c52965eca0c438f21518f95a1669a4e487eee971a3378bb6cbc9:log:49', 'hash': '0x78b9a993d2f8c52965eca0c438f21518f95a1669a4e487eee971a3378bb6cbc9', 'from': '0xc8db230d340af670419c7dde08ff953a48f9fdc4', 'to': '0x4ce67eb2d03e1e0d6c4c1ed2c46eaa300d921a33', 'value': 699.28, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x6ab3a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T07:54:27.000Z'}}, {'blockNum': '0x58ebef', 'uniqueId': '0x96e241c9f5472914f9df1f79bce6a483e9cc1ad4cf0f7959763fc3fabb3af22f:log:85', 'hash': '0x96e241c9f5472914f9df1f79bce6a483e9cc1ad4cf0f7959763fc3fabb3af22f', 'from': '0x5e09a1a869d7de223b982756446bf4fecaa06961', 'to': '0xca086ef9a1f70bf1988ae8c53c235b284d588133', 'value': 181.626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1bb6c4', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:06:59.000Z'}}, {'blockNum': '0x58ebf4', 'uniqueId': '0xfacf1cdfbad70344d26fc1072a3b69e5bffd21b41caf92d458de6b98ba984c6b:log:3', 'hash': '0xfacf1cdfbad70344d26fc1072a3b69e5bffd21b41caf92d458de6b98ba984c6b', 'from': '0x552c830d8d044209d9c976f2a223c58e17d6fa49', 'to': '0x167da288689a679fc6595bf60d3a8529cf38d6a5', 'value': 279.498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2aa5e4', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:08:17.000Z'}}, {'blockNum': '0x58ec01', 'uniqueId': '0x8d01bac62054482974bf5feb11131b450550f24b5cc5d35679b1d6b5f51a7612:log:6', 'hash': '0x8d01bac62054482974bf5feb11131b450550f24b5cc5d35679b1d6b5f51a7612', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x047c32da63ee8d7a04e238e74991f9cb0bbcced3', 'value': 10976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x068ace00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:10:59.000Z'}}, {'blockNum': '0x58ec02', 'uniqueId': '0x62b3907fff6eaa345ffac1573f2efd1bed434708b5bbc92fcddc92a01241b6a7:log:26', 'hash': '0x62b3907fff6eaa345ffac1573f2efd1bed434708b5bbc92fcddc92a01241b6a7', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x24c6a0c2838065f516e508dcfc6510c1c694caf8', 'value': 576.7564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x58018c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:11:15.000Z'}}, {'blockNum': '0x58ec04', 'uniqueId': '0xd950c0275a119deac8bc7a4b29b40cacdbbf2f30f72603ba5532af1045c1d452:log:8', 'hash': '0xd950c0275a119deac8bc7a4b29b40cacdbbf2f30f72603ba5532af1045c1d452', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x24c6a0c2838065f516e508dcfc6510c1c694caf8', 'value': 46.0651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x07076b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:11:33.000Z'}}, {'blockNum': '0x58ec09', 'uniqueId': '0xc6aa59c2ca7f9d96449ad33be87b22633b527f596c91e81a0a464d516299bcd9:log:6', 'hash': '0xc6aa59c2ca7f9d96449ad33be87b22633b527f596c91e81a0a464d516299bcd9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x24c6a0c2838065f516e508dcfc6510c1c694caf8', 'value': 3681.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0231cc50', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:12:11.000Z'}}, {'blockNum': '0x58ec0e', 'uniqueId': '0x28d92feaf86c8b179fddf4f4f9d3a8369215f866cb9615577f55b617bc1e4d32:log:8', 'hash': '0x28d92feaf86c8b179fddf4f4f9d3a8369215f866cb9615577f55b617bc1e4d32', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x24c6a0c2838065f516e508dcfc6510c1c694caf8', 'value': 1262.1326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc0960e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:13:40.000Z'}}, {'blockNum': '0x58ec11', 'uniqueId': '0x1324c72133707d7c51b76e1152594cc4991ded37cd8f9cd03cf80fbd1870738b:log:21', 'hash': '0x1324c72133707d7c51b76e1152594cc4991ded37cd8f9cd03cf80fbd1870738b', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x24c6a0c2838065f516e508dcfc6510c1c694caf8', 'value': 10815.554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x06725294', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:14:33.000Z'}}, {'blockNum': '0x58ec11', 'uniqueId': '0xbd9781463e3305bffd121ba7c341fdf8c4bdc5394987397eac88a79c6d8a5901:log:98', 'hash': '0xbd9781463e3305bffd121ba7c341fdf8c4bdc5394987397eac88a79c6d8a5901', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3a97d83988efc37375716c2794d537c11e35e9e0', 'value': 3992.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x026140c0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:14:33.000Z'}}, {'blockNum': '0x58ec14', 'uniqueId': '0x5381892c5898faf2b13c333f5c811f3943d668bbfc32d7a06ed30c936e67730a:log:2', 'hash': '0x5381892c5898faf2b13c333f5c811f3943d668bbfc32d7a06ed30c936e67730a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x24c6a0c2838065f516e508dcfc6510c1c694caf8', 'value': 1876.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x011e6080', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:16:33.000Z'}}, {'blockNum': '0x58ec15', 'uniqueId': '0x2d1e9d983273d6491909afebe5c896005508ad2f3ca1ad2ec7d289de79b33a87:log:11', 'hash': '0x2d1e9d983273d6491909afebe5c896005508ad2f3ca1ad2ec7d289de79b33a87', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbc0b3e5ca6986ea3309d81a6e37672d149ff5b77', 'value': 797.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x79bc10', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:16:46.000Z'}}, {'blockNum': '0x58ec1c', 'uniqueId': '0xc724b31410b1f5a2110d13d3cabc99f78eff8ae2028e1018b6242eaa95184e3b:log:16', 'hash': '0xc724b31410b1f5a2110d13d3cabc99f78eff8ae2028e1018b6242eaa95184e3b', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x209ff5f7cf3e2d36e7b3ba49ad7325ae8446adcb', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x08f0d180', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:18:11.000Z'}}, {'blockNum': '0x58ec1f', 'uniqueId': '0xd0bded4fc2dec229a95b345628cd35f9ffa185ca0e6298420267fadf6d9c5bbb:log:23', 'hash': '0xd0bded4fc2dec229a95b345628cd35f9ffa185ca0e6298420267fadf6d9c5bbb', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x24c6a0c2838065f516e508dcfc6510c1c694caf8', 'value': 1409.0616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xd70178', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:18:49.000Z'}}, {'blockNum': '0x58ec23', 'uniqueId': '0x55896179574bf3790c68ea4d4954a13fa3022f88aa0fbf825fc25737803d8ffb:log:5', 'hash': '0x55896179574bf3790c68ea4d4954a13fa3022f88aa0fbf825fc25737803d8ffb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc456f8cca211595be64efd1b19895c1e692143ff', 'value': 9821.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x05dab010', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:20:13.000Z'}}, {'blockNum': '0x58ec6d', 'uniqueId': '0x0207b28c20c766bdd45079878b308ff97a97395e53dc4e019d0be1d326f2c618:log:315', 'hash': '0x0207b28c20c766bdd45079878b308ff97a97395e53dc4e019d0be1d326f2c618', 'from': '0xd061040c96b17c00587b79a1b4c45ceae5dc5768', 'to': '0xd29eff0e0e4a786aee19924ce9160b8a1b909480', 'value': 4438.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a546d0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:39:09.000Z'}}, {'blockNum': '0x58ec86', 'uniqueId': '0xe4b1c51c31169ea3a350989e77df84bd7fcfc112e81d22fa7c8febd5a3342515:log:10', 'hash': '0xe4b1c51c31169ea3a350989e77df84bd7fcfc112e81d22fa7c8febd5a3342515', 'from': '0xd29eff0e0e4a786aee19924ce9160b8a1b909480', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4438.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a546d0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:45:26.000Z'}}, {'blockNum': '0x58ec87', 'uniqueId': '0x7dccc897a42a2503d87c6293e019e62c96417c939089f0d8e2fee265352cc7b3:log:14', 'hash': '0x7dccc897a42a2503d87c6293e019e62c96417c939089f0d8e2fee265352cc7b3', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 13169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x07d96e10', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:45:42.000Z'}}, {'blockNum': '0x58eca9', 'uniqueId': '0x3034108139d44fa8b6bcce11e4ce81d4686a6c094ad6fe97e7d0d91dbd2556d4:log:30', 'hash': '0x3034108139d44fa8b6bcce11e4ce81d4686a6c094ad6fe97e7d0d91dbd2556d4', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 12289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x07532710', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:53:07.000Z'}}, {'blockNum': '0x58ecb2', 'uniqueId': '0x1c11f89463d28ff8aaa12952854807fe01a683a3e034672d4d6db66b221c4a19:log:11', 'hash': '0x1c11f89463d28ff8aaa12952854807fe01a683a3e034672d4d6db66b221c4a19', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x07532710', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:55:10.000Z'}}, {'blockNum': '0x58ecbd', 'uniqueId': '0xf4c2b320026ca781e7d14648de5f9ee9286217cc72c8f3dd9d663b2d4e124cf5:log:9', 'hash': '0xf4c2b320026ca781e7d14648de5f9ee9286217cc72c8f3dd9d663b2d4e124cf5', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x35ffb91d808e4005cd4e9d6b0328eea94949e120', 'value': 9992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x05f4a880', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:58:07.000Z'}}, {'blockNum': '0x58ecd3', 'uniqueId': '0x72179eedc90be7dce9152b44f443a1569b9c740ff0b2cd18f30cf222fe69d8e0:log:65', 'hash': '0x72179eedc90be7dce9152b44f443a1569b9c740ff0b2cd18f30cf222fe69d8e0', 'from': '0x46570df7bea0dc88b4f9c337a54edbb88e59d082', 'to': '0xd29eff0e0e4a786aee19924ce9160b8a1b909480', 'value': 4851.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02e43818', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T10:03:11.000Z'}}, {'blockNum': '0x58ecda', 'uniqueId': '0xdce3ebee4426a4e504d90db6cd4ae6d1d216f94038a1f4d1df4ad14bb4d34bcd:log:16', 'hash': '0xdce3ebee4426a4e504d90db6cd4ae6d1d216f94038a1f4d1df4ad14bb4d34bcd', 'from': '0xd29eff0e0e4a786aee19924ce9160b8a1b909480', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4851.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02e43818', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T10:05:17.000Z'}}, {'blockNum': '0x58ecf4', 'uniqueId': '0xa33c06253cf9854252f5d1b830cd6bc23390050a3349a8e073eeab3585857600:log:26', 'hash': '0xa33c06253cf9854252f5d1b830cd6bc23390050a3349a8e073eeab3585857600', 'from': '0x35ffb91d808e4005cd4e9d6b0328eea94949e120', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 9992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x05f4a880', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T10:10:11.000Z'}}, {'blockNum': '0x58ed01', 'uniqueId': '0x611a8b1786a727ff40797491c48ea268307654c431eff6aa470b5b48e54078cc:log:16', 'hash': '0x611a8b1786a727ff40797491c48ea268307654c431eff6aa470b5b48e54078cc', 'from': '0x47440171c78e048abbc7ce35661cca8645220d16', 'to': '0xa0ceff72003177c8755f0a929777c9729b61d519', 'value': 28197.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x10cea8dc', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T10:14:41.000Z'}}, {'blockNum': '0x58ed28', 'uniqueId': '0x13fa6f222e6e33cb8674488bbf896990cbf5ef47a4d804f284e6f3b99eae27b9:log:24', 'hash': '0x13fa6f222e6e33cb8674488bbf896990cbf5ef47a4d804f284e6f3b99eae27b9', 'from': '0x238b1c28c01db3a070e4ed1ca947c5de540bc981', 'to': '0xd29eff0e0e4a786aee19924ce9160b8a1b909480', 'value': 2301.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x015f3df8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T10:24:21.000Z'}}, {'blockNum': '0x58ed2a', 'uniqueId': '0x72bd0d528e44ed6313767131f026bc2e15b12d70eb8c1fb2e17684e064a7fab8:log:40', 'hash': '0x72bd0d528e44ed6313767131f026bc2e15b12d70eb8c1fb2e17684e064a7fab8', 'from': '0xa0ceff72003177c8755f0a929777c9729b61d519', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28197.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x10cea8dc', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T10:25:21.000Z'}}, {'blockNum': '0x58ed54', 'uniqueId': '0x2368ff00f783e2f4d4c33582eb018cc52bb91eb9248d9bea1d0551695b3bf69e:log:7', 'hash': '0x2368ff00f783e2f4d4c33582eb018cc52bb91eb9248d9bea1d0551695b3bf69e', 'from': '0xd29eff0e0e4a786aee19924ce9160b8a1b909480', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2301.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x015f3df8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T10:35:02.000Z'}}, {'blockNum': '0x58ed92', 'uniqueId': '0xf165f16e17838cfbac06a88f6f20697c7a8223d19f6f48789eb16a79fd471e3d:log:28', 'hash': '0xf165f16e17838cfbac06a88f6f20697c7a8223d19f6f48789eb16a79fd471e3d', 'from': '0xa2ee7ac2fe47b5eecc9ce1350ff33160cc52a797', 'to': '0xa2ec7b6337b82c8e0643cbbb37bd404ea3a1c32f', 'value': 405.78, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3deac8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T10:52:23.000Z'}}, {'blockNum': '0x58ed94', 'uniqueId': '0xec3adc1aeb4d904dcda5a129143c2b792200f48acfd70825a5a5fb8b2f8a05f0:log:5', 'hash': '0xec3adc1aeb4d904dcda5a129143c2b792200f48acfd70825a5a5fb8b2f8a05f0', 'from': '0x77042176acaf8d9d3ce21e93e78e5c468df79752', 'to': '0x60fe45993c488b7272f355fd83d10bc26193ad40', 'value': 20940.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0c7b3c78', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T10:52:44.000Z'}}, {'blockNum': '0x58ed99', 'uniqueId': '0x0cd93321f8fb67a292732f1a13506fd3e00d4f8e4dda3be839f1d1bc6d4e2a67:log:48', 'hash': '0x0cd93321f8fb67a292732f1a13506fd3e00d4f8e4dda3be839f1d1bc6d4e2a67', 'from': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'to': '0xe16789540c4db11a4cab31cc4096d614154cc9d6', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4c4b40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T10:53:51.000Z'}}, {'blockNum': '0x58ed9f', 'uniqueId': '0x6c18723f7556e1f509174664d40b74f2e1815eecb9a0a2c933fb46e2662c3f2a:log:11', 'hash': '0x6c18723f7556e1f509174664d40b74f2e1815eecb9a0a2c933fb46e2662c3f2a', 'from': '0x60fe45993c488b7272f355fd83d10bc26193ad40', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20940.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0c7b3c78', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T10:55:29.000Z'}}, {'blockNum': '0x58ee1f', 'uniqueId': '0xc66a0b3a317141d5944a5b89072f2de25556c837673755827fdef000059ca766:log:63', 'hash': '0xc66a0b3a317141d5944a5b89072f2de25556c837673755827fdef000059ca766', 'from': '0x60e0857404755a86167ff907977b1dd5b3411fc9', 'to': '0x5e515972e418c8625d6cc433db6165806d446878', 'value': 12300.367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0754e316', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T11:30:20.000Z'}}, {'blockNum': '0x58ee6c', 'uniqueId': '0xf1e2ccf9dbe2a9ba651185818dc7ab823dbe65d0e1159fe2b6987a7a14567e15:log:25', 'hash': '0xf1e2ccf9dbe2a9ba651185818dc7ab823dbe65d0e1159fe2b6987a7a14567e15', 'from': '0x58f5432a5d626cb08561db032e2aa77b36b632ce', 'to': '0x34ffcbe54fcb898816262032e6919f3be8cad552', 'value': 1800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0112a880', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T11:45:38.000Z'}}, {'blockNum': '0x58ee6c', 'uniqueId': '0x6301bec94b6769995c8bed874211d2cfc3146507275161d99f059cfda6221a94:log:43', 'hash': '0x6301bec94b6769995c8bed874211d2cfc3146507275161d99f059cfda6221a94', 'from': '0x5e515972e418c8625d6cc433db6165806d446878', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12300.367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0754e316', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T11:45:38.000Z'}}, {'blockNum': '0x58ee94', 'uniqueId': '0xb2dbd7dc346a3322c83f5ea4115a67d3a2b380f95ab17e2957f1c3e6a3672a5f:log:20', 'hash': '0xb2dbd7dc346a3322c83f5ea4115a67d3a2b380f95ab17e2957f1c3e6a3672a5f', 'from': '0x34ffcbe54fcb898816262032e6919f3be8cad552', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0112a880', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T11:55:16.000Z'}}, {'blockNum': '0x58ee95', 'uniqueId': '0x9e87654138298492e3e9118d788a54e2cf94006670c30d2b935af093f680e36a:log:19', 'hash': '0x9e87654138298492e3e9118d788a54e2cf94006670c30d2b935af093f680e36a', 'from': '0x58f5432a5d626cb08561db032e2aa77b36b632ce', 'to': '0xb14ac50a02d7d9cfec7131884ba4247fa9d47556', 'value': 139.0518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1537b6', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T11:55:34.000Z'}}, {'blockNum': '0x58eef1', 'uniqueId': '0x1a26a4b0e110c24e197145001c27b36223310bf398757699630c4a9a444b3280:log:17', 'hash': '0x1a26a4b0e110c24e197145001c27b36223310bf398757699630c4a9a444b3280', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T12:15:18.000Z'}}, {'blockNum': '0x58ef10', 'uniqueId': '0x1fafe38c9e7098067580ecbcdcd55f93802ba9f77bad637ed029b349b110c050:log:14', 'hash': '0x1fafe38c9e7098067580ecbcdcd55f93802ba9f77bad637ed029b349b110c050', 'from': '0x1d05d19b79507f73076eb264469810a308e8b07f', 'to': '0x1710e4fbb6c2ff02de77202cea8a0ddb132cca7e', 'value': 659.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x649b14', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T12:24:19.000Z'}}, {'blockNum': '0x58ef14', 'uniqueId': '0x401f1af8eeac607afd2fbe41d453d57ae7d1774da4db282419eefd4b033582e6:log:11', 'hash': '0x401f1af8eeac607afd2fbe41d453d57ae7d1774da4db282419eefd4b033582e6', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T12:25:21.000Z'}}, {'blockNum': '0x58ef32', 'uniqueId': '0x85020317907e05162485d5f170d8f93ee8f020cd1bfa018d81f073aac0f9a739:log:6', 'hash': '0x85020317907e05162485d5f170d8f93ee8f020cd1bfa018d81f073aac0f9a739', 'from': '0xa0ae3e6be5c42ededb6d0909f23402a67defcb6a', 'to': '0x5e72b175a57b74af6c740602b743cfacd1e3603b', 'value': 7910.441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04b7099a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T12:33:02.000Z'}}, {'blockNum': '0x58ef5f', 'uniqueId': '0xd74db9b295cef427565491211df43364bf02e50352abe83a7fa645d55793c329:log:58', 'hash': '0xd74db9b295cef427565491211df43364bf02e50352abe83a7fa645d55793c329', 'from': '0x5e72b175a57b74af6c740602b743cfacd1e3603b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7910.441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04b7099a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T12:44:51.000Z'}}, {'blockNum': '0x58f07b', 'uniqueId': '0xadac5b504406a70fe27c3766cbf7bf13355b72f34d8fcf23e0738610955feb1c:log:115', 'hash': '0xadac5b504406a70fe27c3766cbf7bf13355b72f34d8fcf23e0738610955feb1c', 'from': '0x5b68991ebb3e2ea58dffc72bcbda0f02bbf505ae', 'to': '0xc8ffd046c15a1d88c46fa8f3fb28088ea0d45ffd', 'value': 4534.909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02b3f8e2', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T13:50:06.000Z'}}, {'blockNum': '0x58f080', 'uniqueId': '0xd028d388d103611f560893dbf93d04f105a2f75f58dd65483215a080de17bbd7:log:55', 'hash': '0xd028d388d103611f560893dbf93d04f105a2f75f58dd65483215a080de17bbd7', 'from': '0x6576a8a62c376b4807f226950e73d6b99cb5eab7', 'to': '0x8696493b25f9ba554fe44bc7bc403ac2b6276769', 'value': 17951.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0ab322c0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T13:50:58.000Z'}}, {'blockNum': '0x58f08e', 'uniqueId': '0xf24f864ec70aded51c480154e5220f9090526f1252064f207ded4c39da7ce375:log:15', 'hash': '0xf24f864ec70aded51c480154e5220f9090526f1252064f207ded4c39da7ce375', 'from': '0xb353c044589c50bcfc3e180f91c0acecbbe80f06', 'to': '0xe6f07cfbcb8ce39a977e91f304da0bdab6b12c50', 'value': 6112.752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03a4bb60', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T13:54:23.000Z'}}, {'blockNum': '0x58f091', 'uniqueId': '0x03397650a67d54fb2e4a549e3c38372b95afe629a5396a24a437759e87301152:log:41', 'hash': '0x03397650a67d54fb2e4a549e3c38372b95afe629a5396a24a437759e87301152', 'from': '0xe6f07cfbcb8ce39a977e91f304da0bdab6b12c50', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6112.752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03a4bb60', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T13:55:14.000Z'}}, {'blockNum': '0x58f091', 'uniqueId': '0xfdef86dec1f93d4943557fd02562df3cbab295adb3258f5bc156d1bac7c06a13:log:42', 'hash': '0xfdef86dec1f93d4943557fd02562df3cbab295adb3258f5bc156d1bac7c06a13', 'from': '0x8696493b25f9ba554fe44bc7bc403ac2b6276769', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17951.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0ab322c0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T13:55:14.000Z'}}, {'blockNum': '0x58f091', 'uniqueId': '0x86097edce535959a5a1f1159d7ae38c195c5411cb9d540353532d75e5a71222a:log:43', 'hash': '0x86097edce535959a5a1f1159d7ae38c195c5411cb9d540353532d75e5a71222a', 'from': '0xc8ffd046c15a1d88c46fa8f3fb28088ea0d45ffd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4534.909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02b3f8e2', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T13:55:14.000Z'}}, {'blockNum': '0x58f094', 'uniqueId': '0x7bbf6c3faa8f214b329879e59dc659bec5b4036775c2e3e11145f7dca29ba81c:log:49', 'hash': '0x7bbf6c3faa8f214b329879e59dc659bec5b4036775c2e3e11145f7dca29ba81c', 'from': '0x3d8f560bca91fad4de7f26ca79ddb3b5f5d645b1', 'to': '0x5e95670a9adeff948893b1f6d8b356c11c0530ab', 'value': 1232.0703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xbbffbf', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T13:56:42.000Z'}}, {'blockNum': '0x58f0b2', 'uniqueId': '0xd08738c052c807d42f1268594c513486b399b63c33acdec54242401f0c51b0c0:log:42', 'hash': '0xd08738c052c807d42f1268594c513486b399b63c33acdec54242401f0c51b0c0', 'from': '0x68c6eb2117b1aca8497a1ac2b554f02ff3b8a15c', 'to': '0x5e9b8284257b06dd24d278c0af2ca208b6e4caec', 'value': 523.2053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4fd5b5', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:03:05.000Z'}}, {'blockNum': '0x58f0b6', 'uniqueId': '0x53e994c9d096a58291ead7fa6266841b6832ac9d81fb38d7c39add1bd313f694:log:0', 'hash': '0x53e994c9d096a58291ead7fa6266841b6832ac9d81fb38d7c39add1bd313f694', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 33983.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x14418430', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:03:38.000Z'}}, {'blockNum': '0x58f0d4', 'uniqueId': '0xf5ac12a59044ef602cef3d04a29d83368d0290d7dcc5759aeb76d78252c0850d:log:24', 'hash': '0xf5ac12a59044ef602cef3d04a29d83368d0290d7dcc5759aeb76d78252c0850d', 'from': '0xbb719823321cd1ba7f360653667d3e36fe6052f7', 'to': '0x4b8b9e86252c6bd49bcba15e589be263fb8b5edb', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04c4b400', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:11:14.000Z'}}, {'blockNum': '0x58f0e3', 'uniqueId': '0xf1837fee2fb849ff3a7b22c80d29392b777e18ec8a6d19c0ed1b4e05ce1916aa:log:31', 'hash': '0xf1837fee2fb849ff3a7b22c80d29392b777e18ec8a6d19c0ed1b4e05ce1916aa', 'from': '0x4b8b9e86252c6bd49bcba15e589be263fb8b5edb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04c4b400', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:15:21.000Z'}}, {'blockNum': '0x58f0f1', 'uniqueId': '0x40648286bc298f2a9933fb82c986428d2f31efb394fb0749d71d250083d91411:log:77', 'hash': '0x40648286bc298f2a9933fb82c986428d2f31efb394fb0749d71d250083d91411', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0x736576018f8afa9d5a22b43769804cd3efdb1129', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0186a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:18:00.000Z'}}, {'blockNum': '0x58f0f5', 'uniqueId': '0xc7d5464b8661f6be97e30022d21a1151de270aaf1e48381465988da255d1e4c0:log:2', 'hash': '0xc7d5464b8661f6be97e30022d21a1151de270aaf1e48381465988da255d1e4c0', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 11150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x06a55ae0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:18:55.000Z'}}, {'blockNum': '0x58f0fc', 'uniqueId': '0x4d8c02ce2d6122e2ad30e1463b3801c569cb069e1f21dc27be259b4c7b692c9f:log:38', 'hash': '0x4d8c02ce2d6122e2ad30e1463b3801c569cb069e1f21dc27be259b4c7b692c9f', 'from': '0xcae999273065ef8e243d602949af96e9f9b5abd1', 'to': '0x5eb5e980b990771b58c6f61bbb4bfd1a533b050a', 'value': 4687.9994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02cb54fa', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:20:52.000Z'}}, {'blockNum': '0x58f121', 'uniqueId': '0x6bd5b7d83a44abc3dbd5ced2b224c6a843492905db089dff897d4bd555e4a3fb:log:18', 'hash': '0x6bd5b7d83a44abc3dbd5ced2b224c6a843492905db089dff897d4bd555e4a3fb', 'from': '0xa24a85128a15b134cde93776f2e5701fa8f2972e', 'to': '0x44aa2cce7ed479d19ab3fc5ffe8e5c2f1011bb54', 'value': 3867.4415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x024e1fef', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:27:23.000Z'}}, {'blockNum': '0x58f12d', 'uniqueId': '0xbd510c12a07399b9ba843a38b5fa1fc822bca0c8ed457ba574c02ca472775521:log:0', 'hash': '0xbd510c12a07399b9ba843a38b5fa1fc822bca0c8ed457ba574c02ca472775521', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x35e3b32061b28b98e8f4e90cf9da959f55fcb341', 'value': 17.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02b750', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:32:14.000Z'}}, {'blockNum': '0x58f12d', 'uniqueId': '0x1e40a3e0c44326200b4e8fe7237f77e43614cd4b0cab6a967d952183469600dc:log:12', 'hash': '0x1e40a3e0c44326200b4e8fe7237f77e43614cd4b0cab6a967d952183469600dc', 'from': '0xe24c4218cc192fbc10b9c9c5aa3ca01ea12b60d1', 'to': '0xb3967f64961eabd99e7fd1be22660f27d5a293a3', 'value': 238.85, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x247214', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:32:14.000Z'}}, {'blockNum': '0x58f12f', 'uniqueId': '0xe8128327aee7f057d36fcd90cc49e8dd79d4f7fb383ae1eda3b5ac0bc2ec26f2:log:33', 'hash': '0xe8128327aee7f057d36fcd90cc49e8dd79d4f7fb383ae1eda3b5ac0bc2ec26f2', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0x164dafaa5846873ad57ed69c3393ca6013ddae03', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:32:41.000Z'}}, {'blockNum': '0x58f13a', 'uniqueId': '0x3790403264cce1c593b4ccc08794349fcc6e09ab7f4f17efc1ccbb82257af194:log:24', 'hash': '0x3790403264cce1c593b4ccc08794349fcc6e09ab7f4f17efc1ccbb82257af194', 'from': '0x5eb5e980b990771b58c6f61bbb4bfd1a533b050a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4687.9994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02cb54fa', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:35:26.000Z'}}, {'blockNum': '0x58f13c', 'uniqueId': '0xd8546da848f10980f58a886f9428fa4e613539c91cc8239addf6c28e76ac3a7b:log:87', 'hash': '0xd8546da848f10980f58a886f9428fa4e613539c91cc8239addf6c28e76ac3a7b', 'from': '0xa24a85128a15b134cde93776f2e5701fa8f2972e', 'to': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1e8480', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:36:07.000Z'}}, {'blockNum': '0x58f14a', 'uniqueId': '0x28a07251064063139ec5e4c4e46413d86cd1c74a9ef88d4f0cccf9ff0f80030e:log:12', 'hash': '0x28a07251064063139ec5e4c4e46413d86cd1c74a9ef88d4f0cccf9ff0f80030e', 'from': '0x9ed1b9fd44d09e8d8653ad22d71487c57870f60b', 'to': '0x440ea12c698cdaa4c7a6defd0660b9feff2328ec', 'value': 124.567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1301e6', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:39:20.000Z'}}, {'blockNum': '0x58f14c', 'uniqueId': '0x4a3377c924ce178890785ea28035dc1418aea92961a1776910f6a52fa78fba15:log:40', 'hash': '0x4a3377c924ce178890785ea28035dc1418aea92961a1776910f6a52fa78fba15', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0x164dafaa5846873ad57ed69c3393ca6013ddae03', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4c4b40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:39:48.000Z'}}, {'blockNum': '0x58f159', 'uniqueId': '0x87c5f47369f2aab998af221a49bd46e4b7f9164eb21130b660f58d96c1773e13:log:27', 'hash': '0x87c5f47369f2aab998af221a49bd46e4b7f9164eb21130b660f58d96c1773e13', 'from': '0xba7c355fc6c8e85e62a669d1e46d5f06e41abecb', 'to': '0x4f2146d4bbab6d0de0036596eb9f31839bc4aed5', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:44:11.000Z'}}, {'blockNum': '0x58f15d', 'uniqueId': '0x96fae39d250044860acde26314a03220771f6689588d9cee4bbe3331acae5cb7:log:16', 'hash': '0x96fae39d250044860acde26314a03220771f6689588d9cee4bbe3331acae5cb7', 'from': '0x4f2146d4bbab6d0de0036596eb9f31839bc4aed5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:45:07.000Z'}}, {'blockNum': '0x58f174', 'uniqueId': '0xbc74706dd83b3b560bbdd41be84b2f142e7ddd354870214981664ffed49c1938:log:8', 'hash': '0xbc74706dd83b3b560bbdd41be84b2f142e7ddd354870214981664ffed49c1938', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 32070, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x131d7e60', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:52:52.000Z'}}, {'blockNum': '0x58f180', 'uniqueId': '0xbe47cfffd672b4785c265f49253bbbb601211391b343be6918720c8b035e3140:log:8', 'hash': '0xbe47cfffd672b4785c265f49253bbbb601211391b343be6918720c8b035e3140', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32070, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x131d7e60', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:55:03.000Z'}}, {'blockNum': '0x58f1d0', 'uniqueId': '0x74bec1d6771df56e9023128ac93390ac5c945b1ba418d32d928fff4789815894:log:6', 'hash': '0x74bec1d6771df56e9023128ac93390ac5c945b1ba418d32d928fff4789815894', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'value': 35416.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x151c2cc0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:11:46.000Z'}}, {'blockNum': '0x58f1e3', 'uniqueId': '0x1038d11b2870ede48228b7889425390b6b260c85712dd8a847796b69cabb3dad:log:70', 'hash': '0x1038d11b2870ede48228b7889425390b6b260c85712dd8a847796b69cabb3dad', 'from': '0x6cc47be912a07fbe9cebe68c9e103fdf123b7269', 'to': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0186a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:17:01.000Z'}}, {'blockNum': '0x58f1f4', 'uniqueId': '0x79c1bddb2d241f8ec39e2c7787bc28256791af3ad6dd08195d46abddb948a008:log:14', 'hash': '0x79c1bddb2d241f8ec39e2c7787bc28256791af3ad6dd08195d46abddb948a008', 'from': '0x526273ce314c1536474457d45aba0cdb42ef89c2', 'to': '0x6f7aa4fb43521eced84ecc27db54f8171fb3483f', 'value': 1040.8506, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x9ed23a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:21:07.000Z'}}, {'blockNum': '0x58f212', 'uniqueId': '0x1dba8155d4ee7a9e1aca0fc903ae92a0f293f1983ee959bc5dac0d005c4f932d:log:98', 'hash': '0x1dba8155d4ee7a9e1aca0fc903ae92a0f293f1983ee959bc5dac0d005c4f932d', 'from': '0x2aab2b157a03915c8a73adae735d0cf51c872f31', 'to': '0x964f35fae36d75b1e72770e244f6595b68508cf5', 'value': 1.0339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2863', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:26:59.000Z'}}, {'blockNum': '0x58f212', 'uniqueId': '0x1dba8155d4ee7a9e1aca0fc903ae92a0f293f1983ee959bc5dac0d005c4f932d:log:100', 'hash': '0x1dba8155d4ee7a9e1aca0fc903ae92a0f293f1983ee959bc5dac0d005c4f932d', 'from': '0x964f35fae36d75b1e72770e244f6595b68508cf5', 'to': '0xc96265c36f6d77747f9c259946a1ef55fce946b7', 'value': 1.0339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2863', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:26:59.000Z'}}, {'blockNum': '0x58f21e', 'uniqueId': '0xf9bf7a729023d8b834e2d631eea4fdd5562de91ee30fc121d1e6a0d2487b3c04:log:114', 'hash': '0xf9bf7a729023d8b834e2d631eea4fdd5562de91ee30fc121d1e6a0d2487b3c04', 'from': '0x6cc47be912a07fbe9cebe68c9e103fdf123b7269', 'to': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'value': 43360.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x19d84d70', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:30:25.000Z'}}, {'blockNum': '0x58f248', 'uniqueId': '0xa67cb134eeb814d59cbedebd9380260ed8efeef72456fadd81d04023916a8b26:log:6', 'hash': '0xa67cb134eeb814d59cbedebd9380260ed8efeef72456fadd81d04023916a8b26', 'from': '0xe52f973d49eea27888092591bb5428c7086d7bbe', 'to': '0x604716e01dad83fe1b0f065be1957b014692e17c', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0bebc200', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:40:39.000Z'}}, {'blockNum': '0x58f248', 'uniqueId': '0x2cdd7ce488de0b4897d21658c609d08b8e127d407724c4822ced0375096afc8c:log:26', 'hash': '0x2cdd7ce488de0b4897d21658c609d08b8e127d407724c4822ced0375096afc8c', 'from': '0x5d73dd185fcfc5171914147d9029d34b5e3d32ab', 'to': '0xe565ca087e48c2a6f9518e4e3cfce40e6294d16c', 'value': 1760.7258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x010caa5a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:40:39.000Z'}}, {'blockNum': '0x58f258', 'uniqueId': '0x096654ae2b9ef31733d91eb7051d49c0bbff9c7d4bf80dabd03583cb4c26a6d0:log:95', 'hash': '0x096654ae2b9ef31733d91eb7051d49c0bbff9c7d4bf80dabd03583cb4c26a6d0', 'from': '0x44aa2cce7ed479d19ab3fc5ffe8e5c2f1011bb54', 'to': '0xdbd6f75aedebdf1c3d2b7085229450200e410fbb', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2625a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:45:06.000Z'}}, {'blockNum': '0x58f25e', 'uniqueId': '0xb93220ccc35436a210005a54e93e83b062e4bb553ef8c96e040981551a2cd465:log:17', 'hash': '0xb93220ccc35436a210005a54e93e83b062e4bb553ef8c96e040981551a2cd465', 'from': '0xe565ca087e48c2a6f9518e4e3cfce40e6294d16c', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 1760.7258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x010caa5a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:46:45.000Z'}}, {'blockNum': '0x58f26a', 'uniqueId': '0x689edb05dacbe25ac96b1b2a05eb036d79f4eb09333a04297224919b8f458e1d:log:76', 'hash': '0x689edb05dacbe25ac96b1b2a05eb036d79f4eb09333a04297224919b8f458e1d', 'from': '0x149b392ead67c219c07573513bddc04a222f9983', 'to': '0xb1c81ce63b37f565960f401bc7bf3200267d7f53', 'value': 1216.173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xb992c2', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:50:00.000Z'}}, {'blockNum': '0x58f284', 'uniqueId': '0x4cf450a4320dc2f2d5baaebd42d5978333abc09aefb38caf3ae229426e966484:log:23', 'hash': '0x4cf450a4320dc2f2d5baaebd42d5978333abc09aefb38caf3ae229426e966484', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0xfe5d0e7ead95e98fc8d8aff6654eea88c493b787', 'value': 122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x129da0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:55:33.000Z'}}, {'blockNum': '0x58f2c6', 'uniqueId': '0x5d026c011a542b7c138b452b7a43382132b1c8a035f3ca070f1d261279143b1f:log:22', 'hash': '0x5d026c011a542b7c138b452b7a43382132b1c8a035f3ca070f1d261279143b1f', 'from': '0xfde7cd2c2b63bf7d58016982d0ee48707913f3e2', 'to': '0xf8e014085b876af7517f06f4db90fd379241a5c9', 'value': 382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3a49e0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T16:10:56.000Z'}}, {'blockNum': '0x58f302', 'uniqueId': '0x516427f6e898996fa0ef775542687f17c1ad7719c247cd0f10a9f87bf562c64b:log:39', 'hash': '0x516427f6e898996fa0ef775542687f17c1ad7719c247cd0f10a9f87bf562c64b', 'from': '0x604716e01dad83fe1b0f065be1957b014692e17c', 'to': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0bebc200', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T16:28:05.000Z'}}, {'blockNum': '0x58f317', 'uniqueId': '0xe113ace0abdf33d5775e1f9769c060d73ed4a6b1ed85803b83ba47d9d0ee981d:log:3', 'hash': '0xe113ace0abdf33d5775e1f9769c060d73ed4a6b1ed85803b83ba47d9d0ee981d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29982.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11df0320', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T16:35:00.000Z'}}, {'blockNum': '0x58f37d', 'uniqueId': '0x85d84767907c616d9cc62d98d71cc24198d164ac7a82409e9f61362142da5c2d:log:11', 'hash': '0x85d84767907c616d9cc62d98d71cc24198d164ac7a82409e9f61362142da5c2d', 'from': '0x70874601fb2caf319912649e2e015e3001377e9d', 'to': '0x3d18f09c3a2618f1024a826cce51059143a59f83', 'value': 549.9305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x53e9a9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T17:03:04.000Z'}}, {'blockNum': '0x58f38f', 'uniqueId': '0x0280d0893190ef230a72a356f1afa30cf8c11fb7208fec105df725263f91082b:log:38', 'hash': '0x0280d0893190ef230a72a356f1afa30cf8c11fb7208fec105df725263f91082b', 'from': '0x3d18f09c3a2618f1024a826cce51059143a59f83', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 549.9305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x53e9a9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T17:08:10.000Z'}}, {'blockNum': '0x58f3e4', 'uniqueId': '0x5c00f30f43bd197a50824eed2f476c975ee89e7d068223879cf1d2a58e011d67:log:37', 'hash': '0x5c00f30f43bd197a50824eed2f476c975ee89e7d068223879cf1d2a58e011d67', 'from': '0x24e536f626d72e36a771e83a40d880a3b1489531', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 1.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4650', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T17:28:43.000Z'}}, {'blockNum': '0x58f3f5', 'uniqueId': '0x87d9f0784fd2110bd375be93af3923c2924ff7e1c69a3c40682365869b37fe21:log:53', 'hash': '0x87d9f0784fd2110bd375be93af3923c2924ff7e1c69a3c40682365869b37fe21', 'from': '0xf8c1f6ceadae0d86380110cd14f5d680e7d4d770', 'to': '0x4bdab0124adc48b9fd2e4adb4ded25e107969bec', 'value': 7590.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x048643a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T17:31:46.000Z'}}, {'blockNum': '0x58f3f8', 'uniqueId': '0xec7ff4874a88c5140e008d2774dfc840ab27b1e6713def29f8486e59ac778ce9:log:23', 'hash': '0xec7ff4874a88c5140e008d2774dfc840ab27b1e6713def29f8486e59ac778ce9', 'from': '0xe009ce5e7a5c74508ffa805af3109ae406313ead', 'to': '0x55dfe279fe76bedf57ffafa12d45f6185c6e9698', 'value': 559.2841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x555709', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T17:32:10.000Z'}}, {'blockNum': '0x58f404', 'uniqueId': '0x7d50be8a24f0d8621a03e308e7ecdb58ba503585c123bc6900def351544d6f27:log:7', 'hash': '0x7d50be8a24f0d8621a03e308e7ecdb58ba503585c123bc6900def351544d6f27', 'from': '0x4bdab0124adc48b9fd2e4adb4ded25e107969bec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7590.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x048643a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T17:35:07.000Z'}}, {'blockNum': '0x58f46a', 'uniqueId': '0x098a68dec955b41a7196bbf8ad0d5c23e02bbe5f2987e6b03e1c82cb91627383:log:35', 'hash': '0x098a68dec955b41a7196bbf8ad0d5c23e02bbe5f2987e6b03e1c82cb91627383', 'from': '0x6cbebdbeae718ef80b4a02e76db0f250b5a6a7e4', 'to': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:02:37.000Z'}}, {'blockNum': '0x58f495', 'uniqueId': '0x7e08267c168c502a8cc77889f4c91c351eb5ae9772f6fe09355347f00a768458:log:26', 'hash': '0x7e08267c168c502a8cc77889f4c91c351eb5ae9772f6fe09355347f00a768458', 'from': '0xa4cc11f129569acb16e971985f66e85296e95979', 'to': '0x3e734d94f784b936aa5a5315584575a5986a1930', 'value': 5258.668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x032268b8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:14:17.000Z'}}, {'blockNum': '0x58f4c1', 'uniqueId': '0x4b3cb6f1460b659f31189bebc8197a42345c365275e2f65952fe5f8f52b7da22:log:92', 'hash': '0x4b3cb6f1460b659f31189bebc8197a42345c365275e2f65952fe5f8f52b7da22', 'from': '0x3e734d94f784b936aa5a5315584575a5986a1930', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5258.668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x032268b8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:24:55.000Z'}}, {'blockNum': '0x58f4c9', 'uniqueId': '0xc68ca87dae12b737d15c7eb5db44e8ecdcd375f3d501dc14778ac6fe393797cb:log:5', 'hash': '0xc68ca87dae12b737d15c7eb5db44e8ecdcd375f3d501dc14778ac6fe393797cb', 'from': '0x180620d521555b6f08cc7259e687ea3e1ae3a20f', 'to': '0x5f1886b36643a71d0be0f5d6c43fc46363998ca5', 'value': 2233.941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0154df52', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:26:43.000Z'}}, {'blockNum': '0x58f4d4', 'uniqueId': '0xf571aac7a0a17015a6eafa7eed8f1adc2c2c102e1f312b1cd47cef3b1c218850:log:47', 'hash': '0xf571aac7a0a17015a6eafa7eed8f1adc2c2c102e1f312b1cd47cef3b1c218850', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0xfef8b8e5a3152f8f96d5b4e9a6c03e50d40fbc47', 'value': 1450.116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xdd4528', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:30:10.000Z'}}, {'blockNum': '0x58f507', 'uniqueId': '0xb881ca5bba026562e74c7b7360e926900f80864b3b9af3f35d8497cf28bc307c:log:12', 'hash': '0xb881ca5bba026562e74c7b7360e926900f80864b3b9af3f35d8497cf28bc307c', 'from': '0xb1a09eee781974874c5cdf2a2ea6554bb38eef03', 'to': '0x964f35fae36d75b1e72770e244f6595b68508cf5', 'value': 7314.164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x045c0d88', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:40:53.000Z'}}, {'blockNum': '0x58f507', 'uniqueId': '0xb881ca5bba026562e74c7b7360e926900f80864b3b9af3f35d8497cf28bc307c:log:13', 'hash': '0xb881ca5bba026562e74c7b7360e926900f80864b3b9af3f35d8497cf28bc307c', 'from': '0x964f35fae36d75b1e72770e244f6595b68508cf5', 'to': '0x2aab2b157a03915c8a73adae735d0cf51c872f31', 'value': 7314.164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x045c0d88', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:40:53.000Z'}}, {'blockNum': '0x58f508', 'uniqueId': '0x67beb2a46d4181fe6206fb662cc83ddbb00d3f2f1345355584f4b5e5d83b1821:log:70', 'hash': '0x67beb2a46d4181fe6206fb662cc83ddbb00d3f2f1345355584f4b5e5d83b1821', 'from': '0xe009ce5e7a5c74508ffa805af3109ae406313ead', 'to': '0x55dfe279fe76bedf57ffafa12d45f6185c6e9698', 'value': 1803.4618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01132fba', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:40:57.000Z'}}, {'blockNum': '0x58f50a', 'uniqueId': '0xb3fbba7ff2a7574fce4c60d4671e330bcdcea971dc7a2e0538e5c186fa0f6b06:log:2', 'hash': '0xb3fbba7ff2a7574fce4c60d4671e330bcdcea971dc7a2e0538e5c186fa0f6b06', 'from': '0x2aab2b157a03915c8a73adae735d0cf51c872f31', 'to': '0xfc2b4d1ad1adc695092c1503eeb3f32a816e5651', 'value': 8829.5632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x054348d0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:41:28.000Z'}}, {'blockNum': '0x58f50d', 'uniqueId': '0xb9fdba1cd78f25c9adc63b9a080c4726f772f1035a8141dc55a7d0a657ddceab:log:158', 'hash': '0xb9fdba1cd78f25c9adc63b9a080c4726f772f1035a8141dc55a7d0a657ddceab', 'from': '0xd1bf177daca4da2a744b2660a4fad0c3677bfe7b', 'to': '0x9d76a2f9182a0865da8dad6ce1ffe0c7b79f7151', 'value': 521.774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4f9dcc', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:42:10.000Z'}}, {'blockNum': '0x58f51c', 'uniqueId': '0xf51f3fb52d273bba133fdfcc305158f080e10fff5c660cb11f734d1e1339e87d:log:100', 'hash': '0xf51f3fb52d273bba133fdfcc305158f080e10fff5c660cb11f734d1e1339e87d', 'from': '0x55dfe279fe76bedf57ffafa12d45f6185c6e9698', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2362.7459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x016886c3', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:45:07.000Z'}}, {'blockNum': '0x58f51c', 'uniqueId': '0xcf5d6dc7fdbafcca7bd8220c3df4c9e287d5eefc4ce3cc7ed883c64530137891:log:101', 'hash': '0xcf5d6dc7fdbafcca7bd8220c3df4c9e287d5eefc4ce3cc7ed883c64530137891', 'from': '0x5f1886b36643a71d0be0f5d6c43fc46363998ca5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2233.941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0154df52', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:45:07.000Z'}}, {'blockNum': '0x58f52c', 'uniqueId': '0x4ce7adb0706e97be1779a7a9e18cce1f35cadb5c3cb93a0c4a0b9827f097a98a:log:26', 'hash': '0x4ce7adb0706e97be1779a7a9e18cce1f35cadb5c3cb93a0c4a0b9827f097a98a', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0x736576018f8afa9d5a22b43769804cd3efdb1129', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0186a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:47:24.000Z'}}, {'blockNum': '0x58f575', 'uniqueId': '0xd8a7f9fa410308b4585d1171846dbcfb54efba74c3eda1337688789a5b940795:log:22', 'hash': '0xd8a7f9fa410308b4585d1171846dbcfb54efba74c3eda1337688789a5b940795', 'from': '0xb14ac50a02d7d9cfec7131884ba4247fa9d47556', 'to': '0x34ffcbe54fcb898816262032e6919f3be8cad552', 'value': 139.0518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1537b6', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T19:04:14.000Z'}}, {'blockNum': '0x58f5d7', 'uniqueId': '0xdd7b033c6268d048b911fdf90f4293693a701ae47439ded056c59f5058520435:log:44', 'hash': '0xdd7b033c6268d048b911fdf90f4293693a701ae47439ded056c59f5058520435', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfd422ac29012299e674ffd713989b38265f1363b', 'value': 1108.673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xa92b8a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T19:29:20.000Z'}}, {'blockNum': '0x58f5e7', 'uniqueId': '0x11c79e2ea3393489c24d480336b33fc1a28c8a3d475d8e5d010b00f559dabb21:log:26', 'hash': '0x11c79e2ea3393489c24d480336b33fc1a28c8a3d475d8e5d010b00f559dabb21', 'from': '0x30cd3269ede00db90562f67ebfa727f993bb6454', 'to': '0xa3620deb7254f84be20bfb50d418cabda1d360c1', 'value': 122.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x12a570', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T19:33:35.000Z'}}, {'blockNum': '0x58f5fd', 'uniqueId': '0x51e39c92d558de1352c69c3380025d45741fe809261eff3a18e700c91492d8a8:log:0', 'hash': '0x51e39c92d558de1352c69c3380025d45741fe809261eff3a18e700c91492d8a8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x10119a1167f9a32a368af8c1c428545e22bcb78a', 'value': 32.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x050140', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T19:39:28.000Z'}}, {'blockNum': '0x58f60c', 'uniqueId': '0x271f0426e60dacc04685f12aec80e8bebe94228d549f33e52264ae7b5002f05b:log:12', 'hash': '0x271f0426e60dacc04685f12aec80e8bebe94228d549f33e52264ae7b5002f05b', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 31953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x130ba410', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T19:42:39.000Z'}}, {'blockNum': '0x58f61b', 'uniqueId': '0x1b437f35f761da94e527b7918162606a16130afe25563f6c0c4a93a57fc620ff:log:43', 'hash': '0x1b437f35f761da94e527b7918162606a16130afe25563f6c0c4a93a57fc620ff', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x130ba410', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T19:44:59.000Z'}}, {'blockNum': '0x58f62f', 'uniqueId': '0x18ab0a0accc40de4ded81d83301d6415e922e92a94a264fdef4f38cdac63943b:log:59', 'hash': '0x18ab0a0accc40de4ded81d83301d6415e922e92a94a264fdef4f38cdac63943b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x10119a1167f9a32a368af8c1c428545e22bcb78a', 'value': 8632.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x052542c0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T19:51:09.000Z'}}, {'blockNum': '0x58f657', 'uniqueId': '0xca9151c3ab69042dcbbdf824ccb0612b7c449461828a339b4e46c4a281e09277:log:7', 'hash': '0xca9151c3ab69042dcbbdf824ccb0612b7c449461828a339b4e46c4a281e09277', 'from': '0x2e1a10028ff38e201979855b8469a1a4fb3de179', 'to': '0x4fb18b2d04a1824fa5464272cbf7bd38f4f9045f', 'value': 12863.683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x07aad79e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T19:59:40.000Z'}}, {'blockNum': '0x58f680', 'uniqueId': '0x8baebaec7930ef563390416bcf98575648ba4beefbd405c0e07dbd7509fb8bab:log:49', 'hash': '0x8baebaec7930ef563390416bcf98575648ba4beefbd405c0e07dbd7509fb8bab', 'from': '0x0305d6aa020f922328546383742bbf4276e9dce6', 'to': '0x5e7508557e28570d73b9bd8dfa346df89278361a', 'value': 1983.734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x012eb19c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T20:08:19.000Z'}}, {'blockNum': '0x58f69d', 'uniqueId': '0x1447c5cd1e12b35e53b4b8b700c8e540864726a30cda062ea8daf0bc91ae73fa:log:10', 'hash': '0x1447c5cd1e12b35e53b4b8b700c8e540864726a30cda062ea8daf0bc91ae73fa', 'from': '0x5e7508557e28570d73b9bd8dfa346df89278361a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1983.734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x012eb19c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T20:15:23.000Z'}}, {'blockNum': '0x58f717', 'uniqueId': '0xd8a258b07e4763c827a2a5c9b29db4c0e92058f20f14de46728f9ff7ccc3526a:log:2', 'hash': '0xd8a258b07e4763c827a2a5c9b29db4c0e92058f20f14de46728f9ff7ccc3526a', 'from': '0xba7e26c70d6c003ec059207007c193003bd95318', 'to': '0x730473054a736cdfc3c314e43538a4b055e4da9c', 'value': 4076.0935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x026df667', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T20:46:07.000Z'}}, {'blockNum': '0x58f73a', 'uniqueId': '0x6b879d4870e07a630bb129a655b9b1719b6b0dc545d3aeb860998db16e283a0d:log:6', 'hash': '0x6b879d4870e07a630bb129a655b9b1719b6b0dc545d3aeb860998db16e283a0d', 'from': '0x730473054a736cdfc3c314e43538a4b055e4da9c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4076.0935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x026df667', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T20:55:35.000Z'}}, {'blockNum': '0x58f7da', 'uniqueId': '0xe92f0a621962a107a09bfd57e7b3ada3cb95616a65ded0d64ece2dfb998a9a54:log:21', 'hash': '0xe92f0a621962a107a09bfd57e7b3ada3cb95616a65ded0d64ece2dfb998a9a54', 'from': '0x8181d7c3d6fcb9b5cf04bc25b177345f23a75bb7', 'to': '0xfc3be0a5816cf0bbc3a9c956a5975d2223d34e9d', 'value': 580, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x588040', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T21:33:23.000Z'}}, {'blockNum': '0x58f867', 'uniqueId': '0x1351b44336fdc44cec1c12f8fe33a8f068e6c7fee5e8b60c4bec2f156c49b1ef:log:21', 'hash': '0x1351b44336fdc44cec1c12f8fe33a8f068e6c7fee5e8b60c4bec2f156c49b1ef', 'from': '0x0ad88f8753a695435998a5f18d77bb509a29513c', 'to': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T22:09:34.000Z'}}, {'blockNum': '0x58f8e5', 'uniqueId': '0xb0728660ae3b148a2ee226d40398914e4f12903559b6540433238d44772b26a5:log:9', 'hash': '0xb0728660ae3b148a2ee226d40398914e4f12903559b6540433238d44772b26a5', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x24e536f626d72e36a771e83a40d880a3b1489531', 'value': 2.644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x6748', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T22:42:12.000Z'}}, {'blockNum': '0x58f940', 'uniqueId': '0x7fe4275384e44b224943431be92bddf63d07d55841e439b2d8f86df69b45068a:log:17', 'hash': '0x7fe4275384e44b224943431be92bddf63d07d55841e439b2d8f86df69b45068a', 'from': '0x0f2e442093ebc72259fdb27c973d2e2968edd77f', 'to': '0xc6118cf056255eb8fd77f90a4ad5809c22f27e2d', 'value': 2966.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01c4aad0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T23:04:13.000Z'}}, {'blockNum': '0x58f945', 'uniqueId': '0x31f3bbb9bf4891906993a3a0b72add868bfe9ebb6456e87df01d2b15ad363d17:log:1', 'hash': '0x31f3bbb9bf4891906993a3a0b72add868bfe9ebb6456e87df01d2b15ad363d17', 'from': '0xc6118cf056255eb8fd77f90a4ad5809c22f27e2d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2966.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01c4aad0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T23:05:05.000Z'}}, {'blockNum': '0x58f9ba', 'uniqueId': '0xba123dc5ed44f560dc4b25b546ac7138f505656cee86d9042df443ba30425fc7:log:0', 'hash': '0xba123dc5ed44f560dc4b25b546ac7138f505656cee86d9042df443ba30425fc7', 'from': '0x2c506ab4cbce71af4a1d7a2e7df77dba1b2a33fa', 'to': '0xebf99bac7b4ff26ae9872fde1641c902b14a5632', 'value': 1044.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x9f64b0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T23:35:06.000Z'}}, {'blockNum': '0x58f9db', 'uniqueId': '0xd8ecb38d92f3985056ddbd2b28e2f0c691bfad45c7636d4089db31e5e0dba238:log:3', 'hash': '0xd8ecb38d92f3985056ddbd2b28e2f0c691bfad45c7636d4089db31e5e0dba238', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x036bb9e3f4e02efbf1c111293ab5883ecfff401f', 'value': 364.3633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3798f1', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T23:40:21.000Z'}}, {'blockNum': '0x58f9e6', 'uniqueId': '0x268adc4eb14b3e40607a1925904af91612791a028b65e902ee257ddd28ae2116:log:1', 'hash': '0x268adc4eb14b3e40607a1925904af91612791a028b65e902ee257ddd28ae2116', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 32286.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x133e9320', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T23:43:02.000Z'}}]}}
Number of returned transfers: 180
Answer is complete
symbol SUB
group FCS
date 2018-12-27
hour 12:30
exchange binance
Name: 466, dtype: object
HERE
{}
No contract for ethereum specified
Symbol: SUB, Contract: 0x8d75959f1e61ec2571aa72798237101f084de63a
Datetime timestamps: 2018-12-27 12:30:00 2018-12-27 00:30:00 2018-12-28 00:30:00
Unix timestamps: 1545867000.0 1545953400.0
Hex Block Numbers: 0x6a2f3f 0x6a464f
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x6a2f7d', 'uniqueId': '0x3bf98d149b60e908258803ad17cbe38428cf470f76a9eb94b0b6c0b458535919:log:13', 'hash': '0x3bf98d149b60e908258803ad17cbe38428cf470f76a9eb94b0b6c0b458535919', 'from': '0xa2e01883a00e07eea2883152d5cd19f48f092a20', 'to': '0xab959f743f4eaefa26474125d644c4bda856b314', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-26T23:45:25.000Z'}}, {'blockNum': '0x6a2f96', 'uniqueId': '0x8b438e42336903027205194cbd519fd12b1dd116618a11eec8bb1aa8959504eb:log:8', 'hash': '0x8b438e42336903027205194cbd519fd12b1dd116618a11eec8bb1aa8959504eb', 'from': '0xa2e01883a00e07eea2883152d5cd19f48f092a20', 'to': '0xab959f743f4eaefa26474125d644c4bda856b314', 'value': 2731.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x940e2e6fccd45a0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-26T23:50:35.000Z'}}, {'blockNum': '0x6a2fd6', 'uniqueId': '0x76ead13a48228af03c5547a4fcf3018f6998ba94fe4f5ee61a26f463d6c5b437:log:11', 'hash': '0x76ead13a48228af03c5547a4fcf3018f6998ba94fe4f5ee61a26f463d6c5b437', 'from': '0xab959f743f4eaefa26474125d644c4bda856b314', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2733.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x9429efdd3423220000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T00:04:06.000Z'}}, {'blockNum': '0x6a2ffa', 'uniqueId': '0x494159fab393c28ebe556969068bba0263f43ee245ada7a4418f056f60ab3a99:log:13', 'hash': '0x494159fab393c28ebe556969068bba0263f43ee245ada7a4418f056f60ab3a99', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x92dc9f3b997b4a9f5d42d4d2270b2f5e0e4b48f2', 'value': 983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x3549dd8bd7c0fc0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T00:14:02.000Z'}}, {'blockNum': '0x6a302e', 'uniqueId': '0xb75e746d37a7836d524bf0b89ae4e56eefd6918eafb2fdd4a22292156b35f435:log:126', 'hash': '0xb75e746d37a7836d524bf0b89ae4e56eefd6918eafb2fdd4a22292156b35f435', 'from': '0xa54badc85cbde1493228d6c68d497e41c0e154d1', 'to': '0x03c7cd29ed8d2ca11ac864d1e862ab3ae6e0ba17', 'value': 1.4680064e-11, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0xe00000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T00:28:35.000Z'}}, {'blockNum': '0x6a317a', 'uniqueId': '0x6c18aeaa3b7c2a0e110bb3c085e4c60e484567c5c24931280a0cf16db5a2a829:log:32', 'hash': '0x6c18aeaa3b7c2a0e110bb3c085e4c60e484567c5c24931280a0cf16db5a2a829', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbf6e86e2ebc86aa5e14f5835279f8eb146546102', 'value': 4127.85, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0xdfc56d28b6a0310000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T01:49:09.000Z'}}, {'blockNum': '0x6a3289', 'uniqueId': '0xe18b58858f7578caa2a2316ea2e73ffbd15455993a6c4dd66f37270395cf9a7c:log:83', 'hash': '0xe18b58858f7578caa2a2316ea2e73ffbd15455993a6c4dd66f37270395cf9a7c', 'from': '0xa54badc85cbde1493228d6c68d497e41c0e154d1', 'to': '0x03c7cd29ed8d2ca11ac864d1e862ab3ae6e0ba17', 'value': 1.464467e-12, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x165893', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T03:02:38.000Z'}}, {'blockNum': '0x6a32b9', 'uniqueId': '0x53fbac3eb79ef42d52455072310040bff614f030579f654678b20e0773962b6d:log:3', 'hash': '0x53fbac3eb79ef42d52455072310040bff614f030579f654678b20e0773962b6d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7d36862d287fb1fec3a38b0a3f8788966722ad8c', 'value': 77, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x042c96f40959140000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T03:14:30.000Z'}}, {'blockNum': '0x6a3395', 'uniqueId': '0x964b8b0cf048dd2e113407a2f0f839dcfab5ee17efd16352b4ab199630dfa28f:log:7', 'hash': '0x964b8b0cf048dd2e113407a2f0f839dcfab5ee17efd16352b4ab199630dfa28f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7d36862d287fb1fec3a38b0a3f8788966722ad8c', 'value': 584.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x1faa040f4e39aa0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T04:11:54.000Z'}}, {'blockNum': '0x6a34c0', 'uniqueId': '0xcdae0e65f4041c5f4aa721552f6a15c1bcb8ece95145a6d87da98ba903dbf03d:log:99', 'hash': '0xcdae0e65f4041c5f4aa721552f6a15c1bcb8ece95145a6d87da98ba903dbf03d', 'from': '0xd028f1a8847e1f05480b1aaa359c4ad25a62b3ea', 'to': '0x6f45c0d960042339dccdda2a4dada3e054300bbf', 'value': 5030.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0110b6fcb435859e0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T05:26:41.000Z'}}, {'blockNum': '0x6a3506', 'uniqueId': '0x6723663f4ce247a377961a53065127d5a8665dfb661d1e07def5d45f8a5e80e3:log:9', 'hash': '0x6723663f4ce247a377961a53065127d5a8665dfb661d1e07def5d45f8a5e80e3', 'from': '0x6f45c0d960042339dccdda2a4dada3e054300bbf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5030.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0110b6fcb435859e0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T05:44:21.000Z'}}, {'blockNum': '0x6a3705', 'uniqueId': '0x795a6bbe4985f1b57ca93baebf8a8a4d6c7ee548172083ed84590b4d8bafd1d2:log:5', 'hash': '0x795a6bbe4985f1b57ca93baebf8a8a4d6c7ee548172083ed84590b4d8bafd1d2', 'from': '0x5e56f5f909c12b99596fc5a2583d669a889f5b66', 'to': '0x07a05bad8570ab71d53b1500fd247a87693f6e8f', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T07:48:06.000Z'}}, {'blockNum': '0x6a374e', 'uniqueId': '0xb31b8b34f9df91654b14c430e260a17c16c690923c7ef1621298f9d3259eb1c1:log:12', 'hash': '0xb31b8b34f9df91654b14c430e260a17c16c690923c7ef1621298f9d3259eb1c1', 'from': '0x5e56f5f909c12b99596fc5a2583d669a889f5b66', 'to': '0x07a05bad8570ab71d53b1500fd247a87693f6e8f', 'value': 69829.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0ec97c41dd707a4c0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T08:04:55.000Z'}}, {'blockNum': '0x6a3771', 'uniqueId': '0x27220746af5406c4a2907aab6f6332d39e367c8277953f3feee6cfe9d1f34683:log:22', 'hash': '0x27220746af5406c4a2907aab6f6332d39e367c8277953f3feee6cfe9d1f34683', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd20be7d7fd5de701f52bbecba38dfd662df06f16', 'value': 17, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0xebec21ee1da40000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T08:13:39.000Z'}}, {'blockNum': '0x6a3790', 'uniqueId': '0xe7e7d92cd339b960e6eeb5914431301e6308120b50d86b73b95d5ad26cc85aca:log:7', 'hash': '0xe7e7d92cd339b960e6eeb5914431301e6308120b50d86b73b95d5ad26cc85aca', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd20be7d7fd5de701f52bbecba38dfd662df06f16', 'value': 17104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x039f35aec31fc9400000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T08:22:07.000Z'}}, {'blockNum': '0x6a379c', 'uniqueId': '0x0e0f65a4f047c9fbe90f5f86c959353ce89c0dafe87d9971f8fc14c43080cb2c:log:33', 'hash': '0x0e0f65a4f047c9fbe90f5f86c959353ce89c0dafe87d9971f8fc14c43080cb2c', 'from': '0x07a05bad8570ab71d53b1500fd247a87693f6e8f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 69979.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0ed19deceab48ee40000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T08:24:42.000Z'}}, {'blockNum': '0x6a38b9', 'uniqueId': '0xf7c73fd07dcd7a023f42de06db1570b844d9ce505ffecb50127840bf91d5938c:log:3', 'hash': '0xf7c73fd07dcd7a023f42de06db1570b844d9ce505ffecb50127840bf91d5938c', 'from': '0x75b8d82b6c41ac1f83f61e8341c57bd429712fd5', 'to': '0x158e982c51a13e0d75a6899e185a620aa569d155', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T09:40:20.000Z'}}, {'blockNum': '0x6a38bc', 'uniqueId': '0x5abc01e6457d4ac28e27acd7f5a6d5145c6b25b27cabcf91801a175cb75a9253:log:2', 'hash': '0x5abc01e6457d4ac28e27acd7f5a6d5145c6b25b27cabcf91801a175cb75a9253', 'from': '0x75b8d82b6c41ac1f83f61e8341c57bd429712fd5', 'to': '0x158e982c51a13e0d75a6899e185a620aa569d155', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T09:41:40.000Z'}}, {'blockNum': '0x6a38e6', 'uniqueId': '0x49af2270cbd5ca1419cddcfa9d1bf249b076d596cf1354e50244815ce96c12cc:log:9', 'hash': '0x49af2270cbd5ca1419cddcfa9d1bf249b076d596cf1354e50244815ce96c12cc', 'from': '0x75b8d82b6c41ac1f83f61e8341c57bd429712fd5', 'to': '0x158e982c51a13e0d75a6899e185a620aa569d155', 'value': 28934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x062083e9951910580000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T09:49:56.000Z'}}, {'blockNum': '0x6a392e', 'uniqueId': '0xe4eadc555170343011b2f875fa4f2302eb36b67f6dac520bc230549121338d4b:log:6', 'hash': '0xe4eadc555170343011b2f875fa4f2302eb36b67f6dac520bc230549121338d4b', 'from': '0x158e982c51a13e0d75a6899e185a620aa569d155', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x06209fab02805f200000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T10:04:20.000Z'}}, {'blockNum': '0x6a3a30', 'uniqueId': '0xd20bc1fd7de5158a6ca482e639a7c70b06db4b0660dd0e359e5424dd912a05ea:log:5', 'hash': '0xd20bc1fd7de5158a6ca482e639a7c70b06db4b0660dd0e359e5424dd912a05ea', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8fd849b0b3a109c895c135d4ea0848fc06a5aee8', 'value': 137.84, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0778ea0db13fd80000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T11:07:33.000Z'}}, {'blockNum': '0x6a3be3', 'uniqueId': '0xb469909c672c165914c8e4ae2c218c16bd15e821818cfa1302d28e137080b156:log:14', 'hash': '0xb469909c672c165914c8e4ae2c218c16bd15e821818cfa1302d28e137080b156', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6057fb4f60f9242947fe3b2d6c1c8a95bf88a8e6', 'value': 3210.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0xae0e3ef8aa19340000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T12:49:27.000Z'}}, {'blockNum': '0x6a3c49', 'uniqueId': '0x1dd0ab32333ec6681e3c04d2f4d392ce0b23855c05ffd46dfda17b5674e51891:log:0', 'hash': '0x1dd0ab32333ec6681e3c04d2f4d392ce0b23855c05ffd46dfda17b5674e51891', 'from': '0xc8f33a3833f532241e8d0598b2387355688d39c3', 'to': '0x3c56278cb1ab1c5893471a561b1d23b73d0b6b1c', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T13:16:48.000Z'}}, {'blockNum': '0x6a3c4b', 'uniqueId': '0xb53b648ed0483a5da0fc6445424db856b95befd308188d3c2e02f3266d3d6659:log:20', 'hash': '0xb53b648ed0483a5da0fc6445424db856b95befd308188d3c2e02f3266d3d6659', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x5bb5717c3e9170001c70770b7d724e97f8589fc3', 'value': 5.009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x45838af60fee8000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T13:17:51.000Z'}}, {'blockNum': '0x6a3c74', 'uniqueId': '0x27baf974d44f7bd2515b6d8f55523c068216a5c8b8a84133f4884de988bb8f58:log:3', 'hash': '0x27baf974d44f7bd2515b6d8f55523c068216a5c8b8a84133f4884de988bb8f58', 'from': '0xc8f33a3833f532241e8d0598b2387355688d39c3', 'to': '0x3c56278cb1ab1c5893471a561b1d23b73d0b6b1c', 'value': 34285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x074297f47a48eb940000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T13:26:04.000Z'}}, {'blockNum': '0x6a3c92', 'uniqueId': '0xcee2171942a5d804c33794a9cca534d16023d9b30c3bea0ee93f5a0a74247c88:log:18', 'hash': '0xcee2171942a5d804c33794a9cca534d16023d9b30c3bea0ee93f5a0a74247c88', 'from': '0x3c56278cb1ab1c5893471a561b1d23b73d0b6b1c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0748d3e68cfd1d800000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T13:34:08.000Z'}}, {'blockNum': '0x6a3cf2', 'uniqueId': '0xba6e81cfc36b5ba210120e7fa008da698102d818743aa008c957b84066cc9e97:log:6', 'hash': '0xba6e81cfc36b5ba210120e7fa008da698102d818743aa008c957b84066cc9e97', 'from': '0x48e61bc4c144936296b2f3747587ec2e2d4c2307', 'to': '0xb6973537713aa1b4a1ccbd847d99e3c0e100463a', 'value': 379.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x149425a3bd72090000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T13:56:30.000Z'}}, {'blockNum': '0x6a3d5d', 'uniqueId': '0x4e028d924fac75266ea7290067647481a1ea44ae81d5b5132a3093b96e438f67:log:3', 'hash': '0x4e028d924fac75266ea7290067647481a1ea44ae81d5b5132a3093b96e438f67', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6e02d5770e12c63582758668516eb05f05eacaea', 'value': 8752.22, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x01da7573b6c045560000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T14:19:47.000Z'}}, {'blockNum': '0x6a3de3', 'uniqueId': '0xd3bd49cf92bada03c470dc7b3e9b68bbfadc72ebfbc96ec9a449880bc5c99304:log:55', 'hash': '0xd3bd49cf92bada03c470dc7b3e9b68bbfadc72ebfbc96ec9a449880bc5c99304', 'from': '0xe81e8aa3af684e2940176afb096c813605966b38', 'to': '0x13f1620a7ba8a8a742513e812280e0ab1689e976', 'value': 1426.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x4d5271a0ed42aa0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T14:53:01.000Z'}}, {'blockNum': '0x6a3de4', 'uniqueId': '0x5e6d03ff37a10248a9ec2782a21688f214c1e77ecea882c39fb13786c0daddaa:log:48', 'hash': '0x5e6d03ff37a10248a9ec2782a21688f214c1e77ecea882c39fb13786c0daddaa', 'from': '0xe81e8aa3af684e2940176afb096c813605966b38', 'to': '0x7ed0679b11c6b341210e1f66209952d726853ef3', 'value': 218.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0bdf18c4bdc2cb0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T14:53:12.000Z'}}, {'blockNum': '0x6a3df8', 'uniqueId': '0x69f48e53049a23cc8421c3751d5ca215ab0116c570e4a63b879f27c3ec44264f:log:18', 'hash': '0x69f48e53049a23cc8421c3751d5ca215ab0116c570e4a63b879f27c3ec44264f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa2f34db3ec5dd7f09b5972cc76bc44582d2b189b', 'value': 2930.05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x9ed69cb6ee054d0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T14:59:51.000Z'}}, {'blockNum': '0x6a3e3a', 'uniqueId': '0x546868b082d7139e8c132b490fe9371e683c41e1a22b35ef6eb9d1d3a48a0af7:log:30', 'hash': '0x546868b082d7139e8c132b490fe9371e683c41e1a22b35ef6eb9d1d3a48a0af7', 'from': '0x13f1620a7ba8a8a742513e812280e0ab1689e976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1426.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x4d5271a0ed42aa0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T15:14:29.000Z'}}, {'blockNum': '0x6a3f11', 'uniqueId': '0xa9a99560a2f40329ec29ade9843d3346cc1363987e87c9a8f61af867ebd31fdf:log:2', 'hash': '0xa9a99560a2f40329ec29ade9843d3346cc1363987e87c9a8f61af867ebd31fdf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x232015ce5fcf93373a4958bb2a1f258461f27e14', 'value': 15065.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0330b95d0370d59e0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T16:08:54.000Z'}}, {'blockNum': '0x6a3f70', 'uniqueId': '0x22e20eb4069eb45d62db0c6b0a8d301060c5574aabe68c622f65cf77786a918a:log:38', 'hash': '0x22e20eb4069eb45d62db0c6b0a8d301060c5574aabe68c622f65cf77786a918a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd028f1a8847e1f05480b1aaa359c4ad25a62b3ea', 'value': 5009.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x010f932322a17b270000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T16:29:57.000Z'}}, {'blockNum': '0x6a3fa7', 'uniqueId': '0xeebe8c56d7eb77855dbacbc849e9054588b1df3bb67978431ca78f196d98829c:log:20', 'hash': '0xeebe8c56d7eb77855dbacbc849e9054588b1df3bb67978431ca78f196d98829c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x233c2bc75e0a6320b705c9e1bd25e64b6dbedf79', 'value': 21730.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0499ff855d4ea09f0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T16:41:37.000Z'}}, {'blockNum': '0x6a404c', 'uniqueId': '0xd9613230e4019086d98b036fddbeaf25a2a3ecc37b872a20f3defcd00bf68b00:log:68', 'hash': '0xd9613230e4019086d98b036fddbeaf25a2a3ecc37b872a20f3defcd00bf68b00', 'from': '0xe81e8aa3af684e2940176afb096c813605966b38', 'to': '0x0945f63b9ff06bbb34146dd7f31a36d3a15294e3', 'value': 803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x2b87dd15860eac0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T17:24:26.000Z'}}, {'blockNum': '0x6a4165', 'uniqueId': '0x7efd4ce3671106ffde5e4a113eb408d53586da06b81509f240989f09ad75862d:log:4', 'hash': '0x7efd4ce3671106ffde5e4a113eb408d53586da06b81509f240989f09ad75862d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3f1713187d101ec36feae66179b26586e407a286', 'value': 4560.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0xf735a071f8d0150000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T18:32:22.000Z'}}, {'blockNum': '0x6a41bd', 'uniqueId': '0xec84662e62feb16ba48fe9c29962e209266a422f0bbc1b169b17ab3ac1933677:log:4', 'hash': '0xec84662e62feb16ba48fe9c29962e209266a422f0bbc1b169b17ab3ac1933677', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x864bf5de2f20c879631ab8ce67a239aeba6d2dcf', 'value': 1536.339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x5348fc94a08adb8000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T18:55:24.000Z'}}, {'blockNum': '0x6a41ef', 'uniqueId': '0xf3cfe0083c737672ec5e0deedccb9acac911f34b9856e981dc6f5adfe93cd933:log:10', 'hash': '0xf3cfe0083c737672ec5e0deedccb9acac911f34b9856e981dc6f5adfe93cd933', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x233c2bc75e0a6320b705c9e1bd25e64b6dbedf79', 'value': 40072.87, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x087c5ac965d5d7b70000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T19:07:45.000Z'}}, {'blockNum': '0x6a41f7', 'uniqueId': '0x02b7cbd279824fcc6c793fe62ca69dcc3c192e9c86aea36b0446f37bee0e2f70:log:3', 'hash': '0x02b7cbd279824fcc6c793fe62ca69dcc3c192e9c86aea36b0446f37bee0e2f70', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4c4e867210f1b0a2b0d52d7cde71cbb2c8c52d60', 'value': 1089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x3b08e9323b10640000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T19:09:43.000Z'}}, {'blockNum': '0x6a4208', 'uniqueId': '0x3162921893f365fb020b122625c4b28bdbeb37df63301e545f3ff8ebdc31098c:log:9', 'hash': '0x3162921893f365fb020b122625c4b28bdbeb37df63301e545f3ff8ebdc31098c', 'from': '0x864bf5de2f20c879631ab8ce67a239aeba6d2dcf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1536.339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x5348fc94a08adb8000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T19:14:18.000Z'}}, {'blockNum': '0x6a4302', 'uniqueId': '0xc1350ed16c6b7bd2222321e37dde0c50fd80928772c68cd1b243c8a64bef8ed0:log:146', 'hash': '0xc1350ed16c6b7bd2222321e37dde0c50fd80928772c68cd1b243c8a64bef8ed0', 'from': '0xbedf42770ff6a30c184c331b7961eaca6afe7f9e', 'to': '0x4cd13f456a66d0420856584d1d59564d57de0920', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T20:09:46.000Z'}}, {'blockNum': '0x6a4338', 'uniqueId': '0xdc0f93fcaafceb45e459d5d3e414201c961ac6ed3b0cd5fb4f2e1fa67f82ac73:log:1', 'hash': '0xdc0f93fcaafceb45e459d5d3e414201c961ac6ed3b0cd5fb4f2e1fa67f82ac73', 'from': '0xbedf42770ff6a30c184c331b7961eaca6afe7f9e', 'to': '0x4cd13f456a66d0420856584d1d59564d57de0920', 'value': 894.64, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x307f9fc3fe7f780000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T20:22:48.000Z'}}, {'blockNum': '0x6a438f', 'uniqueId': '0x1af2c32e4e96a7505dd2516f912d6934cd7d0c508cb2a49cdc9437f3207ecb85:log:8', 'hash': '0x1af2c32e4e96a7505dd2516f912d6934cd7d0c508cb2a49cdc9437f3207ecb85', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf39fef1c0eadb9403b85a1a36221bac5b130bee9', 'value': 318.66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x11464bbdaabdfa0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T20:46:53.000Z'}}, {'blockNum': '0x6a44b4', 'uniqueId': '0xffc226f409d48887123c377f8e1c3798e6d2fabc2a03303d5e26bbb2dae59ca4:log:6', 'hash': '0xffc226f409d48887123c377f8e1c3798e6d2fabc2a03303d5e26bbb2dae59ca4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xac3e744bd9f449d45c6d10efeb94546868b7bdfe', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T21:51:24.000Z'}}, {'blockNum': '0x6a45c4', 'uniqueId': '0x7df6b846d9728b3d5768bcd30beb1aee671ebfa6742c617bcd0e1f6275c15a4b:log:2', 'hash': '0x7df6b846d9728b3d5768bcd30beb1aee671ebfa6742c617bcd0e1f6275c15a4b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x47ee340afe92d4b8caabd7abd0f6abc3d0927358', 'value': 1482.86, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x5062d1017893be0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T22:52:42.000Z'}}]}}
Number of returned transfers: 46
Answer is complete
symbol BQX
group FCS
date 2018-12-30
hour 12:29
exchange binance
Name: 467, dtype: object
HERE
Symbol: BQX, Contract:
Datetime timestamps: 2018-12-30 12:29:00 2018-12-30 00:29:00 2018-12-31 00:29:00
Unix timestamps: 1546126140.0 1546212540.0
Hex Block Numbers: 0x6a749b 0x6a8ba0
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR: {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
symbol RLC
group LUX
date 2018-04-09
hour 15:00
exchange binance
Name: 468, dtype: object
HERE
Symbol: RLC, Contract: 0x607f4c5bb672230e8672085532f7e901544a7375
Datetime timestamps: 2018-04-09 15:00:00 2018-04-09 03:00:00 2018-04-10 03:00:00
Unix timestamps: 1523235600.0 1523322000.0
Hex Block Numbers: 0x527e8e 0x529610
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x527ea7', 'uniqueId': '0xcd8c90aed1f7ed74d278e5e1548b0d500a2fbf1558c79a3e49fce1512242bafd:log:5', 'hash': '0xcd8c90aed1f7ed74d278e5e1548b0d500a2fbf1558c79a3e49fce1512242bafd', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x9cec5c02a0991c41bed035c0f43efbf767ddad5d', 'value': 74.77743375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1169151696', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:06:29.000Z'}}, {'blockNum': '0x527eb3', 'uniqueId': '0xef08306926e9f2382be90a1582cf94cedc234903189a1fe8d8c43131d7a3453c:log:2', 'hash': '0xef08306926e9f2382be90a1582cf94cedc234903189a1fe8d8c43131d7a3453c', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0xebe860f99bbaf5254f60c39077c543662ba4b779', 'value': 18.92269746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0467e172f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:08:25.000Z'}}, {'blockNum': '0x527f3e', 'uniqueId': '0x6ad02ca37567b7afe2766920f4364b32a3fa25ff279d985a5b4292c8ac0bbc21:log:43', 'hash': '0x6ad02ca37567b7afe2766920f4364b32a3fa25ff279d985a5b4292c8ac0bbc21', 'from': '0x78bdb3419fedee4378a0ed9dc9fa6cf4b79aae3e', 'to': '0x158f81ba7f9a4524f7f641fcc622000ade72c859', 'value': 210.58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x31078bcd00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:38:24.000Z'}}, {'blockNum': '0x527f3f', 'uniqueId': '0xa0c3b066c3c94161458c0809c8a28c572c7dbc98573bad3b09fbc19551317710:log:42', 'hash': '0xa0c3b066c3c94161458c0809c8a28c572c7dbc98573bad3b09fbc19551317710', 'from': '0x4da9b0345d3ce291b43733fca01ef5d4e14baede', 'to': '0x5089c0744987b6af803a7f9b24fed99f3b0f626e', 'value': 1005.923905492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xea35bcafd4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:39:02.000Z'}}, {'blockNum': '0x527f4d', 'uniqueId': '0xb9ca2ed0eb6623e032adfab6d646b64cccbe929f064818dd95b7ad284fa0e17f:log:6', 'hash': '0xb9ca2ed0eb6623e032adfab6d646b64cccbe929f064818dd95b7ad284fa0e17f', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0xd17f8fed964c95349ff05ee5f956c32b8b61e3c7', 'value': 582.18723789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x878d104202', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:43:51.000Z'}}, {'blockNum': '0x527f64', 'uniqueId': '0xb948f8a8728fcda881d53a1aa47e9a4831574355441f594123f575e6a612e608:log:52', 'hash': '0xb948f8a8728fcda881d53a1aa47e9a4831574355441f594123f575e6a612e608', 'from': '0x158f81ba7f9a4524f7f641fcc622000ade72c859', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 210.58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x31078bcd00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:49:24.000Z'}}, {'blockNum': '0x527fe8', 'uniqueId': '0x695699d0a62cfa2a9aed6a308a18d8c3b4413eeeebc91065b9946a8441d666eb:log:70', 'hash': '0x695699d0a62cfa2a9aed6a308a18d8c3b4413eeeebc91065b9946a8441d666eb', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.7063e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xb7d7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T02:25:10.000Z'}}, {'blockNum': '0x527fe8', 'uniqueId': '0x695699d0a62cfa2a9aed6a308a18d8c3b4413eeeebc91065b9946a8441d666eb:log:72', 'hash': '0x695699d0a62cfa2a9aed6a308a18d8c3b4413eeeebc91065b9946a8441d666eb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 4.7063e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xb7d7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T02:25:10.000Z'}}, {'blockNum': '0x528009', 'uniqueId': '0x6679ebf5b15315075bc74b42587d60fc1913d2ef405ecacff624cdf1b5ee2860:log:18', 'hash': '0x6679ebf5b15315075bc74b42587d60fc1913d2ef405ecacff624cdf1b5ee2860', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T02:33:15.000Z'}}, {'blockNum': '0x528009', 'uniqueId': '0x6679ebf5b15315075bc74b42587d60fc1913d2ef405ecacff624cdf1b5ee2860:log:20', 'hash': '0x6679ebf5b15315075bc74b42587d60fc1913d2ef405ecacff624cdf1b5ee2860', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 1e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T02:33:15.000Z'}}, {'blockNum': '0x528035', 'uniqueId': '0x4ccc0fbdd3ac2367c1fcf115188bc0d522e75430099957e44739d4ee1e0417ed:log:1', 'hash': '0x4ccc0fbdd3ac2367c1fcf115188bc0d522e75430099957e44739d4ee1e0417ed', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa63db76400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T02:44:22.000Z'}}, {'blockNum': '0x528082', 'uniqueId': '0xe9c692ecd3a5422739fd6ed0be1777d30dd6dcf9c80effe28902cc27f843008c:log:64', 'hash': '0xe9c692ecd3a5422739fd6ed0be1777d30dd6dcf9c80effe28902cc27f843008c', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 376.076589163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x578fe9586b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:05:54.000Z'}}, {'blockNum': '0x528082', 'uniqueId': '0xe9c692ecd3a5422739fd6ed0be1777d30dd6dcf9c80effe28902cc27f843008c:log:66', 'hash': '0xe9c692ecd3a5422739fd6ed0be1777d30dd6dcf9c80effe28902cc27f843008c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 376.076589163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x578fe9586b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:05:54.000Z'}}, {'blockNum': '0x528085', 'uniqueId': '0x210128e28d9538032c38fade2baa32119de1c43169361e0badcaf6d2e7a2885f:log:26', 'hash': '0x210128e28d9538032c38fade2baa32119de1c43169361e0badcaf6d2e7a2885f', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 372.238359927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x56ab229d77', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:07:16.000Z'}}, {'blockNum': '0x528085', 'uniqueId': '0x210128e28d9538032c38fade2baa32119de1c43169361e0badcaf6d2e7a2885f:log:28', 'hash': '0x210128e28d9538032c38fade2baa32119de1c43169361e0badcaf6d2e7a2885f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 372.238359927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x56ab229d77', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:07:16.000Z'}}, {'blockNum': '0x52808e', 'uniqueId': '0xab596f1fd41ecd02095f1429364187b238aa8d931c77eea2e388de91a381ff38:log:28', 'hash': '0xab596f1fd41ecd02095f1429364187b238aa8d931c77eea2e388de91a381ff38', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0x059a62926ab1df24a6ffff082ccef1d5c6a3bc7e', 'value': 745.913446459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xadabe7f03b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:08:19.000Z'}}, {'blockNum': '0x52808e', 'uniqueId': '0x49d226a403b390f43a3570a378d889e146efc20c2a6a82cf6b0752613eda91e3:log:47', 'hash': '0x49d226a403b390f43a3570a378d889e146efc20c2a6a82cf6b0752613eda91e3', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 695.66674086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa1f8f80e7c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:08:19.000Z'}}, {'blockNum': '0x52808e', 'uniqueId': '0x49d226a403b390f43a3570a378d889e146efc20c2a6a82cf6b0752613eda91e3:log:49', 'hash': '0x49d226a403b390f43a3570a378d889e146efc20c2a6a82cf6b0752613eda91e3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 695.66674086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa1f8f80e7c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:08:19.000Z'}}, {'blockNum': '0x528090', 'uniqueId': '0x35cc65f1d7870c3fe4082ede8007d48235657063cd1254ad75364fa832a757d2:log:6', 'hash': '0x35cc65f1d7870c3fe4082ede8007d48235657063cd1254ad75364fa832a757d2', 'from': '0x059a62926ab1df24a6ffff082ccef1d5c6a3bc7e', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 745.913446459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xadabe7f03b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:08:30.000Z'}}, {'blockNum': '0x528095', 'uniqueId': '0x5d17c4f80f47d36a2bdb3e0db59eea96b6f2e0d8eebfe4d10a6daaebd64317dc:log:69', 'hash': '0x5d17c4f80f47d36a2bdb3e0db59eea96b6f2e0d8eebfe4d10a6daaebd64317dc', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 678.982095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9e167c9098', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:09:41.000Z'}}, {'blockNum': '0x528099', 'uniqueId': '0xf12ba1bc2a47c0249e39ccfe35269e2aa521636e2847dde25ba93e4e627a4a14:log:2', 'hash': '0xf12ba1bc2a47c0249e39ccfe35269e2aa521636e2847dde25ba93e4e627a4a14', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'value': 19336.79816813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x119632fc6442', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:11:20.000Z'}}, {'blockNum': '0x52809a', 'uniqueId': '0xfec1ae0aed92c731f581011967ea709c0b3460e7abcaaeb8870ae955f405fc3c:log:8', 'hash': '0xfec1ae0aed92c731f581011967ea709c0b3460e7abcaaeb8870ae955f405fc3c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'value': 6497.96947226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05e8ed298304', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:11:23.000Z'}}, {'blockNum': '0x5280a1', 'uniqueId': '0x8abcd234a2bf857f814e8867c64cc53ff4aa9f10dcb14e4221addc9d86d99d70:log:121', 'hash': '0x8abcd234a2bf857f814e8867c64cc53ff4aa9f10dcb14e4221addc9d86d99d70', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'value': 17900.20191412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1047b72d2f08', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:12:26.000Z'}}, {'blockNum': '0x5280a3', 'uniqueId': '0xaad95295d07ea45085fd39cbe3d9a8cc7c927c2178c19f687527f94999af4a6c:log:36', 'hash': '0xaad95295d07ea45085fd39cbe3d9a8cc7c927c2178c19f687527f94999af4a6c', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 447.208042601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x681fad3069', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:13:17.000Z'}}, {'blockNum': '0x5280a3', 'uniqueId': '0xaad95295d07ea45085fd39cbe3d9a8cc7c927c2178c19f687527f94999af4a6c:log:38', 'hash': '0xaad95295d07ea45085fd39cbe3d9a8cc7c927c2178c19f687527f94999af4a6c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 447.208042601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x681fad3069', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:13:17.000Z'}}, {'blockNum': '0x5280a5', 'uniqueId': '0x1463ec32fca6c1235652df89b0dc106cdc6945c14478f26407e8066736b1c75d:log:8', 'hash': '0x1463ec32fca6c1235652df89b0dc106cdc6945c14478f26407e8066736b1c75d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0f155f84f44e5fd47b53f74f31256a2d8f955591', 'value': 28047.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x19823f649800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:13:32.000Z'}}, {'blockNum': '0x5280ae', 'uniqueId': '0xeffecae583941f7471cfa1bf11dc053f588ec98730d698123c999bb0d9733a92:log:6', 'hash': '0xeffecae583941f7471cfa1bf11dc053f588ec98730d698123c999bb0d9733a92', 'from': '0xf946001634c5a8f864812b1887a64566d79e1306', 'to': '0x237cd16ad77ed39e18dd2a958be24ef238750e6c', 'value': 1588.658466501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0171e36c6ec5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:14:41.000Z'}}, {'blockNum': '0x5280bf', 'uniqueId': '0x12d2641a26e8dcfc0eadc79ff37cbbb9c895db8c1fae01524b5b247e5378f587:log:14', 'hash': '0x12d2641a26e8dcfc0eadc79ff37cbbb9c895db8c1fae01524b5b247e5378f587', 'from': '0x237cd16ad77ed39e18dd2a958be24ef238750e6c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1588.658466501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0171e36c6ec5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:19:04.000Z'}}, {'blockNum': '0x5280c0', 'uniqueId': '0x30f6d7097f70c392e092f0fd439294af40ccecd0546485351e2e980ba8f8e8bf:log:20', 'hash': '0x30f6d7097f70c392e092f0fd439294af40ccecd0546485351e2e980ba8f8e8bf', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 678.982095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9e167c9098', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:19:19.000Z'}}, {'blockNum': '0x5280c1', 'uniqueId': '0xfd86b02d192a2e76fded7570b1970b3a202199af9b94879c4a3ba187420baa32:log:2', 'hash': '0xfd86b02d192a2e76fded7570b1970b3a202199af9b94879c4a3ba187420baa32', 'from': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 37237.00008225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x21ddea29934a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:19:35.000Z'}}, {'blockNum': '0x5280c1', 'uniqueId': '0x9c201ae23b18bfc07d6d636dcabacaff8c643fdd4da137641c380a4cf0673914:log:57', 'hash': '0x9c201ae23b18bfc07d6d636dcabacaff8c643fdd4da137641c380a4cf0673914', 'from': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 6497.96947226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05e8ed298304', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:19:35.000Z'}}, {'blockNum': '0x5280c6', 'uniqueId': '0x084f92094b90e783656b99677b39c4d10a558094773dce4c07220b5eaacecb00:log:2', 'hash': '0x084f92094b90e783656b99677b39c4d10a558094773dce4c07220b5eaacecb00', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 60617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37217ec09a00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:20:34.000Z'}}, {'blockNum': '0x5280ce', 'uniqueId': '0x06ad4220e6f362755b8946f7388e1bb1610c4da1880ad355cf536f1a97fbe8aa:log:42', 'hash': '0x06ad4220e6f362755b8946f7388e1bb1610c4da1880ad355cf536f1a97fbe8aa', 'from': '0x9cec5c02a0991c41bed035c0f43efbf767ddad5d', 'to': '0x69514f8df84c97fabff2d7807974341d4f41044d', 'value': 74.77743375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1169151696', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:22:39.000Z'}}, {'blockNum': '0x5280ce', 'uniqueId': '0xfcbca400e4e171d634a3c16627e0d10e41832c36c2aac392fd1b7fa683db3d9d:log:76', 'hash': '0xfcbca400e4e171d634a3c16627e0d10e41832c36c2aac392fd1b7fa683db3d9d', 'from': '0x0f155f84f44e5fd47b53f74f31256a2d8f955591', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 28047.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x19823f649800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:22:39.000Z'}}, {'blockNum': '0x5280de', 'uniqueId': '0xefabfaa15756dff404a2d3432ce07043e89dc3ee8d710ed37f04a68b0a2d1013:log:6', 'hash': '0xefabfaa15756dff404a2d3432ce07043e89dc3ee8d710ed37f04a68b0a2d1013', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 559.2070341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8233562cf4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:25:49.000Z'}}, {'blockNum': '0x5280de', 'uniqueId': '0xefabfaa15756dff404a2d3432ce07043e89dc3ee8d710ed37f04a68b0a2d1013:log:8', 'hash': '0xefabfaa15756dff404a2d3432ce07043e89dc3ee8d710ed37f04a68b0a2d1013', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 559.2070341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8233562cf4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:25:49.000Z'}}, {'blockNum': '0x5280ec', 'uniqueId': '0x63c50a704f9f427247d7d6f9f6ad5425b455d4042361a71ea917032980ecc2f8:log:4', 'hash': '0x63c50a704f9f427247d7d6f9f6ad5425b455d4042361a71ea917032980ecc2f8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 542.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7e4f851100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:28:48.000Z'}}, {'blockNum': '0x5280ec', 'uniqueId': '0xd9768d037d5c1b3c50cb81527daf0796105aa4c38ca039a45b2d09edf078d4d2:log:5', 'hash': '0xd9768d037d5c1b3c50cb81527daf0796105aa4c38ca039a45b2d09edf078d4d2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x02f2753aa71db52d79f37229fcbad241c5aec57e', 'value': 848.0482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc5739c9940', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:28:48.000Z'}}, {'blockNum': '0x5280ee', 'uniqueId': '0xe55f4e410017aab5e8ea9341238b078aace94fbc0bc4b8777b17f5a86fa8921b:log:24', 'hash': '0xe55f4e410017aab5e8ea9341238b078aace94fbc0bc4b8777b17f5a86fa8921b', 'from': '0x02f2753aa71db52d79f37229fcbad241c5aec57e', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 848.0482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc5739c9940', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:28:58.000Z'}}, {'blockNum': '0x5280ee', 'uniqueId': '0xe55f4e410017aab5e8ea9341238b078aace94fbc0bc4b8777b17f5a86fa8921b:log:26', 'hash': '0xe55f4e410017aab5e8ea9341238b078aace94fbc0bc4b8777b17f5a86fa8921b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 848.0482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc5739c9940', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:28:58.000Z'}}, {'blockNum': '0x52810d', 'uniqueId': '0x7afcd44f10f877b9a122836c0162af04bc5efa1e262c5ca757034781169e4780:log:53', 'hash': '0x7afcd44f10f877b9a122836c0162af04bc5efa1e262c5ca757034781169e4780', 'from': '0x69514f8df84c97fabff2d7807974341d4f41044d', 'to': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'value': 74.77743375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1169151696', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:35:54.000Z'}}, {'blockNum': '0x52816b', 'uniqueId': '0x4ab401d9d2348940bb51e3b77299664665a8cb8dd200641ed1dad62a3b53db74:log:19', 'hash': '0x4ab401d9d2348940bb51e3b77299664665a8cb8dd200641ed1dad62a3b53db74', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5869f882338ece01929e4b9581e01447a5bed343', 'value': 46.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0ad39db100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T04:01:52.000Z'}}, {'blockNum': '0x528185', 'uniqueId': '0xf09dc3c3f21be63e167d2e77331ae35262c40e04f183715f144713bb964ef2d8:log:1', 'hash': '0xf09dc3c3f21be63e167d2e77331ae35262c40e04f183715f144713bb964ef2d8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'value': 4804.7169356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x045eaf7239b0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T04:10:00.000Z'}}, {'blockNum': '0x5281b7', 'uniqueId': '0x45368e0904dbb152ada961a59c7601b32b0788bc41201f15a900fb8f4d240454:log:132', 'hash': '0x45368e0904dbb152ada961a59c7601b32b0788bc41201f15a900fb8f4d240454', 'from': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4804.7169356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x045eaf7239b0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T04:18:59.000Z'}}, {'blockNum': '0x5282f9', 'uniqueId': '0x48c4adb63b309046e1143d86f7b5aa7dd290b6e5afe146928a84b42dcd18b931:log:4', 'hash': '0x48c4adb63b309046e1143d86f7b5aa7dd290b6e5afe146928a84b42dcd18b931', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 1740.4276165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01953991e0f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T05:30:54.000Z'}}, {'blockNum': '0x5282fe', 'uniqueId': '0xb7a36109696c11cb5ddb7bb54dd67f40719ed2bdd4c22d4b9e80423d01971fbe:log:105', 'hash': '0xb7a36109696c11cb5ddb7bb54dd67f40719ed2bdd4c22d4b9e80423d01971fbe', 'from': '0xf946001634c5a8f864812b1887a64566d79e1306', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 374.124401098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x571b8d51ca', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T05:32:55.000Z'}}, {'blockNum': '0x5282fe', 'uniqueId': '0xb7a36109696c11cb5ddb7bb54dd67f40719ed2bdd4c22d4b9e80423d01971fbe:log:107', 'hash': '0xb7a36109696c11cb5ddb7bb54dd67f40719ed2bdd4c22d4b9e80423d01971fbe', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 374.124401098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x571b8d51ca', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T05:32:55.000Z'}}, {'blockNum': '0x52840e', 'uniqueId': '0xd05fe83dfc19e8bfbf5cd4379c4b3e59e71c2162888db9245dee10aec94c53f4:log:55', 'hash': '0xd05fe83dfc19e8bfbf5cd4379c4b3e59e71c2162888db9245dee10aec94c53f4', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0xa06f8516027b85e62d7720606f939b9a36b994d2', 'value': 21.19027454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04ef09edec', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T06:35:01.000Z'}}, {'blockNum': '0x5284c2', 'uniqueId': '0x96d60f043956d33635cdaa1f5779a664e32c51c4d9e7a4f046b4b5a3d4e6a5ce:log:7', 'hash': '0x96d60f043956d33635cdaa1f5779a664e32c51c4d9e7a4f046b4b5a3d4e6a5ce', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0xec81aa3dc98acaf4e246bbe29e2ac4e6a07de799', 'value': 170, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2794ca2400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T07:21:17.000Z'}}, {'blockNum': '0x5285b6', 'uniqueId': '0x0607411bb624cacd10414f9ad5d03a32fc272c3026bd79048d0d27353ba34fb8:log:51', 'hash': '0x0607411bb624cacd10414f9ad5d03a32fc272c3026bd79048d0d27353ba34fb8', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x03a7d1cb0db35e65ce4d5449cac2b3aa3ea18913', 'value': 119.15860008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1bbe67f190', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:18:23.000Z'}}, {'blockNum': '0x5285d5', 'uniqueId': '0xc7ff91d4d28d4b7cf3a0326063df84bfa7e0083d10ff8fdb8a1f842d90a4c7d7:log:60', 'hash': '0xc7ff91d4d28d4b7cf3a0326063df84bfa7e0083d10ff8fdb8a1f842d90a4c7d7', 'from': '0x78a933f3cba15914beb4d5f902a7a6e2fd93879d', 'to': '0x877ae32b0ff7afa778adadabe441f3fe05fabbdf', 'value': 2563.89857368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0254f4438370', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:24:44.000Z'}}, {'blockNum': '0x528600', 'uniqueId': '0xc1827bfffdc2156c72ee45593e69b412bea730df045dc4e8badf1f301b6cf2e3:log:26', 'hash': '0xc1827bfffdc2156c72ee45593e69b412bea730df045dc4e8badf1f301b6cf2e3', 'from': '0xf946001634c5a8f864812b1887a64566d79e1306', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 480.76923076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6ff01447a8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:39:32.000Z'}}, {'blockNum': '0x528600', 'uniqueId': '0xc1827bfffdc2156c72ee45593e69b412bea730df045dc4e8badf1f301b6cf2e3:log:28', 'hash': '0xc1827bfffdc2156c72ee45593e69b412bea730df045dc4e8badf1f301b6cf2e3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 480.76923076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6ff01447a8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:39:32.000Z'}}, {'blockNum': '0x528602', 'uniqueId': '0xb675d605d7faebd1db494e9559f50cc615455eb0514a03809e8565bba555dd74:log:0', 'hash': '0xb675d605d7faebd1db494e9559f50cc615455eb0514a03809e8565bba555dd74', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9a78ecd77595ea305c6e5a0daed3669b17801d09', 'value': 48000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2ba7def30000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:40:01.000Z'}}, {'blockNum': '0x528613', 'uniqueId': '0xe0a2adac4113963478d05eb0e0dbd8589abef30dbe2f0e7e130b4cad164ce801:log:28', 'hash': '0xe0a2adac4113963478d05eb0e0dbd8589abef30dbe2f0e7e130b4cad164ce801', 'from': '0x877ae32b0ff7afa778adadabe441f3fe05fabbdf', 'to': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'value': 2563.89857368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0254f4438370', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:45:05.000Z'}}, {'blockNum': '0x528695', 'uniqueId': '0x924a61d82e412728d3919103aa771eeda43d4ffe0b078582f1c0fdc02892c0a7:log:84', 'hash': '0x924a61d82e412728d3919103aa771eeda43d4ffe0b078582f1c0fdc02892c0a7', 'from': '0x9a78ecd77595ea305c6e5a0daed3669b17801d09', 'to': '0x1828559f010b86640cf3cdd7003e982cbeffa9d6', 'value': 30215.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1b7b2a068e00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T09:17:50.000Z'}}, {'blockNum': '0x528730', 'uniqueId': '0xc7b0fc915c96f3a0f4decf2cfda6d4e38b3040baa0f36e894965c18b9aea5214:log:6', 'hash': '0xc7b0fc915c96f3a0f4decf2cfda6d4e38b3040baa0f36e894965c18b9aea5214', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7e53be9f58d575d3dd00d2bf6638f0373d27904c', 'value': 532.69387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7c070765b0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T09:55:46.000Z'}}, {'blockNum': '0x5287a1', 'uniqueId': '0xe950e2f397042cc82042e50db5ced6470df8a9b454e3e720d9e7defb8153ffda:log:21', 'hash': '0xe950e2f397042cc82042e50db5ced6470df8a9b454e3e720d9e7defb8153ffda', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 699.698095847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e941a6e7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:21:30.000Z'}}, {'blockNum': '0x5287a1', 'uniqueId': '0xe950e2f397042cc82042e50db5ced6470df8a9b454e3e720d9e7defb8153ffda:log:23', 'hash': '0xe950e2f397042cc82042e50db5ced6470df8a9b454e3e720d9e7defb8153ffda', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 699.698095847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e941a6e7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:21:30.000Z'}}, {'blockNum': '0x5287af', 'uniqueId': '0x2a0a55f85ee3cc3abd54476ca2313d771a5b546c2b82c46ae6f808e972fce0e1:log:85', 'hash': '0x2a0a55f85ee3cc3abd54476ca2313d771a5b546c2b82c46ae6f808e972fce0e1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 699.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e95eb500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:25:08.000Z'}}, {'blockNum': '0x5287c3', 'uniqueId': '0x284d53a1c39d0c4df8434babc1d5643f53902b894ad9833b02a313fa7738f644:log:26', 'hash': '0x284d53a1c39d0c4df8434babc1d5643f53902b894ad9833b02a313fa7738f644', 'from': '0xbd7041d30ca198e9ccf96646e2d78d835803af94', 'to': '0xaa46d43a2119b1dbf5b97f82a06092947bbef9fe', 'value': 296.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4508c6f500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:30:06.000Z'}}, {'blockNum': '0x5287e0', 'uniqueId': '0x181fac8515a92b19192ac859abe7db60027a12309b7066e5bdf47e2e87042b3d:log:52', 'hash': '0x181fac8515a92b19192ac859abe7db60027a12309b7066e5bdf47e2e87042b3d', 'from': '0xaa46d43a2119b1dbf5b97f82a06092947bbef9fe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 296.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4508c6f500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:39:04.000Z'}}, {'blockNum': '0x528833', 'uniqueId': '0x31e9500b8ff99e1277842111c939dd3b16ef4d63dba753a3480967531bcf89b8:log:0', 'hash': '0x31e9500b8ff99e1277842111c939dd3b16ef4d63dba753a3480967531bcf89b8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9effe2d8016600c8e70d8d5abbb88ffa72dbe981', 'value': 4100.42352629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03bab449a792', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:57:10.000Z'}}, {'blockNum': '0x528850', 'uniqueId': '0xbb821ba3341e5928857be8a0ac0fbef69683cf63889ac04f1aa347869d2d8f11:log:13', 'hash': '0xbb821ba3341e5928857be8a0ac0fbef69683cf63889ac04f1aa347869d2d8f11', 'from': '0x9effe2d8016600c8e70d8d5abbb88ffa72dbe981', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 4100.42352629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03bab449a792', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T11:03:44.000Z'}}, {'blockNum': '0x52887d', 'uniqueId': '0x4918eed66244adc3d7e4a0cb2dc52b934e3525241c37f23fe6ae2f3918fcbbc3:log:8', 'hash': '0x4918eed66244adc3d7e4a0cb2dc52b934e3525241c37f23fe6ae2f3918fcbbc3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'value': 3904.71826095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x038d23584ad6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T11:13:31.000Z'}}, {'blockNum': '0x52889a', 'uniqueId': '0x5dd22ea15bf5710c5a4d395577b2e9aee297549fdf174430275812e04d97eb35:log:32', 'hash': '0x5dd22ea15bf5710c5a4d395577b2e9aee297549fdf174430275812e04d97eb35', 'from': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3904.71826095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x038d23584ad6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T11:19:13.000Z'}}, {'blockNum': '0x528973', 'uniqueId': '0xb4a984f8531876c11f4d5c3ca851f36394f21e530f0724860ce26cb9d11cdc3f:log:14', 'hash': '0xb4a984f8531876c11f4d5c3ca851f36394f21e530f0724860ce26cb9d11cdc3f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6b09ce711aa0031a11186ee72b0c33ef605dbbd3', 'value': 30.119818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x070347f310', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T12:09:12.000Z'}}, {'blockNum': '0x5289dc', 'uniqueId': '0x5085667d54993d39c5d480e43b97370cda9ea8583675da519a2240871d582aa1:log:126', 'hash': '0x5085667d54993d39c5d480e43b97370cda9ea8583675da519a2240871d582aa1', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 390.220050648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5adaed70d8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T12:33:11.000Z'}}, {'blockNum': '0x5289dc', 'uniqueId': '0x5085667d54993d39c5d480e43b97370cda9ea8583675da519a2240871d582aa1:log:128', 'hash': '0x5085667d54993d39c5d480e43b97370cda9ea8583675da519a2240871d582aa1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 390.220050648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5adaed70d8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T12:33:11.000Z'}}, {'blockNum': '0x5289f7', 'uniqueId': '0x2f89bfbe89b5a59da4fa678a23a1f86dcab08aeb851b0549b8902537bb53bc17:log:3', 'hash': '0x2f89bfbe89b5a59da4fa678a23a1f86dcab08aeb851b0549b8902537bb53bc17', 'from': '0x1828559f010b86640cf3cdd7003e982cbeffa9d6', 'to': '0x409fe261895aa4ba51bb9a6c6eb85882395df91b', 'value': 30215.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1b7b2a068e00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T12:40:34.000Z'}}, {'blockNum': '0x528a3b', 'uniqueId': '0x77b85c000811755f7666628d94987c09751c78a8a25d98bb8fc5cacbd0d3e32a:log:17', 'hash': '0x77b85c000811755f7666628d94987c09751c78a8a25d98bb8fc5cacbd0d3e32a', 'from': '0x409fe261895aa4ba51bb9a6c6eb85882395df91b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30215.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1b7b2a068e00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T12:59:07.000Z'}}, {'blockNum': '0x528a59', 'uniqueId': '0x414f4e46f3fc152c7a49e9242b1dfff3702c1561b6e3cf56ff6ad5717fc239ec:log:101', 'hash': '0x414f4e46f3fc152c7a49e9242b1dfff3702c1561b6e3cf56ff6ad5717fc239ec', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 12365.18856995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0b3efeac1b5e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:07:26.000Z'}}, {'blockNum': '0x528a62', 'uniqueId': '0x2bded4f5c7be99646482ac3c6ff93788fd67c25f6ff384b1b09f51f89eae8c93:log:30', 'hash': '0x2bded4f5c7be99646482ac3c6ff93788fd67c25f6ff384b1b09f51f89eae8c93', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12365.18856995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0b3efeac1b5e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:09:12.000Z'}}, {'blockNum': '0x528a72', 'uniqueId': '0x2349322da7859f9556787b9e6f8917bc149c4363c8ebbafe62b9bc109b26614a:log:65', 'hash': '0x2349322da7859f9556787b9e6f8917bc149c4363c8ebbafe62b9bc109b26614a', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 479.515825908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6fa55ed6f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:15:13.000Z'}}, {'blockNum': '0x528a72', 'uniqueId': '0x2349322da7859f9556787b9e6f8917bc149c4363c8ebbafe62b9bc109b26614a:log:67', 'hash': '0x2349322da7859f9556787b9e6f8917bc149c4363c8ebbafe62b9bc109b26614a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 479.515825908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6fa55ed6f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:15:13.000Z'}}, {'blockNum': '0x528a98', 'uniqueId': '0x08a9266a803b3c4c426581e3f90215d141deb8fc5be75e4245e7d60181d83010:log:10', 'hash': '0x08a9266a803b3c4c426581e3f90215d141deb8fc5be75e4245e7d60181d83010', 'from': '0xf946001634c5a8f864812b1887a64566d79e1306', 'to': '0x237cd16ad77ed39e18dd2a958be24ef238750e6c', 'value': 1755.269861198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0198ae3c8f4e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:23:03.000Z'}}, {'blockNum': '0x528a9e', 'uniqueId': '0xa6a0a8e7890a58dae422064739c0d56164968102fdfb8864d1f14bc1ad5d7ed8:log:92', 'hash': '0xa6a0a8e7890a58dae422064739c0d56164968102fdfb8864d1f14bc1ad5d7ed8', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 495.750096277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x736d022595', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:25:01.000Z'}}, {'blockNum': '0x528a9e', 'uniqueId': '0xa6a0a8e7890a58dae422064739c0d56164968102fdfb8864d1f14bc1ad5d7ed8:log:94', 'hash': '0xa6a0a8e7890a58dae422064739c0d56164968102fdfb8864d1f14bc1ad5d7ed8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 495.750096277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x736d022595', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:25:01.000Z'}}, {'blockNum': '0x528aa9', 'uniqueId': '0x9e79608bd24dbb6453bf80c8290926f199f7b41a23da904e985fc5f1a95b7d28:log:48', 'hash': '0x9e79608bd24dbb6453bf80c8290926f199f7b41a23da904e985fc5f1a95b7d28', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 480.019898209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6fc36a5f61', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:27:14.000Z'}}, {'blockNum': '0x528ab0', 'uniqueId': '0x68959d5985fb5a373a96b0e752cc3dfc97ba48ae27e19a1a6e49fa611c7f40c1:log:57', 'hash': '0x68959d5985fb5a373a96b0e752cc3dfc97ba48ae27e19a1a6e49fa611c7f40c1', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 480.019898209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6fc36a5f61', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:29:06.000Z'}}, {'blockNum': '0x528ab0', 'uniqueId': '0xc275d90f45275f7f1536309d2674714ddc6fe3c45f9503f77825dddfc513628f:log:63', 'hash': '0xc275d90f45275f7f1536309d2674714ddc6fe3c45f9503f77825dddfc513628f', 'from': '0x237cd16ad77ed39e18dd2a958be24ef238750e6c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1755.269861198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0198ae3c8f4e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:29:06.000Z'}}, {'blockNum': '0x528ac0', 'uniqueId': '0x9080094101032beee99fcce8003f8c98514000282c104542c0cb5bc756ffbd9c:log:41', 'hash': '0x9080094101032beee99fcce8003f8c98514000282c104542c0cb5bc756ffbd9c', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 465.745723305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6c709bbfa9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:33:59.000Z'}}, {'blockNum': '0x528ac0', 'uniqueId': '0x9080094101032beee99fcce8003f8c98514000282c104542c0cb5bc756ffbd9c:log:43', 'hash': '0x9080094101032beee99fcce8003f8c98514000282c104542c0cb5bc756ffbd9c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 465.745723305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6c709bbfa9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:33:59.000Z'}}, {'blockNum': '0x528adb', 'uniqueId': '0x204986360a07a0d59c37b7586c6a33ceb25b043c72b066a823524c5b6433d2d6:log:37', 'hash': '0x204986360a07a0d59c37b7586c6a33ceb25b043c72b066a823524c5b6433d2d6', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 367.822877341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x55a3f3b29d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:40:58.000Z'}}, {'blockNum': '0x528adb', 'uniqueId': '0x204986360a07a0d59c37b7586c6a33ceb25b043c72b066a823524c5b6433d2d6:log:39', 'hash': '0x204986360a07a0d59c37b7586c6a33ceb25b043c72b066a823524c5b6433d2d6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 367.822877341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x55a3f3b29d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:40:58.000Z'}}, {'blockNum': '0x528b00', 'uniqueId': '0x6de1f93a8d1e82c2d276e5fffa078b6fc9e1d05c82e485051ec9c11b6532620a:log:0', 'hash': '0x6de1f93a8d1e82c2d276e5fffa078b6fc9e1d05c82e485051ec9c11b6532620a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 1496.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015c6dc13e80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:49:08.000Z'}}, {'blockNum': '0x528b1e', 'uniqueId': '0x25f0b473bb9be1e76e0201b367249395bac5b17ea1e35f78012c1d1e9a1f77b2:log:2', 'hash': '0x25f0b473bb9be1e76e0201b367249395bac5b17ea1e35f78012c1d1e9a1f77b2', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1496.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015c6dc13e80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:59:02.000Z'}}, {'blockNum': '0x528b29', 'uniqueId': '0x62b50999f1c948f27b116e2a1b14a60ab8d0ae2dc1a654827bfcbcff951a756f:log:74', 'hash': '0x62b50999f1c948f27b116e2a1b14a60ab8d0ae2dc1a654827bfcbcff951a756f', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 363.695653567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x54adf342bf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:02:38.000Z'}}, {'blockNum': '0x528b29', 'uniqueId': '0x62b50999f1c948f27b116e2a1b14a60ab8d0ae2dc1a654827bfcbcff951a756f:log:76', 'hash': '0x62b50999f1c948f27b116e2a1b14a60ab8d0ae2dc1a654827bfcbcff951a756f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 363.695653567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x54adf342bf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:02:38.000Z'}}, {'blockNum': '0x528b3d', 'uniqueId': '0xcc065ad597f97ca3e369c1bfbf78a8e714991de6d6fda56bca7ba03fa0e8c9aa:log:1', 'hash': '0xcc065ad597f97ca3e369c1bfbf78a8e714991de6d6fda56bca7ba03fa0e8c9aa', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 16051.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0e993c08e100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:07:23.000Z'}}, {'blockNum': '0x528b45', 'uniqueId': '0x57016ba558bc3908165bcff95077301aecf1e7607ae210e6725d1246c20a78b5:log:5', 'hash': '0x57016ba558bc3908165bcff95077301aecf1e7607ae210e6725d1246c20a78b5', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16051.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0e993c08e100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:09:06.000Z'}}, {'blockNum': '0x528b6f', 'uniqueId': '0xdc47c490ff46d0e5b0b6ace0ec9742cb89778f5e5fef3c4b864bcf015a7b9d93:log:28', 'hash': '0xdc47c490ff46d0e5b0b6ace0ec9742cb89778f5e5fef3c4b864bcf015a7b9d93', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 15074.4325038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0db5ca31cff8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:21:10.000Z'}}, {'blockNum': '0x528b7d', 'uniqueId': '0x3e91229555b63750959d2688a766846c804e189693519c4af5377457191693b1:log:13', 'hash': '0x3e91229555b63750959d2688a766846c804e189693519c4af5377457191693b1', 'from': '0xfcc69c067347d980282ce56696bf2f055babb8bd', 'to': '0x7a66a95994c988c3daaceb6d52fbe3e0924c71c0', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:24:41.000Z'}}, {'blockNum': '0x528b88', 'uniqueId': '0x4dd1d770a249adf66872100bc1fb9ac7daaf9408a6311bf50b9efaa40b37cbd8:log:22', 'hash': '0x4dd1d770a249adf66872100bc1fb9ac7daaf9408a6311bf50b9efaa40b37cbd8', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 700.674479468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa32374156c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:27:10.000Z'}}, {'blockNum': '0x528b88', 'uniqueId': '0x4dd1d770a249adf66872100bc1fb9ac7daaf9408a6311bf50b9efaa40b37cbd8:log:24', 'hash': '0x4dd1d770a249adf66872100bc1fb9ac7daaf9408a6311bf50b9efaa40b37cbd8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 700.674479468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa32374156c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:27:10.000Z'}}, {'blockNum': '0x528b8d', 'uniqueId': '0x909e4f4f9a399f006e52781ef1da311f358b6c39be858521e7ff83ebae35be9f:log:40', 'hash': '0x909e4f4f9a399f006e52781ef1da311f358b6c39be858521e7ff83ebae35be9f', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 697.978201999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa282be278f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:28:29.000Z'}}, {'blockNum': '0x528b90', 'uniqueId': '0x64bfc943bae68623ddcd00f1d9477b0a5ebcff6afdb620c97bb75485372644e8:log:54', 'hash': '0x64bfc943bae68623ddcd00f1d9477b0a5ebcff6afdb620c97bb75485372644e8', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15074.4325038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0db5ca31cff8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:29:05.000Z'}}, {'blockNum': '0x528b90', 'uniqueId': '0xdb94d2ba07a5a8b508e44899f7802dcc3d993fd9c6bc11e21ad9a6d84ec5812b:log:55', 'hash': '0xdb94d2ba07a5a8b508e44899f7802dcc3d993fd9c6bc11e21ad9a6d84ec5812b', 'from': '0x7a66a95994c988c3daaceb6d52fbe3e0924c71c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:29:05.000Z'}}, {'blockNum': '0x528bb2', 'uniqueId': '0x040c013a9cc685d00a780aa3b998042eb1a4516aa3bcae52550291c464094b1e:log:104', 'hash': '0x040c013a9cc685d00a780aa3b998042eb1a4516aa3bcae52550291c464094b1e', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x66ec6342f9d91676fcfc189fd769ae05fc6c579d', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:37:58.000Z'}}, {'blockNum': '0x528bb9', 'uniqueId': '0x2adb7c7675a5cbb4a499b188f16c35267e35311afb080023eec03568246770c5:log:19', 'hash': '0x2adb7c7675a5cbb4a499b188f16c35267e35311afb080023eec03568246770c5', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 697.978201999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa282be278f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:39:35.000Z'}}, {'blockNum': '0x528bd7', 'uniqueId': '0x0b0515a9580ad0bcff8436237a27ab4b2879379e4d8ff87a93e21dfb3edf6d70:log:59', 'hash': '0x0b0515a9580ad0bcff8436237a27ab4b2879379e4d8ff87a93e21dfb3edf6d70', 'from': '0x003c6df13f3c95f12e0f3e2c82e3980d9732558b', 'to': '0x53076af5ed9bd6a622f56d644fdfb4d619ac8148', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:45:54.000Z'}}, {'blockNum': '0x528bfe', 'uniqueId': '0x3264af94629855eadc7ba28217889f956a03dfeaee2482a53f2d04f8c43582d2:log:2', 'hash': '0x3264af94629855eadc7ba28217889f956a03dfeaee2482a53f2d04f8c43582d2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'value': 3904.09897038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x038cfe6eab0c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:57:22.000Z'}}, {'blockNum': '0x528c0a', 'uniqueId': '0xd3d642a7a429c15651e18fad17da8a0a29294e8052cec8d5c1984f4b95b7e3e3:log:16', 'hash': '0xd3d642a7a429c15651e18fad17da8a0a29294e8052cec8d5c1984f4b95b7e3e3', 'from': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3904.09897038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x038cfe6eab0c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:59:11.000Z'}}, {'blockNum': '0x528c14', 'uniqueId': '0x7a640a84575bec4b54ad63cfaebddc8aab4f273c090118c419a53680a3832340:log:74', 'hash': '0x7a640a84575bec4b54ad63cfaebddc8aab4f273c090118c419a53680a3832340', 'from': '0xe9a8f8d1609fbb852c057523c66ff58a50e0d2a8', 'to': '0x2cd48733cc05c9cb029ceaf4b11d62a93f881b59', 'value': 52.72022865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0c465ed92a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:00:55.000Z'}}, {'blockNum': '0x528c18', 'uniqueId': '0xfa3aed186add900333328aef089e8d221aeca016ae37f5cf8160aa4cb2c15f09:log:23', 'hash': '0xfa3aed186add900333328aef089e8d221aeca016ae37f5cf8160aa4cb2c15f09', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 702.591591286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa395b8e376', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:02:01.000Z'}}, {'blockNum': '0x528c18', 'uniqueId': '0xfa3aed186add900333328aef089e8d221aeca016ae37f5cf8160aa4cb2c15f09:log:25', 'hash': '0xfa3aed186add900333328aef089e8d221aeca016ae37f5cf8160aa4cb2c15f09', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 702.591591286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa395b8e376', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:02:01.000Z'}}, {'blockNum': '0x528c18', 'uniqueId': '0xbd124ec01587afd4f047c801a300231dc666fb57b6d027c48512993d3f70a314:log:89', 'hash': '0xbd124ec01587afd4f047c801a300231dc666fb57b6d027c48512993d3f70a314', 'from': '0x48f9ab8906bf0fb691033ce315c1da800044237c', 'to': '0x363f6b08c2b5ac0a9a020c9d6b8aeddc1bb2b022', 'value': 52.84054609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0c4d8abf2a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:02:01.000Z'}}, {'blockNum': '0x528c27', 'uniqueId': '0x0f9abf3f16d50a9cc7985e52901bd7a3c826327e32984a5ee36b4ff900a4d81b:log:29', 'hash': '0x0f9abf3f16d50a9cc7985e52901bd7a3c826327e32984a5ee36b4ff900a4d81b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 684.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9f4d7f7a00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:06:33.000Z'}}, {'blockNum': '0x528c55', 'uniqueId': '0xe7c07a8492d341c75f8aa99aaaec9a1bb36a85eaf4a8df65f9384d61bb10b7d8:log:21', 'hash': '0xe7c07a8492d341c75f8aa99aaaec9a1bb36a85eaf4a8df65f9384d61bb10b7d8', 'from': '0x2cd48733cc05c9cb029ceaf4b11d62a93f881b59', 'to': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'value': 52.72022865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0c465ed92a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:17:49.000Z'}}, {'blockNum': '0x528c55', 'uniqueId': '0x8cd1df55eeb9ee1c8b35619149aa91870b7ce06626850b33669ffc7b5fcc0d60:log:22', 'hash': '0x8cd1df55eeb9ee1c8b35619149aa91870b7ce06626850b33669ffc7b5fcc0d60', 'from': '0x363f6b08c2b5ac0a9a020c9d6b8aeddc1bb2b022', 'to': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'value': 52.84054609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0c4d8abf2a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:17:49.000Z'}}, {'blockNum': '0x528c6e', 'uniqueId': '0xb5ab04361bc88357c6928311689e970da412b74089cc765ef81da20fd446756c:log:2', 'hash': '0xb5ab04361bc88357c6928311689e970da412b74089cc765ef81da20fd446756c', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x441ebc643caf97cdcfa0ad2610f69275e255a4c5', 'value': 11.34861261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02a46e1602', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:22:51.000Z'}}, {'blockNum': '0x528c8c', 'uniqueId': '0xbaf6d10817fd402a92634bd392a56a6772d24202c798305d1b53dffc4a690ae9:log:99', 'hash': '0xbaf6d10817fd402a92634bd392a56a6772d24202c798305d1b53dffc4a690ae9', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 556.931261037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x81abb0a26d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:28:15.000Z'}}, {'blockNum': '0x528c8c', 'uniqueId': '0xbaf6d10817fd402a92634bd392a56a6772d24202c798305d1b53dffc4a690ae9:log:101', 'hash': '0xbaf6d10817fd402a92634bd392a56a6772d24202c798305d1b53dffc4a690ae9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 556.931261037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x81abb0a26d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:28:15.000Z'}}, {'blockNum': '0x528ca4', 'uniqueId': '0x82f93273d9b9943c91c0b14165a559a7a8a77cbe1ea9900abb93553468c50f9b:log:87', 'hash': '0x82f93273d9b9943c91c0b14165a559a7a8a77cbe1ea9900abb93553468c50f9b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 556.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x81a9d3a100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:32:23.000Z'}}, {'blockNum': '0x528cd7', 'uniqueId': '0x14de7f6c0fcc1c6c3438d44abe995a7891266b87c7aa2b274f2b2bfdfafef6ca:log:20', 'hash': '0x14de7f6c0fcc1c6c3438d44abe995a7891266b87c7aa2b274f2b2bfdfafef6ca', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0xaf9a2b5df6560588e8b1f11638e3f1e00a4a281a', 'value': 276.14047986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x404b415574', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:45:22.000Z'}}, {'blockNum': '0x528d1f', 'uniqueId': '0xe9ee9091d158f472f8da74fa6920ee286b65df1fecfb72ab97fad9441eec8444:log:14', 'hash': '0xe9ee9091d158f472f8da74fa6920ee286b65df1fecfb72ab97fad9441eec8444', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 699.703512666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e9944e5a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:06:56.000Z'}}, {'blockNum': '0x528d1f', 'uniqueId': '0xe9ee9091d158f472f8da74fa6920ee286b65df1fecfb72ab97fad9441eec8444:log:16', 'hash': '0xe9ee9091d158f472f8da74fa6920ee286b65df1fecfb72ab97fad9441eec8444', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 699.703512666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e9944e5a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:06:56.000Z'}}, {'blockNum': '0x528d35', 'uniqueId': '0xd1bf99e13a8b06a352e189afa9c3a7121a7d15368b6f8114c44f8127444469fd:log:3', 'hash': '0xd1bf99e13a8b06a352e189afa9c3a7121a7d15368b6f8114c44f8127444469fd', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 699.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e95eb500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:11:42.000Z'}}, {'blockNum': '0x528d49', 'uniqueId': '0x6906a4d5109e0219d64c6341994fab7c54e3520cee5dc38545cb98fe93b5d2f1:log:7', 'hash': '0x6906a4d5109e0219d64c6341994fab7c54e3520cee5dc38545cb98fe93b5d2f1', 'from': '0xf0453fd8b04f0ce7a47770a962e9e1094f2dfd5b', 'to': '0x47be17067acaee8e70c04647e451c9b8ed251b03', 'value': 686.98709261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9ff39f2282', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:17:02.000Z'}}, {'blockNum': '0x528d7b', 'uniqueId': '0xce77c901edde52710ba2678505064df6a8c0df8b8372d945d6cbea64c8943f6c:log:130', 'hash': '0xce77c901edde52710ba2678505064df6a8c0df8b8372d945d6cbea64c8943f6c', 'from': '0x47be17067acaee8e70c04647e451c9b8ed251b03', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 686.98709261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9ff39f2282', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:28:12.000Z'}}, {'blockNum': '0x528daf', 'uniqueId': '0xa71cca8a3e7b2d14220021eb464e3e394647f6e2ab91cf3820bd708883ad42f7:log:86', 'hash': '0xa71cca8a3e7b2d14220021eb464e3e394647f6e2ab91cf3820bd708883ad42f7', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x678e56d45b6d7504fb67ae7c4093e8e366bb70f5', 'value': 19.08217521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x047162e2ea', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:41:55.000Z'}}, {'blockNum': '0x528ecb', 'uniqueId': '0x46fa3fa4fee325c6071caf3718d0b9e7e58809afb631981498474c11cbbbbe84:log:6', 'hash': '0x46fa3fa4fee325c6071caf3718d0b9e7e58809afb631981498474c11cbbbbe84', 'from': '0xac0c019e626cd28ecbffb160d184c47b2ffe82eb', 'to': '0xd0079694883541f7be13a049f48ee6b4ef43fcd2', 'value': 57.891487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0d7a99fd18', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T17:41:15.000Z'}}, {'blockNum': '0x528edd', 'uniqueId': '0x7116d0cd0c01e31ed8aade41b74e7bdf7e9bae7a062fb3032a830ac6497a8f37:log:15', 'hash': '0x7116d0cd0c01e31ed8aade41b74e7bdf7e9bae7a062fb3032a830ac6497a8f37', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x483350219364edfb27433641e1876e0907f91d6d', 'value': 25.46879475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05ee0ef77e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T17:44:25.000Z'}}, {'blockNum': '0x528ede', 'uniqueId': '0x4b13d4e3e2551d0d92be9c1f9743a3f8f0f40a7c9028ac2eade75030fbd78719:log:0', 'hash': '0x4b13d4e3e2551d0d92be9c1f9743a3f8f0f40a7c9028ac2eade75030fbd78719', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbf81c4babc8a4116c742d25be2657f986767080c', 'value': 290.18507256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x439060cfb0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T17:44:28.000Z'}}, {'blockNum': '0x528fa5', 'uniqueId': '0xa3a213b0a7709695eaa63f886e7173452dfd564d9d0be913a720cf7853d171de:log:65', 'hash': '0xa3a213b0a7709695eaa63f886e7173452dfd564d9d0be913a720cf7853d171de', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x4c3e7832d861efb866d10405ab531f04aba40ebb', 'value': 1124.342868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0105c80ea820', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T18:32:35.000Z'}}, {'blockNum': '0x52908d', 'uniqueId': '0xc12b66ad27eb3677005a398eb795d22c0ecbfb8c479e10b2f3110a9bd2ef9bae:log:27', 'hash': '0xc12b66ad27eb3677005a398eb795d22c0ecbfb8c479e10b2f3110a9bd2ef9bae', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xcb343d2dc05b9de33f89100f6dfae41ab77e8154', 'value': 104.83783783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1868d27406', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T19:26:34.000Z'}}, {'blockNum': '0x529098', 'uniqueId': '0x84298351ae5d2cddfa447454cac6982ac499baf913fcf803fedd6c7b20207284:log:38', 'hash': '0x84298351ae5d2cddfa447454cac6982ac499baf913fcf803fedd6c7b20207284', 'from': '0xcb343d2dc05b9de33f89100f6dfae41ab77e8154', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 104.83783783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1868d27406', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T19:29:03.000Z'}}, {'blockNum': '0x5291a0', 'uniqueId': '0x9c5a6bd3d0f91335ea62942c112d697a244623d8bb6462948cd682fced479289:log:50', 'hash': '0x9c5a6bd3d0f91335ea62942c112d697a244623d8bb6462948cd682fced479289', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.029621345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x012bc9ee61', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T20:35:22.000Z'}}, {'blockNum': '0x5291a0', 'uniqueId': '0x9c5a6bd3d0f91335ea62942c112d697a244623d8bb6462948cd682fced479289:log:52', 'hash': '0x9c5a6bd3d0f91335ea62942c112d697a244623d8bb6462948cd682fced479289', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x8dc1cf14273acc17fe3ba8f5bdba16764167ba83', 'value': 5.029621345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x012bc9ee61', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T20:35:22.000Z'}}, {'blockNum': '0x52920b', 'uniqueId': '0xd7ca1e7e5af891f1ebf0b602720c6538b59c3d94aabc1ba6df349c95f4743f2f:log:12', 'hash': '0xd7ca1e7e5af891f1ebf0b602720c6538b59c3d94aabc1ba6df349c95f4743f2f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'value': 3158.45372138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02df62831924', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T20:59:14.000Z'}}, {'blockNum': '0x529230', 'uniqueId': '0x8cbf3ed86b6871960d7eae2ecd2659d7e50cd8d8ee02117238b581aa9b3beb83:log:6', 'hash': '0x8cbf3ed86b6871960d7eae2ecd2659d7e50cd8d8ee02117238b581aa9b3beb83', 'from': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 3158.45372138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02df62831924', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T21:09:28.000Z'}}, {'blockNum': '0x5292bd', 'uniqueId': '0x8fa75d0eb8c6aa7b8d12702bf8cd52f79944d39df7f0911518b2c00618930ac5:log:9', 'hash': '0x8fa75d0eb8c6aa7b8d12702bf8cd52f79944d39df7f0911518b2c00618930ac5', 'from': '0x615b4d528b866fc4d3d9e6d82867b72a25c31a15', 'to': '0x9f708f66eb965d48d8596474406bf1d94ea61fe3', 'value': 199.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90553980', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T21:41:28.000Z'}}, {'blockNum': '0x5292db', 'uniqueId': '0x8b4d66260d07e37fae1710d048689ae229a2e20dc3d5e62a2dcf1abb1a7562a0:log:17', 'hash': '0x8b4d66260d07e37fae1710d048689ae229a2e20dc3d5e62a2dcf1abb1a7562a0', 'from': '0x9f708f66eb965d48d8596474406bf1d94ea61fe3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 199.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90553980', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T21:47:46.000Z'}}, {'blockNum': '0x529379', 'uniqueId': '0xc501cdc33e1c7e68a109c3e6580169209224d4ebf5cae56a9c6c3aeccf4c76f0:log:0', 'hash': '0xc501cdc33e1c7e68a109c3e6580169209224d4ebf5cae56a9c6c3aeccf4c76f0', 'from': '0x95a7414d0666a083039dc56695189dd1ad4d62a1', 'to': '0x6409f54b9c53825029ae57908c47f310ec6aaaf8', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T22:21:08.000Z'}}, {'blockNum': '0x529401', 'uniqueId': '0x52e0c934d72a2d1284324b2c41eeecc5309ec047ced804f61ffa1e3dee7e917c:log:2', 'hash': '0x52e0c934d72a2d1284324b2c41eeecc5309ec047ced804f61ffa1e3dee7e917c', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x63c3305e1b88ec935750b67bbf8b385a4df5439e', 'value': 182.48486805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2a7cf21bd2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T22:56:15.000Z'}}, {'blockNum': '0x529417', 'uniqueId': '0xa44b725480faf4756046ce79b2f48bf52f4e615d28181f5feb9676b9b3019f3a:log:1', 'hash': '0xa44b725480faf4756046ce79b2f48bf52f4e615d28181f5feb9676b9b3019f3a', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x3c737c87ce731d935eb1f52e9a01dc325c9fe9c1', 'value': 1489.74503725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015adbb947c2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T23:01:24.000Z'}}, {'blockNum': '0x529513', 'uniqueId': '0x8eed54d249912b3cb447aa66a93391636065cdf695a6996e1cd4717d3d0bb592:log:4', 'hash': '0x8eed54d249912b3cb447aa66a93391636065cdf695a6996e1cd4717d3d0bb592', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x008758bef331f49bd327ef2a499ca749740eb16c', 'value': 16097.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0ea3e5ed6b00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:00:25.000Z'}}, {'blockNum': '0x52952d', 'uniqueId': '0x7b86ca5374c1890bc7b381839e2e78afeede4d0ed575689803e7b3f41a722ff0:log:25', 'hash': '0x7b86ca5374c1890bc7b381839e2e78afeede4d0ed575689803e7b3f41a722ff0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 66385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3c607657ea00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:07:23.000Z'}}, {'blockNum': '0x529569', 'uniqueId': '0x3c62930baa3814e5a187a981f7eb049a85ff87473e28827c6f3465b31adbec87:log:10', 'hash': '0x3c62930baa3814e5a187a981f7eb049a85ff87473e28827c6f3465b31adbec87', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x289c88338243ac66306c2a46e57ba24794202426', 'value': 44.06800006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0a42a8513c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:19:11.000Z'}}, {'blockNum': '0x529569', 'uniqueId': '0x772117e18edee5e7564fd2d1ec5f1b6a5d6bae161816fea7dc9bfe2cb3833721:log:91', 'hash': '0x772117e18edee5e7564fd2d1ec5f1b6a5d6bae161816fea7dc9bfe2cb3833721', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x68d26a9153031cfb4486838a2d8f1562aecbb948', 'value': 7.67322446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01c95c1d0c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:19:11.000Z'}}, {'blockNum': '0x52958b', 'uniqueId': '0x84b2cbe61234bf44135d975fad010671d3fa7e7f10317096620479cfd84208f2:log:3', 'hash': '0x84b2cbe61234bf44135d975fad010671d3fa7e7f10317096620479cfd84208f2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8bbb73bcb5d553b5a556358d27625323fd781d37', 'value': 8209.06437431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0777525db026', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:26:17.000Z'}}, {'blockNum': '0x529590', 'uniqueId': '0xf0c83e456da41a82bcf2ae9562d6bddec3e9ce3ec05769dbaa17be356b98c7a9:log:2', 'hash': '0xf0c83e456da41a82bcf2ae9562d6bddec3e9ce3ec05769dbaa17be356b98c7a9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 55477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3274bee0d200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:27:53.000Z'}}, {'blockNum': '0x5295b2', 'uniqueId': '0x8489f5bd4993b52d89b956b123e86c05e081958bb435fee1cd088c7be85d9032:log:4', 'hash': '0x8489f5bd4993b52d89b956b123e86c05e081958bb435fee1cd088c7be85d9032', 'from': '0x8bbb73bcb5d553b5a556358d27625323fd781d37', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 8209.06437431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0777525db026', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:35:35.000Z'}}, {'blockNum': '0x5295ce', 'uniqueId': '0xe35c2de21834b3806ebd7def512a62008b41180ebd78cb4109f255f42e0bc641:log:1', 'hash': '0xe35c2de21834b3806ebd7def512a62008b41180ebd78cb4109f255f42e0bc641', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'value': 4013.92510858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03a690948b64', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:41:44.000Z'}}, {'blockNum': '0x5295ed', 'uniqueId': '0x05aa7a5165f2cb4fddfd0d504f255556699437bbd94a4df4bdf5a6bf893feba4:log:72', 'hash': '0x05aa7a5165f2cb4fddfd0d504f255556699437bbd94a4df4bdf5a6bf893feba4', 'from': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 4013.92510858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03a690948b64', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:50:59.000Z'}}]}}
Number of returned transfers: 145
Answer is complete
symbol RDN
group MPG
date 2018-10-28
hour 17:00
exchange binance
Name: 485, dtype: object
HERE
Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps: 2018-10-28 17:00:00 2018-10-28 05:00:00 2018-10-29 05:00:00
Unix timestamps: 1540699200.0 1540785600.0
Hex Block Numbers: 0x64a9bb 0x64c195
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x64a9bc', 'uniqueId': '0xeb2db39b252224778c851642e1c5e35ecc7ac15941e49fa281381d9279eb9e75:log:1', 'hash': '0xeb2db39b252224778c851642e1c5e35ecc7ac15941e49fa281381d9279eb9e75', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 35079.82189372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x076dae531779ef757000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:00:28.000Z'}}, {'blockNum': '0x64a9ee', 'uniqueId': '0xe087ee3fecb7d3522d6092de1acc793f5d9713ba86c6f706e45de14a4cc21a78:log:6', 'hash': '0xe087ee3fecb7d3522d6092de1acc793f5d9713ba86c6f706e45de14a4cc21a78', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9ca2d3d9d04f8a46da242716302469510fc0ebfc', 'value': 3997.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd8b89ebebf70a40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:11:03.000Z'}}, {'blockNum': '0x64a9f6', 'uniqueId': '0x8055315e2cbdc5e7239862d3c4dfe75b1642ae08a7fe7c9a994f43d9eee7b9e6:log:13', 'hash': '0x8055315e2cbdc5e7239862d3c4dfe75b1642ae08a7fe7c9a994f43d9eee7b9e6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd6e1e7385ad23732feb6675b0d6828165a11afbd', 'value': 2103.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x720c17099702cc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:13:26.000Z'}}, {'blockNum': '0x64a9fb', 'uniqueId': '0x477ce583e39af196059032570f866f7c8dc26141e338b71284a1bfd755638489:log:14', 'hash': '0x477ce583e39af196059032570f866f7c8dc26141e338b71284a1bfd755638489', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'value': 34299.10164682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07435ba7975a99b1e800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:15:28.000Z'}}, {'blockNum': '0x64aa1d', 'uniqueId': '0x5bffe26bece2cfdf424fc8a8f698568abb14278de49f358c6ea3e6d9013a4011:log:101', 'hash': '0x5bffe26bece2cfdf424fc8a8f698568abb14278de49f358c6ea3e6d9013a4011', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xf6cc99895f729785dc75decf22352898b73e354b', 'value': 9999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x021e0c0013070adc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:23:55.000Z'}}, {'blockNum': '0x64aa34', 'uniqueId': '0xcfa0a4d8712ca3f1a0529830a4989ba9731786b9c6f3c019b4acd3cdea80953e:log:104', 'hash': '0xcfa0a4d8712ca3f1a0529830a4989ba9731786b9c6f3c019b4acd3cdea80953e', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 34299.10164682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07435ba7975a99b1e800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:29:50.000Z'}}, {'blockNum': '0x64aa34', 'uniqueId': '0x63701a7c832d13914f8a4bac2aee2ec596bce03f10590e2d506245bdfa5fd4d6:log:105', 'hash': '0x63701a7c832d13914f8a4bac2aee2ec596bce03f10590e2d506245bdfa5fd4d6', 'from': '0xf6cc99895f729785dc75decf22352898b73e354b', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 9999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x021e0c0013070adc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:29:50.000Z'}}, {'blockNum': '0x64aa34', 'uniqueId': '0x3d6d78a87df17d509a1166c550e3eabdbefdef15ad43c63b256a56071b3432f1:log:106', 'hash': '0x3d6d78a87df17d509a1166c550e3eabdbefdef15ad43c63b256a56071b3432f1', 'from': '0xd6e1e7385ad23732feb6675b0d6828165a11afbd', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 2103.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x720c17099702cc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:29:50.000Z'}}, {'blockNum': '0x64aa3a', 'uniqueId': '0x324e5b12588ab722baeeb3bd99a1de58ae34e350ba4bde7b7bbfe75a104c8f3c:log:57', 'hash': '0x324e5b12588ab722baeeb3bd99a1de58ae34e350ba4bde7b7bbfe75a104c8f3c', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0xf241cac6e0db55e16e94869a3188a11083a9b50b', 'value': 1846.2115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x641554d99a2d16c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:31:22.000Z'}}, {'blockNum': '0x64aa3a', 'uniqueId': '0xedcc46a3ba0c63acb095236f915111a4e6b2da1cd5758e0e4139dc79bf84ad4a:log:61', 'hash': '0xedcc46a3ba0c63acb095236f915111a4e6b2da1cd5758e0e4139dc79bf84ad4a', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0x3c393088336d83acc8718b2dd1725f7f279ccda1', 'value': 409.01335415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x162c33568dc5cafc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:31:22.000Z'}}, {'blockNum': '0x64aa5d', 'uniqueId': '0x2013c8f041b721f1e904921677a5442533211f3e5f01c9423c8c605e6ce1e818:log:6', 'hash': '0x2013c8f041b721f1e904921677a5442533211f3e5f01c9423c8c605e6ce1e818', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'value': 31841.09762061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x06be1bff109452b29400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:38:40.000Z'}}, {'blockNum': '0x64aa6d', 'uniqueId': '0x2f5797a7795dccb8dd05fcf9fb2479f7ffda04335516c41c627208a6807fbc5a:log:14', 'hash': '0x2f5797a7795dccb8dd05fcf9fb2479f7ffda04335516c41c627208a6807fbc5a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9ca2d3d9d04f8a46da242716302469510fc0ebfc', 'value': 3997.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd8b89ebebf70a40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:43:49.000Z'}}, {'blockNum': '0x64aa76', 'uniqueId': '0x2c79239cfff3cad49ac750bfa64713ef64a525a59e556cbfa9d32b55ac2d756f:log:6', 'hash': '0x2c79239cfff3cad49ac750bfa64713ef64a525a59e556cbfa9d32b55ac2d756f', 'from': '0x9ca2d3d9d04f8a46da242716302469510fc0ebfc', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 7995.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1713d7d7ee1480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:45:23.000Z'}}, {'blockNum': '0x64aa76', 'uniqueId': '0xd13b2335753140406f0267e8cea4b23e95b45d02fd1334e6e9180a69ce1bf00a:log:10', 'hash': '0xd13b2335753140406f0267e8cea4b23e95b45d02fd1334e6e9180a69ce1bf00a', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 31841.09762061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x06be1bff109452b29400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:45:23.000Z'}}, {'blockNum': '0x64aa86', 'uniqueId': '0xf8c1274280688289cbfeb5d533931c9125eb2035eac43595d16ebcd3a45798f9:log:4', 'hash': '0xf8c1274280688289cbfeb5d533931c9125eb2035eac43595d16ebcd3a45798f9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 203799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b27f747069ef9fc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:48:17.000Z'}}, {'blockNum': '0x64aab6', 'uniqueId': '0xca27313425af06396b6dd46351922d9814ab71835fa79cd24d3052dd6ea0659e:log:4', 'hash': '0xca27313425af06396b6dd46351922d9814ab71835fa79cd24d3052dd6ea0659e', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 19084.84229279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x040a97644576e3829c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:58:02.000Z'}}, {'blockNum': '0x64aaee', 'uniqueId': '0x3b59952b3481439d8845909a7d96d0652f319db12b2a23ce5e8db15c7da1ec12:log:4', 'hash': '0x3b59952b3481439d8845909a7d96d0652f319db12b2a23ce5e8db15c7da1ec12', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'value': 610.0115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21119c33454332c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T05:12:15.000Z'}}, {'blockNum': '0x64aaf1', 'uniqueId': '0xa010af01d3a0e1a3efeff9b9a33d5f97bd105be919918ba265ed195824dca63f:log:6', 'hash': '0xa010af01d3a0e1a3efeff9b9a33d5f97bd105be919918ba265ed195824dca63f', 'from': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 610.0115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21119c33454332c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T05:12:50.000Z'}}, {'blockNum': '0x64aaf6', 'uniqueId': '0x4e6bf298ca105c3a07ba08a633328e159e554ac3476c17bf7752b5839c8ae713:log:8', 'hash': '0x4e6bf298ca105c3a07ba08a633328e159e554ac3476c17bf7752b5839c8ae713', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19084.84229279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x040a97644576e3829c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T05:13:47.000Z'}}, {'blockNum': '0x64ab30', 'uniqueId': '0x962bf042c32437812110723a404808179d9c092c5f8f42eb4f861e3275f659b8:log:83', 'hash': '0x962bf042c32437812110723a404808179d9c092c5f8f42eb4f861e3275f659b8', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x395c0e4dd04c9c5fd7ac1e578d65cabbf45a82e0', 'value': 610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2111735814dc480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T05:27:04.000Z'}}, {'blockNum': '0x64ab33', 'uniqueId': '0x6881895f26d3485563644e1c8f6b111e8475136c8874e9893e3e823933f0d402:log:49', 'hash': '0x6881895f26d3485563644e1c8f6b111e8475136c8874e9893e3e823933f0d402', 'from': '0x395c0e4dd04c9c5fd7ac1e578d65cabbf45a82e0', 'to': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'value': 610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2111735814dc480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T05:27:48.000Z'}}, {'blockNum': '0x64ab71', 'uniqueId': '0xaecba45aba97f159a5702b9084b5f4798749b2e32dc3460d63eb84f69e288fcc:log:145', 'hash': '0xaecba45aba97f159a5702b9084b5f4798749b2e32dc3460d63eb84f69e288fcc', 'from': '0x271244831b4017c9955ed638f5e4791d2c0ca06c', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 6930.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0177b98f3c849ae20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T05:40:47.000Z'}}, {'blockNum': '0x64ab93', 'uniqueId': '0x176c9fd401c36c0b273820daa50ea0551902e6633db17c3ffb29b3b13a20ded4:log:0', 'hash': '0x176c9fd401c36c0b273820daa50ea0551902e6633db17c3ffb29b3b13a20ded4', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 34703.94533217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07594dfd4a39d8756400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T05:50:30.000Z'}}, {'blockNum': '0x64ab93', 'uniqueId': '0xcf66990cd86b3fc2057e41ec4d83f412cb0571b275fb03d610d1ab68ce8f08f0:log:87', 'hash': '0xcf66990cd86b3fc2057e41ec4d83f412cb0571b275fb03d610d1ab68ce8f08f0', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0xc4f86fae2a332db472b7bb8aec74c5644cd63a47', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T05:50:30.000Z'}}, {'blockNum': '0x64abbd', 'uniqueId': '0xd88c589bcac3a8f9466c4f6577fd681c2b4b30a112fc376fccf0d89732844751:log:37', 'hash': '0xd88c589bcac3a8f9466c4f6577fd681c2b4b30a112fc376fccf0d89732844751', 'from': '0xedb369f898a433b628bb36c748e2e635e2bb2acb', 'to': '0xbefaf19ef3da9262af2f313256f5500308b31bee', 'value': 108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05dacd13ca9e300000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T06:02:30.000Z'}}, {'blockNum': '0x64abc4', 'uniqueId': '0x6299829e7a035f1f0902f83f16c7c571efd489035e1802baa53310453e2f6743:log:20', 'hash': '0x6299829e7a035f1f0902f83f16c7c571efd489035e1802baa53310453e2f6743', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34703.94533217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07594dfd4a39d8756400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T06:04:30.000Z'}}, {'blockNum': '0x64abc4', 'uniqueId': '0x739dd19b1b21e508d4c6df35f9345466184a2dc341f99323a88ff2f10979e340:log:22', 'hash': '0x739dd19b1b21e508d4c6df35f9345466184a2dc341f99323a88ff2f10979e340', 'from': '0xc4f86fae2a332db472b7bb8aec74c5644cd63a47', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T06:04:30.000Z'}}, {'blockNum': '0x64abf1', 'uniqueId': '0x4653a0eb8483040e029ae8182fc8eb98011f65126bd3f72892844fdab901081d:log:12', 'hash': '0x4653a0eb8483040e029ae8182fc8eb98011f65126bd3f72892844fdab901081d', 'from': '0xbefaf19ef3da9262af2f313256f5500308b31bee', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ef644f9b077d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T06:14:30.000Z'}}, {'blockNum': '0x64b074', 'uniqueId': '0xc6e876ddd01cfe808fdfa5e0b7b762e31f06e2e801e039dc98f5dcb9d36e9301:log:0', 'hash': '0xc6e876ddd01cfe808fdfa5e0b7b762e31f06e2e801e039dc98f5dcb9d36e9301', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 34685.14440558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07584912fb1a9b4ff800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T10:45:09.000Z'}}, {'blockNum': '0x64b0a3', 'uniqueId': '0x355e80dcaa45781d1ebe1e11d8b098cf8693aef19587a67899385fe595eed05f:log:13', 'hash': '0x355e80dcaa45781d1ebe1e11d8b098cf8693aef19587a67899385fe595eed05f', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34685.14440558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07584912fb1a9b4ff800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T10:54:16.000Z'}}, {'blockNum': '0x64b184', 'uniqueId': '0x1b1b538b513b2b69a536b8a5d0d022a9a07cc0be28d4561b5cc909eb05c76bd7:log:0', 'hash': '0x1b1b538b513b2b69a536b8a5d0d022a9a07cc0be28d4561b5cc909eb05c76bd7', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 27577.8233762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05d6ff2e571560c6d000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T11:42:12.000Z'}}, {'blockNum': '0x64b1b3', 'uniqueId': '0xf76981fedf94d0a23221ccffbad8f3dda8e50a56219a475c5b466396c63988f0:log:4', 'hash': '0xf76981fedf94d0a23221ccffbad8f3dda8e50a56219a475c5b466396c63988f0', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27577.8233762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05d6ff2e571560c6d000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T11:54:06.000Z'}}, {'blockNum': '0x64b1fa', 'uniqueId': '0x311731c7511f9a46a19d2d071a8cfe5f45e613caea59753f1a59c2f83844ecc0:log:72', 'hash': '0x311731c7511f9a46a19d2d071a8cfe5f45e613caea59753f1a59c2f83844ecc0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xe24ee0e64091b9283bf0706643f2977901c344f6', 'value': 314.4391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x110bb8177af187c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T12:11:30.000Z'}}, {'blockNum': '0x64b236', 'uniqueId': '0x2f6522f45434187fd4d351483f0c8ed97aed3cae03e1fc9edb381fde78bec333:log:23', 'hash': '0x2f6522f45434187fd4d351483f0c8ed97aed3cae03e1fc9edb381fde78bec333', 'from': '0xe24ee0e64091b9283bf0706643f2977901c344f6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 314.4391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x110bb8177af187c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T12:24:17.000Z'}}, {'blockNum': '0x64b2f8', 'uniqueId': '0x063f794563995087145a4f7eb40fe347dbf5ef3ee3fb4077381b099a322d06de:log:10', 'hash': '0x063f794563995087145a4f7eb40fe347dbf5ef3ee3fb4077381b099a322d06de', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7ee13b84900a0f0706fa639da8a14daf79ae12d1', 'value': 297.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1020a451c706b60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T13:07:51.000Z'}}, {'blockNum': '0x64b308', 'uniqueId': '0xa9c2cd64e75814a3074c6a83e03bd405589983ee7d7a061cbad8d05be92fe5f8:log:42', 'hash': '0xa9c2cd64e75814a3074c6a83e03bd405589983ee7d7a061cbad8d05be92fe5f8', 'from': '0x885ee38f4b9981d1d3ab23312e687820e18e0b9f', 'to': '0xbd8aa3c1f4d35eb7725498fd0753eae57806a84f', 'value': 2860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9b0a791f1211300000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T13:11:51.000Z'}}, {'blockNum': '0x64b320', 'uniqueId': '0x5251e3a42245a24a0b714b3ce202d7e8e9b5b801b66a1955459f67be6559fdc2:log:1', 'hash': '0x5251e3a42245a24a0b714b3ce202d7e8e9b5b801b66a1955459f67be6559fdc2', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0x02b54b6132d56a99b8eace746190df437012d9d2', 'value': 1456.4106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4ef3c1dc4e51868000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T13:21:19.000Z'}}, {'blockNum': '0x64b329', 'uniqueId': '0xcba19f8e8e4104f1ab10dcf61181af49e3abbae1321c37edf57c99b2afacda9d:log:46', 'hash': '0xcba19f8e8e4104f1ab10dcf61181af49e3abbae1321c37edf57c99b2afacda9d', 'from': '0xbd8aa3c1f4d35eb7725498fd0753eae57806a84f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9b0a791f1211300000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T13:24:34.000Z'}}, {'blockNum': '0x64b341', 'uniqueId': '0xd461241df9040f8a12323177f5730ee389a672cbf735230a0edd357077a6745c:log:2', 'hash': '0xd461241df9040f8a12323177f5730ee389a672cbf735230a0edd357077a6745c', 'from': '0x02b54b6132d56a99b8eace746190df437012d9d2', 'to': '0xa03ca3d0a0a4205067feef0c0e1b93077421e4ea', 'value': 1456.4106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4ef3c1dc4e51868000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T13:28:55.000Z'}}, {'blockNum': '0x64b360', 'uniqueId': '0xb21ad477a329e3ddb32ba38002d6d4006d17c97d472d8088ba1676f46e9c3055:log:16', 'hash': '0xb21ad477a329e3ddb32ba38002d6d4006d17c97d472d8088ba1676f46e9c3055', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x44f771cbd868ff3f6e3a74f6844eb171276e465b', 'value': 1560.80000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x549c73828949bbe400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T13:37:09.000Z'}}, {'blockNum': '0x64b37a', 'uniqueId': '0x57fbba2a4108b0defdd09ab1304b6776c3aa82bf5178b3611e65399b24208d72:log:90', 'hash': '0x57fbba2a4108b0defdd09ab1304b6776c3aa82bf5178b3611e65399b24208d72', 'from': '0xa03ca3d0a0a4205067feef0c0e1b93077421e4ea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1561.35953335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x54a4375f24fc6bfc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T13:43:59.000Z'}}, {'blockNum': '0x64b3d4', 'uniqueId': '0xcc6055149fbf86e22d5a8aab8c9968e6d4387eb1670577736957defb4ce33c66:log:5', 'hash': '0xcc6055149fbf86e22d5a8aab8c9968e6d4387eb1670577736957defb4ce33c66', 'from': '0xa532168d0a0d537bd5f3aa925b829754f906267f', 'to': '0x31101cab87112fee56bc38084d85c0c4eaa629fd', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T14:04:23.000Z'}}, {'blockNum': '0x64b4c5', 'uniqueId': '0xd662891a84f478710bb7fa1a5e6669f854296914ed29d94547124f005e729c59:log:32', 'hash': '0xd662891a84f478710bb7fa1a5e6669f854296914ed29d94547124f005e729c59', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb45e2a34714195795aa0d3cc0b3f28dd3a75b84a', 'value': 6999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x017b6aa309b56efc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T15:02:38.000Z'}}, {'blockNum': '0x64b50a', 'uniqueId': '0x558bd4b6ff16479354241b52187c0887f4f5b9d55da818c0f283f2d51144074a:log:15', 'hash': '0x558bd4b6ff16479354241b52187c0887f4f5b9d55da818c0f283f2d51144074a', 'from': '0xb45e2a34714195795aa0d3cc0b3f28dd3a75b84a', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 6999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x017b6aa309b56efc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T15:17:06.000Z'}}, {'blockNum': '0x64b545', 'uniqueId': '0x92f1d4bb844aac0149268a7d3b078f593317b3cc2a214080b209ce23c514e911:log:0', 'hash': '0x92f1d4bb844aac0149268a7d3b078f593317b3cc2a214080b209ce23c514e911', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 21452.55544496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x048af2032cae5cc4c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T15:31:20.000Z'}}, {'blockNum': '0x64b550', 'uniqueId': '0xce91aefd9068506ee27b629d1ab57f410649f6fa14f0c90ce29e40e8aa99fb01:log:135', 'hash': '0xce91aefd9068506ee27b629d1ab57f410649f6fa14f0c90ce29e40e8aa99fb01', 'from': '0x44f771cbd868ff3f6e3a74f6844eb171276e465b', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1560.80000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x549c73828949bbe400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T15:35:11.000Z'}}, {'blockNum': '0x64b558', 'uniqueId': '0x89facd86549d2bf0c5c3484550341e2d28a55b01882c73150daa4fb0efa205c9:log:51', 'hash': '0x89facd86549d2bf0c5c3484550341e2d28a55b01882c73150daa4fb0efa205c9', 'from': '0x31101cab87112fee56bc38084d85c0c4eaa629fd', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T15:37:46.000Z'}}, {'blockNum': '0x64b579', 'uniqueId': '0x7ac0d04556d05c6f18ed27c804ed1f4235d6e19a41222ec0ba728197a0f0b873:log:9', 'hash': '0x7ac0d04556d05c6f18ed27c804ed1f4235d6e19a41222ec0ba728197a0f0b873', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21452.55544496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x048af2032cae5cc4c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T15:44:07.000Z'}}, {'blockNum': '0x64b5c1', 'uniqueId': '0x3df54d2349b4e805c4e1836b254600332ec1b9214274775d3a30908100142a38:log:40', 'hash': '0x3df54d2349b4e805c4e1836b254600332ec1b9214274775d3a30908100142a38', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf723a33e80b4d4a9d95cb72de6a268bd8a48558c', 'value': 245.828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0d538c7f8c24ba0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T16:01:51.000Z'}}, {'blockNum': '0x64b5cb', 'uniqueId': '0x5b67c4e0e185e45da4b0fbc71235859af0552592410205cb7014354d686d6415:log:75', 'hash': '0x5b67c4e0e185e45da4b0fbc71235859af0552592410205cb7014354d686d6415', 'from': '0x48aaee674e40fa434dd6482421c1aef278fb2fae', 'to': '0x0a9ff31ecdaf489e5f64311599b2f22af4c66b00', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x015af1d78b58c40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T16:05:26.000Z'}}, {'blockNum': '0x64b6b3', 'uniqueId': '0x49b8e34f27c3364b5bfafc00a868f4f3b6070ef3965448b087bd2e85a7612b97:log:59', 'hash': '0x49b8e34f27c3364b5bfafc00a868f4f3b6070ef3965448b087bd2e85a7612b97', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'value': 379.18894387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x148e4dbf6baee26c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:01:18.000Z'}}, {'blockNum': '0x64b6b5', 'uniqueId': '0x3a6339a77e735efb3dd8d41f0d7a998f2c392096874f1ed6bea1753237d3374d:log:82', 'hash': '0x3a6339a77e735efb3dd8d41f0d7a998f2c392096874f1ed6bea1753237d3374d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d6b88991bd5940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:02:00.000Z'}}, {'blockNum': '0x64b6b7', 'uniqueId': '0x56c3278f936a36c15a1a9a1dad373e18355019f2764b19ecbac890007b67e73d:log:0', 'hash': '0x56c3278f936a36c15a1a9a1dad373e18355019f2764b19ecbac890007b67e73d', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 5734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0136d73c3bf749d80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:02:35.000Z'}}, {'blockNum': '0x64b6bd', 'uniqueId': '0xfd556c3b2eee8dd487742dc60064ab86816a5526dce609c867b165788c2c696c:log:1', 'hash': '0xfd556c3b2eee8dd487742dc60064ab86816a5526dce609c867b165788c2c696c', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 1025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3790bb855137640000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:03:52.000Z'}}, {'blockNum': '0x64b6cb', 'uniqueId': '0x874bad3ac8e4194a13ac0d4c8e15b829ed667b92d59fb3f0c0139b89026df7b2:log:2', 'hash': '0x874bad3ac8e4194a13ac0d4c8e15b829ed667b92d59fb3f0c0139b89026df7b2', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 18999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0405f0172efbde7c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:07:12.000Z'}}, {'blockNum': '0x64b6cd', 'uniqueId': '0x7b67be22852645f73fbff99264e0e2698bd92f02f7b7ee6c768ebd4fe706484f:log:17', 'hash': '0x7b67be22852645f73fbff99264e0e2698bd92f02f7b7ee6c768ebd4fe706484f', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0x0975f870eec9edea725d01637f93d228b529a5ec', 'value': 3979.10998875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd7b53e7c8a34560c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:07:51.000Z'}}, {'blockNum': '0x64b6eb', 'uniqueId': '0xdeeeed9ab58c8b20dd6138a01de7c6f8a42055b90244d371f03b18c3f136bd35:log:13', 'hash': '0xdeeeed9ab58c8b20dd6138a01de7c6f8a42055b90244d371f03b18c3f136bd35', 'from': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 379.18894387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x148e4dbf6baee26c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:14:08.000Z'}}, {'blockNum': '0x64b6eb', 'uniqueId': '0x2b6c0c3e8de6e47eb9d36da4e6cc26557ef2e08f1f4411a828a6455acaef2442:log:14', 'hash': '0x2b6c0c3e8de6e47eb9d36da4e6cc26557ef2e08f1f4411a828a6455acaef2442', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0136d73c3bf749d80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:14:08.000Z'}}, {'blockNum': '0x64b6eb', 'uniqueId': '0x1154129830533994a37b4500a28c2435f0c1be1bb7a6615abe40a15db8dc4191:log:17', 'hash': '0x1154129830533994a37b4500a28c2435f0c1be1bb7a6615abe40a15db8dc4191', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3790bb855137640000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:14:08.000Z'}}, {'blockNum': '0x64b6eb', 'uniqueId': '0x37aef96925ae043b2f29d62feac5b9d5e6568aca54c1c9b32d564998091e6fba:log:18', 'hash': '0x37aef96925ae043b2f29d62feac5b9d5e6568aca54c1c9b32d564998091e6fba', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0405f0172efbde7c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:14:08.000Z'}}, {'blockNum': '0x64b761', 'uniqueId': '0x2b29dfd89d82ffb8e563ea726a58b568dafe9f6630e1b5c8384b0ca2edbbe2b6:log:7', 'hash': '0x2b29dfd89d82ffb8e563ea726a58b568dafe9f6630e1b5c8384b0ca2edbbe2b6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 5260.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x011d30441f1647000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:40:20.000Z'}}, {'blockNum': '0x64b786', 'uniqueId': '0x95e13c2c841116606283931678d3b872745917e8f55524f558279fab03669d1b:log:38', 'hash': '0x95e13c2c841116606283931678d3b872745917e8f55524f558279fab03669d1b', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 5260.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x011d30441f1647000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:47:23.000Z'}}, {'blockNum': '0x64b7c8', 'uniqueId': '0xaede353ddfd0be0ecfb6b801d6b5eb4daa772afccf7f89184fb8ddca119c78a4:log:19', 'hash': '0xaede353ddfd0be0ecfb6b801d6b5eb4daa772afccf7f89184fb8ddca119c78a4', 'from': '0xa4ef0f342fe85820dc120bd16f9b45cda7db95b2', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T18:04:11.000Z'}}, {'blockNum': '0x64b7c8', 'uniqueId': '0xaede353ddfd0be0ecfb6b801d6b5eb4daa772afccf7f89184fb8ddca119c78a4:log:20', 'hash': '0xaede353ddfd0be0ecfb6b801d6b5eb4daa772afccf7f89184fb8ddca119c78a4', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T18:04:11.000Z'}}, {'blockNum': '0x64b7cc', 'uniqueId': '0x51eb4d5b58ae55fe5b2774982fcfff804f724640cc269d609f6fb6a62bf0ce8e:log:0', 'hash': '0x51eb4d5b58ae55fe5b2774982fcfff804f724640cc269d609f6fb6a62bf0ce8e', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 3588.271645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc28545c1a64792d000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T18:04:35.000Z'}}, {'blockNum': '0x64b8f1', 'uniqueId': '0xd0ba250551f87ad4ce6461528706d391f3898dc9ce21a8880dd3742f1260c452:log:100', 'hash': '0xd0ba250551f87ad4ce6461528706d391f3898dc9ce21a8880dd3742f1260c452', 'from': '0x4c16e333fb4f0f1417152674a5f501a0a15cdbc9', 'to': '0x409ec483c145431a8366a0edff2fe42400ccde9f', 'value': 6591.773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0165573a1aca32fc8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T19:14:05.000Z'}}, {'blockNum': '0x64b93e', 'uniqueId': '0xce89401433fc429c78602d59f42b35365e6e1b678ec1cf3e9b0a63a7eafdf517:log:7', 'hash': '0xce89401433fc429c78602d59f42b35365e6e1b678ec1cf3e9b0a63a7eafdf517', 'from': '0x409ec483c145431a8366a0edff2fe42400ccde9f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6591.773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0165573a1aca32fc8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T19:33:58.000Z'}}, {'blockNum': '0x64bc13', 'uniqueId': '0x9ae083e3cd353c35002949111e7da596e4d5257b25725c5df9faafa8478966fc:log:3', 'hash': '0x9ae083e3cd353c35002949111e7da596e4d5257b25725c5df9faafa8478966fc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe469ae93534e5002fe1986ca38bcc46124a2867c', 'value': 1096.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3b75285ce790700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T22:21:05.000Z'}}, {'blockNum': '0x64bdea', 'uniqueId': '0x2804506fc1fff888866a8bfe7e88e708970afcc41a3aa36a4a5f90364d2d244a:log:0', 'hash': '0x2804506fc1fff888866a8bfe7e88e708970afcc41a3aa36a4a5f90364d2d244a', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0xb5d2c71365eccb354cbcc7214394f38e6b26520f', 'value': 9984.00001739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x021d3bd56e5128c5cc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-29T00:13:21.000Z'}}, {'blockNum': '0x64bdf4', 'uniqueId': '0x47be8818ea5ce27b7a99e70e1679b7f5363c2a079b60ff1ce4c2f78536352f9a:log:9', 'hash': '0x47be8818ea5ce27b7a99e70e1679b7f5363c2a079b60ff1ce4c2f78536352f9a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 13895.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02f14c5a025dce960000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-29T00:16:06.000Z'}}, {'blockNum': '0x64be15', 'uniqueId': '0x56ab433aa19715c0e4d74b5fb32558611898584b19a7bddcc73ec7e2856495fb:log:9', 'hash': '0x56ab433aa19715c0e4d74b5fb32558611898584b19a7bddcc73ec7e2856495fb', 'from': '0xf4846c28e900633e92320114513223e673248099', 'to': '0x3c3ae1990b7d5fcfcccda254c916f68320fc19b4', 'value': 2384.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x813e08ae7f30ca0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-29T00:24:48.000Z'}}, {'blockNum': '0x64be1d', 'uniqueId': '0x7603e5ee656f20213a523652c1239ba15cd5bab1946504f7cbf8bede2ab4f46c:log:17', 'hash': '0x7603e5ee656f20213a523652c1239ba15cd5bab1946504f7cbf8bede2ab4f46c', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 13895.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02f14c5a025dce960000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-29T00:26:52.000Z'}}, {'blockNum': '0x64be39', 'uniqueId': '0xf45eb98bbce5b754c109554f0cf06deda252eff94a77c0f1a4f7a7e36eab333f:log:16', 'hash': '0xf45eb98bbce5b754c109554f0cf06deda252eff94a77c0f1a4f7a7e36eab333f', 'from': '0xb5d2c71365eccb354cbcc7214394f38e6b26520f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9984.00001739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x021d3bd56e5128c5cc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-29T00:33:52.000Z'}}, {'blockNum': '0x64be56', 'uniqueId': '0x466db752d272d8f3d00d09f32c4144043b4bc9ff23f3ed300841e56edef70ab1:log:15', 'hash': '0x466db752d272d8f3d00d09f32c4144043b4bc9ff23f3ed300841e56edef70ab1', 'from': '0x3c3ae1990b7d5fcfcccda254c916f68320fc19b4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2384.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x813e08ae7f30ca0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-29T00:43:36.000Z'}}, {'blockNum': '0x64bf1d', 'uniqueId': '0x912fd2a1004072b5849afabe037499a6baa762ae9cc768e6b6f7c6a5fd418ca8:log:2', 'hash': '0x912fd2a1004072b5849afabe037499a6baa762ae9cc768e6b6f7c6a5fd418ca8', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x33adcf5dbec0d96c8dbc87dcd4ecb7b7cc80f0f6', 'value': 6744.48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x016d9e765a36a6900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-29T01:30:21.000Z'}}, {'blockNum': '0x64bf53', 'uniqueId': '0xd2cc727adf1668a4869218b2f6e64ac958e511faa2865efca0d9bd59de177d03:log:41', 'hash': '0xd2cc727adf1668a4869218b2f6e64ac958e511faa2865efca0d9bd59de177d03', 'from': '0x33adcf5dbec0d96c8dbc87dcd4ecb7b7cc80f0f6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6744.48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x016d9e765a36a6900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-29T01:44:03.000Z'}}, {'blockNum': '0x64c07a', 'uniqueId': '0xff9ce0034605f25c2d6fc62ab44434daf626f9b71e46eab9cd5e2d326d9fee8b:log:50', 'hash': '0xff9ce0034605f25c2d6fc62ab44434daf626f9b71e46eab9cd5e2d326d9fee8b', 'from': '0xf73c3c65bde10bf26c2e1763104e609a41702efe', 'to': '0xb73dc25f987a42e7d92c9e448a03fcff428dec51', 'value': 167.573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x09158ae3a902888000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-29T02:54:19.000Z'}}, {'blockNum': '0x64c0cc', 'uniqueId': '0x0e54ca83d772323b0bdc8307bdb46d7b729961de111e1825d7e76074eb245423:log:23', 'hash': '0x0e54ca83d772323b0bdc8307bdb46d7b729961de111e1825d7e76074eb245423', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x74e48ef73931588aa9dd592d091eaf1df3e4aee2', 'value': 57.805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0322349d3c69748000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-29T03:12:10.000Z'}}]}}
Number of returned transfers: 78
Answer is complete
symbol STORJ
group MPG
date 2018-12-08
hour 18:45
exchange binance
Name: 486, dtype: object
HERE
Symbol: STORJ, Contract: 0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac
Datetime timestamps: 2018-12-08 18:45:00 2018-12-08 06:45:00 2018-12-09 06:45:00
Unix timestamps: 1544247900.0 1544334300.0
Hex Block Numbers: 0x6879da 0x68916b
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x6879df', 'uniqueId': '0x600a31c20ba0e1ff8a4be4ebaa364a6d00ae5d76cb426536a279679aa617135a:log:106', 'hash': '0x600a31c20ba0e1ff8a4be4ebaa364a6d00ae5d76cb426536a279679aa617135a', 'from': '0x0480d186c5f2a031738561e74ebb22fe363a68ff', 'to': '0x298d6b0fcad8ab28ecdbec00d9b965ea1888d6d4', 'value': 5.19741425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1efa9ff1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:46:15.000Z'}}, {'blockNum': '0x6879df', 'uniqueId': '0xb2e95ecb0fb181b3867c7173ab238697c4d8cc971592220f6e11c7e3603ad29d:log:107', 'hash': '0xb2e95ecb0fb181b3867c7173ab238697c4d8cc971592220f6e11c7e3603ad29d', 'from': '0x77cfe1ae5e6ac41538ad41422a89bcacd842a662', 'to': '0x53dc110615dda7cdfcda8089234661097675d0cf', 'value': 22.11103697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x83cac3d1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:46:15.000Z'}}, {'blockNum': '0x6879df', 'uniqueId': '0x8a75dd3d6792e2dcb8efddc53577656eb4018d3ff3ea7f44f2118148a7dc8d68:log:108', 'hash': '0x8a75dd3d6792e2dcb8efddc53577656eb4018d3ff3ea7f44f2118148a7dc8d68', 'from': '0x4663a8b35b073e5d913d52a173246bf3c0081c2e', 'to': '0xe973e25df955e2a3258ebad61cab5342415da749', 'value': 4.21280972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x191c3ccc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:46:15.000Z'}}, {'blockNum': '0x6879df', 'uniqueId': '0xcd56a0f6c04be4ea00a9bae0d245d417de5ce7b8f40374a54c392f9f7c10a133:log:110', 'hash': '0xcd56a0f6c04be4ea00a9bae0d245d417de5ce7b8f40374a54c392f9f7c10a133', 'from': '0x20e53253a8f2e8d2a7465e143b7bbda23241a19f', 'to': '0x07b7f6063c04f901fcdd39bbb1a5b1e7d0c7a3ea', 'value': 10.27614033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d402551', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:46:15.000Z'}}, {'blockNum': '0x6879df', 'uniqueId': '0x019686d61ce89e0e1cb82b2e553fdd116c07ee1c440bb51811f74a06f585b90e:log:111', 'hash': '0x019686d61ce89e0e1cb82b2e553fdd116c07ee1c440bb51811f74a06f585b90e', 'from': '0x53cd2c820b91e2bbea6b5bbbd36632f3d62b618d', 'to': '0xf7349b43a12ec8d06064c5556e51f09cf9a8f8af', 'value': 19.04016674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x717cfd22', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:46:15.000Z'}}, {'blockNum': '0x6879df', 'uniqueId': '0xe97a39e87dd9ffc86ffde18cc60abc80c65fc3f39a53e5575a78ca08c8addabc:log:112', 'hash': '0xe97a39e87dd9ffc86ffde18cc60abc80c65fc3f39a53e5575a78ca08c8addabc', 'from': '0x670d3d4247d732df68a59260d3d3681c8a399bdd', 'to': '0x2caef82a9264dc90bd899e912d9557bd1d87789f', 'value': 7.11322098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a65e9f2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:46:15.000Z'}}, {'blockNum': '0x6879e4', 'uniqueId': '0x37c2ecb1af09ad96c6cca58e8b329a374f4d17dcec10094ffab0dd0765ab5d36:log:87', 'hash': '0x37c2ecb1af09ad96c6cca58e8b329a374f4d17dcec10094ffab0dd0765ab5d36', 'from': '0x1cb1bca5a71cd9f1f98584b0fc44492452d051e8', 'to': '0xb1c5177f9b4d5e518275dfc38f5c2465f3f60c0e', 'value': 5.83538707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22c81813', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:47:34.000Z'}}, {'blockNum': '0x6879ef', 'uniqueId': '0xcda8f75803efb2b0fa22618782d5d9c354b8bc9a1a040ec67b082d2695692f83:log:204', 'hash': '0xcda8f75803efb2b0fa22618782d5d9c354b8bc9a1a040ec67b082d2695692f83', 'from': '0xdf66de7107764a493b9371a5595599fe731d8530', 'to': '0xdecd590220f6745320bbaef16943bd5517803a6c', 'value': 5.15493863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1eb9cfe7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:04.000Z'}}, {'blockNum': '0x6879ef', 'uniqueId': '0x5e9b0a5129fb43d0743cf19692d24ef7760b9f117bdc1c7fb67c5e1c8df19683:log:205', 'hash': '0x5e9b0a5129fb43d0743cf19692d24ef7760b9f117bdc1c7fb67c5e1c8df19683', 'from': '0xbc0a2ee76e4f4b5b7667f205c1f749486379391b', 'to': '0xc96e665357ee7856d41a2d1ac721b0619c2e35e4', 'value': 33.04224041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc4f27529', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:04.000Z'}}, {'blockNum': '0x6879ef', 'uniqueId': '0x8ceb5e4d4926477a6b7c16a3586b7b5b8722db53eef470b46dac4e859bc1c896:log:206', 'hash': '0x8ceb5e4d4926477a6b7c16a3586b7b5b8722db53eef470b46dac4e859bc1c896', 'from': '0x9673142070383adc807e2110869155fab85ecbd7', 'to': '0xc59009d8d1b7afde6dc200f3e0fa50b35db2178f', 'value': 16.00886099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5f6b9553', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:04.000Z'}}, {'blockNum': '0x6879ef', 'uniqueId': '0xcba9c2f8a6d0af6e62e55aef9a60e61a8d21b6cc1cf97dd17edfaaf119e21a51:log:207', 'hash': '0xcba9c2f8a6d0af6e62e55aef9a60e61a8d21b6cc1cf97dd17edfaaf119e21a51', 'from': '0xa60197ca15346d45984e04fc0953d442b204140b', 'to': '0xe7c4c82723678cf7546e1aa64d81d7df406fdecb', 'value': 11.55696694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x44e28836', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:04.000Z'}}, {'blockNum': '0x6879ef', 'uniqueId': '0x9f111d2d7e055d3432c6bd7eb21a3317c7587823fafa015fee51e8e27ae0e37d:log:208', 'hash': '0x9f111d2d7e055d3432c6bd7eb21a3317c7587823fafa015fee51e8e27ae0e37d', 'from': '0xc76c965d030644b5d15b0207914f7ffcfa50b03e', 'to': '0xa98c7a32a0491ff7574dee5f40cbb1fcfbb69837', 'value': 9.78592037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a542125', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:04.000Z'}}, {'blockNum': '0x6879ef', 'uniqueId': '0xa831842c8361060fb70e3538e1287b641d39af7aae7c99172bbb7787eedf157b:log:209', 'hash': '0xa831842c8361060fb70e3538e1287b641d39af7aae7c99172bbb7787eedf157b', 'from': '0x755e72160cdbeade8d01943fb8a4216ee61f4184', 'to': '0x09122d5dd30a310714a9677213e3eac76b983efc', 'value': 5.78279663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2277d8ef', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:04.000Z'}}, {'blockNum': '0x6879ef', 'uniqueId': '0xd1dd1d48c5350c6d850cc8e183a43c95910dc3c08fa506148d50561172a53890:log:210', 'hash': '0xd1dd1d48c5350c6d850cc8e183a43c95910dc3c08fa506148d50561172a53890', 'from': '0x499160e9d6d710b1395eeda22843c001dbd8c794', 'to': '0x9c52a8b1c08d3377085a659373b4bc76d23782db', 'value': 5.33126933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1fc6df15', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:04.000Z'}}, {'blockNum': '0x6879ef', 'uniqueId': '0xd00fb4e55e518baf1bcee1f1cc3de811a091e1e36236e3cc7f8f2cd2430d8ed5:log:211', 'hash': '0xd00fb4e55e518baf1bcee1f1cc3de811a091e1e36236e3cc7f8f2cd2430d8ed5', 'from': '0xbafd496867cf7e03da109990e4f0bfe5794d64a4', 'to': '0xd3212e57796b0c317432541176f8511b72ef7077', 'value': 24.17941302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x901edb36', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:04.000Z'}}, {'blockNum': '0x6879f1', 'uniqueId': '0xde10f0ce50a90fa5d61b0a2dd9461822667a449c78a631ace2162bfa9a96889d:log:201', 'hash': '0xde10f0ce50a90fa5d61b0a2dd9461822667a449c78a631ace2162bfa9a96889d', 'from': '0xdcbe68073a3c1431e715e506966f273842ee2dbb', 'to': '0xc725c3634beca7d3c9c20c89a5807b402c815aa0', 'value': 3.41290664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1457aea8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:32.000Z'}}, {'blockNum': '0x6879f1', 'uniqueId': '0xc5db5376f4c944be5b2aa45bbf99c62ffb647350ae851ccc442b1f71f156f391:log:202', 'hash': '0xc5db5376f4c944be5b2aa45bbf99c62ffb647350ae851ccc442b1f71f156f391', 'from': '0xb233453eb9fad1f8ed67b0aa255f795a1c378fc7', 'to': '0x20708f457a64e0857889fa65d6ea9e325a38ce94', 'value': 3.40227471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1447758f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:32.000Z'}}, {'blockNum': '0x6879f1', 'uniqueId': '0x9cbb27911fd31ef455200fe69dd5878322065952e3892fd5880439930c182e24:log:203', 'hash': '0x9cbb27911fd31ef455200fe69dd5878322065952e3892fd5880439930c182e24', 'from': '0x2526a3a3c0b68d2db0cb8c641013513ed9a96e2c', 'to': '0x078e16a26dd218ac5a60a66dabc0578701132ce6', 'value': 5.52746264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x20f23d18', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:32.000Z'}}, {'blockNum': '0x6879f2', 'uniqueId': '0xf1ca4ca1dabe47744b1bdc82136659f4e8681dca1d8cc2d5a067b0940bccf0b8:log:100', 'hash': '0xf1ca4ca1dabe47744b1bdc82136659f4e8681dca1d8cc2d5a067b0940bccf0b8', 'from': '0xab41a932781880769fd6f1313705296102567679', 'to': '0x357d0ae7d50548851899a3d88ba5ecbe28948f5e', 'value': 11.37584601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x43ce29d9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:41.000Z'}}, {'blockNum': '0x6879f9', 'uniqueId': '0x00225c2c53f9366d3e37f23be0a819bb635446e89e4b4722493479bdb59ac558:log:116', 'hash': '0x00225c2c53f9366d3e37f23be0a819bb635446e89e4b4722493479bdb59ac558', 'from': '0xbaed268740140dccc294bf115978b910b02ba203', 'to': '0xca3026d3869adbe89af050594febc8dce66d9c11', 'value': 11.82417149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x467a40fd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:52:15.000Z'}}, {'blockNum': '0x6879f9', 'uniqueId': '0x47404127500b085a68158b2797f687b71f0d905ff1acbd15f0ab6abcd7803427:log:117', 'hash': '0x47404127500b085a68158b2797f687b71f0d905ff1acbd15f0ab6abcd7803427', 'from': '0x6fd42fc7d0c808bb2697122edf892980b0cd64c7', 'to': '0x5f46bc0f8cb4840d41bb07c18c31337eeb168625', 'value': 3.41101413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1454cb65', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:52:15.000Z'}}, {'blockNum': '0x6879f9', 'uniqueId': '0xfd660b72fde0d6b74f68bea3fe200de5a3271c9fe6d27a140a1345cce9854508:log:118', 'hash': '0xfd660b72fde0d6b74f68bea3fe200de5a3271c9fe6d27a140a1345cce9854508', 'from': '0xb089b9bad4d9e99691658b5ba057aabbaf53661a', 'to': '0x79660c507fe791729eaa87c4704dd7b60e945b1c', 'value': 10.56822345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3efdd449', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:52:15.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x815049e3c50d98d3b0c974a967af989e7475406ffb6aa2fd948687e9cafc7f51:log:118', 'hash': '0x815049e3c50d98d3b0c974a967af989e7475406ffb6aa2fd948687e9cafc7f51', 'from': '0x2412d66f2f2378475f48cbe7e742e5a042624932', 'to': '0x22c8eeb919366a39d4d0f0b6fc749859ddc91de1', 'value': 9.77380585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a41a4e9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x95c146cc089f399e78bc3a315752301ffe7c94febd64b57f68207f9f70009d07:log:119', 'hash': '0x95c146cc089f399e78bc3a315752301ffe7c94febd64b57f68207f9f70009d07', 'from': '0x85e259ef7070502f6fb17ec72ee2d672380b4868', 'to': '0x2d38a53e69ef353dc30846a36f2972a7c7d5c35a', 'value': 5.61792883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x217c4773', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x21f644786346280a3d6ce44fe72baddd45b5ca4545b3d92cc28dc0c8b37577b4:log:120', 'hash': '0x21f644786346280a3d6ce44fe72baddd45b5ca4545b3d92cc28dc0c8b37577b4', 'from': '0x71e8a50dbf13bb0c47660b623885101d89f889a6', 'to': '0xe93febdbc39eff574bec68f47e42f2b8df370730', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0xc8bd9ae1e2f90a4aa852f3e44b070e251fe5b6f5d80532941408b1ad2c9bbd27:log:121', 'hash': '0xc8bd9ae1e2f90a4aa852f3e44b070e251fe5b6f5d80532941408b1ad2c9bbd27', 'from': '0x4910a5674eda16c74066cd2360ec42d92716183e', 'to': '0xd5edb8e0acbab1c2d721459bf2c9c36f03e430b3', 'value': 5.04682632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e14d888', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x5bb3b048bd170476b8f06ef68eefbccdd15110bb31eb8d7aa4276c407f0bc100:log:122', 'hash': '0x5bb3b048bd170476b8f06ef68eefbccdd15110bb31eb8d7aa4276c407f0bc100', 'from': '0x89eeaa02b9521a115faf0fa6bf7ebb187217f0cf', 'to': '0x2d74cbfa01c37fae37463993b4ace45262351ad6', 'value': 3.40192086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1446eb56', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0xda0fb83d529fd6c426f10aa6eb7d16d6a80ed880cd7b9e4e339b6b54419d0020:log:123', 'hash': '0xda0fb83d529fd6c426f10aa6eb7d16d6a80ed880cd7b9e4e339b6b54419d0020', 'from': '0x2d0ec798a704ff483508588df4913d61bf5b9866', 'to': '0xd4bcc1b47772158aea3f3ef77ce0da04af0e15b2', 'value': 7.44626103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2c6217b7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x71b5d31d0cb95ff6d40ce88607cbab1821813bf10fa81deac5f5388e2e565250:log:124', 'hash': '0x71b5d31d0cb95ff6d40ce88607cbab1821813bf10fa81deac5f5388e2e565250', 'from': '0xfdb09380f822c7bd73aac3c94f4aa78ea9d3a57a', 'to': '0xbcec84982ac504e2447aa00ca62441595325cd63', 'value': 7.79750353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e7a0bd1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0xc88c0488fea44d3acb396d8c58e98226533fa030cb84633bd7e4af6650829f2a:log:125', 'hash': '0xc88c0488fea44d3acb396d8c58e98226533fa030cb84633bd7e4af6650829f2a', 'from': '0x748de2629e2e80de73701d0989fcbe8ec73eb88c', 'to': '0x303ed6717f74196474ec2d286b68268aacf56b5e', 'value': 5.79845814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x228fbeb6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x17f1cacf174d7d5057030a604ac7a98dc230b8c6692b6834fbc33bdecca82179:log:126', 'hash': '0x17f1cacf174d7d5057030a604ac7a98dc230b8c6692b6834fbc33bdecca82179', 'from': '0x489eefb3150ff39484f7a1ab4a9a2c737382d800', 'to': '0x42c87af85584643971274114073f942129db819c', 'value': 10.31329854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d78d83e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x48441b8074086d67b1d60543ba4b973f31f7bef55c8d33900a45ca1723b6aafb:log:127', 'hash': '0x48441b8074086d67b1d60543ba4b973f31f7bef55c8d33900a45ca1723b6aafb', 'from': '0xe84ef61a2289266227294ab51d7c148cc1b2c207', 'to': '0x5e6c93e3232294ccfb71bf3568453af827998a5b', 'value': 3.40131593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1445ff09', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x35e0342361f3876180c190a2dbcbe5d2bb509947495ae37cace2fb8888fd4ba6:log:128', 'hash': '0x35e0342361f3876180c190a2dbcbe5d2bb509947495ae37cace2fb8888fd4ba6', 'from': '0x8d8577a94d0e0970b33fdbd76875112205490f15', 'to': '0x15cbdb97a850307d46966e97ba89c7c896871f85', 'value': 5.1316811, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e9652ee', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x1b565d5c90a21586f3f032a3608a5d9c3d46b6942b786fc2ce37d1fee0077aae:log:129', 'hash': '0x1b565d5c90a21586f3f032a3608a5d9c3d46b6942b786fc2ce37d1fee0077aae', 'from': '0x61bc05a0ab1dffd47d507d617daca3adc41fb742', 'to': '0xb56ca59dfaa4ecea19f345b6038e285ba61ef9c3', 'value': 8.40705863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x321c2747', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0xa83d63d22974ce42f26e1097fa91021a76590d3ecdc9f0e591cb25855fbc56c4:log:130', 'hash': '0xa83d63d22974ce42f26e1097fa91021a76590d3ecdc9f0e591cb25855fbc56c4', 'from': '0x8813fde06db8fbb2568562af30735175557fac58', 'to': '0x2cf008e9f47036f67bd93e0bb23fbd073ee72213', 'value': 18.41099245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6dbcf1ed', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0xfeb19c5d36601e9ffe01f6afb0af5aaab586704fce46e7698510c24c7b278902:log:131', 'hash': '0xfeb19c5d36601e9ffe01f6afb0af5aaab586704fce46e7698510c24c7b278902', 'from': '0x8053da7c94fbeaf3cc8420fee58d1b8602ceb0dd', 'to': '0x24e96931498424d08e974edcc4d49c18ae7ba4ce', 'value': 6.85046775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x28d4fbf7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x4ee05e8e4dbd2cf08186dc9eecc51f720eb9f0bb7dae95897530a61e0a1c3287:log:132', 'hash': '0x4ee05e8e4dbd2cf08186dc9eecc51f720eb9f0bb7dae95897530a61e0a1c3287', 'from': '0xbeda98b23bb98885e23dba5adea35b59ab2cdacb', 'to': '0x565f5c860eb9a2ee2d0d125b2ab5a9141ee65085', 'value': 13.4265494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x500749dc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x8a48f1bbeca427c0878a2dc667436642e18ca1890572ad6ee583af71fc3081a6:log:133', 'hash': '0x8a48f1bbeca427c0878a2dc667436642e18ca1890572ad6ee583af71fc3081a6', 'from': '0xc3a745c9bc784fe3559029ca58bacaf372ec36a5', 'to': '0xac463312f5ad3453fb1f437953fbba437aa22dc9', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x82736b6461840e79d67dcf7d148459aa9197165c21124a9daf65e3a2f0718979:log:134', 'hash': '0x82736b6461840e79d67dcf7d148459aa9197165c21124a9daf65e3a2f0718979', 'from': '0x48821a1a23453b4afeb37e8fba28fe9e8469b3b1', 'to': '0x7957e037365bac37fd8ac6f1360652644dba4a69', 'value': 4.95479312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1d886a10', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0xef83ed5d7dd9eebeea50b5ab13cff3683511f796807cc64824607559270469e2:log:135', 'hash': '0xef83ed5d7dd9eebeea50b5ab13cff3683511f796807cc64824607559270469e2', 'from': '0x2dca4e70e83b969bfcac537d04fa8b8a71a223db', 'to': '0xb045c6b88f44cf0d30becbd40a1ca0be7c91bda6', 'value': 9.2109519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x36e6cc16', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x3694af7fd7530854d25c9da998fc613d538bad022171d617a83e01c1fbe59e6f:log:136', 'hash': '0x3694af7fd7530854d25c9da998fc613d538bad022171d617a83e01c1fbe59e6f', 'from': '0x4594d09a81ffdee2738bdb3e9d3dd9f1e222d452', 'to': '0x22c4fbccf42c54456f9ad0519e5cbcfcfb00ff8f', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0xf8a6241b03ac50ea0afbc1ab3e743e97ef6fd9712e1bb9dba25b006cfd205295:log:137', 'hash': '0xf8a6241b03ac50ea0afbc1ab3e743e97ef6fd9712e1bb9dba25b006cfd205295', 'from': '0xbd69d5a47c253a5029d87196032f11cde90f7462', 'to': '0xdf75f54bcc64f4ccabd3404f6038f82ac8c93c44', 'value': 16.47572579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6233f663', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0xac7af2b02f025173198e56f01ba4c3b22dfb6ff4bbebf1d1e4393e5c036cd424:log:138', 'hash': '0xac7af2b02f025173198e56f01ba4c3b22dfb6ff4bbebf1d1e4393e5c036cd424', 'from': '0xb5c74efcaf78363b171062c5177dbb7accc7b17b', 'to': '0xd793e31ed7b732f2f5f80503a726867378176ae5', 'value': 3.55844853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1535c2f5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x7af92724301d886876498baad28ae754e5e48015643bfe3127a7007a3e2dc94f:log:139', 'hash': '0x7af92724301d886876498baad28ae754e5e48015643bfe3127a7007a3e2dc94f', 'from': '0x0875e9ac1146a9b865934f3ddd9cea54f41c62fc', 'to': '0x8f4e78eaf36146adcaed00a2f092f981dd99e982', 'value': 31.12255264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb9813f20', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x9461feb8599343584d9be9b3e7daa578faa1b0c3fb74b954f3cd1f87014f4c19:log:140', 'hash': '0x9461feb8599343584d9be9b3e7daa578faa1b0c3fb74b954f3cd1f87014f4c19', 'from': '0x50c60a87eaace91c08072741ff9b681c0c7ca35a', 'to': '0xffe1e18cf32f9af15b4c3ad0d9fc2061f5518856', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x161da34d0f7eb2502f059c2d8a973104a60bbbcfb4331ca294e77be1a16bb75e:log:141', 'hash': '0x161da34d0f7eb2502f059c2d8a973104a60bbbcfb4331ca294e77be1a16bb75e', 'from': '0xebf88d5987fe84a96e3a4427f9400425e9b5f57d', 'to': '0xd0b4f3e6541fe02a06f3bd0361186c87cdd408a5', 'value': 3.40803962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1450417a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0xeaaf37b84d43e592aacdcc6dd08edc305e0c99b7922aae7d41f183bb250905d4:log:142', 'hash': '0xeaaf37b84d43e592aacdcc6dd08edc305e0c99b7922aae7d41f183bb250905d4', 'from': '0x42cb88c7b225aa24e60cc3a9ad2e27b2a5de0e8e', 'to': '0x19d4173e76c589c92033b4c690d95fe07e612eab', 'value': 5.09746647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e621dd7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0xb7d45ffc4c91018d8538e404acd19b5d8642d46a8cd73a0d32e79a6f9f8bb1f6:log:143', 'hash': '0xb7d45ffc4c91018d8538e404acd19b5d8642d46a8cd73a0d32e79a6f9f8bb1f6', 'from': '0xeaac8ab23e2d10dc53eb187b14ef6db459e0d2dc', 'to': '0x920b8409dea95310c453a18c6d909da5dfee3b83', 'value': 23.78534273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8dc58d81', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a0a', 'uniqueId': '0x2ee5c4c5be6fa12b129be48cf826965ea256e078515f96c2009e5e651bc7ab2d:log:147', 'hash': '0x2ee5c4c5be6fa12b129be48cf826965ea256e078515f96c2009e5e651bc7ab2d', 'from': '0xdd9fc17c8407fb399c5dd8e2cd38880da45a8288', 'to': '0x1d3be10075d24fa0cbae7d7c07b4ec097e5902da', 'value': 5.14470628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1eaa32e4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:37.000Z'}}, {'blockNum': '0x687a0a', 'uniqueId': '0x05a9832a5ecf3af9bc3e82ecb16c52d44dc42dc84f7bc24f773c388328ab583e:log:148', 'hash': '0x05a9832a5ecf3af9bc3e82ecb16c52d44dc42dc84f7bc24f773c388328ab583e', 'from': '0x8e70b0bfbe45c8618b62c7ce30f699327153083f', 'to': '0x61c180fb1aa99c8fd62f9495326b1b44a85d865c', 'value': 7.8127836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e915c98', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:37.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0x4fa4e5142b7b683f78e5a75ca0f56fc21199f92fcd5d58b00f4d381f20bea9e7:log:207', 'hash': '0x4fa4e5142b7b683f78e5a75ca0f56fc21199f92fcd5d58b00f4d381f20bea9e7', 'from': '0x064050c07ee81f6d53499b9bb21030c9fd94f784', 'to': '0x84607785d0b0dfd0cd4ae79fc701d4b30fa8a77c', 'value': 5.03727525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e0645a5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0xba71d6c6afd9c34795ddfee7e0a7eb9e4961ca1a57e1ad5cb39e903040d2c207:log:208', 'hash': '0xba71d6c6afd9c34795ddfee7e0a7eb9e4961ca1a57e1ad5cb39e903040d2c207', 'from': '0x1f61db92180d06dc425819160ede919c71a67ecf', 'to': '0x2722d35b5a1bfe86fceec0d5cfe76ee5e532905d', 'value': 7.97812413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f8da6bd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0x451d53c90c0520a6b7079336b1e35b08a2a05a078bca715c1f489faa1627c06f:log:209', 'hash': '0x451d53c90c0520a6b7079336b1e35b08a2a05a078bca715c1f489faa1627c06f', 'from': '0x0efd386750abfbedecdcfc17bfaa6feb49bb0402', 'to': '0xf5b77f7908f6a929965826b9d45e399a05469752', 'value': 3.40206486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14472396', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0x1234001c217f5ba1474b20004faae9dc0642442d6b38c58a8ddbc10dbb03c527:log:210', 'hash': '0x1234001c217f5ba1474b20004faae9dc0642442d6b38c58a8ddbc10dbb03c527', 'from': '0x2f0ceed2373a2fb5683437875bcbd3d6c6831d8e', 'to': '0x51032f565d113860ebb75181a8fcdaf60975b8a6', 'value': 4.54874623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b1cd5ff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0x854c4a6692b583bb6b7bb78934ad2ff4f187da44c47b6936a108b7545430834f:log:211', 'hash': '0x854c4a6692b583bb6b7bb78934ad2ff4f187da44c47b6936a108b7545430834f', 'from': '0x21c48ae666d03b5c41c2eb678bd3fcfefbe5af94', 'to': '0x23b38fe5c98e40cefebeaf86fc2b767119152855', 'value': 13.64889861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x515a9105', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0x209e8156b51154c2d37a06a084ca77f3ed970d91a0184b58463fdd69e67e9af7:log:212', 'hash': '0x209e8156b51154c2d37a06a084ca77f3ed970d91a0184b58463fdd69e67e9af7', 'from': '0x903839033348268e57648700c402490d7c497ab6', 'to': '0x77070acef4fac1119993a3781160f6fd387a5391', 'value': 6.41173967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x263789cf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0x68ccbc7e2a0d183d4a896148b139667fefac224dd22c120ffa9b6797746f3f2f:log:213', 'hash': '0x68ccbc7e2a0d183d4a896148b139667fefac224dd22c120ffa9b6797746f3f2f', 'from': '0xc01c61531e6981bad2345c6d852874f24ad70b68', 'to': '0x5adc33d8008361bbbdbd33702cb334baba025028', 'value': 5.45247143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x207fcfa7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0xd844002f623aec7a06c04a6783d1da3e544a648b86a2211a330c5ca42ccbb8e5:log:214', 'hash': '0xd844002f623aec7a06c04a6783d1da3e544a648b86a2211a330c5ca42ccbb8e5', 'from': '0x33e59c92fb323ef953508eee069701f4535e92a1', 'to': '0x85a972e5e5fde6514fc24e4a14a29f30d26ced0d', 'value': 6.03593246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23fa1a1e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0xd581ee83f6ab01a0d837fcf5ad07de8545c8bd2923f79f214a936a6cd575af21:log:215', 'hash': '0xd581ee83f6ab01a0d837fcf5ad07de8545c8bd2923f79f214a936a6cd575af21', 'from': '0x53e95b83ca79009b9594082fd633f1567995e0b4', 'to': '0xbddf669846dfeaa8ed1f7760a7b45f881500cc75', 'value': 6.3569803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25e3fb6e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0xf8bc7653a8e36fa61146ca07d05e901eb0f407db2ab91339e9687ca282adc885:log:216', 'hash': '0xf8bc7653a8e36fa61146ca07d05e901eb0f407db2ab91339e9687ca282adc885', 'from': '0xcf5bf5ab6b5858774f0bb951423a916964081894', 'to': '0xf14bae569552ef0a6dea048b0d2422617558697b', 'value': 6.32839167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25b85bff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0xc682df07f4ed63f7b98019b00e8f6c0b194cc1f76d320c2a76c1bdc5266100bf:log:219', 'hash': '0xc682df07f4ed63f7b98019b00e8f6c0b194cc1f76d320c2a76c1bdc5266100bf', 'from': '0x40ddc6b2b6863789276acfa17d9cfd25ac849ad4', 'to': '0xaafbf3084e1f071a7ff029ea0b2dd9756b3eedc8', 'value': 5.20323742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f03829e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0xef1aca61c792418b7acff684c38d7b1289b31d24a1f73d7c28af13d65fead15f:log:220', 'hash': '0xef1aca61c792418b7acff684c38d7b1289b31d24a1f73d7c28af13d65fead15f', 'from': '0xd5ca96c98dc43c646c6905f0719484743030c7c7', 'to': '0xe006fcd354fc870c25d5967adc747e4d7afa53ec', 'value': 2.10641817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c8e2399', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0xcfa7610df447e55d6bf1c9357b02bd35b168710c0091f6aa164cab69b31d348b:log:221', 'hash': '0xcfa7610df447e55d6bf1c9357b02bd35b168710c0091f6aa164cab69b31d348b', 'from': '0x8c961b9e25a6f9ab3984611b603b01e48867fec0', 'to': '0xede10b59669cf3b4f4b3a1e742b794642b59d2a0', 'value': 22.53108714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x864bb5ea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0x9292107595cefd32a1eb9a7d358031f65843ea563ab1f262d9add0e27bf0ba62:log:222', 'hash': '0x9292107595cefd32a1eb9a7d358031f65843ea563ab1f262d9add0e27bf0ba62', 'from': '0xe5006d41e85f9e6f56ecafb82f5fe9d431750be1', 'to': '0xbdda08b34a8eba9ac4cc3c1e380f27852061e2fd', 'value': 9.61698065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x39525911', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0xa04153724aaa1eda4e1a533766490ca76f94f4093c4a0beaf2ed9953562c16ae:log:223', 'hash': '0xa04153724aaa1eda4e1a533766490ca76f94f4093c4a0beaf2ed9953562c16ae', 'from': '0x19b880b03479a711f55cf9e33654bf1931a2b271', 'to': '0x2e126e6f833d05834baa4a854ee05c3eb0827865', 'value': 8.16438346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x30a9dc4a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0x087d8afcebaafb5fbfa85cceb7ba96e54e24dc10dcf39603df1e0b6bb86e80a9:log:224', 'hash': '0x087d8afcebaafb5fbfa85cceb7ba96e54e24dc10dcf39603df1e0b6bb86e80a9', 'from': '0x7c9b5281ef37e8fa391c10afa6b7b39b54265a27', 'to': '0xad3f47dd4929f4c1d1ff49501bad7e4b5fa617b7', 'value': 7.79079129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e6fcdd9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0xb470fb726a2f7fa9e44d58a9bdda045158c9d40477d19480a0338106b195936c:log:225', 'hash': '0xb470fb726a2f7fa9e44d58a9bdda045158c9d40477d19480a0338106b195936c', 'from': '0x75ef36090d98a9ea58352e5ba255596b8514abbb', 'to': '0x2d28a64c145ca4e836ef688120ee3716e318367d', 'value': 4.55994219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b2deb6b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0x6597b4748c21665057746c720b796e02ad60cc539424099166b5605c5bfd3d7a:log:226', 'hash': '0x6597b4748c21665057746c720b796e02ad60cc539424099166b5605c5bfd3d7a', 'from': '0x8f053eca4f262301d77abb6a7d0a018f29817257', 'to': '0xfa26a8ce3a01df0e9e5addecbd320e8d5ae7acff', 'value': 3.86537897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x170a19a9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0x036d814a3a0d7e23a0bbffee93df8dedeebecd61b3bc2589a4d3c3d945b6e3d6:log:227', 'hash': '0x036d814a3a0d7e23a0bbffee93df8dedeebecd61b3bc2589a4d3c3d945b6e3d6', 'from': '0x7efe410530773211540d6171f4a96a7455730055', 'to': '0x5105a81eedce8ecb95f8ae5df560bf36fd9c0782', 'value': 5.3366106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1fcf0584', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0c', 'uniqueId': '0x5307fa39af452c8f86ca896623cfc5f5840053d34270b1983e39210321f2d77a:log:64', 'hash': '0x5307fa39af452c8f86ca896623cfc5f5840053d34270b1983e39210321f2d77a', 'from': '0x504ee318cd428a07e32adf4f4d7d3af8a21c4359', 'to': '0x0f48078a7884881f77a5dbcc6a309443091ccd0f', 'value': 17.44727838, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x67fe6f1e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:56.000Z'}}, {'blockNum': '0x687a0c', 'uniqueId': '0xfd255e4c9dede7c85122eb6ab74626bd88d6d471885c74a298217764c1fc6236:log:65', 'hash': '0xfd255e4c9dede7c85122eb6ab74626bd88d6d471885c74a298217764c1fc6236', 'from': '0x39d006bfb4523479f79d026c247aa13ded2471d1', 'to': '0xcd1a031eb15987ee4a233514d75b0e4546a3e286', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:56.000Z'}}, {'blockNum': '0x687a0c', 'uniqueId': '0x0e34cf9e329d516cc7a162f2c6e18aa660ab2e2e9d72f758fb847bef43baabb5:log:66', 'hash': '0x0e34cf9e329d516cc7a162f2c6e18aa660ab2e2e9d72f758fb847bef43baabb5', 'from': '0x9607acaf63410118262cffdee419c12d113adfc3', 'to': '0x14d77fe78cc7d3d5235ae7c2f6071c622a95fde8', 'value': 5.25562772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f537394', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:56.000Z'}}, {'blockNum': '0x687a0c', 'uniqueId': '0xb40ae7e31c073122d95fd089cabb9c91acca218d878a945acd74b81b6fdb14b0:log:67', 'hash': '0xb40ae7e31c073122d95fd089cabb9c91acca218d878a945acd74b81b6fdb14b0', 'from': '0xd040bea902a78e1707def46e9b4e1bdc2badfeac', 'to': '0x57fb1b1c7916deac62438c887362344059803e7b', 'value': 28.95411755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xac947a2b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:56.000Z'}}, {'blockNum': '0x687a0c', 'uniqueId': '0xd0ab1327eda5d463c54ac6d06b660bf3478aeef5713b3b6e94e93b8951dcb8ac:log:68', 'hash': '0xd0ab1327eda5d463c54ac6d06b660bf3478aeef5713b3b6e94e93b8951dcb8ac', 'from': '0xdd8467b072a7041b756df1947fbe9bb42e5f079b', 'to': '0xb46bfaeb18c0d825eb9462b62864258a81ba7abd', 'value': 16.74198522, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x63ca3dfa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:56.000Z'}}, {'blockNum': '0x687a0c', 'uniqueId': '0x484485b213abd4b8cb1423298ca0ea67819ff1be760c2dd5ad890641c6b43dbf:log:69', 'hash': '0x484485b213abd4b8cb1423298ca0ea67819ff1be760c2dd5ad890641c6b43dbf', 'from': '0xbb558b60e7b9551b425575548e61b2811b990c51', 'to': '0x1204077952626c2e1dcafac1b45059c1593908c4', 'value': 11.57415493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x44fcc245', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:56.000Z'}}, {'blockNum': '0x687a0c', 'uniqueId': '0x47cecf08e3ecd16ec55b9b5d3ed2b9576aa9563e8dd1bf23fca95d958df8209a:log:70', 'hash': '0x47cecf08e3ecd16ec55b9b5d3ed2b9576aa9563e8dd1bf23fca95d958df8209a', 'from': '0x958302005b8030c33939ae01bf15b1dba489c8c6', 'to': '0xeb714c20d2769f6b022da18c5ff01ae6b118d977', 'value': 6.4754189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2698b482', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:56.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0x6d35fc6eb9d5ccf5187218946d000f8cab7c47c132222a0393c6ba085cc78f46:log:150', 'hash': '0x6d35fc6eb9d5ccf5187218946d000f8cab7c47c132222a0393c6ba085cc78f46', 'from': '0x66fddc337195de02ee782a705dd0dc70b1652061', 'to': '0x9d79f6bdf5e3cd330bdda462ec0861d5d5bea594', 'value': 12.3308887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x497f7166', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0x24752c662e3836720680f68f69e0b583586b436d5451bfcb88f6842f4b565f66:log:151', 'hash': '0x24752c662e3836720680f68f69e0b583586b436d5451bfcb88f6842f4b565f66', 'from': '0x926dd1813baa71c5842ae5a801536fc572574317', 'to': '0xc4e968592c02308ce891f6a0320dfc461acd4af2', 'value': 2.10884326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c91d6e6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0x7c95b9e5f79634cdf028e829d62e7a738ed0265ebb00b349864ff75ad491dacd:log:152', 'hash': '0x7c95b9e5f79634cdf028e829d62e7a738ed0265ebb00b349864ff75ad491dacd', 'from': '0x3da231fce1df56b368c8ce14d382934fd2a62907', 'to': '0x85d5511da83071c570a51c626e7bbe91259394c3', 'value': 6.29727893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2588e295', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0x1155099ff4019208d4421515630170e291696034b2410391cbf7cdbdcbae1729:log:153', 'hash': '0x1155099ff4019208d4421515630170e291696034b2410391cbf7cdbdcbae1729', 'from': '0x61a6b9cb0cc7f283c6c9bd9e506da388b88e7388', 'to': '0x16af6c0481b79159222a8cb50525ede81d46fee8', 'value': 7.11433774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a679e2e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0x5cec47a93a70ee36c8040580e9e31b83f7392793d617c9caf7b37e207cb861c9:log:154', 'hash': '0x5cec47a93a70ee36c8040580e9e31b83f7392793d617c9caf7b37e207cb861c9', 'from': '0x73ca9aec4c11774821353df0f8eaf902d0bd05fb', 'to': '0xc935553cbf225cb7e0787e1f30a0324535bc3393', 'value': 5.83791366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22cbf306', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0xbcb9b77ff649a877297ffa65d22159e4587815f0a2a2120d214771d5365f507b:log:155', 'hash': '0xbcb9b77ff649a877297ffa65d22159e4587815f0a2a2120d214771d5365f507b', 'from': '0xe6e4dd69b6d8e68117f2eb5732c5b1359e0c458c', 'to': '0x465ac7506f1b263b78d4c488c82ebd860ed3f478', 'value': 12.62675048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4b42e468', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0xb2e7b6b6a69881e5b0491ed1b333d26b788d9a3dc727a119a568aa0c9c346f34:log:156', 'hash': '0xb2e7b6b6a69881e5b0491ed1b333d26b788d9a3dc727a119a568aa0c9c346f34', 'from': '0xd0ad58110149e62646bc9742cae5d527b8ddd95b', 'to': '0x874bfad06da2d5132c38b2eac4791c228678ead6', 'value': 3.13539051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12b039eb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0xebb943aef0473ff2281fb61890d41e2cfb76727d009185cf0234c94511717337:log:157', 'hash': '0xebb943aef0473ff2281fb61890d41e2cfb76727d009185cf0234c94511717337', 'from': '0xfcd24a2bdbc9e395c3214be5528b884aa42cc446', 'to': '0x2cfe4648cbc6d1e5964987ec0118f1e9021a07ea', 'value': 9.84620573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3ab01e1d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0x55f677d1aa99a7781a96e5d744a861bf13d78b348a9eb2022c1dae9f77d03adf:log:158', 'hash': '0x55f677d1aa99a7781a96e5d744a861bf13d78b348a9eb2022c1dae9f77d03adf', 'from': '0x895f64ba3170d757d1d438b002bbae6173876ad2', 'to': '0xe3ed86d39139eed5ddfde57418e10496697e7257', 'value': 3.41441185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1459faa1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0xaaa9033aecf7c50341665e272b7b1fa07c1c38272226b6128de8a88d60d4eefd:log:159', 'hash': '0xaaa9033aecf7c50341665e272b7b1fa07c1c38272226b6128de8a88d60d4eefd', 'from': '0x726bc3c633108871beabf3de3343496c6b629705', 'to': '0x0aef42db4d44a13abe0967f212655fb6645efc80', 'value': 12.40873158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x49f638c6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0x962b45dd8f63f429c93e5be1764112c9080d939ed724d697f24bd54e8b6c40fd:log:160', 'hash': '0x962b45dd8f63f429c93e5be1764112c9080d939ed724d697f24bd54e8b6c40fd', 'from': '0x7f4687eb93d215c3e0f80f357b3d22b709de9e53', 'to': '0x2a114b8ee99cae8917d51012d614df374f6d7656', 'value': 5.41440917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2045bb95', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0x17a09094d0f1c7d8aa650ac733569f90f923f15391f548410634a77e589dbacc:log:161', 'hash': '0x17a09094d0f1c7d8aa650ac733569f90f923f15391f548410634a77e589dbacc', 'from': '0x674bf27fd4a61cbf958b613d9cd28e05ace2f8c3', 'to': '0x7344d1f5997d11d54a3c88303baa39bbcaa5fc29', 'value': 5.8400738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22cf3ed4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0xdc9950ab44e519a7cf7706f5cd4c7d6948c16f3576bb42370f268d203de462f0:log:162', 'hash': '0xdc9950ab44e519a7cf7706f5cd4c7d6948c16f3576bb42370f268d203de462f0', 'from': '0xc9a14cbd3e1e64b6d8ebfd9b54c03df71c02282b', 'to': '0xb7f34bc9a3f7fe664abcbc9d4d324ad99f66191b', 'value': 10.42261623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3e1fa677', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0x8b8a31aea1145f06a2ed5eb7f73a192e19053700dfa07d1ae381a3b3f4d41769:log:163', 'hash': '0x8b8a31aea1145f06a2ed5eb7f73a192e19053700dfa07d1ae381a3b3f4d41769', 'from': '0xaeea481c4f13c5f21b56f4ca74cc2f4326b73a52', 'to': '0x2f52cf6a5453c06c0a1d49488169ddaa3b427b88', 'value': 15.82342148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5e50a004', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0x0894a0a0670e6712f46deb106d2f74dd787ed903b3ca377eb933e4ae1e2be09e:log:164', 'hash': '0x0894a0a0670e6712f46deb106d2f74dd787ed903b3ca377eb933e4ae1e2be09e', 'from': '0xe5f44d6a375dc9e3712ab5ae1bca90edf2ae8426', 'to': '0xa586e81b9e5f21e304b01038c05db31aaaab1928', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0x9e3874ed24aee77928973897454162b5cbfa32a7d6fe481a56e499842acb4a76:log:165', 'hash': '0x9e3874ed24aee77928973897454162b5cbfa32a7d6fe481a56e499842acb4a76', 'from': '0x7388d5ef264c4e4fb4d592838fba65082c262303', 'to': '0x4e794209c3c9ade08225f99d80b64115b8b66d4f', 'value': 3.41788758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x145f4856', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xbe033a63d8a0aa2c85f6a8879c102baf8efb9d30049cc5d08778461f03b3304b:log:110', 'hash': '0xbe033a63d8a0aa2c85f6a8879c102baf8efb9d30049cc5d08778461f03b3304b', 'from': '0xad23f720dd2e14bca81f09b66c552c73168a4020', 'to': '0xf5130110191a1f40a6de9558e801eb8c2cfeeac5', 'value': 10.46327981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3e5db2ad', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xb2018a72fb1ffe554bf16fb507901191f7178e87ba44afe1710e72cb3f775396:log:111', 'hash': '0xb2018a72fb1ffe554bf16fb507901191f7178e87ba44afe1710e72cb3f775396', 'from': '0x3b0ed05b194bde1016ad5db3cf27a2552183feac', 'to': '0xfae86aa1e0b15109269778b790d5918be92f1895', 'value': 11.49250934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x44802d76', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x2b490fdf890253f8cb8382494ac0cff3f38fb705c9acf5d8209bdba5852dd88e:log:112', 'hash': '0x2b490fdf890253f8cb8382494ac0cff3f38fb705c9acf5d8209bdba5852dd88e', 'from': '0x9ea819c2f32012b5488041da1be670b26f8c39b0', 'to': '0xd0871262fb0544913c66049c3348392743605a26', 'value': 12.42797766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4a1396c6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xcf06e776372597b8e219c6b6004e1415c99c0ecce126c906c2fbafad16b2ed2e:log:113', 'hash': '0xcf06e776372597b8e219c6b6004e1415c99c0ecce126c906c2fbafad16b2ed2e', 'from': '0xcdce8e0f0c9133379287fe1bf31797f5ee7ac61b', 'to': '0xfea2ccce9b116da548160ea8e4c6d2999b1a104e', 'value': 6.37675957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x260229b5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x04e93fda5608702d2c62d0ef824db447adc889048a88909829cfe84f47c5eb6b:log:114', 'hash': '0x04e93fda5608702d2c62d0ef824db447adc889048a88909829cfe84f47c5eb6b', 'from': '0xcc4f57549d2eb215725f0cb8b97ad41e63bfbb3f', 'to': '0x2488b3e3445895a489b05e3c059bbc72d8ebef75', 'value': 3.56150278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x153a6c06', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x83be2ab128743e1ba9e3aa5c1db32a04c4474890fdc410eafa7da441d4664903:log:115', 'hash': '0x83be2ab128743e1ba9e3aa5c1db32a04c4474890fdc410eafa7da441d4664903', 'from': '0x618b02b15cdfa7238a68e6c007f2f1d35a0fc1ec', 'to': '0x3f399ca3e00ce410e7d51b809323ae31fb5ea27e', 'value': 9.65450766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x398b9c0e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x9ef9de5f7f6527d6f45043cbaebf6a6acf97016a095ee1d20f59a3f3157d4ae1:log:116', 'hash': '0x9ef9de5f7f6527d6f45043cbaebf6a6acf97016a095ee1d20f59a3f3157d4ae1', 'from': '0xd31164b4f9508ddb67ce6f0a4eb89637201fd8ff', 'to': '0xe04309f3dbb45bb87d9d50cde95f4b932e93c113', 'value': 6.31021873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x259ca131', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xd3fadfb204c040422279d2214a5d2385771220b80aa0c9d0e7c3377a9aef2136:log:117', 'hash': '0xd3fadfb204c040422279d2214a5d2385771220b80aa0c9d0e7c3377a9aef2136', 'from': '0xd456349f5ad070615d5ae406a426f6c426ec4e45', 'to': '0xb4b784a151e6023e5ef5aec12d242991ef3f9d27', 'value': 10.16203489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3c9208e1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x2968ad67a5b21d84e5c8a57fd5c411c0badf3ab1349b34fc5dd935adfc6e78a4:log:118', 'hash': '0x2968ad67a5b21d84e5c8a57fd5c411c0badf3ab1349b34fc5dd935adfc6e78a4', 'from': '0x4d0d226750e02353f8c5af1c1ff5d7864ab182eb', 'to': '0xc68ad9f28292b5e1c4dfd67c77559105adaea668', 'value': 4.9726185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1da39d1a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x4965b669ba884465bb3ca76058eddf7836c61972800183ae89a75af63e61bc8a:log:119', 'hash': '0x4965b669ba884465bb3ca76058eddf7836c61972800183ae89a75af63e61bc8a', 'from': '0x05a6a947d369ff9bda38b60fad76b79aa29ad3fe', 'to': '0x6aa51547499409164c3dbd69974e0b54abe354a4', 'value': 6.30873645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x259a5e2d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x0783ec68c9eb59bf988c4ab8182522c90ef300497e0348d6ba8b104f9a942a8b:log:120', 'hash': '0x0783ec68c9eb59bf988c4ab8182522c90ef300497e0348d6ba8b104f9a942a8b', 'from': '0x62a2bf0369aeb66576cc6b667375ab387c4c305f', 'to': '0xc426558d19558a0e6f8618513854efecc50ae06a', 'value': 14.30871047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x55495c07', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xb9c11bac62ee7f41d389d411c13be17c0ed00a41741667a44990216eba4b3568:log:121', 'hash': '0xb9c11bac62ee7f41d389d411c13be17c0ed00a41741667a44990216eba4b3568', 'from': '0xc3451fbef616e65570fd659c22bc48bd9c097a0a', 'to': '0xd675e9d8340dabed8370fd6dd2f1de25ac3b498b', 'value': 5.21560887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f166337', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x7fafb82c69fba6541ee7412141fee620354b120133edb57ef4194a0853ec14bf:log:122', 'hash': '0x7fafb82c69fba6541ee7412141fee620354b120133edb57ef4194a0853ec14bf', 'from': '0x46fbd3e74eb6706d3e36f3587c7372679fb595e3', 'to': '0x86a1ddc07a49019515235b08041f8a88747f49c7', 'value': 3.41004214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14534fb6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xe523f835db866f1c550a858e2d0f55c4fd5446156d33d073d258d09be2514472:log:123', 'hash': '0xe523f835db866f1c550a858e2d0f55c4fd5446156d33d073d258d09be2514472', 'from': '0xd02d2af9a863bc6b98355395bde4b3d16b5a4e43', 'to': '0xaa59bbded2aaa5d6365094d4e47d23456d470e4d', 'value': 23.1555706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8a0498c4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xeb44b45ab93d9bb16674b3e3b522cb21e0b55e742d68c62d94b068813153f697:log:124', 'hash': '0xeb44b45ab93d9bb16674b3e3b522cb21e0b55e742d68c62d94b068813153f697', 'from': '0x82f60b3927aa52c774f321a3dcd9e78f857e2d61', 'to': '0x81b9a52432249b635e37a105e53de82380f5144f', 'value': 6.81566381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x289fe0ad', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xc671a78cbd05568a6868f72b52795df4202742029dd1ddde58a0e32ca5ab0414:log:125', 'hash': '0xc671a78cbd05568a6868f72b52795df4202742029dd1ddde58a0e32ca5ab0414', 'from': '0x1faa6c8e5b39697828322b4c6cfc633133be5faa', 'to': '0xe29da0ec27c57040ebd42ffc08adbb318ba1096e', 'value': 7.02752149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x29e32595', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x8a1d314b1d4f2be14410d77fdd7826ddcb90d9fa5e850fecda6d622c13a8035d:log:126', 'hash': '0x8a1d314b1d4f2be14410d77fdd7826ddcb90d9fa5e850fecda6d622c13a8035d', 'from': '0xeeedf1374ffd184408a77c7f3d6fe2480b9c3a2b', 'to': '0x013e76025303feaf75e7632ae3800e5349b90c2f', 'value': 20.81206343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7c0cb047', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xae349cb81a658e2229799a8fdd0d6fa75e494082cc6fc80f40a29bec6b714028:log:127', 'hash': '0xae349cb81a658e2229799a8fdd0d6fa75e494082cc6fc80f40a29bec6b714028', 'from': '0x3f0255c8a9e5b758dc2a225b6364428ce2d7f523', 'to': '0xfa139a49edcb48e801f6852d20bf58ba606972bd', 'value': 3.55086921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x152a3249', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xd9d8c5b986e4bc10bdb11e5de1de8c8b2f0c811ac8806ca14a335cfc89a67b1c:log:128', 'hash': '0xd9d8c5b986e4bc10bdb11e5de1de8c8b2f0c811ac8806ca14a335cfc89a67b1c', 'from': '0xd146b6dea9528a426160ded4261a491db25f6f2f', 'to': '0x4f02be6109f54dd7e86bbf6315715a25a889d31c', 'value': 5.02714233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1df6cf79', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x15b95474cb5b12209354147886826830d6ff9b6f19ec40600eef3249c1b2de22:log:129', 'hash': '0x15b95474cb5b12209354147886826830d6ff9b6f19ec40600eef3249c1b2de22', 'from': '0x227389d22785dcb6a4aa1630fe0e572013509757', 'to': '0x6c56c85ed3210773673345f1e56e0e041a17afaf', 'value': 10.88110593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x40db4001', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x73889ffafe96aae00960bcce6a75a8ca421b1bda88580ab8c5c0594bb7d778ff:log:130', 'hash': '0x73889ffafe96aae00960bcce6a75a8ca421b1bda88580ab8c5c0594bb7d778ff', 'from': '0xd4122e016aa350bc2789def540022d4d9d548e91', 'to': '0xd07332d5d8ec8ea5a9ff58c3769d72396163d018', 'value': 6.80311472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x288cbab0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x0da0108305eb1522d5053791e8617984c11b28604c2c06f9d44b203a6e52ddd4:log:131', 'hash': '0x0da0108305eb1522d5053791e8617984c11b28604c2c06f9d44b203a6e52ddd4', 'from': '0xee28e9fb7dbdbbc33edb821a1731952a4c588c91', 'to': '0x131496333aba1f9a19d85666cd49e25c354c2411', 'value': 11.54224085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x44cc0fd5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x37261405ab9ac34b366e233faf086ac3dc25d336138202301ddb7dda4609894b:log:132', 'hash': '0x37261405ab9ac34b366e233faf086ac3dc25d336138202301ddb7dda4609894b', 'from': '0xe4c32645a81f5266edc5fec9bf794916aba4b3e6', 'to': '0x97b6d749076e832a66d407cea67c6f64c0fb1554', 'value': 5.05798397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e25defd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x9caef6f68f3875a32b7799f6fb95f824e78d575cabf68df9e1bc261df0747bf3:log:133', 'hash': '0x9caef6f68f3875a32b7799f6fb95f824e78d575cabf68df9e1bc261df0747bf3', 'from': '0xfbe65ee51f7e9ee05d555f936eb190f50354c8c6', 'to': '0xeab57b5ceca5e30ef678cf52e514123d2c7c5614', 'value': 16.05684307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5fb4cc53', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xb991c806c1305e2f475e054279e7ec6dd0b845f70f9a4b2e3d2c939275f379ce:log:134', 'hash': '0xb991c806c1305e2f475e054279e7ec6dd0b845f70f9a4b2e3d2c939275f379ce', 'from': '0xfb4b41d57d7d5d9183d98ad5bdb327e8ffb61760', 'to': '0x12eabcf749500ffddb4d34c1c2222e713c609fba', 'value': 13.85650687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x529759ff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xadad971a9d82d9802a0f0b964c80b44c486d4d512ffc3836066802d1edd57120:log:135', 'hash': '0xadad971a9d82d9802a0f0b964c80b44c486d4d512ffc3836066802d1edd57120', 'from': '0x6406659254f536a2884cfb7feb142fe6aaa818c5', 'to': '0x0ba894600919a02b1136aaa89163e73e9e5ad20d', 'value': 4.00498161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x17df1df1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x2cb6939ef37e58439489918619bfda00bf94318deb56e1a0cc89313315ec505f:log:136', 'hash': '0x2cb6939ef37e58439489918619bfda00bf94318deb56e1a0cc89313315ec505f', 'from': '0x48c07068357cb9b489dd2e3c4d3e99523cc4dd12', 'to': '0x9108582f6d3dd2ceb2e941ea25fb152074aaf18d', 'value': 7.14319903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a93a81f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a1c', 'uniqueId': '0xa58fd30a2ea7e49cf33efc6f3c32f7bdf6a53cc74d20822368b1ce09680507d5:log:95', 'hash': '0xa58fd30a2ea7e49cf33efc6f3c32f7bdf6a53cc74d20822368b1ce09680507d5', 'from': '0xc04dcae4ad01cbbcbc5b5a177950866b5963b89b', 'to': '0xa23956f86fef0e95b72e6cb0180b41ee983ce147', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:00:10.000Z'}}, {'blockNum': '0x687a1c', 'uniqueId': '0x43c55b0e1051807cdb8a92c52a446eca9939ac295de47e776100047eed5ce3a3:log:96', 'hash': '0x43c55b0e1051807cdb8a92c52a446eca9939ac295de47e776100047eed5ce3a3', 'from': '0xb99f58b76f848e539cb39e40ecfd6dd164e8acf3', 'to': '0xf2e78e661167a306e697c6fd37a077979c41da96', 'value': 10.92580711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x411f7567', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:00:10.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0xc2891a4ba78acc9feef94a0e8ba40ddd146e6ceaa419e833766ad948c18f217f:log:120', 'hash': '0xc2891a4ba78acc9feef94a0e8ba40ddd146e6ceaa419e833766ad948c18f217f', 'from': '0x26b62103fd29311959bcb1d9164aeedb4fed7b3e', 'to': '0x3efd0f03f35121a447a23da38a3e6bf53aea492f', 'value': 13.94903843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x53248b23', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x78147b1688bef6a20334f1a2fa7fdd71d182c01b65665efdc54bdba27fe64484:log:121', 'hash': '0x78147b1688bef6a20334f1a2fa7fdd71d182c01b65665efdc54bdba27fe64484', 'from': '0xb02493089ae4925ab168377a7a58f08703ca9760', 'to': '0x97358425d619f00432efcec753302739166e4443', 'value': 10.64007225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3f6b7639', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x45e5beb5260752bf98304406371ecefee60ec7ec1ba3c7a1a82db203b2c54755:log:122', 'hash': '0x45e5beb5260752bf98304406371ecefee60ec7ec1ba3c7a1a82db203b2c54755', 'from': '0x4fde4f52a39a0908a5fe8f040fc34f773e196d02', 'to': '0x93e42b030cf290ad600b2831c42481d47bfdffd1', 'value': 17.59216876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x68db84ec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x384bd8c776da3921ab8fedb7d3a5e154502234a2a11b43c09fb1091e702b1421:log:123', 'hash': '0x384bd8c776da3921ab8fedb7d3a5e154502234a2a11b43c09fb1091e702b1421', 'from': '0x806bcc9fdcab688125c62669e2fd97f3777c89dc', 'to': '0x3e3491e2c95a40c19fab96121debf68c37b17c5f', 'value': 13.36993354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4fb0e64a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x2780f1f205f84c8f9ec224f64f0b9b8544d59a0dacfd7b20eb0139b7681a2f9b:log:124', 'hash': '0x2780f1f205f84c8f9ec224f64f0b9b8544d59a0dacfd7b20eb0139b7681a2f9b', 'from': '0xa30d9e116fd91a02cb5b7a96e9386dcc4517419b', 'to': '0xecaaf58b7e605ec666b62d981b97800e25e4a6da', 'value': 7.72542983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e0c1207', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0xe22841c77b8431df591e657a42488cec64a7ea69c40cb1f27fb5ebd529dfb2b5:log:125', 'hash': '0xe22841c77b8431df591e657a42488cec64a7ea69c40cb1f27fb5ebd529dfb2b5', 'from': '0x10e3b70833e0cda4145775a2ca350cde43aff342', 'to': '0x88b998fa974c87400ecb662574d87a0ae4e8865b', 'value': 4.97371566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1da549ae', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0xc94d657a62c527ff587694aa6100d4d3e3e91fb1a4e9fb8c7025da2c669bc878:log:126', 'hash': '0xc94d657a62c527ff587694aa6100d4d3e3e91fb1a4e9fb8c7025da2c669bc878', 'from': '0xa69a4e128e5c44660f8ddab5d95f4302d83d6679', 'to': '0xaade4dda371503fadc02bc5a171787e3316e7ca8', 'value': 12.78176901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4c2f6e85', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x61ec2d84d1d2d21940515d776dde291ad85e2afc6716953798e49777da55f6ee:log:127', 'hash': '0x61ec2d84d1d2d21940515d776dde291ad85e2afc6716953798e49777da55f6ee', 'from': '0x6f3637b32ba7a0e1fe18c23a197142fd525feabb', 'to': '0xaef8e5349d5ab51451fe3ba2242218d7bed41f39', 'value': 4.24076041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1946e309', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x9e4d2fe773cc389b4124118db67f09c211cfbe30e8187b539f5e7fc7163b28a6:log:128', 'hash': '0x9e4d2fe773cc389b4124118db67f09c211cfbe30e8187b539f5e7fc7163b28a6', 'from': '0xdffc62101c10465619654809ce3fdf26c551527e', 'to': '0xbfa92891726ed7a58d9ab38bce5be0578cc57868', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x42fd50235a0e639e052796f13de916d118e82d920ff2285a8233cc42f85d19ac:log:129', 'hash': '0x42fd50235a0e639e052796f13de916d118e82d920ff2285a8233cc42f85d19ac', 'from': '0xc0574659dadacd09a36ec3ffc3eb667e49b4b816', 'to': '0xdd50635e1e0a9888dc94306467d52115626503e5', 'value': 11.83441301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4689e195', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x1c7e41970fe6b8957d787000e733f6635956cc9b4af5859ad5e1f8f84a65bfa3:log:130', 'hash': '0x1c7e41970fe6b8957d787000e733f6635956cc9b4af5859ad5e1f8f84a65bfa3', 'from': '0xec184a5630786fcf8604cf43c2931cd2f0191abb', 'to': '0x51e7920e7b6669e9d892048c6035cca658a2b56d', 'value': 5.12627889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e8e14b1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x162446956c51ebb5e20c58f8526390cac46e8b0b39113663429fccd46ed55b15:log:131', 'hash': '0x162446956c51ebb5e20c58f8526390cac46e8b0b39113663429fccd46ed55b15', 'from': '0x5bc6aaa14e003de6751b9e2dad71e0f21c82d78d', 'to': '0x1ad60916342e3316b7e13b2fbcdcee66a77273c5', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0xc83d7ef76b155904f088b2e57ddf134d4ef175fcaca785f53290e20e7ead48c6:log:132', 'hash': '0xc83d7ef76b155904f088b2e57ddf134d4ef175fcaca785f53290e20e7ead48c6', 'from': '0xf468fe8856cc3cbd174652492d11550f2e8bfcaa', 'to': '0x5edc47cf01f9140ae310d3602b832f21264a4fb7', 'value': 7.23131133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2b1a1afd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x3a2ab97d1c610e920ea1e8ae241204cdbd692e5f68913e9ec26b1d46d5b84c6e:log:133', 'hash': '0x3a2ab97d1c610e920ea1e8ae241204cdbd692e5f68913e9ec26b1d46d5b84c6e', 'from': '0x2865130a87a033b3b7b4bef1cfe4339313d09246', 'to': '0x2ae27fcf7c800c7ec9e22aaf85a2fef90bfb0816', 'value': 4.2130092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x191c8ab8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x27e06a620986436ac55f623a7622c885a8aa22c11449080483104c6914d3ca84:log:134', 'hash': '0x27e06a620986436ac55f623a7622c885a8aa22c11449080483104c6914d3ca84', 'from': '0x868beb5133a6ab83ed1b1ff3239b38329c80037e', 'to': '0x03eb5d0da3c7547be6a8816d90238eb454c2e3e2', 'value': 16.95371367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x650d5067', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0xe716544bf699a23a5c6e86cc15b98393f28bf8580ca65251024058220b1ea6de:log:135', 'hash': '0xe716544bf699a23a5c6e86cc15b98393f28bf8580ca65251024058220b1ea6de', 'from': '0xac2b92cb8d800ac17ae0c7e9753d7df3a92fb6f7', 'to': '0x5adef96a36f823cfded2f3c9d387ca56ce219ee5', 'value': 10.32687617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d8d9001', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x4137a5d3561a771e65ac3d055f82e160764542be005ccbbd17669e2d2dae380c:log:136', 'hash': '0x4137a5d3561a771e65ac3d055f82e160764542be005ccbbd17669e2d2dae380c', 'from': '0xd44ccb40f71a8351d04e6295639546b25f9b817f', 'to': '0x280d35fe41a13d024d19ceb1dcb3e94b0f4b26c7', 'value': 5.0061877, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dd6d612', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x2fbaec5868d602b1be1660df5f20bda2c83119b31d27dfdd6f820643b7ab0317:log:137', 'hash': '0x2fbaec5868d602b1be1660df5f20bda2c83119b31d27dfdd6f820643b7ab0317', 'from': '0xf83f544015bd64a2957615e9cce15cbdec536d9e', 'to': '0x9f5554a0d0dffee8fbff139e4f20e0f5d7879837', 'value': 14.02421652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x53974194', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2d', 'uniqueId': '0x9b3f03c9cd1c2a54c92401bce84806978251ab4ef366dd0a7d3ededfbb892907:log:59', 'hash': '0x9b3f03c9cd1c2a54c92401bce84806978251ab4ef366dd0a7d3ededfbb892907', 'from': '0x62dac0b2b509dd5b96804173827dc19bf4ac9f36', 'to': '0x7771768d77d7920a71d171c9a81b8c2e218bb7f7', 'value': 3.41189683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14562433', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:58.000Z'}}, {'blockNum': '0x687a2d', 'uniqueId': '0xcf7eb191bab3b1d38d840cf3b571d07a256095e2f90054120bf8ef08c64019cd:log:60', 'hash': '0xcf7eb191bab3b1d38d840cf3b571d07a256095e2f90054120bf8ef08c64019cd', 'from': '0xc544328161f0b81643594611713afb990629bf04', 'to': '0x2e06850fb59c794cf30cb03f8e57844590512180', 'value': 11.68633516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x45a7eeac', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:58.000Z'}}, {'blockNum': '0x687a2d', 'uniqueId': '0x755fc4f6c6d31fc7e2469b8916b5a24783e29fc750f68c0883f2e0d1943dac4e:log:62', 'hash': '0x755fc4f6c6d31fc7e2469b8916b5a24783e29fc750f68c0883f2e0d1943dac4e', 'from': '0xc5bdb203a2f7c1866b1ecc0605dc87c5b6499b37', 'to': '0x1298865bb36a314c9d7e07316159ccdad5aabebd', 'value': 8.09805272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3044a5d8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:58.000Z'}}, {'blockNum': '0x687a2d', 'uniqueId': '0xd722bf0215e3972f5c8cef78850adfbcf803b97aeb7410711945567bf986fd03:log:63', 'hash': '0xd722bf0215e3972f5c8cef78850adfbcf803b97aeb7410711945567bf986fd03', 'from': '0x2c9890ac63aef3f4a8fd65154157d0a17770d32b', 'to': '0x38bc0942da332c6875809bed6c519692bd00a0f8', 'value': 4.2158741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1920e9d2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:58.000Z'}}, {'blockNum': '0x687a2d', 'uniqueId': '0x2048c4a7cf33026725f09a9f85639e748170890c2292b44ceeb2994701c6817d:log:64', 'hash': '0x2048c4a7cf33026725f09a9f85639e748170890c2292b44ceeb2994701c6817d', 'from': '0x0b353383d3005a7d81cd3162e6035e2eaf8f58ae', 'to': '0xb8da55abbaab31283f8157a9f35de597a976164e', 'value': 5.03343569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e0069d1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:58.000Z'}}, {'blockNum': '0x687a2d', 'uniqueId': '0xbd63b57155462a0cbbc04f8ac09ef72e27405496a76d18d110b21c3453db506b:log:65', 'hash': '0xbd63b57155462a0cbbc04f8ac09ef72e27405496a76d18d110b21c3453db506b', 'from': '0x6c0b4dac08151b25503546ea94c65efd19cb6f77', 'to': '0xa6ef7e59048cfe0764ee71cf3e695c8f1abf63b3', 'value': 3.42049696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x146343a0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:58.000Z'}}, {'blockNum': '0x687a49', 'uniqueId': '0xb5b06719463a882653617113448554a461aa6f619ed1ac600842cd1f2cec0af7:log:49', 'hash': '0xb5b06719463a882653617113448554a461aa6f619ed1ac600842cd1f2cec0af7', 'from': '0x0bab084b077bd4fd5a1d9fd95237520877dc9498', 'to': '0x6cd5bbd88d38a450ca473d3122fe6dd8c8864eb4', 'value': 22.56328826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x867cd87a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:12:59.000Z'}}, {'blockNum': '0x687a49', 'uniqueId': '0xf4e2dccc18523e85ffe4df1d8befd892c048023e66c840ed46f6ed1b6eb65cd1:log:50', 'hash': '0xf4e2dccc18523e85ffe4df1d8befd892c048023e66c840ed46f6ed1b6eb65cd1', 'from': '0xe81d794ec4fcc8c8007dbdff02ceaec001e081f8', 'to': '0xa67f47495b8cb2b13d945ca1253e7171c8968cf6', 'value': 6.50315808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26c30820', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:12:59.000Z'}}, {'blockNum': '0x687a4c', 'uniqueId': '0x03420a4707a29e14e0a2f763aaad9efc46f3e5ea6667a8819bcf01868ec957a1:log:167', 'hash': '0x03420a4707a29e14e0a2f763aaad9efc46f3e5ea6667a8819bcf01868ec957a1', 'from': '0x59a82b944ba0178ee9da6811a702af7f6954a281', 'to': '0xf1f1a7a52edad2753e1a514667797958a1a0958d', 'value': 6.58190034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x273b2ed2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:13:31.000Z'}}, {'blockNum': '0x687a4e', 'uniqueId': '0x41b3eceabf47b83d8aee6ee781f7bec4aa6ede48601b3b99fbee5f3b334c318b:log:79', 'hash': '0x41b3eceabf47b83d8aee6ee781f7bec4aa6ede48601b3b99fbee5f3b334c318b', 'from': '0x83736c67de6b9e4c24e72560ee37d956c65921c3', 'to': '0x88d67a7c4c1a58f1b67408036eaf19a90a032119', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:01.000Z'}}, {'blockNum': '0x687a4e', 'uniqueId': '0x7da70b37eaeb32acb3c05a74b71eea1cd671fb043d0b09b26a76444edb39722b:log:80', 'hash': '0x7da70b37eaeb32acb3c05a74b71eea1cd671fb043d0b09b26a76444edb39722b', 'from': '0x160dade820d301d17138fdf1d2b8cbe667ab9d2e', 'to': '0xf53b53e5f681659965c41f310bd978a08b62cae6', 'value': 4.98599896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1db807d8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:01.000Z'}}, {'blockNum': '0x687a4e', 'uniqueId': '0x2a185c1ba07c072f336a81551d3ff973d255b91aa2a601509f9ba6c12eea2794:log:81', 'hash': '0x2a185c1ba07c072f336a81551d3ff973d255b91aa2a601509f9ba6c12eea2794', 'from': '0xaa3a5ca5ed9788eafa43af49dd61d156483be5f3', 'to': '0x2ad4088c39416fa04a151c7e46f58fb2660ff10c', 'value': 10.42853757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3e28af7d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:01.000Z'}}, {'blockNum': '0x687a4e', 'uniqueId': '0xe3bf3e35bc4a0c152405e8006339c16d8d0c05852a4f51f21793fbd1318e3194:log:82', 'hash': '0xe3bf3e35bc4a0c152405e8006339c16d8d0c05852a4f51f21793fbd1318e3194', 'from': '0xb2dfe9bb99b5f8144a4f0977fee6c0a1df35cbe5', 'to': '0xa535a92e1c9dd77731ecbc901d0725039d0ff644', 'value': 10.40504722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3e04d792', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:01.000Z'}}, {'blockNum': '0x687a4e', 'uniqueId': '0x0bcafd57a5019ef0c9c3d9e99e6d5bd19657e3ef9322f5c5a05a794151bacb3b:log:83', 'hash': '0x0bcafd57a5019ef0c9c3d9e99e6d5bd19657e3ef9322f5c5a05a794151bacb3b', 'from': '0x5ffafd908d00893a1598cee525ce6a6c2f6ca510', 'to': '0x9bbbaef183f59e8d445a16645001abc65c9baf12', 'value': 7.74962886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e30fec6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:01.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x1ac5ef30703c214307d9ab0580db5dc896402edc2c48f8e5543d33affac5766b:log:49', 'hash': '0x1ac5ef30703c214307d9ab0580db5dc896402edc2c48f8e5543d33affac5766b', 'from': '0x10f28d641f572c071bae7bd02b13e51befc12fcf', 'to': '0x7bff84339eb1fe5608a04d29c764613efe874597', 'value': 6.37429298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25fe6632', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x3d673034bcff00ec8d1245ae91b58018aa96a02fa0def8792d77b652217fccc8:log:50', 'hash': '0x3d673034bcff00ec8d1245ae91b58018aa96a02fa0def8792d77b652217fccc8', 'from': '0x4e32a4399ddb5c1fccb21b2ef25cb54ef3872354', 'to': '0xba1f290221d9e633ca33649088a3a19b3bcea86d', 'value': 5.02363112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1df173e8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xd4bb4b27910faf0093a9ffa31b39b984545ba16d754a6576ce4df53842d31b0c:log:51', 'hash': '0xd4bb4b27910faf0093a9ffa31b39b984545ba16d754a6576ce4df53842d31b0c', 'from': '0x6d221e875404e27e6bdd66f088ad1aa1cce9fea6', 'to': '0x9c6506fc32b78f5244c671f99708a4defc8fc38e', 'value': 5.77841975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22712b37', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x05428498972ec8c50d8b47511e99bcd9bc62dfc84266571fa38af3470b30b066:log:52', 'hash': '0x05428498972ec8c50d8b47511e99bcd9bc62dfc84266571fa38af3470b30b066', 'from': '0x9ee3d2234f8180917366cd98b3c29110e2e92503', 'to': '0xb3111986cc59501176bc98fad7e932c51adc47a0', 'value': 6.2977221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25898fb2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xb098bcadc909541fcee79f0ae1b95f6e72d2975d530cc7a2810061a6ecef100d:log:53', 'hash': '0xb098bcadc909541fcee79f0ae1b95f6e72d2975d530cc7a2810061a6ecef100d', 'from': '0xc2db642868ace8400a4e793d2702ba01d7b2d01c', 'to': '0xd726cec388664e8cf21f85d36331526c508641a9', 'value': 5.22020628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f1d6714', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x21d8ba90456706a9d7ddc596ec7b0b465a571bed0e9aa4ea602c209fb927bdcf:log:54', 'hash': '0x21d8ba90456706a9d7ddc596ec7b0b465a571bed0e9aa4ea602c209fb927bdcf', 'from': '0xc4067b3b7e3fce49c7fecdf52ed1d7fca87aa1fd', 'to': '0x3996fb79f34d10e1ac0efa5c8abd1f25b3160c8d', 'value': 16.84869907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x646d1313', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x454f3ee4eb0a92c8e384f580b696ab9e1187e9601205e0818d5ef331f0180843:log:56', 'hash': '0x454f3ee4eb0a92c8e384f580b696ab9e1187e9601205e0818d5ef331f0180843', 'from': '0xfe561ea3653ad9a64bfb331508487453c857baba', 'to': '0x928bac6d9996f4940cb4526281dff731b98500ed', 'value': 8.96931649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x35761741', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xd3be05da7c61d48b8f6f4f5e96e1f8b6a8bbd6fb6cf653f70aff5a8cbc4f7436:log:57', 'hash': '0xd3be05da7c61d48b8f6f4f5e96e1f8b6a8bbd6fb6cf653f70aff5a8cbc4f7436', 'from': '0x8c46bf40712da49b25ebf036092933382bdfcdc4', 'to': '0xe0bce4c5cea77e81652fcda1ed5da73051996f85', 'value': 5.50774284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x20d4260c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xbc7033c9d68bcaae24167ed07073c52fb71b174f389ec5c004db95dddfd0b299:log:58', 'hash': '0xbc7033c9d68bcaae24167ed07073c52fb71b174f389ec5c004db95dddfd0b299', 'from': '0x6c0cd756d9f22209295217bbaafe658d580d990f', 'to': '0xf3bd53b4e2321deefdfe942eb218527c7562c2c2', 'value': 5.73319644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x222c29dc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x114c9aed0add4f28f1be6dbfba5df26c3c3d216a7f239f223c71b1c2be053277:log:59', 'hash': '0x114c9aed0add4f28f1be6dbfba5df26c3c3d216a7f239f223c71b1c2be053277', 'from': '0x48a67be7fc3673e3e6f32a041e8acdda77ebb5ed', 'to': '0xc8051da6d4e4ced69a4e0e8aef4297138a5cd9c6', 'value': 6.81555892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x289fb7b4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xb17a29577d3d222612a03196c1b63606f47f5e97bb5ed407518dfe77a521ea82:log:60', 'hash': '0xb17a29577d3d222612a03196c1b63606f47f5e97bb5ed407518dfe77a521ea82', 'from': '0x7c06e3d477de7641ecbeac1a91def5e39ab29310', 'to': '0xe3d09435cfcf03cb777b463949478ed8f58d1d25', 'value': 3.41689782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x145dc5b6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x98dbade7d4f672d484a1aaaa4b880b8ab77749f9626acc834ef8d16976bdbda9:log:61', 'hash': '0x98dbade7d4f672d484a1aaaa4b880b8ab77749f9626acc834ef8d16976bdbda9', 'from': '0x4af13624ce504aa74fef7c559ba62cbe6d5d0f48', 'to': '0xbf2b673bc2b50310a22f2b48ace89ea2389981ad', 'value': 6.24597063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x253a9847', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x58c09f292b8ef60f386f994232ba0409bba1255eb38b930bf86ce69e48e571ae:log:62', 'hash': '0x58c09f292b8ef60f386f994232ba0409bba1255eb38b930bf86ce69e48e571ae', 'from': '0xe7cfb8129fafd47872e1d8decdec408e55501b68', 'to': '0xb36dfccbb8325c4a8f05b5a3eac0f7cce3aee8a4', 'value': 5.06422316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e2f642c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xc33502453db4eee2b41167badcb27da05a4b4dd45e77995ae1ddd172780eeca7:log:63', 'hash': '0xc33502453db4eee2b41167badcb27da05a4b4dd45e77995ae1ddd172780eeca7', 'from': '0x2ff51f31c55d7c6ee9edf975fe71ee25d82d0007', 'to': '0xcc372df5b2c8a4eeb5852c5b15a15ddac7add162', 'value': 12.7702969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4c1ded3a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x286b6a4db6fa1d2615583085a430091c0dde471a017843fd6ef0b3f4cd7d7e45:log:64', 'hash': '0x286b6a4db6fa1d2615583085a430091c0dde471a017843fd6ef0b3f4cd7d7e45', 'from': '0x8b937abf3ed94271915350aacc747603ac2f3159', 'to': '0xf551d8b8a3822c5778ac2a083812a86ffceedec3', 'value': 6.37337735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25fd0087', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x034c4fb840227f4fd26824ef204c37407bf24a090335cdbe1ea21f300ba9ef00:log:65', 'hash': '0x034c4fb840227f4fd26824ef204c37407bf24a090335cdbe1ea21f300ba9ef00', 'from': '0x1172d8eccb4fba2303408fa6243af5083bd7f9e4', 'to': '0xb60db934db1b8233b79e0cdf7f50fa140a7c4d98', 'value': 4.97468779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1da6c56b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x0f8542bfc6dfe7bf26a65d4b72600048ed0f278e3d5e50f29a25e35e45aff0dc:log:66', 'hash': '0x0f8542bfc6dfe7bf26a65d4b72600048ed0f278e3d5e50f29a25e35e45aff0dc', 'from': '0x95cf6d3c3ec66bc036aef828889140c1a51383d0', 'to': '0xaadcb2a59303003f621ba51911ee63a538379108', 'value': 6.43616161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x265ccda1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x506ffd811ecd0702f5279781365af49c35bdf313ead36b1446c39306a7710ac5:log:67', 'hash': '0x506ffd811ecd0702f5279781365af49c35bdf313ead36b1446c39306a7710ac5', 'from': '0x6a259e99fa1fc330aef62ca9617a50fd47031ec7', 'to': '0x80b36c85225eda7de157adab49503685a59abc9c', 'value': 7.16979572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2abc3d74', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xfec5cc9e178d61aa7d3c2a465b395235366f493ed1c1371dda863e7a26e1791c:log:68', 'hash': '0xfec5cc9e178d61aa7d3c2a465b395235366f493ed1c1371dda863e7a26e1791c', 'from': '0x0db674b4f60eb99bb307707659536df408a4af12', 'to': '0x7b779a50beeb27014c375360e4b5ae4a271d19b5', 'value': 14.83420737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x586b3441', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x434e75827a4c4001f14468c0a64a0eb158a5d69a48818538bb920ee0af257bc9:log:69', 'hash': '0x434e75827a4c4001f14468c0a64a0eb158a5d69a48818538bb920ee0af257bc9', 'from': '0x5f5207c7d746faa6e55581a4f0614446fa490cbb', 'to': '0x8847b8a40731674efc8fc4636a370e9564335eac', 'value': 6.00984056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23d249f8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xfb2dfdd43dc0c8ff0ee13b1cb0ddda1c26d32fc39645df66c05b01b740cae528:log:70', 'hash': '0xfb2dfdd43dc0c8ff0ee13b1cb0ddda1c26d32fc39645df66c05b01b740cae528', 'from': '0xd28ac4702be000ce91daada78c500712739a7e1e', 'to': '0xd07cf88b537b389bcacea7b172b42818ce55c236', 'value': 5.02632641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1df590c1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xd80d396cc6b45ec993f98989db7a169713fc785b770d35cdf329b6a6addd1f75:log:71', 'hash': '0xd80d396cc6b45ec993f98989db7a169713fc785b770d35cdf329b6a6addd1f75', 'from': '0x7cd92cfee3a3c328f8838fdd60a13d8557591f7f', 'to': '0x63ef3a89642e3b89240c977345ba53d72008f6e7', 'value': 3.40877281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14515fe1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xa3995cd14222c11f54ecbe8e58e84bead6b6c23a9c8140b8b88cd0455a357f57:log:72', 'hash': '0xa3995cd14222c11f54ecbe8e58e84bead6b6c23a9c8140b8b88cd0455a357f57', 'from': '0xfb14f5447d09c4fbae8feeefcb730f6d65eae9b0', 'to': '0xcda359a56d097dc3ef23ea2bb106c29164a168d7', 'value': 7.50199734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2cb723b6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xd3af4b3b06de5f2eb9e628b781d2555d44f6ffad9695357b6aae2ef3fc405c77:log:73', 'hash': '0xd3af4b3b06de5f2eb9e628b781d2555d44f6ffad9695357b6aae2ef3fc405c77', 'from': '0x53319a3bb049e353d8d45701068f42925cce1e23', 'to': '0xec04f3ecc9f9b8bca37bb7af0de7e00de4953967', 'value': 5.17156258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ed32da2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x49efb8e9a1771648678211ab1c5d7073884181633ac74bf06dd03f1ecccc5230:log:74', 'hash': '0x49efb8e9a1771648678211ab1c5d7073884181633ac74bf06dd03f1ecccc5230', 'from': '0x4242bdb9a762c38ff4dddc0caebd0c2322d0bc73', 'to': '0xa9b02dd56c423847b01452c15dabd8f77eacf626', 'value': 10.20803742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3cd83a9e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xc8616f7545cbf80a348d307995959a4ae31e03f3d04c39f93a3496945fb6aeac:log:75', 'hash': '0xc8616f7545cbf80a348d307995959a4ae31e03f3d04c39f93a3496945fb6aeac', 'from': '0x145df097db3a08da0acdbb8d40e3c01abf2afef3', 'to': '0xa0ad5c4186892bdad332d4781025ac9c132dd4f8', 'value': 10.00022249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b9b20e9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xe0aded15223048f0f53dc728db36f1ec88adb14a2aa897b76cf384c52101feae:log:76', 'hash': '0xe0aded15223048f0f53dc728db36f1ec88adb14a2aa897b76cf384c52101feae', 'from': '0x6b5c9c2f9649b8ebcfab00e8291df3c664d393ae', 'to': '0x9b34500dbf18576e6a3f0c3272120e78193ff130', 'value': 5.86478392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22f4f338', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a53', 'uniqueId': '0xee59696c93ef31f66619ddd6e9048bfbc9df050be247441a4936f09193314a47:log:113', 'hash': '0xee59696c93ef31f66619ddd6e9048bfbc9df050be247441a4936f09193314a47', 'from': '0xea6c38fde1748cc0f811ecaab3bfbe2f44bb5deb', 'to': '0x5238749ddf7377c9d162ced25d9daae2e090968f', 'value': 25.24088789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x967289d5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:56.000Z'}}, {'blockNum': '0x687a53', 'uniqueId': '0x9604a7149bd7f6a789ef8d842937e21bbcaa2bbc3b357e74c5511791a6a52c49:log:114', 'hash': '0x9604a7149bd7f6a789ef8d842937e21bbcaa2bbc3b357e74c5511791a6a52c49', 'from': '0xa28a71af8131264c80d7f1f71e3dbc78b06edb85', 'to': '0x6d714e4254651739c9a8e7c37ef4cd7246452e87', 'value': 6.73312469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2821eed5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:56.000Z'}}, {'blockNum': '0x687a53', 'uniqueId': '0x2b10d3c5fb12c79b3b1b5ac9f342be314439dce8e5534750d0a6231d1ec45eb0:log:115', 'hash': '0x2b10d3c5fb12c79b3b1b5ac9f342be314439dce8e5534750d0a6231d1ec45eb0', 'from': '0x5462bc6d3404875dcc46b432ec852e16f52e466a', 'to': '0x3131df74ee56c78e395114e1aba7e3a44a8e1335', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:56.000Z'}}, {'blockNum': '0x687a53', 'uniqueId': '0xb2dd3f1d2c06c200997036b554e8aa3eaf71924dbd63319556292ed84f21486e:log:116', 'hash': '0xb2dd3f1d2c06c200997036b554e8aa3eaf71924dbd63319556292ed84f21486e', 'from': '0x0e33fe78c608c4f3d49c57c88187da0acb4fe472', 'to': '0x39c9a316faaa1fd99dbea2dd576d248c0ba30ac0', 'value': 22.6985974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x874b4f9c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:56.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0x481a56f42a7685a25c7356fc39416cb2438e85354dac5ef258328acef54691dc:log:135', 'hash': '0x481a56f42a7685a25c7356fc39416cb2438e85354dac5ef258328acef54691dc', 'from': '0x7919dd20860d8ec9877bcf5494ba91443a7977f8', 'to': '0x9b98d87dc8d5297ed52edfd0a1aaf5ae876590c2', 'value': 7.90469412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f1d9b24', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0xe62a2bf1014b6dd39d485fce52783b064daaa09447e17b93067f40cefe3032b5:log:136', 'hash': '0xe62a2bf1014b6dd39d485fce52783b064daaa09447e17b93067f40cefe3032b5', 'from': '0x1735be83252f0f1073fbcccfa98ff784ca3182d9', 'to': '0xa272f7e08b4a85c31720ba6309517b9761d5cbc9', 'value': 6.5098162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26cd30f4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0x1d439356317d099cd6b6d89175d816da171df69d8bfc497d914abafb14ef699f:log:137', 'hash': '0x1d439356317d099cd6b6d89175d816da171df69d8bfc497d914abafb14ef699f', 'from': '0x435aeaacb159607b25ddc2f0f103a32a7e24afc8', 'to': '0x185a157268009382a972464af28804e7eb214853', 'value': 21.71130947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8168d443', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0xa28fa4ab7dbf24843d88be4c08d85001810eda68b6b45564744d8b228b445dc1:log:138', 'hash': '0xa28fa4ab7dbf24843d88be4c08d85001810eda68b6b45564744d8b228b445dc1', 'from': '0x0f46aba99582345336f0789d0e9a2e2ef15f528a', 'to': '0x76a35502cf2f724bbe4bbe1f30b2dd91dd8e960d', 'value': 16.73706185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x63c2bac9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0x0c748992eb32ef3adeda0a1eae73881c3e52db4f077a8adcca650bf6347a409c:log:139', 'hash': '0x0c748992eb32ef3adeda0a1eae73881c3e52db4f077a8adcca650bf6347a409c', 'from': '0x3f47067fe75f5512ccc01df0ba43fa3bd4c26f33', 'to': '0x8362412a076d0503d0b40a59624eac22c707b4b6', 'value': 11.74173026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x45fc7562', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0x33446e5268710e9a43fec743ca31a49c69194fdedec93441156433d18449794f:log:140', 'hash': '0x33446e5268710e9a43fec743ca31a49c69194fdedec93441156433d18449794f', 'from': '0x8215ff8bbd0a48e6be706c13821e096391b780e7', 'to': '0xaa70eb768dcc6bd23e1192ffa24f5ca5977220f0', 'value': 3.40174486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1446a696', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0x7ab7c32c9443115456837298f757e723727d6161a3d67ff39214d6617f17ad4e:log:141', 'hash': '0x7ab7c32c9443115456837298f757e723727d6161a3d67ff39214d6617f17ad4e', 'from': '0x15a6b8aae41219f501aef3393a976ad3c02db370', 'to': '0x54cbbc774ea8adb5b015ecf2506cdab6d2da4913', 'value': 9.87799669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3ae0a075', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0xd0873fc9d5c8c7e06fdd120ffd02ca99ab971250639d3127d3c3f201612e36db:log:142', 'hash': '0xd0873fc9d5c8c7e06fdd120ffd02ca99ab971250639d3127d3c3f201612e36db', 'from': '0xbff9845c0a4cd326bb812fcd05417f6652e36d8a', 'to': '0x9c999f4cc1518a665757c467b9d082df666a1e2e', 'value': 5.31272363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1faa92ab', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0x194e942de3d95dc5790ab854dc710c72fdf0dd3dd34cadafd4823d475f86e402:log:143', 'hash': '0x194e942de3d95dc5790ab854dc710c72fdf0dd3dd34cadafd4823d475f86e402', 'from': '0x396ce61a01efdf3cfcb883b76780f27ed8e02e2c', 'to': '0x157904e01db63cf75ad9b317fc848066a949a460', 'value': 5.99496167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23bb95e7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0x3381e9b3382336c9ee2c4e181cecd5c455c168d3e0b5dd5bc8d01239348da6bd:log:144', 'hash': '0x3381e9b3382336c9ee2c4e181cecd5c455c168d3e0b5dd5bc8d01239348da6bd', 'from': '0x67d6c872b85a07140f869fdfae8c78482e8e227d', 'to': '0x99a4c06eea29a796c9e9a4dd94bffd5028d60121', 'value': 34.08953108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xcb307f14', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0x6c7460072caf656400864b0232563003f95e757524ceab72a8b194933773dc2b:log:148', 'hash': '0x6c7460072caf656400864b0232563003f95e757524ceab72a8b194933773dc2b', 'from': '0x1e7662f385b8208f25fe2036b7f5bc9db43f5752', 'to': '0x3acfdd816866f6822b287f4676cbb699e428e9aa', 'value': 13.0283358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4da7a9ac', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0xd6d31fa2afc28cefb79253ba15f1263085b05ae9f89934ccac90722051f40667:log:149', 'hash': '0xd6d31fa2afc28cefb79253ba15f1263085b05ae9f89934ccac90722051f40667', 'from': '0xe470c465262ad11ae4f293bb360fc16faf6a0204', 'to': '0x5c5527c6a90fb93db1ae3b7c1814201f8c342f45', 'value': 7.24547107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2b2fb623', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0xe33989512a1e0b755efa63ea4d80abbfddb7f2a19bac17032477fc6eb4507b67:log:150', 'hash': '0xe33989512a1e0b755efa63ea4d80abbfddb7f2a19bac17032477fc6eb4507b67', 'from': '0xb7db23d0816917bf9ff7ec34aaf9875b85c7384a', 'to': '0x5f4bb80c5bf607e67246b51cb5a939602ce05d30', 'value': 6.45893373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x267f8cfd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0xd1a6fc4e9fb3118879c06fdc62a5994754c1bcf1aa1e4f52a0e76103e6f3e84e:log:151', 'hash': '0xd1a6fc4e9fb3118879c06fdc62a5994754c1bcf1aa1e4f52a0e76103e6f3e84e', 'from': '0x9d7dc2c263bfc38f8db1367c320520d1fac98dd5', 'to': '0x7f516ea00797663574af79922549e6769e58cf8c', 'value': 4.3609886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x19fe572c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a58', 'uniqueId': '0x8d6e29e176900136532b75f62bdd48feddd54c55741a58e588ec3db08e26f0a4:log:154', 'hash': '0x8d6e29e176900136532b75f62bdd48feddd54c55741a58e588ec3db08e26f0a4', 'from': '0x7873fa008a1658e5a035c49966040a6e16df6b63', 'to': '0x04a45fa4ac8a25f49198b96ee4454eb9ea1a8754', 'value': 6.6344536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x278b5f70', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:15:53.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0xf3d5f6805b605e5abbb4d97c182cdb15b87808c330b1f4f20651bdda69cd4cc3:log:79', 'hash': '0xf3d5f6805b605e5abbb4d97c182cdb15b87808c330b1f4f20651bdda69cd4cc3', 'from': '0xd3cca207d2c8ff5231f2f32ba0e4ef9908b90ec9', 'to': '0x43fdd0bc0d9692bdeb136fc926c8d4b06d1f8f3f', 'value': 5.31719409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1fb164f1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0x3e691b59877785f83d70e295e7156b99a7dd4827c0c56f3737f02bb3b8798787:log:80', 'hash': '0x3e691b59877785f83d70e295e7156b99a7dd4827c0c56f3737f02bb3b8798787', 'from': '0xc66a57982b931465ab6c774469daccd00be7836d', 'to': '0x3a8cab54b72fa013c6bb1a70f3150805e6a95db7', 'value': 11.21494199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x42d8a4b7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0xac7d41863e5b625043422fcbb2eb0179f10ba70aaeabcf2feb4d267da6d54504:log:81', 'hash': '0xac7d41863e5b625043422fcbb2eb0179f10ba70aaeabcf2feb4d267da6d54504', 'from': '0xbbae72842c96fc873d83da501d97f13e854b1f14', 'to': '0x4b83010aed138586367e9846f8e38b6fca25f598', 'value': 3.41150921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14558cc9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0x1a32d4c77ddd6d36a703bf2d74578209c998653dd4bf6e04135a399f85390fc4:log:82', 'hash': '0x1a32d4c77ddd6d36a703bf2d74578209c998653dd4bf6e04135a399f85390fc4', 'from': '0x35f84a8f5bda039fdf193a4025d5bf2286fa6886', 'to': '0x30fc371761e14a7ec1edcb34398b38ba8d33e796', 'value': 2.10640486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c8e1e66', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0xe546a6d2c68612675ded3a4c3a91ac2edda2dc713ea6337440e337f2c561d757:log:83', 'hash': '0xe546a6d2c68612675ded3a4c3a91ac2edda2dc713ea6337440e337f2c561d757', 'from': '0x91cad59c3f786def78fc164f77e142502ba144ec', 'to': '0x0bada4ac567a20f4f992b10a982f8407cdc6ebde', 'value': 13.97973906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x53536392', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0x9934a132c2911239d3a40796189f7a1b7ddacac8f5d054e69abba3374cb1333e:log:84', 'hash': '0x9934a132c2911239d3a40796189f7a1b7ddacac8f5d054e69abba3374cb1333e', 'from': '0xc9ff7cec10cee58e870b7fb1c9bf3a261839e892', 'to': '0xc2a2f80e4846f4dda0d98b788a840580e96a2d55', 'value': 5.40577698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x20388fa2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0x95ef2f1ecf34c0e8b3b468a3390531d4b8a2d1c002671e89aa812c9e5a13e661:log:85', 'hash': '0x95ef2f1ecf34c0e8b3b468a3390531d4b8a2d1c002671e89aa812c9e5a13e661', 'from': '0xa44d495b07ae37e62de1e0c0bc436c8b078a2804', 'to': '0xd426198a75c857276a2d82cc26b1c6b848bcadbf', 'value': 7.81865213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e9a50fd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0x6f7fd84bc1479e99e9474fccd4081c3aaf81e2034f44ebafb73f7d10f62b22b9:log:86', 'hash': '0x6f7fd84bc1479e99e9474fccd4081c3aaf81e2034f44ebafb73f7d10f62b22b9', 'from': '0x6a4f6e58109c009a9b8406ef27b88cce138c2b4c', 'to': '0xe4c492ce6763f5ec715e4da567461cc70451b058', 'value': 3.41615943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x145ca547', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0xd170945eb58d534dd2aa5f33a945a4e049a7ba77ee34efa9d3bddab86a4fc547:log:87', 'hash': '0xd170945eb58d534dd2aa5f33a945a4e049a7ba77ee34efa9d3bddab86a4fc547', 'from': '0xf2f731535d46d18bda62df7f0409e7bb1467aa71', 'to': '0x56417a9a961d23d1383aa3f59bd757e19723578f', 'value': 20.84352205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7c3cb0cd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0x3c4c85be7390ef54f0de63c19c64e848f429cf12f198f0540045e78daf5eb3cb:log:88', 'hash': '0x3c4c85be7390ef54f0de63c19c64e848f429cf12f198f0540045e78daf5eb3cb', 'from': '0xe983e3fe5ff68800b79c10be9bb68ea4f7667f20', 'to': '0xbac757fd3ca39f7b731c061cb6c6c205015b4222', 'value': 10.09972813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3c32f64d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0x73968fc8e3f2ec6866350b4c6a5f5939ffdf4d4c58cfd505f586c8cbfc0166fa:log:89', 'hash': '0x73968fc8e3f2ec6866350b4c6a5f5939ffdf4d4c58cfd505f586c8cbfc0166fa', 'from': '0xacff4bff72bc1eb91d1056341c5b6e82206cefdd', 'to': '0x34339d0db7605ebbe246376482f2c68fb8d2b7a6', 'value': 3.40891906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14519902', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0x81216a3e979eecc823c16b60d20cbd9ba8a524fbe40a6da4e1597e97f1486f62:log:90', 'hash': '0x81216a3e979eecc823c16b60d20cbd9ba8a524fbe40a6da4e1597e97f1486f62', 'from': '0x843f4751c4032b19ea91695e1666c267827e77ca', 'to': '0x8e30389c62eb036bb434f3af17e7f3e21223f376', 'value': 5.04285434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e0ec8fa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0xd98ce7f7fd448846c0bafc203391a454b7a82e3d76147b6d1aa138c5a5b19d0e:log:91', 'hash': '0xd98ce7f7fd448846c0bafc203391a454b7a82e3d76147b6d1aa138c5a5b19d0e', 'from': '0x42df4763195e29b310e279db8f76adeba871531e', 'to': '0x10baa3c807bc52cf001299e91daec22928675d4f', 'value': 3.40177386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1446b1ea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0x826f308b3b0e38aede13a6bc5eb04530a8cdd05f4446bdb15913a9c9f1f82561:log:92', 'hash': '0x826f308b3b0e38aede13a6bc5eb04530a8cdd05f4446bdb15913a9c9f1f82561', 'from': '0xa05f593a53c35697323a2c2b4e2e17016857bfc1', 'to': '0x160990831774e0190f223958e471eee25836aa7b', 'value': 6.34814011, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25d67e3b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0xa195184c6368b90aa49039527e45b2d074f198b59b5bc0ea2f2aadd8e92ce718:log:93', 'hash': '0xa195184c6368b90aa49039527e45b2d074f198b59b5bc0ea2f2aadd8e92ce718', 'from': '0x5849f11779d379de798e205b857118bdf4fc92e7', 'to': '0x2dde0b9de43c34391211b330e9ac49c13496fadc', 'value': 13.08375039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4dfc37ff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0xd73cb30619233ddb417e4a68bd92b648f7702ab0860c58672f9f594b3edd21f0:log:94', 'hash': '0xd73cb30619233ddb417e4a68bd92b648f7702ab0860c58672f9f594b3edd21f0', 'from': '0x37ae05d15f3ff9e55a9794e2cdc6fd82cbfca6b0', 'to': '0x14a8f168e8e64cd18642f71f154e1aa15a6f8b71', 'value': 5.91644315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2343c69b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0x6eb62171e5a521714a12a5345679388d05ab045ad1595a076190932ec356914b:log:95', 'hash': '0x6eb62171e5a521714a12a5345679388d05ab045ad1595a076190932ec356914b', 'from': '0xa354bfd51b7a2fe092084788c9a3aa89c63e783f', 'to': '0xecc0035b4086ff544299c205e3b89de067ff6be6', 'value': 8.92237842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x352e7812', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0xf1ebafee39f3dcd914c02cadefc5e5916bd86554033a62dd8ebac296fed1f233:log:96', 'hash': '0xf1ebafee39f3dcd914c02cadefc5e5916bd86554033a62dd8ebac296fed1f233', 'from': '0xdabe10b4be14a49abf612359c66ad75392bdf216', 'to': '0xc5833e12a09c9b390aedef93839f411e886be107', 'value': 12.9639271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4d456206', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aac', 'uniqueId': '0x48a2674f65fe7fd25fc681feeb83f61b72fc9f22eeee3301a7de1c44665cb0e9:log:25', 'hash': '0x48a2674f65fe7fd25fc681feeb83f61b72fc9f22eeee3301a7de1c44665cb0e9', 'from': '0x8f1c4f1ba09bd5972a408159a4db8d0d136605e2', 'to': '0xcb1ce783f98afdd460cb36b99d94d3b6f225aa5c', 'value': 5.16507631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ec947ef', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:01.000Z'}}, {'blockNum': '0x687aaf', 'uniqueId': '0x0c8e50d9ee1fc30d43bbc42c15b8e5a6e48fcf0beb89b1e6ddc78943b4fbff3d:log:56', 'hash': '0x0c8e50d9ee1fc30d43bbc42c15b8e5a6e48fcf0beb89b1e6ddc78943b4fbff3d', 'from': '0x915028f272a2dbc83ef9ba1580a7a3d0f78f3c5b', 'to': '0xd7c82c2c5d308d74e4a45569151006964684222d', 'value': 19.22041024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x729004c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:20.000Z'}}, {'blockNum': '0x687aaf', 'uniqueId': '0x6f1d369d956c556d33756efa165b9b4f99abc1d3fb56b5d5b987fa074fda32c3:log:57', 'hash': '0x6f1d369d956c556d33756efa165b9b4f99abc1d3fb56b5d5b987fa074fda32c3', 'from': '0xefaea7dc13bbc1cb0b12bd0df2050d16603a0d75', 'to': '0x5e049371b866e33f7f3a96d261903cd629608c30', 'value': 18.09957457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6be1c251', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:20.000Z'}}, {'blockNum': '0x687aaf', 'uniqueId': '0xe60e923e6426b9cfd6a49c70e1b0815ca43faeb791e171a72ad99194497ebfbe:log:58', 'hash': '0xe60e923e6426b9cfd6a49c70e1b0815ca43faeb791e171a72ad99194497ebfbe', 'from': '0x11e2884baaceea12ed90a7273562a406ced72162', 'to': '0xc1595735c4567fdad0ab4a6cf85154234efcdb4d', 'value': 6.34237575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25cdb287', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:20.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0x306ea7fbf29ddee10a7009b9d9f49f1a2bb2d49b0bc7eda0be612a0d6fc4a3da:log:76', 'hash': '0x306ea7fbf29ddee10a7009b9d9f49f1a2bb2d49b0bc7eda0be612a0d6fc4a3da', 'from': '0x708cb06188162939556e013714e73d743107d050', 'to': '0x4899e9f024c77b2d9e3609eda3fa56bc0723e9f0', 'value': 5.90133849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x232cba59', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0x070081630cbbda223fd39632e6a57cca22ff844c541c1552cb7f847eafb3d57a:log:77', 'hash': '0x070081630cbbda223fd39632e6a57cca22ff844c541c1552cb7f847eafb3d57a', 'from': '0x911de02be4b2a46fb81e8c3eb73da3124656f889', 'to': '0xc14f618177e03c7cc4ee91f89948a3e4266e1c30', 'value': 5.11154501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e779945', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0x28f8e5d2e2971de0542d5d3f470170d14c7fb3f95f3ac548cff58c48e5704047:log:78', 'hash': '0x28f8e5d2e2971de0542d5d3f470170d14c7fb3f95f3ac548cff58c48e5704047', 'from': '0x3a23ea73678e50a8969768768dbb5465b2687fb5', 'to': '0x0e5d588cf1b15865b76b94efff3bbce60ded58e5', 'value': 9.67756476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x39aecabc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0xa0714a55dff3c52e9a9bbe75d9c465a77ae9b63b052bc211298b7f0c4aac17b7:log:79', 'hash': '0xa0714a55dff3c52e9a9bbe75d9c465a77ae9b63b052bc211298b7f0c4aac17b7', 'from': '0xf8dedad4ea103636ed919e3b8454ba96bea771cb', 'to': '0xb898f1fac269d3962995354fc906ce57cf79974a', 'value': 11.02333482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x41b4462a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0xb01cffeba140512331c9be3f5d41a6b1c3f063decf8e2c3a0a1b44375d13944a:log:80', 'hash': '0xb01cffeba140512331c9be3f5d41a6b1c3f063decf8e2c3a0a1b44375d13944a', 'from': '0x4dbc159dfcfa762d2fe46f775bf66a8c820c532e', 'to': '0x74b32a58bb5161450da4944207b9e11c69be4c0b', 'value': 4.94032286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1d72559e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0xdfb845c45c686805ef5227e735683379a3021a8020c12ad38aefb22b7e7dfd6b:log:81', 'hash': '0xdfb845c45c686805ef5227e735683379a3021a8020c12ad38aefb22b7e7dfd6b', 'from': '0x4f447156a15a691a5c47f4d6a8fa9001ca46ac2b', 'to': '0xf1e4ab4fb57229f4894f1e6cc43ec281702f964e', 'value': 4.95869248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1d8e5d40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0x8c28acb31e1f2403bec0cbc2076a7236874b45cd7177ed520aa508ff201c7898:log:82', 'hash': '0x8c28acb31e1f2403bec0cbc2076a7236874b45cd7177ed520aa508ff201c7898', 'from': '0x770e10818e0f47e1b6c037fd059d0d9a7bc9630a', 'to': '0xf1099e9a3b29a438a32e6fbcc04ed2aa2e6e3de0', 'value': 6.64097826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x27955422', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0xd956d92e16746c4f4283fe0d1ff52a0ece6739d04d8f5471ec2e76bb097d78d5:log:83', 'hash': '0xd956d92e16746c4f4283fe0d1ff52a0ece6739d04d8f5471ec2e76bb097d78d5', 'from': '0xa06659106ca0d8c69ffa670e0af91554681505dd', 'to': '0x11f69aac841fc6e55a372d1f095db481230bb154', 'value': 6.21762413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x250f576d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0x8b692cdb27d01147898e94226c109ceec3912e4306b57e970f0b926a15ae33e5:log:84', 'hash': '0x8b692cdb27d01147898e94226c109ceec3912e4306b57e970f0b926a15ae33e5', 'from': '0x9fac28ef5fc1a6273b1f37392da13bb99fde8122', 'to': '0x7155b1744cfb3c7a5b8dee8184f7c80fb1d2db6b', 'value': 6.26326475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2554fbcb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0x01892318b52972e9fdcd29d0a5559797583342d2b77a96bff1a996f7f3418d52:log:85', 'hash': '0x01892318b52972e9fdcd29d0a5559797583342d2b77a96bff1a996f7f3418d52', 'from': '0xc182fefa97c74e1b64f2d6a17a8b3840255658f3', 'to': '0x3c2536cd8d679121343940ddae0e0572cef7adc9', 'value': 3.40309286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1448b526', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0xb102adf77e5678cb1524f92b727db18ced0e655881e0cfb1f51e740fa4cba574:log:86', 'hash': '0xb102adf77e5678cb1524f92b727db18ced0e655881e0cfb1f51e740fa4cba574', 'from': '0xb9542b4eeacf5745ff2a402d6074edba71d0aad8', 'to': '0x810ae5e74ce5bf023d2f499179cb450b0b420beb', 'value': 16.63831617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x632c0e41', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0xc7c2c361757be1a15c767dcefb925b750d7cbbe6f4adac3b6cc8a57c97d6e6dc:log:87', 'hash': '0xc7c2c361757be1a15c767dcefb925b750d7cbbe6f4adac3b6cc8a57c97d6e6dc', 'from': '0xb06474509410561ae244140fe6c39d3c692103d1', 'to': '0x0d50275b5c02f7a0ee71459424f53bc73078fcd3', 'value': 10.33772288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d9e1d00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0x4e84eb0d15f16a9bdb1639eb94d4e518371019d05f07f7e131b45b55435c8c2b:log:88', 'hash': '0x4e84eb0d15f16a9bdb1639eb94d4e518371019d05f07f7e131b45b55435c8c2b', 'from': '0x26bf8078dc1383b0485e01ad7b26988334d21f89', 'to': '0x99b71f8da3f21da9d8e78a6a2279e5b991a2b1ae', 'value': 5.8925188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x231f4528', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab1', 'uniqueId': '0x3ce77b5e24b59662dbc2b73dc3f23492910d1f3fb649e32c0ede2001d826ddf0:log:141', 'hash': '0x3ce77b5e24b59662dbc2b73dc3f23492910d1f3fb649e32c0ede2001d826ddf0', 'from': '0xdcadd8f2f8f6d2b309e0c884ca2ab7dea09b9082', 'to': '0xf89c775db4a997271180ed1edca77b155034ee66', 'value': 11.02969527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x41bdfab7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:00.000Z'}}, {'blockNum': '0x687ab1', 'uniqueId': '0x6e565cebd5cf1023857bcd5684b3e8f502cb0b87363ed99f09b3126789271872:log:142', 'hash': '0x6e565cebd5cf1023857bcd5684b3e8f502cb0b87363ed99f09b3126789271872', 'from': '0x13722a20c2804133d16f71949e27339449ac7ab2', 'to': '0xa6cd8a48d32cb327b8e97656a05f4d7c7477e859', 'value': 18.21774821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6c9613e5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:00.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x4a559fc03099b40f8fe78fd90e80537419b2f1db99d1a4f539804a8210b17933:log:99', 'hash': '0x4a559fc03099b40f8fe78fd90e80537419b2f1db99d1a4f539804a8210b17933', 'from': '0xf1b2a23a76963add4858bb53f430cbf2cbbbbc16', 'to': '0xe74c78371b9538aa1a7985866dfffc92ad5341f7', 'value': 12.58202185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4afea449', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x4cb1962b1106aebcd858a73312b68b86dbd108065738bde9458ee157df8f3e16:log:100', 'hash': '0x4cb1962b1106aebcd858a73312b68b86dbd108065738bde9458ee157df8f3e16', 'from': '0x37050bcd781e42328f2a3e1ca37b342961e7bc36', 'to': '0x32ede9999ff8ee86256a84c8e0c4e5bd9bc85b4e', 'value': 11.15146378, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4277c88a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x014765b6ef4169c91d82b453b88efb3933e887a8b049db90eafe486f5e7f49e1:log:101', 'hash': '0x014765b6ef4169c91d82b453b88efb3933e887a8b049db90eafe486f5e7f49e1', 'from': '0xbd15a703cf929e39020487b2d1a09ada1cdaccd4', 'to': '0x277eb7d01910e06e4842597b9fdfc9aced65d847', 'value': 16.88705238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x64a798d6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x2cdcb47ff044b2e8a65dfc24675be987c09664ecf74d6238ce29c9e665e037ac:log:102', 'hash': '0x2cdcb47ff044b2e8a65dfc24675be987c09664ecf74d6238ce29c9e665e037ac', 'from': '0xd78a05f0a61b19963c0b7c14013fa55a9c9dbf4f', 'to': '0x9274bb5e23422457e127b4f7c9e821f056cb1042', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x48fe76665f1f470eeb611c8dc866ecd9e3111d990a156d5bce90a282f85cb456:log:103', 'hash': '0x48fe76665f1f470eeb611c8dc866ecd9e3111d990a156d5bce90a282f85cb456', 'from': '0x5279f6e5c574b1f9529d0d5155c44637b7748876', 'to': '0x86ff9e653d07702c901875e03ca2a749e4f2165e', 'value': 1.295374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b89578', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0xe8012cf1094c9019b8d2c2c152fcb3ee694ff5e03f5fa532e79630b5427c8b42:log:104', 'hash': '0xe8012cf1094c9019b8d2c2c152fcb3ee694ff5e03f5fa532e79630b5427c8b42', 'from': '0x5e43e6503051a9a0b7dbb12b9427a31021447c64', 'to': '0x7b0e9cebdfcc21cb6b04170a13d8a01ca5e19477', 'value': 8.926069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x353419b4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x9e05bf8db397c98e2d1fafbf0d3892cf70219f92ac9cae23651f3278d4fa95f1:log:105', 'hash': '0x9e05bf8db397c98e2d1fafbf0d3892cf70219f92ac9cae23651f3278d4fa95f1', 'from': '0xa40c351ab4a4872dc59de144ef295ed090907776', 'to': '0x1db30eb1a63f13aebd99b228293a947bbf4764fa', 'value': 11.64373634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4566ee82', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x08ae0bd5f087798c734ece1d2eebd48d04bb909a96e504d0170e1f5621d89dcb:log:106', 'hash': '0x08ae0bd5f087798c734ece1d2eebd48d04bb909a96e504d0170e1f5621d89dcb', 'from': '0xeba815cad364b969caf906f5bbe12e91f3621d60', 'to': '0x9f8442055beb1167f6b620416e5f1cde66e91df6', 'value': 3.40258958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1447f08e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x414744ef292fea10a543fee412de05a63b1ed1b5025de37002156e9d015cc474:log:107', 'hash': '0x414744ef292fea10a543fee412de05a63b1ed1b5025de37002156e9d015cc474', 'from': '0xe680356075780800363d69a7fe9012ea2cc0f642', 'to': '0x7f6df1a9944e0b0fef7cd1ffc03d04b414c36d33', 'value': 10.54971362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3ee195e2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0xba4009934849ec41ca7da2a350c614f8c7e2a12af6dce6dab66239b6b7b60a33:log:108', 'hash': '0xba4009934849ec41ca7da2a350c614f8c7e2a12af6dce6dab66239b6b7b60a33', 'from': '0x32f6e11a4a0f98c18589ad4a028e86cda06fc974', 'to': '0x2ddeac8354fc3f94f56fc2ec7928ee9e52ea40a9', 'value': 8.2874661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3165ab72', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x06704e233437507ff35d052b63a4b7db1322f1199b40130d2f6c30c8f870dbd1:log:109', 'hash': '0x06704e233437507ff35d052b63a4b7db1322f1199b40130d2f6c30c8f870dbd1', 'from': '0xcaa18a7e12ee5686709238f2d9eb25311c0f3642', 'to': '0xcc422434ae26f4b1576877e3cfee4da1dc0d813d', 'value': 6.80410331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x288e3cdb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0xd0caf8d90779f81cbf0a826f10993b655e66d692977604c93feca4dc4f978928:log:110', 'hash': '0xd0caf8d90779f81cbf0a826f10993b655e66d692977604c93feca4dc4f978928', 'from': '0x411705f992800db204f520f1d26b288b948d0d4c', 'to': '0x02284a442b08b1053a8b4ce90bfd3a5821ec8fa1', 'value': 15.90490698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5eccf64a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x12e7068f409068fd137a0b9072038d162f2837922c5e7f39d0e063beb35f1dcf:log:111', 'hash': '0x12e7068f409068fd137a0b9072038d162f2837922c5e7f39d0e063beb35f1dcf', 'from': '0x8c6219dd7934d77de76a5ded88c93992b805ba4b', 'to': '0x2c7ad16e17cb70717d0f18ece7eaf14e24e47c79', 'value': 5.11302213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e79da45', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x686ae16d28ac3016b441a211432284ff63cb12b93b313fa0c7f23de0ec8c1d7d:log:112', 'hash': '0x686ae16d28ac3016b441a211432284ff63cb12b93b313fa0c7f23de0ec8c1d7d', 'from': '0xaa43cc568f009e4b1d9b2bcd27761bd0fbe1d004', 'to': '0x68c8feaf26103afcd7571c94eab2fed940381341', 'value': 3.40276739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14483603', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x6dab295597cb3ba594936b3d509b4d7e9274114a321e9b9a8c07376c127dfdf9:log:113', 'hash': '0x6dab295597cb3ba594936b3d509b4d7e9274114a321e9b9a8c07376c127dfdf9', 'from': '0x27a42f1495310e66b146e11e5b2571b96f18d78a', 'to': '0x4a8660d746cae4b92ce23ef3e3e0752507e59eae', 'value': 29.76778503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb16e0907', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0xe52121c0db8f480b7f71a30c6d89da512a44ddb5e2995ad2c19da81e6a67be00:log:114', 'hash': '0xe52121c0db8f480b7f71a30c6d89da512a44ddb5e2995ad2c19da81e6a67be00', 'from': '0xb7503965aa736740d65ac7ea8773983fc15b0429', 'to': '0xd6058533fd346c62befc4040a8b2fdf3443dc9f8', 'value': 9.95583697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b5766d1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0xc5c2727463c8cf0d55a357c8e306857d62b1c95dcd3903b843b15d795ab7a86c:log:115', 'hash': '0xc5c2727463c8cf0d55a357c8e306857d62b1c95dcd3903b843b15d795ab7a86c', 'from': '0xbd490fd759c282ac018b972ff401c2ab9323f301', 'to': '0x901bdd91814af727e450bf11113dd2a872251d40', 'value': 12.39187076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x49dc7e84', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x5ee7057b2af6eb20d998ed8318e17efccae1b621c7b7275100fb49f28e4d9f17:log:116', 'hash': '0x5ee7057b2af6eb20d998ed8318e17efccae1b621c7b7275100fb49f28e4d9f17', 'from': '0x5cffd6dc484f37830956041d46d5e36eb05cba59', 'to': '0x7f41a8a4c5e7b50fc91e956a1a3c05619e72915f', 'value': 4.21321623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x191cdb97', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x81071865855156636706a69732fefee283c47d229592e9608e8a374ff6f846f2:log:117', 'hash': '0x81071865855156636706a69732fefee283c47d229592e9608e8a374ff6f846f2', 'from': '0x417146518a3fff0ddedb16cc60e7003c4cde373d', 'to': '0xbefe60ce02c8ee702fa1514a9217a6afe881e5b2', 'value': 2.60201773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f825d2d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0xf96e67979adc736fad5b6a979ededb4b7108092ced6d3253efeb9060df999fda:log:118', 'hash': '0xf96e67979adc736fad5b6a979ededb4b7108092ced6d3253efeb9060df999fda', 'from': '0xa125a44a2b1791542c0951833a6eff681d0075ac', 'to': '0x217fd90112b4a99fda6e52a2caab79b9409384b5', 'value': 12.22897306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x48e3ee9a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x870458a6d110db550c9f3d3b3c8d3f625a13f29d074d005de54dd019b3d2f6af:log:119', 'hash': '0x870458a6d110db550c9f3d3b3c8d3f625a13f29d074d005de54dd019b3d2f6af', 'from': '0x6018a3fd883416b8272cdc7869494f54c116aa0d', 'to': '0x394a09fa2236efbb990c510915208e7fa23f11e7', 'value': 6.50277592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26c272d8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x33e17328d0408ce2d7cc132e1e19fc3d12c22578e2d5977a43a6e63d7d73eda4:log:120', 'hash': '0x33e17328d0408ce2d7cc132e1e19fc3d12c22578e2d5977a43a6e63d7d73eda4', 'from': '0xc735c59ea7cc5c04af87e0212eb9556103f2ca58', 'to': '0x110c132a5325b0c342e8e1f8a34caf779b9c8362', 'value': 11.77482752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x462ef600', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x6b9e2ab4176400d48c45830f00b462499d35456525ce49d6903eb71b35529970:log:107', 'hash': '0x6b9e2ab4176400d48c45830f00b462499d35456525ce49d6903eb71b35529970', 'from': '0x4767a0ce935d0ce71d67201616197b6be77a70dd', 'to': '0xb9200e697bd21414d0b0987ed875392829e7ec6a', 'value': 22.81578626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x87fe2082', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x917e81cd8d7e7f37d4deaa55ab99cf2561083078c5c093d76857d1f545852e01:log:108', 'hash': '0x917e81cd8d7e7f37d4deaa55ab99cf2561083078c5c093d76857d1f545852e01', 'from': '0x8ae0c364c1d7b0a2878441460db04ea8f2d7f68f', 'to': '0xd31046cf1f147e6e383c6870fac65ee1f40e003d', 'value': 5.15104158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1eb3dd9e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0xbfe282c3558e65ff47239af1c5bae7bbd4a123dc138c24aaaf6c439785752259:log:109', 'hash': '0xbfe282c3558e65ff47239af1c5bae7bbd4a123dc138c24aaaf6c439785752259', 'from': '0x18f9ddfd1099a1d92085e37a69090159d37f7040', 'to': '0x78b8f3864d4ceb0901b37f3d7ed4ceb5c1d2dbe4', 'value': 5.52600921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x20f00559', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x966b1b70235d9483bd1fbbf273f7d5c7fa8f9d81372a72c7e70d333cbe1cf7ca:log:110', 'hash': '0x966b1b70235d9483bd1fbbf273f7d5c7fa8f9d81372a72c7e70d333cbe1cf7ca', 'from': '0x8043b53c13e4af1b4a43d31a424fc6dff708a9dc', 'to': '0xa14d58096a5bd8f630bde4a28237e56be795b5a7', 'value': 10.39514049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3df5b9c1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0xff4f8226e2aaa0448cfbfd2fffa1e34857dfe62b2fa70f68bba7498872749322:log:111', 'hash': '0xff4f8226e2aaa0448cfbfd2fffa1e34857dfe62b2fa70f68bba7498872749322', 'from': '0x5f534c21f1d626959ae290de20f78797759f8245', 'to': '0xaf733db7d9531a72f9b7f4347481b99c27ed7d7b', 'value': 17.62023568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x69065890', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x4d9c865e404f1238bb1d2b2c14914de680e2ce1a814be5ed5178bbf088051eb5:log:112', 'hash': '0x4d9c865e404f1238bb1d2b2c14914de680e2ce1a814be5ed5178bbf088051eb5', 'from': '0x2a18dae7b4e22c2e829f37ff651d71b5e9dd340b', 'to': '0xdd5a87f3c4d8dc46a68e32f5f1241b7f94fb08ad', 'value': 17.38698932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x67a270b4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x02c7c48e2662cfaf2c73cfe4809248e528e0f878a6bb40e7c69aab540319c755:log:113', 'hash': '0x02c7c48e2662cfaf2c73cfe4809248e528e0f878a6bb40e7c69aab540319c755', 'from': '0x13dd45250d237ac9e60cb4926be53fbd1855e577', 'to': '0x5408d67c499b89ee2510fb28078a457fc1c6ab27', 'value': 16.42274968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x61e32098', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x8831dd082a7b80d9f08d50185e09e524fa8f58301edf6e770309907cea40ca50:log:114', 'hash': '0x8831dd082a7b80d9f08d50185e09e524fa8f58301edf6e770309907cea40ca50', 'from': '0x66d95eecb873429342cf37bea215b59c5dcbbeea', 'to': '0xeb02904680e4fe578fe5a080d73dd80d59074bfa', 'value': 7.10549828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a5a2144', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x56e3e416b3cf109a082172f332c0631e30b1887a2fb8cf6c1f1ead7ae5c047f2:log:115', 'hash': '0x56e3e416b3cf109a082172f332c0631e30b1887a2fb8cf6c1f1ead7ae5c047f2', 'from': '0x94c089e9a118d01412d543d474d06ad6ee870b76', 'to': '0xfd234b7c0f5297303bf24662893f02343e9d619c', 'value': 6.57493265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x27308d11', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x19d83743da4f84708c1713a8b580d7563f54af1184b13f952a81fed04fcd2a17:log:116', 'hash': '0x19d83743da4f84708c1713a8b580d7563f54af1184b13f952a81fed04fcd2a17', 'from': '0x3f0ae328a897bf33f8fc7fe44740f15cecbd9e38', 'to': '0x592673424d5698995355a2009ec69c82e32032e7', 'value': 10.65869032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3f87dee8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x31f7ad214060bc778e98f0504b4e705432bf236e20328451385b7d9458ef756f:log:117', 'hash': '0x31f7ad214060bc778e98f0504b4e705432bf236e20328451385b7d9458ef756f', 'from': '0xab0bc2866f9a45eb9f2effd487fa4ce939a1d98f', 'to': '0xe1abe78af852fa8d84c553850c697d113d8b2f3f', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x39bbd3cef0da5fb76c0958a0b069d38f73f53cf70088f1c5e900700ac523d06a:log:118', 'hash': '0x39bbd3cef0da5fb76c0958a0b069d38f73f53cf70088f1c5e900700ac523d06a', 'from': '0xbf1b7a45d81472b3bbe82b3b680d187965d96884', 'to': '0xa2e37f5aed7923b4e8a1fe7a8d9fd3535bed352b', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x7bc97fb2c69dd69d3fa2eb2c53f8f6030e0171769e710101557a50390189766e:log:119', 'hash': '0x7bc97fb2c69dd69d3fa2eb2c53f8f6030e0171769e710101557a50390189766e', 'from': '0x20b1ee5ce16db50f01809b94a266d1010e3facd4', 'to': '0x7cb051789b118007dd66e95a85db62070976858d', 'value': 7.06570886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a1d6a86', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0xc737e1853640edc5411c9d56826b3b88dabd0631a1ad6df7b34b9477d5af7e99:log:120', 'hash': '0xc737e1853640edc5411c9d56826b3b88dabd0631a1ad6df7b34b9477d5af7e99', 'from': '0x8fc2d72071353e5ac1ae53e0070320af98321ade', 'to': '0x3e22cda4b0c59c86e798fe26ffeba180ac92155a', 'value': 16.26430319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x60f15b6f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0xc46d333560af19efff76e4082a4a9449bac37e85218655038acb5ecd9ccb5bf0:log:121', 'hash': '0xc46d333560af19efff76e4082a4a9449bac37e85218655038acb5ecd9ccb5bf0', 'from': '0xa4d526f642060618b46e1553e380cdf4c45684b0', 'to': '0x380b444cb77ffbf3475f025e039d398faead7731', 'value': 13.1142339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4e2abb9e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0xf61105fe16a8190b276195b6e11589564505600b022ca9faf40cdbb7da17c733:log:122', 'hash': '0xf61105fe16a8190b276195b6e11589564505600b022ca9faf40cdbb7da17c733', 'from': '0xb29433d80c339cafd67ea6eaf0f59e83ce9e562d', 'to': '0xa9892b30b3376480dcc109c6c535f6d37d6512e4', 'value': 16.97932617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x65346549', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x1467b4271e0d73bd2182c6582f7c2d112e18b93433275669fd4aae86baabc3f0:log:123', 'hash': '0x1467b4271e0d73bd2182c6582f7c2d112e18b93433275669fd4aae86baabc3f0', 'from': '0xa5f528ff175e9f67ef8a02575f2ee9c6e68b9667', 'to': '0x8c1a949fa6a7e359d444c02544c4b44e336a48a9', 'value': 19.67698417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7548b1f1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x03bafaa0440149ad3a7934f0cc78fb8e266576c7c0d3bb0316a789d69887f076:log:124', 'hash': '0x03bafaa0440149ad3a7934f0cc78fb8e266576c7c0d3bb0316a789d69887f076', 'from': '0xfc3253b8b5ec49ca67fe68e57dc97fd2e0db848d', 'to': '0x1851e36121c776246e06dfab39f6279660460b25', 'value': 7.78569937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e6808d1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x34dc2c706bbc8d35dda7314c094ceaaba0adf3f93b630b607b24fb7130d02d15:log:125', 'hash': '0x34dc2c706bbc8d35dda7314c094ceaaba0adf3f93b630b607b24fb7130d02d15', 'from': '0xc3fba466ddcef473598408609c3159379b002348', 'to': '0xb0ff76eecbfbcb823258d6569c65dcb7b71784c6', 'value': 5.2487798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f49009c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0xe043afa758ab50ff77fe0c656f7b8089640d6e511660abbf4c450297d2feaa77:log:126', 'hash': '0xe043afa758ab50ff77fe0c656f7b8089640d6e511660abbf4c450297d2feaa77', 'from': '0x8b5cba7e9c4ddf22b24ead5d9ff0d17f5754a2a3', 'to': '0x47dd30fd759fbb17b3cd013f66cd5ccb623f1ee1', 'value': 3.82278461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x16c91b3d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x3003df00e924b4af916ade2684dc15e050508f9c9443c491b363eb8144e7562f:log:127', 'hash': '0x3003df00e924b4af916ade2684dc15e050508f9c9443c491b363eb8144e7562f', 'from': '0xb11a197f25ead7a9baada41e908fa4ad3ca7d97c', 'to': '0xa39d20cd602ad8310bbe3f70fc1149f634a5b485', 'value': 10.58099714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3f115202', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0xc3b048620745656830c6a6b21ddc8c2cb0c5131957873ad492cb497a35c6af4a:log:128', 'hash': '0xc3b048620745656830c6a6b21ddc8c2cb0c5131957873ad492cb497a35c6af4a', 'from': '0xe40b5b5dd63635f9e9585024f8e157a6a1e4c02b', 'to': '0xacd7fbc1615dd3ba0568d3d159e4ce8be3b0d889', 'value': 5.08280545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e4bbee1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0xb2b042d832b260802ebe189afb2b077f060883c45c797fff50156ec16f2eb42f:log:74', 'hash': '0xb2b042d832b260802ebe189afb2b077f060883c45c797fff50156ec16f2eb42f', 'from': '0x44cb8abaac4298e91c71c854c0a7262ecab31004', 'to': '0x4a4dcf491a85e7dd485b7f69aba506f4e5227cc4', 'value': 5.1413348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ea50de8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0xf47572c6efa46a6657368faf6a40b1ae0dd1e59b2c931ffc1dd05dc22fd736e5:log:75', 'hash': '0xf47572c6efa46a6657368faf6a40b1ae0dd1e59b2c931ffc1dd05dc22fd736e5', 'from': '0x0f67d5d94a33c36b793ff3b6120cdf8c1b379411', 'to': '0xea8ef31cd03b6166f92b426b3b1dbe7d2e9ee0dc', 'value': 4.53694989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b0ad60d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0x043fd7f97f8833e42f757a191dd349f27a220b62424e19a014bd1052441f858b:log:77', 'hash': '0x043fd7f97f8833e42f757a191dd349f27a220b62424e19a014bd1052441f858b', 'from': '0x71389460ee748de2a4573e3d6f556860f54a2f10', 'to': '0xb35b90de78d1b451665fe79a0c24945aa9da61d9', 'value': 5.85068401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22df6f71', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0x680a62ca30b30ac50ca3da6ae923a1df8aaa0eaa8665e4baf404fdacd7bad3db:log:78', 'hash': '0x680a62ca30b30ac50ca3da6ae923a1df8aaa0eaa8665e4baf404fdacd7bad3db', 'from': '0x350a65f3c23cbc61f4caae7dea665d45dd8d356d', 'to': '0x6512fa42e38877b3c77c89853a2dd797220a4438', 'value': 11.56044804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x44e7d804', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0xd7dd1c1057bc3c1b0a00efc79bb9d660bc23699da68bc0e46b85dbcaf7cb140c:log:79', 'hash': '0xd7dd1c1057bc3c1b0a00efc79bb9d660bc23699da68bc0e46b85dbcaf7cb140c', 'from': '0x7802158aafccc20d243725966d768189fc6f3f4b', 'to': '0xddfe4e8480c4d458c551ef96f7c565fbf3cea691', 'value': 6.4880696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26ac0230', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0xd9744263d968a45addfff4d7b685295177559e7de8d5f70c8e494327956daa84:log:80', 'hash': '0xd9744263d968a45addfff4d7b685295177559e7de8d5f70c8e494327956daa84', 'from': '0x3f082bd60e36aec19d3268f0ab4a4e9fa0e1f914', 'to': '0xb8dcabcee321abe3ec35c794cb970827928bbc79', 'value': 11.84380964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x46983824', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0xdf9d3c8baeb567ab05edcfc5e9a25b290e0c7503340ca8cc11743d79f364d69e:log:81', 'hash': '0xdf9d3c8baeb567ab05edcfc5e9a25b290e0c7503340ca8cc11743d79f364d69e', 'from': '0xed9943921c85a92ab29680eef6295cfd07ff2652', 'to': '0xd585d37e7f600312ff1126e584e66dd2381db13f', 'value': 19.37699024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x737ef0d0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0x2899eedad1d74b2c3c392144167c4aa50ef616a9132da1b1e9a6f3599fee6d68:log:82', 'hash': '0x2899eedad1d74b2c3c392144167c4aa50ef616a9132da1b1e9a6f3599fee6d68', 'from': '0x54ebc647e85dd2c810ee78ce273a25ef1b97e1fe', 'to': '0xad301275ec49a1eb463ee891ebf706019756637f', 'value': 6.44183754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x266576ca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0xc5c94c9ba4ec5fbbe7d042b51ba380a45536a5e810c524ed59bee7df32aaba97:log:83', 'hash': '0xc5c94c9ba4ec5fbbe7d042b51ba380a45536a5e810c524ed59bee7df32aaba97', 'from': '0x2c6bbe64fa0820aebaaebbee4f00c8d6d64272db', 'to': '0x7933a799715f89665c085e6a45c1a41b6e1a4481', 'value': 6.01891124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23e02134', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0x4efb7852d160f616a540536300ebd985a20ac834e7b5439f4918a8b85c95346a:log:84', 'hash': '0x4efb7852d160f616a540536300ebd985a20ac834e7b5439f4918a8b85c95346a', 'from': '0xe2c5e7a59bb7a8e1ab367336d5e5704fa95eb03c', 'to': '0x9555df01c7e111c8fbc6ad8e7236313a9785215c', 'value': 11.27673018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4336ecba', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0xb48e620788fb2c732f3b0e1a1eb9a460f73255175e874ed7cde03ae8b4d20ac6:log:85', 'hash': '0xb48e620788fb2c732f3b0e1a1eb9a460f73255175e874ed7cde03ae8b4d20ac6', 'from': '0x1c558636463e5c7df667fca93b1d2d7a917c5565', 'to': '0xa21a5ab81feff619c8930a9a046743e3679efb1c', 'value': 5.93288137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x235cdbc9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0x985d83693eab86439b34024a571289b14e983bdd2cf1b91a7d143038dcdbe90a:log:86', 'hash': '0x985d83693eab86439b34024a571289b14e983bdd2cf1b91a7d143038dcdbe90a', 'from': '0x5bc8ce010bdb58c9c73fcfc490da0bb2205e76a4', 'to': '0x9fff35dc1b9fc0c4680476773c3191a557f65d61', 'value': 3.40193086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1446ef3e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0x8adf19038381042496cd60eb4f0b2a078b1f0631bbdc1ca5ef00101930d2baba:log:87', 'hash': '0x8adf19038381042496cd60eb4f0b2a078b1f0631bbdc1ca5ef00101930d2baba', 'from': '0xf3c75fcee63a78b6557c848b73427c8e9a0f4425', 'to': '0xd377b24a241e8c86a469e03444b2861ebeb1da28', 'value': 13.73551123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x51deba13', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0x3c043c8e8f9dfdc60258b70e34a6986d3dcb1eca6d4203c8512cb3ac67fb36c4:log:88', 'hash': '0x3c043c8e8f9dfdc60258b70e34a6986d3dcb1eca6d4203c8512cb3ac67fb36c4', 'from': '0x5fc348a067f8b1fe27e13571d19b238d19a53ec9', 'to': '0xbc66f032789b102253c70de8dce2d5bd4d13b83c', 'value': 12.94763645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4d2c867d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0x96f4aa693b30987a5d7047275b885c2e8fd326b7a3bf84021cd930b646b49c65:log:89', 'hash': '0x96f4aa693b30987a5d7047275b885c2e8fd326b7a3bf84021cd930b646b49c65', 'from': '0xf1db45374160ea7971f7e3a299e6fda874af724d', 'to': '0x449d6b197896a26cfbf111395e410ba4c966a482', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0xb33cac4eeb7d078c91e91561bbf78ca68318a4d41ee13cacb53e3ff9beca7537:log:90', 'hash': '0xb33cac4eeb7d078c91e91561bbf78ca68318a4d41ee13cacb53e3ff9beca7537', 'from': '0x46d1caeaa082fc33a795ea0d527c1b36a6e0b64f', 'to': '0xa62b64b25392a3607fb1a5b5ec8c50953c917e5e', 'value': 11.52509659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x44b1e6db', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0xc6c8865561c7da4ef7df1672e4e492e73da81f4dce9f884ce9948a7ef9abb57b:log:91', 'hash': '0xc6c8865561c7da4ef7df1672e4e492e73da81f4dce9f884ce9948a7ef9abb57b', 'from': '0x1180614c5929575e32ec1e1da762109254fbd01d', 'to': '0x442581b1e821228e68fe1b576146afef3fd9d9fb', 'value': 3.54998052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1528d724', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x1900962a38e6c02265316ff8400f107bbf8998e776cb193d4e4b98e5443e7982:log:92', 'hash': '0x1900962a38e6c02265316ff8400f107bbf8998e776cb193d4e4b98e5443e7982', 'from': '0x6202766cdaabcb7e4a8d425d63010a8ac1028815', 'to': '0x687b556374017d09e057777e9d8bd9b376a8bd25', 'value': 3.40830038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1450a756', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x21f4ecb986f91c850ff136dfeb79ae0ac378c2e050f3fa3a551ffa0769a21300:log:93', 'hash': '0x21f4ecb986f91c850ff136dfeb79ae0ac378c2e050f3fa3a551ffa0769a21300', 'from': '0x42db7ffe08051bdd9751480800d12ef963ec67c9', 'to': '0x2caffa585cdca912fe72cc23bdf83c254cf6d795', 'value': 5.15192669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1eb5375d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x4b48838faf8e54824e773275e2eec60efed5154a3fd401644685f0edd7dd040e:log:94', 'hash': '0x4b48838faf8e54824e773275e2eec60efed5154a3fd401644685f0edd7dd040e', 'from': '0xcca38911fa537acce47c8725786f1e0472abacb2', 'to': '0x1a784edb743f9e604d0c2031848ab48fc774d39f', 'value': 5.46704851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x20960dd3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x5d5c4c8a64746d4a07cb2655cdfe5a1ead841dcedd7ddf77c7848771dcfffac2:log:95', 'hash': '0x5d5c4c8a64746d4a07cb2655cdfe5a1ead841dcedd7ddf77c7848771dcfffac2', 'from': '0xeab3b518e09e1d67650283d89cc738692d04f10b', 'to': '0xf9c7d324f047f8dda13f6068d9b4c754ce8bd731', 'value': 26.74669276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9f6c36dc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x1ef2aa4f69fd83302060d6c21dc1dcc48de9bdb3ea58e465f38968263938d266:log:96', 'hash': '0x1ef2aa4f69fd83302060d6c21dc1dcc48de9bdb3ea58e465f38968263938d266', 'from': '0xab07f941f507cd63660db77f41056cdd5e9e9fcc', 'to': '0x5bd75eb80b8a6257c63be6fe0d21acf782d4ead8', 'value': 20.3319455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x79301636', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x3decbcd64026163220bd98970c948b94e7fab5a4dc14148db4909a95e749feca:log:97', 'hash': '0x3decbcd64026163220bd98970c948b94e7fab5a4dc14148db4909a95e749feca', 'from': '0xdcf5c3f698fc0cafc4f0d7f7d0a7598282514c6c', 'to': '0xce56725713401743de5bb927ded3b441d764745c', 'value': 10.32716595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d8e0133', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x14b4f9d059feb8d01a637e75e02fd68787a622bccb7ad497525093a8a5fbfe05:log:98', 'hash': '0x14b4f9d059feb8d01a637e75e02fd68787a622bccb7ad497525093a8a5fbfe05', 'from': '0x5761f5f19612d1c2793c21eb052c55c690fc083e', 'to': '0xcf58ed76f832f5246f29e2cb2fa51f87ce905a8f', 'value': 6.3754694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x260031bc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0xf2fb90a8f1518cb9c55bd75bc239fda4ec0c3106f8d06857d3c5f776da01712b:log:99', 'hash': '0xf2fb90a8f1518cb9c55bd75bc239fda4ec0c3106f8d06857d3c5f776da01712b', 'from': '0xfd862969202e5a23d946885a158f790e0af27dc2', 'to': '0xeb8ca412bfd27b9ca70b1b71ed9b1f4be84beeb8', 'value': 2.10640486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c8e1e66', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0xc7b336d18ef54361502f7a134471231b9eae75e6c422695fdd6f693ff6386253:log:100', 'hash': '0xc7b336d18ef54361502f7a134471231b9eae75e6c422695fdd6f693ff6386253', 'from': '0xf27f9d43a4c7c13bf993d5116ba63bc0f5813bff', 'to': '0xca06972a6dcb402397bc92e4db4d6eec639328e0', 'value': 16.66228692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6350a1d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x785c712a1f29ed2ee1a51a90e9dd2a3e0713ab14239e6481aa7d28dfce49360e:log:101', 'hash': '0x785c712a1f29ed2ee1a51a90e9dd2a3e0713ab14239e6481aa7d28dfce49360e', 'from': '0x0a388e45db327408b2ff36ffdfc51d887e0e42e0', 'to': '0x7ed52c64e5c5f87031dec8d7115352e52b57a98d', 'value': 13.30686171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4f50a8db', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x3c4bbea3266f6a81bc22d092be10821b4723766b0447769997406c4338a3ea9b:log:102', 'hash': '0x3c4bbea3266f6a81bc22d092be10821b4723766b0447769997406c4338a3ea9b', 'from': '0x6b1fe413672e476e0e3d83541aafd5a36335d211', 'to': '0xd6dfde3417741a8b698fe79d175847e2b5310d1a', 'value': 5.89907744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23294720', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x7d428c3e14f8199acc499f59405dc6feeba179bc853eb19397ad3f4269b91e17:log:103', 'hash': '0x7d428c3e14f8199acc499f59405dc6feeba179bc853eb19397ad3f4269b91e17', 'from': '0xcbe353de2a5e697092e453aaa044ed445b8b22de', 'to': '0xf6bc18bf98cc8356cc2b86e6f79bad8335097b87', 'value': 5.74283141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x223add85', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x40c1d1ad10156ba39e0f066576713355ed25a11e24ae6881de4aadf20a0e859e:log:104', 'hash': '0x40c1d1ad10156ba39e0f066576713355ed25a11e24ae6881de4aadf20a0e859e', 'from': '0xd732b0a5267be302ebb56ce7c5aa07e01c4705e9', 'to': '0x3645950a8080b18cab69aca11774e1538d8046af', 'value': 11.06166603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x41eec34b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x1243f5172480e347d2a79155112e86bac8fb88c03340953106ea0c6a5e1646e1:log:105', 'hash': '0x1243f5172480e347d2a79155112e86bac8fb88c03340953106ea0c6a5e1646e1', 'from': '0x24553c78c46c92c1834440a84328d8a4bab9e1fb', 'to': '0x6be7afb0f0bb845f1125cdce88e2691f9f848593', 'value': 10.97489512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x416a5c68', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x518d3027cfdaa96b63ee1351ea6ff861f13a01f123d5858e044e62e88b7ed052:log:106', 'hash': '0x518d3027cfdaa96b63ee1351ea6ff861f13a01f123d5858e044e62e88b7ed052', 'from': '0x2359be6cbe76e5aaa18050983b7526915fb8ec83', 'to': '0x86593cf1ff3e8d91ee2146def0805e77eb8a7aa4', 'value': 5.8478846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22db29ec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0xb34b0f7f745d3644670da3b6d1528f6f536018cfbb8ef03b69f83e970ca362e3:log:107', 'hash': '0xb34b0f7f745d3644670da3b6d1528f6f536018cfbb8ef03b69f83e970ca362e3', 'from': '0xcc1c45be7e0892d526296e124ea39833df746f90', 'to': '0xb44505ab7d0bbe86787665b5ab370c7e5d0448be', 'value': 5.47128443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x209c847b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x128817c9414d2043205df32bbf0df7c20db5870e48daf0caa96c5dbc2bc75029:log:108', 'hash': '0x128817c9414d2043205df32bbf0df7c20db5870e48daf0caa96c5dbc2bc75029', 'from': '0xb06c85260d863f3fbfbbfa138ea9f7804f13ba43', 'to': '0x014dd570c6eb7d12d9186dff423787c890096449', 'value': 21.77385727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x81c844ff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x158be7f048083546840debea6fa09fb3f55014e49439e6667632f1af3eba0048:log:109', 'hash': '0x158be7f048083546840debea6fa09fb3f55014e49439e6667632f1af3eba0048', 'from': '0xa62b87fd5f15cb574a577b4902b43bae37765291', 'to': '0xace709796a2ca555ef46ee08307cfe2c9683727a', 'value': 5.50915533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x20d64dcd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0xa742f6c1c618b77dda0731f77938a35ad6e71a3387aeb0807656fe0f38580ab2:log:110', 'hash': '0xa742f6c1c618b77dda0731f77938a35ad6e71a3387aeb0807656fe0f38580ab2', 'from': '0x28d7262e3321af8a6347e33cd7384877e9d76ec9', 'to': '0x4584ec1f5fb34fcc062155eb6aa5b59a6acf41ad', 'value': 7.15709459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2aa8dc13', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x37511176ab0bd0d55430e1662625f8eba32a021d62ecb35bad84ed63f0e55f70:log:111', 'hash': '0x37511176ab0bd0d55430e1662625f8eba32a021d62ecb35bad84ed63f0e55f70', 'from': '0xd6494896e8102cf6c6c92dbe43738d0d8052c323', 'to': '0xb085de01a42dc7f0f2ccbbe60c97ab5013e8c11e', 'value': 10.81648486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4078a566', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0xbab396b23d963ab38d0f04047716f0449264ade415f570dd157ebaa31cf1b6f8:log:112', 'hash': '0xbab396b23d963ab38d0f04047716f0449264ade415f570dd157ebaa31cf1b6f8', 'from': '0x41de2667d4b74ff5f6f7b59368fb2cdd70038907', 'to': '0x510ab8ff454d20a724c4b9e6988a1a7db6daa58f', 'value': 5.00277946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dd1a2ba', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0xdb4bbfb716afd10204cd81b02b5afa7d78ad3d7c4ce335420f6cbea566154ad9:log:160', 'hash': '0xdb4bbfb716afd10204cd81b02b5afa7d78ad3d7c4ce335420f6cbea566154ad9', 'from': '0xa1e4f61ac3896b1ae672c9c66140a0fc03fa7b15', 'to': '0x95e189820eed2180a887a8557abb83295b8e89a0', 'value': 24.6296159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x92cdcfb6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0xaff5db06e3c197ade826b095a63bc89f81850564c2dd1ad0469a863daf12d640:log:161', 'hash': '0xaff5db06e3c197ade826b095a63bc89f81850564c2dd1ad0469a863daf12d640', 'from': '0x3d33e67f0ef451dc138e97140b710d0711a79e1f', 'to': '0x0cbaada787269aaa3d0f2a188a96eed38d3f3a26', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0x2fbe5b9106e3a5ca9320eb0b4f8942feb1902571a3eab824ee9fe9e1ff8185ad:log:162', 'hash': '0x2fbe5b9106e3a5ca9320eb0b4f8942feb1902571a3eab824ee9fe9e1ff8185ad', 'from': '0x9e655ef59e1c5c106df646abf0068eb0e4b16822', 'to': '0xd614846f23066c27821745283e6826e628e8f67c', 'value': 5.20740583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f09dee7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0x647c51f870ceb68245a65d131b6d833f6fd2223886ce58172305d72a4cfb6d64:log:163', 'hash': '0x647c51f870ceb68245a65d131b6d833f6fd2223886ce58172305d72a4cfb6d64', 'from': '0xf1fd1fb9e913f495c1c7c0130b165debdf81c0e3', 'to': '0xb5b660a3529014f1a795b2178a9d44832a543b57', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0xf96afd0af57cef55c3aba11541821caebfae21ef4bee5ffcdeb9134548a59572:log:164', 'hash': '0xf96afd0af57cef55c3aba11541821caebfae21ef4bee5ffcdeb9134548a59572', 'from': '0x35db1283a28241dc861c6fb2654f51e9fa51754a', 'to': '0x1878735e2130c52dd857286c36f378f78108056e', 'value': 7.55644789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2d0a3975', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0xd8cb88f7ca35b2a07de8030f75109420627c8e220e998d81c3de20b223eb03ce:log:165', 'hash': '0xd8cb88f7ca35b2a07de8030f75109420627c8e220e998d81c3de20b223eb03ce', 'from': '0x0af161d250a555c10cc45ea693f72a61f17a3fc6', 'to': '0xbdbd52ab04af7802f64f600f2afad27f2f8224ec', 'value': 13.89825525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x52d70df5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0x2a352fc5e70aa9b03f509a3f2b67150945988887090e3a5573e70f3f8c9d2e99:log:166', 'hash': '0x2a352fc5e70aa9b03f509a3f2b67150945988887090e3a5573e70f3f8c9d2e99', 'from': '0x40f7409da30a68fc20610142a5193ed7cb5fce8f', 'to': '0xd290cabcd9e4dd15c43ccf684c1dd8ed513ba9f5', 'value': 4.95954916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1d8fabe4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0x9dd55a76d0825cef255d49f8e42b81c6261a189eee394a2cbd9385dc895a67dd:log:167', 'hash': '0x9dd55a76d0825cef255d49f8e42b81c6261a189eee394a2cbd9385dc895a67dd', 'from': '0x85cd54e42dff3c3c3532ba46811dd80145815116', 'to': '0x978e984548e3a3f9c99c122448934674ce37c6c3', 'value': 3.40131586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1445ff02', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0x1aee49ac6320085944f8ae44f8c66bd5a37c201cf706a7b51406519e54653478:log:168', 'hash': '0x1aee49ac6320085944f8ae44f8c66bd5a37c201cf706a7b51406519e54653478', 'from': '0xbcc650c27aeb1116c64d58b5c9a363887c08b267', 'to': '0x0ddd2cb5abf9a05a9b9201f49063e79cafa6de2f', 'value': 11.18116689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x42a51b51', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0x6545c7e76e0e6de335fadfe58e8278e4091b4404df40df1c2d305ffc896ef9a7:log:169', 'hash': '0x6545c7e76e0e6de335fadfe58e8278e4091b4404df40df1c2d305ffc896ef9a7', 'from': '0x096a306189e7b364b7bc9d5854812196be22c241', 'to': '0x2c63d2376068503b575a512bcbcc9ee5d2278785', 'value': 4.21575076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1920b9a4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0x1198dd0e725645fa2e26b643d78a005de3ef105d6bc3b5e4ff9be787c672858a:log:170', 'hash': '0x1198dd0e725645fa2e26b643d78a005de3ef105d6bc3b5e4ff9be787c672858a', 'from': '0xf1f3deb3f00ed8f310302e3e9b4b25983b2c32eb', 'to': '0x0aafd359134827b89a33b74d3dee3771d09c82ed', 'value': 2.10640486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c8e1e66', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0xfe47510cda5c7167aa474983089a868934d295648ae2540e56d913f617474aa3:log:171', 'hash': '0xfe47510cda5c7167aa474983089a868934d295648ae2540e56d913f617474aa3', 'from': '0x961687e4caecd7f9cc66f93d510e75d6d44e662a', 'to': '0x78112d6bf90d832b253381ae1c1ea3e6047f8f66', 'value': 3.30294916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x13afe684', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0x8e7d9c4b0c3a443e31b75e1fbddbcd738f625afd8445efc0fa40c2d3cedcacb6:log:172', 'hash': '0x8e7d9c4b0c3a443e31b75e1fbddbcd738f625afd8445efc0fa40c2d3cedcacb6', 'from': '0xa3aa12f333e0d227f535aafc4a1d50ff2dae2cff', 'to': '0x11b75648f48b500f66ddc8e20a14de6bbe7006a6', 'value': 7.79315288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e736858', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0xde4eee520e764a9e6056fc58944b9a454a44a2cc721f68b5b376024f95d2879a:log:173', 'hash': '0xde4eee520e764a9e6056fc58944b9a454a44a2cc721f68b5b376024f95d2879a', 'from': '0x44338e570ac6ac56e79cbbbe9ca94f3963463c85', 'to': '0x94045741ce63a3389204df0b789b6a7eed17b3d1', 'value': 6.47683092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x269adc14', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x535d5c86ce137323c3dbfb2f97e4d88f79090b3280e62ae6bae1abafd09adcf8:log:67', 'hash': '0x535d5c86ce137323c3dbfb2f97e4d88f79090b3280e62ae6bae1abafd09adcf8', 'from': '0x43b5f733665b3f0927a2723a051dfd113cda2c55', 'to': '0x38e9621a7864f2aaf4840e4c60e24b0d149c988a', 'value': 5.09093639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e582707', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x1cb760a33672b14ee250365bfd06bd011875750a3889e41611b638d1e1fd295e:log:68', 'hash': '0x1cb760a33672b14ee250365bfd06bd011875750a3889e41611b638d1e1fd295e', 'from': '0x5134c98502aaeca9711bf175bef1c1f958458d97', 'to': '0x87c1e431b6eabf6421d5824adf38f6b13c2d16ef', 'value': 4.58553756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b54f99c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xf966619798c1128762220800b6823d6834388fe450388a4dd8372e36f888dd91:log:69', 'hash': '0xf966619798c1128762220800b6823d6834388fe450388a4dd8372e36f888dd91', 'from': '0x6c0c241966cbd3267e3dcb961f6cc7b909b3edd0', 'to': '0xae24b06d9a84df8f664be1cff450f9e28d80768f', 'value': 5.84372315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22d4d05b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x68506881cc6d171497f0249f2b9b6f1760f24678565522649846e6f0760e12d4:log:70', 'hash': '0x68506881cc6d171497f0249f2b9b6f1760f24678565522649846e6f0760e12d4', 'from': '0xc38eb2451bc651fc9fd418be30dbb41b49442d8d', 'to': '0x406bb3afc3907977a339cf83cbc32e90e7e07e3a', 'value': 23.53615154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8c495132', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x8e1618ad9ce31626ebc1691e84441bcd46bda1e5cb003642e072484fb5d85e4e:log:71', 'hash': '0x8e1618ad9ce31626ebc1691e84441bcd46bda1e5cb003642e072484fb5d85e4e', 'from': '0xc1f073d9741e63124e17bc9ccf289e0c79518a18', 'to': '0x0f62b0dba897ecc96e07460c004b9679b4c2d0e5', 'value': 8.43501557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3246cff5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x6873a5a51c6664895ea586534f0a12bf43f6999277337e4505cd64bea4108eb8:log:72', 'hash': '0x6873a5a51c6664895ea586534f0a12bf43f6999277337e4505cd64bea4108eb8', 'from': '0xf390093d85cfbff0d10938d8e470fb0f267ca255', 'to': '0x78b150569552799c0a54f85569f93aabb71d0e59', 'value': 7.19588678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2ae40d46', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x6c7bf9a09954718c682b30e8f1bedfb3d5a96575256daee8aeacde1b6ddf8a00:log:73', 'hash': '0x6c7bf9a09954718c682b30e8f1bedfb3d5a96575256daee8aeacde1b6ddf8a00', 'from': '0xb0b66ec1191b580bd0d698fb6dedade1edb0abc0', 'to': '0xe798db060b628569ca1f84d9a16a9b70a53965bd', 'value': 10.56649483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3efb310b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xcd6ce24f1882251bc8896dcfacaab941feb61d2b4b3b2057151a4fe96e80aaaa:log:74', 'hash': '0xcd6ce24f1882251bc8896dcfacaab941feb61d2b4b3b2057151a4fe96e80aaaa', 'from': '0xdc92dfbd0f8202c9b7d14b4cf4b0420d0b378026', 'to': '0xa6755889ae51c895a1a0e55ebac85568a7ca6e24', 'value': 3.40131586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1445ff02', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x76e452acc24c016b226f9d132135a4f8bc32a681ef4a5c78f8ade79f5a6c6926:log:75', 'hash': '0x76e452acc24c016b226f9d132135a4f8bc32a681ef4a5c78f8ade79f5a6c6926', 'from': '0x5cc237e885072172e45125128595badf22265b46', 'to': '0x5bbc7f5b55a059160b25bbfb46ce3b1a4fd84a04', 'value': 6.4401244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2662d998', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x59e9d450c1190e4baf94434a78cbd5a06fa0e02329a26bf329036a9d30cb6fb7:log:76', 'hash': '0x59e9d450c1190e4baf94434a78cbd5a06fa0e02329a26bf329036a9d30cb6fb7', 'from': '0x77c45fc54981d480d55c4868d5e722c49d5e720c', 'to': '0x7d5b77e58cef5708690a586f8d510aa92b8b00cd', 'value': 5.17653782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1edac516', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xcddfb6a2fb81b62606f339e75bc77634c097ce109fab686f76535188fc0ca6c7:log:77', 'hash': '0xcddfb6a2fb81b62606f339e75bc77634c097ce109fab686f76535188fc0ca6c7', 'from': '0xf4d31071cdeeb60047680292d46e9d0bc46883be', 'to': '0x2885b267095f4d2878167b2a38b864587961e525', 'value': 13.46363108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x503fdee4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x4d2f0629fc2d6f720d20825e9ac36a28c8fd85a6778c7679fbd3c4c1e8591345:log:78', 'hash': '0x4d2f0629fc2d6f720d20825e9ac36a28c8fd85a6778c7679fbd3c4c1e8591345', 'from': '0xbac6bdf1a48cfbb0f4de7689e052f483da0310a3', 'to': '0xaea7d4323fce274e31ac3585ab5edbd59a29310f', 'value': 16.27453876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6100f9b4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x5aec89669a6cd510592081f489d8daf9e8da4ba2d26eeae667b0132bd08f98bb:log:79', 'hash': '0x5aec89669a6cd510592081f489d8daf9e8da4ba2d26eeae667b0132bd08f98bb', 'from': '0x1bc09a1b2885479783759f79b3245ed8b9671b1d', 'to': '0x38f17667c207a8083eff074aebd6cd55a552843c', 'value': 4.15873625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x18c9ba59', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x8aa453e23e22badcf2caabf62e991cfcefe243d831dba4450d1c9b399a52aabd:log:80', 'hash': '0x8aa453e23e22badcf2caabf62e991cfcefe243d831dba4450d1c9b399a52aabd', 'from': '0x8c98814271e13f061a5aca3d1c4b62485f97e03d', 'to': '0x261464cfc5d03bcf0e9c75be12a3f6bb337af14c', 'value': 5.20414045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f04e35d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xefc53fe602084501c22956c1b2cfaeb704ea816920f6f79b0b1181a52ef0548f:log:81', 'hash': '0xefc53fe602084501c22956c1b2cfaeb704ea816920f6f79b0b1181a52ef0548f', 'from': '0x361f7771f45a861dcb618a413da7b172b305c42f', 'to': '0x420f7d2b77303adf7c3c4054b986bc123a87d475', 'value': 5.93370917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x235e1f25', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xba99ffe387df7c536fcc458182c3632c709712bed97555cadcc1dbe6916c4543:log:82', 'hash': '0xba99ffe387df7c536fcc458182c3632c709712bed97555cadcc1dbe6916c4543', 'from': '0x891cd1b216dfbfbce75c1282ea8027096b5bfa37', 'to': '0x29cd3f946c4d6f665ea7a3ae1c882faa5ce3c6cc', 'value': 6.3852708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x260f2668', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x96f6a341731c519c55244b6b63cc5f747d599c4f943e1e4516183ab0dd153477:log:83', 'hash': '0x96f6a341731c519c55244b6b63cc5f747d599c4f943e1e4516183ab0dd153477', 'from': '0x5e1260f1ce71c6b5cbf83d753ff1c8cd4895d122', 'to': '0x7993b4bf4a2089697fbcab8f9da46d57e56ecd1f', 'value': 6.42372284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2649d2bc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x24f23053b1f33ff32fdf8b55879192a3abc838bd5b434f00d8cc8fb682437a66:log:84', 'hash': '0x24f23053b1f33ff32fdf8b55879192a3abc838bd5b434f00d8cc8fb682437a66', 'from': '0xee01ff4f1ccee5afb3499ff2be71d3a40608a2b5', 'to': '0x3ca2e1cff8971d62d688d3efa1b3353b53fb3555', 'value': 11.48580222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4475f17e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x31261b65fe3ef171ce3b354e8932758a0b650343b04dae04fc6bac62c1e26944:log:85', 'hash': '0x31261b65fe3ef171ce3b354e8932758a0b650343b04dae04fc6bac62c1e26944', 'from': '0x20dfc577e9af2a10b74e40a9bf9a60c3e996e424', 'to': '0x1da39f09a46dfc1037208eeffdfacaa33611bf5a', 'value': 10.88683258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x40e3fcfa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xedf5f530ffd339307cb1a82b094970ff1b142f5afc8c011b44dc6016b48c4c74:log:86', 'hash': '0xedf5f530ffd339307cb1a82b094970ff1b142f5afc8c011b44dc6016b48c4c74', 'from': '0x60426b1e71ccd6d820252b8115e379f329a976e0', 'to': '0x2f103167b69b46fb24bc2a04d663be058880eaa9', 'value': 7.13689858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a8a0b02', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x863bc1af09ee00b64a370948a2057f6ab5a5eac9ae01560cd280da11a5fa2d35:log:87', 'hash': '0x863bc1af09ee00b64a370948a2057f6ab5a5eac9ae01560cd280da11a5fa2d35', 'from': '0x502a27bc764c174c2bc7c91b6e4c656413c5bc08', 'to': '0x13a284afe997106d7c80d776db9863a9428d48ad', 'value': 5.10451716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e6ce004', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xe30884e4772afcc74bead128f0ebcfabeee757e911e41f1191e8e2be4f93846e:log:88', 'hash': '0xe30884e4772afcc74bead128f0ebcfabeee757e911e41f1191e8e2be4f93846e', 'from': '0x11089cc309d81f105d5a50d7bec5c63760f44f21', 'to': '0xa12b47560aaa0259b67933539e27974de0543177', 'value': 5.07543343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e407f2f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xd4ea5435fa0158b86c468a36ac5d6145076a18fbc3e9a30954fc3ad5717d49de:log:89', 'hash': '0xd4ea5435fa0158b86c468a36ac5d6145076a18fbc3e9a30954fc3ad5717d49de', 'from': '0x48774cd5a15168724a23ccd551b5c7d80c7f7f7d', 'to': '0x2cc60120dce96b11da9f2412782a4251012e4046', 'value': 3.06364411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1242bffb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x5961c837a1a89aa35904d04030d927a0c73379f7ade50a0e002c94d8f3ccd203:log:90', 'hash': '0x5961c837a1a89aa35904d04030d927a0c73379f7ade50a0e002c94d8f3ccd203', 'from': '0xb0286aa9901fbbce402b2170823c54752712c4e6', 'to': '0x37dd19b1312204fbf9eb5890b22d2591c8bcaad7', 'value': 11.58265608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4509bb08', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x83076070919cb62c9508c491e9b896ff4bbf1b5db081d3e88866a6057fe5de38:log:91', 'hash': '0x83076070919cb62c9508c491e9b896ff4bbf1b5db081d3e88866a6057fe5de38', 'from': '0x9e85896040bdaeb521fc31cbdffd62562739c03d', 'to': '0xf12f15f5abab21c32aef2ecca3b6b1e7798fed86', 'value': 3.4507524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14916e28', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x30b152a45ccfcbb0eca4dcca3099c7c82d4d6509daa100df5542fd216e187a40:log:92', 'hash': '0x30b152a45ccfcbb0eca4dcca3099c7c82d4d6509daa100df5542fd216e187a40', 'from': '0xf23a331a594715354363067252bba4768ad31130', 'to': '0x489ecdf9255b7f4535e76b7c30e228296283c108', 'value': 7.56844029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2d1c85fd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x7c063c7c7e8cfd9286efc37df4e8386bd01a08bdd8ef9e8e58416de0dc4938dc:log:95', 'hash': '0x7c063c7c7e8cfd9286efc37df4e8386bd01a08bdd8ef9e8e58416de0dc4938dc', 'from': '0x4599ec1164eb2813eb2194ae5891c6097c9c9dc5', 'to': '0xa7104cac3b43117b7e2ded1896ff4cbeaf634643', 'value': 6.24402668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2537a0ec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xb8eeff237fdd13608b5e2604c4b64039af5418cfb326d4c60a2c506aff414889:log:96', 'hash': '0xb8eeff237fdd13608b5e2604c4b64039af5418cfb326d4c60a2c506aff414889', 'from': '0x79f3529d33243cad509d9b62c3d478863a5d66f5', 'to': '0xc9191d4deb787823d8537cee6936c151e1d8bd65', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x822424f10b41960852caa13dd3b683f1108ee1119f1ca74ac0377c628520f2d8:log:97', 'hash': '0x822424f10b41960852caa13dd3b683f1108ee1119f1ca74ac0377c628520f2d8', 'from': '0x0072b78da7e24dd64836a5da03dffb376a2ae872', 'to': '0x2babaacc2de1c3a0af16409910cfbf6abf404832', 'value': 5.36269041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ff6d0f1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x15a4ec3a4c067742a60b27dc5845763d3e3239b6cfd97a88a9eb09505c9cdd0b:log:98', 'hash': '0x15a4ec3a4c067742a60b27dc5845763d3e3239b6cfd97a88a9eb09505c9cdd0b', 'from': '0x963ae8a282a98da9cf0e6ac55d8ed2765972190e', 'to': '0xb1c7733081cfc7ad69b4df5d6e7bc650e2bd381c', 'value': 4.40659718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1a43ef06', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xca23991302a0636e1dc5a9c195f0356306807f47059e4f41f69aea53665bffa8:log:99', 'hash': '0xca23991302a0636e1dc5a9c195f0356306807f47059e4f41f69aea53665bffa8', 'from': '0xedf8db43cb502e48b98e44c5d3eb482bb65b4d47', 'to': '0xffc2cac0dddb7e83c27a08be563a3a58dd2bc421', 'value': 8.48611397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3294c845', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xfd502842b05503d4b7a8da359054cc0ff3bdb8b0273a4ced1e755b578006a867:log:100', 'hash': '0xfd502842b05503d4b7a8da359054cc0ff3bdb8b0273a4ced1e755b578006a867', 'from': '0x07c8ef77fea9ecc015ea03b1c22b0446851b0211', 'to': '0xb34fcfd2c4a610cdf8bef239c5b6ec0ba4d7514a', 'value': 17.48619956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6839d2b4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x4c4c667219b9eea0f585030b8836578f83ec9ec00f882acdfff70553c2f334b3:log:101', 'hash': '0x4c4c667219b9eea0f585030b8836578f83ec9ec00f882acdfff70553c2f334b3', 'from': '0x72a59ba6d0688fe541d4221dfcf694c397431177', 'to': '0x204aa8466da33cd1912b5cbc927e488811d111c3', 'value': 5.78664916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x227db9d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x379184e8ae09c5e0cc057d6d4e674e7cb3c696ae5a589cb3286a820f84cc7d68:log:102', 'hash': '0x379184e8ae09c5e0cc057d6d4e674e7cb3c696ae5a589cb3286a820f84cc7d68', 'from': '0x047ba30acb08acd642c697f55530b163200a2900', 'to': '0x04f039e884c2808ea455970f1dd2de8c49d7f63f', 'value': 9.81938963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a873313', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x1b782dcd34abc1706231a5a4d480cf8e7986ebbd300176a09b8b04d0fe20345b:log:103', 'hash': '0x1b782dcd34abc1706231a5a4d480cf8e7986ebbd300176a09b8b04d0fe20345b', 'from': '0x7950402fd10113680ccb8661fd1685866829a0e2', 'to': '0x74f77fe7967fbb5b62ef3727a3ab3c8cf0911161', 'value': 10.01307861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3baebed5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xf6976aa2d6c875535322664a20cd6d77b0650c887d645248a9d9227cc77a4a62:log:104', 'hash': '0xf6976aa2d6c875535322664a20cd6d77b0650c887d645248a9d9227cc77a4a62', 'from': '0x001db23626d12ceba337d3fd1dc3a6a7f5a10776', 'to': '0x4631d3d98ab8c40e224baf190e2af87df7a99a46', 'value': 12.16091548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x487c159c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xbfb0badd15d692348d9be1f7e7277326e4b00f54a5b86cf101db9a87531d9892:log:105', 'hash': '0xbfb0badd15d692348d9be1f7e7277326e4b00f54a5b86cf101db9a87531d9892', 'from': '0x1f33ba6c80dac2deb08b314ad26e4b4268f8f5a4', 'to': '0x7a709edd5d45511f75fd83fb729f05b7bdd5a877', 'value': 3.40250883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1447d103', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xa98ff37796fa697b6bc3aca42833cf84fc1b5e2bcd3da4ee4673bdb44b19ef74:log:106', 'hash': '0xa98ff37796fa697b6bc3aca42833cf84fc1b5e2bcd3da4ee4673bdb44b19ef74', 'from': '0x526cd73b84e8ad8bb70de42304a40e0b03393e7c', 'to': '0xcb26a6fc602b1dacde20e44193b41fd5bd9bbcf2', 'value': 4.99169806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dc0ba0e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x9490fa3606cac236c92ed8f5a808dec0db318b3728124881c2346e11b3e660cc:log:38', 'hash': '0x9490fa3606cac236c92ed8f5a808dec0db318b3728124881c2346e11b3e660cc', 'from': '0x6df0325f8889cd0f2a1ecfd34d4f5244a656fa6b', 'to': '0x8e255df2b79af7fb3b1f0c429f0f4ec5b4b76fe8', 'value': 10.84593435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x40a5951b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0xf9cdfe4e662e272b2c1a04e3e6f1e5e7c55f0393db061fcd72a566fdb800221b:log:39', 'hash': '0xf9cdfe4e662e272b2c1a04e3e6f1e5e7c55f0393db061fcd72a566fdb800221b', 'from': '0xd22ca4c123f00c8290f7819c97ed84022c0b5dc4', 'to': '0xbde4c85dfe5df13d66a25115ae39abdedead3105', 'value': 5.37642752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x200bc700', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0xe5cba08c77e6c8bd262083763db8fae756e1096132b27da9af96225693339af2:log:40', 'hash': '0xe5cba08c77e6c8bd262083763db8fae756e1096132b27da9af96225693339af2', 'from': '0x587073e3f7cbf3c534833e65e6be854931618248', 'to': '0x2f16ba1b52b65aff1a0a9d0234c27ce404006d66', 'value': 20.58372981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7ab04775', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x142484bd497aa45b8019d6dd94ce79e3f5fb732027fb74e5f14a06a845626215:log:41', 'hash': '0x142484bd497aa45b8019d6dd94ce79e3f5fb732027fb74e5f14a06a845626215', 'from': '0x0a6f8bcd9a26ec130053fcb12b1d1fec399ec194', 'to': '0xc5678e69034c3a913a8949aebcc354bc81db1b55', 'value': 4.97577866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1da86f8a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x729da6e024c46b62595c924665a288865dcb8a7823a78541a2ea4291f500886c:log:42', 'hash': '0x729da6e024c46b62595c924665a288865dcb8a7823a78541a2ea4291f500886c', 'from': '0xc160b52828a98c3d3b4608016e4fb75000667965', 'to': '0x7d88107cbe1d103f411dcc179502a4ebc432847f', 'value': 5.26141884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f5c49bc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x5da0e4055f160c51f31f767e6833a746b0da8211eddd91fa0654d1968cec8658:log:43', 'hash': '0x5da0e4055f160c51f31f767e6833a746b0da8211eddd91fa0654d1968cec8658', 'from': '0xade19583f06961aa27f60c0ff4343c0c3bc99f97', 'to': '0x9a4254d338a81bcae34bcce8ee66ade24877e949', 'value': 35.07042245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd10937c5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0xbf33a8ce73f598b9b793ef86843d4558331fb37fff9b0f5d03dc3277641edd59:log:44', 'hash': '0xbf33a8ce73f598b9b793ef86843d4558331fb37fff9b0f5d03dc3277641edd59', 'from': '0x06dc4d9d88899fb468c1d3c356ab9c83faf894cd', 'to': '0xa478a0dd432f083f6af9cc2ae8f97d3a2ff19c5c', 'value': 17.8143532, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6a2e8bb8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x294c3406db23e7e09c40ad003ac4ecc9d75e6c52b777f3074a08564258f6cdf0:log:45', 'hash': '0x294c3406db23e7e09c40ad003ac4ecc9d75e6c52b777f3074a08564258f6cdf0', 'from': '0xa1461ae6530dcf431628f60c2ce2e88905f10bf8', 'to': '0xe8b61308c048af8f3f20101fb45ff8b7f7c23e19', 'value': 13.63515755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5145996b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x36ca369331e977caa435dd2ac6f9570731419deb340570e922f3375dae2efd39:log:48', 'hash': '0x36ca369331e977caa435dd2ac6f9570731419deb340570e922f3375dae2efd39', 'from': '0xaab173d3443e828b6827aa8873a5f28356f0728f', 'to': '0x76a4ed046eba05f2148cfede2e1e5247c565b05a', 'value': 6.32519171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25b37a03', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x3dc46673ad7a4f47fda64cc2796206e36a831ef8874ecf588d7896f1b0304f69:log:49', 'hash': '0x3dc46673ad7a4f47fda64cc2796206e36a831ef8874ecf588d7896f1b0304f69', 'from': '0x613eee4054d987388aebd79f40137f584bec6548', 'to': '0x2a1b59bde34d423456d58dcc6087247b7b244bb6', 'value': 15.94674455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5f0ccd17', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0xc539aff3bfccf0ea312d3e40e68435780edadfae5e2710b26b8b3151a8911a1b:log:50', 'hash': '0xc539aff3bfccf0ea312d3e40e68435780edadfae5e2710b26b8b3151a8911a1b', 'from': '0x08efdf8114a6adbca814ebaf0684abc3404e8135', 'to': '0xeea511ba8d79feb1e053010175db00d1b63696ca', 'value': 15.38813684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5bb86ef4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x3a89090a0c1b6c2688ffb9a39a16908fb8a4929d040fb05983c95005a8b7f312:log:51', 'hash': '0x3a89090a0c1b6c2688ffb9a39a16908fb8a4929d040fb05983c95005a8b7f312', 'from': '0x81c8029428cdb344925929336df13fae7b344cf6', 'to': '0x15f03a6c33f43edb08ec02660d99696cddfb9d2e', 'value': 1.294912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x2d889693cd89c0002f46a406fc230d714416e97c6ba6c32fb22250d00aef746b:log:52', 'hash': '0x2d889693cd89c0002f46a406fc230d714416e97c6ba6c32fb22250d00aef746b', 'from': '0x800e4ea093b94caf29c4e2de801918c73665cb49', 'to': '0xe8a55ec403b590179a8e234dc5a2939d7ded5d47', 'value': 10.72279443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3fe9af93', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x695c50994c3ebdd52c7682a06bdb2f605ed14bb0376e72120315580469681232:log:53', 'hash': '0x695c50994c3ebdd52c7682a06bdb2f605ed14bb0376e72120315580469681232', 'from': '0x520c0a7ff300f81efa04fb2278583e92d24c820b', 'to': '0xb2712e18ecfcb00e93d1fbf5351d569e5576e53d', 'value': 24.17956504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x901f1698', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x85e2925d0c93de5c202c6c5d6698f27f533a165d099b12b97f48a786301f5f0b:log:54', 'hash': '0x85e2925d0c93de5c202c6c5d6698f27f533a165d099b12b97f48a786301f5f0b', 'from': '0x5bd41fad13a7d6fd344db2f77adf0d9b31e2956b', 'to': '0x34146f622ffcd97230af63e6510b368a06b9bd5d', 'value': 7.72640127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e0d8d7f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x9d330fd122fbce41e5be356711cfca68e6199b0b7555a705d07f22705666dc55:log:55', 'hash': '0x9d330fd122fbce41e5be356711cfca68e6199b0b7555a705d07f22705666dc55', 'from': '0x49998b8c9f0f4d4421770182d4ef4a54aa4228df', 'to': '0x7529779c7b809fe51dc0d5923e3b4a0ad2ac7ece', 'value': 6.21890315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25114b0b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0xd1fab08616879ca8f9bb8192e182ae2cdabb3616dd6f6a6df49cbf730940a5b7:log:56', 'hash': '0xd1fab08616879ca8f9bb8192e182ae2cdabb3616dd6f6a6df49cbf730940a5b7', 'from': '0xfea0a6eaa7d3875dd785b2b21292ff4789c89453', 'to': '0x6f07e45cc9e9549d99d4f4078e4d71c7e90b935f', 'value': 7.30463512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2b89fd18', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x5eb119789482b6f4174c9467d3c57dccd216630131c5e436d88d2d4e446ffe31:log:57', 'hash': '0x5eb119789482b6f4174c9467d3c57dccd216630131c5e436d88d2d4e446ffe31', 'from': '0x1b867bae90f9d03f3a014993157f285af100ddf2', 'to': '0x867ea1a19cf19ad63b521d91a0d79fda65cf26c2', 'value': 21.99723789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x831d1f0d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x35e7d6307766bae7abe7138f023cc8352b66897f60c198de2902c2576549ec17:log:58', 'hash': '0x35e7d6307766bae7abe7138f023cc8352b66897f60c198de2902c2576549ec17', 'from': '0x1ced897aac1735b0002e320b19e319c013e4f209', 'to': '0x191f11fb40d0a9701568c4c387135b3f2a5d117f', 'value': 6.2802862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x256ef4cc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0xecf4274606f80b9ccec8b5f68edfa6e2b40e306a566b4a617fa0d22921a5847b:log:59', 'hash': '0xecf4274606f80b9ccec8b5f68edfa6e2b40e306a566b4a617fa0d22921a5847b', 'from': '0xdc12d295a0bec22ba116f083618033dd177091cd', 'to': '0x17a9862ffa5f39de6b138b8f80c45f9ca4cb36e8', 'value': 11.86592889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x46b9f879', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x21be50cbc9e6037dbb39d92e2d2807279d48e5a8af643b155907a59f2cb32fe9:log:60', 'hash': '0x21be50cbc9e6037dbb39d92e2d2807279d48e5a8af643b155907a59f2cb32fe9', 'from': '0x759cad84148ac1507fce17158a38f5a5c1364a88', 'to': '0xfa86a22f0b04aeb1f07960f1386f7f8d42d539b9', 'value': 23.5348763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8c475f0e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x8fa81e519e8e607129ae06118099ccf8154ae76a75ff2008833080b5d4992f50:log:62', 'hash': '0x8fa81e519e8e607129ae06118099ccf8154ae76a75ff2008833080b5d4992f50', 'from': '0xe7b4d857d9ada583756d4a882f76044d0e6f5622', 'to': '0x6d4e75678496ecb95ee8174041a9bef2e82abb82', 'value': 4.99305294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dc2cb4e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687abd', 'uniqueId': '0x423a6ddc678ba00d96741a9abe6830d860da1df28a3bae5552052d9f2b85dccc:log:158', 'hash': '0x423a6ddc678ba00d96741a9abe6830d860da1df28a3bae5552052d9f2b85dccc', 'from': '0xdb8a31ed40a7c0a1c02a720f354c52cc0abed552', 'to': '0x5e63d9a464b5dc11211b0729764080f53f00ac22', 'value': 5.18360929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ee58f61', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:13.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x8893428d41e63493b7099a60996910462aa7169d08c0997ba188824d2201ff3d:log:137', 'hash': '0x8893428d41e63493b7099a60996910462aa7169d08c0997ba188824d2201ff3d', 'from': '0x8fc4488c8c9349af95a56eb0c9453ecc5bca816f', 'to': '0x3d314ec231c1c2ea56b5880d3ab084e1d4bfe87e', 'value': 6.55992352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2719a620', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x501da32f2451fbf2390d8e268fa20a21ab099eb37e9b71205dbefc97dc4f1447:log:138', 'hash': '0x501da32f2451fbf2390d8e268fa20a21ab099eb37e9b71205dbefc97dc4f1447', 'from': '0x4f20f684c9a2cd023e8efde497cff47436a1f8b3', 'to': '0x02b7c0723c4d23df0180c9910ed98810e66f811e', 'value': 11.56189617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x44ea0db1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xf85b964cb7ad4176708138009457f432ab2be578d1d88d8450bd5db458e09eb0:log:139', 'hash': '0xf85b964cb7ad4176708138009457f432ab2be578d1d88d8450bd5db458e09eb0', 'from': '0x1b53af706bfaa8acbf745b9074f0f68e92378016', 'to': '0x3c4ec1a09c520b70045156b37f863c7e745ef801', 'value': 5.23396814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f3266ce', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xcdb6e4ac4ecd89bbf8a674e05d7fec82fa8d1398a15b8fccebcc102109b72413:log:140', 'hash': '0xcdb6e4ac4ecd89bbf8a674e05d7fec82fa8d1398a15b8fccebcc102109b72413', 'from': '0x7bbfd2d44b8c0b4f0d6e6ec07000fe23e2443928', 'to': '0xff487100bdeae697d5888bffb569d6b2ad6cc0be', 'value': 7.90137838, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f188bee', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xc0e6595a71e987af21b8f76a85cec09aef5acb4bc6fe24d664b75469168479a3:log:141', 'hash': '0xc0e6595a71e987af21b8f76a85cec09aef5acb4bc6fe24d664b75469168479a3', 'from': '0xbaaaec82829eae7207630a88c66fc8bef19b06a9', 'to': '0xab65398c2928e3946261327537767809ed440cf2', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x8b5db7991137a72f58607a4c2c4c6ab24a7cac14943c591a4408f46aebfb1bdc:log:142', 'hash': '0x8b5db7991137a72f58607a4c2c4c6ab24a7cac14943c591a4408f46aebfb1bdc', 'from': '0xd1be8d24c0d3ac90692348813837227bda570763', 'to': '0x4aa2c454c27ac594173ba4f004e802c89548c0d2', 'value': 15.57710854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5cd8c806', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x4458e01f389c3a72c39cb0a29f96631a5f11110644a07b771bd4b4d677f56589:log:143', 'hash': '0x4458e01f389c3a72c39cb0a29f96631a5f11110644a07b771bd4b4d677f56589', 'from': '0x9c80c5c7ab36fe9a5f79081b0c6091e2e6995b0c', 'to': '0xfd884e863de2937687fac0f0ffbb36a7650d2731', 'value': 5.336067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1fce312c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x766a260b9137131bd145cfc16f981b8b4f49ba1678c8e4b7db8fda1c230375cb:log:144', 'hash': '0x766a260b9137131bd145cfc16f981b8b4f49ba1678c8e4b7db8fda1c230375cb', 'from': '0x2b66676e4acac7374d5908f535769c74b5d01fcb', 'to': '0x6f38f7288702a023cc8ba6a0ad46700c91d8b992', 'value': 6.05619553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x24190561', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x38251451ff4972d7906beaf2ea5ae2320f73d0a04d30dae29fafe502cbfdee9a:log:145', 'hash': '0x38251451ff4972d7906beaf2ea5ae2320f73d0a04d30dae29fafe502cbfdee9a', 'from': '0xac429bb4b94c1930802ef74d9b501cdec675de47', 'to': '0x3dc6170e83719b853cd153b9091a915dc9bacce0', 'value': 13.89802985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x52d6b5e9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x5c4f9e08aac134f86d282aba113c71b72978fd47562473ec3ef3bf22a43ec37a:log:146', 'hash': '0x5c4f9e08aac134f86d282aba113c71b72978fd47562473ec3ef3bf22a43ec37a', 'from': '0xc6aa901575dd20483f16d23bdc0dc34c98b95eba', 'to': '0xd0a7fadfc266df8e37e347ed0cb7b39415b923dd', 'value': 6.42458483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x264b2373', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x7059247c52c35523003f3d0393c3849f4a3c64a8f74eac713f685762d641efc1:log:147', 'hash': '0x7059247c52c35523003f3d0393c3849f4a3c64a8f74eac713f685762d641efc1', 'from': '0x96c8673f78f16b5fef22bf6baa4e1fae2c67086e', 'to': '0xbec77fcf6fab3f55350da7095fc69232c576d12e', 'value': 5.26641557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f63e995', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x4323207cfdf55d8c2f921e687547751fff96b3f9e1f13628d36ef52a91491f6c:log:148', 'hash': '0x4323207cfdf55d8c2f921e687547751fff96b3f9e1f13628d36ef52a91491f6c', 'from': '0x3371df8ef69e9c955b9aeef4574682fbfc779153', 'to': '0xa9fb1b59dfa40307aad80513475f1747f9416972', 'value': 11.02629963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x41b8cc4b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x45e12ee230ad5a3b060b43ba9420b930576c7f013513e7e843c685d2e6400e40:log:149', 'hash': '0x45e12ee230ad5a3b060b43ba9420b930576c7f013513e7e843c685d2e6400e40', 'from': '0xf32eb7391a6781d6bbfbb2a85ec925958f35b9e0', 'to': '0x3ea1de92cfdfdfaff8f461acbb8ef811f5517a8f', 'value': 10.11333422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3c47b92e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xad9aded75ddb3f4dc3329539bfe8d6f67627bb463d5ce0b87f31ce6970378d2c:log:150', 'hash': '0xad9aded75ddb3f4dc3329539bfe8d6f67627bb463d5ce0b87f31ce6970378d2c', 'from': '0xa3fd36ae7754a8db374fe4a46d8ce65f93dfd0d5', 'to': '0xa63bca44e93aafc0c014f4f2afd1b723e9eb7180', 'value': 10.19941922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3ccb1422', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xdd3197613090ef72c80770c22a12f244dc56a9c0476197e8f15a7bed0bcf0761:log:151', 'hash': '0xdd3197613090ef72c80770c22a12f244dc56a9c0476197e8f15a7bed0bcf0761', 'from': '0xac46916e389e16e6e5e7dfd23068820e790b7af8', 'to': '0xdc653767dbe60bb5298995b501dbee942f0b6c77', 'value': 10.55028158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3ee273be', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xc8819cfe69da924ab30285dcba57b157b4a6a7e6638a34419065ff46fe858e74:log:152', 'hash': '0xc8819cfe69da924ab30285dcba57b157b4a6a7e6638a34419065ff46fe858e74', 'from': '0x3b5e2931fba79749edbafae637e25cf4a385b6db', 'to': '0xca760e435a5e1981a7b9848ce2a48b3d09fca944', 'value': 16.42746881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x61ea5401', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x7caca73b6483fe3cff8379ef115b2418d6ef4eb2f1d482d0b2384559e3a257de:log:153', 'hash': '0x7caca73b6483fe3cff8379ef115b2418d6ef4eb2f1d482d0b2384559e3a257de', 'from': '0x64ace2f2500c7eb41dc1b3c4a17b9dac885e5b2a', 'to': '0x8feaf830d6cacc4a5b7a7deb20e989dea5458cc4', 'value': 6.9659951, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x298543d6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x5ae3617a2b5697158b35aa3bc0e9a887dc95a6d0aa2c2ebc2e827626e2f29147:log:154', 'hash': '0x5ae3617a2b5697158b35aa3bc0e9a887dc95a6d0aa2c2ebc2e827626e2f29147', 'from': '0x5266685111e830efae827ef0a15337baa36fd267', 'to': '0xd3fcab6426f7e4666f1a860b90ead6a4e3c8f637', 'value': 6.40213124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2628e084', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x889ebc11ce03f8a782c780e4eac4bfadf533098f590b2f955d09d00c298521f1:log:155', 'hash': '0x889ebc11ce03f8a782c780e4eac4bfadf533098f590b2f955d09d00c298521f1', 'from': '0xbd47d928fb6675ffdb2047349df689a117d534b4', 'to': '0x35a2378fdb18265930e96172a842666db564f4ed', 'value': 25.03320051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9535a1f3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x448050bf9b44b7ee324e18f1ae0f02fc6b1da15ef089682ff94ce8021ec10716:log:156', 'hash': '0x448050bf9b44b7ee324e18f1ae0f02fc6b1da15ef089682ff94ce8021ec10716', 'from': '0x385941d0fdd977bd1645d4d621b74b4dc06bf3aa', 'to': '0xaa8d4c45f9619e0db7aa10abfcb5e5110d5dfe29', 'value': 5.9228693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x234d94d2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x53063939b9a073537ad38e4d6fc8f1422961df0276547b854be65dded199c91c:log:157', 'hash': '0x53063939b9a073537ad38e4d6fc8f1422961df0276547b854be65dded199c91c', 'from': '0x013c0d3a7ed61f9d69a08eb368afe0c434140825', 'to': '0xe0f285893fa2f85dd521e6221b121a20237f1fce', 'value': 13.00595177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4d8581e9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xba8a39b363d9fa4333c906ba5c073b6e2c488c8b336cdcfe057bc9c16673d6d8:log:158', 'hash': '0xba8a39b363d9fa4333c906ba5c073b6e2c488c8b336cdcfe057bc9c16673d6d8', 'from': '0x91c8f4863cc79a3eda43de129afd4a4408ac2c53', 'to': '0x96014f44dd26f634430d8567fedceeae7fce53b1', 'value': 11.66614257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x45891ef1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xf051798785bd6f7bf75dcbeb8304b629bcc87d8e313fb022588a834a8ca28d6b:log:159', 'hash': '0xf051798785bd6f7bf75dcbeb8304b629bcc87d8e313fb022588a834a8ca28d6b', 'from': '0x4423e3b007aebf606f426e085f5148fe84be0a46', 'to': '0x6e1f7e45ab8831d71f0cd9b58755da21e7b67286', 'value': 9.47729439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x387d341f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x41d6ba31f4aef84fb6c070e4e49f9a084d9b50c780cc756c42a7678b98f52b19:log:160', 'hash': '0x41d6ba31f4aef84fb6c070e4e49f9a084d9b50c780cc756c42a7678b98f52b19', 'from': '0x4cf4e033bf79a2f84173ab6145db78f368cfc2c1', 'to': '0xbc7c2df81e39b8aeb4998a5e9d243b09a983c83c', 'value': 3.4126106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14573b04', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x086c5c4c4a40c2c5fa45a64edcbab66cb6f39fa53f2a79c0f28f30016358d619:log:161', 'hash': '0x086c5c4c4a40c2c5fa45a64edcbab66cb6f39fa53f2a79c0f28f30016358d619', 'from': '0x5aa0e7623082370075e8a686848260e5eb4d70c6', 'to': '0xbd538e3cc49f9e6111c3c111d03f3005ec93924b', 'value': 7.81423368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e939308', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xeac72a2f362cc2ad3c78a936da188b3f5d199e1c583c4203b8f028319f36ed3d:log:162', 'hash': '0xeac72a2f362cc2ad3c78a936da188b3f5d199e1c583c4203b8f028319f36ed3d', 'from': '0x22e876d42c3aec029c9a334d6d24a3c79f230dff', 'to': '0xc8d8d8e91089dfcc9fa6d710eb13fa2945e3ea2e', 'value': 5.91715646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2344dd3e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xfd8a732b3b92b19b15b4d1f156e7f46ea3e30e5c91b0291ba5cb6363d00e2458:log:163', 'hash': '0xfd8a732b3b92b19b15b4d1f156e7f46ea3e30e5c91b0291ba5cb6363d00e2458', 'from': '0x32223bc835595dbe0fe9548564b2f286f85177b1', 'to': '0x9114a4f32738509681138583f45adb23516f20c6', 'value': 8.0148028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2fc59e58', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xa911b72670816503dd56f30e010bd352395e215ccea8c3ab2396ac2148c74240:log:164', 'hash': '0xa911b72670816503dd56f30e010bd352395e215ccea8c3ab2396ac2148c74240', 'from': '0xe3928ddd207384c01399de96ffcbb41675f0a62a', 'to': '0xb8e7f2f67448a73ef028fc6daa172f2cce12e2fe', 'value': 4.66024452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1bc6f804', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xe8367cfcfe70067135ab41475b038dd042114eb0ceb4e52407a5ad1e6f2b0950:log:165', 'hash': '0xe8367cfcfe70067135ab41475b038dd042114eb0ceb4e52407a5ad1e6f2b0950', 'from': '0xe944a9846a1c251b3386989114c62f834e1e282e', 'to': '0xbd00ac7a5c53c01c25ed004de378571fe3a2b580', 'value': 5.00681419, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dd7cacb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xd86168ac0c06bd02785dc524a1b55f09de37df01e309b009e433a2f22b05dcd3:log:166', 'hash': '0xd86168ac0c06bd02785dc524a1b55f09de37df01e309b009e433a2f22b05dcd3', 'from': '0xc3a15c498e641b04ef692484ab15a3b91dffd6f4', 'to': '0x11d3a8ab600c3c20adade13b16225c0d0127b6bd', 'value': 7.80991191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e8cfad7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x6f17be23df342397dc4b5856f15ac29885e47c40ea8400df5872181b0bc530cd:log:205', 'hash': '0x6f17be23df342397dc4b5856f15ac29885e47c40ea8400df5872181b0bc530cd', 'from': '0x30592f1361c86326cc7d83b93faa08d002c4604b', 'to': '0x31c3655b115227c735adc53be705faed10994d92', 'value': 5.97499498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x239d1e6a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0xeece0697e21e545014b34a4c975a038c5774d3e2b67c331b50840c976a5621a3:log:206', 'hash': '0xeece0697e21e545014b34a4c975a038c5774d3e2b67c331b50840c976a5621a3', 'from': '0xd148ed767dbded027ca1cdb4131ff877f2714157', 'to': '0x2b714ec81bf8cb1ff06d19139b63395a13c67591', 'value': 12.85510693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4c9f5625', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0xbfe1c694c8f8b561b7a0da9f378c7a97539f30d661eba20c447a5a64c5eda30f:log:207', 'hash': '0xbfe1c694c8f8b561b7a0da9f378c7a97539f30d661eba20c447a5a64c5eda30f', 'from': '0x23282cb0e83d2262b87d0c13d3f325dc9ea29694', 'to': '0x5d19606658a5e5ef5c9539326ad9275f6f696e9f', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x76e28cd3aa36697684b6c1be0c257a7e1038175a7e41af4a6a4a0ce9d17a7afd:log:208', 'hash': '0x76e28cd3aa36697684b6c1be0c257a7e1038175a7e41af4a6a4a0ce9d17a7afd', 'from': '0x7f78d7cded74362ae4694e749c40310b94a56a57', 'to': '0xfb91c8a87cc307bfba1f13b8cf7a5ef4f8545d48', 'value': 3.5935976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x156b6510', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x072187b2994ca5b8df9e22f410a6d25ac7675dfdd7efdd8330a64f7f9ab18899:log:209', 'hash': '0x072187b2994ca5b8df9e22f410a6d25ac7675dfdd7efdd8330a64f7f9ab18899', 'from': '0x41d481d7d677bdb2183db6f0edd79c49df00a189', 'to': '0x364c30055af202555c86f3b44e6380728c2274d5', 'value': 28.50634153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa9e939a9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x5976f9f31fa1efdb9f6ca1c7e14fddb1082c7b5b8767b06a0e61c613aa1b0c8c:log:210', 'hash': '0x5976f9f31fa1efdb9f6ca1c7e14fddb1082c7b5b8767b06a0e61c613aa1b0c8c', 'from': '0x26fae5945fd2623b1cfd3567eb4c4770837bcaa6', 'to': '0x0d75ba1959ea7f9413e43e98f2f4224e26aceb07', 'value': 6.02991506, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23f0eb92', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x8023350c1bd44a6b0aa7b76093d4224c41ce3d1b83b13dd6d69c4d914f7b070c:log:211', 'hash': '0x8023350c1bd44a6b0aa7b76093d4224c41ce3d1b83b13dd6d69c4d914f7b070c', 'from': '0x881fad600971e3289533a16f41302f9e46ef8646', 'to': '0x35091b919a8389e907b15cc6da1c7f731a2f7a30', 'value': 4.83705779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1cd4c3b3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x2b66c7e7d01a5da0222de252437422eb58f2d25b40c10e0ae71a6e2b43978eb6:log:212', 'hash': '0x2b66c7e7d01a5da0222de252437422eb58f2d25b40c10e0ae71a6e2b43978eb6', 'from': '0x8595e942c1fee31e38488191a37d4305ff633358', 'to': '0xe709a4af7eb9e8315046016dd1d3e3088168d95c', 'value': 6.2355828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x252abe88', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x26770e1151232438f917f29f873e8112ae190318c1e692302905b117a4f904c6:log:214', 'hash': '0x26770e1151232438f917f29f873e8112ae190318c1e692302905b117a4f904c6', 'from': '0xaab6c2a0448aaab53aa17055cb8d492a4579c0f3', 'to': '0x37927410e10c8283cfd686c5505d8223ba83043d', 'value': 10.20723757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3cd7022d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x2966938de057bd82121d705cf48b2527710151a78074483cc3cde5d49ef2d2b8:log:215', 'hash': '0x2966938de057bd82121d705cf48b2527710151a78074483cc3cde5d49ef2d2b8', 'from': '0xe91ffea7a25599d2cf7763173f1b20a9291725f7', 'to': '0x297e27c45600478470904c5fdf6616e304f53acf', 'value': 3.10004538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x127a4b3a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x70529deea8d0ba076eaafc5ecc0ed7df5630eef09c4275058bd4e3125a424f8a:log:216', 'hash': '0x70529deea8d0ba076eaafc5ecc0ed7df5630eef09c4275058bd4e3125a424f8a', 'from': '0xc948ffe78422ae3a6b6220de0eca946f7fd980ca', 'to': '0x0a3179087f181bab4f6db57ca76dba4bdd83060c', 'value': 5.35102351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1fe5038f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x9e1ddfe7422d504aedf726805abf164335728429297b1b4fe9aeb05e295371d4:log:217', 'hash': '0x9e1ddfe7422d504aedf726805abf164335728429297b1b4fe9aeb05e295371d4', 'from': '0x1a0004e42c68f49c2bf8830828b9777f2a36df79', 'to': '0x96f9d782267ded30ccaa4338b57ec07f0afae681', 'value': 45.56458464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010f9609e0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x3a45144405dd4dffb33610d3d0752bfa1913f9f7a452d279b2411fe47d6836c9:log:218', 'hash': '0x3a45144405dd4dffb33610d3d0752bfa1913f9f7a452d279b2411fe47d6836c9', 'from': '0x259ca447a14cb608351e041b00f573463ae3ccae', 'to': '0xff8ca1e93239bdf889e84e3f596e5d78a3e2ac47', 'value': 6.04881355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x240dc1cb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x4a78408233f2c16a6d0b5e77b7441981dc1b52d52a696ea8d20c8eb4219c0e8f:log:219', 'hash': '0x4a78408233f2c16a6d0b5e77b7441981dc1b52d52a696ea8d20c8eb4219c0e8f', 'from': '0x3d3633b966041abfe86c3caf69ffa554e7d7277e', 'to': '0x2eb9c92fdec6431489e38e35d10fc88c035b0801', 'value': 13.92989672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x530755e8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x2a8304d2dfab72f5f5ebd36cdac7b46567ea47bb3e9afde4d9705184a1c880fd:log:220', 'hash': '0x2a8304d2dfab72f5f5ebd36cdac7b46567ea47bb3e9afde4d9705184a1c880fd', 'from': '0x368e5f8d715693a8ccd1af98e8c4e6468bd32728', 'to': '0x2140de820e6d80143dcb4d70d73db58be992ddb0', 'value': 4.84033268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1cd9c2f4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687ac2', 'uniqueId': '0x567561b8a051da2908702eade1a620ac272aff6f6816126623757bfa8ea7d4ba:log:79', 'hash': '0x567561b8a051da2908702eade1a620ac272aff6f6816126623757bfa8ea7d4ba', 'from': '0x3c21a6b86ed5425af19fd0283c349b65d2968538', 'to': '0x67ec2f3554442d632bb29182aa8c7c73eea12ccd', 'value': 19.4915718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x742dc73c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:02.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x1b4188c0fc2e7454ba0e232032f2d59e57ca753e766684b9582b1337cf37796c:log:118', 'hash': '0x1b4188c0fc2e7454ba0e232032f2d59e57ca753e766684b9582b1337cf37796c', 'from': '0x2889d633a689915ebc5fa81f65b955c87b0e2b8d', 'to': '0x8de76bc2a82ff3b88947baa8aba915162853f86c', 'value': 14.67888106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x577e31ea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x690d5b3f58fb92796db44ff464d440373674d1928066fb13c1190d1b62308b0a:log:119', 'hash': '0x690d5b3f58fb92796db44ff464d440373674d1928066fb13c1190d1b62308b0a', 'from': '0x1f2b324323ce1f0b95b1039c680a63a058acc2b4', 'to': '0x5ed222d6c87febf8374a146e9f369f2c937e08cc', 'value': 5.86530463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22f5be9f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x616cf07e45d80be4108e9343b15c43bf7d6d28c83e6dbe2b7cd89338458a5e8f:log:120', 'hash': '0x616cf07e45d80be4108e9343b15c43bf7d6d28c83e6dbe2b7cd89338458a5e8f', 'from': '0xfd2cdd60f1d4037c0afaa44fac9c44149560565d', 'to': '0xc041504b327c0edbed293b02e2af5513ab9a0c19', 'value': 11.96148882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x474bc892', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0xaed242fa05626a740272672aeabc8654b562ab492170a37a160e94092dc17eda:log:121', 'hash': '0xaed242fa05626a740272672aeabc8654b562ab492170a37a160e94092dc17eda', 'from': '0x46bf7331351fc4d6fb84453df87880ee6e0d3e55', 'to': '0x63402435b9013fba6faeed8543cb5ab7d85f203a', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x086aae5e85b8955c39abdd4dfd535b16439a2766a6019084a7282a92b8ddfaeb:log:124', 'hash': '0x086aae5e85b8955c39abdd4dfd535b16439a2766a6019084a7282a92b8ddfaeb', 'from': '0x8e33f7fe228854df5eee97f0e2f44c147378b8d0', 'to': '0xe7f8998a85a754b86cabf967eb902ffaf73118c6', 'value': 3.37500725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x141dda35', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x5d6ff657378af08664a08b9b32ea82e68222af6862c55443138c9b6fa0758442:log:125', 'hash': '0x5d6ff657378af08664a08b9b32ea82e68222af6862c55443138c9b6fa0758442', 'from': '0xae7539ed912c5d74ce4936b0c814bb2a0bb67404', 'to': '0xce2033122e5ab0b4299b87aadf2b782a41286002', 'value': 3.5697396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1546fd88', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x90b9d49772adf5e23d2707457d19cc1a6d79757b197f1b1c72db48d7a0e5a8c5:log:131', 'hash': '0x90b9d49772adf5e23d2707457d19cc1a6d79757b197f1b1c72db48d7a0e5a8c5', 'from': '0x6f717b5f58ec9411cf2adc54d0f19848198f09db', 'to': '0x16e22c15f547264a34f5fa7ecabb2605f0cbff81', 'value': 12.85842076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4ca4649c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x22369fe6e691e441282005c0b3a7e7f1094cf668b4c6d8d93e145c7b4116d62a:log:132', 'hash': '0x22369fe6e691e441282005c0b3a7e7f1094cf668b4c6d8d93e145c7b4116d62a', 'from': '0x3a0fefd98ced05242b9ba37ea13e7c615f5aadd9', 'to': '0x7dcbf7d0160a563189ac6e777728d654b1bd59bf', 'value': 6.44089017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x266404b9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x345b26770ef87d3e7af884b318b36506a5ddebce6797411218f011f41e07a9b1:log:133', 'hash': '0x345b26770ef87d3e7af884b318b36506a5ddebce6797411218f011f41e07a9b1', 'from': '0xca85e8df7828c6406c64ac976a4af3cde73dd9a2', 'to': '0x81bc173de842eb942812e3166be82e7e1faaf20d', 'value': 10.78378906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4046c19a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0xdf2f782bba956ea82b9b2d2864023cebf01df395178e79180c90942ddcc396c8:log:134', 'hash': '0xdf2f782bba956ea82b9b2d2864023cebf01df395178e79180c90942ddcc396c8', 'from': '0xc7a7f167e2584aa55dd83c9b8e936cca78a1360c', 'to': '0x5236300268c310fdbd0b71946d6b474cfdd0dff9', 'value': 6.52010495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26dce3ff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0xd6faf13ebb2f7e205b1c6bd0221d6b458c819bbe4de5394155d4348070099948:log:135', 'hash': '0xd6faf13ebb2f7e205b1c6bd0221d6b458c819bbe4de5394155d4348070099948', 'from': '0x27f98c073ec8a776a0e0a560aa5202adfff5a8a4', 'to': '0xe72f41acf1187da04473a9d10b4ee26af23e06ea', 'value': 8.38424925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x31f9595d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x2431d9e66d8cf93b7dafb713177e85e88eb66ff81e687b0fd1f3341e58b528b5:log:136', 'hash': '0x2431d9e66d8cf93b7dafb713177e85e88eb66ff81e687b0fd1f3341e58b528b5', 'from': '0x9b6d3b2917c3508d5f6ab3084fa2e0411152e137', 'to': '0x15c3a5fe1bc3bc7bb26bc2dbf1132a9c32551f4e', 'value': 5.16514996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ec964b4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0xf70651e28a267589b0b3ede2929c7b2b09be615306a890e3d39bf10b46b8ff55:log:137', 'hash': '0xf70651e28a267589b0b3ede2929c7b2b09be615306a890e3d39bf10b46b8ff55', 'from': '0x3d9713794b846648c78d71375ae1b1b4478a9cc2', 'to': '0x951f34e99a427ea014b314158617fcdfd57df97b', 'value': 6.54924195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x270959a3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0xbb946a4a989d621b4ccbf89233c21933181548566a20604648a58f2cb781980b:log:138', 'hash': '0xbb946a4a989d621b4ccbf89233c21933181548566a20604648a58f2cb781980b', 'from': '0x579985c19069ebfae4ea22b358397bfb71725854', 'to': '0x0e2ad4babcb5a89e621439e28e11ed8d355663ab', 'value': 5.08726856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e528e48', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x1fc18e333c3c885c61715b5d16226384bfb52b7687776b3a2dbe95823399b980:log:139', 'hash': '0x1fc18e333c3c885c61715b5d16226384bfb52b7687776b3a2dbe95823399b980', 'from': '0x70e042ba1e472124547d43e8e8387670ce751420', 'to': '0xc582230335fcaec62d52935bd0474dd50d3735e4', 'value': 14.31299967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x554fe77f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x66745968ce92df52aaf53afa8ce4b748022a0d1c56a09848bca0f29db846c5e6:log:140', 'hash': '0x66745968ce92df52aaf53afa8ce4b748022a0d1c56a09848bca0f29db846c5e6', 'from': '0x0bae2bb9484794fee2e8748600cae2a3fbc9e889', 'to': '0x4db5c215735400da54046c847af6245f20458445', 'value': 9.94333824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b445480', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x9993459ba48baedaf2a8a6caa57e031ee5590d62caf47a7fd528cbbe37d37355:log:141', 'hash': '0x9993459ba48baedaf2a8a6caa57e031ee5590d62caf47a7fd528cbbe37d37355', 'from': '0x1f3b0e24e1a9acea8758eb7e5d6bc3baa9549f1e', 'to': '0x913c5ac337784021efde37876e80c8fd36971b07', 'value': 16.91844724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x64d78074', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x3352a38c6e1c5a9dc429bbb48979bd993432af97777f35b3e7eb2d540f09217e:log:142', 'hash': '0x3352a38c6e1c5a9dc429bbb48979bd993432af97777f35b3e7eb2d540f09217e', 'from': '0xb132a68e3fc859a5ca26788eea53b74be6c8b975', 'to': '0xdc4a76469f7a5dd2250c659ee1c37554c41ec036', 'value': 10.73265281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3ff8ba81', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x19fa4618827e6ede9865a594e38757862af21646a7d6fa9842137e3302eb34df:log:143', 'hash': '0x19fa4618827e6ede9865a594e38757862af21646a7d6fa9842137e3302eb34df', 'from': '0x740cd832dd20ae19e9856e5fb67c155999244cd0', 'to': '0x08a89bb063d092aaa84428eac0817851d7452942', 'value': 10.97735088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x416e1bb0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x989744a5af2077f307b43396e055a860df87134f10ecbc17364868eba8bd574e:log:144', 'hash': '0x989744a5af2077f307b43396e055a860df87134f10ecbc17364868eba8bd574e', 'from': '0x7b56bc8772ebf895cddc0827512faab641a69850', 'to': '0x2253db577e1457223432a4a527e70d0e3dedaf51', 'value': 2.10640486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c8e1e66', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0xb33aee56a902bafccc86c91449cddcce80c40ed208a3c06e14aa8c7d379e7c19:log:145', 'hash': '0xb33aee56a902bafccc86c91449cddcce80c40ed208a3c06e14aa8c7d379e7c19', 'from': '0xd314ece92a89bb0d8508819562793939b7415dfa', 'to': '0x60b6a25907b4567f481e0ae1f5732396c70f92b2', 'value': 10.99785334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x418d6476', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ad1', 'uniqueId': '0xf7df9e98defc8937cc8fb65a6f16e6afd47f5f3a98b357ba673aa72797b47801:log:138', 'hash': '0xf7df9e98defc8937cc8fb65a6f16e6afd47f5f3a98b357ba673aa72797b47801', 'from': '0x6ee688cc60d912598c26b9f2521740c6e9f62871', 'to': '0x531c873663e42aae9ea06c7bcc743d1717d0d5b6', 'value': 17.13526615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x66225757', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:45:55.000Z'}}, {'blockNum': '0x687ad1', 'uniqueId': '0xd1dca73383a32af7289c5093d1a5abcefeec0cb197f263c2afc1de293b514e6b:log:139', 'hash': '0xd1dca73383a32af7289c5093d1a5abcefeec0cb197f263c2afc1de293b514e6b', 'from': '0x5df8fffeae430235d3922d541870b02275ac95e7', 'to': '0xae6a04c3e89cbbf0b986842643fcca117955e9bc', 'value': 6.48333909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26a4ca55', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:45:55.000Z'}}, {'blockNum': '0x687ad1', 'uniqueId': '0x9cc0bee2206de1dbc57b46808c3c4bffb0dce985b5195bec7ace7214330f6b20:log:140', 'hash': '0x9cc0bee2206de1dbc57b46808c3c4bffb0dce985b5195bec7ace7214330f6b20', 'from': '0xc57983613fe66db3c90b12eb46ad231333dbf34b', 'to': '0xc6a5b96ab8852c9d457a45f92237d6ca46d389fd', 'value': 17.01719402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x656e2d6a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:45:55.000Z'}}, {'blockNum': '0x687ad1', 'uniqueId': '0xc47ebe232f657350dfde29d1774064f717c5b47a91c8c54087c40a7cee3da01f:log:141', 'hash': '0xc47ebe232f657350dfde29d1774064f717c5b47a91c8c54087c40a7cee3da01f', 'from': '0xf1cba760476bf80d72f12c5f714a57f73b0ca918', 'to': '0x03bce07a2dcb1cd5681011c6aa7aeadd2eaee36a', 'value': 12.93612068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4d1af424', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:45:55.000Z'}}, {'blockNum': '0x687ad1', 'uniqueId': '0x0ca77d2acc942f37b2182892dbfcf0a589c1da0edb6be3f8cac4627f584f4697:log:142', 'hash': '0x0ca77d2acc942f37b2182892dbfcf0a589c1da0edb6be3f8cac4627f584f4697', 'from': '0x0330f1a7d4e178b9974abb25c0334a4b372c7c5d', 'to': '0x1b1d86e56c2a997e5cea7fa365bc8e64a69c487a', 'value': 6.48048016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26a06d90', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:45:55.000Z'}}, {'blockNum': '0x687ad1', 'uniqueId': '0xa7085f3e84c09dd56f9f54c63fbab94ef4f8480aec4fadc98210d6fecc919794:log:143', 'hash': '0xa7085f3e84c09dd56f9f54c63fbab94ef4f8480aec4fadc98210d6fecc919794', 'from': '0xe4ffc780f61c756f6de77769c4d31c47b198f7bf', 'to': '0x2a124b1e477146ea57e0f9234843bb442b793982', 'value': 5.05292668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e1e277c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:45:55.000Z'}}, {'blockNum': '0x687ad1', 'uniqueId': '0xcadc1e498f1d1416261602ab67633f816b3f50e140c156f7bddbc83bb7f01040:log:144', 'hash': '0xcadc1e498f1d1416261602ab67633f816b3f50e140c156f7bddbc83bb7f01040', 'from': '0xbdea062924cc84135b32704598de62465a41185c', 'to': '0xbf01c97965be71dd599eee2669e846ec77235ce2', 'value': 16.87522386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x64958c52', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:45:55.000Z'}}, {'blockNum': '0x687ad1', 'uniqueId': '0xfb2a1ed0c2c64c7ebddb92d2b6dde653ceebcc62f7b804dc60350fbac885bfe1:log:145', 'hash': '0xfb2a1ed0c2c64c7ebddb92d2b6dde653ceebcc62f7b804dc60350fbac885bfe1', 'from': '0xa352b21e95c97022fabeb594d83794417b22d72e', 'to': '0x72fd513cb642c930e3b713c16a09e2b4659b6f87', 'value': 7.9134862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f2b058c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:45:55.000Z'}}, {'blockNum': '0x687adf', 'uniqueId': '0xbbc216cca23acf4a8c18e0cf32538fe1705183e60f51bf8b1298c360d53259a0:log:166', 'hash': '0xbbc216cca23acf4a8c18e0cf32538fe1705183e60f51bf8b1298c360d53259a0', 'from': '0x4034e228edf9c4ad4ba5c71302307a9ee13aa7af', 'to': '0x5d5dc857b519c8e58d039055653f374caff240eb', 'value': 3.41996896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14627560', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:36.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0x8a1470507aef38a4f90e1e31bba5d962dc7a217bd893941a81f1b77915c9ad3e:log:165', 'hash': '0x8a1470507aef38a4f90e1e31bba5d962dc7a217bd893941a81f1b77915c9ad3e', 'from': '0x9e6254aa7e76676b7749bffe323c0e54815d529f', 'to': '0xc0f90ec4d10cf0fa06c598b94e1f262a22d21744', 'value': 20.7305629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7b905422', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0x4e7a12d9d1ba9e2d3abea39797a9ffcbcf8d2f3d524ca5dfad556fd9503b325b:log:166', 'hash': '0x4e7a12d9d1ba9e2d3abea39797a9ffcbcf8d2f3d524ca5dfad556fd9503b325b', 'from': '0xe1b66394e2651465a11a9032fc3943b3977937c9', 'to': '0xae1ca356e66819afc5cd50196af9a848a3b41353', 'value': 5.09848278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e63aad6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0xb3404bc87cf5cd97621edf4c6db5945f2698002c4e92a9542e239d653ea4c3ca:log:167', 'hash': '0xb3404bc87cf5cd97621edf4c6db5945f2698002c4e92a9542e239d653ea4c3ca', 'from': '0x2d8f467cb65da6401907baafda3e975853efb4f9', 'to': '0x74ee567938af86cdf26d6fe38adea55a5409bf98', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0x707019aa2da0ed5e7d7a4d024b41558f4072360bddc93f92b4c3dd693a1924fd:log:168', 'hash': '0x707019aa2da0ed5e7d7a4d024b41558f4072360bddc93f92b4c3dd693a1924fd', 'from': '0x55ce915e2c885d6ab380179bd17cf12e13f89eec', 'to': '0xeac338cde4e8e3b70f10c2ef2e53b3091cb955b6', 'value': 21.23257868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7e8e580c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0xa6283f05fa89dcd1856a935e4e37143a9d71480778861acd5b7a5897ba820c9d:log:169', 'hash': '0xa6283f05fa89dcd1856a935e4e37143a9d71480778861acd5b7a5897ba820c9d', 'from': '0x9628b6a505ebee93ad2c6007d6aa113d16696ae0', 'to': '0xf508201228d4dab23090604fcceb4dedbdb8076f', 'value': 5.15852466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ebf48b2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0x011df57b5d806465e6378c9ac6e4fa6b66d962e5d48aa2782ba388480e08e05c:log:170', 'hash': '0x011df57b5d806465e6378c9ac6e4fa6b66d962e5d48aa2782ba388480e08e05c', 'from': '0x96b88b12e8f3ea4fb04e5a4597d7a8f80bb703e3', 'to': '0xab3ad2967ff39d827191c902ca32813d12efcf8c', 'value': 29.58118309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb0514da5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0x28edad4fc169a5f2be6dbcd42afe3f5961d96525f3e5cab39907214e722c4097:log:171', 'hash': '0x28edad4fc169a5f2be6dbcd42afe3f5961d96525f3e5cab39907214e722c4097', 'from': '0xbb173fc85d3f0eb7c23a1719324d6108414007a8', 'to': '0x193df884f13a358fc66d35608eff40e991d44ae7', 'value': 16.4206326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x61dfe59c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0x89f58222e1dc1355070bad63cfa991a8e632dd8083521100ec82978ba38bb858:log:172', 'hash': '0x89f58222e1dc1355070bad63cfa991a8e632dd8083521100ec82978ba38bb858', 'from': '0x095e18fdb045c88e37c7dfa60b7e07592f169cdb', 'to': '0x3e1bcad7b63c64ea482f4ca32ca5bedf69d8a29e', 'value': 10.88177719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x40dc4637', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0xced74339013603541452bd099c6bdc78131864238e2e4c7e8fa74e1ab12b25d7:log:173', 'hash': '0xced74339013603541452bd099c6bdc78131864238e2e4c7e8fa74e1ab12b25d7', 'from': '0xd0ead735d1b6f18cf0a986e30efb5146f443501a', 'to': '0x6a69151bd899b0a7b8a67f81c9666fdc1342b929', 'value': 6.31765568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25a7fa40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0x12bdec5879cbc39a7ab5df7685d6321300271540b4b7b062a1e0fdce330ba639:log:174', 'hash': '0x12bdec5879cbc39a7ab5df7685d6321300271540b4b7b062a1e0fdce330ba639', 'from': '0xaa6dce746ff5e137508a988d0f1b46617770effc', 'to': '0x3be863975dd68648ac39b19366db351d8ea29e6e', 'value': 10.33901734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3da016a6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0x0511a77d825e16da72b461f3fddc280aa06e366bf43c22168967b561368b29ad:log:176', 'hash': '0x0511a77d825e16da72b461f3fddc280aa06e366bf43c22168967b561368b29ad', 'from': '0x74a694519d082342421091394be95cffd3b267a2', 'to': '0x4e0c36b889e99ead10442feaa94ee79fb1a71c30', 'value': 5.91662356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23440d14', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0x8b4fa136a6aafe4f2ebf46cd7c89601929860c9c37b94293508219cad70c07b2:log:177', 'hash': '0x8b4fa136a6aafe4f2ebf46cd7c89601929860c9c37b94293508219cad70c07b2', 'from': '0x53976021e0d7c5dba697288c31f360020a81c465', 'to': '0xb26fde83eb40e8604d19824d8b2b3891c752b2bc', 'value': 6.30843012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2599e684', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae3', 'uniqueId': '0x01be4013c82b3c36d02a3ffdd66da763a8f6aa03d58107e1d0c5fe23080b318b:log:76', 'hash': '0x01be4013c82b3c36d02a3ffdd66da763a8f6aa03d58107e1d0c5fe23080b318b', 'from': '0x3b59afff57b69c6323f096d9d074e0d09fbb3349', 'to': '0x9ce85118311596a57e6a04c59bdf26eb51eee69c', 'value': 6.24769963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x253d3bab', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:10.000Z'}}, {'blockNum': '0x687ae3', 'uniqueId': '0x85036eaf030ca58006701ab7eecb0f2e6194cb03f45cffc2075ba00e95045d60:log:77', 'hash': '0x85036eaf030ca58006701ab7eecb0f2e6194cb03f45cffc2075ba00e95045d60', 'from': '0x44f4086fb721c00888b07a592351f789c6c848db', 'to': '0x3a041c774e9874516d0b540bf2de384cfba5aaba', 'value': 3.58605974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x155fe496', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:10.000Z'}}, {'blockNum': '0x687ae3', 'uniqueId': '0x6a29f2113a8db054715825bbb51a1934b72f57484d3c07e45f8e6347704d9ed3:log:78', 'hash': '0x6a29f2113a8db054715825bbb51a1934b72f57484d3c07e45f8e6347704d9ed3', 'from': '0x1c28e6b91b32926001c0c4db5dc58c201ad05279', 'to': '0xc876a7abcb95f26b8936c630f8f3a0d3ca9530bf', 'value': 11.12222509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x424b2b2d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:10.000Z'}}, {'blockNum': '0x687ae4', 'uniqueId': '0x6f7159c98a85fe18d9ac9d4abd394ff425d981ec42b7ba54212e1a530d32df91:log:174', 'hash': '0x6f7159c98a85fe18d9ac9d4abd394ff425d981ec42b7ba54212e1a530d32df91', 'from': '0x91bc5db43463a0b8d5e24aafa6ae9aaa5b88c1cf', 'to': '0x8e6f97bfadc63012a890433948775f7208536bed', 'value': 18.89011782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x70980846', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:16.000Z'}}, {'blockNum': '0x687ae4', 'uniqueId': '0xa0775e861ddec534eec20bc2c9e3d78bb08bef2ea132116e84dcc67431948bac:log:175', 'hash': '0xa0775e861ddec534eec20bc2c9e3d78bb08bef2ea132116e84dcc67431948bac', 'from': '0x0289238b6f38c485fc2ce4dace04ec81c2589973', 'to': '0x642968718c9298972274a05cac0aaf81c02c6356', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:16.000Z'}}, {'blockNum': '0x687ae4', 'uniqueId': '0x30c16e46c08d4595cda2af52332a04dcc3cbee1babcf4e879c682edb7246c2a4:log:176', 'hash': '0x30c16e46c08d4595cda2af52332a04dcc3cbee1babcf4e879c682edb7246c2a4', 'from': '0x969e6517df94300cff1ee20fc905873ee1988ecc', 'to': '0x6cbb6977f9607a18efa028513fb0847486b50d78', 'value': 5.28389846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f7e96d6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:16.000Z'}}, {'blockNum': '0x687ae4', 'uniqueId': '0x585876964a4424c20956a18c814d9afbc8b64b254caca95871d1747f9f425934:log:177', 'hash': '0x585876964a4424c20956a18c814d9afbc8b64b254caca95871d1747f9f425934', 'from': '0x4dd21b36e1693be6b2b01ed6be6864ee2a0e07e8', 'to': '0xc9e9436752e9b3b6b5d8ccb4bb3148e37bafd555', 'value': 29.0655459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xad3e80de', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:16.000Z'}}, {'blockNum': '0x687ae4', 'uniqueId': '0xb6e4e0f4e5e7ce5dec5b55370db3bc85f61a8cc2ad900787ef5974fd846200d0:log:178', 'hash': '0xb6e4e0f4e5e7ce5dec5b55370db3bc85f61a8cc2ad900787ef5974fd846200d0', 'from': '0xecd43a55fa4e0a553c5ee2ed0b88805263e55a6e', 'to': '0x75efc59ea93ac6a163a8943e8d19626fbfce5ecb', 'value': 14.57108982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x56d9b7f6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:16.000Z'}}, {'blockNum': '0x687ae4', 'uniqueId': '0x33f159ccc12aad597e81f9419b87b94a6bbc64468936fd16b2b98f9f921aa42b:log:179', 'hash': '0x33f159ccc12aad597e81f9419b87b94a6bbc64468936fd16b2b98f9f921aa42b', 'from': '0xed1edeba843032985620488eebde68b37dc72861', 'to': '0xe7f2e87b7cbc471073ba47e5d167b4ba8cf3a5d4', 'value': 14.14690483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x545276b3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:16.000Z'}}, {'blockNum': '0x687ae4', 'uniqueId': '0xd157468a1cb9a8169c260e2af39a8abc4936c76757ab43f2ccfee3cc3c78180e:log:180', 'hash': '0xd157468a1cb9a8169c260e2af39a8abc4936c76757ab43f2ccfee3cc3c78180e', 'from': '0x5e58c7fb801f81464c421096ff3fa7c6a5d85e6d', 'to': '0xa6fdba7e10223ad80b5cd46884b22ee6f4543b49', 'value': 7.0579555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a1195de', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:16.000Z'}}, {'blockNum': '0x687ae4', 'uniqueId': '0x21e282fbe000a65e29aba220bc1f3daafc1fdd1ed094b20873b22ef1ed8292ed:log:181', 'hash': '0x21e282fbe000a65e29aba220bc1f3daafc1fdd1ed094b20873b22ef1ed8292ed', 'from': '0xe41c7a99f732c2efd9fe44564701bf7391eca02c', 'to': '0x193d093b9c011929128ea8c0e778296881fff64c', 'value': 5.12153808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e86d8d0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:16.000Z'}}, {'blockNum': '0x687ae4', 'uniqueId': '0x87dff0a1f359038999a6c6b1cdd7deb84ff06579b7e5a48841d5bd653db247ad:log:182', 'hash': '0x87dff0a1f359038999a6c6b1cdd7deb84ff06579b7e5a48841d5bd653db247ad', 'from': '0xd215bef5fcfd294833ce4abf1f1a3667dbf528f7', 'to': '0x7c2032e8a8524d37cf21f7233b6447ae2d0ae2d4', 'value': 5.0266839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1df61c66', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:16.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0xa69fdc34d4be7e4cc6a7b3323b303cbe2fbe54d41b3511c3ea314e9224568efe:log:181', 'hash': '0xa69fdc34d4be7e4cc6a7b3323b303cbe2fbe54d41b3511c3ea314e9224568efe', 'from': '0xbc9456b9fbef90907b6f1029773bdbbba5ad8bc7', 'to': '0x5c1ceae518e1f827d83c3e87fd12189b8d27f3d2', 'value': 11.40705045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x43fdc715', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0xe0ad37f7b9cf54be28da4341b00d7b2e6d919f053583126b3ab87a9dd62064b0:log:182', 'hash': '0xe0ad37f7b9cf54be28da4341b00d7b2e6d919f053583126b3ab87a9dd62064b0', 'from': '0x37ad70b84a65cee09a2a85aa4550fc28e5c1d2c8', 'to': '0x42f4d5c8c5bdb6150312677d02e53b743f3cb21a', 'value': 4.2128298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x191c44a4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0x4215d0ff0336bfbabf0d77413120988360d91c78e6308626ef32b3755a80f36a:log:183', 'hash': '0x4215d0ff0336bfbabf0d77413120988360d91c78e6308626ef32b3755a80f36a', 'from': '0x685017827af7274170c03391ad21f97ee24ffd30', 'to': '0xa2a645965b685a6517176f6f637111eddb8a6d45', 'value': 11.58985046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4514b556', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0x17521042fea4359756f2158b70110f2a7080887726e1974f2ecf41514c8473d5:log:184', 'hash': '0x17521042fea4359756f2158b70110f2a7080887726e1974f2ecf41514c8473d5', 'from': '0xf4bc508d16f27e4e0ca6552bb6ac7b120664d4e5', 'to': '0x5d88db4f7b4c6ec042e782a161b58858d88f8a62', 'value': 2.10640486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c8e1e66', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0x78e042127ad937e86185dc18bfc0a61bed7bc819713dca217265f02758d4a098:log:185', 'hash': '0x78e042127ad937e86185dc18bfc0a61bed7bc819713dca217265f02758d4a098', 'from': '0x3a34351063eae9a54312efaf9519facb75b4c9b0', 'to': '0x40d4f1c636cc4d034cc340bc9617f2424ceb4f3a', 'value': 13.05855489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4dd5c601', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0xc15dbba54c971de6f43709577d7153f1b0abda96933305c2af8659a0e20a85af:log:186', 'hash': '0xc15dbba54c971de6f43709577d7153f1b0abda96933305c2af8659a0e20a85af', 'from': '0x379e98698e92bd0aac03381c06383ef9e0ebe8c9', 'to': '0xadca6d5294750536e146daa2a5dc6cf075ac9e2a', 'value': 12.76462685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4c15465d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0xe470a6299c1707ff539d7813a68f4d5eeec01a97a511314a4378ffef8aecdb98:log:187', 'hash': '0xe470a6299c1707ff539d7813a68f4d5eeec01a97a511314a4378ffef8aecdb98', 'from': '0x3ceea72565fee1df7d02723077fece732de28f95', 'to': '0x3bd0071e0a25b503a35e9c201ce7d03398ff7e78', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0x8d0f5d1900bb36087329ce1212ed91c51ec8a663418123355f845366683a76a5:log:188', 'hash': '0x8d0f5d1900bb36087329ce1212ed91c51ec8a663418123355f845366683a76a5', 'from': '0x404efd5e9ac4d4e833533d4ddf3084f40ad90808', 'to': '0xa140b24761beeb0f03484d8f293bd0fc4aea9778', 'value': 9.75322494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a223d7e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0xdb6488c2f860934dcaf5ce79fb36345e24838861d2a683111e5239c84b52d4a2:log:189', 'hash': '0xdb6488c2f860934dcaf5ce79fb36345e24838861d2a683111e5239c84b52d4a2', 'from': '0xfabc13ef92ec96b717818be35dab3fb6661c1830', 'to': '0x931de46a332dbebad1cd41e373db23ef80bb0a36', 'value': 7.63456533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2d816c15', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0xae29b62eb91862727171681e7f682d39f54020c0880de855c20518cda1cf89c5:log:190', 'hash': '0xae29b62eb91862727171681e7f682d39f54020c0880de855c20518cda1cf89c5', 'from': '0x416b12b7e9e72a8f831238f0b2c915452858952d', 'to': '0x30734d40b174dbed0e9f1b685906284869ee65c7', 'value': 5.00310391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dd22177', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0x8ae7769744a93ce7c3392ff5e188dfd2a76a9a48234e64ab16dd29a64d68c7fe:log:191', 'hash': '0x8ae7769744a93ce7c3392ff5e188dfd2a76a9a48234e64ab16dd29a64d68c7fe', 'from': '0x8ac997330bbd70c098cb87b97ce7c8cab60d013c', 'to': '0xd4d63bc9b9aee73f8073ddef4cc15c48a9815614', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0x9ff2ca49af938dfdbac0040e251ab856b7af136b2f2f7c6590b1cf0a831c764b:log:192', 'hash': '0x9ff2ca49af938dfdbac0040e251ab856b7af136b2f2f7c6590b1cf0a831c764b', 'from': '0xa7d6343c163fcb07e2f78a5540268d38ba598429', 'to': '0xcfda7b58437415ad74c9930fde5bfc4065ff4c63', 'value': 22.01270057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8334b729', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0x7f52fc7fe72701af294780020a9b67a7e7ec6b42c0ed1cacf46b62e7c0a19ea2:log:193', 'hash': '0x7f52fc7fe72701af294780020a9b67a7e7ec6b42c0ed1cacf46b62e7c0a19ea2', 'from': '0x056b442ccbccb9b01fb41ff9bd9e29e8a86086fb', 'to': '0x45291b3eb9a5f2d9083d050d6d894a1a45de88a1', 'value': 6.24348371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2536ccd3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0xb39bc663573a60b79264eb78048baf2617909278e37e9aed18352a689c1881c7:log:194', 'hash': '0xb39bc663573a60b79264eb78048baf2617909278e37e9aed18352a689c1881c7', 'from': '0x3d6134ff9b39c05e581b78d944fafd0d0a99b693', 'to': '0x9b004436574a6fa525ac4603f3daed9b1c82b5c6', 'value': 12.40184741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x49ebb7a5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0xa2547e4033c0d4859a0d6b56f1e18c9cbc28af832b61a79daecf2cfd4d699052:log:195', 'hash': '0xa2547e4033c0d4859a0d6b56f1e18c9cbc28af832b61a79daecf2cfd4d699052', 'from': '0x815d9f449ea62d2eeaad00a18ad107781ed66564', 'to': '0xbb91e527398edef109dab65ee026c69fac225be3', 'value': 7.85170981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2eccc225', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0xe5540060b3dc7078920e86dff0a391b5f0e0e669fd72294821c539b52a52f30b:log:196', 'hash': '0xe5540060b3dc7078920e86dff0a391b5f0e0e669fd72294821c539b52a52f30b', 'from': '0x9f4bc90ebf413aff3f71e8ab27974408b85f33a8', 'to': '0xbb9e7535be20419383e0a465a5394220449c6976', 'value': 6.22822774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x251f8576', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0x5ebbf205d25162dcab1a7593ebb97c1e8868c1f3885225e313f9bb39cad0d24f:log:197', 'hash': '0x5ebbf205d25162dcab1a7593ebb97c1e8868c1f3885225e313f9bb39cad0d24f', 'from': '0x994a59d2db60faa62e4b29ea71f9c905f21646c0', 'to': '0x83bb2ed6369dfc645aabbd377bf66d11242abb88', 'value': 5.21864263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f1b0447', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae8', 'uniqueId': '0xe766dad553ae4df8023704b346b33d718378825107f57ec1ad53337cef436d5a:log:112', 'hash': '0xe766dad553ae4df8023704b346b33d718378825107f57ec1ad53337cef436d5a', 'from': '0xc72036d5f3bf76ce414ed79e02ebda28eb2041b5', 'to': '0xabb7ff58f560cd0cea64597c4ceb61f044209666', 'value': 8.04805593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2ff85bd9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:51:05.000Z'}}, {'blockNum': '0x687ae8', 'uniqueId': '0xd72856c1f7f95bb2a7f5a8a60a0bb053aea7a829da2a8ba1a5ff8050f682717c:log:113', 'hash': '0xd72856c1f7f95bb2a7f5a8a60a0bb053aea7a829da2a8ba1a5ff8050f682717c', 'from': '0x281d51daa28bbc12932a9151a5745f55163ba587', 'to': '0x18c7abca4e543a16c879762546e72f9561abc2b7', 'value': 2.11144692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c95cff4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:51:05.000Z'}}, {'blockNum': '0x687ae8', 'uniqueId': '0x5f995a8839ef6a6ce0b2b1516f9050e6ed6df6458a79276fac19261b8ba7a569:log:114', 'hash': '0x5f995a8839ef6a6ce0b2b1516f9050e6ed6df6458a79276fac19261b8ba7a569', 'from': '0x6210be1a9ed6ffee4785602a5cd10c06e5bb09b8', 'to': '0x7ffe1b30fd3a7b44edd7f38819107e0c81a74ffc', 'value': 7.2082997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2af6fe12', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:51:05.000Z'}}, {'blockNum': '0x687ae8', 'uniqueId': '0xa9c4a28443018df5d5631bf652419da4ded6e76a306459a385a8331ef34a2492:log:115', 'hash': '0xa9c4a28443018df5d5631bf652419da4ded6e76a306459a385a8331ef34a2492', 'from': '0xff68f7837d8ef8fe1e273c05208127ffa4fd021f', 'to': '0x11130c37a7ca21dd928a4e5dfc2195db051f1045', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:51:05.000Z'}}, {'blockNum': '0x687ae8', 'uniqueId': '0x99fec82a58c584ef0921bed601e9345c9bd1b3991cabd65cbf047e0f8369d46d:log:116', 'hash': '0x99fec82a58c584ef0921bed601e9345c9bd1b3991cabd65cbf047e0f8369d46d', 'from': '0x03591474e64723544c42983793a22b68ef6f66c7', 'to': '0xc285b9af3f3457417499cda005d386b0e4451a93', 'value': 16.47351278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x623095ee', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:51:05.000Z'}}, {'blockNum': '0x687aea', 'uniqueId': '0xb08c0d6e1a8e2991028b834f540a95239a4f51f5814a37883b5ec6938d0c4fbe:log:142', 'hash': '0xb08c0d6e1a8e2991028b834f540a95239a4f51f5814a37883b5ec6938d0c4fbe', 'from': '0x10de8e66bd7f6c326536daaf0ab1b59fbff83a86', 'to': '0x8e0e4d848060928b2daa5a26d988de84aa27b95b', 'value': 11.56702587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x44f1e17b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:51:41.000Z'}}, {'blockNum': '0x687aea', 'uniqueId': '0x7b7d29808de03a1830e44c5021d9d6e96d1e63266da7f4088b843fae4a598e61:log:143', 'hash': '0x7b7d29808de03a1830e44c5021d9d6e96d1e63266da7f4088b843fae4a598e61', 'from': '0x572d5d2be88972968f20f7d4856c569cb63773f4', 'to': '0x846b95fd6fedbce8e301ddead71a5af8f22a94c7', 'value': 6.4458658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x266b9c54', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:51:41.000Z'}}, {'blockNum': '0x687aea', 'uniqueId': '0xa78bae5b50019ef60d25f7466f3687f4a6cc6c4dfe7d63c2d4b767228c279f73:log:144', 'hash': '0xa78bae5b50019ef60d25f7466f3687f4a6cc6c4dfe7d63c2d4b767228c279f73', 'from': '0xa68c176968b5ef3ae6affdd7ef1752b5b8e0b804', 'to': '0x0c4d292441ab363b1c8e49c88d505ea9874c2a6a', 'value': 8.91988486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x352aaa06', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:51:41.000Z'}}, {'blockNum': '0x687aea', 'uniqueId': '0x8edf1abce7b222e4a67850c1922e7e327db1b38a3a381cc2d63f1cc8da11ad6a:log:145', 'hash': '0x8edf1abce7b222e4a67850c1922e7e327db1b38a3a381cc2d63f1cc8da11ad6a', 'from': '0xd6a97a4ed9aa4f3070bc52d5aeb927690961e65e', 'to': '0x25523dc7f3871e654cd22142a7425faea76fecd2', 'value': 5.0791372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e4625f8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:51:41.000Z'}}, {'blockNum': '0x687aea', 'uniqueId': '0xd890a5a864ab115b1b10005cabca51aeaef32dde796639647a2ed61392a37d71:log:154', 'hash': '0xd890a5a864ab115b1b10005cabca51aeaef32dde796639647a2ed61392a37d71', 'from': '0xc82675c376fb1a678b9fbd345a8dfee629013ab3', 'to': '0xab5ccebbc9fa2350b4b360687652921a738c6e53', 'value': 3.40397891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x144a0f43', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:51:41.000Z'}}, {'blockNum': '0x687aea', 'uniqueId': '0xc1705b717f03f1d09b79f2ed563b28c447664b5e3b552fb5089ede19893da36c:log:155', 'hash': '0xc1705b717f03f1d09b79f2ed563b28c447664b5e3b552fb5089ede19893da36c', 'from': '0x44ce46abdb6a3addbad54c22928c4a5031dff7fb', 'to': '0x496965d2b3f30fadfde52da4be5b3e04e0dd10c8', 'value': 11.02681034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x41b993ca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:51:41.000Z'}}, {'blockNum': '0x687afd', 'uniqueId': '0x1777ee580a01d2380aa4a36a1952b7e4008eda74a64235a710972a29a64f73c7:log:126', 'hash': '0x1777ee580a01d2380aa4a36a1952b7e4008eda74a64235a710972a29a64f73c7', 'from': '0x5d194fb4ba5b48cfb1fe91738d4e8122bfbe801f', 'to': '0x1e4d2adc6a1780a9b8e3f356cbf8cf3514bebdba', 'value': 12.83427653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4c7f8d45', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:29.000Z'}}, {'blockNum': '0x687afd', 'uniqueId': '0xbef48a8680ea951613c478b4b5188f0565f68687d83b631edf54ae3ed25393f5:log:127', 'hash': '0xbef48a8680ea951613c478b4b5188f0565f68687d83b631edf54ae3ed25393f5', 'from': '0xdef19b49c000ebc0e27959b09074670b438f3ba2', 'to': '0xf8aa1eec2a5152f25a287b2bfba0d9ee79666e91', 'value': 5.11185591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e7812b7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:29.000Z'}}, {'blockNum': '0x687afd', 'uniqueId': '0x00910a42865af638ae78a2da18de07df5538e668a6f8ead66fd2f66222281f11:log:128', 'hash': '0x00910a42865af638ae78a2da18de07df5538e668a6f8ead66fd2f66222281f11', 'from': '0x0a6fdd3a1fa1add1565b371c989b5a18b1847d8f', 'to': '0xb4b20e77d655446195c622f8150346fda7ac2916', 'value': 5.07879607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e45a0b7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:29.000Z'}}, {'blockNum': '0x687afd', 'uniqueId': '0x01c161ca66c3f15668199730cd7eddb47a86cbae0319403d223e487925b59b49:log:129', 'hash': '0x01c161ca66c3f15668199730cd7eddb47a86cbae0319403d223e487925b59b49', 'from': '0x0cf640ded9f949416e7e66ac47fe41bbb1a89100', 'to': '0xf38b1b2c326dac1287d34349934d41853a0a39c1', 'value': 5.03117306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dfcf5fa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:29.000Z'}}, {'blockNum': '0x687afd', 'uniqueId': '0xeacd4578ccbcca14222f637a5887dbf51a22069474c36b30ac9a20dd6bc34f45:log:130', 'hash': '0xeacd4578ccbcca14222f637a5887dbf51a22069474c36b30ac9a20dd6bc34f45', 'from': '0x3333260eeb0eb27d14a7f1b3a79c112fa9de7a58', 'to': '0xf1f3caa21e4122d82b3cf695f011a38129142b3a', 'value': 5.9955895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23bc8b26', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:29.000Z'}}, {'blockNum': '0x687afd', 'uniqueId': '0xe3e4f0f6fa7b8a59f9e59178d6551bd398791593b593f49725cc9bba1d975c45:log:131', 'hash': '0xe3e4f0f6fa7b8a59f9e59178d6551bd398791593b593f49725cc9bba1d975c45', 'from': '0xeb298b0864ff2796d53ced5df40dbcfb3eb1dc6c', 'to': '0x43070ed6a08cb0b0988404bd1487ac0b09fb1b12', 'value': 3.40452088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x144ae2f8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:29.000Z'}}, {'blockNum': '0x687afd', 'uniqueId': '0x9bccb24a3e33a25b380744961f8062102ae3827ee887bd0cbf526add8e8b6546:log:132', 'hash': '0x9bccb24a3e33a25b380744961f8062102ae3827ee887bd0cbf526add8e8b6546', 'from': '0x4b2c3ac37f09b5a7a84148db73f2b5ffbff3527a', 'to': '0xf62030aa6388619ac05bd8e41cd4501e323fcae6', 'value': 5.32299359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1fba3e5f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:29.000Z'}}, {'blockNum': '0x687afd', 'uniqueId': '0x1d30a79f2ad87d729d48e78718432914100692494ca736b6650a63383672e38b:log:133', 'hash': '0x1d30a79f2ad87d729d48e78718432914100692494ca736b6650a63383672e38b', 'from': '0xfb0657817b74504fb58753175e945c707b83cf21', 'to': '0x124705743af0d0d38ccade43e93a6ae1904f2446', 'value': 13.61175915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5121e56b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:29.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0xa98173f4b126f7458759daef96b63c223f5310987cb2bbcecb901fa56b10753f:log:77', 'hash': '0xa98173f4b126f7458759daef96b63c223f5310987cb2bbcecb901fa56b10753f', 'from': '0x33879b2cda473191a2d93425756db8e97bd833cc', 'to': '0x9607f40a64113109b0848a46b35e9260363b2c6b', 'value': 4.61957166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b88e82e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0x8830ca5a65501cad69eb67b31113aa0d64f96d79bff811ea36b9079539d9dae0:log:78', 'hash': '0x8830ca5a65501cad69eb67b31113aa0d64f96d79bff811ea36b9079539d9dae0', 'from': '0x16f7356048c9f529b5e3a984860c848b81f9bfae', 'to': '0xe65e84b86bef1595ec3010d7a600559a30ee7e67', 'value': 10.598264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3f2baae0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0x3a490590b7193a6a469fc01790c6e19c30e2ba793bb023f51d5fc119e389f752:log:79', 'hash': '0x3a490590b7193a6a469fc01790c6e19c30e2ba793bb023f51d5fc119e389f752', 'from': '0x802f1fab7314b9097d1d433a75e6a340dcefce2a', 'to': '0xf8b4ce8b906101b47e2a683938893f354241a21c', 'value': 5.40520857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2037b199', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0x35014a2c8b4df9c7fe297601cc5c8a670e4411fb2fc37b417ee1457af645cc61:log:80', 'hash': '0x35014a2c8b4df9c7fe297601cc5c8a670e4411fb2fc37b417ee1457af645cc61', 'from': '0xa6d0f34f27524c8e031076d63a426d26e2629839', 'to': '0x4ee415423328468d479948c844b9d7f8aad0d77b', 'value': 7.23136075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2b1a2e4b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0xc67c3f38cf35af3f009f21fc8b8b1b5aaf25ce99dd4629b3b2b662d416751cd1:log:81', 'hash': '0xc67c3f38cf35af3f009f21fc8b8b1b5aaf25ce99dd4629b3b2b662d416751cd1', 'from': '0xd00e39809119ceb69a2c8ac8644d586ed2b27dd8', 'to': '0xe46f19abe1899023055c9de811bb56d3969f597a', 'value': 3.40131593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1445ff09', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0x090160fa8a7f90563d073c52279c34c0ec757773047688f35f7095f8fa840e93:log:82', 'hash': '0x090160fa8a7f90563d073c52279c34c0ec757773047688f35f7095f8fa840e93', 'from': '0xf59222e6b85ec3548bcf6cb7ace15b98a25383be', 'to': '0xbb12c96b1174ede6970d5bd9bcb3b2ecc7512b46', 'value': 3.40192545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1446ed21', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0xde57fc1fcd18dc7f9690569ab7ffe75e76ed9f151b29eba4a731d1c3af0f8ea8:log:83', 'hash': '0xde57fc1fcd18dc7f9690569ab7ffe75e76ed9f151b29eba4a731d1c3af0f8ea8', 'from': '0xf8629e106ccc4cc2e08bfda669691e7d161bd917', 'to': '0xcde9fae7bc699bbb371664506d206b51198393d4', 'value': 3.40229267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14477c93', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0x78973259ba19fd5ba3d385309c2a5b6a38abef5fb847cfc6cc0d89067884a9c1:log:84', 'hash': '0x78973259ba19fd5ba3d385309c2a5b6a38abef5fb847cfc6cc0d89067884a9c1', 'from': '0x0c1002d3ea94cee69f47017150eb299fca840949', 'to': '0xc575d71c7e7076e40f16b7eb4ba6cb971948f891', 'value': 6.36840309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25f56975', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0xf27615a72559318218fffc7fb70023c87dee595bfb4af7144694aa311ce5178d:log:85', 'hash': '0xf27615a72559318218fffc7fb70023c87dee595bfb4af7144694aa311ce5178d', 'from': '0x1c3779dc744e3b93e295bf20ce8049dd30f55daa', 'to': '0x0fda150fd3390bc599440d3e7f1b6e112d9128b4', 'value': 5.95267586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x237b1002', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0x130cd6407c301b5e92e2928b21f0ee04dd97cfe7af6149685b7eb72af11a2158:log:86', 'hash': '0x130cd6407c301b5e92e2928b21f0ee04dd97cfe7af6149685b7eb72af11a2158', 'from': '0x11e1672387d2a9da9b91261bfbcf90d4be25e630', 'to': '0x4478d8ca29d7b57bdcb724b60d244c1bd29134eb', 'value': 3.40432295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x144a95a7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0xbee9bd1c0969caf2641b02e492b96d414cb39c6f24182cf01aad64c4f32f297e:log:87', 'hash': '0xbee9bd1c0969caf2641b02e492b96d414cb39c6f24182cf01aad64c4f32f297e', 'from': '0xf2f3e7e754758454ea3b0a7169c052ce774ac023', 'to': '0x40787d44bff2a58636a921479aa866bc84ffc0d3', 'value': 16.55909674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x62b32d2a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0x183137fdf6fb27831dc9259a38378f5d0d03933dadfa721bf07e518dd668659e:log:88', 'hash': '0x183137fdf6fb27831dc9259a38378f5d0d03933dadfa721bf07e518dd668659e', 'from': '0x7461c33da0f58482b2a7111231c1a6141e097267', 'to': '0x7c11130133c1a7ee17dcbb609fb26956090de0db', 'value': 12.31000258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x495f92c2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0xffe156100a56005af0aae25149adc0fd445f2276986f9ad575a536bf9b56372a:log:89', 'hash': '0xffe156100a56005af0aae25149adc0fd445f2276986f9ad575a536bf9b56372a', 'from': '0x0f7fe8672b43a9de7a1f005ace2b841c271b51bc', 'to': '0x67d6f1c6e427911506ada19c9c816cb8217407db', 'value': 6.3243808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25b23d40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0x6999d4ff4f4d6fa67938db7d4ab8c4a7c2d57b90f598fc6ad907384925f690a1:log:91', 'hash': '0x6999d4ff4f4d6fa67938db7d4ab8c4a7c2d57b90f598fc6ad907384925f690a1', 'from': '0x816e63201e92c941fc82805411a30f9afd9e9912', 'to': '0x4696e8553c3d7359ad755ab5166606bfe61610b6', 'value': 3.37581379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x141f1543', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0xba4585d9c947f9ce5db4802f3f6600cd792c0d0381b10520cdda515db6ea7d0f:log:92', 'hash': '0xba4585d9c947f9ce5db4802f3f6600cd792c0d0381b10520cdda515db6ea7d0f', 'from': '0xfd8ef4d0058ca6f5a3660596ede447a92c9b71d0', 'to': '0xc150ab247dfd631166cfe24a4ea26f660b512ab7', 'value': 1.2963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b9ff30', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0x9a214c2c8d468fe2af4bc07d9fb868e7dfd177f55afb427fe5f70587d7b20636:log:93', 'hash': '0x9a214c2c8d468fe2af4bc07d9fb868e7dfd177f55afb427fe5f70587d7b20636', 'from': '0x4107b67d07d85611ffa111f562008ca3ccb54b4b', 'to': '0x0e3f2dafe7dbfc0d1acf3ebefcc06107c819bb73', 'value': 6.2236055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x251877e6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687b03', 'uniqueId': '0xc74eb1996a046cd43324570a9f0af38cf7c44287a014d5d3f1c6f328f1421778:log:37', 'hash': '0xc74eb1996a046cd43324570a9f0af38cf7c44287a014d5d3f1c6f328f1421778', 'from': '0xd61c0dbb8bc60365bca5a57a59d48df9a395dcc8', 'to': '0x45efdbdbd47fc9640aee02ee9b66d4747cdfd036', 'value': 12.10574792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4827e7c8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:45.000Z'}}, {'blockNum': '0x687b03', 'uniqueId': '0x1bf8ef33a1a04a900dd59d7726c0b21fb859d826c8e0b5ae4bd1173ae1252005:log:38', 'hash': '0x1bf8ef33a1a04a900dd59d7726c0b21fb859d826c8e0b5ae4bd1173ae1252005', 'from': '0x6e509712645694573cd1ac661f281dbd6d54ae36', 'to': '0xc09868b653586288415ade7679c3113b47e27172', 'value': 3.40131605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1445ff15', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:45.000Z'}}, {'blockNum': '0x687b03', 'uniqueId': '0x1afba39728e8f7feb838ac42c3202d4ded06c517cb17ea70ce6548e724f64948:log:39', 'hash': '0x1afba39728e8f7feb838ac42c3202d4ded06c517cb17ea70ce6548e724f64948', 'from': '0x9afd45cb35e72c4e4998846f412b6291a0169806', 'to': '0xfca243f52d59184d7c4440bef19a8dbf06963f05', 'value': 2.10641556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c8e2294', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:45.000Z'}}, {'blockNum': '0x687b03', 'uniqueId': '0xd121d06b9b78c81c84e664437cdab4c613e2558bfce8b250a4f0c7b5dc2f795b:log:40', 'hash': '0xd121d06b9b78c81c84e664437cdab4c613e2558bfce8b250a4f0c7b5dc2f795b', 'from': '0xe8d53021b9f7446c22e99c7341beb9e3a9a84ab1', 'to': '0x8ef64b4bdc096d864257cf3026ad9b17d866173b', 'value': 4.97803954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dabe2b2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:45.000Z'}}, {'blockNum': '0x687b03', 'uniqueId': '0xc35fb081475362610bc3657dc3dd0395558c9dc800612391b46f4ae2da5a60ac:log:42', 'hash': '0xc35fb081475362610bc3657dc3dd0395558c9dc800612391b46f4ae2da5a60ac', 'from': '0x0bc283126f28e13a1b30f7dafd8045b17eacad3c', 'to': '0x9120baa73f54f6c16c156d1a96b9e204b1e147ef', 'value': 8.2731263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x314fc9f6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:45.000Z'}}, {'blockNum': '0x687b03', 'uniqueId': '0x7d9b593d4e09d65252ad5e1f4e16db4fcc7d72e2854901689e6324e9be98350a:log:48', 'hash': '0x7d9b593d4e09d65252ad5e1f4e16db4fcc7d72e2854901689e6324e9be98350a', 'from': '0xd66e10858a91ae465e9f32767f18ad50545e0f92', 'to': '0x080c382d597c7e9806bab765fa1530c7672873e7', 'value': 5.17789003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1edcd54b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:45.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0xc64b9bad705f744defbabfb5bcaad7b51e6bf8c95231da785bcc16b2e36b2b32:log:152', 'hash': '0xc64b9bad705f744defbabfb5bcaad7b51e6bf8c95231da785bcc16b2e36b2b32', 'from': '0x22dd0149712d77d8d642ef4c8d8ec868d47dff9f', 'to': '0xb22dbd545d03f27b11e2aa0841bdcf14ec6a5ea9', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0xfdaeafdd48989adda4f6d65c58ffb42b0fa30e37cbd7128e91694e6f102cee63:log:153', 'hash': '0xfdaeafdd48989adda4f6d65c58ffb42b0fa30e37cbd7128e91694e6f102cee63', 'from': '0x5519e80c6ec89a82ed107ae361312271799fbf73', 'to': '0xea32109a3179fb457c36a6ba9fde40cddf7fbe95', 'value': 12.99365881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4d72bff9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x405f156c57f84ac3732a4986c528a13767f9c738f3ac13cd42dccfe9cf0957e4:log:154', 'hash': '0x405f156c57f84ac3732a4986c528a13767f9c738f3ac13cd42dccfe9cf0957e4', 'from': '0xd9794d58ea8c9054385ba5266c81c3257a2f9dec', 'to': '0x22cd8848d73d9c8d1323ec6b788c1157957bbbb6', 'value': 5.0604772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e29ace8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x2e69fdb0da8984752ede32e5a16b7bcc3fd96dcd406e82fe2d8bad6b06e0d42d:log:155', 'hash': '0x2e69fdb0da8984752ede32e5a16b7bcc3fd96dcd406e82fe2d8bad6b06e0d42d', 'from': '0xc24a1280624fdc57f3ef8e92d66900983ea72a44', 'to': '0x7a4e76e9e5f3e384f123aa97c7e8e2f2c57faad6', 'value': 5.22968192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f2bdc80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0xfc1fee839a50babbb3234e8c48e462114cb89bcfee7a46a4c9f677fb92dd5ff6:log:156', 'hash': '0xfc1fee839a50babbb3234e8c48e462114cb89bcfee7a46a4c9f677fb92dd5ff6', 'from': '0x845d825929830a99daf619dfe5b9534772679ea0', 'to': '0xad556e04890db48bea95c3923030f65ddbed4910', 'value': 5.18277075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ee447d3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x0b41d8f7f2138f96ac2668ae18a9a1f581d8b666b7bd1e2975dd8da3a220146e:log:157', 'hash': '0x0b41d8f7f2138f96ac2668ae18a9a1f581d8b666b7bd1e2975dd8da3a220146e', 'from': '0xef1d614a13d8e04aaa6e1023646079a87042e30c', 'to': '0x602d8fbbbb5319ef29df56e2117ef46628ca0bdf', 'value': 18.34423419, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6d57147b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x830230cdbadc62ab85e3e9aef8153cd8a5e3d1fd17a4b71d37d607ddbe3afbc6:log:158', 'hash': '0x830230cdbadc62ab85e3e9aef8153cd8a5e3d1fd17a4b71d37d607ddbe3afbc6', 'from': '0x3bec65296127a53711aafeeed2e40c7ed8227029', 'to': '0xc3cd4e5313516652f43f0dbed8599a3644a44320', 'value': 6.36911126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25f67e16', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x3a279ad16fc12b23549a472786b6633bdffec4da4e06764390c79eba46e78306:log:159', 'hash': '0x3a279ad16fc12b23549a472786b6633bdffec4da4e06764390c79eba46e78306', 'from': '0xe9467184c4a5d6963a0e5765c6d16d74a08f2030', 'to': '0x25e1d70fe2896160d8b8a3f22b7635add158a426', 'value': 3.4110466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1454d814', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x1bc173f15d17c2c4171546190c41d45b9e903af129cc35d11bf348347b420ca5:log:160', 'hash': '0x1bc173f15d17c2c4171546190c41d45b9e903af129cc35d11bf348347b420ca5', 'from': '0x53fad920202c489653b3050f1f6cc245e1eaedf2', 'to': '0x8e795d7bc3966bf2e7f8ae9fd1568f1d63d07b4f', 'value': 6.48887672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26ad3d78', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x47d22715093994a960682ddd2d8f32226cc603ecc9bc4a068d28fab75e0da4f3:log:161', 'hash': '0x47d22715093994a960682ddd2d8f32226cc603ecc9bc4a068d28fab75e0da4f3', 'from': '0xa7d254795b082824aa28e6cd3684ae2cb0ca7228', 'to': '0x2a70a54d7ed35fd991b84ebb73b002a77334f7ce', 'value': 18.14720016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6c2a6e10', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x76114c9f7732fa970b0ca85e050fda7b64214538e1198df3cd8d685637e3c659:log:162', 'hash': '0x76114c9f7732fa970b0ca85e050fda7b64214538e1198df3cd8d685637e3c659', 'from': '0x9ef2c25b3b02b0fe6afcddf988f4dfad882e3aff', 'to': '0xc4ae405e36977e61491ad96ea59e14b9a30f91ee', 'value': 6.36302517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25ed34b5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x42ed1c3a11cc711edef15be21d74dc5c22a485213195423dab6f0590a2b04543:log:163', 'hash': '0x42ed1c3a11cc711edef15be21d74dc5c22a485213195423dab6f0590a2b04543', 'from': '0x5b56d032112afadb70273e6321d09b32a6380872', 'to': '0xbb8fe5bdfc0e764d95a3384ddd8432354376ebcf', 'value': 6.49150756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26b14124', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x7beb3b3e6874d34bf3d0f768cb21571ea6e0de772e5897778c3f53a6559145f7:log:164', 'hash': '0x7beb3b3e6874d34bf3d0f768cb21571ea6e0de772e5897778c3f53a6559145f7', 'from': '0x288fdf259ace3fc06c1fde8288a6a002ef210591', 'to': '0x4ec886edb4160e5e2e86d5d68e37cc29e4adf908', 'value': 12.06427281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x47e89e91', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x314023d568b9b679ab00d61c2dab0fdb927cbe01068619b68c8b38b41687ec22:log:165', 'hash': '0x314023d568b9b679ab00d61c2dab0fdb927cbe01068619b68c8b38b41687ec22', 'from': '0x6e8e8bbeb3c504ac63be408d30fb172ec9ec1f5e', 'to': '0x21ccfa1750fab1608f01a9253d43b14580e295cb', 'value': 5.73400455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x222d6587', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0xe886e52ba96a243bcd7bc949ebf1d698b5a1c3dedd8e3f8e0e80bdeee2c815e0:log:166', 'hash': '0xe886e52ba96a243bcd7bc949ebf1d698b5a1c3dedd8e3f8e0e80bdeee2c815e0', 'from': '0xc4030785a3a149f75c661431dec4073c791ab7f9', 'to': '0x0af4147844789b7c974d6a108354a4518a3818ba', 'value': 3.56879207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x15458b67', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x406bbefce671f2255c11eb4600d56c8eecac2573b99bf9dc7d2325a1243143da:log:167', 'hash': '0x406bbefce671f2255c11eb4600d56c8eecac2573b99bf9dc7d2325a1243143da', 'from': '0x203b7484b5531eb6904af96c72b43a380d5c2c0f', 'to': '0x63255a40fa766a922a0265cd9520e132c8ef109a', 'value': 4.5001642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ad2b4a4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x9caffb8c5fabbf6c6fbf214ab73393cdaf570cc7df3d9f7a9a23cfe2f1a52946:log:168', 'hash': '0x9caffb8c5fabbf6c6fbf214ab73393cdaf570cc7df3d9f7a9a23cfe2f1a52946', 'from': '0x4bd26d73a3d1794819c4619c33103e99ffef78ad', 'to': '0xd20bfb449bfec4b33aafdfa348cb853a64c09aa6', 'value': 3.40310093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1448b84d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0xe71a5a26748dbe0065234117c5e2d3d671f5d2cb1a57e9eecee016da154c535d:log:169', 'hash': '0xe71a5a26748dbe0065234117c5e2d3d671f5d2cb1a57e9eecee016da154c535d', 'from': '0x53be893d81aa0def6ac7c4a85144d45f7b738396', 'to': '0x853f6a6c3997903d21a800fec66dcac6998337a9', 'value': 17.61344722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x68fbfcd2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x0fa8d7addc4e9f435bb91cb404141ff3584983b75997284c1bbb1bbf941a39d2:log:170', 'hash': '0x0fa8d7addc4e9f435bb91cb404141ff3584983b75997284c1bbb1bbf941a39d2', 'from': '0x6d685bc9845533d33ae4ccbb5a7c1ab6425000ab', 'to': '0x8589555a017eded3d819b955f5cc37363224ddd9', 'value': 5.32973386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1fc4874a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0xcefd397e5c6cf13c4c195925f4296f7f436bcd7eac5be1c9e85379a0883c9749:log:171', 'hash': '0xcefd397e5c6cf13c4c195925f4296f7f436bcd7eac5be1c9e85379a0883c9749', 'from': '0x0747ed3f05908b3a3b09b821b7d745bcc39abe12', 'to': '0x7cbcdb761882ad34902d86fa7f3ef8f2814c45ec', 'value': 14.42495472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x55fabbf0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0xb25fce2b18ac3ceb608b68366a35e1a6420d213ffd9179b7d797591224f5586b:log:172', 'hash': '0xb25fce2b18ac3ceb608b68366a35e1a6420d213ffd9179b7d797591224f5586b', 'from': '0x922ec0d4ebd55764118557b9afb1d8d09f4d1774', 'to': '0x773d678ac136c1eb49f41cac9faf71af57877e4e', 'value': 16.38358395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x61a75d7b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x2aac6bd8fe0c929bc33c5f350743dfcf0e897b0396ce635b25f497bb91b8cda4:log:173', 'hash': '0x2aac6bd8fe0c929bc33c5f350743dfcf0e897b0396ce635b25f497bb91b8cda4', 'from': '0x3702e2ecee420be1eba13669eb3383dbc158b3c6', 'to': '0x93b7eee1b5c033d8bfe583bf6b968d465c12e0ad', 'value': 11.09093484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x421b6c6c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b05', 'uniqueId': '0xc665296b6aadd6b44f5f155daaa763fc5d32f8ebe37d638d3920ade9bbc80b70:log:68', 'hash': '0xc665296b6aadd6b44f5f155daaa763fc5d32f8ebe37d638d3920ade9bbc80b70', 'from': '0xa66a00df4fe69b0011216adae9f5bfecdd6e8710', 'to': '0x95fe395089317bc253491f38f3ee7de547f29c54', 'value': 7.94292087, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f57ef77', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:02.000Z'}}, {'blockNum': '0x687b05', 'uniqueId': '0xb03fdfea5afe1dd4e8982dad3977bbac2e89d5e7bd314df9d2aa632476adf5df:log:69', 'hash': '0xb03fdfea5afe1dd4e8982dad3977bbac2e89d5e7bd314df9d2aa632476adf5df', 'from': '0x6d0777945ffb31a1f7832f5a3930824035fef80c', 'to': '0x5541ee9431c9e7dc92db38616d601686761a3f28', 'value': 5.76844359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2261f247', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:02.000Z'}}, {'blockNum': '0x687b05', 'uniqueId': '0x510ae999ef8c4cfedbd9c8f122bd690ef346c1e893a8fadb363952bea5e8663a:log:70', 'hash': '0x510ae999ef8c4cfedbd9c8f122bd690ef346c1e893a8fadb363952bea5e8663a', 'from': '0x9fdf9479ca7ab871990c0a214154866228dac62b', 'to': '0xbece4298924796d2ea35e11ddaf043bd57b1a2f5', 'value': 6.20680784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x24fed650', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:02.000Z'}}, {'blockNum': '0x687b05', 'uniqueId': '0x32610e609a6ac5fd13eeed30ad4fdf7414bc6bd8f0f93480bb1aa9c63a743d0c:log:71', 'hash': '0x32610e609a6ac5fd13eeed30ad4fdf7414bc6bd8f0f93480bb1aa9c63a743d0c', 'from': '0xfafbec38cf8037447f4cee9a5a415db79fb93cd0', 'to': '0xf6e576635be84d169078ec7c175a8d7bc4f03e0c', 'value': 8.6062485, 'erc721TokenId': None, 'erc1155Meta